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> 68*fa9e4066Sahrens #include <libzfs.h> 697c478bd9Sstevel@tonic-gate 707c478bd9Sstevel@tonic-gate #include <fcntl.h> 717c478bd9Sstevel@tonic-gate #include <door.h> 727c478bd9Sstevel@tonic-gate #include <macros.h> 737c478bd9Sstevel@tonic-gate #include <libgen.h> 747c478bd9Sstevel@tonic-gate 757c478bd9Sstevel@tonic-gate #include <pool.h> 767c478bd9Sstevel@tonic-gate #include <sys/pool.h> 777c478bd9Sstevel@tonic-gate 787c478bd9Sstevel@tonic-gate #define MAXARGS 8 797c478bd9Sstevel@tonic-gate 807c478bd9Sstevel@tonic-gate /* Reflects kernel zone entries */ 817c478bd9Sstevel@tonic-gate typedef struct zone_entry { 827c478bd9Sstevel@tonic-gate zoneid_t zid; 837c478bd9Sstevel@tonic-gate char zname[ZONENAME_MAX]; 847c478bd9Sstevel@tonic-gate char *zstate_str; 857c478bd9Sstevel@tonic-gate zone_state_t zstate_num; 867c478bd9Sstevel@tonic-gate char zroot[MAXPATHLEN]; 877c478bd9Sstevel@tonic-gate } zone_entry_t; 887c478bd9Sstevel@tonic-gate 897c478bd9Sstevel@tonic-gate static zone_entry_t *zents; 907c478bd9Sstevel@tonic-gate static size_t nzents; 917c478bd9Sstevel@tonic-gate 927c478bd9Sstevel@tonic-gate #if !defined(TEXT_DOMAIN) /* should be defined by cc -D */ 937c478bd9Sstevel@tonic-gate #define TEXT_DOMAIN "SYS_TEST" /* Use this only if it wasn't */ 947c478bd9Sstevel@tonic-gate #endif 957c478bd9Sstevel@tonic-gate 967c478bd9Sstevel@tonic-gate #define Z_ERR 1 977c478bd9Sstevel@tonic-gate #define Z_USAGE 2 987c478bd9Sstevel@tonic-gate 997c478bd9Sstevel@tonic-gate /* 0755 is the default directory mode. */ 1007c478bd9Sstevel@tonic-gate #define DEFAULT_DIR_MODE \ 1017c478bd9Sstevel@tonic-gate (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) 1027c478bd9Sstevel@tonic-gate 1037c478bd9Sstevel@tonic-gate #define CMD_HELP 0 1047c478bd9Sstevel@tonic-gate #define CMD_BOOT 1 1057c478bd9Sstevel@tonic-gate #define CMD_HALT 2 1067c478bd9Sstevel@tonic-gate #define CMD_READY 3 1077c478bd9Sstevel@tonic-gate #define CMD_REBOOT 4 1087c478bd9Sstevel@tonic-gate #define CMD_LIST 5 1097c478bd9Sstevel@tonic-gate #define CMD_VERIFY 6 1107c478bd9Sstevel@tonic-gate #define CMD_INSTALL 7 1117c478bd9Sstevel@tonic-gate #define CMD_UNINSTALL 8 112108322fbScarlsonj #define CMD_MOUNT 9 113108322fbScarlsonj #define CMD_UNMOUNT 10 1147c478bd9Sstevel@tonic-gate 1157c478bd9Sstevel@tonic-gate #define CMD_MIN CMD_HELP 116108322fbScarlsonj #define CMD_MAX CMD_UNMOUNT 1177c478bd9Sstevel@tonic-gate 1187c478bd9Sstevel@tonic-gate struct cmd { 1197c478bd9Sstevel@tonic-gate uint_t cmd_num; /* command number */ 1207c478bd9Sstevel@tonic-gate char *cmd_name; /* command name */ 1217c478bd9Sstevel@tonic-gate char *short_usage; /* short form help */ 1227c478bd9Sstevel@tonic-gate int (*handler)(int argc, char *argv[]); /* function to call */ 1237c478bd9Sstevel@tonic-gate 1247c478bd9Sstevel@tonic-gate }; 1257c478bd9Sstevel@tonic-gate 1267c478bd9Sstevel@tonic-gate #define SHELP_HELP "help" 1277c478bd9Sstevel@tonic-gate #define SHELP_BOOT "boot [-s]" 1287c478bd9Sstevel@tonic-gate #define SHELP_HALT "halt" 1297c478bd9Sstevel@tonic-gate #define SHELP_READY "ready" 1307c478bd9Sstevel@tonic-gate #define SHELP_REBOOT "reboot" 1317c478bd9Sstevel@tonic-gate #define SHELP_LIST "list [-cipv]" 1327c478bd9Sstevel@tonic-gate #define SHELP_VERIFY "verify" 1337c478bd9Sstevel@tonic-gate #define SHELP_INSTALL "install" 1347c478bd9Sstevel@tonic-gate #define SHELP_UNINSTALL "uninstall [-F]" 1357c478bd9Sstevel@tonic-gate 1367c478bd9Sstevel@tonic-gate static int help_func(int argc, char *argv[]); 1377c478bd9Sstevel@tonic-gate static int ready_func(int argc, char *argv[]); 1387c478bd9Sstevel@tonic-gate static int boot_func(int argc, char *argv[]); 1397c478bd9Sstevel@tonic-gate static int halt_func(int argc, char *argv[]); 1407c478bd9Sstevel@tonic-gate static int reboot_func(int argc, char *argv[]); 1417c478bd9Sstevel@tonic-gate static int list_func(int argc, char *argv[]); 1427c478bd9Sstevel@tonic-gate static int verify_func(int argc, char *argv[]); 1437c478bd9Sstevel@tonic-gate static int install_func(int argc, char *argv[]); 1447c478bd9Sstevel@tonic-gate static int uninstall_func(int argc, char *argv[]); 145108322fbScarlsonj static int mount_func(int argc, char *argv[]); 146108322fbScarlsonj static int unmount_func(int argc, char *argv[]); 1477c478bd9Sstevel@tonic-gate static int sanity_check(char *zone, int cmd_num, boolean_t running, 1487c478bd9Sstevel@tonic-gate boolean_t unsafe_when_running); 1497c478bd9Sstevel@tonic-gate static int cmd_match(char *cmd); 1507c478bd9Sstevel@tonic-gate static int verify_details(int); 1517c478bd9Sstevel@tonic-gate 1527c478bd9Sstevel@tonic-gate static struct cmd cmdtab[] = { 1537c478bd9Sstevel@tonic-gate { CMD_HELP, "help", SHELP_HELP, help_func }, 1547c478bd9Sstevel@tonic-gate { CMD_BOOT, "boot", SHELP_BOOT, boot_func }, 1557c478bd9Sstevel@tonic-gate { CMD_HALT, "halt", SHELP_HALT, halt_func }, 1567c478bd9Sstevel@tonic-gate { CMD_READY, "ready", SHELP_READY, ready_func }, 1577c478bd9Sstevel@tonic-gate { CMD_REBOOT, "reboot", SHELP_REBOOT, reboot_func }, 1587c478bd9Sstevel@tonic-gate { CMD_LIST, "list", SHELP_LIST, list_func }, 1597c478bd9Sstevel@tonic-gate { CMD_VERIFY, "verify", SHELP_VERIFY, verify_func }, 1607c478bd9Sstevel@tonic-gate { CMD_INSTALL, "install", SHELP_INSTALL, install_func }, 1617c478bd9Sstevel@tonic-gate { CMD_UNINSTALL, "uninstall", SHELP_UNINSTALL, 162108322fbScarlsonj uninstall_func }, 163108322fbScarlsonj /* Private commands for admin/install */ 164108322fbScarlsonj { CMD_MOUNT, "mount", NULL, mount_func }, 165108322fbScarlsonj { CMD_UNMOUNT, "unmount", NULL, unmount_func } 1667c478bd9Sstevel@tonic-gate }; 1677c478bd9Sstevel@tonic-gate 1687c478bd9Sstevel@tonic-gate /* global variables */ 1697c478bd9Sstevel@tonic-gate 1707c478bd9Sstevel@tonic-gate /* set early in main(), never modified thereafter, used all over the place */ 1717c478bd9Sstevel@tonic-gate static char *execname; 1727c478bd9Sstevel@tonic-gate static char *target_zone; 1737c478bd9Sstevel@tonic-gate static char *locale; 1747c478bd9Sstevel@tonic-gate 1757c478bd9Sstevel@tonic-gate /* used in do_subproc() and signal handler */ 1767c478bd9Sstevel@tonic-gate static volatile boolean_t child_killed; 1777c478bd9Sstevel@tonic-gate 1787c478bd9Sstevel@tonic-gate static char * 1797c478bd9Sstevel@tonic-gate cmd_to_str(int cmd_num) 1807c478bd9Sstevel@tonic-gate { 1817c478bd9Sstevel@tonic-gate assert(cmd_num >= CMD_MIN && cmd_num <= CMD_MAX); 1827c478bd9Sstevel@tonic-gate return (cmdtab[cmd_num].cmd_name); 1837c478bd9Sstevel@tonic-gate } 1847c478bd9Sstevel@tonic-gate 1857c478bd9Sstevel@tonic-gate /* This is a separate function because of gettext() wrapping. */ 1867c478bd9Sstevel@tonic-gate static char * 1877c478bd9Sstevel@tonic-gate long_help(int cmd_num) 1887c478bd9Sstevel@tonic-gate { 1897e362f58Scomay assert(cmd_num >= CMD_MIN && cmd_num <= CMD_MAX); 1907c478bd9Sstevel@tonic-gate switch (cmd_num) { 1917c478bd9Sstevel@tonic-gate case CMD_HELP: 1927c478bd9Sstevel@tonic-gate return (gettext("Print usage message.")); 1937c478bd9Sstevel@tonic-gate case CMD_BOOT: 1947c478bd9Sstevel@tonic-gate return (gettext("Activates (boots) specified zone. " 1957c478bd9Sstevel@tonic-gate "The -s flag can be used\n\tto boot the zone in " 1967c478bd9Sstevel@tonic-gate "the single-user state.")); 1977c478bd9Sstevel@tonic-gate case CMD_HALT: 1987c478bd9Sstevel@tonic-gate return (gettext("Halts specified zone, bypassing " 1997c478bd9Sstevel@tonic-gate "shutdown scripts and removing runtime\n\t" 2007c478bd9Sstevel@tonic-gate "resources of the zone.")); 2017c478bd9Sstevel@tonic-gate case CMD_READY: 2027c478bd9Sstevel@tonic-gate return (gettext("Prepares a zone for running " 2037c478bd9Sstevel@tonic-gate "applications but does not start any user\n\t" 2047c478bd9Sstevel@tonic-gate "processes in the zone.")); 2057c478bd9Sstevel@tonic-gate case CMD_REBOOT: 2067c478bd9Sstevel@tonic-gate return (gettext("Restarts the zone (equivalent to a " 2077c478bd9Sstevel@tonic-gate "halt / boot sequence).\n\tFails if the zone is " 2087c478bd9Sstevel@tonic-gate "not active.")); 2097c478bd9Sstevel@tonic-gate case CMD_LIST: 2107c478bd9Sstevel@tonic-gate return (gettext("Lists the current zones, or a " 2117c478bd9Sstevel@tonic-gate "specific zone if indicated. By default,\n\tall " 2127c478bd9Sstevel@tonic-gate "running zones are listed, though this can be " 2137c478bd9Sstevel@tonic-gate "expanded to all\n\tinstalled zones with the -i " 2147c478bd9Sstevel@tonic-gate "option or all configured zones with the\n\t-c " 2157c478bd9Sstevel@tonic-gate "option. When used with the general -z <zone> " 2167c478bd9Sstevel@tonic-gate "option, lists only the\n\tspecified zone, but " 2177c478bd9Sstevel@tonic-gate "lists it regardless of its state, and the -i " 2187c478bd9Sstevel@tonic-gate "and -c\n\toptions are disallowed. The -v option " 2197c478bd9Sstevel@tonic-gate "can be used to display verbose\n\tinformation: " 2207c478bd9Sstevel@tonic-gate "zone name, id, current state, root directory and " 2217c478bd9Sstevel@tonic-gate "options.\n\tThe -p option can be used to request " 2227c478bd9Sstevel@tonic-gate "machine-parsable output. The -v\n\tand -p " 2237c478bd9Sstevel@tonic-gate "options are mutually exclusive. If neither -v " 2247c478bd9Sstevel@tonic-gate "nor -p is used,\n\tjust the zone name is " 2257c478bd9Sstevel@tonic-gate "listed.")); 2267c478bd9Sstevel@tonic-gate case CMD_VERIFY: 2277c478bd9Sstevel@tonic-gate return (gettext("Check to make sure the configuration " 2287c478bd9Sstevel@tonic-gate "can safely be instantiated\n\ton the machine: " 2297c478bd9Sstevel@tonic-gate "physical network interfaces exist, etc.")); 2307c478bd9Sstevel@tonic-gate case CMD_INSTALL: 2317c478bd9Sstevel@tonic-gate return (gettext("Install the configuration on to the " 2327c478bd9Sstevel@tonic-gate "system.")); 2337c478bd9Sstevel@tonic-gate case CMD_UNINSTALL: 2347c478bd9Sstevel@tonic-gate return (gettext("Uninstall the configuration from the " 2357c478bd9Sstevel@tonic-gate "system. The -F flag can be used\n\tto force the " 2367c478bd9Sstevel@tonic-gate "action.")); 237108322fbScarlsonj default: 238108322fbScarlsonj return (""); 2397c478bd9Sstevel@tonic-gate } 2407c478bd9Sstevel@tonic-gate /* NOTREACHED */ 2417e362f58Scomay return (NULL); 2427c478bd9Sstevel@tonic-gate } 2437c478bd9Sstevel@tonic-gate 2447c478bd9Sstevel@tonic-gate /* 2457c478bd9Sstevel@tonic-gate * Called with explicit B_TRUE when help is explicitly requested, B_FALSE for 2467c478bd9Sstevel@tonic-gate * unexpected errors. 2477c478bd9Sstevel@tonic-gate */ 2487c478bd9Sstevel@tonic-gate 2497c478bd9Sstevel@tonic-gate static int 2507c478bd9Sstevel@tonic-gate usage(boolean_t explicit) 2517c478bd9Sstevel@tonic-gate { 2527c478bd9Sstevel@tonic-gate int i; 2537c478bd9Sstevel@tonic-gate FILE *fd = explicit ? stdout : stderr; 2547c478bd9Sstevel@tonic-gate 2557c478bd9Sstevel@tonic-gate (void) fprintf(fd, "%s:\t%s help\n", gettext("usage"), execname); 2567c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\t%s [-z <zone>] list\n", execname); 2577c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\t%s -z <zone> <%s>\n", execname, 2587c478bd9Sstevel@tonic-gate gettext("subcommand")); 2597c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\n%s:\n\n", gettext("Subcommands")); 2607c478bd9Sstevel@tonic-gate for (i = CMD_MIN; i <= CMD_MAX; i++) { 261108322fbScarlsonj if (cmdtab[i].short_usage == NULL) 262108322fbScarlsonj continue; 2637c478bd9Sstevel@tonic-gate (void) fprintf(fd, "%s\n", cmdtab[i].short_usage); 2647c478bd9Sstevel@tonic-gate if (explicit) 2657c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\t%s\n\n", long_help(i)); 2667c478bd9Sstevel@tonic-gate } 2677c478bd9Sstevel@tonic-gate if (!explicit) 2687c478bd9Sstevel@tonic-gate (void) fputs("\n", fd); 2697c478bd9Sstevel@tonic-gate return (Z_USAGE); 2707c478bd9Sstevel@tonic-gate } 2717c478bd9Sstevel@tonic-gate 2727c478bd9Sstevel@tonic-gate static void 2737c478bd9Sstevel@tonic-gate sub_usage(char *short_usage, int cmd_num) 2747c478bd9Sstevel@tonic-gate { 2757c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s:\t%s\n", gettext("usage"), short_usage); 2767c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "\t%s\n", long_help(cmd_num)); 2777c478bd9Sstevel@tonic-gate } 2787c478bd9Sstevel@tonic-gate 2797c478bd9Sstevel@tonic-gate /* 2807c478bd9Sstevel@tonic-gate * zperror() is like perror(3c) except that this also prints the executable 2817c478bd9Sstevel@tonic-gate * name at the start of the message, and takes a boolean indicating whether 2827c478bd9Sstevel@tonic-gate * to call libc'c strerror() or that from libzonecfg. 2837c478bd9Sstevel@tonic-gate */ 2847c478bd9Sstevel@tonic-gate 2857c478bd9Sstevel@tonic-gate static void 2867c478bd9Sstevel@tonic-gate zperror(const char *str, boolean_t zonecfg_error) 2877c478bd9Sstevel@tonic-gate { 2887c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: %s: %s\n", execname, str, 2897c478bd9Sstevel@tonic-gate zonecfg_error ? zonecfg_strerror(errno) : strerror(errno)); 2907c478bd9Sstevel@tonic-gate } 2917c478bd9Sstevel@tonic-gate 2927c478bd9Sstevel@tonic-gate /* 2937c478bd9Sstevel@tonic-gate * zperror2() is very similar to zperror() above, except it also prints a 2947c478bd9Sstevel@tonic-gate * supplied zone name after the executable. 2957c478bd9Sstevel@tonic-gate * 2967c478bd9Sstevel@tonic-gate * All current consumers of this function want libzonecfg's strerror() rather 2977c478bd9Sstevel@tonic-gate * than libc's; if this ever changes, this function can be made more generic 2987c478bd9Sstevel@tonic-gate * like zperror() above. 2997c478bd9Sstevel@tonic-gate */ 3007c478bd9Sstevel@tonic-gate 3017c478bd9Sstevel@tonic-gate static void 3027c478bd9Sstevel@tonic-gate zperror2(const char *zone, const char *str) 3037c478bd9Sstevel@tonic-gate { 3047c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: %s: %s: %s\n", execname, zone, str, 3057c478bd9Sstevel@tonic-gate zonecfg_strerror(errno)); 3067c478bd9Sstevel@tonic-gate } 3077c478bd9Sstevel@tonic-gate 3087c478bd9Sstevel@tonic-gate /* PRINTFLIKE1 */ 3097c478bd9Sstevel@tonic-gate static void 3107c478bd9Sstevel@tonic-gate zerror(const char *fmt, ...) 3117c478bd9Sstevel@tonic-gate { 3127c478bd9Sstevel@tonic-gate va_list alist; 3137c478bd9Sstevel@tonic-gate 3147c478bd9Sstevel@tonic-gate va_start(alist, fmt); 3157c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: ", execname); 3167c478bd9Sstevel@tonic-gate if (target_zone != NULL) 3177c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "zone '%s': ", target_zone); 3187c478bd9Sstevel@tonic-gate (void) vfprintf(stderr, fmt, alist); 3197c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "\n"); 3207c478bd9Sstevel@tonic-gate va_end(alist); 3217c478bd9Sstevel@tonic-gate } 3227c478bd9Sstevel@tonic-gate 3237c478bd9Sstevel@tonic-gate static void * 3247c478bd9Sstevel@tonic-gate safe_calloc(size_t nelem, size_t elsize) 3257c478bd9Sstevel@tonic-gate { 3267c478bd9Sstevel@tonic-gate void *r = calloc(nelem, elsize); 3277c478bd9Sstevel@tonic-gate 3287c478bd9Sstevel@tonic-gate if (r == NULL) { 3297c478bd9Sstevel@tonic-gate zerror(gettext("failed to allocate %lu bytes: %s"), 3307c478bd9Sstevel@tonic-gate (ulong_t)nelem * elsize, strerror(errno)); 3317c478bd9Sstevel@tonic-gate exit(Z_ERR); 3327c478bd9Sstevel@tonic-gate } 3337c478bd9Sstevel@tonic-gate return (r); 3347c478bd9Sstevel@tonic-gate } 3357c478bd9Sstevel@tonic-gate 3367c478bd9Sstevel@tonic-gate static void 3377c478bd9Sstevel@tonic-gate zone_print(zone_entry_t *zent, boolean_t verbose, boolean_t parsable) 3387c478bd9Sstevel@tonic-gate { 3397c478bd9Sstevel@tonic-gate static boolean_t firsttime = B_TRUE; 3407c478bd9Sstevel@tonic-gate 3417c478bd9Sstevel@tonic-gate assert(!(verbose && parsable)); 3427c478bd9Sstevel@tonic-gate if (firsttime && verbose) { 3437c478bd9Sstevel@tonic-gate firsttime = B_FALSE; 3447c478bd9Sstevel@tonic-gate (void) printf("%*s %-16s %-14s %-30s\n", ZONEID_WIDTH, "ID", 3457c478bd9Sstevel@tonic-gate "NAME", "STATUS", "PATH"); 3467c478bd9Sstevel@tonic-gate } 3477c478bd9Sstevel@tonic-gate if (!verbose) { 3487c478bd9Sstevel@tonic-gate if (!parsable) { 3497c478bd9Sstevel@tonic-gate (void) printf("%s\n", zent->zname); 3507c478bd9Sstevel@tonic-gate return; 3517c478bd9Sstevel@tonic-gate } 3527c478bd9Sstevel@tonic-gate if (zent->zid == ZONE_ID_UNDEFINED) 3537c478bd9Sstevel@tonic-gate (void) printf("-"); 3547c478bd9Sstevel@tonic-gate else 3557c478bd9Sstevel@tonic-gate (void) printf("%lu", zent->zid); 3567c478bd9Sstevel@tonic-gate (void) printf(":%s:%s:%s\n", zent->zname, zent->zstate_str, 3577c478bd9Sstevel@tonic-gate zent->zroot); 3587c478bd9Sstevel@tonic-gate return; 3597c478bd9Sstevel@tonic-gate } 3607c478bd9Sstevel@tonic-gate if (zent->zstate_str != NULL) { 3617c478bd9Sstevel@tonic-gate if (zent->zid == ZONE_ID_UNDEFINED) 3627c478bd9Sstevel@tonic-gate (void) printf("%*s", ZONEID_WIDTH, "-"); 3637c478bd9Sstevel@tonic-gate else 3647c478bd9Sstevel@tonic-gate (void) printf("%*lu", ZONEID_WIDTH, zent->zid); 3657c478bd9Sstevel@tonic-gate (void) printf(" %-16s %-14s %-30s\n", zent->zname, 3667c478bd9Sstevel@tonic-gate zent->zstate_str, zent->zroot); 3677c478bd9Sstevel@tonic-gate } 3687c478bd9Sstevel@tonic-gate } 3697c478bd9Sstevel@tonic-gate 3707c478bd9Sstevel@tonic-gate static int 371108322fbScarlsonj lookup_zone_info(const char *zone_name, zoneid_t zid, zone_entry_t *zent) 3727c478bd9Sstevel@tonic-gate { 3737c478bd9Sstevel@tonic-gate char root[MAXPATHLEN]; 3747c478bd9Sstevel@tonic-gate int err; 3757c478bd9Sstevel@tonic-gate 3767c478bd9Sstevel@tonic-gate (void) strlcpy(zent->zname, zone_name, sizeof (zent->zname)); 3777c478bd9Sstevel@tonic-gate (void) strlcpy(zent->zroot, "???", sizeof (zent->zroot)); 3787c478bd9Sstevel@tonic-gate zent->zstate_str = "???"; 3797c478bd9Sstevel@tonic-gate 380108322fbScarlsonj zent->zid = zid; 3817c478bd9Sstevel@tonic-gate 3827c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(zent->zname, root, sizeof (root))) != 3837c478bd9Sstevel@tonic-gate Z_OK) { 3847c478bd9Sstevel@tonic-gate errno = err; 3857c478bd9Sstevel@tonic-gate zperror2(zent->zname, gettext("could not get zone path")); 3867c478bd9Sstevel@tonic-gate return (Z_ERR); 3877c478bd9Sstevel@tonic-gate } 3887c478bd9Sstevel@tonic-gate (void) strlcpy(zent->zroot, root, sizeof (zent->zroot)); 3897c478bd9Sstevel@tonic-gate 3907c478bd9Sstevel@tonic-gate if ((err = zone_get_state(zent->zname, &zent->zstate_num)) != Z_OK) { 3917c478bd9Sstevel@tonic-gate errno = err; 3927c478bd9Sstevel@tonic-gate zperror2(zent->zname, gettext("could not get state")); 3937c478bd9Sstevel@tonic-gate return (Z_ERR); 3947c478bd9Sstevel@tonic-gate } 3957c478bd9Sstevel@tonic-gate zent->zstate_str = zone_state_str(zent->zstate_num); 3967c478bd9Sstevel@tonic-gate 3977c478bd9Sstevel@tonic-gate return (Z_OK); 3987c478bd9Sstevel@tonic-gate } 3997c478bd9Sstevel@tonic-gate 4007c478bd9Sstevel@tonic-gate /* 4017c478bd9Sstevel@tonic-gate * fetch_zents() calls zone_list(2) to find out how many zones are running 4027c478bd9Sstevel@tonic-gate * (which is stored in the global nzents), then calls zone_list(2) again 4037c478bd9Sstevel@tonic-gate * to fetch the list of running zones (stored in the global zents). This 4047c478bd9Sstevel@tonic-gate * function may be called multiple times, so if zents is already set, we 4057c478bd9Sstevel@tonic-gate * return immediately to save work. 4067c478bd9Sstevel@tonic-gate */ 4077c478bd9Sstevel@tonic-gate 4087c478bd9Sstevel@tonic-gate static int 409108322fbScarlsonj fetch_zents(void) 4107c478bd9Sstevel@tonic-gate { 4117c478bd9Sstevel@tonic-gate zoneid_t *zids = NULL; 4127c478bd9Sstevel@tonic-gate uint_t nzents_saved; 413108322fbScarlsonj int i, retv; 414108322fbScarlsonj FILE *fp; 415108322fbScarlsonj boolean_t inaltroot; 416108322fbScarlsonj zone_entry_t *zentp; 4177c478bd9Sstevel@tonic-gate 4187c478bd9Sstevel@tonic-gate if (nzents > 0) 4197c478bd9Sstevel@tonic-gate return (Z_OK); 4207c478bd9Sstevel@tonic-gate 4217c478bd9Sstevel@tonic-gate if (zone_list(NULL, &nzents) != 0) { 4227c478bd9Sstevel@tonic-gate zperror(gettext("failed to get zoneid list"), B_FALSE); 4237c478bd9Sstevel@tonic-gate return (Z_ERR); 4247c478bd9Sstevel@tonic-gate } 4257c478bd9Sstevel@tonic-gate 4267c478bd9Sstevel@tonic-gate again: 4277c478bd9Sstevel@tonic-gate if (nzents == 0) 4287c478bd9Sstevel@tonic-gate return (Z_OK); 4297c478bd9Sstevel@tonic-gate 4307c478bd9Sstevel@tonic-gate zids = safe_calloc(nzents, sizeof (zoneid_t)); 4317c478bd9Sstevel@tonic-gate nzents_saved = nzents; 4327c478bd9Sstevel@tonic-gate 4337c478bd9Sstevel@tonic-gate if (zone_list(zids, &nzents) != 0) { 4347c478bd9Sstevel@tonic-gate zperror(gettext("failed to get zone list"), B_FALSE); 4357c478bd9Sstevel@tonic-gate free(zids); 4367c478bd9Sstevel@tonic-gate return (Z_ERR); 4377c478bd9Sstevel@tonic-gate } 4387c478bd9Sstevel@tonic-gate if (nzents != nzents_saved) { 4397c478bd9Sstevel@tonic-gate /* list changed, try again */ 4407c478bd9Sstevel@tonic-gate free(zids); 4417c478bd9Sstevel@tonic-gate goto again; 4427c478bd9Sstevel@tonic-gate } 4437c478bd9Sstevel@tonic-gate 4447c478bd9Sstevel@tonic-gate zents = safe_calloc(nzents, sizeof (zone_entry_t)); 4457c478bd9Sstevel@tonic-gate 446108322fbScarlsonj inaltroot = zonecfg_in_alt_root(); 447108322fbScarlsonj if (inaltroot) 448108322fbScarlsonj fp = zonecfg_open_scratch("", B_FALSE); 449108322fbScarlsonj else 450108322fbScarlsonj fp = NULL; 451108322fbScarlsonj zentp = zents; 452108322fbScarlsonj retv = Z_OK; 4537c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 4547c478bd9Sstevel@tonic-gate char name[ZONENAME_MAX]; 455108322fbScarlsonj char altname[ZONENAME_MAX]; 4567c478bd9Sstevel@tonic-gate 457108322fbScarlsonj if (getzonenamebyid(zids[i], name, sizeof (name)) < 0) { 4587c478bd9Sstevel@tonic-gate zperror(gettext("failed to get zone name"), B_FALSE); 459108322fbScarlsonj retv = Z_ERR; 460108322fbScarlsonj continue; 4617c478bd9Sstevel@tonic-gate } 462108322fbScarlsonj if (zonecfg_is_scratch(name)) { 463108322fbScarlsonj /* Ignore scratch zones by default */ 464108322fbScarlsonj if (!inaltroot) 465108322fbScarlsonj continue; 466108322fbScarlsonj if (fp == NULL || 467108322fbScarlsonj zonecfg_reverse_scratch(fp, name, altname, 468108322fbScarlsonj sizeof (altname), NULL, 0) == -1) { 469108322fbScarlsonj zerror(gettext("cannot resolve scratch " 470108322fbScarlsonj "zone %s"), name); 471108322fbScarlsonj retv = Z_ERR; 472108322fbScarlsonj continue; 473108322fbScarlsonj } 474108322fbScarlsonj (void) strcpy(name, altname); 475108322fbScarlsonj } else { 476108322fbScarlsonj /* Ignore non-scratch when in an alternate root */ 477108322fbScarlsonj if (inaltroot && strcmp(name, GLOBAL_ZONENAME) != 0) 478108322fbScarlsonj continue; 479108322fbScarlsonj } 480108322fbScarlsonj if (lookup_zone_info(name, zids[i], zentp) != Z_OK) { 481108322fbScarlsonj zerror(gettext("failed to get zone data")); 482108322fbScarlsonj retv = Z_ERR; 483108322fbScarlsonj continue; 484108322fbScarlsonj } 485108322fbScarlsonj zentp++; 486108322fbScarlsonj } 487108322fbScarlsonj nzents = zentp - zents; 488108322fbScarlsonj if (fp != NULL) 489108322fbScarlsonj zonecfg_close_scratch(fp); 4907c478bd9Sstevel@tonic-gate 4917c478bd9Sstevel@tonic-gate free(zids); 492108322fbScarlsonj return (retv); 4937c478bd9Sstevel@tonic-gate } 4947c478bd9Sstevel@tonic-gate 495108322fbScarlsonj static int 4967c478bd9Sstevel@tonic-gate zone_print_list(zone_state_t min_state, boolean_t verbose, boolean_t parsable) 4977c478bd9Sstevel@tonic-gate { 4987c478bd9Sstevel@tonic-gate int i; 4997c478bd9Sstevel@tonic-gate zone_entry_t zent; 5007c478bd9Sstevel@tonic-gate FILE *cookie; 5017c478bd9Sstevel@tonic-gate char *name; 5027c478bd9Sstevel@tonic-gate 5037c478bd9Sstevel@tonic-gate /* 5047c478bd9Sstevel@tonic-gate * First get the list of running zones from the kernel and print them. 5057c478bd9Sstevel@tonic-gate * If that is all we need, then return. 5067c478bd9Sstevel@tonic-gate */ 507108322fbScarlsonj if ((i = fetch_zents()) != Z_OK) { 5087c478bd9Sstevel@tonic-gate /* 5097c478bd9Sstevel@tonic-gate * No need for error messages; fetch_zents() has already taken 5107c478bd9Sstevel@tonic-gate * care of this. 5117c478bd9Sstevel@tonic-gate */ 512108322fbScarlsonj return (i); 5137c478bd9Sstevel@tonic-gate } 514108322fbScarlsonj for (i = 0; i < nzents; i++) 5157c478bd9Sstevel@tonic-gate zone_print(&zents[i], verbose, parsable); 5167c478bd9Sstevel@tonic-gate if (min_state >= ZONE_STATE_RUNNING) 517108322fbScarlsonj return (Z_OK); 5187c478bd9Sstevel@tonic-gate /* 5197c478bd9Sstevel@tonic-gate * Next, get the full list of zones from the configuration, skipping 5207c478bd9Sstevel@tonic-gate * any we have already printed. 5217c478bd9Sstevel@tonic-gate */ 5227c478bd9Sstevel@tonic-gate cookie = setzoneent(); 5237c478bd9Sstevel@tonic-gate while ((name = getzoneent(cookie)) != NULL) { 5247c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 5257c478bd9Sstevel@tonic-gate if (strcmp(zents[i].zname, name) == 0) 5267c478bd9Sstevel@tonic-gate break; 5277c478bd9Sstevel@tonic-gate } 5287c478bd9Sstevel@tonic-gate if (i < nzents) { 5297c478bd9Sstevel@tonic-gate free(name); 5307c478bd9Sstevel@tonic-gate continue; 5317c478bd9Sstevel@tonic-gate } 532108322fbScarlsonj if (lookup_zone_info(name, ZONE_ID_UNDEFINED, &zent) != Z_OK) { 5337c478bd9Sstevel@tonic-gate free(name); 5347c478bd9Sstevel@tonic-gate continue; 5357c478bd9Sstevel@tonic-gate } 5367c478bd9Sstevel@tonic-gate free(name); 5377c478bd9Sstevel@tonic-gate if (zent.zstate_num >= min_state) 5387c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 5397c478bd9Sstevel@tonic-gate } 5407c478bd9Sstevel@tonic-gate endzoneent(cookie); 541108322fbScarlsonj return (Z_OK); 5427c478bd9Sstevel@tonic-gate } 5437c478bd9Sstevel@tonic-gate 5447c478bd9Sstevel@tonic-gate static zone_entry_t * 5457c478bd9Sstevel@tonic-gate lookup_running_zone(char *str) 5467c478bd9Sstevel@tonic-gate { 5477c478bd9Sstevel@tonic-gate zoneid_t zoneid; 5487c478bd9Sstevel@tonic-gate char *cp; 5497c478bd9Sstevel@tonic-gate int i; 5507c478bd9Sstevel@tonic-gate 5517c478bd9Sstevel@tonic-gate if (fetch_zents() != Z_OK) 5527c478bd9Sstevel@tonic-gate return (NULL); 5537c478bd9Sstevel@tonic-gate 5547c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 5557c478bd9Sstevel@tonic-gate if (strcmp(str, zents[i].zname) == 0) 5567c478bd9Sstevel@tonic-gate return (&zents[i]); 5577c478bd9Sstevel@tonic-gate } 5587c478bd9Sstevel@tonic-gate errno = 0; 5597c478bd9Sstevel@tonic-gate zoneid = strtol(str, &cp, 0); 5607c478bd9Sstevel@tonic-gate if (zoneid < MIN_ZONEID || zoneid > MAX_ZONEID || 5617c478bd9Sstevel@tonic-gate errno != 0 || *cp != '\0') 5627c478bd9Sstevel@tonic-gate return (NULL); 5637c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 5647c478bd9Sstevel@tonic-gate if (zoneid == zents[i].zid) 5657c478bd9Sstevel@tonic-gate return (&zents[i]); 5667c478bd9Sstevel@tonic-gate } 5677c478bd9Sstevel@tonic-gate return (NULL); 5687c478bd9Sstevel@tonic-gate } 5697c478bd9Sstevel@tonic-gate 5707c478bd9Sstevel@tonic-gate /* 5717c478bd9Sstevel@tonic-gate * Check a bit in a mode_t: if on is B_TRUE, that bit should be on; if 5727c478bd9Sstevel@tonic-gate * B_FALSE, it should be off. Return B_TRUE if the mode is bad (incorrect). 5737c478bd9Sstevel@tonic-gate */ 5747c478bd9Sstevel@tonic-gate static boolean_t 5757c478bd9Sstevel@tonic-gate bad_mode_bit(mode_t mode, mode_t bit, boolean_t on, char *file) 5767c478bd9Sstevel@tonic-gate { 5777c478bd9Sstevel@tonic-gate char *str; 5787c478bd9Sstevel@tonic-gate 5797c478bd9Sstevel@tonic-gate assert(bit == S_IRUSR || bit == S_IWUSR || bit == S_IXUSR || 5807c478bd9Sstevel@tonic-gate bit == S_IRGRP || bit == S_IWGRP || bit == S_IXGRP || 5817c478bd9Sstevel@tonic-gate bit == S_IROTH || bit == S_IWOTH || bit == S_IXOTH); 5827c478bd9Sstevel@tonic-gate /* 5837c478bd9Sstevel@tonic-gate * TRANSLATION_NOTE 5847c478bd9Sstevel@tonic-gate * The strings below will be used as part of a larger message, 5857c478bd9Sstevel@tonic-gate * either: 5867c478bd9Sstevel@tonic-gate * (file name) must be (owner|group|world) (read|writ|execut)able 5877c478bd9Sstevel@tonic-gate * or 5887c478bd9Sstevel@tonic-gate * (file name) must not be (owner|group|world) (read|writ|execut)able 5897c478bd9Sstevel@tonic-gate */ 5907c478bd9Sstevel@tonic-gate switch (bit) { 5917c478bd9Sstevel@tonic-gate case S_IRUSR: 5927c478bd9Sstevel@tonic-gate str = gettext("owner readable"); 5937c478bd9Sstevel@tonic-gate break; 5947c478bd9Sstevel@tonic-gate case S_IWUSR: 5957c478bd9Sstevel@tonic-gate str = gettext("owner writable"); 5967c478bd9Sstevel@tonic-gate break; 5977c478bd9Sstevel@tonic-gate case S_IXUSR: 5987c478bd9Sstevel@tonic-gate str = gettext("owner executable"); 5997c478bd9Sstevel@tonic-gate break; 6007c478bd9Sstevel@tonic-gate case S_IRGRP: 6017c478bd9Sstevel@tonic-gate str = gettext("group readable"); 6027c478bd9Sstevel@tonic-gate break; 6037c478bd9Sstevel@tonic-gate case S_IWGRP: 6047c478bd9Sstevel@tonic-gate str = gettext("group writable"); 6057c478bd9Sstevel@tonic-gate break; 6067c478bd9Sstevel@tonic-gate case S_IXGRP: 6077c478bd9Sstevel@tonic-gate str = gettext("group executable"); 6087c478bd9Sstevel@tonic-gate break; 6097c478bd9Sstevel@tonic-gate case S_IROTH: 6107c478bd9Sstevel@tonic-gate str = gettext("world readable"); 6117c478bd9Sstevel@tonic-gate break; 6127c478bd9Sstevel@tonic-gate case S_IWOTH: 6137c478bd9Sstevel@tonic-gate str = gettext("world writable"); 6147c478bd9Sstevel@tonic-gate break; 6157c478bd9Sstevel@tonic-gate case S_IXOTH: 6167c478bd9Sstevel@tonic-gate str = gettext("world executable"); 6177c478bd9Sstevel@tonic-gate break; 6187c478bd9Sstevel@tonic-gate } 6197c478bd9Sstevel@tonic-gate if ((mode & bit) == (on ? 0 : bit)) { 6207c478bd9Sstevel@tonic-gate /* 6217c478bd9Sstevel@tonic-gate * TRANSLATION_NOTE 6227c478bd9Sstevel@tonic-gate * The first parameter below is a file name; the second 6237c478bd9Sstevel@tonic-gate * is one of the "(owner|group|world) (read|writ|execut)able" 6247c478bd9Sstevel@tonic-gate * strings from above. 6257c478bd9Sstevel@tonic-gate */ 6267c478bd9Sstevel@tonic-gate /* 6277c478bd9Sstevel@tonic-gate * The code below could be simplified but not in a way 6287c478bd9Sstevel@tonic-gate * that would easily translate to non-English locales. 6297c478bd9Sstevel@tonic-gate */ 6307c478bd9Sstevel@tonic-gate if (on) { 6317c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s must be %s.\n"), 6327c478bd9Sstevel@tonic-gate file, str); 6337c478bd9Sstevel@tonic-gate } else { 6347c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s must not be %s.\n"), 6357c478bd9Sstevel@tonic-gate file, str); 6367c478bd9Sstevel@tonic-gate } 6377c478bd9Sstevel@tonic-gate return (B_TRUE); 6387c478bd9Sstevel@tonic-gate } 6397c478bd9Sstevel@tonic-gate return (B_FALSE); 6407c478bd9Sstevel@tonic-gate } 6417c478bd9Sstevel@tonic-gate 6427c478bd9Sstevel@tonic-gate /* 6437c478bd9Sstevel@tonic-gate * We want to make sure that no zone has its zone path as a child node 6447c478bd9Sstevel@tonic-gate * (in the directory sense) of any other. We do that by comparing this 6457c478bd9Sstevel@tonic-gate * zone's path to the path of all other (non-global) zones. The comparison 6467c478bd9Sstevel@tonic-gate * in each case is simple: add '/' to the end of the path, then do a 6477c478bd9Sstevel@tonic-gate * strncmp() of the two paths, using the length of the shorter one. 6487c478bd9Sstevel@tonic-gate */ 6497c478bd9Sstevel@tonic-gate 6507c478bd9Sstevel@tonic-gate static int 6517c478bd9Sstevel@tonic-gate crosscheck_zonepaths(char *path) 6527c478bd9Sstevel@tonic-gate { 6537c478bd9Sstevel@tonic-gate char rpath[MAXPATHLEN]; /* resolved path */ 6547c478bd9Sstevel@tonic-gate char path_copy[MAXPATHLEN]; /* copy of original path */ 6557c478bd9Sstevel@tonic-gate char rpath_copy[MAXPATHLEN]; /* copy of original rpath */ 6567c478bd9Sstevel@tonic-gate struct zoneent *ze; 6577c478bd9Sstevel@tonic-gate int res, err; 6587c478bd9Sstevel@tonic-gate FILE *cookie; 6597c478bd9Sstevel@tonic-gate 6607c478bd9Sstevel@tonic-gate cookie = setzoneent(); 6617c478bd9Sstevel@tonic-gate while ((ze = getzoneent_private(cookie)) != NULL) { 6627c478bd9Sstevel@tonic-gate /* Skip zones which are not installed. */ 6637c478bd9Sstevel@tonic-gate if (ze->zone_state < ZONE_STATE_INSTALLED) { 6647c478bd9Sstevel@tonic-gate free(ze); 6657c478bd9Sstevel@tonic-gate continue; 6667c478bd9Sstevel@tonic-gate } 6677c478bd9Sstevel@tonic-gate /* Skip the global zone and the current target zone. */ 6687c478bd9Sstevel@tonic-gate if (strcmp(ze->zone_name, GLOBAL_ZONENAME) == 0 || 6697c478bd9Sstevel@tonic-gate strcmp(ze->zone_name, target_zone) == 0) { 6707c478bd9Sstevel@tonic-gate free(ze); 6717c478bd9Sstevel@tonic-gate continue; 6727c478bd9Sstevel@tonic-gate } 6737c478bd9Sstevel@tonic-gate if (strlen(ze->zone_path) == 0) { 6747c478bd9Sstevel@tonic-gate /* old index file without path, fall back */ 6757c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(ze->zone_name, 6767c478bd9Sstevel@tonic-gate ze->zone_path, sizeof (ze->zone_path))) != Z_OK) { 6777c478bd9Sstevel@tonic-gate errno = err; 6787c478bd9Sstevel@tonic-gate zperror2(ze->zone_name, 6797c478bd9Sstevel@tonic-gate gettext("could not get zone path")); 6807c478bd9Sstevel@tonic-gate free(ze); 6817c478bd9Sstevel@tonic-gate continue; 6827c478bd9Sstevel@tonic-gate } 6837c478bd9Sstevel@tonic-gate } 684108322fbScarlsonj (void) snprintf(path_copy, sizeof (path_copy), "%s%s", 685108322fbScarlsonj zonecfg_get_root(), ze->zone_path); 686108322fbScarlsonj res = resolvepath(path_copy, rpath, sizeof (rpath)); 6877c478bd9Sstevel@tonic-gate if (res == -1) { 6887c478bd9Sstevel@tonic-gate if (errno != ENOENT) { 689108322fbScarlsonj zperror(path_copy, B_FALSE); 6907c478bd9Sstevel@tonic-gate free(ze); 6917c478bd9Sstevel@tonic-gate return (Z_ERR); 6927c478bd9Sstevel@tonic-gate } 6937c478bd9Sstevel@tonic-gate (void) printf(gettext("WARNING: zone %s is installed, " 6947c478bd9Sstevel@tonic-gate "but its %s %s does not exist.\n"), ze->zone_name, 695108322fbScarlsonj "zonepath", path_copy); 6967c478bd9Sstevel@tonic-gate free(ze); 6977c478bd9Sstevel@tonic-gate continue; 6987c478bd9Sstevel@tonic-gate } 6997c478bd9Sstevel@tonic-gate rpath[res] = '\0'; 7007c478bd9Sstevel@tonic-gate (void) snprintf(path_copy, sizeof (path_copy), "%s/", path); 7017c478bd9Sstevel@tonic-gate (void) snprintf(rpath_copy, sizeof (rpath_copy), "%s/", rpath); 7027c478bd9Sstevel@tonic-gate if (strncmp(path_copy, rpath_copy, 7037c478bd9Sstevel@tonic-gate min(strlen(path_copy), strlen(rpath_copy))) == 0) { 7047c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s zonepath (%s) and " 7057c478bd9Sstevel@tonic-gate "%s zonepath (%s) overlap.\n"), 7067c478bd9Sstevel@tonic-gate target_zone, path, ze->zone_name, rpath); 7077c478bd9Sstevel@tonic-gate free(ze); 7087c478bd9Sstevel@tonic-gate return (Z_ERR); 7097c478bd9Sstevel@tonic-gate } 7107c478bd9Sstevel@tonic-gate free(ze); 7117c478bd9Sstevel@tonic-gate } 7127c478bd9Sstevel@tonic-gate endzoneent(cookie); 7137c478bd9Sstevel@tonic-gate return (Z_OK); 7147c478bd9Sstevel@tonic-gate } 7157c478bd9Sstevel@tonic-gate 7167c478bd9Sstevel@tonic-gate static int 7177c478bd9Sstevel@tonic-gate validate_zonepath(char *path, int cmd_num) 7187c478bd9Sstevel@tonic-gate { 7197c478bd9Sstevel@tonic-gate int res; /* result of last library/system call */ 7207c478bd9Sstevel@tonic-gate boolean_t err = B_FALSE; /* have we run into an error? */ 7217c478bd9Sstevel@tonic-gate struct stat stbuf; 7227c478bd9Sstevel@tonic-gate struct statvfs vfsbuf; 7237c478bd9Sstevel@tonic-gate char rpath[MAXPATHLEN]; /* resolved path */ 7247c478bd9Sstevel@tonic-gate char ppath[MAXPATHLEN]; /* parent path */ 7257c478bd9Sstevel@tonic-gate char rppath[MAXPATHLEN]; /* resolved parent path */ 7267c478bd9Sstevel@tonic-gate char rootpath[MAXPATHLEN]; /* root path */ 7277c478bd9Sstevel@tonic-gate zone_state_t state; 7287c478bd9Sstevel@tonic-gate 7297c478bd9Sstevel@tonic-gate if (path[0] != '/') { 7307c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 7317c478bd9Sstevel@tonic-gate gettext("%s is not an absolute path.\n"), path); 7327c478bd9Sstevel@tonic-gate return (Z_ERR); 7337c478bd9Sstevel@tonic-gate } 7347c478bd9Sstevel@tonic-gate if ((res = resolvepath(path, rpath, sizeof (rpath))) == -1) { 7357c478bd9Sstevel@tonic-gate if ((errno != ENOENT) || 7367c478bd9Sstevel@tonic-gate (cmd_num != CMD_VERIFY && cmd_num != CMD_INSTALL)) { 7377c478bd9Sstevel@tonic-gate zperror(path, B_FALSE); 7387c478bd9Sstevel@tonic-gate return (Z_ERR); 7397c478bd9Sstevel@tonic-gate } 7407c478bd9Sstevel@tonic-gate if (cmd_num == CMD_VERIFY) { 7417c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("WARNING: %s does not " 7427c478bd9Sstevel@tonic-gate "exist, so it cannot be verified.\nWhen 'zoneadm " 7437c478bd9Sstevel@tonic-gate "%s' is run, '%s' will try to create\n%s, and '%s' " 7447c478bd9Sstevel@tonic-gate "will be tried again,\nbut the '%s' may fail if:\n" 7457c478bd9Sstevel@tonic-gate "the parent directory of %s is group- or other-" 7467c478bd9Sstevel@tonic-gate "writable\nor\n%s overlaps with any other " 7477c478bd9Sstevel@tonic-gate "installed zones.\n"), path, 7487c478bd9Sstevel@tonic-gate cmd_to_str(CMD_INSTALL), cmd_to_str(CMD_INSTALL), 7497c478bd9Sstevel@tonic-gate path, cmd_to_str(CMD_VERIFY), 7507c478bd9Sstevel@tonic-gate cmd_to_str(CMD_VERIFY), path, path); 7517c478bd9Sstevel@tonic-gate return (Z_OK); 7527c478bd9Sstevel@tonic-gate } 7537c478bd9Sstevel@tonic-gate /* 7547c478bd9Sstevel@tonic-gate * The zonepath is supposed to be mode 700 but its 7557c478bd9Sstevel@tonic-gate * parent(s) 755. So use 755 on the mkdirp() then 7567c478bd9Sstevel@tonic-gate * chmod() the zonepath itself to 700. 7577c478bd9Sstevel@tonic-gate */ 7587c478bd9Sstevel@tonic-gate if (mkdirp(path, DEFAULT_DIR_MODE) < 0) { 7597c478bd9Sstevel@tonic-gate zperror(path, B_FALSE); 7607c478bd9Sstevel@tonic-gate return (Z_ERR); 7617c478bd9Sstevel@tonic-gate } 7627c478bd9Sstevel@tonic-gate /* 7637c478bd9Sstevel@tonic-gate * If the chmod() fails, report the error, but might 7647c478bd9Sstevel@tonic-gate * as well continue the verify procedure. 7657c478bd9Sstevel@tonic-gate */ 7667c478bd9Sstevel@tonic-gate if (chmod(path, S_IRWXU) != 0) 7677c478bd9Sstevel@tonic-gate zperror(path, B_FALSE); 7687c478bd9Sstevel@tonic-gate /* 7697c478bd9Sstevel@tonic-gate * Since the mkdir() succeeded, we should not have to 7707c478bd9Sstevel@tonic-gate * worry about a subsequent ENOENT, thus this should 7717c478bd9Sstevel@tonic-gate * only recurse once. 7727c478bd9Sstevel@tonic-gate */ 7737c478bd9Sstevel@tonic-gate return (validate_zonepath(path, CMD_INSTALL)); 7747c478bd9Sstevel@tonic-gate } 7757c478bd9Sstevel@tonic-gate rpath[res] = '\0'; 7767c478bd9Sstevel@tonic-gate if (strcmp(path, rpath) != 0) { 7777c478bd9Sstevel@tonic-gate errno = Z_RESOLVED_PATH; 7787c478bd9Sstevel@tonic-gate zperror(path, B_TRUE); 7797c478bd9Sstevel@tonic-gate return (Z_ERR); 7807c478bd9Sstevel@tonic-gate } 7817c478bd9Sstevel@tonic-gate if ((res = stat(rpath, &stbuf)) != 0) { 7827c478bd9Sstevel@tonic-gate zperror(rpath, B_FALSE); 7837c478bd9Sstevel@tonic-gate return (Z_ERR); 7847c478bd9Sstevel@tonic-gate } 7857c478bd9Sstevel@tonic-gate if (!S_ISDIR(stbuf.st_mode)) { 7867c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not a directory.\n"), 7877c478bd9Sstevel@tonic-gate rpath); 7887c478bd9Sstevel@tonic-gate return (Z_ERR); 7897c478bd9Sstevel@tonic-gate } 7907c478bd9Sstevel@tonic-gate if ((strcmp(stbuf.st_fstype, MNTTYPE_TMPFS) == 0) || 7917c478bd9Sstevel@tonic-gate (strcmp(stbuf.st_fstype, MNTTYPE_XMEMFS) == 0)) { 7927c478bd9Sstevel@tonic-gate (void) printf(gettext("WARNING: %s is on a temporary " 7937c478bd9Sstevel@tonic-gate "file-system.\n"), rpath); 7947c478bd9Sstevel@tonic-gate } 7957c478bd9Sstevel@tonic-gate if (crosscheck_zonepaths(rpath) != Z_OK) 7967c478bd9Sstevel@tonic-gate return (Z_ERR); 7977c478bd9Sstevel@tonic-gate /* 7987c478bd9Sstevel@tonic-gate * Try to collect and report as many minor errors as possible 7997c478bd9Sstevel@tonic-gate * before returning, so the user can learn everything that needs 8007c478bd9Sstevel@tonic-gate * to be fixed up front. 8017c478bd9Sstevel@tonic-gate */ 8027c478bd9Sstevel@tonic-gate if (stbuf.st_uid != 0) { 8037c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not owned by root.\n"), 8047c478bd9Sstevel@tonic-gate rpath); 8057c478bd9Sstevel@tonic-gate err = B_TRUE; 8067c478bd9Sstevel@tonic-gate } 8077c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IRUSR, B_TRUE, rpath); 8087c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWUSR, B_TRUE, rpath); 8097c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXUSR, B_TRUE, rpath); 8107c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IRGRP, B_FALSE, rpath); 8117c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWGRP, B_FALSE, rpath); 8127c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXGRP, B_FALSE, rpath); 8137c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IROTH, B_FALSE, rpath); 8147c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWOTH, B_FALSE, rpath); 8157c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXOTH, B_FALSE, rpath); 8167c478bd9Sstevel@tonic-gate 8177c478bd9Sstevel@tonic-gate (void) snprintf(ppath, sizeof (ppath), "%s/..", path); 8187c478bd9Sstevel@tonic-gate if ((res = resolvepath(ppath, rppath, sizeof (rppath))) == -1) { 8197c478bd9Sstevel@tonic-gate zperror(ppath, B_FALSE); 8207c478bd9Sstevel@tonic-gate return (Z_ERR); 8217c478bd9Sstevel@tonic-gate } 8227c478bd9Sstevel@tonic-gate rppath[res] = '\0'; 8237c478bd9Sstevel@tonic-gate if ((res = stat(rppath, &stbuf)) != 0) { 8247c478bd9Sstevel@tonic-gate zperror(rppath, B_FALSE); 8257c478bd9Sstevel@tonic-gate return (Z_ERR); 8267c478bd9Sstevel@tonic-gate } 8277c478bd9Sstevel@tonic-gate /* theoretically impossible */ 8287c478bd9Sstevel@tonic-gate if (!S_ISDIR(stbuf.st_mode)) { 8297c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not a directory.\n"), 8307c478bd9Sstevel@tonic-gate rppath); 8317c478bd9Sstevel@tonic-gate return (Z_ERR); 8327c478bd9Sstevel@tonic-gate } 8337c478bd9Sstevel@tonic-gate if (stbuf.st_uid != 0) { 8347c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not owned by root.\n"), 8357c478bd9Sstevel@tonic-gate rppath); 8367c478bd9Sstevel@tonic-gate err = B_TRUE; 8377c478bd9Sstevel@tonic-gate } 8387c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IRUSR, B_TRUE, rppath); 8397c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWUSR, B_TRUE, rppath); 8407c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXUSR, B_TRUE, rppath); 8417c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWGRP, B_FALSE, rppath); 8427c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWOTH, B_FALSE, rppath); 8437c478bd9Sstevel@tonic-gate if (strcmp(rpath, rppath) == 0) { 8447c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is its own parent.\n"), 8457c478bd9Sstevel@tonic-gate rppath); 8467c478bd9Sstevel@tonic-gate err = B_TRUE; 8477c478bd9Sstevel@tonic-gate } 8487c478bd9Sstevel@tonic-gate 8497c478bd9Sstevel@tonic-gate if (statvfs(rpath, &vfsbuf) != 0) { 8507c478bd9Sstevel@tonic-gate zperror(rpath, B_FALSE); 8517c478bd9Sstevel@tonic-gate return (Z_ERR); 8527c478bd9Sstevel@tonic-gate } 8537c478bd9Sstevel@tonic-gate if (strncmp(vfsbuf.f_basetype, "nfs", 3) == 0) { 8547c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("Zonepath %s is over NFS, " 8557c478bd9Sstevel@tonic-gate "which is not currently supported.\n"), rpath); 8567c478bd9Sstevel@tonic-gate return (Z_ERR); 8577c478bd9Sstevel@tonic-gate } 8587c478bd9Sstevel@tonic-gate 8597c478bd9Sstevel@tonic-gate if ((res = zone_get_state(target_zone, &state)) != Z_OK) { 8607c478bd9Sstevel@tonic-gate errno = res; 8617c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get state")); 8627c478bd9Sstevel@tonic-gate return (Z_ERR); 8637c478bd9Sstevel@tonic-gate } 8647c478bd9Sstevel@tonic-gate /* 8657c478bd9Sstevel@tonic-gate * The existence of the root path is only bad in the configured state, 8667c478bd9Sstevel@tonic-gate * as it is *supposed* to be there at the installed and later states. 8677c478bd9Sstevel@tonic-gate * State/command mismatches are caught earlier in verify_details(). 8687c478bd9Sstevel@tonic-gate */ 8697c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_CONFIGURED) { 8707c478bd9Sstevel@tonic-gate if (snprintf(rootpath, sizeof (rootpath), "%s/root", rpath) >= 8717c478bd9Sstevel@tonic-gate sizeof (rootpath)) { 8727c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 8737c478bd9Sstevel@tonic-gate gettext("Zonepath %s is too long.\n"), rpath); 8747c478bd9Sstevel@tonic-gate return (Z_ERR); 8757c478bd9Sstevel@tonic-gate } 8767c478bd9Sstevel@tonic-gate if ((res = stat(rootpath, &stbuf)) == 0) { 8777c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("Rootpath %s exists; " 8787c478bd9Sstevel@tonic-gate "remove or move aside prior to %s.\n"), rootpath, 8797c478bd9Sstevel@tonic-gate cmd_to_str(CMD_INSTALL)); 8807c478bd9Sstevel@tonic-gate return (Z_ERR); 8817c478bd9Sstevel@tonic-gate } 8827c478bd9Sstevel@tonic-gate } 8837c478bd9Sstevel@tonic-gate 8847c478bd9Sstevel@tonic-gate return (err ? Z_ERR : Z_OK); 8857c478bd9Sstevel@tonic-gate } 8867c478bd9Sstevel@tonic-gate 8877c478bd9Sstevel@tonic-gate static void 8887c478bd9Sstevel@tonic-gate release_lock_file(int lockfd) 8897c478bd9Sstevel@tonic-gate { 8907c478bd9Sstevel@tonic-gate (void) close(lockfd); 8917c478bd9Sstevel@tonic-gate } 8927c478bd9Sstevel@tonic-gate 8937c478bd9Sstevel@tonic-gate static int 8947c478bd9Sstevel@tonic-gate grab_lock_file(const char *zone_name, int *lockfd) 8957c478bd9Sstevel@tonic-gate { 8967c478bd9Sstevel@tonic-gate char pathbuf[PATH_MAX]; 8977c478bd9Sstevel@tonic-gate struct flock flock; 8987c478bd9Sstevel@tonic-gate 899108322fbScarlsonj if (snprintf(pathbuf, sizeof (pathbuf), "%s%s", zonecfg_get_root(), 900108322fbScarlsonj ZONES_TMPDIR) >= sizeof (pathbuf)) { 901108322fbScarlsonj zerror(gettext("alternate root path is too long")); 902108322fbScarlsonj return (Z_ERR); 903108322fbScarlsonj } 904108322fbScarlsonj if (mkdir(pathbuf, S_IRWXU) < 0 && errno != EEXIST) { 905108322fbScarlsonj zerror(gettext("could not mkdir %s: %s"), pathbuf, 9067c478bd9Sstevel@tonic-gate strerror(errno)); 9077c478bd9Sstevel@tonic-gate return (Z_ERR); 9087c478bd9Sstevel@tonic-gate } 909108322fbScarlsonj (void) chmod(pathbuf, S_IRWXU); 9107c478bd9Sstevel@tonic-gate 9117c478bd9Sstevel@tonic-gate /* 9127c478bd9Sstevel@tonic-gate * One of these lock files is created for each zone (when needed). 9137c478bd9Sstevel@tonic-gate * The lock files are not cleaned up (except on system reboot), 9147c478bd9Sstevel@tonic-gate * but since there is only one per zone, there is no resource 9157c478bd9Sstevel@tonic-gate * starvation issue. 9167c478bd9Sstevel@tonic-gate */ 917108322fbScarlsonj if (snprintf(pathbuf, sizeof (pathbuf), "%s%s/%s.zoneadm.lock", 918108322fbScarlsonj zonecfg_get_root(), ZONES_TMPDIR, zone_name) >= sizeof (pathbuf)) { 919108322fbScarlsonj zerror(gettext("alternate root path is too long")); 920108322fbScarlsonj return (Z_ERR); 921108322fbScarlsonj } 9227c478bd9Sstevel@tonic-gate if ((*lockfd = open(pathbuf, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR)) < 0) { 9237c478bd9Sstevel@tonic-gate zerror(gettext("could not open %s: %s"), pathbuf, 9247c478bd9Sstevel@tonic-gate strerror(errno)); 9257c478bd9Sstevel@tonic-gate return (Z_ERR); 9267c478bd9Sstevel@tonic-gate } 9277c478bd9Sstevel@tonic-gate /* 9287c478bd9Sstevel@tonic-gate * Lock the file to synchronize with other zoneadmds 9297c478bd9Sstevel@tonic-gate */ 9307c478bd9Sstevel@tonic-gate flock.l_type = F_WRLCK; 9317c478bd9Sstevel@tonic-gate flock.l_whence = SEEK_SET; 9327c478bd9Sstevel@tonic-gate flock.l_start = (off_t)0; 9337c478bd9Sstevel@tonic-gate flock.l_len = (off_t)0; 9347c478bd9Sstevel@tonic-gate if (fcntl(*lockfd, F_SETLKW, &flock) < 0) { 9357c478bd9Sstevel@tonic-gate zerror(gettext("unable to lock %s: %s"), pathbuf, 9367c478bd9Sstevel@tonic-gate strerror(errno)); 9377c478bd9Sstevel@tonic-gate release_lock_file(*lockfd); 9387c478bd9Sstevel@tonic-gate return (Z_ERR); 9397c478bd9Sstevel@tonic-gate } 9407c478bd9Sstevel@tonic-gate return (Z_OK); 9417c478bd9Sstevel@tonic-gate } 9427c478bd9Sstevel@tonic-gate 943108322fbScarlsonj static boolean_t 9447c478bd9Sstevel@tonic-gate get_doorname(const char *zone_name, char *buffer) 9457c478bd9Sstevel@tonic-gate { 946108322fbScarlsonj return (snprintf(buffer, PATH_MAX, "%s" ZONE_DOOR_PATH, 947108322fbScarlsonj zonecfg_get_root(), zone_name) < PATH_MAX); 9487c478bd9Sstevel@tonic-gate } 9497c478bd9Sstevel@tonic-gate 9507c478bd9Sstevel@tonic-gate /* 9517c478bd9Sstevel@tonic-gate * system daemons are not audited. For the global zone, this occurs 9527c478bd9Sstevel@tonic-gate * "naturally" since init is started with the default audit 9537c478bd9Sstevel@tonic-gate * characteristics. Since zoneadmd is a system daemon and it starts 9547c478bd9Sstevel@tonic-gate * init for a zone, it is necessary to clear out the audit 9557c478bd9Sstevel@tonic-gate * characteristics inherited from whomever started zoneadmd. This is 9567c478bd9Sstevel@tonic-gate * indicated by the audit id, which is set from the ruid parameter of 9577c478bd9Sstevel@tonic-gate * adt_set_user(), below. 9587c478bd9Sstevel@tonic-gate */ 9597c478bd9Sstevel@tonic-gate 9607c478bd9Sstevel@tonic-gate static void 9617c478bd9Sstevel@tonic-gate prepare_audit_context() 9627c478bd9Sstevel@tonic-gate { 9637c478bd9Sstevel@tonic-gate adt_session_data_t *ah; 9647c478bd9Sstevel@tonic-gate char *failure = gettext("audit failure: %s"); 9657c478bd9Sstevel@tonic-gate 9667c478bd9Sstevel@tonic-gate if (adt_start_session(&ah, NULL, 0)) { 9677c478bd9Sstevel@tonic-gate zerror(failure, strerror(errno)); 9687c478bd9Sstevel@tonic-gate return; 9697c478bd9Sstevel@tonic-gate } 9707c478bd9Sstevel@tonic-gate if (adt_set_user(ah, ADT_NO_AUDIT, ADT_NO_AUDIT, 9717c478bd9Sstevel@tonic-gate ADT_NO_AUDIT, ADT_NO_AUDIT, NULL, ADT_NEW)) { 9727c478bd9Sstevel@tonic-gate zerror(failure, strerror(errno)); 9737c478bd9Sstevel@tonic-gate (void) adt_end_session(ah); 9747c478bd9Sstevel@tonic-gate return; 9757c478bd9Sstevel@tonic-gate } 9767c478bd9Sstevel@tonic-gate if (adt_set_proc(ah)) 9777c478bd9Sstevel@tonic-gate zerror(failure, strerror(errno)); 9787c478bd9Sstevel@tonic-gate 9797c478bd9Sstevel@tonic-gate (void) adt_end_session(ah); 9807c478bd9Sstevel@tonic-gate } 9817c478bd9Sstevel@tonic-gate 9827c478bd9Sstevel@tonic-gate static int 9837c478bd9Sstevel@tonic-gate start_zoneadmd(const char *zone_name) 9847c478bd9Sstevel@tonic-gate { 9857c478bd9Sstevel@tonic-gate char doorpath[PATH_MAX]; 9867c478bd9Sstevel@tonic-gate pid_t child_pid; 9877c478bd9Sstevel@tonic-gate int error = Z_ERR; 9887c478bd9Sstevel@tonic-gate int doorfd, lockfd; 9897c478bd9Sstevel@tonic-gate struct door_info info; 9907c478bd9Sstevel@tonic-gate 991108322fbScarlsonj if (!get_doorname(zone_name, doorpath)) 992108322fbScarlsonj return (Z_ERR); 9937c478bd9Sstevel@tonic-gate 9947c478bd9Sstevel@tonic-gate if (grab_lock_file(zone_name, &lockfd) != Z_OK) 9957c478bd9Sstevel@tonic-gate return (Z_ERR); 9967c478bd9Sstevel@tonic-gate 9977c478bd9Sstevel@tonic-gate /* 9987c478bd9Sstevel@tonic-gate * Now that we have the lock, re-confirm that the daemon is 9997c478bd9Sstevel@tonic-gate * *not* up and working fine. If it is still down, we have a green 10007c478bd9Sstevel@tonic-gate * light to start it. 10017c478bd9Sstevel@tonic-gate */ 10027c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 10037c478bd9Sstevel@tonic-gate if (errno != ENOENT) { 10047c478bd9Sstevel@tonic-gate zperror(doorpath, B_FALSE); 10057c478bd9Sstevel@tonic-gate goto out; 10067c478bd9Sstevel@tonic-gate } 10077c478bd9Sstevel@tonic-gate } else { 10087c478bd9Sstevel@tonic-gate if (door_info(doorfd, &info) == 0 && 10097c478bd9Sstevel@tonic-gate ((info.di_attributes & DOOR_REVOKED) == 0)) { 10107c478bd9Sstevel@tonic-gate error = Z_OK; 10117c478bd9Sstevel@tonic-gate (void) close(doorfd); 10127c478bd9Sstevel@tonic-gate goto out; 10137c478bd9Sstevel@tonic-gate } 10147c478bd9Sstevel@tonic-gate (void) close(doorfd); 10157c478bd9Sstevel@tonic-gate } 10167c478bd9Sstevel@tonic-gate 10177c478bd9Sstevel@tonic-gate if ((child_pid = fork()) == -1) { 10187c478bd9Sstevel@tonic-gate zperror(gettext("could not fork"), B_FALSE); 10197c478bd9Sstevel@tonic-gate goto out; 10207c478bd9Sstevel@tonic-gate } else if (child_pid == 0) { 1021108322fbScarlsonj const char *argv[6], **ap; 10227c478bd9Sstevel@tonic-gate 1023108322fbScarlsonj /* child process */ 10247c478bd9Sstevel@tonic-gate prepare_audit_context(); 10257c478bd9Sstevel@tonic-gate 1026108322fbScarlsonj ap = argv; 1027108322fbScarlsonj *ap++ = "zoneadmd"; 1028108322fbScarlsonj *ap++ = "-z"; 1029108322fbScarlsonj *ap++ = zone_name; 1030108322fbScarlsonj if (zonecfg_in_alt_root()) { 1031108322fbScarlsonj *ap++ = "-R"; 1032108322fbScarlsonj *ap++ = zonecfg_get_root(); 1033108322fbScarlsonj } 1034108322fbScarlsonj *ap = NULL; 1035108322fbScarlsonj 1036108322fbScarlsonj (void) execv("/usr/lib/zones/zoneadmd", (char * const *)argv); 10377c478bd9Sstevel@tonic-gate zperror(gettext("could not exec zoneadmd"), B_FALSE); 10387c478bd9Sstevel@tonic-gate _exit(Z_ERR); 10397c478bd9Sstevel@tonic-gate } else { 10407c478bd9Sstevel@tonic-gate /* parent process */ 10417c478bd9Sstevel@tonic-gate pid_t retval; 10427c478bd9Sstevel@tonic-gate int pstatus = 0; 10437c478bd9Sstevel@tonic-gate 10447c478bd9Sstevel@tonic-gate do { 10457c478bd9Sstevel@tonic-gate retval = waitpid(child_pid, &pstatus, 0); 10467c478bd9Sstevel@tonic-gate } while (retval != child_pid); 10477c478bd9Sstevel@tonic-gate if (WIFSIGNALED(pstatus) || (WIFEXITED(pstatus) && 10487c478bd9Sstevel@tonic-gate WEXITSTATUS(pstatus) != 0)) { 10497c478bd9Sstevel@tonic-gate zerror(gettext("could not start %s"), "zoneadmd"); 10507c478bd9Sstevel@tonic-gate goto out; 10517c478bd9Sstevel@tonic-gate } 10527c478bd9Sstevel@tonic-gate } 10537c478bd9Sstevel@tonic-gate error = Z_OK; 10547c478bd9Sstevel@tonic-gate out: 10557c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 10567c478bd9Sstevel@tonic-gate return (error); 10577c478bd9Sstevel@tonic-gate } 10587c478bd9Sstevel@tonic-gate 10597c478bd9Sstevel@tonic-gate static int 10607c478bd9Sstevel@tonic-gate ping_zoneadmd(const char *zone_name) 10617c478bd9Sstevel@tonic-gate { 10627c478bd9Sstevel@tonic-gate char doorpath[PATH_MAX]; 10637c478bd9Sstevel@tonic-gate int doorfd; 10647c478bd9Sstevel@tonic-gate struct door_info info; 10657c478bd9Sstevel@tonic-gate 1066108322fbScarlsonj if (!get_doorname(zone_name, doorpath)) 1067108322fbScarlsonj return (Z_ERR); 10687c478bd9Sstevel@tonic-gate 10697c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 10707c478bd9Sstevel@tonic-gate return (Z_ERR); 10717c478bd9Sstevel@tonic-gate } 10727c478bd9Sstevel@tonic-gate if (door_info(doorfd, &info) == 0 && 10737c478bd9Sstevel@tonic-gate ((info.di_attributes & DOOR_REVOKED) == 0)) { 10747c478bd9Sstevel@tonic-gate (void) close(doorfd); 10757c478bd9Sstevel@tonic-gate return (Z_OK); 10767c478bd9Sstevel@tonic-gate } 10777c478bd9Sstevel@tonic-gate (void) close(doorfd); 10787c478bd9Sstevel@tonic-gate return (Z_ERR); 10797c478bd9Sstevel@tonic-gate } 10807c478bd9Sstevel@tonic-gate 10817c478bd9Sstevel@tonic-gate static int 10827c478bd9Sstevel@tonic-gate call_zoneadmd(const char *zone_name, zone_cmd_arg_t *arg) 10837c478bd9Sstevel@tonic-gate { 10847c478bd9Sstevel@tonic-gate char doorpath[PATH_MAX]; 10857c478bd9Sstevel@tonic-gate int doorfd, result; 10867c478bd9Sstevel@tonic-gate door_arg_t darg; 10877c478bd9Sstevel@tonic-gate 10887c478bd9Sstevel@tonic-gate zoneid_t zoneid; 10897c478bd9Sstevel@tonic-gate uint64_t uniqid = 0; 10907c478bd9Sstevel@tonic-gate 10917c478bd9Sstevel@tonic-gate zone_cmd_rval_t *rvalp; 10927c478bd9Sstevel@tonic-gate size_t rlen; 10937c478bd9Sstevel@tonic-gate char *cp, *errbuf; 10947c478bd9Sstevel@tonic-gate 10957c478bd9Sstevel@tonic-gate rlen = getpagesize(); 10967c478bd9Sstevel@tonic-gate if ((rvalp = malloc(rlen)) == NULL) { 10977c478bd9Sstevel@tonic-gate zerror(gettext("failed to allocate %lu bytes: %s"), rlen, 10987c478bd9Sstevel@tonic-gate strerror(errno)); 10997c478bd9Sstevel@tonic-gate return (-1); 11007c478bd9Sstevel@tonic-gate } 11017c478bd9Sstevel@tonic-gate 11027c478bd9Sstevel@tonic-gate if ((zoneid = getzoneidbyname(zone_name)) != ZONE_ID_UNDEFINED) { 11037c478bd9Sstevel@tonic-gate (void) zone_getattr(zoneid, ZONE_ATTR_UNIQID, &uniqid, 11047c478bd9Sstevel@tonic-gate sizeof (uniqid)); 11057c478bd9Sstevel@tonic-gate } 11067c478bd9Sstevel@tonic-gate arg->uniqid = uniqid; 11077c478bd9Sstevel@tonic-gate (void) strlcpy(arg->locale, locale, sizeof (arg->locale)); 1108108322fbScarlsonj if (!get_doorname(zone_name, doorpath)) { 1109108322fbScarlsonj zerror(gettext("alternate root path is too long")); 1110108322fbScarlsonj free(rvalp); 1111108322fbScarlsonj return (-1); 1112108322fbScarlsonj } 11137c478bd9Sstevel@tonic-gate 11147c478bd9Sstevel@tonic-gate /* 11157c478bd9Sstevel@tonic-gate * Loop trying to start zoneadmd; if something goes seriously 11167c478bd9Sstevel@tonic-gate * wrong we break out and fail. 11177c478bd9Sstevel@tonic-gate */ 11187c478bd9Sstevel@tonic-gate for (;;) { 11197c478bd9Sstevel@tonic-gate if (start_zoneadmd(zone_name) != Z_OK) 11207c478bd9Sstevel@tonic-gate break; 11217c478bd9Sstevel@tonic-gate 11227c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 11237c478bd9Sstevel@tonic-gate zperror(gettext("failed to open zone door"), B_FALSE); 11247c478bd9Sstevel@tonic-gate break; 11257c478bd9Sstevel@tonic-gate } 11267c478bd9Sstevel@tonic-gate 11277c478bd9Sstevel@tonic-gate darg.data_ptr = (char *)arg; 11287c478bd9Sstevel@tonic-gate darg.data_size = sizeof (*arg); 11297c478bd9Sstevel@tonic-gate darg.desc_ptr = NULL; 11307c478bd9Sstevel@tonic-gate darg.desc_num = 0; 11317c478bd9Sstevel@tonic-gate darg.rbuf = (char *)rvalp; 11327c478bd9Sstevel@tonic-gate darg.rsize = rlen; 11337c478bd9Sstevel@tonic-gate if (door_call(doorfd, &darg) != 0) { 11347c478bd9Sstevel@tonic-gate (void) close(doorfd); 11357c478bd9Sstevel@tonic-gate /* 11367c478bd9Sstevel@tonic-gate * We'll get EBADF if the door has been revoked. 11377c478bd9Sstevel@tonic-gate */ 11387c478bd9Sstevel@tonic-gate if (errno != EBADF) { 11397c478bd9Sstevel@tonic-gate zperror(gettext("door_call failed"), B_FALSE); 11407c478bd9Sstevel@tonic-gate break; 11417c478bd9Sstevel@tonic-gate } 11427c478bd9Sstevel@tonic-gate continue; /* take another lap */ 11437c478bd9Sstevel@tonic-gate } 11447c478bd9Sstevel@tonic-gate (void) close(doorfd); 11457c478bd9Sstevel@tonic-gate 11467c478bd9Sstevel@tonic-gate if (darg.data_size == 0) { 11477c478bd9Sstevel@tonic-gate /* Door server is going away; kick it again. */ 11487c478bd9Sstevel@tonic-gate continue; 11497c478bd9Sstevel@tonic-gate } 11507c478bd9Sstevel@tonic-gate 11517c478bd9Sstevel@tonic-gate errbuf = rvalp->errbuf; 11527c478bd9Sstevel@tonic-gate while (*errbuf != '\0') { 11537c478bd9Sstevel@tonic-gate /* 11547c478bd9Sstevel@tonic-gate * Remove any newlines since zerror() 11557c478bd9Sstevel@tonic-gate * will append one automatically. 11567c478bd9Sstevel@tonic-gate */ 11577c478bd9Sstevel@tonic-gate cp = strchr(errbuf, '\n'); 11587c478bd9Sstevel@tonic-gate if (cp != NULL) 11597c478bd9Sstevel@tonic-gate *cp = '\0'; 11607c478bd9Sstevel@tonic-gate zerror("%s", errbuf); 11617c478bd9Sstevel@tonic-gate if (cp == NULL) 11627c478bd9Sstevel@tonic-gate break; 11637c478bd9Sstevel@tonic-gate errbuf = cp + 1; 11647c478bd9Sstevel@tonic-gate } 11657c478bd9Sstevel@tonic-gate result = rvalp->rval == 0 ? 0 : -1; 11667c478bd9Sstevel@tonic-gate free(rvalp); 11677c478bd9Sstevel@tonic-gate return (result); 11687c478bd9Sstevel@tonic-gate } 11697c478bd9Sstevel@tonic-gate 11707c478bd9Sstevel@tonic-gate free(rvalp); 11717c478bd9Sstevel@tonic-gate return (-1); 11727c478bd9Sstevel@tonic-gate } 11737c478bd9Sstevel@tonic-gate 11747c478bd9Sstevel@tonic-gate static int 11757c478bd9Sstevel@tonic-gate ready_func(int argc, char *argv[]) 11767c478bd9Sstevel@tonic-gate { 11777c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 11787c478bd9Sstevel@tonic-gate int arg; 11797c478bd9Sstevel@tonic-gate 1180108322fbScarlsonj if (zonecfg_in_alt_root()) { 1181108322fbScarlsonj zerror(gettext("cannot ready zone in alternate root")); 1182108322fbScarlsonj return (Z_ERR); 1183108322fbScarlsonj } 1184108322fbScarlsonj 11857c478bd9Sstevel@tonic-gate optind = 0; 11867c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 11877c478bd9Sstevel@tonic-gate switch (arg) { 11887c478bd9Sstevel@tonic-gate case '?': 11897c478bd9Sstevel@tonic-gate sub_usage(SHELP_READY, CMD_READY); 11907c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 11917c478bd9Sstevel@tonic-gate default: 11927c478bd9Sstevel@tonic-gate sub_usage(SHELP_READY, CMD_READY); 11937c478bd9Sstevel@tonic-gate return (Z_USAGE); 11947c478bd9Sstevel@tonic-gate } 11957c478bd9Sstevel@tonic-gate } 11967c478bd9Sstevel@tonic-gate if (argc > optind) { 11977c478bd9Sstevel@tonic-gate sub_usage(SHELP_READY, CMD_READY); 11987c478bd9Sstevel@tonic-gate return (Z_USAGE); 11997c478bd9Sstevel@tonic-gate } 12007c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_READY, B_FALSE, B_FALSE) != Z_OK) 12017c478bd9Sstevel@tonic-gate return (Z_ERR); 12027c478bd9Sstevel@tonic-gate if (verify_details(CMD_READY) != Z_OK) 12037c478bd9Sstevel@tonic-gate return (Z_ERR); 12047c478bd9Sstevel@tonic-gate 12057c478bd9Sstevel@tonic-gate zarg.cmd = Z_READY; 12067c478bd9Sstevel@tonic-gate if (call_zoneadmd(target_zone, &zarg) != 0) { 12077c478bd9Sstevel@tonic-gate zerror(gettext("call to %s failed"), "zoneadmd"); 12087c478bd9Sstevel@tonic-gate return (Z_ERR); 12097c478bd9Sstevel@tonic-gate } 12107c478bd9Sstevel@tonic-gate return (Z_OK); 12117c478bd9Sstevel@tonic-gate } 12127c478bd9Sstevel@tonic-gate 12137c478bd9Sstevel@tonic-gate static int 12147c478bd9Sstevel@tonic-gate boot_func(int argc, char *argv[]) 12157c478bd9Sstevel@tonic-gate { 12167c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 12177c478bd9Sstevel@tonic-gate int arg; 12187c478bd9Sstevel@tonic-gate 1219108322fbScarlsonj if (zonecfg_in_alt_root()) { 1220108322fbScarlsonj zerror(gettext("cannot boot zone in alternate root")); 1221108322fbScarlsonj return (Z_ERR); 1222108322fbScarlsonj } 1223108322fbScarlsonj 12247c478bd9Sstevel@tonic-gate zarg.bootbuf[0] = '\0'; 12257c478bd9Sstevel@tonic-gate 12267c478bd9Sstevel@tonic-gate /* 12277c478bd9Sstevel@tonic-gate * At the current time, the only supported subargument to the 12287c478bd9Sstevel@tonic-gate * "boot" subcommand is "-s" which specifies a single-user boot. 12297c478bd9Sstevel@tonic-gate * In the future, other boot arguments should be supported 12307c478bd9Sstevel@tonic-gate * including "-m" for specifying alternate smf(5) milestones. 12317c478bd9Sstevel@tonic-gate */ 12327c478bd9Sstevel@tonic-gate optind = 0; 12337c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?s")) != EOF) { 12347c478bd9Sstevel@tonic-gate switch (arg) { 12357c478bd9Sstevel@tonic-gate case '?': 12367c478bd9Sstevel@tonic-gate sub_usage(SHELP_BOOT, CMD_BOOT); 12377c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 12387c478bd9Sstevel@tonic-gate case 's': 12397c478bd9Sstevel@tonic-gate (void) strlcpy(zarg.bootbuf, "-s", 12407c478bd9Sstevel@tonic-gate sizeof (zarg.bootbuf)); 12417c478bd9Sstevel@tonic-gate break; 12427c478bd9Sstevel@tonic-gate default: 12437c478bd9Sstevel@tonic-gate sub_usage(SHELP_BOOT, CMD_BOOT); 12447c478bd9Sstevel@tonic-gate return (Z_USAGE); 12457c478bd9Sstevel@tonic-gate } 12467c478bd9Sstevel@tonic-gate } 12477c478bd9Sstevel@tonic-gate if (argc > optind) { 12487c478bd9Sstevel@tonic-gate sub_usage(SHELP_BOOT, CMD_BOOT); 12497c478bd9Sstevel@tonic-gate return (Z_USAGE); 12507c478bd9Sstevel@tonic-gate } 12517c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_BOOT, B_FALSE, B_FALSE) != Z_OK) 12527c478bd9Sstevel@tonic-gate return (Z_ERR); 12537c478bd9Sstevel@tonic-gate if (verify_details(CMD_BOOT) != Z_OK) 12547c478bd9Sstevel@tonic-gate return (Z_ERR); 12557c478bd9Sstevel@tonic-gate zarg.cmd = Z_BOOT; 12567c478bd9Sstevel@tonic-gate if (call_zoneadmd(target_zone, &zarg) != 0) { 12577c478bd9Sstevel@tonic-gate zerror(gettext("call to %s failed"), "zoneadmd"); 12587c478bd9Sstevel@tonic-gate return (Z_ERR); 12597c478bd9Sstevel@tonic-gate } 12607c478bd9Sstevel@tonic-gate return (Z_OK); 12617c478bd9Sstevel@tonic-gate } 12627c478bd9Sstevel@tonic-gate 12637c478bd9Sstevel@tonic-gate static void 12647c478bd9Sstevel@tonic-gate fake_up_local_zone(zoneid_t zid, zone_entry_t *zeptr) 12657c478bd9Sstevel@tonic-gate { 12667c478bd9Sstevel@tonic-gate ssize_t result; 12677c478bd9Sstevel@tonic-gate 12687c478bd9Sstevel@tonic-gate zeptr->zid = zid; 12697c478bd9Sstevel@tonic-gate /* 12707c478bd9Sstevel@tonic-gate * Since we're looking up our own (non-global) zone name, 12717c478bd9Sstevel@tonic-gate * we can be assured that it will succeed. 12727c478bd9Sstevel@tonic-gate */ 12737c478bd9Sstevel@tonic-gate result = getzonenamebyid(zid, zeptr->zname, sizeof (zeptr->zname)); 12747c478bd9Sstevel@tonic-gate assert(result >= 0); 12757c478bd9Sstevel@tonic-gate (void) strlcpy(zeptr->zroot, "/", sizeof (zeptr->zroot)); 12767c478bd9Sstevel@tonic-gate zeptr->zstate_str = "running"; 12777c478bd9Sstevel@tonic-gate } 12787c478bd9Sstevel@tonic-gate 12797c478bd9Sstevel@tonic-gate static int 12807c478bd9Sstevel@tonic-gate list_func(int argc, char *argv[]) 12817c478bd9Sstevel@tonic-gate { 12827c478bd9Sstevel@tonic-gate zone_entry_t *zentp, zent; 1283108322fbScarlsonj int arg, retv; 12847c478bd9Sstevel@tonic-gate boolean_t output = B_FALSE, verbose = B_FALSE, parsable = B_FALSE; 12857c478bd9Sstevel@tonic-gate zone_state_t min_state = ZONE_STATE_RUNNING; 12867c478bd9Sstevel@tonic-gate zoneid_t zone_id = getzoneid(); 12877c478bd9Sstevel@tonic-gate 12887c478bd9Sstevel@tonic-gate if (target_zone == NULL) { 12897c478bd9Sstevel@tonic-gate /* all zones: default view to running but allow override */ 12907c478bd9Sstevel@tonic-gate optind = 0; 12917c478bd9Sstevel@tonic-gate while ((arg = getopt(argc, argv, "?cipv")) != EOF) { 12927c478bd9Sstevel@tonic-gate switch (arg) { 12937c478bd9Sstevel@tonic-gate case '?': 12947c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 12957c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 12967c478bd9Sstevel@tonic-gate case 'c': 12977c478bd9Sstevel@tonic-gate min_state = ZONE_STATE_CONFIGURED; 12987c478bd9Sstevel@tonic-gate break; 12997c478bd9Sstevel@tonic-gate case 'i': 13007c478bd9Sstevel@tonic-gate min_state = ZONE_STATE_INSTALLED; 13017c478bd9Sstevel@tonic-gate break; 13027c478bd9Sstevel@tonic-gate case 'p': 13037c478bd9Sstevel@tonic-gate parsable = B_TRUE; 13047c478bd9Sstevel@tonic-gate break; 13057c478bd9Sstevel@tonic-gate case 'v': 13067c478bd9Sstevel@tonic-gate verbose = B_TRUE; 13077c478bd9Sstevel@tonic-gate break; 13087c478bd9Sstevel@tonic-gate default: 13097c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 13107c478bd9Sstevel@tonic-gate return (Z_USAGE); 13117c478bd9Sstevel@tonic-gate } 13127c478bd9Sstevel@tonic-gate } 13137c478bd9Sstevel@tonic-gate if (parsable && verbose) { 13147c478bd9Sstevel@tonic-gate zerror(gettext("%s -p and -v are mutually exclusive."), 13157c478bd9Sstevel@tonic-gate cmd_to_str(CMD_LIST)); 13167c478bd9Sstevel@tonic-gate return (Z_ERR); 13177c478bd9Sstevel@tonic-gate } 13187c478bd9Sstevel@tonic-gate if (zone_id == GLOBAL_ZONEID) { 1319108322fbScarlsonj retv = zone_print_list(min_state, verbose, parsable); 13207c478bd9Sstevel@tonic-gate } else { 1321108322fbScarlsonj retv = Z_OK; 13227c478bd9Sstevel@tonic-gate fake_up_local_zone(zone_id, &zent); 13237c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 13247c478bd9Sstevel@tonic-gate } 1325108322fbScarlsonj return (retv); 13267c478bd9Sstevel@tonic-gate } 13277c478bd9Sstevel@tonic-gate 13287c478bd9Sstevel@tonic-gate /* 13297c478bd9Sstevel@tonic-gate * Specific target zone: disallow -i/-c suboptions. 13307c478bd9Sstevel@tonic-gate */ 13317c478bd9Sstevel@tonic-gate optind = 0; 13327c478bd9Sstevel@tonic-gate while ((arg = getopt(argc, argv, "?pv")) != EOF) { 13337c478bd9Sstevel@tonic-gate switch (arg) { 13347c478bd9Sstevel@tonic-gate case '?': 13357c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 13367c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 13377c478bd9Sstevel@tonic-gate case 'p': 13387c478bd9Sstevel@tonic-gate parsable = B_TRUE; 13397c478bd9Sstevel@tonic-gate break; 13407c478bd9Sstevel@tonic-gate case 'v': 13417c478bd9Sstevel@tonic-gate verbose = B_TRUE; 13427c478bd9Sstevel@tonic-gate break; 13437c478bd9Sstevel@tonic-gate default: 13447c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 13457c478bd9Sstevel@tonic-gate return (Z_USAGE); 13467c478bd9Sstevel@tonic-gate } 13477c478bd9Sstevel@tonic-gate } 13487c478bd9Sstevel@tonic-gate if (parsable && verbose) { 13497c478bd9Sstevel@tonic-gate zerror(gettext("%s -p and -v are mutually exclusive."), 13507c478bd9Sstevel@tonic-gate cmd_to_str(CMD_LIST)); 13517c478bd9Sstevel@tonic-gate return (Z_ERR); 13527c478bd9Sstevel@tonic-gate } 13537c478bd9Sstevel@tonic-gate if (argc > optind) { 13547c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 13557c478bd9Sstevel@tonic-gate return (Z_USAGE); 13567c478bd9Sstevel@tonic-gate } 13577c478bd9Sstevel@tonic-gate if (zone_id != GLOBAL_ZONEID) { 13587c478bd9Sstevel@tonic-gate fake_up_local_zone(zone_id, &zent); 13597c478bd9Sstevel@tonic-gate /* 13607c478bd9Sstevel@tonic-gate * main() will issue a Z_NO_ZONE error if it cannot get an 13617c478bd9Sstevel@tonic-gate * id for target_zone, which in a non-global zone should 13627c478bd9Sstevel@tonic-gate * happen for any zone name except `zonename`. Thus we 13637c478bd9Sstevel@tonic-gate * assert() that here but don't otherwise check. 13647c478bd9Sstevel@tonic-gate */ 13657c478bd9Sstevel@tonic-gate assert(strcmp(zent.zname, target_zone) == 0); 13667c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 13677c478bd9Sstevel@tonic-gate output = B_TRUE; 13687c478bd9Sstevel@tonic-gate } else if ((zentp = lookup_running_zone(target_zone)) != NULL) { 13697c478bd9Sstevel@tonic-gate zone_print(zentp, verbose, parsable); 13707c478bd9Sstevel@tonic-gate output = B_TRUE; 1371108322fbScarlsonj } else if (lookup_zone_info(target_zone, ZONE_ID_UNDEFINED, 1372108322fbScarlsonj &zent) == Z_OK) { 13737c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 13747c478bd9Sstevel@tonic-gate output = B_TRUE; 13757c478bd9Sstevel@tonic-gate } 13767c478bd9Sstevel@tonic-gate return (output ? Z_OK : Z_ERR); 13777c478bd9Sstevel@tonic-gate } 13787c478bd9Sstevel@tonic-gate 13797c478bd9Sstevel@tonic-gate static void 13807c478bd9Sstevel@tonic-gate sigterm(int sig) 13817c478bd9Sstevel@tonic-gate { 13827c478bd9Sstevel@tonic-gate /* 13837c478bd9Sstevel@tonic-gate * Ignore SIG{INT,TERM}, so we don't end up in an infinite loop, 13847c478bd9Sstevel@tonic-gate * then propagate the signal to our process group. 13857c478bd9Sstevel@tonic-gate */ 13867c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, SIG_IGN); 13877c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, SIG_IGN); 13887c478bd9Sstevel@tonic-gate (void) kill(0, sig); 13897c478bd9Sstevel@tonic-gate child_killed = B_TRUE; 13907c478bd9Sstevel@tonic-gate } 13917c478bd9Sstevel@tonic-gate 13927c478bd9Sstevel@tonic-gate static int 13937c478bd9Sstevel@tonic-gate do_subproc(char *cmdbuf) 13947c478bd9Sstevel@tonic-gate { 13957c478bd9Sstevel@tonic-gate char inbuf[1024]; /* arbitrary large amount */ 13967c478bd9Sstevel@tonic-gate FILE *file; 13977c478bd9Sstevel@tonic-gate 13987c478bd9Sstevel@tonic-gate child_killed = B_FALSE; 13997c478bd9Sstevel@tonic-gate /* 14007c478bd9Sstevel@tonic-gate * We use popen(3c) to launch child processes for [un]install; 14017c478bd9Sstevel@tonic-gate * this library call does not return a PID, so we have to kill 14027c478bd9Sstevel@tonic-gate * the whole process group. To avoid killing our parent, we 14037c478bd9Sstevel@tonic-gate * become a process group leader here. But doing so can wreak 14047c478bd9Sstevel@tonic-gate * havoc with reading from stdin when launched by a non-job-control 14057c478bd9Sstevel@tonic-gate * shell, so we close stdin and reopen it as /dev/null first. 14067c478bd9Sstevel@tonic-gate */ 14077c478bd9Sstevel@tonic-gate (void) close(STDIN_FILENO); 14087c478bd9Sstevel@tonic-gate (void) open("/dev/null", O_RDONLY); 14097c478bd9Sstevel@tonic-gate (void) setpgid(0, 0); 14107c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, sigterm); 14117c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, sigterm); 14127c478bd9Sstevel@tonic-gate file = popen(cmdbuf, "r"); 14137c478bd9Sstevel@tonic-gate for (;;) { 14147c478bd9Sstevel@tonic-gate if (child_killed || fgets(inbuf, sizeof (inbuf), file) == NULL) 14157c478bd9Sstevel@tonic-gate break; 14167c478bd9Sstevel@tonic-gate (void) fputs(inbuf, stdout); 14177c478bd9Sstevel@tonic-gate } 14187c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, SIG_DFL); 14197c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, SIG_DFL); 14207c478bd9Sstevel@tonic-gate return (pclose(file)); 14217c478bd9Sstevel@tonic-gate } 14227c478bd9Sstevel@tonic-gate 14237c478bd9Sstevel@tonic-gate static int 14247c478bd9Sstevel@tonic-gate subproc_status(const char *cmd, int status) 14257c478bd9Sstevel@tonic-gate { 14267c478bd9Sstevel@tonic-gate if (WIFEXITED(status)) { 14277c478bd9Sstevel@tonic-gate int exit_code = WEXITSTATUS(status); 14287c478bd9Sstevel@tonic-gate 14297c478bd9Sstevel@tonic-gate if (exit_code == 0) 14307c478bd9Sstevel@tonic-gate return (Z_OK); 14317c478bd9Sstevel@tonic-gate zerror(gettext("'%s' failed with exit code %d."), cmd, 14327c478bd9Sstevel@tonic-gate exit_code); 14337c478bd9Sstevel@tonic-gate } else if (WIFSIGNALED(status)) { 14347c478bd9Sstevel@tonic-gate int signal = WTERMSIG(status); 14357c478bd9Sstevel@tonic-gate char sigstr[SIG2STR_MAX]; 14367c478bd9Sstevel@tonic-gate 14377c478bd9Sstevel@tonic-gate if (sig2str(signal, sigstr) == 0) { 14387c478bd9Sstevel@tonic-gate zerror(gettext("'%s' terminated by signal SIG%s."), cmd, 14397c478bd9Sstevel@tonic-gate sigstr); 14407c478bd9Sstevel@tonic-gate } else { 14417c478bd9Sstevel@tonic-gate zerror(gettext("'%s' terminated by an unknown signal."), 14427c478bd9Sstevel@tonic-gate cmd); 14437c478bd9Sstevel@tonic-gate } 14447c478bd9Sstevel@tonic-gate } else { 14457c478bd9Sstevel@tonic-gate zerror(gettext("'%s' failed for unknown reasons."), cmd); 14467c478bd9Sstevel@tonic-gate } 14477c478bd9Sstevel@tonic-gate return (Z_ERR); 14487c478bd9Sstevel@tonic-gate } 14497c478bd9Sstevel@tonic-gate 14507c478bd9Sstevel@tonic-gate /* 14517c478bd9Sstevel@tonic-gate * Various sanity checks; make sure: 14527c478bd9Sstevel@tonic-gate * 1. We're in the global zone. 14537c478bd9Sstevel@tonic-gate * 2. The calling user has sufficient privilege. 14547c478bd9Sstevel@tonic-gate * 3. The target zone is neither the global zone nor anything starting with 14557c478bd9Sstevel@tonic-gate * "SUNW". 14567c478bd9Sstevel@tonic-gate * 4a. If we're looking for a 'not running' (i.e., configured or installed) 14577c478bd9Sstevel@tonic-gate * zone, the name service knows about it. 14587c478bd9Sstevel@tonic-gate * 4b. For some operations which expect a zone not to be running, that it is 14597c478bd9Sstevel@tonic-gate * not already running (or ready). 14607c478bd9Sstevel@tonic-gate */ 14617c478bd9Sstevel@tonic-gate static int 14627c478bd9Sstevel@tonic-gate sanity_check(char *zone, int cmd_num, boolean_t running, 14637c478bd9Sstevel@tonic-gate boolean_t unsafe_when_running) 14647c478bd9Sstevel@tonic-gate { 14657c478bd9Sstevel@tonic-gate zone_entry_t *zent; 14667c478bd9Sstevel@tonic-gate priv_set_t *privset; 14677c478bd9Sstevel@tonic-gate zone_state_t state; 1468108322fbScarlsonj char kernzone[ZONENAME_MAX]; 1469108322fbScarlsonj FILE *fp; 14707c478bd9Sstevel@tonic-gate 14717c478bd9Sstevel@tonic-gate if (getzoneid() != GLOBAL_ZONEID) { 14727c478bd9Sstevel@tonic-gate zerror(gettext("must be in the global zone to %s a zone."), 14737c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 14747c478bd9Sstevel@tonic-gate return (Z_ERR); 14757c478bd9Sstevel@tonic-gate } 14767c478bd9Sstevel@tonic-gate 14777c478bd9Sstevel@tonic-gate if ((privset = priv_allocset()) == NULL) { 14787c478bd9Sstevel@tonic-gate zerror(gettext("%s failed"), "priv_allocset"); 14797c478bd9Sstevel@tonic-gate return (Z_ERR); 14807c478bd9Sstevel@tonic-gate } 14817c478bd9Sstevel@tonic-gate 14827c478bd9Sstevel@tonic-gate if (getppriv(PRIV_EFFECTIVE, privset) != 0) { 14837c478bd9Sstevel@tonic-gate zerror(gettext("%s failed"), "getppriv"); 14847c478bd9Sstevel@tonic-gate priv_freeset(privset); 14857c478bd9Sstevel@tonic-gate return (Z_ERR); 14867c478bd9Sstevel@tonic-gate } 14877c478bd9Sstevel@tonic-gate 14887c478bd9Sstevel@tonic-gate if (priv_isfullset(privset) == B_FALSE) { 14897c478bd9Sstevel@tonic-gate zerror(gettext("only a privileged user may %s a zone."), 14907c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 14917c478bd9Sstevel@tonic-gate priv_freeset(privset); 14927c478bd9Sstevel@tonic-gate return (Z_ERR); 14937c478bd9Sstevel@tonic-gate } 14947c478bd9Sstevel@tonic-gate priv_freeset(privset); 14957c478bd9Sstevel@tonic-gate 14967c478bd9Sstevel@tonic-gate if (zone == NULL) { 14977c478bd9Sstevel@tonic-gate zerror(gettext("no zone specified")); 14987c478bd9Sstevel@tonic-gate return (Z_ERR); 14997c478bd9Sstevel@tonic-gate } 15007c478bd9Sstevel@tonic-gate 15017c478bd9Sstevel@tonic-gate if (strcmp(zone, GLOBAL_ZONENAME) == 0) { 15027c478bd9Sstevel@tonic-gate zerror(gettext("%s operation is invalid for the global zone."), 15037c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 15047c478bd9Sstevel@tonic-gate return (Z_ERR); 15057c478bd9Sstevel@tonic-gate } 15067c478bd9Sstevel@tonic-gate 15077c478bd9Sstevel@tonic-gate if (strncmp(zone, "SUNW", 4) == 0) { 15087c478bd9Sstevel@tonic-gate zerror(gettext("%s operation is invalid for zones starting " 15097c478bd9Sstevel@tonic-gate "with SUNW."), cmd_to_str(cmd_num)); 15107c478bd9Sstevel@tonic-gate return (Z_ERR); 15117c478bd9Sstevel@tonic-gate } 15127c478bd9Sstevel@tonic-gate 1513108322fbScarlsonj if (!zonecfg_in_alt_root()) { 1514108322fbScarlsonj zent = lookup_running_zone(zone); 1515108322fbScarlsonj } else if ((fp = zonecfg_open_scratch("", B_FALSE)) == NULL) { 1516108322fbScarlsonj zent = NULL; 1517108322fbScarlsonj } else { 1518108322fbScarlsonj if (zonecfg_find_scratch(fp, zone, zonecfg_get_root(), 1519108322fbScarlsonj kernzone, sizeof (kernzone)) == 0) 1520108322fbScarlsonj zent = lookup_running_zone(kernzone); 1521108322fbScarlsonj else 1522108322fbScarlsonj zent = NULL; 1523108322fbScarlsonj zonecfg_close_scratch(fp); 1524108322fbScarlsonj } 1525108322fbScarlsonj 15267c478bd9Sstevel@tonic-gate /* 15277c478bd9Sstevel@tonic-gate * Look up from the kernel for 'running' zones. 15287c478bd9Sstevel@tonic-gate */ 15297c478bd9Sstevel@tonic-gate if (running) { 15307c478bd9Sstevel@tonic-gate if (zent == NULL) { 15317c478bd9Sstevel@tonic-gate zerror(gettext("not running")); 15327c478bd9Sstevel@tonic-gate return (Z_ERR); 15337c478bd9Sstevel@tonic-gate } 15347c478bd9Sstevel@tonic-gate } else { 15357c478bd9Sstevel@tonic-gate int err; 15367c478bd9Sstevel@tonic-gate 15377c478bd9Sstevel@tonic-gate if (unsafe_when_running && zent != NULL) { 15387c478bd9Sstevel@tonic-gate /* check whether the zone is ready or running */ 15397c478bd9Sstevel@tonic-gate if ((err = zone_get_state(zent->zname, 15407c478bd9Sstevel@tonic-gate &zent->zstate_num)) != Z_OK) { 15417c478bd9Sstevel@tonic-gate errno = err; 15427c478bd9Sstevel@tonic-gate zperror2(zent->zname, 15437c478bd9Sstevel@tonic-gate gettext("could not get state")); 15447c478bd9Sstevel@tonic-gate /* can't tell, so hedge */ 15457c478bd9Sstevel@tonic-gate zent->zstate_str = "ready/running"; 15467c478bd9Sstevel@tonic-gate } else { 15477c478bd9Sstevel@tonic-gate zent->zstate_str = 15487c478bd9Sstevel@tonic-gate zone_state_str(zent->zstate_num); 15497c478bd9Sstevel@tonic-gate } 15507c478bd9Sstevel@tonic-gate zerror(gettext("%s operation is invalid for %s zones."), 15517c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num), zent->zstate_str); 15527c478bd9Sstevel@tonic-gate return (Z_ERR); 15537c478bd9Sstevel@tonic-gate } 15547c478bd9Sstevel@tonic-gate if ((err = zone_get_state(zone, &state)) != Z_OK) { 15557c478bd9Sstevel@tonic-gate errno = err; 15567c478bd9Sstevel@tonic-gate zperror2(zone, gettext("could not get state")); 15577c478bd9Sstevel@tonic-gate return (Z_ERR); 15587c478bd9Sstevel@tonic-gate } 15597c478bd9Sstevel@tonic-gate switch (cmd_num) { 15607c478bd9Sstevel@tonic-gate case CMD_UNINSTALL: 15617c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_CONFIGURED) { 15627c478bd9Sstevel@tonic-gate zerror(gettext("is already in state '%s'."), 15637c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_CONFIGURED)); 15647c478bd9Sstevel@tonic-gate return (Z_ERR); 15657c478bd9Sstevel@tonic-gate } 15667c478bd9Sstevel@tonic-gate break; 15677c478bd9Sstevel@tonic-gate case CMD_INSTALL: 15687c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_INSTALLED) { 15697c478bd9Sstevel@tonic-gate zerror(gettext("is already %s."), 15707c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INSTALLED)); 15717c478bd9Sstevel@tonic-gate return (Z_ERR); 15727c478bd9Sstevel@tonic-gate } else if (state == ZONE_STATE_INCOMPLETE) { 15737c478bd9Sstevel@tonic-gate zerror(gettext("zone is %s; %s required."), 15747c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INCOMPLETE), 15757c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL)); 15767c478bd9Sstevel@tonic-gate return (Z_ERR); 15777c478bd9Sstevel@tonic-gate } 15787c478bd9Sstevel@tonic-gate break; 15797c478bd9Sstevel@tonic-gate case CMD_READY: 15807c478bd9Sstevel@tonic-gate case CMD_BOOT: 1581108322fbScarlsonj case CMD_MOUNT: 15827c478bd9Sstevel@tonic-gate if (state < ZONE_STATE_INSTALLED) { 15837c478bd9Sstevel@tonic-gate zerror(gettext("must be %s before %s."), 15847c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INSTALLED), 15857c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 15867c478bd9Sstevel@tonic-gate return (Z_ERR); 15877c478bd9Sstevel@tonic-gate } 15887c478bd9Sstevel@tonic-gate break; 15897c478bd9Sstevel@tonic-gate case CMD_VERIFY: 15907c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_INCOMPLETE) { 15917c478bd9Sstevel@tonic-gate zerror(gettext("zone is %s; %s required."), 15927c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INCOMPLETE), 15937c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL)); 15947c478bd9Sstevel@tonic-gate return (Z_ERR); 15957c478bd9Sstevel@tonic-gate } 15967c478bd9Sstevel@tonic-gate break; 1597108322fbScarlsonj case CMD_UNMOUNT: 1598108322fbScarlsonj if (state != ZONE_STATE_MOUNTED) { 1599108322fbScarlsonj zerror(gettext("must be %s before %s."), 1600108322fbScarlsonj zone_state_str(ZONE_STATE_MOUNTED), 1601108322fbScarlsonj cmd_to_str(cmd_num)); 1602108322fbScarlsonj return (Z_ERR); 1603108322fbScarlsonj } 1604108322fbScarlsonj break; 16057c478bd9Sstevel@tonic-gate } 16067c478bd9Sstevel@tonic-gate } 16077c478bd9Sstevel@tonic-gate return (Z_OK); 16087c478bd9Sstevel@tonic-gate } 16097c478bd9Sstevel@tonic-gate 16107c478bd9Sstevel@tonic-gate static int 16117c478bd9Sstevel@tonic-gate halt_func(int argc, char *argv[]) 16127c478bd9Sstevel@tonic-gate { 16137c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 16147c478bd9Sstevel@tonic-gate int arg; 16157c478bd9Sstevel@tonic-gate 1616108322fbScarlsonj if (zonecfg_in_alt_root()) { 1617108322fbScarlsonj zerror(gettext("cannot halt zone in alternate root")); 1618108322fbScarlsonj return (Z_ERR); 1619108322fbScarlsonj } 1620108322fbScarlsonj 16217c478bd9Sstevel@tonic-gate optind = 0; 16227c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 16237c478bd9Sstevel@tonic-gate switch (arg) { 16247c478bd9Sstevel@tonic-gate case '?': 16257c478bd9Sstevel@tonic-gate sub_usage(SHELP_HALT, CMD_HALT); 16267c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 16277c478bd9Sstevel@tonic-gate default: 16287c478bd9Sstevel@tonic-gate sub_usage(SHELP_HALT, CMD_HALT); 16297c478bd9Sstevel@tonic-gate return (Z_USAGE); 16307c478bd9Sstevel@tonic-gate } 16317c478bd9Sstevel@tonic-gate } 16327c478bd9Sstevel@tonic-gate if (argc > optind) { 16337c478bd9Sstevel@tonic-gate sub_usage(SHELP_HALT, CMD_HALT); 16347c478bd9Sstevel@tonic-gate return (Z_USAGE); 16357c478bd9Sstevel@tonic-gate } 16367c478bd9Sstevel@tonic-gate /* 16377c478bd9Sstevel@tonic-gate * zoneadmd should be the one to decide whether or not to proceed, 16387c478bd9Sstevel@tonic-gate * so even though it seems that the fourth parameter below should 16397c478bd9Sstevel@tonic-gate * perhaps be B_TRUE, it really shouldn't be. 16407c478bd9Sstevel@tonic-gate */ 16417c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_HALT, B_FALSE, B_FALSE) != Z_OK) 16427c478bd9Sstevel@tonic-gate return (Z_ERR); 16437c478bd9Sstevel@tonic-gate 16447c478bd9Sstevel@tonic-gate zarg.cmd = Z_HALT; 16457c478bd9Sstevel@tonic-gate return ((call_zoneadmd(target_zone, &zarg) == 0) ? Z_OK : Z_ERR); 16467c478bd9Sstevel@tonic-gate } 16477c478bd9Sstevel@tonic-gate 16487c478bd9Sstevel@tonic-gate static int 16497c478bd9Sstevel@tonic-gate reboot_func(int argc, char *argv[]) 16507c478bd9Sstevel@tonic-gate { 16517c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 16527c478bd9Sstevel@tonic-gate int arg; 16537c478bd9Sstevel@tonic-gate 1654108322fbScarlsonj if (zonecfg_in_alt_root()) { 1655108322fbScarlsonj zerror(gettext("cannot reboot zone in alternate root")); 1656108322fbScarlsonj return (Z_ERR); 1657108322fbScarlsonj } 1658108322fbScarlsonj 16597c478bd9Sstevel@tonic-gate optind = 0; 16607c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 16617c478bd9Sstevel@tonic-gate switch (arg) { 16627c478bd9Sstevel@tonic-gate case '?': 16637c478bd9Sstevel@tonic-gate sub_usage(SHELP_REBOOT, CMD_REBOOT); 16647c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 16657c478bd9Sstevel@tonic-gate default: 16667c478bd9Sstevel@tonic-gate sub_usage(SHELP_REBOOT, CMD_REBOOT); 16677c478bd9Sstevel@tonic-gate return (Z_USAGE); 16687c478bd9Sstevel@tonic-gate } 16697c478bd9Sstevel@tonic-gate } 16707c478bd9Sstevel@tonic-gate if (argc > 0) { 16717c478bd9Sstevel@tonic-gate sub_usage(SHELP_REBOOT, CMD_REBOOT); 16727c478bd9Sstevel@tonic-gate return (Z_USAGE); 16737c478bd9Sstevel@tonic-gate } 16747c478bd9Sstevel@tonic-gate /* 16757c478bd9Sstevel@tonic-gate * zoneadmd should be the one to decide whether or not to proceed, 16767c478bd9Sstevel@tonic-gate * so even though it seems that the fourth parameter below should 16777c478bd9Sstevel@tonic-gate * perhaps be B_TRUE, it really shouldn't be. 16787c478bd9Sstevel@tonic-gate */ 16797c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_REBOOT, B_TRUE, B_FALSE) != Z_OK) 16807c478bd9Sstevel@tonic-gate return (Z_ERR); 16817c478bd9Sstevel@tonic-gate 16827c478bd9Sstevel@tonic-gate zarg.cmd = Z_REBOOT; 16837c478bd9Sstevel@tonic-gate return ((call_zoneadmd(target_zone, &zarg) == 0) ? Z_OK : Z_ERR); 16847c478bd9Sstevel@tonic-gate } 16857c478bd9Sstevel@tonic-gate 16867c478bd9Sstevel@tonic-gate static int 16877c478bd9Sstevel@tonic-gate verify_rctls(zone_dochandle_t handle) 16887c478bd9Sstevel@tonic-gate { 16897c478bd9Sstevel@tonic-gate struct zone_rctltab rctltab; 16907c478bd9Sstevel@tonic-gate size_t rbs = rctlblk_size(); 16917c478bd9Sstevel@tonic-gate rctlblk_t *rctlblk; 16927c478bd9Sstevel@tonic-gate int error = Z_INVAL; 16937c478bd9Sstevel@tonic-gate 16947c478bd9Sstevel@tonic-gate if ((rctlblk = malloc(rbs)) == NULL) { 16957c478bd9Sstevel@tonic-gate zerror(gettext("failed to allocate %lu bytes: %s"), rbs, 16967c478bd9Sstevel@tonic-gate strerror(errno)); 16977c478bd9Sstevel@tonic-gate return (Z_NOMEM); 16987c478bd9Sstevel@tonic-gate } 16997c478bd9Sstevel@tonic-gate 17007c478bd9Sstevel@tonic-gate if (zonecfg_setrctlent(handle) != Z_OK) { 17017c478bd9Sstevel@tonic-gate zerror(gettext("zonecfg_setrctlent failed")); 17027c478bd9Sstevel@tonic-gate free(rctlblk); 17037c478bd9Sstevel@tonic-gate return (error); 17047c478bd9Sstevel@tonic-gate } 17057c478bd9Sstevel@tonic-gate 17067c478bd9Sstevel@tonic-gate rctltab.zone_rctl_valptr = NULL; 17077c478bd9Sstevel@tonic-gate while (zonecfg_getrctlent(handle, &rctltab) == Z_OK) { 17087c478bd9Sstevel@tonic-gate struct zone_rctlvaltab *rctlval; 17097c478bd9Sstevel@tonic-gate const char *name = rctltab.zone_rctl_name; 17107c478bd9Sstevel@tonic-gate 17117c478bd9Sstevel@tonic-gate if (!zonecfg_is_rctl(name)) { 17127c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: Ignoring unrecognized rctl " 17137c478bd9Sstevel@tonic-gate "'%s'."), name); 17147c478bd9Sstevel@tonic-gate zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr); 17157c478bd9Sstevel@tonic-gate rctltab.zone_rctl_valptr = NULL; 17167c478bd9Sstevel@tonic-gate continue; 17177c478bd9Sstevel@tonic-gate } 17187c478bd9Sstevel@tonic-gate 17197c478bd9Sstevel@tonic-gate for (rctlval = rctltab.zone_rctl_valptr; rctlval != NULL; 17207c478bd9Sstevel@tonic-gate rctlval = rctlval->zone_rctlval_next) { 17217c478bd9Sstevel@tonic-gate if (zonecfg_construct_rctlblk(rctlval, rctlblk) 17227c478bd9Sstevel@tonic-gate != Z_OK) { 17237c478bd9Sstevel@tonic-gate zerror(gettext("invalid rctl value: " 17247c478bd9Sstevel@tonic-gate "(priv=%s,limit=%s,action%s)"), 17257c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_priv, 17267c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_limit, 17277c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_action); 17287c478bd9Sstevel@tonic-gate goto out; 17297c478bd9Sstevel@tonic-gate } 17307c478bd9Sstevel@tonic-gate if (!zonecfg_valid_rctl(name, rctlblk)) { 17317c478bd9Sstevel@tonic-gate zerror(gettext("(priv=%s,limit=%s,action=%s) " 17327c478bd9Sstevel@tonic-gate "is not a valid value for rctl '%s'"), 17337c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_priv, 17347c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_limit, 17357c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_action, 17367c478bd9Sstevel@tonic-gate name); 17377c478bd9Sstevel@tonic-gate goto out; 17387c478bd9Sstevel@tonic-gate } 17397c478bd9Sstevel@tonic-gate } 17407c478bd9Sstevel@tonic-gate zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr); 17417c478bd9Sstevel@tonic-gate } 17427c478bd9Sstevel@tonic-gate rctltab.zone_rctl_valptr = NULL; 17437c478bd9Sstevel@tonic-gate error = Z_OK; 17447c478bd9Sstevel@tonic-gate out: 17457c478bd9Sstevel@tonic-gate zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr); 17467c478bd9Sstevel@tonic-gate (void) zonecfg_endrctlent(handle); 17477c478bd9Sstevel@tonic-gate free(rctlblk); 17487c478bd9Sstevel@tonic-gate return (error); 17497c478bd9Sstevel@tonic-gate } 17507c478bd9Sstevel@tonic-gate 17517c478bd9Sstevel@tonic-gate static int 17527c478bd9Sstevel@tonic-gate verify_pool(zone_dochandle_t handle) 17537c478bd9Sstevel@tonic-gate { 17547c478bd9Sstevel@tonic-gate char poolname[MAXPATHLEN]; 17557c478bd9Sstevel@tonic-gate pool_conf_t *poolconf; 17567c478bd9Sstevel@tonic-gate pool_t *pool; 17577c478bd9Sstevel@tonic-gate int status; 17587c478bd9Sstevel@tonic-gate int error; 17597c478bd9Sstevel@tonic-gate 17607c478bd9Sstevel@tonic-gate /* 17617c478bd9Sstevel@tonic-gate * This ends up being very similar to the check done in zoneadmd. 17627c478bd9Sstevel@tonic-gate */ 17637c478bd9Sstevel@tonic-gate error = zonecfg_get_pool(handle, poolname, sizeof (poolname)); 17647c478bd9Sstevel@tonic-gate if (error == Z_NO_ENTRY || (error == Z_OK && strlen(poolname) == 0)) { 17657c478bd9Sstevel@tonic-gate /* 17667c478bd9Sstevel@tonic-gate * No pool specified. 17677c478bd9Sstevel@tonic-gate */ 17687c478bd9Sstevel@tonic-gate return (0); 17697c478bd9Sstevel@tonic-gate } 17707c478bd9Sstevel@tonic-gate if (error != Z_OK) { 17717c478bd9Sstevel@tonic-gate zperror(gettext("Unable to retrieve pool name from " 17727c478bd9Sstevel@tonic-gate "configuration"), B_TRUE); 17737c478bd9Sstevel@tonic-gate return (error); 17747c478bd9Sstevel@tonic-gate } 17757c478bd9Sstevel@tonic-gate /* 17767c478bd9Sstevel@tonic-gate * Don't do anything if pools aren't enabled. 17777c478bd9Sstevel@tonic-gate */ 17787c478bd9Sstevel@tonic-gate if (pool_get_status(&status) != PO_SUCCESS || status != POOL_ENABLED) { 17797c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pools facility not active; " 17807c478bd9Sstevel@tonic-gate "zone will not be bound to pool '%s'."), poolname); 17817c478bd9Sstevel@tonic-gate return (Z_OK); 17827c478bd9Sstevel@tonic-gate } 17837c478bd9Sstevel@tonic-gate /* 17847c478bd9Sstevel@tonic-gate * Try to provide a sane error message if the requested pool doesn't 17857c478bd9Sstevel@tonic-gate * exist. It isn't clear that pools-related failures should 17867c478bd9Sstevel@tonic-gate * necessarily translate to a failure to verify the zone configuration, 17877c478bd9Sstevel@tonic-gate * hence they are not considered errors. 17887c478bd9Sstevel@tonic-gate */ 17897c478bd9Sstevel@tonic-gate if ((poolconf = pool_conf_alloc()) == NULL) { 17907c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pool_conf_alloc failed; " 17917c478bd9Sstevel@tonic-gate "using default pool")); 17927c478bd9Sstevel@tonic-gate return (Z_OK); 17937c478bd9Sstevel@tonic-gate } 17947c478bd9Sstevel@tonic-gate if (pool_conf_open(poolconf, pool_dynamic_location(), PO_RDONLY) != 17957c478bd9Sstevel@tonic-gate PO_SUCCESS) { 17967c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pool_conf_open failed; " 17977c478bd9Sstevel@tonic-gate "using default pool")); 17987c478bd9Sstevel@tonic-gate pool_conf_free(poolconf); 17997c478bd9Sstevel@tonic-gate return (Z_OK); 18007c478bd9Sstevel@tonic-gate } 18017c478bd9Sstevel@tonic-gate pool = pool_get_pool(poolconf, poolname); 18027c478bd9Sstevel@tonic-gate (void) pool_conf_close(poolconf); 18037c478bd9Sstevel@tonic-gate pool_conf_free(poolconf); 18047c478bd9Sstevel@tonic-gate if (pool == NULL) { 18057c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pool '%s' not found. " 18067c478bd9Sstevel@tonic-gate "using default pool"), poolname); 18077c478bd9Sstevel@tonic-gate } 18087c478bd9Sstevel@tonic-gate 18097c478bd9Sstevel@tonic-gate return (Z_OK); 18107c478bd9Sstevel@tonic-gate } 18117c478bd9Sstevel@tonic-gate 18127c478bd9Sstevel@tonic-gate static int 18137c478bd9Sstevel@tonic-gate verify_filesystems(zone_dochandle_t handle) 18147c478bd9Sstevel@tonic-gate { 18157c478bd9Sstevel@tonic-gate int return_code = Z_OK; 18167c478bd9Sstevel@tonic-gate struct zone_fstab fstab; 18177c478bd9Sstevel@tonic-gate char cmdbuf[MAXPATHLEN]; 18187c478bd9Sstevel@tonic-gate struct stat st; 18197c478bd9Sstevel@tonic-gate 18207c478bd9Sstevel@tonic-gate /* 18217c478bd9Sstevel@tonic-gate * No need to verify inherit-pkg-dir fs types, as their type is 18227c478bd9Sstevel@tonic-gate * implicitly lofs, which is known. Therefore, the types are only 18237c478bd9Sstevel@tonic-gate * verified for regular filesystems below. 18247c478bd9Sstevel@tonic-gate * 18257c478bd9Sstevel@tonic-gate * Since the actual mount point is not known until the dependent mounts 18267c478bd9Sstevel@tonic-gate * are performed, we don't attempt any path validation here: that will 18277c478bd9Sstevel@tonic-gate * happen later when zoneadmd actually does the mounts. 18287c478bd9Sstevel@tonic-gate */ 18297c478bd9Sstevel@tonic-gate if (zonecfg_setfsent(handle) != Z_OK) { 18307c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify file-systems: " 18317c478bd9Sstevel@tonic-gate "unable to enumerate mounts\n")); 18327c478bd9Sstevel@tonic-gate return (Z_ERR); 18337c478bd9Sstevel@tonic-gate } 18347c478bd9Sstevel@tonic-gate while (zonecfg_getfsent(handle, &fstab) == Z_OK) { 18357c478bd9Sstevel@tonic-gate if (!zonecfg_valid_fs_type(fstab.zone_fs_type)) { 18367c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18377c478bd9Sstevel@tonic-gate "type %s is not allowed.\n"), fstab.zone_fs_dir, 18387c478bd9Sstevel@tonic-gate fstab.zone_fs_type); 18397c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18407c478bd9Sstevel@tonic-gate goto next_fs; 18417c478bd9Sstevel@tonic-gate } 18427c478bd9Sstevel@tonic-gate /* 18437c478bd9Sstevel@tonic-gate * Verify /usr/lib/fs/<fstype>/mount exists. 18447c478bd9Sstevel@tonic-gate */ 18457c478bd9Sstevel@tonic-gate if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/mount", 18467c478bd9Sstevel@tonic-gate fstab.zone_fs_type) > sizeof (cmdbuf)) { 18477c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18487c478bd9Sstevel@tonic-gate "type %s is too long.\n"), fstab.zone_fs_dir, 18497c478bd9Sstevel@tonic-gate fstab.zone_fs_type); 18507c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18517c478bd9Sstevel@tonic-gate goto next_fs; 18527c478bd9Sstevel@tonic-gate } 18537c478bd9Sstevel@tonic-gate if (stat(cmdbuf, &st) != 0) { 18547c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18557c478bd9Sstevel@tonic-gate "can't access %s: %s\n"), fstab.zone_fs_dir, 18567c478bd9Sstevel@tonic-gate cmdbuf, strerror(errno)); 18577c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18587c478bd9Sstevel@tonic-gate goto next_fs; 18597c478bd9Sstevel@tonic-gate } 18607c478bd9Sstevel@tonic-gate if (!S_ISREG(st.st_mode)) { 18617c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18627c478bd9Sstevel@tonic-gate "%s is not a regular file\n"), fstab.zone_fs_dir, 18637c478bd9Sstevel@tonic-gate cmdbuf); 18647c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18657c478bd9Sstevel@tonic-gate goto next_fs; 18667c478bd9Sstevel@tonic-gate } 18677c478bd9Sstevel@tonic-gate /* 18687c478bd9Sstevel@tonic-gate * Verify /usr/lib/fs/<fstype>/fsck exists iff zone_fs_raw is 18697c478bd9Sstevel@tonic-gate * set. 18707c478bd9Sstevel@tonic-gate */ 18717c478bd9Sstevel@tonic-gate if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/fsck", 18727c478bd9Sstevel@tonic-gate fstab.zone_fs_type) > sizeof (cmdbuf)) { 18737c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18747c478bd9Sstevel@tonic-gate "type %s is too long.\n"), fstab.zone_fs_dir, 18757c478bd9Sstevel@tonic-gate fstab.zone_fs_type); 18767c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18777c478bd9Sstevel@tonic-gate goto next_fs; 18787c478bd9Sstevel@tonic-gate } 18797c478bd9Sstevel@tonic-gate if (fstab.zone_fs_raw[0] == '\0' && stat(cmdbuf, &st) == 0) { 18807c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18817c478bd9Sstevel@tonic-gate "must specify 'raw' device for %s file-systems\n"), 18827c478bd9Sstevel@tonic-gate fstab.zone_fs_dir, fstab.zone_fs_type); 18837c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18847c478bd9Sstevel@tonic-gate goto next_fs; 18857c478bd9Sstevel@tonic-gate } 18867c478bd9Sstevel@tonic-gate if (fstab.zone_fs_raw[0] != '\0' && 18877c478bd9Sstevel@tonic-gate (stat(cmdbuf, &st) != 0 || !S_ISREG(st.st_mode))) { 18887c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 18897c478bd9Sstevel@tonic-gate "'raw' device specified but " 18907c478bd9Sstevel@tonic-gate "no fsck executable exists for %s\n"), 18917c478bd9Sstevel@tonic-gate fstab.zone_fs_dir, fstab.zone_fs_type); 18927c478bd9Sstevel@tonic-gate return_code = Z_ERR; 18937c478bd9Sstevel@tonic-gate goto next_fs; 18947c478bd9Sstevel@tonic-gate } 18957c478bd9Sstevel@tonic-gate next_fs: 18967c478bd9Sstevel@tonic-gate zonecfg_free_fs_option_list(fstab.zone_fs_options); 18977c478bd9Sstevel@tonic-gate } 18987c478bd9Sstevel@tonic-gate (void) zonecfg_endfsent(handle); 18997c478bd9Sstevel@tonic-gate 19007c478bd9Sstevel@tonic-gate return (return_code); 19017c478bd9Sstevel@tonic-gate } 19027c478bd9Sstevel@tonic-gate 1903*fa9e4066Sahrens const char *current_dataset; 1904*fa9e4066Sahrens 1905*fa9e4066Sahrens /* 1906*fa9e4066Sahrens * Custom error handler for errors incurred as part of the checks below. We 1907*fa9e4066Sahrens * want to trim off the leading 'cannot open ...' to create a better error 1908*fa9e4066Sahrens * message. The only other way this can fail is if we fail to set the 'zoned' 1909*fa9e4066Sahrens * property. In this case we just pass the error on verbatim. 1910*fa9e4066Sahrens */ 1911*fa9e4066Sahrens static void 1912*fa9e4066Sahrens zfs_error_handler(const char *fmt, va_list ap) 1913*fa9e4066Sahrens { 1914*fa9e4066Sahrens char buf[1024]; 1915*fa9e4066Sahrens 1916*fa9e4066Sahrens (void) vsnprintf(buf, sizeof (buf), fmt, ap); 1917*fa9e4066Sahrens 1918*fa9e4066Sahrens if (strncmp(gettext("cannot open "), buf, 1919*fa9e4066Sahrens strlen(gettext("cannot open "))) == 0) 1920*fa9e4066Sahrens (void) fprintf(stderr, gettext("cannot verify zfs " 1921*fa9e4066Sahrens "dataset %s%s\n"), current_dataset, strchr(buf, ':')); 1922*fa9e4066Sahrens else 1923*fa9e4066Sahrens (void) fprintf(stderr, gettext("cannot verify zfs dataset " 1924*fa9e4066Sahrens "%s: %s\n"), current_dataset, buf); 1925*fa9e4066Sahrens } 1926*fa9e4066Sahrens 1927*fa9e4066Sahrens /* ARGSUSED */ 1928*fa9e4066Sahrens static int 1929*fa9e4066Sahrens check_zvol(zfs_handle_t *zhp, void *unused) 1930*fa9e4066Sahrens { 1931*fa9e4066Sahrens int ret; 1932*fa9e4066Sahrens 1933*fa9e4066Sahrens if (zfs_get_type(zhp) == ZFS_TYPE_VOLUME) { 1934*fa9e4066Sahrens (void) fprintf(stderr, gettext("cannot verify zfs dataset %s: " 1935*fa9e4066Sahrens "volumes cannot be specified as a zone dataset resource\n"), 1936*fa9e4066Sahrens zfs_get_name(zhp)); 1937*fa9e4066Sahrens ret = -1; 1938*fa9e4066Sahrens } else { 1939*fa9e4066Sahrens ret = zfs_iter_children(zhp, check_zvol, NULL); 1940*fa9e4066Sahrens } 1941*fa9e4066Sahrens 1942*fa9e4066Sahrens zfs_close(zhp); 1943*fa9e4066Sahrens 1944*fa9e4066Sahrens return (ret); 1945*fa9e4066Sahrens } 1946*fa9e4066Sahrens 1947*fa9e4066Sahrens /* 1948*fa9e4066Sahrens * Validate that the given dataset exists on the system, and that neither it nor 1949*fa9e4066Sahrens * its children are zvols. 1950*fa9e4066Sahrens * 1951*fa9e4066Sahrens * Note that we don't do anything with the 'zoned' property here. All 1952*fa9e4066Sahrens * management is done in zoneadmd when the zone is actually rebooted. This 1953*fa9e4066Sahrens * allows us to automatically set the zoned property even when a zone is 1954*fa9e4066Sahrens * rebooted by the administrator. 1955*fa9e4066Sahrens */ 1956*fa9e4066Sahrens static int 1957*fa9e4066Sahrens verify_datasets(zone_dochandle_t handle) 1958*fa9e4066Sahrens { 1959*fa9e4066Sahrens int return_code = Z_OK; 1960*fa9e4066Sahrens struct zone_dstab dstab; 1961*fa9e4066Sahrens zfs_handle_t *zhp; 1962*fa9e4066Sahrens char propbuf[ZFS_MAXPROPLEN]; 1963*fa9e4066Sahrens char source[ZFS_MAXNAMELEN]; 1964*fa9e4066Sahrens zfs_source_t srctype; 1965*fa9e4066Sahrens 1966*fa9e4066Sahrens if (zonecfg_setdsent(handle) != Z_OK) { 1967*fa9e4066Sahrens (void) fprintf(stderr, gettext("cannot verify zfs datasets: " 1968*fa9e4066Sahrens "unable to enumerate datasets\n")); 1969*fa9e4066Sahrens return (Z_ERR); 1970*fa9e4066Sahrens } 1971*fa9e4066Sahrens 1972*fa9e4066Sahrens zfs_set_error_handler(zfs_error_handler); 1973*fa9e4066Sahrens 1974*fa9e4066Sahrens while (zonecfg_getdsent(handle, &dstab) == Z_OK) { 1975*fa9e4066Sahrens 1976*fa9e4066Sahrens current_dataset = dstab.zone_dataset_name; 1977*fa9e4066Sahrens 1978*fa9e4066Sahrens if ((zhp = zfs_open(dstab.zone_dataset_name, 1979*fa9e4066Sahrens ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME)) == NULL) { 1980*fa9e4066Sahrens return_code = Z_ERR; 1981*fa9e4066Sahrens continue; 1982*fa9e4066Sahrens } 1983*fa9e4066Sahrens 1984*fa9e4066Sahrens if (zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, propbuf, 1985*fa9e4066Sahrens sizeof (propbuf), &srctype, source, 1986*fa9e4066Sahrens sizeof (source), 0) == 0 && 1987*fa9e4066Sahrens (srctype == ZFS_SRC_INHERITED)) { 1988*fa9e4066Sahrens (void) fprintf(stderr, gettext("cannot verify zfs " 1989*fa9e4066Sahrens "dataset %s: mountpoint cannot be inherited\n"), 1990*fa9e4066Sahrens dstab.zone_dataset_name); 1991*fa9e4066Sahrens return_code = Z_ERR; 1992*fa9e4066Sahrens zfs_close(zhp); 1993*fa9e4066Sahrens continue; 1994*fa9e4066Sahrens } 1995*fa9e4066Sahrens 1996*fa9e4066Sahrens if (zfs_get_type(zhp) == ZFS_TYPE_VOLUME) { 1997*fa9e4066Sahrens (void) fprintf(stderr, gettext("cannot verify zfs " 1998*fa9e4066Sahrens "dataset %s: volumes cannot be specified as a " 1999*fa9e4066Sahrens "zone dataset resource\n"), 2000*fa9e4066Sahrens dstab.zone_dataset_name); 2001*fa9e4066Sahrens return_code = Z_ERR; 2002*fa9e4066Sahrens } 2003*fa9e4066Sahrens 2004*fa9e4066Sahrens if (zfs_iter_children(zhp, check_zvol, NULL) != 0) 2005*fa9e4066Sahrens return_code = Z_ERR; 2006*fa9e4066Sahrens 2007*fa9e4066Sahrens zfs_close(zhp); 2008*fa9e4066Sahrens } 2009*fa9e4066Sahrens (void) zonecfg_enddsent(handle); 2010*fa9e4066Sahrens 2011*fa9e4066Sahrens return (return_code); 2012*fa9e4066Sahrens } 2013*fa9e4066Sahrens 20147c478bd9Sstevel@tonic-gate static int 20157c478bd9Sstevel@tonic-gate verify_details(int cmd_num) 20167c478bd9Sstevel@tonic-gate { 20177c478bd9Sstevel@tonic-gate zone_dochandle_t handle; 20187c478bd9Sstevel@tonic-gate struct zone_nwiftab nwiftab; 20197c478bd9Sstevel@tonic-gate char zonepath[MAXPATHLEN], checkpath[MAXPATHLEN]; 20207c478bd9Sstevel@tonic-gate int return_code = Z_OK; 20217c478bd9Sstevel@tonic-gate int err; 2022108322fbScarlsonj boolean_t in_alt_root; 20237c478bd9Sstevel@tonic-gate 20247c478bd9Sstevel@tonic-gate if ((handle = zonecfg_init_handle()) == NULL) { 20257c478bd9Sstevel@tonic-gate zperror(cmd_to_str(cmd_num), B_TRUE); 20267c478bd9Sstevel@tonic-gate return (Z_ERR); 20277c478bd9Sstevel@tonic-gate } 20287c478bd9Sstevel@tonic-gate if ((err = zonecfg_get_handle(target_zone, handle)) != Z_OK) { 20297c478bd9Sstevel@tonic-gate errno = err; 20307c478bd9Sstevel@tonic-gate zperror(cmd_to_str(cmd_num), B_TRUE); 20317c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 20327c478bd9Sstevel@tonic-gate return (Z_ERR); 20337c478bd9Sstevel@tonic-gate } 20347c478bd9Sstevel@tonic-gate if ((err = zonecfg_get_zonepath(handle, zonepath, sizeof (zonepath))) != 20357c478bd9Sstevel@tonic-gate Z_OK) { 20367c478bd9Sstevel@tonic-gate errno = err; 20377c478bd9Sstevel@tonic-gate zperror(cmd_to_str(cmd_num), B_TRUE); 20387c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 20397c478bd9Sstevel@tonic-gate return (Z_ERR); 20407c478bd9Sstevel@tonic-gate } 20417c478bd9Sstevel@tonic-gate /* 20427c478bd9Sstevel@tonic-gate * zonecfg_get_zonepath() gets its data from the XML repository. 20437c478bd9Sstevel@tonic-gate * Verify this against the index file, which is checked first by 20447c478bd9Sstevel@tonic-gate * zone_get_zonepath(). If they don't match, bail out. 20457c478bd9Sstevel@tonic-gate */ 20467c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(target_zone, checkpath, 20477c478bd9Sstevel@tonic-gate sizeof (checkpath))) != Z_OK) { 20487c478bd9Sstevel@tonic-gate errno = err; 20497c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get zone path")); 20507c478bd9Sstevel@tonic-gate return (Z_ERR); 20517c478bd9Sstevel@tonic-gate } 20527c478bd9Sstevel@tonic-gate if (strcmp(zonepath, checkpath) != 0) { 20537c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("The XML repository has " 20547c478bd9Sstevel@tonic-gate "zonepath '%s',\nbut the index file has zonepath '%s'.\n" 20557c478bd9Sstevel@tonic-gate "These must match, so fix the incorrect entry.\n"), 20567c478bd9Sstevel@tonic-gate zonepath, checkpath); 20577c478bd9Sstevel@tonic-gate return (Z_ERR); 20587c478bd9Sstevel@tonic-gate } 20597c478bd9Sstevel@tonic-gate if (validate_zonepath(zonepath, cmd_num) != Z_OK) { 20607c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("could not verify zonepath %s " 20617c478bd9Sstevel@tonic-gate "because of the above errors.\n"), zonepath); 20627c478bd9Sstevel@tonic-gate return_code = Z_ERR; 20637c478bd9Sstevel@tonic-gate } 20647c478bd9Sstevel@tonic-gate 2065108322fbScarlsonj in_alt_root = zonecfg_in_alt_root(); 2066108322fbScarlsonj if (in_alt_root) 2067108322fbScarlsonj goto no_net; 2068108322fbScarlsonj 20697c478bd9Sstevel@tonic-gate if ((err = zonecfg_setnwifent(handle)) != Z_OK) { 20707c478bd9Sstevel@tonic-gate errno = err; 20717c478bd9Sstevel@tonic-gate zperror(cmd_to_str(cmd_num), B_TRUE); 20727c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 20737c478bd9Sstevel@tonic-gate return (Z_ERR); 20747c478bd9Sstevel@tonic-gate } 20757c478bd9Sstevel@tonic-gate while (zonecfg_getnwifent(handle, &nwiftab) == Z_OK) { 20767c478bd9Sstevel@tonic-gate struct lifreq lifr; 20777c478bd9Sstevel@tonic-gate sa_family_t af; 20787c478bd9Sstevel@tonic-gate int so, res; 20797c478bd9Sstevel@tonic-gate 20807c478bd9Sstevel@tonic-gate /* skip any loopback interfaces */ 20817c478bd9Sstevel@tonic-gate if (strcmp(nwiftab.zone_nwif_physical, "lo0") == 0) 20827c478bd9Sstevel@tonic-gate continue; 20837c478bd9Sstevel@tonic-gate if ((res = zonecfg_valid_net_address(nwiftab.zone_nwif_address, 20847c478bd9Sstevel@tonic-gate &lifr)) != Z_OK) { 20857c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("could not verify %s " 20867c478bd9Sstevel@tonic-gate "%s=%s %s=%s: %s\n"), "net", "address", 20877c478bd9Sstevel@tonic-gate nwiftab.zone_nwif_address, "physical", 20887c478bd9Sstevel@tonic-gate nwiftab.zone_nwif_physical, zonecfg_strerror(res)); 20897c478bd9Sstevel@tonic-gate return_code = Z_ERR; 20907c478bd9Sstevel@tonic-gate continue; 20917c478bd9Sstevel@tonic-gate } 20927c478bd9Sstevel@tonic-gate af = lifr.lifr_addr.ss_family; 20937c478bd9Sstevel@tonic-gate (void) memset(&lifr, 0, sizeof (lifr)); 20947c478bd9Sstevel@tonic-gate (void) strlcpy(lifr.lifr_name, nwiftab.zone_nwif_physical, 20957c478bd9Sstevel@tonic-gate sizeof (lifr.lifr_name)); 20967c478bd9Sstevel@tonic-gate lifr.lifr_addr.ss_family = af; 20977c478bd9Sstevel@tonic-gate if ((so = socket(af, SOCK_DGRAM, 0)) < 0) { 20987c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("could not verify %s " 20997c478bd9Sstevel@tonic-gate "%s=%s %s=%s: could not get socket: %s\n"), "net", 21007c478bd9Sstevel@tonic-gate "address", nwiftab.zone_nwif_address, "physical", 21017c478bd9Sstevel@tonic-gate nwiftab.zone_nwif_physical, strerror(errno)); 21027c478bd9Sstevel@tonic-gate return_code = Z_ERR; 21037c478bd9Sstevel@tonic-gate continue; 21047c478bd9Sstevel@tonic-gate } 21057c478bd9Sstevel@tonic-gate if (ioctl(so, SIOCGLIFFLAGS, (caddr_t)&lifr) < 0) { 21067c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 21077c478bd9Sstevel@tonic-gate gettext("could not verify %s %s=%s %s=%s: %s\n"), 21087c478bd9Sstevel@tonic-gate "net", "address", nwiftab.zone_nwif_address, 21097c478bd9Sstevel@tonic-gate "physical", nwiftab.zone_nwif_physical, 21107c478bd9Sstevel@tonic-gate strerror(errno)); 21117c478bd9Sstevel@tonic-gate return_code = Z_ERR; 21127c478bd9Sstevel@tonic-gate } 21137c478bd9Sstevel@tonic-gate (void) close(so); 21147c478bd9Sstevel@tonic-gate } 21157c478bd9Sstevel@tonic-gate (void) zonecfg_endnwifent(handle); 2116108322fbScarlsonj no_net: 21177c478bd9Sstevel@tonic-gate 21187c478bd9Sstevel@tonic-gate if (verify_filesystems(handle) != Z_OK) 21197c478bd9Sstevel@tonic-gate return_code = Z_ERR; 2120108322fbScarlsonj if (!in_alt_root && verify_rctls(handle) != Z_OK) 21217c478bd9Sstevel@tonic-gate return_code = Z_ERR; 2122108322fbScarlsonj if (!in_alt_root && verify_pool(handle) != Z_OK) 21237c478bd9Sstevel@tonic-gate return_code = Z_ERR; 2124*fa9e4066Sahrens if (!in_alt_root && verify_datasets(handle) != Z_OK) 2125*fa9e4066Sahrens return_code = Z_ERR; 21267c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 21277c478bd9Sstevel@tonic-gate if (return_code == Z_ERR) 21287c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 21297c478bd9Sstevel@tonic-gate gettext("%s: zone %s failed to verify\n"), 21307c478bd9Sstevel@tonic-gate execname, target_zone); 21317c478bd9Sstevel@tonic-gate return (return_code); 21327c478bd9Sstevel@tonic-gate } 21337c478bd9Sstevel@tonic-gate 21347c478bd9Sstevel@tonic-gate static int 21357c478bd9Sstevel@tonic-gate verify_func(int argc, char *argv[]) 21367c478bd9Sstevel@tonic-gate { 21377c478bd9Sstevel@tonic-gate int arg; 21387c478bd9Sstevel@tonic-gate 21397c478bd9Sstevel@tonic-gate optind = 0; 21407c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 21417c478bd9Sstevel@tonic-gate switch (arg) { 21427c478bd9Sstevel@tonic-gate case '?': 21437c478bd9Sstevel@tonic-gate sub_usage(SHELP_VERIFY, CMD_VERIFY); 21447c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 21457c478bd9Sstevel@tonic-gate default: 21467c478bd9Sstevel@tonic-gate sub_usage(SHELP_VERIFY, CMD_VERIFY); 21477c478bd9Sstevel@tonic-gate return (Z_USAGE); 21487c478bd9Sstevel@tonic-gate } 21497c478bd9Sstevel@tonic-gate } 21507c478bd9Sstevel@tonic-gate if (argc > optind) { 21517c478bd9Sstevel@tonic-gate sub_usage(SHELP_VERIFY, CMD_VERIFY); 21527c478bd9Sstevel@tonic-gate return (Z_USAGE); 21537c478bd9Sstevel@tonic-gate } 21547c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_VERIFY, B_FALSE, B_FALSE) != Z_OK) 21557c478bd9Sstevel@tonic-gate return (Z_ERR); 21567c478bd9Sstevel@tonic-gate return (verify_details(CMD_VERIFY)); 21577c478bd9Sstevel@tonic-gate } 21587c478bd9Sstevel@tonic-gate 21597c478bd9Sstevel@tonic-gate #define LUCREATEZONE "/usr/lib/lu/lucreatezone" 21607c478bd9Sstevel@tonic-gate 21617c478bd9Sstevel@tonic-gate static int 21627c478bd9Sstevel@tonic-gate install_func(int argc, char *argv[]) 21637c478bd9Sstevel@tonic-gate { 21647c478bd9Sstevel@tonic-gate /* 9: "exec " and " -z " */ 21657c478bd9Sstevel@tonic-gate char cmdbuf[sizeof (LUCREATEZONE) + ZONENAME_MAX + 9]; 21667c478bd9Sstevel@tonic-gate int lockfd; 21677c478bd9Sstevel@tonic-gate int err, arg; 21687c478bd9Sstevel@tonic-gate char zonepath[MAXPATHLEN]; 21697c478bd9Sstevel@tonic-gate int status; 21707c478bd9Sstevel@tonic-gate 2171108322fbScarlsonj if (zonecfg_in_alt_root()) { 2172108322fbScarlsonj zerror(gettext("cannot install zone in alternate root")); 2173108322fbScarlsonj return (Z_ERR); 2174108322fbScarlsonj } 2175108322fbScarlsonj 21767c478bd9Sstevel@tonic-gate optind = 0; 21777c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 21787c478bd9Sstevel@tonic-gate switch (arg) { 21797c478bd9Sstevel@tonic-gate case '?': 21807c478bd9Sstevel@tonic-gate sub_usage(SHELP_INSTALL, CMD_INSTALL); 21817c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 21827c478bd9Sstevel@tonic-gate default: 21837c478bd9Sstevel@tonic-gate sub_usage(SHELP_INSTALL, CMD_INSTALL); 21847c478bd9Sstevel@tonic-gate return (Z_USAGE); 21857c478bd9Sstevel@tonic-gate } 21867c478bd9Sstevel@tonic-gate } 21877c478bd9Sstevel@tonic-gate if (argc > optind) { 21887c478bd9Sstevel@tonic-gate sub_usage(SHELP_INSTALL, CMD_INSTALL); 21897c478bd9Sstevel@tonic-gate return (Z_USAGE); 21907c478bd9Sstevel@tonic-gate } 21917c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_INSTALL, B_FALSE, B_TRUE) != Z_OK) 21927c478bd9Sstevel@tonic-gate return (Z_ERR); 21937c478bd9Sstevel@tonic-gate if (verify_details(CMD_INSTALL) != Z_OK) 21947c478bd9Sstevel@tonic-gate return (Z_ERR); 21957c478bd9Sstevel@tonic-gate 21967c478bd9Sstevel@tonic-gate if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 21977c478bd9Sstevel@tonic-gate zerror(gettext("another %s may have an operation in progress."), 21987c478bd9Sstevel@tonic-gate "zoneadmd"); 21997c478bd9Sstevel@tonic-gate return (Z_ERR); 22007c478bd9Sstevel@tonic-gate } 22017c478bd9Sstevel@tonic-gate err = zone_set_state(target_zone, ZONE_STATE_INCOMPLETE); 22027c478bd9Sstevel@tonic-gate if (err != Z_OK) { 22037c478bd9Sstevel@tonic-gate errno = err; 22047c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not set state")); 22057c478bd9Sstevel@tonic-gate goto done; 22067c478bd9Sstevel@tonic-gate } 22077c478bd9Sstevel@tonic-gate 22087c478bd9Sstevel@tonic-gate /* 22097c478bd9Sstevel@tonic-gate * According to the Application Packaging Developer's Guide, a 22107c478bd9Sstevel@tonic-gate * "checkinstall" script when included in a package is executed as 22117c478bd9Sstevel@tonic-gate * the user "install", if such a user exists, or by the user 22127c478bd9Sstevel@tonic-gate * "nobody". In order to support this dubious behavior, the path 22137c478bd9Sstevel@tonic-gate * to the zone being constructed is opened up during the life of 22147c478bd9Sstevel@tonic-gate * the command laying down the zone's root file system. Once this 22157c478bd9Sstevel@tonic-gate * has completed, regardless of whether it was successful, the 22167c478bd9Sstevel@tonic-gate * path to the zone is again restricted. 22177c478bd9Sstevel@tonic-gate */ 22187c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(target_zone, zonepath, 22197c478bd9Sstevel@tonic-gate sizeof (zonepath))) != Z_OK) { 22207c478bd9Sstevel@tonic-gate errno = err; 22217c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get zone path")); 22227c478bd9Sstevel@tonic-gate goto done; 22237c478bd9Sstevel@tonic-gate } 22247c478bd9Sstevel@tonic-gate if (chmod(zonepath, DEFAULT_DIR_MODE) != 0) { 22257c478bd9Sstevel@tonic-gate zperror(zonepath, B_FALSE); 22267c478bd9Sstevel@tonic-gate err = Z_ERR; 22277c478bd9Sstevel@tonic-gate goto done; 22287c478bd9Sstevel@tonic-gate } 22297c478bd9Sstevel@tonic-gate 22307c478bd9Sstevel@tonic-gate /* 22317c478bd9Sstevel@tonic-gate * "exec" the command so that the returned status is that of 22327c478bd9Sstevel@tonic-gate * LUCREATEZONE and not the shell. 22337c478bd9Sstevel@tonic-gate */ 22347c478bd9Sstevel@tonic-gate (void) snprintf(cmdbuf, sizeof (cmdbuf), "exec " LUCREATEZONE " -z %s", 22357c478bd9Sstevel@tonic-gate target_zone); 22367c478bd9Sstevel@tonic-gate status = do_subproc(cmdbuf); 22377c478bd9Sstevel@tonic-gate if (chmod(zonepath, S_IRWXU) != 0) { 22387c478bd9Sstevel@tonic-gate zperror(zonepath, B_FALSE); 22397c478bd9Sstevel@tonic-gate err = Z_ERR; 22407c478bd9Sstevel@tonic-gate goto done; 22417c478bd9Sstevel@tonic-gate } 22427c478bd9Sstevel@tonic-gate if ((err = subproc_status(LUCREATEZONE, status)) != Z_OK) 22437c478bd9Sstevel@tonic-gate goto done; 22447c478bd9Sstevel@tonic-gate 22457c478bd9Sstevel@tonic-gate if ((err = zone_set_state(target_zone, ZONE_STATE_INSTALLED)) != Z_OK) { 22467c478bd9Sstevel@tonic-gate errno = err; 22477c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not set state")); 22487c478bd9Sstevel@tonic-gate goto done; 22497c478bd9Sstevel@tonic-gate } 22507c478bd9Sstevel@tonic-gate 22517c478bd9Sstevel@tonic-gate done: 22527c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 22537c478bd9Sstevel@tonic-gate return ((err == Z_OK) ? Z_OK : Z_ERR); 22547c478bd9Sstevel@tonic-gate } 22557c478bd9Sstevel@tonic-gate 22567c478bd9Sstevel@tonic-gate /* 22577c478bd9Sstevel@tonic-gate * On input, TRUE => yes, FALSE => no. 22587c478bd9Sstevel@tonic-gate * On return, TRUE => 1, FALSE => 0, could not ask => -1. 22597c478bd9Sstevel@tonic-gate */ 22607c478bd9Sstevel@tonic-gate 22617c478bd9Sstevel@tonic-gate static int 22627c478bd9Sstevel@tonic-gate ask_yesno(boolean_t default_answer, const char *question) 22637c478bd9Sstevel@tonic-gate { 22647c478bd9Sstevel@tonic-gate char line[64]; /* should be large enough to answer yes or no */ 22657c478bd9Sstevel@tonic-gate 22667c478bd9Sstevel@tonic-gate if (!isatty(STDIN_FILENO)) 22677c478bd9Sstevel@tonic-gate return (-1); 22687c478bd9Sstevel@tonic-gate for (;;) { 22697c478bd9Sstevel@tonic-gate (void) printf("%s (%s)? ", question, 22707c478bd9Sstevel@tonic-gate default_answer ? "[y]/n" : "y/[n]"); 22717c478bd9Sstevel@tonic-gate if (fgets(line, sizeof (line), stdin) == NULL || 22727c478bd9Sstevel@tonic-gate line[0] == '\n') 22737c478bd9Sstevel@tonic-gate return (default_answer ? 1 : 0); 22747c478bd9Sstevel@tonic-gate if (tolower(line[0]) == 'y') 22757c478bd9Sstevel@tonic-gate return (1); 22767c478bd9Sstevel@tonic-gate if (tolower(line[0]) == 'n') 22777c478bd9Sstevel@tonic-gate return (0); 22787c478bd9Sstevel@tonic-gate } 22797c478bd9Sstevel@tonic-gate } 22807c478bd9Sstevel@tonic-gate 22817c478bd9Sstevel@tonic-gate #define RMCOMMAND "/usr/bin/rm -rf" 22827c478bd9Sstevel@tonic-gate 22837c478bd9Sstevel@tonic-gate /* ARGSUSED */ 22847c478bd9Sstevel@tonic-gate int 22857c478bd9Sstevel@tonic-gate zfm_print(const char *p, void *r) { 22867c478bd9Sstevel@tonic-gate zerror(" %s\n", p); 22877c478bd9Sstevel@tonic-gate return (0); 22887c478bd9Sstevel@tonic-gate } 22897c478bd9Sstevel@tonic-gate 22907c478bd9Sstevel@tonic-gate static int 22917c478bd9Sstevel@tonic-gate uninstall_func(int argc, char *argv[]) 22927c478bd9Sstevel@tonic-gate { 22937c478bd9Sstevel@tonic-gate /* 6: "exec " and " " */ 22947c478bd9Sstevel@tonic-gate char cmdbuf[sizeof (RMCOMMAND) + MAXPATHLEN + 6]; 22957c478bd9Sstevel@tonic-gate char line[ZONENAME_MAX + 128]; /* Enough for "Are you sure ..." */ 22967c478bd9Sstevel@tonic-gate char rootpath[MAXPATHLEN], devpath[MAXPATHLEN]; 22977c478bd9Sstevel@tonic-gate boolean_t force = B_FALSE; 22987c478bd9Sstevel@tonic-gate int lockfd, answer; 22997c478bd9Sstevel@tonic-gate int err, arg; 23007c478bd9Sstevel@tonic-gate int status; 23017c478bd9Sstevel@tonic-gate 2302108322fbScarlsonj if (zonecfg_in_alt_root()) { 2303108322fbScarlsonj zerror(gettext("cannot uninstall zone in alternate root")); 2304108322fbScarlsonj return (Z_ERR); 2305108322fbScarlsonj } 2306108322fbScarlsonj 23077c478bd9Sstevel@tonic-gate optind = 0; 23087c478bd9Sstevel@tonic-gate while ((arg = getopt(argc, argv, "?F")) != EOF) { 23097c478bd9Sstevel@tonic-gate switch (arg) { 23107c478bd9Sstevel@tonic-gate case '?': 23117c478bd9Sstevel@tonic-gate sub_usage(SHELP_UNINSTALL, CMD_UNINSTALL); 23127c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 23137c478bd9Sstevel@tonic-gate case 'F': 23147c478bd9Sstevel@tonic-gate force = B_TRUE; 23157c478bd9Sstevel@tonic-gate break; 23167c478bd9Sstevel@tonic-gate default: 23177c478bd9Sstevel@tonic-gate sub_usage(SHELP_UNINSTALL, CMD_UNINSTALL); 23187c478bd9Sstevel@tonic-gate return (Z_USAGE); 23197c478bd9Sstevel@tonic-gate } 23207c478bd9Sstevel@tonic-gate } 23217c478bd9Sstevel@tonic-gate if (argc > optind) { 23227c478bd9Sstevel@tonic-gate sub_usage(SHELP_UNINSTALL, CMD_UNINSTALL); 23237c478bd9Sstevel@tonic-gate return (Z_USAGE); 23247c478bd9Sstevel@tonic-gate } 23257c478bd9Sstevel@tonic-gate 23267c478bd9Sstevel@tonic-gate if (sanity_check(target_zone, CMD_UNINSTALL, B_FALSE, B_TRUE) != Z_OK) 23277c478bd9Sstevel@tonic-gate return (Z_ERR); 23287c478bd9Sstevel@tonic-gate 23297c478bd9Sstevel@tonic-gate if (!force) { 23307c478bd9Sstevel@tonic-gate (void) snprintf(line, sizeof (line), 23317c478bd9Sstevel@tonic-gate gettext("Are you sure you want to %s zone %s"), 23327c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL), target_zone); 23337c478bd9Sstevel@tonic-gate if ((answer = ask_yesno(B_FALSE, line)) == 0) { 23347c478bd9Sstevel@tonic-gate return (Z_OK); 23357c478bd9Sstevel@tonic-gate } else if (answer == -1) { 23367c478bd9Sstevel@tonic-gate zerror(gettext("Input not from terminal and -F " 23377c478bd9Sstevel@tonic-gate "not specified: %s not done."), 23387c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL)); 23397c478bd9Sstevel@tonic-gate return (Z_ERR); 23407c478bd9Sstevel@tonic-gate } 23417c478bd9Sstevel@tonic-gate } 23427c478bd9Sstevel@tonic-gate 23437c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(target_zone, devpath, 23447c478bd9Sstevel@tonic-gate sizeof (devpath))) != Z_OK) { 23457c478bd9Sstevel@tonic-gate errno = err; 23467c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get zone path")); 23477c478bd9Sstevel@tonic-gate return (Z_ERR); 23487c478bd9Sstevel@tonic-gate } 23497c478bd9Sstevel@tonic-gate (void) strlcat(devpath, "/dev", sizeof (devpath)); 23507c478bd9Sstevel@tonic-gate if ((err = zone_get_rootpath(target_zone, rootpath, 23517c478bd9Sstevel@tonic-gate sizeof (rootpath))) != Z_OK) { 23527c478bd9Sstevel@tonic-gate errno = err; 23537c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get root path")); 23547c478bd9Sstevel@tonic-gate return (Z_ERR); 23557c478bd9Sstevel@tonic-gate } 23567c478bd9Sstevel@tonic-gate 23577c478bd9Sstevel@tonic-gate /* 23587c478bd9Sstevel@tonic-gate * If there seems to be a zoneadmd running for this zone, call it 23597c478bd9Sstevel@tonic-gate * to tell it that an uninstall is happening; if all goes well it 23607c478bd9Sstevel@tonic-gate * will then shut itself down. 23617c478bd9Sstevel@tonic-gate */ 23627c478bd9Sstevel@tonic-gate if (ping_zoneadmd(target_zone) == Z_OK) { 23637c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 23647c478bd9Sstevel@tonic-gate zarg.cmd = Z_NOTE_UNINSTALLING; 23657c478bd9Sstevel@tonic-gate /* we don't care too much if this fails... just plow on */ 23667c478bd9Sstevel@tonic-gate (void) call_zoneadmd(target_zone, &zarg); 23677c478bd9Sstevel@tonic-gate } 23687c478bd9Sstevel@tonic-gate 23697c478bd9Sstevel@tonic-gate if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 23707c478bd9Sstevel@tonic-gate zerror(gettext("another %s may have an operation in progress."), 23717c478bd9Sstevel@tonic-gate "zoneadmd"); 23727c478bd9Sstevel@tonic-gate return (Z_ERR); 23737c478bd9Sstevel@tonic-gate } 23747c478bd9Sstevel@tonic-gate 23757c478bd9Sstevel@tonic-gate /* Don't uninstall the zone if anything is mounted there */ 23767c478bd9Sstevel@tonic-gate err = zonecfg_find_mounts(rootpath, NULL, NULL); 23777c478bd9Sstevel@tonic-gate if (err) { 23787c478bd9Sstevel@tonic-gate zerror(gettext("These file-systems are mounted on " 23797c478bd9Sstevel@tonic-gate "subdirectories of %s.\n"), rootpath); 23807c478bd9Sstevel@tonic-gate (void) zonecfg_find_mounts(rootpath, zfm_print, NULL); 23817c478bd9Sstevel@tonic-gate return (Z_ERR); 23827c478bd9Sstevel@tonic-gate } 23837c478bd9Sstevel@tonic-gate 23847c478bd9Sstevel@tonic-gate err = zone_set_state(target_zone, ZONE_STATE_INCOMPLETE); 23857c478bd9Sstevel@tonic-gate if (err != Z_OK) { 23867c478bd9Sstevel@tonic-gate errno = err; 23877c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not set state")); 23887c478bd9Sstevel@tonic-gate goto bad; 23897c478bd9Sstevel@tonic-gate } 23907c478bd9Sstevel@tonic-gate 23917c478bd9Sstevel@tonic-gate /* 23927c478bd9Sstevel@tonic-gate * "exec" the command so that the returned status is that of 23937c478bd9Sstevel@tonic-gate * RMCOMMAND and not the shell. 23947c478bd9Sstevel@tonic-gate */ 23957c478bd9Sstevel@tonic-gate (void) snprintf(cmdbuf, sizeof (cmdbuf), "exec " RMCOMMAND " %s", 23967c478bd9Sstevel@tonic-gate devpath); 23977c478bd9Sstevel@tonic-gate status = do_subproc(cmdbuf); 23987c478bd9Sstevel@tonic-gate if ((err = subproc_status(RMCOMMAND, status)) != Z_OK) 23997c478bd9Sstevel@tonic-gate goto bad; 24007c478bd9Sstevel@tonic-gate (void) snprintf(cmdbuf, sizeof (cmdbuf), "exec " RMCOMMAND " %s", 24017c478bd9Sstevel@tonic-gate rootpath); 24027c478bd9Sstevel@tonic-gate status = do_subproc(cmdbuf); 24037c478bd9Sstevel@tonic-gate if ((err = subproc_status(RMCOMMAND, status)) != Z_OK) 24047c478bd9Sstevel@tonic-gate goto bad; 24057c478bd9Sstevel@tonic-gate err = zone_set_state(target_zone, ZONE_STATE_CONFIGURED); 24067c478bd9Sstevel@tonic-gate if (err != Z_OK) { 24077c478bd9Sstevel@tonic-gate errno = err; 24087c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not reset state")); 24097c478bd9Sstevel@tonic-gate } 24107c478bd9Sstevel@tonic-gate bad: 24117c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 24127c478bd9Sstevel@tonic-gate return (err); 24137c478bd9Sstevel@tonic-gate } 24147c478bd9Sstevel@tonic-gate 2415108322fbScarlsonj /* ARGSUSED */ 2416108322fbScarlsonj static int 2417108322fbScarlsonj mount_func(int argc, char *argv[]) 2418108322fbScarlsonj { 2419108322fbScarlsonj zone_cmd_arg_t zarg; 2420108322fbScarlsonj 2421108322fbScarlsonj if (argc > 0) 2422108322fbScarlsonj return (Z_USAGE); 2423108322fbScarlsonj if (sanity_check(target_zone, CMD_MOUNT, B_FALSE, B_FALSE) != Z_OK) 2424108322fbScarlsonj return (Z_ERR); 2425108322fbScarlsonj if (verify_details(CMD_MOUNT) != Z_OK) 2426108322fbScarlsonj return (Z_ERR); 2427108322fbScarlsonj 2428108322fbScarlsonj zarg.cmd = Z_MOUNT; 2429108322fbScarlsonj if (call_zoneadmd(target_zone, &zarg) != 0) { 2430108322fbScarlsonj zerror(gettext("call to %s failed"), "zoneadmd"); 2431108322fbScarlsonj return (Z_ERR); 2432108322fbScarlsonj } 2433108322fbScarlsonj return (Z_OK); 2434108322fbScarlsonj } 2435108322fbScarlsonj 2436108322fbScarlsonj /* ARGSUSED */ 2437108322fbScarlsonj static int 2438108322fbScarlsonj unmount_func(int argc, char *argv[]) 2439108322fbScarlsonj { 2440108322fbScarlsonj zone_cmd_arg_t zarg; 2441108322fbScarlsonj 2442108322fbScarlsonj if (argc > 0) 2443108322fbScarlsonj return (Z_USAGE); 2444108322fbScarlsonj if (sanity_check(target_zone, CMD_UNMOUNT, B_FALSE, B_FALSE) != Z_OK) 2445108322fbScarlsonj return (Z_ERR); 2446108322fbScarlsonj 2447108322fbScarlsonj zarg.cmd = Z_UNMOUNT; 2448108322fbScarlsonj if (call_zoneadmd(target_zone, &zarg) != 0) { 2449108322fbScarlsonj zerror(gettext("call to %s failed"), "zoneadmd"); 2450108322fbScarlsonj return (Z_ERR); 2451108322fbScarlsonj } 2452108322fbScarlsonj return (Z_OK); 2453108322fbScarlsonj } 2454108322fbScarlsonj 24557c478bd9Sstevel@tonic-gate static int 24567c478bd9Sstevel@tonic-gate help_func(int argc, char *argv[]) 24577c478bd9Sstevel@tonic-gate { 24587c478bd9Sstevel@tonic-gate int arg, cmd_num; 24597c478bd9Sstevel@tonic-gate 24607c478bd9Sstevel@tonic-gate if (argc == 0) { 24617c478bd9Sstevel@tonic-gate (void) usage(B_TRUE); 24627c478bd9Sstevel@tonic-gate return (Z_OK); 24637c478bd9Sstevel@tonic-gate } 24647c478bd9Sstevel@tonic-gate optind = 0; 24657c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 24667c478bd9Sstevel@tonic-gate switch (arg) { 24677c478bd9Sstevel@tonic-gate case '?': 24687c478bd9Sstevel@tonic-gate sub_usage(SHELP_HELP, CMD_HELP); 24697c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 24707c478bd9Sstevel@tonic-gate default: 24717c478bd9Sstevel@tonic-gate sub_usage(SHELP_HELP, CMD_HELP); 24727c478bd9Sstevel@tonic-gate return (Z_USAGE); 24737c478bd9Sstevel@tonic-gate } 24747c478bd9Sstevel@tonic-gate } 24757c478bd9Sstevel@tonic-gate while (optind < argc) { 24767c478bd9Sstevel@tonic-gate if ((cmd_num = cmd_match(argv[optind])) < 0) { 24777c478bd9Sstevel@tonic-gate sub_usage(SHELP_HELP, CMD_HELP); 24787c478bd9Sstevel@tonic-gate return (Z_USAGE); 24797c478bd9Sstevel@tonic-gate } 24807c478bd9Sstevel@tonic-gate sub_usage(cmdtab[cmd_num].short_usage, cmd_num); 24817c478bd9Sstevel@tonic-gate optind++; 24827c478bd9Sstevel@tonic-gate } 24837c478bd9Sstevel@tonic-gate return (Z_OK); 24847c478bd9Sstevel@tonic-gate } 24857c478bd9Sstevel@tonic-gate 24867c478bd9Sstevel@tonic-gate /* 24877c478bd9Sstevel@tonic-gate * Returns: CMD_MIN thru CMD_MAX on success, -1 on error 24887c478bd9Sstevel@tonic-gate */ 24897c478bd9Sstevel@tonic-gate 24907c478bd9Sstevel@tonic-gate static int 24917c478bd9Sstevel@tonic-gate cmd_match(char *cmd) 24927c478bd9Sstevel@tonic-gate { 24937c478bd9Sstevel@tonic-gate int i; 24947c478bd9Sstevel@tonic-gate 24957c478bd9Sstevel@tonic-gate for (i = CMD_MIN; i <= CMD_MAX; i++) { 24967c478bd9Sstevel@tonic-gate /* return only if there is an exact match */ 24977c478bd9Sstevel@tonic-gate if (strcmp(cmd, cmdtab[i].cmd_name) == 0) 24987c478bd9Sstevel@tonic-gate return (cmdtab[i].cmd_num); 24997c478bd9Sstevel@tonic-gate } 25007c478bd9Sstevel@tonic-gate return (-1); 25017c478bd9Sstevel@tonic-gate } 25027c478bd9Sstevel@tonic-gate 25037c478bd9Sstevel@tonic-gate static int 25047c478bd9Sstevel@tonic-gate parse_and_run(int argc, char *argv[]) 25057c478bd9Sstevel@tonic-gate { 25067c478bd9Sstevel@tonic-gate int i = cmd_match(argv[0]); 25077c478bd9Sstevel@tonic-gate 25087c478bd9Sstevel@tonic-gate if (i < 0) 25097c478bd9Sstevel@tonic-gate return (usage(B_FALSE)); 25107c478bd9Sstevel@tonic-gate return (cmdtab[i].handler(argc - 1, &(argv[1]))); 25117c478bd9Sstevel@tonic-gate } 25127c478bd9Sstevel@tonic-gate 25137c478bd9Sstevel@tonic-gate static char * 25147c478bd9Sstevel@tonic-gate get_execbasename(char *execfullname) 25157c478bd9Sstevel@tonic-gate { 25167c478bd9Sstevel@tonic-gate char *last_slash, *execbasename; 25177c478bd9Sstevel@tonic-gate 25187c478bd9Sstevel@tonic-gate /* guard against '/' at end of command invocation */ 25197c478bd9Sstevel@tonic-gate for (;;) { 25207c478bd9Sstevel@tonic-gate last_slash = strrchr(execfullname, '/'); 25217c478bd9Sstevel@tonic-gate if (last_slash == NULL) { 25227c478bd9Sstevel@tonic-gate execbasename = execfullname; 25237c478bd9Sstevel@tonic-gate break; 25247c478bd9Sstevel@tonic-gate } else { 25257c478bd9Sstevel@tonic-gate execbasename = last_slash + 1; 25267c478bd9Sstevel@tonic-gate if (*execbasename == '\0') { 25277c478bd9Sstevel@tonic-gate *last_slash = '\0'; 25287c478bd9Sstevel@tonic-gate continue; 25297c478bd9Sstevel@tonic-gate } 25307c478bd9Sstevel@tonic-gate break; 25317c478bd9Sstevel@tonic-gate } 25327c478bd9Sstevel@tonic-gate } 25337c478bd9Sstevel@tonic-gate return (execbasename); 25347c478bd9Sstevel@tonic-gate } 25357c478bd9Sstevel@tonic-gate 25367c478bd9Sstevel@tonic-gate int 25377c478bd9Sstevel@tonic-gate main(int argc, char **argv) 25387c478bd9Sstevel@tonic-gate { 25397c478bd9Sstevel@tonic-gate int arg; 25407c478bd9Sstevel@tonic-gate zoneid_t zid; 2541108322fbScarlsonj struct stat st; 25427c478bd9Sstevel@tonic-gate 25437c478bd9Sstevel@tonic-gate if ((locale = setlocale(LC_ALL, "")) == NULL) 25447c478bd9Sstevel@tonic-gate locale = "C"; 25457c478bd9Sstevel@tonic-gate (void) textdomain(TEXT_DOMAIN); 25467c478bd9Sstevel@tonic-gate setbuf(stdout, NULL); 25477c478bd9Sstevel@tonic-gate (void) sigset(SIGHUP, SIG_IGN); 25487c478bd9Sstevel@tonic-gate execname = get_execbasename(argv[0]); 25497c478bd9Sstevel@tonic-gate target_zone = NULL; 25507c478bd9Sstevel@tonic-gate if (chdir("/") != 0) { 25517c478bd9Sstevel@tonic-gate zerror(gettext("could not change directory to /.")); 25527c478bd9Sstevel@tonic-gate exit(Z_ERR); 25537c478bd9Sstevel@tonic-gate } 25547c478bd9Sstevel@tonic-gate 2555108322fbScarlsonj while ((arg = getopt(argc, argv, "?z:R:")) != EOF) { 25567c478bd9Sstevel@tonic-gate switch (arg) { 25577c478bd9Sstevel@tonic-gate case '?': 25587c478bd9Sstevel@tonic-gate return (usage(B_TRUE)); 25597c478bd9Sstevel@tonic-gate case 'z': 25607c478bd9Sstevel@tonic-gate target_zone = optarg; 25617c478bd9Sstevel@tonic-gate break; 2562108322fbScarlsonj case 'R': /* private option for admin/install use */ 2563108322fbScarlsonj if (*optarg != '/') { 2564108322fbScarlsonj zerror(gettext("root path must be absolute.")); 2565108322fbScarlsonj exit(Z_ERR); 2566108322fbScarlsonj } 2567108322fbScarlsonj if (stat(optarg, &st) == -1 || !S_ISDIR(st.st_mode)) { 2568108322fbScarlsonj zerror( 2569108322fbScarlsonj gettext("root path must be a directory.")); 2570108322fbScarlsonj exit(Z_ERR); 2571108322fbScarlsonj } 2572108322fbScarlsonj zonecfg_set_root(optarg); 2573108322fbScarlsonj break; 25747c478bd9Sstevel@tonic-gate default: 25757c478bd9Sstevel@tonic-gate return (usage(B_FALSE)); 25767c478bd9Sstevel@tonic-gate } 25777c478bd9Sstevel@tonic-gate } 25787c478bd9Sstevel@tonic-gate 25797c478bd9Sstevel@tonic-gate if (optind >= argc) 25807c478bd9Sstevel@tonic-gate return (usage(B_FALSE)); 25817c478bd9Sstevel@tonic-gate if (target_zone != NULL && zone_get_id(target_zone, &zid) != 0) { 25827c478bd9Sstevel@tonic-gate errno = Z_NO_ZONE; 25837c478bd9Sstevel@tonic-gate zperror(target_zone, B_TRUE); 25847c478bd9Sstevel@tonic-gate exit(Z_ERR); 25857c478bd9Sstevel@tonic-gate } 25867c478bd9Sstevel@tonic-gate return (parse_and_run(argc - optind, &argv[optind])); 25877c478bd9Sstevel@tonic-gate } 2588