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 5ee519a1fSgjelinek * Common Development and Distribution License (the "License"). 6ee519a1fSgjelinek * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217e362f58Scomay 227c478bd9Sstevel@tonic-gate /* 23*7ef01d19Sgjelinek * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate /* 307c478bd9Sstevel@tonic-gate * zoneadm is a command interpreter for zone administration. It is all in 317c478bd9Sstevel@tonic-gate * C (i.e., no lex/yacc), and all the argument passing is argc/argv based. 327c478bd9Sstevel@tonic-gate * main() calls parse_and_run() which calls cmd_match(), then invokes the 337c478bd9Sstevel@tonic-gate * appropriate command's handler function. The rest of the program is the 347c478bd9Sstevel@tonic-gate * handler functions and their helper functions. 357c478bd9Sstevel@tonic-gate * 367c478bd9Sstevel@tonic-gate * Some of the helper functions are used largely to simplify I18N: reducing 377c478bd9Sstevel@tonic-gate * the need for translation notes. This is particularly true of many of 387c478bd9Sstevel@tonic-gate * the zerror() calls: doing e.g. zerror(gettext("%s failed"), "foo") rather 397c478bd9Sstevel@tonic-gate * than zerror(gettext("foo failed")) with a translation note indicating 407c478bd9Sstevel@tonic-gate * that "foo" need not be translated. 417c478bd9Sstevel@tonic-gate */ 427c478bd9Sstevel@tonic-gate 437c478bd9Sstevel@tonic-gate #include <stdio.h> 447c478bd9Sstevel@tonic-gate #include <errno.h> 457c478bd9Sstevel@tonic-gate #include <unistd.h> 467c478bd9Sstevel@tonic-gate #include <signal.h> 477c478bd9Sstevel@tonic-gate #include <stdarg.h> 487c478bd9Sstevel@tonic-gate #include <ctype.h> 497c478bd9Sstevel@tonic-gate #include <stdlib.h> 507c478bd9Sstevel@tonic-gate #include <string.h> 517c478bd9Sstevel@tonic-gate #include <wait.h> 527c478bd9Sstevel@tonic-gate #include <zone.h> 537c478bd9Sstevel@tonic-gate #include <priv.h> 547c478bd9Sstevel@tonic-gate #include <locale.h> 557c478bd9Sstevel@tonic-gate #include <libintl.h> 567c478bd9Sstevel@tonic-gate #include <libzonecfg.h> 577c478bd9Sstevel@tonic-gate #include <bsm/adt.h> 589acbbeafSnn35248 #include <sys/brand.h> 597c478bd9Sstevel@tonic-gate #include <sys/param.h> 607c478bd9Sstevel@tonic-gate #include <sys/types.h> 617c478bd9Sstevel@tonic-gate #include <sys/stat.h> 627c478bd9Sstevel@tonic-gate #include <sys/statvfs.h> 637c478bd9Sstevel@tonic-gate #include <assert.h> 647c478bd9Sstevel@tonic-gate #include <sys/sockio.h> 657c478bd9Sstevel@tonic-gate #include <sys/mntent.h> 667c478bd9Sstevel@tonic-gate #include <limits.h> 670b5de56dSgjelinek #include <dirent.h> 68555afedfScarlsonj #include <uuid/uuid.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> 74865e09a4Sgjelinek #include <fnmatch.h> 75e7f3c547Sgjelinek #include <sys/modctl.h> 769acbbeafSnn35248 #include <libbrand.h> 770209230bSgjelinek #include <libscf.h> 78*7ef01d19Sgjelinek #include <procfs.h> 797c478bd9Sstevel@tonic-gate 807c478bd9Sstevel@tonic-gate #include <pool.h> 817c478bd9Sstevel@tonic-gate #include <sys/pool.h> 820209230bSgjelinek #include <sys/priocntl.h> 830209230bSgjelinek #include <sys/fsspriocntl.h> 847c478bd9Sstevel@tonic-gate 850b5de56dSgjelinek #include "zoneadm.h" 860b5de56dSgjelinek 877c478bd9Sstevel@tonic-gate #define MAXARGS 8 887c478bd9Sstevel@tonic-gate 897c478bd9Sstevel@tonic-gate /* Reflects kernel zone entries */ 907c478bd9Sstevel@tonic-gate typedef struct zone_entry { 917c478bd9Sstevel@tonic-gate zoneid_t zid; 927c478bd9Sstevel@tonic-gate char zname[ZONENAME_MAX]; 937c478bd9Sstevel@tonic-gate char *zstate_str; 947c478bd9Sstevel@tonic-gate zone_state_t zstate_num; 959acbbeafSnn35248 char zbrand[MAXNAMELEN]; 967c478bd9Sstevel@tonic-gate char zroot[MAXPATHLEN]; 97555afedfScarlsonj char zuuid[UUID_PRINTABLE_STRING_LENGTH]; 987c478bd9Sstevel@tonic-gate } zone_entry_t; 997c478bd9Sstevel@tonic-gate 1007c478bd9Sstevel@tonic-gate static zone_entry_t *zents; 1017c478bd9Sstevel@tonic-gate static size_t nzents; 1029acbbeafSnn35248 static boolean_t is_native_zone = B_TRUE; 1037c478bd9Sstevel@tonic-gate 1041390a385Sgjelinek #define LOOPBACK_IF "lo0" 1051390a385Sgjelinek #define SOCKET_AF(af) (((af) == AF_UNSPEC) ? AF_INET : (af)) 1061390a385Sgjelinek 1071390a385Sgjelinek struct net_if { 1081390a385Sgjelinek char *name; 1091390a385Sgjelinek int af; 1101390a385Sgjelinek }; 1111390a385Sgjelinek 1127c478bd9Sstevel@tonic-gate /* 0755 is the default directory mode. */ 1137c478bd9Sstevel@tonic-gate #define DEFAULT_DIR_MODE \ 1147c478bd9Sstevel@tonic-gate (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) 1157c478bd9Sstevel@tonic-gate 1167c478bd9Sstevel@tonic-gate struct cmd { 1177c478bd9Sstevel@tonic-gate uint_t cmd_num; /* command number */ 1187c478bd9Sstevel@tonic-gate char *cmd_name; /* command name */ 1197c478bd9Sstevel@tonic-gate char *short_usage; /* short form help */ 1207c478bd9Sstevel@tonic-gate int (*handler)(int argc, char *argv[]); /* function to call */ 1217c478bd9Sstevel@tonic-gate 1227c478bd9Sstevel@tonic-gate }; 1237c478bd9Sstevel@tonic-gate 1247c478bd9Sstevel@tonic-gate #define SHELP_HELP "help" 1253f2f09c1Sdp #define SHELP_BOOT "boot [-- boot_arguments]" 1267c478bd9Sstevel@tonic-gate #define SHELP_HALT "halt" 1277c478bd9Sstevel@tonic-gate #define SHELP_READY "ready" 1283f2f09c1Sdp #define SHELP_REBOOT "reboot [-- boot_arguments]" 1297c478bd9Sstevel@tonic-gate #define SHELP_LIST "list [-cipv]" 1307c478bd9Sstevel@tonic-gate #define SHELP_VERIFY "verify" 1319acbbeafSnn35248 #define SHELP_INSTALL "install [-x nodataset] [brand-specific args]" 1327c478bd9Sstevel@tonic-gate #define SHELP_UNINSTALL "uninstall [-F]" 1330b5de56dSgjelinek #define SHELP_CLONE "clone [-m method] [-s <ZFS snapshot>] zonename" 134865e09a4Sgjelinek #define SHELP_MOVE "move zonepath" 1358cd327d5Sgjelinek #define SHELP_DETACH "detach [-n]" 1368cd327d5Sgjelinek #define SHELP_ATTACH "attach [-F] [-n <path>]" 137555afedfScarlsonj #define SHELP_MARK "mark incomplete" 1387c478bd9Sstevel@tonic-gate 1399acbbeafSnn35248 #define EXEC_PREFIX "exec " 1409acbbeafSnn35248 #define EXEC_LEN (strlen(EXEC_PREFIX)) 1419acbbeafSnn35248 #define RMCOMMAND "/usr/bin/rm -rf" 1429acbbeafSnn35248 1439acbbeafSnn35248 static int cleanup_zonepath(char *, boolean_t); 1449acbbeafSnn35248 1457c478bd9Sstevel@tonic-gate static int help_func(int argc, char *argv[]); 1467c478bd9Sstevel@tonic-gate static int ready_func(int argc, char *argv[]); 1477c478bd9Sstevel@tonic-gate static int boot_func(int argc, char *argv[]); 1487c478bd9Sstevel@tonic-gate static int halt_func(int argc, char *argv[]); 1497c478bd9Sstevel@tonic-gate static int reboot_func(int argc, char *argv[]); 1507c478bd9Sstevel@tonic-gate static int list_func(int argc, char *argv[]); 1517c478bd9Sstevel@tonic-gate static int verify_func(int argc, char *argv[]); 1527c478bd9Sstevel@tonic-gate static int install_func(int argc, char *argv[]); 1537c478bd9Sstevel@tonic-gate static int uninstall_func(int argc, char *argv[]); 154108322fbScarlsonj static int mount_func(int argc, char *argv[]); 155108322fbScarlsonj static int unmount_func(int argc, char *argv[]); 156865e09a4Sgjelinek static int clone_func(int argc, char *argv[]); 157865e09a4Sgjelinek static int move_func(int argc, char *argv[]); 158ee519a1fSgjelinek static int detach_func(int argc, char *argv[]); 159ee519a1fSgjelinek static int attach_func(int argc, char *argv[]); 160555afedfScarlsonj static int mark_func(int argc, char *argv[]); 1610209230bSgjelinek static int apply_func(int argc, char *argv[]); 1627c478bd9Sstevel@tonic-gate static int sanity_check(char *zone, int cmd_num, boolean_t running, 1639acbbeafSnn35248 boolean_t unsafe_when_running, boolean_t force); 1647c478bd9Sstevel@tonic-gate static int cmd_match(char *cmd); 165ce28b40eSzt129084 static int verify_details(int, char *argv[]); 166ce28b40eSzt129084 static int verify_brand(zone_dochandle_t, int, char *argv[]); 167ce28b40eSzt129084 static int invoke_brand_handler(int, char *argv[]); 1687c478bd9Sstevel@tonic-gate 1697c478bd9Sstevel@tonic-gate static struct cmd cmdtab[] = { 1707c478bd9Sstevel@tonic-gate { CMD_HELP, "help", SHELP_HELP, help_func }, 1717c478bd9Sstevel@tonic-gate { CMD_BOOT, "boot", SHELP_BOOT, boot_func }, 1727c478bd9Sstevel@tonic-gate { CMD_HALT, "halt", SHELP_HALT, halt_func }, 1737c478bd9Sstevel@tonic-gate { CMD_READY, "ready", SHELP_READY, ready_func }, 1747c478bd9Sstevel@tonic-gate { CMD_REBOOT, "reboot", SHELP_REBOOT, reboot_func }, 1757c478bd9Sstevel@tonic-gate { CMD_LIST, "list", SHELP_LIST, list_func }, 1767c478bd9Sstevel@tonic-gate { CMD_VERIFY, "verify", SHELP_VERIFY, verify_func }, 1777c478bd9Sstevel@tonic-gate { CMD_INSTALL, "install", SHELP_INSTALL, install_func }, 1787c478bd9Sstevel@tonic-gate { CMD_UNINSTALL, "uninstall", SHELP_UNINSTALL, 179108322fbScarlsonj uninstall_func }, 180865e09a4Sgjelinek /* mount and unmount are private commands for admin/install */ 181108322fbScarlsonj { CMD_MOUNT, "mount", NULL, mount_func }, 182865e09a4Sgjelinek { CMD_UNMOUNT, "unmount", NULL, unmount_func }, 183865e09a4Sgjelinek { CMD_CLONE, "clone", SHELP_CLONE, clone_func }, 184ee519a1fSgjelinek { CMD_MOVE, "move", SHELP_MOVE, move_func }, 185ee519a1fSgjelinek { CMD_DETACH, "detach", SHELP_DETACH, detach_func }, 186555afedfScarlsonj { CMD_ATTACH, "attach", SHELP_ATTACH, attach_func }, 1870209230bSgjelinek { CMD_MARK, "mark", SHELP_MARK, mark_func }, 1880209230bSgjelinek { CMD_APPLY, "apply", NULL, apply_func } 1897c478bd9Sstevel@tonic-gate }; 1907c478bd9Sstevel@tonic-gate 1917c478bd9Sstevel@tonic-gate /* global variables */ 1927c478bd9Sstevel@tonic-gate 1937c478bd9Sstevel@tonic-gate /* set early in main(), never modified thereafter, used all over the place */ 1947c478bd9Sstevel@tonic-gate static char *execname; 1959acbbeafSnn35248 static char target_brand[MAXNAMELEN]; 1967c478bd9Sstevel@tonic-gate static char *locale; 1970b5de56dSgjelinek char *target_zone; 198555afedfScarlsonj static char *target_uuid; 1997c478bd9Sstevel@tonic-gate 2007c478bd9Sstevel@tonic-gate /* used in do_subproc() and signal handler */ 2017c478bd9Sstevel@tonic-gate static volatile boolean_t child_killed; 2029acbbeafSnn35248 static int do_subproc_cnt = 0; 2039acbbeafSnn35248 2049acbbeafSnn35248 /* 2059acbbeafSnn35248 * Used to indicate whether this zoneadm instance has another zoneadm 2069acbbeafSnn35248 * instance in its ancestry. 2079acbbeafSnn35248 */ 2089acbbeafSnn35248 static boolean_t zoneadm_is_nested = B_FALSE; 2099acbbeafSnn35248 2109acbbeafSnn35248 /* used to track nested zone-lock operations */ 2119acbbeafSnn35248 static int zone_lock_cnt = 0; 2129acbbeafSnn35248 2139acbbeafSnn35248 /* used to communicate lock status to children */ 2149acbbeafSnn35248 #define LOCK_ENV_VAR "_ZONEADM_LOCK_HELD" 2159acbbeafSnn35248 static char zoneadm_lock_held[] = LOCK_ENV_VAR"=1"; 2169acbbeafSnn35248 static char zoneadm_lock_not_held[] = LOCK_ENV_VAR"=0"; 2177c478bd9Sstevel@tonic-gate 2180b5de56dSgjelinek char * 2197c478bd9Sstevel@tonic-gate cmd_to_str(int cmd_num) 2207c478bd9Sstevel@tonic-gate { 2217c478bd9Sstevel@tonic-gate assert(cmd_num >= CMD_MIN && cmd_num <= CMD_MAX); 2227c478bd9Sstevel@tonic-gate return (cmdtab[cmd_num].cmd_name); 2237c478bd9Sstevel@tonic-gate } 2247c478bd9Sstevel@tonic-gate 2257c478bd9Sstevel@tonic-gate /* This is a separate function because of gettext() wrapping. */ 2267c478bd9Sstevel@tonic-gate static char * 2277c478bd9Sstevel@tonic-gate long_help(int cmd_num) 2287c478bd9Sstevel@tonic-gate { 2297e362f58Scomay assert(cmd_num >= CMD_MIN && cmd_num <= CMD_MAX); 2307c478bd9Sstevel@tonic-gate switch (cmd_num) { 2317c478bd9Sstevel@tonic-gate case CMD_HELP: 2327c478bd9Sstevel@tonic-gate return (gettext("Print usage message.")); 2337c478bd9Sstevel@tonic-gate case CMD_BOOT: 2343f2f09c1Sdp return (gettext("Activates (boots) specified zone. See " 2353f2f09c1Sdp "zoneadm(1m) for valid boot\n\targuments.")); 2367c478bd9Sstevel@tonic-gate case CMD_HALT: 2379e518655Sgjelinek return (gettext("Halts specified zone, bypassing shutdown " 2389e518655Sgjelinek "scripts and removing runtime\n\tresources of the zone.")); 2397c478bd9Sstevel@tonic-gate case CMD_READY: 2409e518655Sgjelinek return (gettext("Prepares a zone for running applications but " 2419e518655Sgjelinek "does not start any user\n\tprocesses in the zone.")); 2427c478bd9Sstevel@tonic-gate case CMD_REBOOT: 2439e518655Sgjelinek return (gettext("Restarts the zone (equivalent to a halt / " 2443f2f09c1Sdp "boot sequence).\n\tFails if the zone is not active. " 2453f2f09c1Sdp "See zoneadm(1m) for valid boot\n\targuments.")); 2467c478bd9Sstevel@tonic-gate case CMD_LIST: 2477c478bd9Sstevel@tonic-gate return (gettext("Lists the current zones, or a " 2487c478bd9Sstevel@tonic-gate "specific zone if indicated. By default,\n\tall " 2497c478bd9Sstevel@tonic-gate "running zones are listed, though this can be " 2507c478bd9Sstevel@tonic-gate "expanded to all\n\tinstalled zones with the -i " 2517c478bd9Sstevel@tonic-gate "option or all configured zones with the\n\t-c " 252555afedfScarlsonj "option. When used with the general -z <zone> and/or -u " 253555afedfScarlsonj "<uuid-match>\n\toptions, lists only the specified " 254555afedfScarlsonj "matching zone, but lists it\n\tregardless of its state, " 255555afedfScarlsonj "and the -i and -c options are disallowed. The\n\t-v " 256555afedfScarlsonj "option can be used to display verbose information: zone " 257555afedfScarlsonj "name, id,\n\tcurrent state, root directory and options. " 258555afedfScarlsonj "The -p option can be used\n\tto request machine-parsable " 259555afedfScarlsonj "output. The -v and -p options are mutually\n\texclusive." 260555afedfScarlsonj " If neither -v nor -p is used, just the zone name is " 261555afedfScarlsonj "listed.")); 2627c478bd9Sstevel@tonic-gate case CMD_VERIFY: 2637c478bd9Sstevel@tonic-gate return (gettext("Check to make sure the configuration " 2647c478bd9Sstevel@tonic-gate "can safely be instantiated\n\ton the machine: " 2657c478bd9Sstevel@tonic-gate "physical network interfaces exist, etc.")); 2667c478bd9Sstevel@tonic-gate case CMD_INSTALL: 2670b5de56dSgjelinek return (gettext("Install the configuration on to the system. " 2680b5de56dSgjelinek "The -x nodataset option\n\tcan be used to prevent the " 2690b5de56dSgjelinek "creation of a new ZFS file system for the\n\tzone " 2709acbbeafSnn35248 "(assuming the zonepath is within a ZFS file system).\n\t" 2719acbbeafSnn35248 "All other arguments are passed to the brand installation " 2729acbbeafSnn35248 "function;\n\tsee brand(4) for more information.")); 2737c478bd9Sstevel@tonic-gate case CMD_UNINSTALL: 2749e518655Sgjelinek return (gettext("Uninstall the configuration from the system. " 2759e518655Sgjelinek "The -F flag can be used\n\tto force the action.")); 276865e09a4Sgjelinek case CMD_CLONE: 2770b5de56dSgjelinek return (gettext("Clone the installation of another zone. " 2780b5de56dSgjelinek "The -m option can be used to\n\tspecify 'copy' which " 2790b5de56dSgjelinek "forces a copy of the source zone. The -s option\n\t" 2800b5de56dSgjelinek "can be used to specify the name of a ZFS snapshot " 2810b5de56dSgjelinek "that was taken from\n\ta previous clone command. The " 2820b5de56dSgjelinek "snapshot will be used as the source\n\tinstead of " 2830b5de56dSgjelinek "creating a new ZFS snapshot.")); 284865e09a4Sgjelinek case CMD_MOVE: 285865e09a4Sgjelinek return (gettext("Move the zone to a new zonepath.")); 2869e518655Sgjelinek case CMD_DETACH: 2879e518655Sgjelinek return (gettext("Detach the zone from the system. The zone " 2889e518655Sgjelinek "state is changed to\n\t'configured' (but the files under " 2899e518655Sgjelinek "the zonepath are untouched).\n\tThe zone can subsequently " 2909e518655Sgjelinek "be attached, or can be moved to another\n\tsystem and " 2918cd327d5Sgjelinek "attached there. The -n option can be used to specify\n\t" 2928cd327d5Sgjelinek "'no-execute' mode. When -n is used, the information " 2938cd327d5Sgjelinek "needed to attach\n\tthe zone is sent to standard output " 2948cd327d5Sgjelinek "but the zone is not actually\n\tdetached.")); 2959e518655Sgjelinek case CMD_ATTACH: 2969e518655Sgjelinek return (gettext("Attach the zone to the system. The zone " 2979e518655Sgjelinek "state must be 'configured'\n\tprior to attach; upon " 2989e518655Sgjelinek "successful completion, the zone state will be\n\t" 2999e518655Sgjelinek "'installed'. The system software on the current " 3009e518655Sgjelinek "system must be\n\tcompatible with the software on the " 3019e518655Sgjelinek "zone's original system.\n\tSpecify -F to force the attach " 3028cd327d5Sgjelinek "and skip software compatibility tests.\n\tThe -n option " 3038cd327d5Sgjelinek "can be used to specify 'no-execute' mode. When -n is\n\t" 3048cd327d5Sgjelinek "used, the information needed to attach the zone is read " 3058cd327d5Sgjelinek "from the\n\tspecified path and the configuration is only " 3068cd327d5Sgjelinek "validated. The path can\n\tbe '-' to specify standard " 3078cd327d5Sgjelinek "input.")); 308555afedfScarlsonj case CMD_MARK: 309555afedfScarlsonj return (gettext("Set the state of the zone. This can be used " 310555afedfScarlsonj "to force the zone\n\tstate to 'incomplete' " 311555afedfScarlsonj "administratively if some activity has rendered\n\tthe " 312555afedfScarlsonj "zone permanently unusable. The only valid state that " 313555afedfScarlsonj "may be\n\tspecified is 'incomplete'.")); 314108322fbScarlsonj default: 315108322fbScarlsonj return (""); 3167c478bd9Sstevel@tonic-gate } 3177c478bd9Sstevel@tonic-gate /* NOTREACHED */ 3187e362f58Scomay return (NULL); 3197c478bd9Sstevel@tonic-gate } 3207c478bd9Sstevel@tonic-gate 3217c478bd9Sstevel@tonic-gate /* 3227c478bd9Sstevel@tonic-gate * Called with explicit B_TRUE when help is explicitly requested, B_FALSE for 3237c478bd9Sstevel@tonic-gate * unexpected errors. 3247c478bd9Sstevel@tonic-gate */ 3257c478bd9Sstevel@tonic-gate 3267c478bd9Sstevel@tonic-gate static int 3277c478bd9Sstevel@tonic-gate usage(boolean_t explicit) 3287c478bd9Sstevel@tonic-gate { 3297c478bd9Sstevel@tonic-gate int i; 3307c478bd9Sstevel@tonic-gate FILE *fd = explicit ? stdout : stderr; 3317c478bd9Sstevel@tonic-gate 3327c478bd9Sstevel@tonic-gate (void) fprintf(fd, "%s:\t%s help\n", gettext("usage"), execname); 333555afedfScarlsonj (void) fprintf(fd, "\t%s [-z <zone>] [-u <uuid-match>] list\n", 334555afedfScarlsonj execname); 335555afedfScarlsonj (void) fprintf(fd, "\t%s {-z <zone>|-u <uuid-match>} <%s>\n", execname, 3367c478bd9Sstevel@tonic-gate gettext("subcommand")); 3377c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\n%s:\n\n", gettext("Subcommands")); 3387c478bd9Sstevel@tonic-gate for (i = CMD_MIN; i <= CMD_MAX; i++) { 339108322fbScarlsonj if (cmdtab[i].short_usage == NULL) 340108322fbScarlsonj continue; 3417c478bd9Sstevel@tonic-gate (void) fprintf(fd, "%s\n", cmdtab[i].short_usage); 3427c478bd9Sstevel@tonic-gate if (explicit) 3437c478bd9Sstevel@tonic-gate (void) fprintf(fd, "\t%s\n\n", long_help(i)); 3447c478bd9Sstevel@tonic-gate } 3457c478bd9Sstevel@tonic-gate if (!explicit) 3467c478bd9Sstevel@tonic-gate (void) fputs("\n", fd); 3477c478bd9Sstevel@tonic-gate return (Z_USAGE); 3487c478bd9Sstevel@tonic-gate } 3497c478bd9Sstevel@tonic-gate 3507c478bd9Sstevel@tonic-gate static void 3517c478bd9Sstevel@tonic-gate sub_usage(char *short_usage, int cmd_num) 3527c478bd9Sstevel@tonic-gate { 3537c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s:\t%s\n", gettext("usage"), short_usage); 3547c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "\t%s\n", long_help(cmd_num)); 3557c478bd9Sstevel@tonic-gate } 3567c478bd9Sstevel@tonic-gate 3577c478bd9Sstevel@tonic-gate /* 3587c478bd9Sstevel@tonic-gate * zperror() is like perror(3c) except that this also prints the executable 3597c478bd9Sstevel@tonic-gate * name at the start of the message, and takes a boolean indicating whether 3607c478bd9Sstevel@tonic-gate * to call libc'c strerror() or that from libzonecfg. 3617c478bd9Sstevel@tonic-gate */ 3627c478bd9Sstevel@tonic-gate 3630b5de56dSgjelinek void 3647c478bd9Sstevel@tonic-gate zperror(const char *str, boolean_t zonecfg_error) 3657c478bd9Sstevel@tonic-gate { 3667c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: %s: %s\n", execname, str, 3677c478bd9Sstevel@tonic-gate zonecfg_error ? zonecfg_strerror(errno) : strerror(errno)); 3687c478bd9Sstevel@tonic-gate } 3697c478bd9Sstevel@tonic-gate 3707c478bd9Sstevel@tonic-gate /* 3717c478bd9Sstevel@tonic-gate * zperror2() is very similar to zperror() above, except it also prints a 3727c478bd9Sstevel@tonic-gate * supplied zone name after the executable. 3737c478bd9Sstevel@tonic-gate * 3747c478bd9Sstevel@tonic-gate * All current consumers of this function want libzonecfg's strerror() rather 3757c478bd9Sstevel@tonic-gate * than libc's; if this ever changes, this function can be made more generic 3767c478bd9Sstevel@tonic-gate * like zperror() above. 3777c478bd9Sstevel@tonic-gate */ 3787c478bd9Sstevel@tonic-gate 3790b5de56dSgjelinek void 3807c478bd9Sstevel@tonic-gate zperror2(const char *zone, const char *str) 3817c478bd9Sstevel@tonic-gate { 3827c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: %s: %s: %s\n", execname, zone, str, 3837c478bd9Sstevel@tonic-gate zonecfg_strerror(errno)); 3847c478bd9Sstevel@tonic-gate } 3857c478bd9Sstevel@tonic-gate 3867c478bd9Sstevel@tonic-gate /* PRINTFLIKE1 */ 3870b5de56dSgjelinek void 3887c478bd9Sstevel@tonic-gate zerror(const char *fmt, ...) 3897c478bd9Sstevel@tonic-gate { 3907c478bd9Sstevel@tonic-gate va_list alist; 3917c478bd9Sstevel@tonic-gate 3927c478bd9Sstevel@tonic-gate va_start(alist, fmt); 3937c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: ", execname); 3947c478bd9Sstevel@tonic-gate if (target_zone != NULL) 3957c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "zone '%s': ", target_zone); 3967c478bd9Sstevel@tonic-gate (void) vfprintf(stderr, fmt, alist); 3977c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "\n"); 3987c478bd9Sstevel@tonic-gate va_end(alist); 3997c478bd9Sstevel@tonic-gate } 4007c478bd9Sstevel@tonic-gate 4017c478bd9Sstevel@tonic-gate static void * 4027c478bd9Sstevel@tonic-gate safe_calloc(size_t nelem, size_t elsize) 4037c478bd9Sstevel@tonic-gate { 4047c478bd9Sstevel@tonic-gate void *r = calloc(nelem, elsize); 4057c478bd9Sstevel@tonic-gate 4067c478bd9Sstevel@tonic-gate if (r == NULL) { 4077c478bd9Sstevel@tonic-gate zerror(gettext("failed to allocate %lu bytes: %s"), 4087c478bd9Sstevel@tonic-gate (ulong_t)nelem * elsize, strerror(errno)); 4097c478bd9Sstevel@tonic-gate exit(Z_ERR); 4107c478bd9Sstevel@tonic-gate } 4117c478bd9Sstevel@tonic-gate return (r); 4127c478bd9Sstevel@tonic-gate } 4137c478bd9Sstevel@tonic-gate 4147c478bd9Sstevel@tonic-gate static void 4157c478bd9Sstevel@tonic-gate zone_print(zone_entry_t *zent, boolean_t verbose, boolean_t parsable) 4167c478bd9Sstevel@tonic-gate { 4177c478bd9Sstevel@tonic-gate static boolean_t firsttime = B_TRUE; 4187c478bd9Sstevel@tonic-gate 4197c478bd9Sstevel@tonic-gate assert(!(verbose && parsable)); 4207c478bd9Sstevel@tonic-gate if (firsttime && verbose) { 4217c478bd9Sstevel@tonic-gate firsttime = B_FALSE; 4229acbbeafSnn35248 (void) printf("%*s %-16s %-14s %-30s %-10s\n", ZONEID_WIDTH, 4239acbbeafSnn35248 "ID", "NAME", "STATUS", "PATH", "BRAND"); 4247c478bd9Sstevel@tonic-gate } 4257c478bd9Sstevel@tonic-gate if (!verbose) { 426555afedfScarlsonj char *cp, *clim; 427555afedfScarlsonj 4287c478bd9Sstevel@tonic-gate if (!parsable) { 4297c478bd9Sstevel@tonic-gate (void) printf("%s\n", zent->zname); 4307c478bd9Sstevel@tonic-gate return; 4317c478bd9Sstevel@tonic-gate } 4327c478bd9Sstevel@tonic-gate if (zent->zid == ZONE_ID_UNDEFINED) 4337c478bd9Sstevel@tonic-gate (void) printf("-"); 4347c478bd9Sstevel@tonic-gate else 4357c478bd9Sstevel@tonic-gate (void) printf("%lu", zent->zid); 436555afedfScarlsonj (void) printf(":%s:%s:", zent->zname, zent->zstate_str); 437555afedfScarlsonj cp = zent->zroot; 438555afedfScarlsonj while ((clim = strchr(cp, ':')) != NULL) { 439555afedfScarlsonj (void) printf("%.*s\\:", clim - cp, cp); 440555afedfScarlsonj cp = clim + 1; 441555afedfScarlsonj } 4429acbbeafSnn35248 (void) printf("%s:%s:%s\n", cp, zent->zuuid, zent->zbrand); 4437c478bd9Sstevel@tonic-gate return; 4447c478bd9Sstevel@tonic-gate } 4457c478bd9Sstevel@tonic-gate if (zent->zstate_str != NULL) { 4467c478bd9Sstevel@tonic-gate if (zent->zid == ZONE_ID_UNDEFINED) 4477c478bd9Sstevel@tonic-gate (void) printf("%*s", ZONEID_WIDTH, "-"); 4487c478bd9Sstevel@tonic-gate else 4497c478bd9Sstevel@tonic-gate (void) printf("%*lu", ZONEID_WIDTH, zent->zid); 4509acbbeafSnn35248 (void) printf(" %-16s %-14s %-30s %-10s\n", zent->zname, 4519acbbeafSnn35248 zent->zstate_str, zent->zroot, zent->zbrand); 4527c478bd9Sstevel@tonic-gate } 4537c478bd9Sstevel@tonic-gate } 4547c478bd9Sstevel@tonic-gate 4557c478bd9Sstevel@tonic-gate static int 456108322fbScarlsonj lookup_zone_info(const char *zone_name, zoneid_t zid, zone_entry_t *zent) 4577c478bd9Sstevel@tonic-gate { 45845916cd2Sjpk char root[MAXPATHLEN], *cp; 4597c478bd9Sstevel@tonic-gate int err; 460555afedfScarlsonj uuid_t uuid; 4617c478bd9Sstevel@tonic-gate 4627c478bd9Sstevel@tonic-gate (void) strlcpy(zent->zname, zone_name, sizeof (zent->zname)); 4637c478bd9Sstevel@tonic-gate (void) strlcpy(zent->zroot, "???", sizeof (zent->zroot)); 4649acbbeafSnn35248 (void) strlcpy(zent->zbrand, "???", sizeof (zent->zbrand)); 4657c478bd9Sstevel@tonic-gate zent->zstate_str = "???"; 4667c478bd9Sstevel@tonic-gate 467108322fbScarlsonj zent->zid = zid; 4687c478bd9Sstevel@tonic-gate 469555afedfScarlsonj if (zonecfg_get_uuid(zone_name, uuid) == Z_OK && 470555afedfScarlsonj !uuid_is_null(uuid)) 471555afedfScarlsonj uuid_unparse(uuid, zent->zuuid); 472555afedfScarlsonj else 473555afedfScarlsonj zent->zuuid[0] = '\0'; 474555afedfScarlsonj 47545916cd2Sjpk /* 47645916cd2Sjpk * For labeled zones which query the zone path of lower-level 47745916cd2Sjpk * zones, the path needs to be adjusted to drop the final 47845916cd2Sjpk * "/root" component. This adjusted path is then useful 47945916cd2Sjpk * for reading down any exported directories from the 48045916cd2Sjpk * lower-level zone. 48145916cd2Sjpk */ 48245916cd2Sjpk if (is_system_labeled() && zent->zid != ZONE_ID_UNDEFINED) { 48345916cd2Sjpk if (zone_getattr(zent->zid, ZONE_ATTR_ROOT, zent->zroot, 48445916cd2Sjpk sizeof (zent->zroot)) == -1) { 48545916cd2Sjpk zperror2(zent->zname, 48645916cd2Sjpk gettext("could not get zone path.")); 48745916cd2Sjpk return (Z_ERR); 48845916cd2Sjpk } 48945916cd2Sjpk cp = zent->zroot + strlen(zent->zroot) - 5; 49045916cd2Sjpk if (cp > zent->zroot && strcmp(cp, "/root") == 0) 49145916cd2Sjpk *cp = 0; 49245916cd2Sjpk } else { 49345916cd2Sjpk if ((err = zone_get_zonepath(zent->zname, root, 49445916cd2Sjpk sizeof (root))) != Z_OK) { 4957c478bd9Sstevel@tonic-gate errno = err; 49645916cd2Sjpk zperror2(zent->zname, 49745916cd2Sjpk gettext("could not get zone path.")); 4987c478bd9Sstevel@tonic-gate return (Z_ERR); 4997c478bd9Sstevel@tonic-gate } 5007c478bd9Sstevel@tonic-gate (void) strlcpy(zent->zroot, root, sizeof (zent->zroot)); 50145916cd2Sjpk } 5027c478bd9Sstevel@tonic-gate 5037c478bd9Sstevel@tonic-gate if ((err = zone_get_state(zent->zname, &zent->zstate_num)) != Z_OK) { 5047c478bd9Sstevel@tonic-gate errno = err; 5057c478bd9Sstevel@tonic-gate zperror2(zent->zname, gettext("could not get state")); 5067c478bd9Sstevel@tonic-gate return (Z_ERR); 5077c478bd9Sstevel@tonic-gate } 5087c478bd9Sstevel@tonic-gate zent->zstate_str = zone_state_str(zent->zstate_num); 509bafa7067Snn35248 510bafa7067Snn35248 /* 511bafa7067Snn35248 * A zone's brand is only available in the .xml file describing it, 512bafa7067Snn35248 * which is only visible to the global zone. This causes 513bafa7067Snn35248 * zone_get_brand() to fail when called from within a non-global 514bafa7067Snn35248 * zone. Fortunately we only do this on labeled systems, where we 515bafa7067Snn35248 * know all zones are native. 516bafa7067Snn35248 */ 517bafa7067Snn35248 if (getzoneid() != GLOBAL_ZONEID) { 518bafa7067Snn35248 assert(is_system_labeled() != 0); 519bafa7067Snn35248 (void) strlcpy(zent->zbrand, NATIVE_BRAND_NAME, 520bafa7067Snn35248 sizeof (zent->zbrand)); 521bafa7067Snn35248 } else if (zone_get_brand(zent->zname, zent->zbrand, 5229acbbeafSnn35248 sizeof (zent->zbrand)) != Z_OK) { 5239acbbeafSnn35248 zperror2(zent->zname, gettext("could not get brand name")); 5249acbbeafSnn35248 return (Z_ERR); 5259acbbeafSnn35248 } 5267c478bd9Sstevel@tonic-gate 5277c478bd9Sstevel@tonic-gate return (Z_OK); 5287c478bd9Sstevel@tonic-gate } 5297c478bd9Sstevel@tonic-gate 5307c478bd9Sstevel@tonic-gate /* 5317c478bd9Sstevel@tonic-gate * fetch_zents() calls zone_list(2) to find out how many zones are running 5327c478bd9Sstevel@tonic-gate * (which is stored in the global nzents), then calls zone_list(2) again 5337c478bd9Sstevel@tonic-gate * to fetch the list of running zones (stored in the global zents). This 5347c478bd9Sstevel@tonic-gate * function may be called multiple times, so if zents is already set, we 5357c478bd9Sstevel@tonic-gate * return immediately to save work. 5367c478bd9Sstevel@tonic-gate */ 5377c478bd9Sstevel@tonic-gate 5387c478bd9Sstevel@tonic-gate static int 539108322fbScarlsonj fetch_zents(void) 5407c478bd9Sstevel@tonic-gate { 5417c478bd9Sstevel@tonic-gate zoneid_t *zids = NULL; 5427c478bd9Sstevel@tonic-gate uint_t nzents_saved; 543108322fbScarlsonj int i, retv; 544108322fbScarlsonj FILE *fp; 545108322fbScarlsonj boolean_t inaltroot; 546108322fbScarlsonj zone_entry_t *zentp; 5477c478bd9Sstevel@tonic-gate 5487c478bd9Sstevel@tonic-gate if (nzents > 0) 5497c478bd9Sstevel@tonic-gate return (Z_OK); 5507c478bd9Sstevel@tonic-gate 5517c478bd9Sstevel@tonic-gate if (zone_list(NULL, &nzents) != 0) { 5527c478bd9Sstevel@tonic-gate zperror(gettext("failed to get zoneid list"), B_FALSE); 5537c478bd9Sstevel@tonic-gate return (Z_ERR); 5547c478bd9Sstevel@tonic-gate } 5557c478bd9Sstevel@tonic-gate 5567c478bd9Sstevel@tonic-gate again: 5577c478bd9Sstevel@tonic-gate if (nzents == 0) 5587c478bd9Sstevel@tonic-gate return (Z_OK); 5597c478bd9Sstevel@tonic-gate 5607c478bd9Sstevel@tonic-gate zids = safe_calloc(nzents, sizeof (zoneid_t)); 5617c478bd9Sstevel@tonic-gate nzents_saved = nzents; 5627c478bd9Sstevel@tonic-gate 5637c478bd9Sstevel@tonic-gate if (zone_list(zids, &nzents) != 0) { 5647c478bd9Sstevel@tonic-gate zperror(gettext("failed to get zone list"), B_FALSE); 5657c478bd9Sstevel@tonic-gate free(zids); 5667c478bd9Sstevel@tonic-gate return (Z_ERR); 5677c478bd9Sstevel@tonic-gate } 5687c478bd9Sstevel@tonic-gate if (nzents != nzents_saved) { 5697c478bd9Sstevel@tonic-gate /* list changed, try again */ 5707c478bd9Sstevel@tonic-gate free(zids); 5717c478bd9Sstevel@tonic-gate goto again; 5727c478bd9Sstevel@tonic-gate } 5737c478bd9Sstevel@tonic-gate 5747c478bd9Sstevel@tonic-gate zents = safe_calloc(nzents, sizeof (zone_entry_t)); 5757c478bd9Sstevel@tonic-gate 576108322fbScarlsonj inaltroot = zonecfg_in_alt_root(); 577108322fbScarlsonj if (inaltroot) 578108322fbScarlsonj fp = zonecfg_open_scratch("", B_FALSE); 579108322fbScarlsonj else 580108322fbScarlsonj fp = NULL; 581108322fbScarlsonj zentp = zents; 582108322fbScarlsonj retv = Z_OK; 5837c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 5847c478bd9Sstevel@tonic-gate char name[ZONENAME_MAX]; 585108322fbScarlsonj char altname[ZONENAME_MAX]; 5867c478bd9Sstevel@tonic-gate 587108322fbScarlsonj if (getzonenamebyid(zids[i], name, sizeof (name)) < 0) { 5887c478bd9Sstevel@tonic-gate zperror(gettext("failed to get zone name"), B_FALSE); 589108322fbScarlsonj retv = Z_ERR; 590108322fbScarlsonj continue; 5917c478bd9Sstevel@tonic-gate } 592108322fbScarlsonj if (zonecfg_is_scratch(name)) { 593108322fbScarlsonj /* Ignore scratch zones by default */ 594108322fbScarlsonj if (!inaltroot) 595108322fbScarlsonj continue; 596108322fbScarlsonj if (fp == NULL || 597108322fbScarlsonj zonecfg_reverse_scratch(fp, name, altname, 598108322fbScarlsonj sizeof (altname), NULL, 0) == -1) { 5995ee84fbdSgjelinek zerror(gettext("could not resolve scratch " 600108322fbScarlsonj "zone %s"), name); 601108322fbScarlsonj retv = Z_ERR; 602108322fbScarlsonj continue; 603108322fbScarlsonj } 604108322fbScarlsonj (void) strcpy(name, altname); 605108322fbScarlsonj } else { 606108322fbScarlsonj /* Ignore non-scratch when in an alternate root */ 607108322fbScarlsonj if (inaltroot && strcmp(name, GLOBAL_ZONENAME) != 0) 608108322fbScarlsonj continue; 609108322fbScarlsonj } 610108322fbScarlsonj if (lookup_zone_info(name, zids[i], zentp) != Z_OK) { 611108322fbScarlsonj zerror(gettext("failed to get zone data")); 612108322fbScarlsonj retv = Z_ERR; 613108322fbScarlsonj continue; 614108322fbScarlsonj } 615108322fbScarlsonj zentp++; 616108322fbScarlsonj } 617108322fbScarlsonj nzents = zentp - zents; 618108322fbScarlsonj if (fp != NULL) 619108322fbScarlsonj zonecfg_close_scratch(fp); 6207c478bd9Sstevel@tonic-gate 6217c478bd9Sstevel@tonic-gate free(zids); 622108322fbScarlsonj return (retv); 6237c478bd9Sstevel@tonic-gate } 6247c478bd9Sstevel@tonic-gate 625108322fbScarlsonj static int 6267c478bd9Sstevel@tonic-gate zone_print_list(zone_state_t min_state, boolean_t verbose, boolean_t parsable) 6277c478bd9Sstevel@tonic-gate { 6287c478bd9Sstevel@tonic-gate int i; 6297c478bd9Sstevel@tonic-gate zone_entry_t zent; 6307c478bd9Sstevel@tonic-gate FILE *cookie; 6317c478bd9Sstevel@tonic-gate char *name; 6327c478bd9Sstevel@tonic-gate 6337c478bd9Sstevel@tonic-gate /* 6347c478bd9Sstevel@tonic-gate * First get the list of running zones from the kernel and print them. 6357c478bd9Sstevel@tonic-gate * If that is all we need, then return. 6367c478bd9Sstevel@tonic-gate */ 637108322fbScarlsonj if ((i = fetch_zents()) != Z_OK) { 6387c478bd9Sstevel@tonic-gate /* 6397c478bd9Sstevel@tonic-gate * No need for error messages; fetch_zents() has already taken 6407c478bd9Sstevel@tonic-gate * care of this. 6417c478bd9Sstevel@tonic-gate */ 642108322fbScarlsonj return (i); 6437c478bd9Sstevel@tonic-gate } 644108322fbScarlsonj for (i = 0; i < nzents; i++) 6457c478bd9Sstevel@tonic-gate zone_print(&zents[i], verbose, parsable); 6467c478bd9Sstevel@tonic-gate if (min_state >= ZONE_STATE_RUNNING) 647108322fbScarlsonj return (Z_OK); 6487c478bd9Sstevel@tonic-gate /* 6497c478bd9Sstevel@tonic-gate * Next, get the full list of zones from the configuration, skipping 6507c478bd9Sstevel@tonic-gate * any we have already printed. 6517c478bd9Sstevel@tonic-gate */ 6527c478bd9Sstevel@tonic-gate cookie = setzoneent(); 6537c478bd9Sstevel@tonic-gate while ((name = getzoneent(cookie)) != NULL) { 6547c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 6557c478bd9Sstevel@tonic-gate if (strcmp(zents[i].zname, name) == 0) 6567c478bd9Sstevel@tonic-gate break; 6577c478bd9Sstevel@tonic-gate } 6587c478bd9Sstevel@tonic-gate if (i < nzents) { 6597c478bd9Sstevel@tonic-gate free(name); 6607c478bd9Sstevel@tonic-gate continue; 6617c478bd9Sstevel@tonic-gate } 662108322fbScarlsonj if (lookup_zone_info(name, ZONE_ID_UNDEFINED, &zent) != Z_OK) { 6637c478bd9Sstevel@tonic-gate free(name); 6647c478bd9Sstevel@tonic-gate continue; 6657c478bd9Sstevel@tonic-gate } 6667c478bd9Sstevel@tonic-gate free(name); 6677c478bd9Sstevel@tonic-gate if (zent.zstate_num >= min_state) 6687c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 6697c478bd9Sstevel@tonic-gate } 6707c478bd9Sstevel@tonic-gate endzoneent(cookie); 671108322fbScarlsonj return (Z_OK); 6727c478bd9Sstevel@tonic-gate } 6737c478bd9Sstevel@tonic-gate 6747c478bd9Sstevel@tonic-gate static zone_entry_t * 6757c478bd9Sstevel@tonic-gate lookup_running_zone(char *str) 6767c478bd9Sstevel@tonic-gate { 6777c478bd9Sstevel@tonic-gate zoneid_t zoneid; 6787c478bd9Sstevel@tonic-gate char *cp; 6797c478bd9Sstevel@tonic-gate int i; 6807c478bd9Sstevel@tonic-gate 6817c478bd9Sstevel@tonic-gate if (fetch_zents() != Z_OK) 6827c478bd9Sstevel@tonic-gate return (NULL); 6837c478bd9Sstevel@tonic-gate 6847c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 6857c478bd9Sstevel@tonic-gate if (strcmp(str, zents[i].zname) == 0) 6867c478bd9Sstevel@tonic-gate return (&zents[i]); 6877c478bd9Sstevel@tonic-gate } 6887c478bd9Sstevel@tonic-gate errno = 0; 6897c478bd9Sstevel@tonic-gate zoneid = strtol(str, &cp, 0); 6907c478bd9Sstevel@tonic-gate if (zoneid < MIN_ZONEID || zoneid > MAX_ZONEID || 6917c478bd9Sstevel@tonic-gate errno != 0 || *cp != '\0') 6927c478bd9Sstevel@tonic-gate return (NULL); 6937c478bd9Sstevel@tonic-gate for (i = 0; i < nzents; i++) { 6947c478bd9Sstevel@tonic-gate if (zoneid == zents[i].zid) 6957c478bd9Sstevel@tonic-gate return (&zents[i]); 6967c478bd9Sstevel@tonic-gate } 6977c478bd9Sstevel@tonic-gate return (NULL); 6987c478bd9Sstevel@tonic-gate } 6997c478bd9Sstevel@tonic-gate 7007c478bd9Sstevel@tonic-gate /* 7017c478bd9Sstevel@tonic-gate * Check a bit in a mode_t: if on is B_TRUE, that bit should be on; if 7027c478bd9Sstevel@tonic-gate * B_FALSE, it should be off. Return B_TRUE if the mode is bad (incorrect). 7037c478bd9Sstevel@tonic-gate */ 7047c478bd9Sstevel@tonic-gate static boolean_t 7057c478bd9Sstevel@tonic-gate bad_mode_bit(mode_t mode, mode_t bit, boolean_t on, char *file) 7067c478bd9Sstevel@tonic-gate { 7077c478bd9Sstevel@tonic-gate char *str; 7087c478bd9Sstevel@tonic-gate 7097c478bd9Sstevel@tonic-gate assert(bit == S_IRUSR || bit == S_IWUSR || bit == S_IXUSR || 7107c478bd9Sstevel@tonic-gate bit == S_IRGRP || bit == S_IWGRP || bit == S_IXGRP || 7117c478bd9Sstevel@tonic-gate bit == S_IROTH || bit == S_IWOTH || bit == S_IXOTH); 7127c478bd9Sstevel@tonic-gate /* 7137c478bd9Sstevel@tonic-gate * TRANSLATION_NOTE 7147c478bd9Sstevel@tonic-gate * The strings below will be used as part of a larger message, 7157c478bd9Sstevel@tonic-gate * either: 7167c478bd9Sstevel@tonic-gate * (file name) must be (owner|group|world) (read|writ|execut)able 7177c478bd9Sstevel@tonic-gate * or 7187c478bd9Sstevel@tonic-gate * (file name) must not be (owner|group|world) (read|writ|execut)able 7197c478bd9Sstevel@tonic-gate */ 7207c478bd9Sstevel@tonic-gate switch (bit) { 7217c478bd9Sstevel@tonic-gate case S_IRUSR: 7227c478bd9Sstevel@tonic-gate str = gettext("owner readable"); 7237c478bd9Sstevel@tonic-gate break; 7247c478bd9Sstevel@tonic-gate case S_IWUSR: 7257c478bd9Sstevel@tonic-gate str = gettext("owner writable"); 7267c478bd9Sstevel@tonic-gate break; 7277c478bd9Sstevel@tonic-gate case S_IXUSR: 7287c478bd9Sstevel@tonic-gate str = gettext("owner executable"); 7297c478bd9Sstevel@tonic-gate break; 7307c478bd9Sstevel@tonic-gate case S_IRGRP: 7317c478bd9Sstevel@tonic-gate str = gettext("group readable"); 7327c478bd9Sstevel@tonic-gate break; 7337c478bd9Sstevel@tonic-gate case S_IWGRP: 7347c478bd9Sstevel@tonic-gate str = gettext("group writable"); 7357c478bd9Sstevel@tonic-gate break; 7367c478bd9Sstevel@tonic-gate case S_IXGRP: 7377c478bd9Sstevel@tonic-gate str = gettext("group executable"); 7387c478bd9Sstevel@tonic-gate break; 7397c478bd9Sstevel@tonic-gate case S_IROTH: 7407c478bd9Sstevel@tonic-gate str = gettext("world readable"); 7417c478bd9Sstevel@tonic-gate break; 7427c478bd9Sstevel@tonic-gate case S_IWOTH: 7437c478bd9Sstevel@tonic-gate str = gettext("world writable"); 7447c478bd9Sstevel@tonic-gate break; 7457c478bd9Sstevel@tonic-gate case S_IXOTH: 7467c478bd9Sstevel@tonic-gate str = gettext("world executable"); 7477c478bd9Sstevel@tonic-gate break; 7487c478bd9Sstevel@tonic-gate } 7497c478bd9Sstevel@tonic-gate if ((mode & bit) == (on ? 0 : bit)) { 7507c478bd9Sstevel@tonic-gate /* 7517c478bd9Sstevel@tonic-gate * TRANSLATION_NOTE 7527c478bd9Sstevel@tonic-gate * The first parameter below is a file name; the second 7537c478bd9Sstevel@tonic-gate * is one of the "(owner|group|world) (read|writ|execut)able" 7547c478bd9Sstevel@tonic-gate * strings from above. 7557c478bd9Sstevel@tonic-gate */ 7567c478bd9Sstevel@tonic-gate /* 7577c478bd9Sstevel@tonic-gate * The code below could be simplified but not in a way 7587c478bd9Sstevel@tonic-gate * that would easily translate to non-English locales. 7597c478bd9Sstevel@tonic-gate */ 7607c478bd9Sstevel@tonic-gate if (on) { 7617c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s must be %s.\n"), 7627c478bd9Sstevel@tonic-gate file, str); 7637c478bd9Sstevel@tonic-gate } else { 7647c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s must not be %s.\n"), 7657c478bd9Sstevel@tonic-gate file, str); 7667c478bd9Sstevel@tonic-gate } 7677c478bd9Sstevel@tonic-gate return (B_TRUE); 7687c478bd9Sstevel@tonic-gate } 7697c478bd9Sstevel@tonic-gate return (B_FALSE); 7707c478bd9Sstevel@tonic-gate } 7717c478bd9Sstevel@tonic-gate 7727c478bd9Sstevel@tonic-gate /* 7737c478bd9Sstevel@tonic-gate * We want to make sure that no zone has its zone path as a child node 7747c478bd9Sstevel@tonic-gate * (in the directory sense) of any other. We do that by comparing this 7757c478bd9Sstevel@tonic-gate * zone's path to the path of all other (non-global) zones. The comparison 7767c478bd9Sstevel@tonic-gate * in each case is simple: add '/' to the end of the path, then do a 7777c478bd9Sstevel@tonic-gate * strncmp() of the two paths, using the length of the shorter one. 7787c478bd9Sstevel@tonic-gate */ 7797c478bd9Sstevel@tonic-gate 7807c478bd9Sstevel@tonic-gate static int 7817c478bd9Sstevel@tonic-gate crosscheck_zonepaths(char *path) 7827c478bd9Sstevel@tonic-gate { 7837c478bd9Sstevel@tonic-gate char rpath[MAXPATHLEN]; /* resolved path */ 7847c478bd9Sstevel@tonic-gate char path_copy[MAXPATHLEN]; /* copy of original path */ 7857c478bd9Sstevel@tonic-gate char rpath_copy[MAXPATHLEN]; /* copy of original rpath */ 7867c478bd9Sstevel@tonic-gate struct zoneent *ze; 7877c478bd9Sstevel@tonic-gate int res, err; 7887c478bd9Sstevel@tonic-gate FILE *cookie; 7897c478bd9Sstevel@tonic-gate 7907c478bd9Sstevel@tonic-gate cookie = setzoneent(); 7917c478bd9Sstevel@tonic-gate while ((ze = getzoneent_private(cookie)) != NULL) { 7927c478bd9Sstevel@tonic-gate /* Skip zones which are not installed. */ 7937c478bd9Sstevel@tonic-gate if (ze->zone_state < ZONE_STATE_INSTALLED) { 7947c478bd9Sstevel@tonic-gate free(ze); 7957c478bd9Sstevel@tonic-gate continue; 7967c478bd9Sstevel@tonic-gate } 7977c478bd9Sstevel@tonic-gate /* Skip the global zone and the current target zone. */ 7987c478bd9Sstevel@tonic-gate if (strcmp(ze->zone_name, GLOBAL_ZONENAME) == 0 || 7997c478bd9Sstevel@tonic-gate strcmp(ze->zone_name, target_zone) == 0) { 8007c478bd9Sstevel@tonic-gate free(ze); 8017c478bd9Sstevel@tonic-gate continue; 8027c478bd9Sstevel@tonic-gate } 8037c478bd9Sstevel@tonic-gate if (strlen(ze->zone_path) == 0) { 8047c478bd9Sstevel@tonic-gate /* old index file without path, fall back */ 8057c478bd9Sstevel@tonic-gate if ((err = zone_get_zonepath(ze->zone_name, 8067c478bd9Sstevel@tonic-gate ze->zone_path, sizeof (ze->zone_path))) != Z_OK) { 8077c478bd9Sstevel@tonic-gate errno = err; 8087c478bd9Sstevel@tonic-gate zperror2(ze->zone_name, 8097c478bd9Sstevel@tonic-gate gettext("could not get zone path")); 8107c478bd9Sstevel@tonic-gate free(ze); 8117c478bd9Sstevel@tonic-gate continue; 8127c478bd9Sstevel@tonic-gate } 8137c478bd9Sstevel@tonic-gate } 814108322fbScarlsonj (void) snprintf(path_copy, sizeof (path_copy), "%s%s", 815108322fbScarlsonj zonecfg_get_root(), ze->zone_path); 816108322fbScarlsonj res = resolvepath(path_copy, rpath, sizeof (rpath)); 8177c478bd9Sstevel@tonic-gate if (res == -1) { 8187c478bd9Sstevel@tonic-gate if (errno != ENOENT) { 819108322fbScarlsonj zperror(path_copy, B_FALSE); 8207c478bd9Sstevel@tonic-gate free(ze); 8217c478bd9Sstevel@tonic-gate return (Z_ERR); 8227c478bd9Sstevel@tonic-gate } 8237c478bd9Sstevel@tonic-gate (void) printf(gettext("WARNING: zone %s is installed, " 8247c478bd9Sstevel@tonic-gate "but its %s %s does not exist.\n"), ze->zone_name, 825108322fbScarlsonj "zonepath", path_copy); 8267c478bd9Sstevel@tonic-gate free(ze); 8277c478bd9Sstevel@tonic-gate continue; 8287c478bd9Sstevel@tonic-gate } 8297c478bd9Sstevel@tonic-gate rpath[res] = '\0'; 8307c478bd9Sstevel@tonic-gate (void) snprintf(path_copy, sizeof (path_copy), "%s/", path); 8317c478bd9Sstevel@tonic-gate (void) snprintf(rpath_copy, sizeof (rpath_copy), "%s/", rpath); 8327c478bd9Sstevel@tonic-gate if (strncmp(path_copy, rpath_copy, 8337c478bd9Sstevel@tonic-gate min(strlen(path_copy), strlen(rpath_copy))) == 0) { 8345ee84fbdSgjelinek /* 8355ee84fbdSgjelinek * TRANSLATION_NOTE 8365ee84fbdSgjelinek * zonepath is a literal that should not be translated. 8375ee84fbdSgjelinek */ 8387c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s zonepath (%s) and " 8397c478bd9Sstevel@tonic-gate "%s zonepath (%s) overlap.\n"), 8407c478bd9Sstevel@tonic-gate target_zone, path, ze->zone_name, rpath); 8417c478bd9Sstevel@tonic-gate free(ze); 8427c478bd9Sstevel@tonic-gate return (Z_ERR); 8437c478bd9Sstevel@tonic-gate } 8447c478bd9Sstevel@tonic-gate free(ze); 8457c478bd9Sstevel@tonic-gate } 8467c478bd9Sstevel@tonic-gate endzoneent(cookie); 8477c478bd9Sstevel@tonic-gate return (Z_OK); 8487c478bd9Sstevel@tonic-gate } 8497c478bd9Sstevel@tonic-gate 8507c478bd9Sstevel@tonic-gate static int 8517c478bd9Sstevel@tonic-gate validate_zonepath(char *path, int cmd_num) 8527c478bd9Sstevel@tonic-gate { 8537c478bd9Sstevel@tonic-gate int res; /* result of last library/system call */ 8547c478bd9Sstevel@tonic-gate boolean_t err = B_FALSE; /* have we run into an error? */ 8557c478bd9Sstevel@tonic-gate struct stat stbuf; 8563f2f09c1Sdp struct statvfs64 vfsbuf; 8577c478bd9Sstevel@tonic-gate char rpath[MAXPATHLEN]; /* resolved path */ 8587c478bd9Sstevel@tonic-gate char ppath[MAXPATHLEN]; /* parent path */ 8597c478bd9Sstevel@tonic-gate char rppath[MAXPATHLEN]; /* resolved parent path */ 8607c478bd9Sstevel@tonic-gate char rootpath[MAXPATHLEN]; /* root path */ 8617c478bd9Sstevel@tonic-gate zone_state_t state; 8627c478bd9Sstevel@tonic-gate 8637c478bd9Sstevel@tonic-gate if (path[0] != '/') { 8647c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 8657c478bd9Sstevel@tonic-gate gettext("%s is not an absolute path.\n"), path); 8667c478bd9Sstevel@tonic-gate return (Z_ERR); 8677c478bd9Sstevel@tonic-gate } 8687c478bd9Sstevel@tonic-gate if ((res = resolvepath(path, rpath, sizeof (rpath))) == -1) { 8697c478bd9Sstevel@tonic-gate if ((errno != ENOENT) || 870865e09a4Sgjelinek (cmd_num != CMD_VERIFY && cmd_num != CMD_INSTALL && 871865e09a4Sgjelinek cmd_num != CMD_CLONE && cmd_num != CMD_MOVE)) { 8727c478bd9Sstevel@tonic-gate zperror(path, B_FALSE); 8737c478bd9Sstevel@tonic-gate return (Z_ERR); 8747c478bd9Sstevel@tonic-gate } 8757c478bd9Sstevel@tonic-gate if (cmd_num == CMD_VERIFY) { 8765ee84fbdSgjelinek /* 8775ee84fbdSgjelinek * TRANSLATION_NOTE 8785ee84fbdSgjelinek * zoneadm is a literal that should not be translated. 8795ee84fbdSgjelinek */ 8807c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("WARNING: %s does not " 8815ee84fbdSgjelinek "exist, so it could not be verified.\nWhen " 8825ee84fbdSgjelinek "'zoneadm %s' is run, '%s' will try to create\n%s, " 8835ee84fbdSgjelinek "and '%s' will be tried again,\nbut the '%s' may " 8845ee84fbdSgjelinek "fail if:\nthe parent directory of %s is group- or " 8855ee84fbdSgjelinek "other-writable\nor\n%s overlaps with any other " 8867c478bd9Sstevel@tonic-gate "installed zones.\n"), path, 8877c478bd9Sstevel@tonic-gate cmd_to_str(CMD_INSTALL), cmd_to_str(CMD_INSTALL), 8887c478bd9Sstevel@tonic-gate path, cmd_to_str(CMD_VERIFY), 8897c478bd9Sstevel@tonic-gate cmd_to_str(CMD_VERIFY), path, path); 8907c478bd9Sstevel@tonic-gate return (Z_OK); 8917c478bd9Sstevel@tonic-gate } 8927c478bd9Sstevel@tonic-gate /* 8937c478bd9Sstevel@tonic-gate * The zonepath is supposed to be mode 700 but its 8947c478bd9Sstevel@tonic-gate * parent(s) 755. So use 755 on the mkdirp() then 8957c478bd9Sstevel@tonic-gate * chmod() the zonepath itself to 700. 8967c478bd9Sstevel@tonic-gate */ 8977c478bd9Sstevel@tonic-gate if (mkdirp(path, DEFAULT_DIR_MODE) < 0) { 8987c478bd9Sstevel@tonic-gate zperror(path, B_FALSE); 8997c478bd9Sstevel@tonic-gate return (Z_ERR); 9007c478bd9Sstevel@tonic-gate } 9017c478bd9Sstevel@tonic-gate /* 9027c478bd9Sstevel@tonic-gate * If the chmod() fails, report the error, but might 9037c478bd9Sstevel@tonic-gate * as well continue the verify procedure. 9047c478bd9Sstevel@tonic-gate */ 9057c478bd9Sstevel@tonic-gate if (chmod(path, S_IRWXU) != 0) 9067c478bd9Sstevel@tonic-gate zperror(path, B_FALSE); 9077c478bd9Sstevel@tonic-gate /* 9087c478bd9Sstevel@tonic-gate * Since the mkdir() succeeded, we should not have to 9097c478bd9Sstevel@tonic-gate * worry about a subsequent ENOENT, thus this should 9107c478bd9Sstevel@tonic-gate * only recurse once. 9117c478bd9Sstevel@tonic-gate */ 912865e09a4Sgjelinek return (validate_zonepath(path, cmd_num)); 9137c478bd9Sstevel@tonic-gate } 9147c478bd9Sstevel@tonic-gate rpath[res] = '\0'; 9157c478bd9Sstevel@tonic-gate if (strcmp(path, rpath) != 0) { 9167c478bd9Sstevel@tonic-gate errno = Z_RESOLVED_PATH; 9177c478bd9Sstevel@tonic-gate zperror(path, B_TRUE); 9187c478bd9Sstevel@tonic-gate return (Z_ERR); 9197c478bd9Sstevel@tonic-gate } 9207c478bd9Sstevel@tonic-gate if ((res = stat(rpath, &stbuf)) != 0) { 9217c478bd9Sstevel@tonic-gate zperror(rpath, B_FALSE); 9227c478bd9Sstevel@tonic-gate return (Z_ERR); 9237c478bd9Sstevel@tonic-gate } 9247c478bd9Sstevel@tonic-gate if (!S_ISDIR(stbuf.st_mode)) { 9257c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not a directory.\n"), 9267c478bd9Sstevel@tonic-gate rpath); 9277c478bd9Sstevel@tonic-gate return (Z_ERR); 9287c478bd9Sstevel@tonic-gate } 9297c478bd9Sstevel@tonic-gate if ((strcmp(stbuf.st_fstype, MNTTYPE_TMPFS) == 0) || 9307c478bd9Sstevel@tonic-gate (strcmp(stbuf.st_fstype, MNTTYPE_XMEMFS) == 0)) { 9317c478bd9Sstevel@tonic-gate (void) printf(gettext("WARNING: %s is on a temporary " 9320b5de56dSgjelinek "file system.\n"), rpath); 9337c478bd9Sstevel@tonic-gate } 9347c478bd9Sstevel@tonic-gate if (crosscheck_zonepaths(rpath) != Z_OK) 9357c478bd9Sstevel@tonic-gate return (Z_ERR); 9367c478bd9Sstevel@tonic-gate /* 9377c478bd9Sstevel@tonic-gate * Try to collect and report as many minor errors as possible 9387c478bd9Sstevel@tonic-gate * before returning, so the user can learn everything that needs 9397c478bd9Sstevel@tonic-gate * to be fixed up front. 9407c478bd9Sstevel@tonic-gate */ 9417c478bd9Sstevel@tonic-gate if (stbuf.st_uid != 0) { 9427c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not owned by root.\n"), 9437c478bd9Sstevel@tonic-gate rpath); 9447c478bd9Sstevel@tonic-gate err = B_TRUE; 9457c478bd9Sstevel@tonic-gate } 9467c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IRUSR, B_TRUE, rpath); 9477c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWUSR, B_TRUE, rpath); 9487c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXUSR, B_TRUE, rpath); 9497c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IRGRP, B_FALSE, rpath); 9507c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWGRP, B_FALSE, rpath); 9517c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXGRP, B_FALSE, rpath); 9527c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IROTH, B_FALSE, rpath); 9537c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWOTH, B_FALSE, rpath); 9547c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXOTH, B_FALSE, rpath); 9557c478bd9Sstevel@tonic-gate 9567c478bd9Sstevel@tonic-gate (void) snprintf(ppath, sizeof (ppath), "%s/..", path); 9577c478bd9Sstevel@tonic-gate if ((res = resolvepath(ppath, rppath, sizeof (rppath))) == -1) { 9587c478bd9Sstevel@tonic-gate zperror(ppath, B_FALSE); 9597c478bd9Sstevel@tonic-gate return (Z_ERR); 9607c478bd9Sstevel@tonic-gate } 9617c478bd9Sstevel@tonic-gate rppath[res] = '\0'; 9627c478bd9Sstevel@tonic-gate if ((res = stat(rppath, &stbuf)) != 0) { 9637c478bd9Sstevel@tonic-gate zperror(rppath, B_FALSE); 9647c478bd9Sstevel@tonic-gate return (Z_ERR); 9657c478bd9Sstevel@tonic-gate } 9667c478bd9Sstevel@tonic-gate /* theoretically impossible */ 9677c478bd9Sstevel@tonic-gate if (!S_ISDIR(stbuf.st_mode)) { 9687c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not a directory.\n"), 9697c478bd9Sstevel@tonic-gate rppath); 9707c478bd9Sstevel@tonic-gate return (Z_ERR); 9717c478bd9Sstevel@tonic-gate } 9727c478bd9Sstevel@tonic-gate if (stbuf.st_uid != 0) { 9737c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is not owned by root.\n"), 9747c478bd9Sstevel@tonic-gate rppath); 9757c478bd9Sstevel@tonic-gate err = B_TRUE; 9767c478bd9Sstevel@tonic-gate } 9777c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IRUSR, B_TRUE, rppath); 9787c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWUSR, B_TRUE, rppath); 9797c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IXUSR, B_TRUE, rppath); 9807c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWGRP, B_FALSE, rppath); 9817c478bd9Sstevel@tonic-gate err |= bad_mode_bit(stbuf.st_mode, S_IWOTH, B_FALSE, rppath); 9827c478bd9Sstevel@tonic-gate if (strcmp(rpath, rppath) == 0) { 9837c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("%s is its own parent.\n"), 9847c478bd9Sstevel@tonic-gate rppath); 9857c478bd9Sstevel@tonic-gate err = B_TRUE; 9867c478bd9Sstevel@tonic-gate } 9877c478bd9Sstevel@tonic-gate 9883f2f09c1Sdp if (statvfs64(rpath, &vfsbuf) != 0) { 9897c478bd9Sstevel@tonic-gate zperror(rpath, B_FALSE); 9907c478bd9Sstevel@tonic-gate return (Z_ERR); 9917c478bd9Sstevel@tonic-gate } 992b5abaf04Sgjelinek if (strcmp(vfsbuf.f_basetype, MNTTYPE_NFS) == 0) { 9935ee84fbdSgjelinek /* 9945ee84fbdSgjelinek * TRANSLATION_NOTE 9955ee84fbdSgjelinek * Zonepath and NFS are literals that should not be translated. 9965ee84fbdSgjelinek */ 9975ee84fbdSgjelinek (void) fprintf(stderr, gettext("Zonepath %s is on an NFS " 9980b5de56dSgjelinek "mounted file system.\n" 9990b5de56dSgjelinek "\tA local file system must be used.\n"), rpath); 1000b5abaf04Sgjelinek return (Z_ERR); 1001b5abaf04Sgjelinek } 1002b5abaf04Sgjelinek if (vfsbuf.f_flag & ST_NOSUID) { 10035ee84fbdSgjelinek /* 10045ee84fbdSgjelinek * TRANSLATION_NOTE 10055ee84fbdSgjelinek * Zonepath and nosuid are literals that should not be 10065ee84fbdSgjelinek * translated. 10075ee84fbdSgjelinek */ 1008b5abaf04Sgjelinek (void) fprintf(stderr, gettext("Zonepath %s is on a nosuid " 10090b5de56dSgjelinek "file system.\n"), rpath); 10107c478bd9Sstevel@tonic-gate return (Z_ERR); 10117c478bd9Sstevel@tonic-gate } 10127c478bd9Sstevel@tonic-gate 10137c478bd9Sstevel@tonic-gate if ((res = zone_get_state(target_zone, &state)) != Z_OK) { 10147c478bd9Sstevel@tonic-gate errno = res; 10157c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get state")); 10167c478bd9Sstevel@tonic-gate return (Z_ERR); 10177c478bd9Sstevel@tonic-gate } 10187c478bd9Sstevel@tonic-gate /* 10197c478bd9Sstevel@tonic-gate * The existence of the root path is only bad in the configured state, 10207c478bd9Sstevel@tonic-gate * as it is *supposed* to be there at the installed and later states. 1021ee519a1fSgjelinek * However, the root path is expected to be there if the zone is 1022ee519a1fSgjelinek * detached. 10237c478bd9Sstevel@tonic-gate * State/command mismatches are caught earlier in verify_details(). 10247c478bd9Sstevel@tonic-gate */ 1025ee519a1fSgjelinek if (state == ZONE_STATE_CONFIGURED && cmd_num != CMD_ATTACH) { 10267c478bd9Sstevel@tonic-gate if (snprintf(rootpath, sizeof (rootpath), "%s/root", rpath) >= 10277c478bd9Sstevel@tonic-gate sizeof (rootpath)) { 10285ee84fbdSgjelinek /* 10295ee84fbdSgjelinek * TRANSLATION_NOTE 10305ee84fbdSgjelinek * Zonepath is a literal that should not be translated. 10315ee84fbdSgjelinek */ 10327c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 10337c478bd9Sstevel@tonic-gate gettext("Zonepath %s is too long.\n"), rpath); 10347c478bd9Sstevel@tonic-gate return (Z_ERR); 10357c478bd9Sstevel@tonic-gate } 10367c478bd9Sstevel@tonic-gate if ((res = stat(rootpath, &stbuf)) == 0) { 1037ee519a1fSgjelinek if (zonecfg_detached(rpath)) 1038ee519a1fSgjelinek (void) fprintf(stderr, 1039ee519a1fSgjelinek gettext("Cannot %s detached " 1040ee519a1fSgjelinek "zone.\nUse attach or remove %s " 1041ee519a1fSgjelinek "directory.\n"), cmd_to_str(cmd_num), 1042ee519a1fSgjelinek rpath); 1043ee519a1fSgjelinek else 1044ee519a1fSgjelinek (void) fprintf(stderr, 1045ee519a1fSgjelinek gettext("Rootpath %s exists; " 1046ee519a1fSgjelinek "remove or move aside prior to %s.\n"), 1047ee519a1fSgjelinek rootpath, cmd_to_str(cmd_num)); 10487c478bd9Sstevel@tonic-gate return (Z_ERR); 10497c478bd9Sstevel@tonic-gate } 10507c478bd9Sstevel@tonic-gate } 10517c478bd9Sstevel@tonic-gate 10527c478bd9Sstevel@tonic-gate return (err ? Z_ERR : Z_OK); 10537c478bd9Sstevel@tonic-gate } 10547c478bd9Sstevel@tonic-gate 10559acbbeafSnn35248 /* 10569acbbeafSnn35248 * The following two routines implement a simple locking mechanism to 10579acbbeafSnn35248 * ensure that only one instance of zoneadm at a time is able to manipulate 10589acbbeafSnn35248 * a given zone. The lock is built on top of an fcntl(2) lock of 10599acbbeafSnn35248 * [<altroot>]/var/run/zones/<zonename>.zoneadm.lock. If a zoneadm instance 10609acbbeafSnn35248 * can grab that lock, it is allowed to manipulate the zone. 10619acbbeafSnn35248 * 10629acbbeafSnn35248 * Since zoneadm may call external applications which in turn invoke 10639acbbeafSnn35248 * zoneadm again, we introduce the notion of "lock inheritance". Any 10649acbbeafSnn35248 * instance of zoneadm that has another instance in its ancestry is assumed 10659acbbeafSnn35248 * to be acting on behalf of the original zoneadm, and is thus allowed to 10669acbbeafSnn35248 * manipulate its zone. 10679acbbeafSnn35248 * 10689acbbeafSnn35248 * This inheritance is implemented via the _ZONEADM_LOCK_HELD environment 10699acbbeafSnn35248 * variable. When zoneadm is granted a lock on its zone, this environment 10709acbbeafSnn35248 * variable is set to 1. When it releases the lock, the variable is set to 10719acbbeafSnn35248 * 0. Since a child process inherits its parent's environment, checking 10729acbbeafSnn35248 * the state of this variable indicates whether or not any ancestor owns 10739acbbeafSnn35248 * the lock. 10749acbbeafSnn35248 */ 10757c478bd9Sstevel@tonic-gate static void 10767c478bd9Sstevel@tonic-gate release_lock_file(int lockfd) 10777c478bd9Sstevel@tonic-gate { 10789acbbeafSnn35248 /* 10799acbbeafSnn35248 * If we are cleaning up from a failed attempt to lock the zone for 10809acbbeafSnn35248 * the first time, we might have a zone_lock_cnt of 0. In that 10819acbbeafSnn35248 * error case, we don't want to do anything but close the lock 10829acbbeafSnn35248 * file. 10839acbbeafSnn35248 */ 10849acbbeafSnn35248 assert(zone_lock_cnt >= 0); 10859acbbeafSnn35248 if (zone_lock_cnt > 0) { 10869acbbeafSnn35248 assert(getenv(LOCK_ENV_VAR) != NULL); 10879acbbeafSnn35248 assert(atoi(getenv(LOCK_ENV_VAR)) == 1); 10889acbbeafSnn35248 if (--zone_lock_cnt > 0) { 10899acbbeafSnn35248 assert(lockfd == -1); 10909acbbeafSnn35248 return; 10919acbbeafSnn35248 } 10929acbbeafSnn35248 if (putenv(zoneadm_lock_not_held) != 0) { 10939acbbeafSnn35248 zperror(target_zone, B_TRUE); 10949acbbeafSnn35248 exit(Z_ERR); 10959acbbeafSnn35248 } 10969acbbeafSnn35248 } 10979acbbeafSnn35248 assert(lockfd >= 0); 10987c478bd9Sstevel@tonic-gate (void) close(lockfd); 10997c478bd9Sstevel@tonic-gate } 11007c478bd9Sstevel@tonic-gate 11017c478bd9Sstevel@tonic-gate static int 11027c478bd9Sstevel@tonic-gate grab_lock_file(const char *zone_name, int *lockfd) 11037c478bd9Sstevel@tonic-gate { 11047c478bd9Sstevel@tonic-gate char pathbuf[PATH_MAX]; 11057c478bd9Sstevel@tonic-gate struct flock flock; 11067c478bd9Sstevel@tonic-gate 11079acbbeafSnn35248 /* 11089acbbeafSnn35248 * If we already have the lock, we can skip this expensive song 11099acbbeafSnn35248 * and dance. 11109acbbeafSnn35248 */ 11119acbbeafSnn35248 if (zone_lock_cnt > 0) { 11129acbbeafSnn35248 zone_lock_cnt++; 11139acbbeafSnn35248 *lockfd = -1; 11149acbbeafSnn35248 return (Z_OK); 11159acbbeafSnn35248 } 11169acbbeafSnn35248 assert(getenv(LOCK_ENV_VAR) != NULL); 11179acbbeafSnn35248 assert(atoi(getenv(LOCK_ENV_VAR)) == 0); 11189acbbeafSnn35248 1119108322fbScarlsonj if (snprintf(pathbuf, sizeof (pathbuf), "%s%s", zonecfg_get_root(), 1120108322fbScarlsonj ZONES_TMPDIR) >= sizeof (pathbuf)) { 1121108322fbScarlsonj zerror(gettext("alternate root path is too long")); 1122108322fbScarlsonj return (Z_ERR); 1123108322fbScarlsonj } 1124108322fbScarlsonj if (mkdir(pathbuf, S_IRWXU) < 0 && errno != EEXIST) { 1125108322fbScarlsonj zerror(gettext("could not mkdir %s: %s"), pathbuf, 11267c478bd9Sstevel@tonic-gate strerror(errno)); 11277c478bd9Sstevel@tonic-gate return (Z_ERR); 11287c478bd9Sstevel@tonic-gate } 1129108322fbScarlsonj (void) chmod(pathbuf, S_IRWXU); 11307c478bd9Sstevel@tonic-gate 11317c478bd9Sstevel@tonic-gate /* 11327c478bd9Sstevel@tonic-gate * One of these lock files is created for each zone (when needed). 11337c478bd9Sstevel@tonic-gate * The lock files are not cleaned up (except on system reboot), 11347c478bd9Sstevel@tonic-gate * but since there is only one per zone, there is no resource 11357c478bd9Sstevel@tonic-gate * starvation issue. 11367c478bd9Sstevel@tonic-gate */ 1137108322fbScarlsonj if (snprintf(pathbuf, sizeof (pathbuf), "%s%s/%s.zoneadm.lock", 1138108322fbScarlsonj zonecfg_get_root(), ZONES_TMPDIR, zone_name) >= sizeof (pathbuf)) { 1139108322fbScarlsonj zerror(gettext("alternate root path is too long")); 1140108322fbScarlsonj return (Z_ERR); 1141108322fbScarlsonj } 11427c478bd9Sstevel@tonic-gate if ((*lockfd = open(pathbuf, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR)) < 0) { 11437c478bd9Sstevel@tonic-gate zerror(gettext("could not open %s: %s"), pathbuf, 11447c478bd9Sstevel@tonic-gate strerror(errno)); 11457c478bd9Sstevel@tonic-gate return (Z_ERR); 11467c478bd9Sstevel@tonic-gate } 11477c478bd9Sstevel@tonic-gate /* 11487c478bd9Sstevel@tonic-gate * Lock the file to synchronize with other zoneadmds 11497c478bd9Sstevel@tonic-gate */ 11507c478bd9Sstevel@tonic-gate flock.l_type = F_WRLCK; 11517c478bd9Sstevel@tonic-gate flock.l_whence = SEEK_SET; 11527c478bd9Sstevel@tonic-gate flock.l_start = (off_t)0; 11537c478bd9Sstevel@tonic-gate flock.l_len = (off_t)0; 11549acbbeafSnn35248 if ((fcntl(*lockfd, F_SETLKW, &flock) < 0) || 11559acbbeafSnn35248 (putenv(zoneadm_lock_held) != 0)) { 11567c478bd9Sstevel@tonic-gate zerror(gettext("unable to lock %s: %s"), pathbuf, 11577c478bd9Sstevel@tonic-gate strerror(errno)); 11587c478bd9Sstevel@tonic-gate release_lock_file(*lockfd); 11597c478bd9Sstevel@tonic-gate return (Z_ERR); 11607c478bd9Sstevel@tonic-gate } 11619acbbeafSnn35248 zone_lock_cnt = 1; 11627c478bd9Sstevel@tonic-gate return (Z_OK); 11637c478bd9Sstevel@tonic-gate } 11647c478bd9Sstevel@tonic-gate 1165108322fbScarlsonj static boolean_t 11667c478bd9Sstevel@tonic-gate get_doorname(const char *zone_name, char *buffer) 11677c478bd9Sstevel@tonic-gate { 1168108322fbScarlsonj return (snprintf(buffer, PATH_MAX, "%s" ZONE_DOOR_PATH, 1169108322fbScarlsonj zonecfg_get_root(), zone_name) < PATH_MAX); 11707c478bd9Sstevel@tonic-gate } 11717c478bd9Sstevel@tonic-gate 11727c478bd9Sstevel@tonic-gate /* 11737c478bd9Sstevel@tonic-gate * system daemons are not audited. For the global zone, this occurs 11747c478bd9Sstevel@tonic-gate * "naturally" since init is started with the default audit 11757c478bd9Sstevel@tonic-gate * characteristics. Since zoneadmd is a system daemon and it starts 11767c478bd9Sstevel@tonic-gate * init for a zone, it is necessary to clear out the audit 11777c478bd9Sstevel@tonic-gate * characteristics inherited from whomever started zoneadmd. This is 11787c478bd9Sstevel@tonic-gate * indicated by the audit id, which is set from the ruid parameter of 11797c478bd9Sstevel@tonic-gate * adt_set_user(), below. 11807c478bd9Sstevel@tonic-gate */ 11817c478bd9Sstevel@tonic-gate 11827c478bd9Sstevel@tonic-gate static void 11837c478bd9Sstevel@tonic-gate prepare_audit_context() 11847c478bd9Sstevel@tonic-gate { 11857c478bd9Sstevel@tonic-gate adt_session_data_t *ah; 11867c478bd9Sstevel@tonic-gate char *failure = gettext("audit failure: %s"); 11877c478bd9Sstevel@tonic-gate 11887c478bd9Sstevel@tonic-gate if (adt_start_session(&ah, NULL, 0)) { 11897c478bd9Sstevel@tonic-gate zerror(failure, strerror(errno)); 11907c478bd9Sstevel@tonic-gate return; 11917c478bd9Sstevel@tonic-gate } 11927c478bd9Sstevel@tonic-gate if (adt_set_user(ah, ADT_NO_AUDIT, ADT_NO_AUDIT, 11937c478bd9Sstevel@tonic-gate ADT_NO_AUDIT, ADT_NO_AUDIT, NULL, ADT_NEW)) { 11947c478bd9Sstevel@tonic-gate zerror(failure, strerror(errno)); 11957c478bd9Sstevel@tonic-gate (void) adt_end_session(ah); 11967c478bd9Sstevel@tonic-gate return; 11977c478bd9Sstevel@tonic-gate } 11987c478bd9Sstevel@tonic-gate if (adt_set_proc(ah)) 11997c478bd9Sstevel@tonic-gate zerror(failure, strerror(errno)); 12007c478bd9Sstevel@tonic-gate 12017c478bd9Sstevel@tonic-gate (void) adt_end_session(ah); 12027c478bd9Sstevel@tonic-gate } 12037c478bd9Sstevel@tonic-gate 12047c478bd9Sstevel@tonic-gate static int 12057c478bd9Sstevel@tonic-gate start_zoneadmd(const char *zone_name) 12067c478bd9Sstevel@tonic-gate { 12077c478bd9Sstevel@tonic-gate char doorpath[PATH_MAX]; 12087c478bd9Sstevel@tonic-gate pid_t child_pid; 12097c478bd9Sstevel@tonic-gate int error = Z_ERR; 12107c478bd9Sstevel@tonic-gate int doorfd, lockfd; 12117c478bd9Sstevel@tonic-gate struct door_info info; 12127c478bd9Sstevel@tonic-gate 1213108322fbScarlsonj if (!get_doorname(zone_name, doorpath)) 1214108322fbScarlsonj return (Z_ERR); 12157c478bd9Sstevel@tonic-gate 12167c478bd9Sstevel@tonic-gate if (grab_lock_file(zone_name, &lockfd) != Z_OK) 12177c478bd9Sstevel@tonic-gate return (Z_ERR); 12187c478bd9Sstevel@tonic-gate 12197c478bd9Sstevel@tonic-gate /* 12207c478bd9Sstevel@tonic-gate * Now that we have the lock, re-confirm that the daemon is 12217c478bd9Sstevel@tonic-gate * *not* up and working fine. If it is still down, we have a green 12227c478bd9Sstevel@tonic-gate * light to start it. 12237c478bd9Sstevel@tonic-gate */ 12247c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 12257c478bd9Sstevel@tonic-gate if (errno != ENOENT) { 12267c478bd9Sstevel@tonic-gate zperror(doorpath, B_FALSE); 12277c478bd9Sstevel@tonic-gate goto out; 12287c478bd9Sstevel@tonic-gate } 12297c478bd9Sstevel@tonic-gate } else { 12307c478bd9Sstevel@tonic-gate if (door_info(doorfd, &info) == 0 && 12317c478bd9Sstevel@tonic-gate ((info.di_attributes & DOOR_REVOKED) == 0)) { 12327c478bd9Sstevel@tonic-gate error = Z_OK; 12337c478bd9Sstevel@tonic-gate (void) close(doorfd); 12347c478bd9Sstevel@tonic-gate goto out; 12357c478bd9Sstevel@tonic-gate } 12367c478bd9Sstevel@tonic-gate (void) close(doorfd); 12377c478bd9Sstevel@tonic-gate } 12387c478bd9Sstevel@tonic-gate 12397c478bd9Sstevel@tonic-gate if ((child_pid = fork()) == -1) { 12407c478bd9Sstevel@tonic-gate zperror(gettext("could not fork"), B_FALSE); 12417c478bd9Sstevel@tonic-gate goto out; 12427c478bd9Sstevel@tonic-gate } else if (child_pid == 0) { 1243108322fbScarlsonj const char *argv[6], **ap; 12447c478bd9Sstevel@tonic-gate 1245108322fbScarlsonj /* child process */ 12467c478bd9Sstevel@tonic-gate prepare_audit_context(); 12477c478bd9Sstevel@tonic-gate 1248108322fbScarlsonj ap = argv; 1249108322fbScarlsonj *ap++ = "zoneadmd"; 1250108322fbScarlsonj *ap++ = "-z"; 1251108322fbScarlsonj *ap++ = zone_name; 1252108322fbScarlsonj if (zonecfg_in_alt_root()) { 1253108322fbScarlsonj *ap++ = "-R"; 1254108322fbScarlsonj *ap++ = zonecfg_get_root(); 1255108322fbScarlsonj } 1256108322fbScarlsonj *ap = NULL; 1257108322fbScarlsonj 1258108322fbScarlsonj (void) execv("/usr/lib/zones/zoneadmd", (char * const *)argv); 12595ee84fbdSgjelinek /* 12605ee84fbdSgjelinek * TRANSLATION_NOTE 12615ee84fbdSgjelinek * zoneadmd is a literal that should not be translated. 12625ee84fbdSgjelinek */ 12637c478bd9Sstevel@tonic-gate zperror(gettext("could not exec zoneadmd"), B_FALSE); 12647c478bd9Sstevel@tonic-gate _exit(Z_ERR); 12657c478bd9Sstevel@tonic-gate } else { 12667c478bd9Sstevel@tonic-gate /* parent process */ 12677c478bd9Sstevel@tonic-gate pid_t retval; 12687c478bd9Sstevel@tonic-gate int pstatus = 0; 12697c478bd9Sstevel@tonic-gate 12707c478bd9Sstevel@tonic-gate do { 12717c478bd9Sstevel@tonic-gate retval = waitpid(child_pid, &pstatus, 0); 12727c478bd9Sstevel@tonic-gate } while (retval != child_pid); 12737c478bd9Sstevel@tonic-gate if (WIFSIGNALED(pstatus) || (WIFEXITED(pstatus) && 12747c478bd9Sstevel@tonic-gate WEXITSTATUS(pstatus) != 0)) { 12757c478bd9Sstevel@tonic-gate zerror(gettext("could not start %s"), "zoneadmd"); 12767c478bd9Sstevel@tonic-gate goto out; 12777c478bd9Sstevel@tonic-gate } 12787c478bd9Sstevel@tonic-gate } 12797c478bd9Sstevel@tonic-gate error = Z_OK; 12807c478bd9Sstevel@tonic-gate out: 12817c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 12827c478bd9Sstevel@tonic-gate return (error); 12837c478bd9Sstevel@tonic-gate } 12847c478bd9Sstevel@tonic-gate 12857c478bd9Sstevel@tonic-gate static int 12867c478bd9Sstevel@tonic-gate ping_zoneadmd(const char *zone_name) 12877c478bd9Sstevel@tonic-gate { 12887c478bd9Sstevel@tonic-gate char doorpath[PATH_MAX]; 12897c478bd9Sstevel@tonic-gate int doorfd; 12907c478bd9Sstevel@tonic-gate struct door_info info; 12917c478bd9Sstevel@tonic-gate 1292108322fbScarlsonj if (!get_doorname(zone_name, doorpath)) 1293108322fbScarlsonj return (Z_ERR); 12947c478bd9Sstevel@tonic-gate 12957c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 12967c478bd9Sstevel@tonic-gate return (Z_ERR); 12977c478bd9Sstevel@tonic-gate } 12987c478bd9Sstevel@tonic-gate if (door_info(doorfd, &info) == 0 && 12997c478bd9Sstevel@tonic-gate ((info.di_attributes & DOOR_REVOKED) == 0)) { 13007c478bd9Sstevel@tonic-gate (void) close(doorfd); 13017c478bd9Sstevel@tonic-gate return (Z_OK); 13027c478bd9Sstevel@tonic-gate } 13037c478bd9Sstevel@tonic-gate (void) close(doorfd); 13047c478bd9Sstevel@tonic-gate return (Z_ERR); 13057c478bd9Sstevel@tonic-gate } 13067c478bd9Sstevel@tonic-gate 13077c478bd9Sstevel@tonic-gate static int 13087c478bd9Sstevel@tonic-gate call_zoneadmd(const char *zone_name, zone_cmd_arg_t *arg) 13097c478bd9Sstevel@tonic-gate { 13107c478bd9Sstevel@tonic-gate char doorpath[PATH_MAX]; 13117c478bd9Sstevel@tonic-gate int doorfd, result; 13127c478bd9Sstevel@tonic-gate door_arg_t darg; 13137c478bd9Sstevel@tonic-gate 13147c478bd9Sstevel@tonic-gate zoneid_t zoneid; 13157c478bd9Sstevel@tonic-gate uint64_t uniqid = 0; 13167c478bd9Sstevel@tonic-gate 13177c478bd9Sstevel@tonic-gate zone_cmd_rval_t *rvalp; 13187c478bd9Sstevel@tonic-gate size_t rlen; 13197c478bd9Sstevel@tonic-gate char *cp, *errbuf; 13207c478bd9Sstevel@tonic-gate 13217c478bd9Sstevel@tonic-gate rlen = getpagesize(); 13227c478bd9Sstevel@tonic-gate if ((rvalp = malloc(rlen)) == NULL) { 13237c478bd9Sstevel@tonic-gate zerror(gettext("failed to allocate %lu bytes: %s"), rlen, 13247c478bd9Sstevel@tonic-gate strerror(errno)); 13257c478bd9Sstevel@tonic-gate return (-1); 13267c478bd9Sstevel@tonic-gate } 13277c478bd9Sstevel@tonic-gate 13287c478bd9Sstevel@tonic-gate if ((zoneid = getzoneidbyname(zone_name)) != ZONE_ID_UNDEFINED) { 13297c478bd9Sstevel@tonic-gate (void) zone_getattr(zoneid, ZONE_ATTR_UNIQID, &uniqid, 13307c478bd9Sstevel@tonic-gate sizeof (uniqid)); 13317c478bd9Sstevel@tonic-gate } 13327c478bd9Sstevel@tonic-gate arg->uniqid = uniqid; 13337c478bd9Sstevel@tonic-gate (void) strlcpy(arg->locale, locale, sizeof (arg->locale)); 1334108322fbScarlsonj if (!get_doorname(zone_name, doorpath)) { 1335108322fbScarlsonj zerror(gettext("alternate root path is too long")); 1336108322fbScarlsonj free(rvalp); 1337108322fbScarlsonj return (-1); 1338108322fbScarlsonj } 13397c478bd9Sstevel@tonic-gate 13407c478bd9Sstevel@tonic-gate /* 13417c478bd9Sstevel@tonic-gate * Loop trying to start zoneadmd; if something goes seriously 13427c478bd9Sstevel@tonic-gate * wrong we break out and fail. 13437c478bd9Sstevel@tonic-gate */ 13447c478bd9Sstevel@tonic-gate for (;;) { 13457c478bd9Sstevel@tonic-gate if (start_zoneadmd(zone_name) != Z_OK) 13467c478bd9Sstevel@tonic-gate break; 13477c478bd9Sstevel@tonic-gate 13487c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 13497c478bd9Sstevel@tonic-gate zperror(gettext("failed to open zone door"), B_FALSE); 13507c478bd9Sstevel@tonic-gate break; 13517c478bd9Sstevel@tonic-gate } 13527c478bd9Sstevel@tonic-gate 13537c478bd9Sstevel@tonic-gate darg.data_ptr = (char *)arg; 13547c478bd9Sstevel@tonic-gate darg.data_size = sizeof (*arg); 13557c478bd9Sstevel@tonic-gate darg.desc_ptr = NULL; 13567c478bd9Sstevel@tonic-gate darg.desc_num = 0; 13577c478bd9Sstevel@tonic-gate darg.rbuf = (char *)rvalp; 13587c478bd9Sstevel@tonic-gate darg.rsize = rlen; 13597c478bd9Sstevel@tonic-gate if (door_call(doorfd, &darg) != 0) { 13607c478bd9Sstevel@tonic-gate (void) close(doorfd); 13617c478bd9Sstevel@tonic-gate /* 13627c478bd9Sstevel@tonic-gate * We'll get EBADF if the door has been revoked. 13637c478bd9Sstevel@tonic-gate */ 13647c478bd9Sstevel@tonic-gate if (errno != EBADF) { 13657c478bd9Sstevel@tonic-gate zperror(gettext("door_call failed"), B_FALSE); 13667c478bd9Sstevel@tonic-gate break; 13677c478bd9Sstevel@tonic-gate } 13687c478bd9Sstevel@tonic-gate continue; /* take another lap */ 13697c478bd9Sstevel@tonic-gate } 13707c478bd9Sstevel@tonic-gate (void) close(doorfd); 13717c478bd9Sstevel@tonic-gate 13727c478bd9Sstevel@tonic-gate if (darg.data_size == 0) { 13737c478bd9Sstevel@tonic-gate /* Door server is going away; kick it again. */ 13747c478bd9Sstevel@tonic-gate continue; 13757c478bd9Sstevel@tonic-gate } 13767c478bd9Sstevel@tonic-gate 13777c478bd9Sstevel@tonic-gate errbuf = rvalp->errbuf; 13787c478bd9Sstevel@tonic-gate while (*errbuf != '\0') { 13797c478bd9Sstevel@tonic-gate /* 13807c478bd9Sstevel@tonic-gate * Remove any newlines since zerror() 13817c478bd9Sstevel@tonic-gate * will append one automatically. 13827c478bd9Sstevel@tonic-gate */ 13837c478bd9Sstevel@tonic-gate cp = strchr(errbuf, '\n'); 13847c478bd9Sstevel@tonic-gate if (cp != NULL) 13857c478bd9Sstevel@tonic-gate *cp = '\0'; 13867c478bd9Sstevel@tonic-gate zerror("%s", errbuf); 13877c478bd9Sstevel@tonic-gate if (cp == NULL) 13887c478bd9Sstevel@tonic-gate break; 13897c478bd9Sstevel@tonic-gate errbuf = cp + 1; 13907c478bd9Sstevel@tonic-gate } 13917c478bd9Sstevel@tonic-gate result = rvalp->rval == 0 ? 0 : -1; 13927c478bd9Sstevel@tonic-gate free(rvalp); 13937c478bd9Sstevel@tonic-gate return (result); 13947c478bd9Sstevel@tonic-gate } 13957c478bd9Sstevel@tonic-gate 13967c478bd9Sstevel@tonic-gate free(rvalp); 13977c478bd9Sstevel@tonic-gate return (-1); 13987c478bd9Sstevel@tonic-gate } 13997c478bd9Sstevel@tonic-gate 14007c478bd9Sstevel@tonic-gate static int 1401ce28b40eSzt129084 invoke_brand_handler(int cmd_num, char *argv[]) 1402ce28b40eSzt129084 { 1403ce28b40eSzt129084 zone_dochandle_t handle; 1404ce28b40eSzt129084 int err; 1405ce28b40eSzt129084 1406ce28b40eSzt129084 if ((handle = zonecfg_init_handle()) == NULL) { 1407ce28b40eSzt129084 zperror(cmd_to_str(cmd_num), B_TRUE); 1408ce28b40eSzt129084 return (Z_ERR); 1409ce28b40eSzt129084 } 1410ce28b40eSzt129084 if ((err = zonecfg_get_handle(target_zone, handle)) != Z_OK) { 1411ce28b40eSzt129084 errno = err; 1412ce28b40eSzt129084 zperror(cmd_to_str(cmd_num), B_TRUE); 1413ce28b40eSzt129084 zonecfg_fini_handle(handle); 1414ce28b40eSzt129084 return (Z_ERR); 1415ce28b40eSzt129084 } 1416ce28b40eSzt129084 if (verify_brand(handle, cmd_num, argv) != Z_OK) { 1417ce28b40eSzt129084 zonecfg_fini_handle(handle); 1418ce28b40eSzt129084 return (Z_ERR); 1419ce28b40eSzt129084 } 1420ce28b40eSzt129084 zonecfg_fini_handle(handle); 1421ce28b40eSzt129084 return (Z_OK); 1422ce28b40eSzt129084 } 1423ce28b40eSzt129084 1424ce28b40eSzt129084 static int 14257c478bd9Sstevel@tonic-gate ready_func(int argc, char *argv[]) 14267c478bd9Sstevel@tonic-gate { 14277c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 14287c478bd9Sstevel@tonic-gate int arg; 14297c478bd9Sstevel@tonic-gate 1430108322fbScarlsonj if (zonecfg_in_alt_root()) { 1431108322fbScarlsonj zerror(gettext("cannot ready zone in alternate root")); 1432108322fbScarlsonj return (Z_ERR); 1433108322fbScarlsonj } 1434108322fbScarlsonj 14357c478bd9Sstevel@tonic-gate optind = 0; 14367c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 14377c478bd9Sstevel@tonic-gate switch (arg) { 14387c478bd9Sstevel@tonic-gate case '?': 14397c478bd9Sstevel@tonic-gate sub_usage(SHELP_READY, CMD_READY); 14407c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 14417c478bd9Sstevel@tonic-gate default: 14427c478bd9Sstevel@tonic-gate sub_usage(SHELP_READY, CMD_READY); 14437c478bd9Sstevel@tonic-gate return (Z_USAGE); 14447c478bd9Sstevel@tonic-gate } 14457c478bd9Sstevel@tonic-gate } 14467c478bd9Sstevel@tonic-gate if (argc > optind) { 14477c478bd9Sstevel@tonic-gate sub_usage(SHELP_READY, CMD_READY); 14487c478bd9Sstevel@tonic-gate return (Z_USAGE); 14497c478bd9Sstevel@tonic-gate } 14509acbbeafSnn35248 if (sanity_check(target_zone, CMD_READY, B_FALSE, B_FALSE, B_FALSE) 14519acbbeafSnn35248 != Z_OK) 14527c478bd9Sstevel@tonic-gate return (Z_ERR); 1453ce28b40eSzt129084 if (verify_details(CMD_READY, argv) != Z_OK) 14547c478bd9Sstevel@tonic-gate return (Z_ERR); 14557c478bd9Sstevel@tonic-gate 14567c478bd9Sstevel@tonic-gate zarg.cmd = Z_READY; 14577c478bd9Sstevel@tonic-gate if (call_zoneadmd(target_zone, &zarg) != 0) { 14587c478bd9Sstevel@tonic-gate zerror(gettext("call to %s failed"), "zoneadmd"); 14597c478bd9Sstevel@tonic-gate return (Z_ERR); 14607c478bd9Sstevel@tonic-gate } 14617c478bd9Sstevel@tonic-gate return (Z_OK); 14627c478bd9Sstevel@tonic-gate } 14637c478bd9Sstevel@tonic-gate 14647c478bd9Sstevel@tonic-gate static int 14657c478bd9Sstevel@tonic-gate boot_func(int argc, char *argv[]) 14667c478bd9Sstevel@tonic-gate { 14677c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 14689acbbeafSnn35248 boolean_t force = B_FALSE; 14697c478bd9Sstevel@tonic-gate int arg; 14707c478bd9Sstevel@tonic-gate 1471108322fbScarlsonj if (zonecfg_in_alt_root()) { 1472108322fbScarlsonj zerror(gettext("cannot boot zone in alternate root")); 1473108322fbScarlsonj return (Z_ERR); 1474108322fbScarlsonj } 1475108322fbScarlsonj 14767c478bd9Sstevel@tonic-gate zarg.bootbuf[0] = '\0'; 14777c478bd9Sstevel@tonic-gate 14787c478bd9Sstevel@tonic-gate /* 14793f2f09c1Sdp * The following getopt processes arguments to zone boot; that 14803f2f09c1Sdp * is to say, the [here] portion of the argument string: 14813f2f09c1Sdp * 14823f2f09c1Sdp * zoneadm -z myzone boot [here] -- -v -m verbose 14833f2f09c1Sdp * 14843f2f09c1Sdp * Where [here] can either be nothing, -? (in which case we bail 14859acbbeafSnn35248 * and print usage), -f (a private option to indicate that the 14869acbbeafSnn35248 * boot operation should be 'forced'), or -s. Support for -s is 14879acbbeafSnn35248 * vestigal and obsolete, but is retained because it was a 14889acbbeafSnn35248 * documented interface and there are known consumers including 14899acbbeafSnn35248 * admin/install; the proper way to specify boot arguments like -s 14909acbbeafSnn35248 * is: 14913f2f09c1Sdp * 14923f2f09c1Sdp * zoneadm -z myzone boot -- -s -v -m verbose. 14937c478bd9Sstevel@tonic-gate */ 14947c478bd9Sstevel@tonic-gate optind = 0; 14959acbbeafSnn35248 while ((arg = getopt(argc, argv, "?fs")) != EOF) { 14967c478bd9Sstevel@tonic-gate switch (arg) { 14977c478bd9Sstevel@tonic-gate case '?': 14987c478bd9Sstevel@tonic-gate sub_usage(SHELP_BOOT, CMD_BOOT); 14997c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 15007c478bd9Sstevel@tonic-gate case 's': 15017c478bd9Sstevel@tonic-gate (void) strlcpy(zarg.bootbuf, "-s", 15027c478bd9Sstevel@tonic-gate sizeof (zarg.bootbuf)); 15037c478bd9Sstevel@tonic-gate break; 15049acbbeafSnn35248 case 'f': 15059acbbeafSnn35248 force = B_TRUE; 15069acbbeafSnn35248 break; 15077c478bd9Sstevel@tonic-gate default: 15087c478bd9Sstevel@tonic-gate sub_usage(SHELP_BOOT, CMD_BOOT); 15097c478bd9Sstevel@tonic-gate return (Z_USAGE); 15107c478bd9Sstevel@tonic-gate } 15117c478bd9Sstevel@tonic-gate } 15123f2f09c1Sdp 15133f2f09c1Sdp for (; optind < argc; optind++) { 15143f2f09c1Sdp if (strlcat(zarg.bootbuf, argv[optind], 15153f2f09c1Sdp sizeof (zarg.bootbuf)) >= sizeof (zarg.bootbuf)) { 15163f2f09c1Sdp zerror(gettext("Boot argument list too long")); 15173f2f09c1Sdp return (Z_ERR); 15187c478bd9Sstevel@tonic-gate } 15193f2f09c1Sdp if (optind < argc - 1) 15203f2f09c1Sdp if (strlcat(zarg.bootbuf, " ", sizeof (zarg.bootbuf)) >= 15213f2f09c1Sdp sizeof (zarg.bootbuf)) { 15223f2f09c1Sdp zerror(gettext("Boot argument list too long")); 15233f2f09c1Sdp return (Z_ERR); 15243f2f09c1Sdp } 15253f2f09c1Sdp } 15269acbbeafSnn35248 if (sanity_check(target_zone, CMD_BOOT, B_FALSE, B_FALSE, force) 15279acbbeafSnn35248 != Z_OK) 15287c478bd9Sstevel@tonic-gate return (Z_ERR); 1529ce28b40eSzt129084 if (verify_details(CMD_BOOT, argv) != Z_OK) 15307c478bd9Sstevel@tonic-gate return (Z_ERR); 15319acbbeafSnn35248 zarg.cmd = force ? Z_FORCEBOOT : Z_BOOT; 15327c478bd9Sstevel@tonic-gate if (call_zoneadmd(target_zone, &zarg) != 0) { 15337c478bd9Sstevel@tonic-gate zerror(gettext("call to %s failed"), "zoneadmd"); 15347c478bd9Sstevel@tonic-gate return (Z_ERR); 15357c478bd9Sstevel@tonic-gate } 15360209230bSgjelinek 15377c478bd9Sstevel@tonic-gate return (Z_OK); 15387c478bd9Sstevel@tonic-gate } 15397c478bd9Sstevel@tonic-gate 15407c478bd9Sstevel@tonic-gate static void 15417c478bd9Sstevel@tonic-gate fake_up_local_zone(zoneid_t zid, zone_entry_t *zeptr) 15427c478bd9Sstevel@tonic-gate { 15437c478bd9Sstevel@tonic-gate ssize_t result; 1544555afedfScarlsonj uuid_t uuid; 1545555afedfScarlsonj FILE *fp; 1546555afedfScarlsonj 1547555afedfScarlsonj (void) memset(zeptr, 0, sizeof (*zeptr)); 15487c478bd9Sstevel@tonic-gate 15497c478bd9Sstevel@tonic-gate zeptr->zid = zid; 1550555afedfScarlsonj 15517c478bd9Sstevel@tonic-gate /* 15527c478bd9Sstevel@tonic-gate * Since we're looking up our own (non-global) zone name, 15537c478bd9Sstevel@tonic-gate * we can be assured that it will succeed. 15547c478bd9Sstevel@tonic-gate */ 15557c478bd9Sstevel@tonic-gate result = getzonenamebyid(zid, zeptr->zname, sizeof (zeptr->zname)); 15567c478bd9Sstevel@tonic-gate assert(result >= 0); 1557555afedfScarlsonj if (zonecfg_is_scratch(zeptr->zname) && 1558555afedfScarlsonj (fp = zonecfg_open_scratch("", B_FALSE)) != NULL) { 1559555afedfScarlsonj (void) zonecfg_reverse_scratch(fp, zeptr->zname, zeptr->zname, 1560555afedfScarlsonj sizeof (zeptr->zname), NULL, 0); 1561555afedfScarlsonj zonecfg_close_scratch(fp); 1562555afedfScarlsonj } 1563555afedfScarlsonj 1564555afedfScarlsonj if (is_system_labeled()) { 156545916cd2Sjpk (void) zone_getattr(zid, ZONE_ATTR_ROOT, zeptr->zroot, 156645916cd2Sjpk sizeof (zeptr->zroot)); 15679acbbeafSnn35248 (void) strlcpy(zeptr->zbrand, NATIVE_BRAND_NAME, 15689acbbeafSnn35248 sizeof (zeptr->zbrand)); 1569555afedfScarlsonj } else { 1570555afedfScarlsonj (void) strlcpy(zeptr->zroot, "/", sizeof (zeptr->zroot)); 15719acbbeafSnn35248 (void) zone_getattr(zid, ZONE_ATTR_BRAND, zeptr->zbrand, 15729acbbeafSnn35248 sizeof (zeptr->zbrand)); 157345916cd2Sjpk } 1574555afedfScarlsonj 15757c478bd9Sstevel@tonic-gate zeptr->zstate_str = "running"; 1576555afedfScarlsonj if (zonecfg_get_uuid(zeptr->zname, uuid) == Z_OK && 1577555afedfScarlsonj !uuid_is_null(uuid)) 1578555afedfScarlsonj uuid_unparse(uuid, zeptr->zuuid); 15797c478bd9Sstevel@tonic-gate } 15807c478bd9Sstevel@tonic-gate 15817c478bd9Sstevel@tonic-gate static int 15827c478bd9Sstevel@tonic-gate list_func(int argc, char *argv[]) 15837c478bd9Sstevel@tonic-gate { 15847c478bd9Sstevel@tonic-gate zone_entry_t *zentp, zent; 1585108322fbScarlsonj int arg, retv; 15867c478bd9Sstevel@tonic-gate boolean_t output = B_FALSE, verbose = B_FALSE, parsable = B_FALSE; 15877c478bd9Sstevel@tonic-gate zone_state_t min_state = ZONE_STATE_RUNNING; 15887c478bd9Sstevel@tonic-gate zoneid_t zone_id = getzoneid(); 15897c478bd9Sstevel@tonic-gate 15907c478bd9Sstevel@tonic-gate if (target_zone == NULL) { 15917c478bd9Sstevel@tonic-gate /* all zones: default view to running but allow override */ 15927c478bd9Sstevel@tonic-gate optind = 0; 15937c478bd9Sstevel@tonic-gate while ((arg = getopt(argc, argv, "?cipv")) != EOF) { 15947c478bd9Sstevel@tonic-gate switch (arg) { 15957c478bd9Sstevel@tonic-gate case '?': 15967c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 15977c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 1598475d78a4Sjonb /* 1599475d78a4Sjonb * The 'i' and 'c' options are not mutually 1600475d78a4Sjonb * exclusive so if 'c' is given, then min_state 1601475d78a4Sjonb * is set to 0 (ZONE_STATE_CONFIGURED) which is 1602475d78a4Sjonb * the lowest possible state. If 'i' is given, 1603475d78a4Sjonb * then min_state is set to be the lowest state 1604475d78a4Sjonb * so far. 1605475d78a4Sjonb */ 16067c478bd9Sstevel@tonic-gate case 'c': 16077c478bd9Sstevel@tonic-gate min_state = ZONE_STATE_CONFIGURED; 16087c478bd9Sstevel@tonic-gate break; 16097c478bd9Sstevel@tonic-gate case 'i': 1610475d78a4Sjonb min_state = min(ZONE_STATE_INSTALLED, 1611475d78a4Sjonb min_state); 1612475d78a4Sjonb 16137c478bd9Sstevel@tonic-gate break; 16147c478bd9Sstevel@tonic-gate case 'p': 16157c478bd9Sstevel@tonic-gate parsable = B_TRUE; 16167c478bd9Sstevel@tonic-gate break; 16177c478bd9Sstevel@tonic-gate case 'v': 16187c478bd9Sstevel@tonic-gate verbose = B_TRUE; 16197c478bd9Sstevel@tonic-gate break; 16207c478bd9Sstevel@tonic-gate default: 16217c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 16227c478bd9Sstevel@tonic-gate return (Z_USAGE); 16237c478bd9Sstevel@tonic-gate } 16247c478bd9Sstevel@tonic-gate } 16257c478bd9Sstevel@tonic-gate if (parsable && verbose) { 16267c478bd9Sstevel@tonic-gate zerror(gettext("%s -p and -v are mutually exclusive."), 16277c478bd9Sstevel@tonic-gate cmd_to_str(CMD_LIST)); 16287c478bd9Sstevel@tonic-gate return (Z_ERR); 16297c478bd9Sstevel@tonic-gate } 163045916cd2Sjpk if (zone_id == GLOBAL_ZONEID || is_system_labeled()) { 1631108322fbScarlsonj retv = zone_print_list(min_state, verbose, parsable); 16327c478bd9Sstevel@tonic-gate } else { 16337c478bd9Sstevel@tonic-gate fake_up_local_zone(zone_id, &zent); 16349acbbeafSnn35248 retv = Z_OK; 16357c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 16367c478bd9Sstevel@tonic-gate } 1637108322fbScarlsonj return (retv); 16387c478bd9Sstevel@tonic-gate } 16397c478bd9Sstevel@tonic-gate 16407c478bd9Sstevel@tonic-gate /* 16417c478bd9Sstevel@tonic-gate * Specific target zone: disallow -i/-c suboptions. 16427c478bd9Sstevel@tonic-gate */ 16437c478bd9Sstevel@tonic-gate optind = 0; 16447c478bd9Sstevel@tonic-gate while ((arg = getopt(argc, argv, "?pv")) != EOF) { 16457c478bd9Sstevel@tonic-gate switch (arg) { 16467c478bd9Sstevel@tonic-gate case '?': 16477c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 16487c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 16497c478bd9Sstevel@tonic-gate case 'p': 16507c478bd9Sstevel@tonic-gate parsable = B_TRUE; 16517c478bd9Sstevel@tonic-gate break; 16527c478bd9Sstevel@tonic-gate case 'v': 16537c478bd9Sstevel@tonic-gate verbose = B_TRUE; 16547c478bd9Sstevel@tonic-gate break; 16557c478bd9Sstevel@tonic-gate default: 16567c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 16577c478bd9Sstevel@tonic-gate return (Z_USAGE); 16587c478bd9Sstevel@tonic-gate } 16597c478bd9Sstevel@tonic-gate } 16607c478bd9Sstevel@tonic-gate if (parsable && verbose) { 16617c478bd9Sstevel@tonic-gate zerror(gettext("%s -p and -v are mutually exclusive."), 16627c478bd9Sstevel@tonic-gate cmd_to_str(CMD_LIST)); 16637c478bd9Sstevel@tonic-gate return (Z_ERR); 16647c478bd9Sstevel@tonic-gate } 16657c478bd9Sstevel@tonic-gate if (argc > optind) { 16667c478bd9Sstevel@tonic-gate sub_usage(SHELP_LIST, CMD_LIST); 16677c478bd9Sstevel@tonic-gate return (Z_USAGE); 16687c478bd9Sstevel@tonic-gate } 16697c478bd9Sstevel@tonic-gate if (zone_id != GLOBAL_ZONEID) { 16707c478bd9Sstevel@tonic-gate fake_up_local_zone(zone_id, &zent); 16717c478bd9Sstevel@tonic-gate /* 16727c478bd9Sstevel@tonic-gate * main() will issue a Z_NO_ZONE error if it cannot get an 16737c478bd9Sstevel@tonic-gate * id for target_zone, which in a non-global zone should 16747c478bd9Sstevel@tonic-gate * happen for any zone name except `zonename`. Thus we 16757c478bd9Sstevel@tonic-gate * assert() that here but don't otherwise check. 16767c478bd9Sstevel@tonic-gate */ 16777c478bd9Sstevel@tonic-gate assert(strcmp(zent.zname, target_zone) == 0); 16787c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 16797c478bd9Sstevel@tonic-gate output = B_TRUE; 16807c478bd9Sstevel@tonic-gate } else if ((zentp = lookup_running_zone(target_zone)) != NULL) { 16817c478bd9Sstevel@tonic-gate zone_print(zentp, verbose, parsable); 16827c478bd9Sstevel@tonic-gate output = B_TRUE; 1683108322fbScarlsonj } else if (lookup_zone_info(target_zone, ZONE_ID_UNDEFINED, 1684108322fbScarlsonj &zent) == Z_OK) { 16857c478bd9Sstevel@tonic-gate zone_print(&zent, verbose, parsable); 16867c478bd9Sstevel@tonic-gate output = B_TRUE; 16877c478bd9Sstevel@tonic-gate } 1688ce28b40eSzt129084 1689ce28b40eSzt129084 /* 1690ce28b40eSzt129084 * Invoke brand-specific handler. Note that we do this 1691ce28b40eSzt129084 * only if we're in the global zone, and target_zone is specified. 1692ce28b40eSzt129084 */ 1693ce28b40eSzt129084 if (zone_id == GLOBAL_ZONEID && target_zone != NULL) 1694ce28b40eSzt129084 if (invoke_brand_handler(CMD_LIST, argv) != Z_OK) 1695ce28b40eSzt129084 return (Z_ERR); 1696ce28b40eSzt129084 16977c478bd9Sstevel@tonic-gate return (output ? Z_OK : Z_ERR); 16987c478bd9Sstevel@tonic-gate } 16997c478bd9Sstevel@tonic-gate 17007c478bd9Sstevel@tonic-gate static void 17017c478bd9Sstevel@tonic-gate sigterm(int sig) 17027c478bd9Sstevel@tonic-gate { 17037c478bd9Sstevel@tonic-gate /* 17047c478bd9Sstevel@tonic-gate * Ignore SIG{INT,TERM}, so we don't end up in an infinite loop, 17057c478bd9Sstevel@tonic-gate * then propagate the signal to our process group. 17067c478bd9Sstevel@tonic-gate */ 17079acbbeafSnn35248 assert(sig == SIGINT || sig == SIGTERM); 17087c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, SIG_IGN); 17097c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, SIG_IGN); 17107c478bd9Sstevel@tonic-gate (void) kill(0, sig); 17117c478bd9Sstevel@tonic-gate child_killed = B_TRUE; 17127c478bd9Sstevel@tonic-gate } 17137c478bd9Sstevel@tonic-gate 17147c478bd9Sstevel@tonic-gate static int 17157c478bd9Sstevel@tonic-gate do_subproc(char *cmdbuf) 17167c478bd9Sstevel@tonic-gate { 17177c478bd9Sstevel@tonic-gate char inbuf[1024]; /* arbitrary large amount */ 17187c478bd9Sstevel@tonic-gate FILE *file; 17197c478bd9Sstevel@tonic-gate 17209acbbeafSnn35248 do_subproc_cnt++; 17217c478bd9Sstevel@tonic-gate child_killed = B_FALSE; 17227c478bd9Sstevel@tonic-gate /* 17237c478bd9Sstevel@tonic-gate * We use popen(3c) to launch child processes for [un]install; 17247c478bd9Sstevel@tonic-gate * this library call does not return a PID, so we have to kill 17257c478bd9Sstevel@tonic-gate * the whole process group. To avoid killing our parent, we 17267c478bd9Sstevel@tonic-gate * become a process group leader here. But doing so can wreak 17277c478bd9Sstevel@tonic-gate * havoc with reading from stdin when launched by a non-job-control 17287c478bd9Sstevel@tonic-gate * shell, so we close stdin and reopen it as /dev/null first. 17297c478bd9Sstevel@tonic-gate */ 17307c478bd9Sstevel@tonic-gate (void) close(STDIN_FILENO); 17319acbbeafSnn35248 (void) openat(STDIN_FILENO, "/dev/null", O_RDONLY); 17329acbbeafSnn35248 if (!zoneadm_is_nested) 17337c478bd9Sstevel@tonic-gate (void) setpgid(0, 0); 17347c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, sigterm); 17357c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, sigterm); 17367c478bd9Sstevel@tonic-gate file = popen(cmdbuf, "r"); 17377c478bd9Sstevel@tonic-gate for (;;) { 17387c478bd9Sstevel@tonic-gate if (child_killed || fgets(inbuf, sizeof (inbuf), file) == NULL) 17397c478bd9Sstevel@tonic-gate break; 17407c478bd9Sstevel@tonic-gate (void) fputs(inbuf, stdout); 17417c478bd9Sstevel@tonic-gate } 17427c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, SIG_DFL); 17437c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, SIG_DFL); 17447c478bd9Sstevel@tonic-gate return (pclose(file)); 17457c478bd9Sstevel@tonic-gate } 17467c478bd9Sstevel@tonic-gate 17477c478bd9Sstevel@tonic-gate static int 17489acbbeafSnn35248 do_subproc_interactive(char *cmdbuf) 17499acbbeafSnn35248 { 17509acbbeafSnn35248 void (*saveint)(int); 17519acbbeafSnn35248 void (*saveterm)(int); 17529acbbeafSnn35248 void (*savequit)(int); 17539acbbeafSnn35248 void (*savehup)(int); 17549acbbeafSnn35248 int pid, child, status; 17559acbbeafSnn35248 17569acbbeafSnn35248 /* 17579acbbeafSnn35248 * do_subproc() links stdin to /dev/null, which would break any 17589acbbeafSnn35248 * interactive subprocess we try to launch here. Similarly, we 17599acbbeafSnn35248 * can't have been launched as a subprocess ourselves. 17609acbbeafSnn35248 */ 17619acbbeafSnn35248 assert(do_subproc_cnt == 0 && !zoneadm_is_nested); 17629acbbeafSnn35248 17639acbbeafSnn35248 if ((child = vfork()) == 0) { 17649acbbeafSnn35248 (void) execl("/bin/sh", "sh", "-c", cmdbuf, (char *)NULL); 17659acbbeafSnn35248 } 17669acbbeafSnn35248 17679acbbeafSnn35248 if (child == -1) 17689acbbeafSnn35248 return (-1); 17699acbbeafSnn35248 17709acbbeafSnn35248 saveint = sigset(SIGINT, SIG_IGN); 17719acbbeafSnn35248 saveterm = sigset(SIGTERM, SIG_IGN); 17729acbbeafSnn35248 savequit = sigset(SIGQUIT, SIG_IGN); 17739acbbeafSnn35248 savehup = sigset(SIGHUP, SIG_IGN); 17749acbbeafSnn35248 17759acbbeafSnn35248 while ((pid = waitpid(child, &status, 0)) != child && pid != -1) 17769acbbeafSnn35248 ; 17779acbbeafSnn35248 17789acbbeafSnn35248 (void) sigset(SIGINT, saveint); 17799acbbeafSnn35248 (void) sigset(SIGTERM, saveterm); 17809acbbeafSnn35248 (void) sigset(SIGQUIT, savequit); 17819acbbeafSnn35248 (void) sigset(SIGHUP, savehup); 17829acbbeafSnn35248 17839acbbeafSnn35248 return (pid == -1 ? -1 : status); 17849acbbeafSnn35248 } 17859acbbeafSnn35248 17869acbbeafSnn35248 static int 17879acbbeafSnn35248 subproc_status(const char *cmd, int status, boolean_t verbose_failure) 17887c478bd9Sstevel@tonic-gate { 17897c478bd9Sstevel@tonic-gate if (WIFEXITED(status)) { 17907c478bd9Sstevel@tonic-gate int exit_code = WEXITSTATUS(status); 17917c478bd9Sstevel@tonic-gate 17929acbbeafSnn35248 if ((verbose_failure) && (exit_code != ZONE_SUBPROC_OK)) 17937c478bd9Sstevel@tonic-gate zerror(gettext("'%s' failed with exit code %d."), cmd, 17947c478bd9Sstevel@tonic-gate exit_code); 17959acbbeafSnn35248 17969acbbeafSnn35248 return (exit_code); 17977c478bd9Sstevel@tonic-gate } else if (WIFSIGNALED(status)) { 17987c478bd9Sstevel@tonic-gate int signal = WTERMSIG(status); 17997c478bd9Sstevel@tonic-gate char sigstr[SIG2STR_MAX]; 18007c478bd9Sstevel@tonic-gate 18017c478bd9Sstevel@tonic-gate if (sig2str(signal, sigstr) == 0) { 18027c478bd9Sstevel@tonic-gate zerror(gettext("'%s' terminated by signal SIG%s."), cmd, 18037c478bd9Sstevel@tonic-gate sigstr); 18047c478bd9Sstevel@tonic-gate } else { 18057c478bd9Sstevel@tonic-gate zerror(gettext("'%s' terminated by an unknown signal."), 18067c478bd9Sstevel@tonic-gate cmd); 18077c478bd9Sstevel@tonic-gate } 18087c478bd9Sstevel@tonic-gate } else { 18097c478bd9Sstevel@tonic-gate zerror(gettext("'%s' failed for unknown reasons."), cmd); 18107c478bd9Sstevel@tonic-gate } 18119acbbeafSnn35248 18129acbbeafSnn35248 /* 18139acbbeafSnn35248 * Assume a subprocess that died due to a signal or an unknown error 18149acbbeafSnn35248 * should be considered an exit code of ZONE_SUBPROC_FATAL, as the 18159acbbeafSnn35248 * user will likely need to do some manual cleanup. 18169acbbeafSnn35248 */ 18179acbbeafSnn35248 return (ZONE_SUBPROC_FATAL); 18187c478bd9Sstevel@tonic-gate } 18197c478bd9Sstevel@tonic-gate 18207c478bd9Sstevel@tonic-gate /* 18217c478bd9Sstevel@tonic-gate * Various sanity checks; make sure: 18227c478bd9Sstevel@tonic-gate * 1. We're in the global zone. 18237c478bd9Sstevel@tonic-gate * 2. The calling user has sufficient privilege. 18247c478bd9Sstevel@tonic-gate * 3. The target zone is neither the global zone nor anything starting with 18257c478bd9Sstevel@tonic-gate * "SUNW". 18267c478bd9Sstevel@tonic-gate * 4a. If we're looking for a 'not running' (i.e., configured or installed) 18277c478bd9Sstevel@tonic-gate * zone, the name service knows about it. 18287c478bd9Sstevel@tonic-gate * 4b. For some operations which expect a zone not to be running, that it is 18297c478bd9Sstevel@tonic-gate * not already running (or ready). 18307c478bd9Sstevel@tonic-gate */ 18317c478bd9Sstevel@tonic-gate static int 18327c478bd9Sstevel@tonic-gate sanity_check(char *zone, int cmd_num, boolean_t running, 18339acbbeafSnn35248 boolean_t unsafe_when_running, boolean_t force) 18347c478bd9Sstevel@tonic-gate { 18357c478bd9Sstevel@tonic-gate zone_entry_t *zent; 18367c478bd9Sstevel@tonic-gate priv_set_t *privset; 18379acbbeafSnn35248 zone_state_t state, min_state; 1838108322fbScarlsonj char kernzone[ZONENAME_MAX]; 1839108322fbScarlsonj FILE *fp; 18407c478bd9Sstevel@tonic-gate 18417c478bd9Sstevel@tonic-gate if (getzoneid() != GLOBAL_ZONEID) { 1842ffbafc53Scomay switch (cmd_num) { 1843ffbafc53Scomay case CMD_HALT: 1844ffbafc53Scomay zerror(gettext("use %s to %s this zone."), "halt(1M)", 18457c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 1846ffbafc53Scomay break; 1847ffbafc53Scomay case CMD_REBOOT: 1848ffbafc53Scomay zerror(gettext("use %s to %s this zone."), 1849ffbafc53Scomay "reboot(1M)", cmd_to_str(cmd_num)); 1850ffbafc53Scomay break; 1851ffbafc53Scomay default: 1852ffbafc53Scomay zerror(gettext("must be in the global zone to %s a " 1853ffbafc53Scomay "zone."), cmd_to_str(cmd_num)); 1854ffbafc53Scomay break; 1855ffbafc53Scomay } 18567c478bd9Sstevel@tonic-gate return (Z_ERR); 18577c478bd9Sstevel@tonic-gate } 18587c478bd9Sstevel@tonic-gate 18597c478bd9Sstevel@tonic-gate if ((privset = priv_allocset()) == NULL) { 18607c478bd9Sstevel@tonic-gate zerror(gettext("%s failed"), "priv_allocset"); 18617c478bd9Sstevel@tonic-gate return (Z_ERR); 18627c478bd9Sstevel@tonic-gate } 18637c478bd9Sstevel@tonic-gate 18647c478bd9Sstevel@tonic-gate if (getppriv(PRIV_EFFECTIVE, privset) != 0) { 18657c478bd9Sstevel@tonic-gate zerror(gettext("%s failed"), "getppriv"); 18667c478bd9Sstevel@tonic-gate priv_freeset(privset); 18677c478bd9Sstevel@tonic-gate return (Z_ERR); 18687c478bd9Sstevel@tonic-gate } 18697c478bd9Sstevel@tonic-gate 18707c478bd9Sstevel@tonic-gate if (priv_isfullset(privset) == B_FALSE) { 18717c478bd9Sstevel@tonic-gate zerror(gettext("only a privileged user may %s a zone."), 18727c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 18737c478bd9Sstevel@tonic-gate priv_freeset(privset); 18747c478bd9Sstevel@tonic-gate return (Z_ERR); 18757c478bd9Sstevel@tonic-gate } 18767c478bd9Sstevel@tonic-gate priv_freeset(privset); 18777c478bd9Sstevel@tonic-gate 18787c478bd9Sstevel@tonic-gate if (zone == NULL) { 18797c478bd9Sstevel@tonic-gate zerror(gettext("no zone specified")); 18807c478bd9Sstevel@tonic-gate return (Z_ERR); 18817c478bd9Sstevel@tonic-gate } 18827c478bd9Sstevel@tonic-gate 18837c478bd9Sstevel@tonic-gate if (strcmp(zone, GLOBAL_ZONENAME) == 0) { 18847c478bd9Sstevel@tonic-gate zerror(gettext("%s operation is invalid for the global zone."), 18857c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 18867c478bd9Sstevel@tonic-gate return (Z_ERR); 18877c478bd9Sstevel@tonic-gate } 18887c478bd9Sstevel@tonic-gate 18897c478bd9Sstevel@tonic-gate if (strncmp(zone, "SUNW", 4) == 0) { 18907c478bd9Sstevel@tonic-gate zerror(gettext("%s operation is invalid for zones starting " 18917c478bd9Sstevel@tonic-gate "with SUNW."), cmd_to_str(cmd_num)); 18927c478bd9Sstevel@tonic-gate return (Z_ERR); 18937c478bd9Sstevel@tonic-gate } 18947c478bd9Sstevel@tonic-gate 18959acbbeafSnn35248 if (!is_native_zone && cmd_num == CMD_MOUNT) { 18969acbbeafSnn35248 zerror(gettext("%s operation is invalid for branded zones."), 18979acbbeafSnn35248 cmd_to_str(cmd_num)); 18989acbbeafSnn35248 return (Z_ERR); 18999acbbeafSnn35248 } 19009acbbeafSnn35248 1901108322fbScarlsonj if (!zonecfg_in_alt_root()) { 1902108322fbScarlsonj zent = lookup_running_zone(zone); 1903108322fbScarlsonj } else if ((fp = zonecfg_open_scratch("", B_FALSE)) == NULL) { 1904108322fbScarlsonj zent = NULL; 1905108322fbScarlsonj } else { 1906108322fbScarlsonj if (zonecfg_find_scratch(fp, zone, zonecfg_get_root(), 1907108322fbScarlsonj kernzone, sizeof (kernzone)) == 0) 1908108322fbScarlsonj zent = lookup_running_zone(kernzone); 1909108322fbScarlsonj else 1910108322fbScarlsonj zent = NULL; 1911108322fbScarlsonj zonecfg_close_scratch(fp); 1912108322fbScarlsonj } 1913108322fbScarlsonj 19147c478bd9Sstevel@tonic-gate /* 19157c478bd9Sstevel@tonic-gate * Look up from the kernel for 'running' zones. 19167c478bd9Sstevel@tonic-gate */ 19179acbbeafSnn35248 if (running && !force) { 19187c478bd9Sstevel@tonic-gate if (zent == NULL) { 19197c478bd9Sstevel@tonic-gate zerror(gettext("not running")); 19207c478bd9Sstevel@tonic-gate return (Z_ERR); 19217c478bd9Sstevel@tonic-gate } 19227c478bd9Sstevel@tonic-gate } else { 19237c478bd9Sstevel@tonic-gate int err; 19247c478bd9Sstevel@tonic-gate 19257c478bd9Sstevel@tonic-gate if (unsafe_when_running && zent != NULL) { 19267c478bd9Sstevel@tonic-gate /* check whether the zone is ready or running */ 19277c478bd9Sstevel@tonic-gate if ((err = zone_get_state(zent->zname, 19287c478bd9Sstevel@tonic-gate &zent->zstate_num)) != Z_OK) { 19297c478bd9Sstevel@tonic-gate errno = err; 19307c478bd9Sstevel@tonic-gate zperror2(zent->zname, 19317c478bd9Sstevel@tonic-gate gettext("could not get state")); 19327c478bd9Sstevel@tonic-gate /* can't tell, so hedge */ 19337c478bd9Sstevel@tonic-gate zent->zstate_str = "ready/running"; 19347c478bd9Sstevel@tonic-gate } else { 19357c478bd9Sstevel@tonic-gate zent->zstate_str = 19367c478bd9Sstevel@tonic-gate zone_state_str(zent->zstate_num); 19377c478bd9Sstevel@tonic-gate } 19387c478bd9Sstevel@tonic-gate zerror(gettext("%s operation is invalid for %s zones."), 19397c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num), zent->zstate_str); 19407c478bd9Sstevel@tonic-gate return (Z_ERR); 19417c478bd9Sstevel@tonic-gate } 19427c478bd9Sstevel@tonic-gate if ((err = zone_get_state(zone, &state)) != Z_OK) { 19437c478bd9Sstevel@tonic-gate errno = err; 19447c478bd9Sstevel@tonic-gate zperror2(zone, gettext("could not get state")); 19457c478bd9Sstevel@tonic-gate return (Z_ERR); 19467c478bd9Sstevel@tonic-gate } 19477c478bd9Sstevel@tonic-gate switch (cmd_num) { 19487c478bd9Sstevel@tonic-gate case CMD_UNINSTALL: 19497c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_CONFIGURED) { 19507c478bd9Sstevel@tonic-gate zerror(gettext("is already in state '%s'."), 19517c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_CONFIGURED)); 19527c478bd9Sstevel@tonic-gate return (Z_ERR); 19537c478bd9Sstevel@tonic-gate } 19547c478bd9Sstevel@tonic-gate break; 1955ee519a1fSgjelinek case CMD_ATTACH: 1956865e09a4Sgjelinek case CMD_CLONE: 19577c478bd9Sstevel@tonic-gate case CMD_INSTALL: 19587c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_INSTALLED) { 19597c478bd9Sstevel@tonic-gate zerror(gettext("is already %s."), 19607c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INSTALLED)); 19617c478bd9Sstevel@tonic-gate return (Z_ERR); 19627c478bd9Sstevel@tonic-gate } else if (state == ZONE_STATE_INCOMPLETE) { 19637c478bd9Sstevel@tonic-gate zerror(gettext("zone is %s; %s required."), 19647c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INCOMPLETE), 19657c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL)); 19667c478bd9Sstevel@tonic-gate return (Z_ERR); 19677c478bd9Sstevel@tonic-gate } 19687c478bd9Sstevel@tonic-gate break; 1969ee519a1fSgjelinek case CMD_DETACH: 1970865e09a4Sgjelinek case CMD_MOVE: 19717c478bd9Sstevel@tonic-gate case CMD_READY: 19727c478bd9Sstevel@tonic-gate case CMD_BOOT: 1973108322fbScarlsonj case CMD_MOUNT: 1974555afedfScarlsonj case CMD_MARK: 19759acbbeafSnn35248 if ((cmd_num == CMD_BOOT || cmd_num == CMD_MOUNT) && 19769acbbeafSnn35248 force) 19779acbbeafSnn35248 min_state = ZONE_STATE_INCOMPLETE; 19789acbbeafSnn35248 else 19799acbbeafSnn35248 min_state = ZONE_STATE_INSTALLED; 19809acbbeafSnn35248 19819acbbeafSnn35248 if (force && cmd_num == CMD_BOOT && is_native_zone) { 19829acbbeafSnn35248 zerror(gettext("Only branded zones may be " 19839acbbeafSnn35248 "force-booted.")); 19849acbbeafSnn35248 return (Z_ERR); 19859acbbeafSnn35248 } 19869acbbeafSnn35248 19879acbbeafSnn35248 if (state < min_state) { 19887c478bd9Sstevel@tonic-gate zerror(gettext("must be %s before %s."), 19899acbbeafSnn35248 zone_state_str(min_state), 19907c478bd9Sstevel@tonic-gate cmd_to_str(cmd_num)); 19917c478bd9Sstevel@tonic-gate return (Z_ERR); 19927c478bd9Sstevel@tonic-gate } 19937c478bd9Sstevel@tonic-gate break; 19947c478bd9Sstevel@tonic-gate case CMD_VERIFY: 19957c478bd9Sstevel@tonic-gate if (state == ZONE_STATE_INCOMPLETE) { 19967c478bd9Sstevel@tonic-gate zerror(gettext("zone is %s; %s required."), 19977c478bd9Sstevel@tonic-gate zone_state_str(ZONE_STATE_INCOMPLETE), 19987c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL)); 19997c478bd9Sstevel@tonic-gate return (Z_ERR); 20007c478bd9Sstevel@tonic-gate } 20017c478bd9Sstevel@tonic-gate break; 2002108322fbScarlsonj case CMD_UNMOUNT: 2003108322fbScarlsonj if (state != ZONE_STATE_MOUNTED) { 2004108322fbScarlsonj zerror(gettext("must be %s before %s."), 2005108322fbScarlsonj zone_state_str(ZONE_STATE_MOUNTED), 2006108322fbScarlsonj cmd_to_str(cmd_num)); 2007108322fbScarlsonj return (Z_ERR); 2008108322fbScarlsonj } 2009108322fbScarlsonj break; 20107c478bd9Sstevel@tonic-gate } 20117c478bd9Sstevel@tonic-gate } 20127c478bd9Sstevel@tonic-gate return (Z_OK); 20137c478bd9Sstevel@tonic-gate } 20147c478bd9Sstevel@tonic-gate 20157c478bd9Sstevel@tonic-gate static int 20167c478bd9Sstevel@tonic-gate halt_func(int argc, char *argv[]) 20177c478bd9Sstevel@tonic-gate { 20187c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 20197c478bd9Sstevel@tonic-gate int arg; 20207c478bd9Sstevel@tonic-gate 2021108322fbScarlsonj if (zonecfg_in_alt_root()) { 2022108322fbScarlsonj zerror(gettext("cannot halt zone in alternate root")); 2023108322fbScarlsonj return (Z_ERR); 2024108322fbScarlsonj } 2025108322fbScarlsonj 20267c478bd9Sstevel@tonic-gate optind = 0; 20277c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 20287c478bd9Sstevel@tonic-gate switch (arg) { 20297c478bd9Sstevel@tonic-gate case '?': 20307c478bd9Sstevel@tonic-gate sub_usage(SHELP_HALT, CMD_HALT); 20317c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 20327c478bd9Sstevel@tonic-gate default: 20337c478bd9Sstevel@tonic-gate sub_usage(SHELP_HALT, CMD_HALT); 20347c478bd9Sstevel@tonic-gate return (Z_USAGE); 20357c478bd9Sstevel@tonic-gate } 20367c478bd9Sstevel@tonic-gate } 20377c478bd9Sstevel@tonic-gate if (argc > optind) { 20387c478bd9Sstevel@tonic-gate sub_usage(SHELP_HALT, CMD_HALT); 20397c478bd9Sstevel@tonic-gate return (Z_USAGE); 20407c478bd9Sstevel@tonic-gate } 20417c478bd9Sstevel@tonic-gate /* 20427c478bd9Sstevel@tonic-gate * zoneadmd should be the one to decide whether or not to proceed, 20437c478bd9Sstevel@tonic-gate * so even though it seems that the fourth parameter below should 20447c478bd9Sstevel@tonic-gate * perhaps be B_TRUE, it really shouldn't be. 20457c478bd9Sstevel@tonic-gate */ 20469acbbeafSnn35248 if (sanity_check(target_zone, CMD_HALT, B_FALSE, B_FALSE, B_FALSE) 20479acbbeafSnn35248 != Z_OK) 20487c478bd9Sstevel@tonic-gate return (Z_ERR); 20497c478bd9Sstevel@tonic-gate 2050ce28b40eSzt129084 /* 2051ce28b40eSzt129084 * Invoke brand-specific handler. 2052ce28b40eSzt129084 */ 2053ce28b40eSzt129084 if (invoke_brand_handler(CMD_HALT, argv) != Z_OK) 2054ce28b40eSzt129084 return (Z_ERR); 2055ce28b40eSzt129084 20567c478bd9Sstevel@tonic-gate zarg.cmd = Z_HALT; 20577c478bd9Sstevel@tonic-gate return ((call_zoneadmd(target_zone, &zarg) == 0) ? Z_OK : Z_ERR); 20587c478bd9Sstevel@tonic-gate } 20597c478bd9Sstevel@tonic-gate 20607c478bd9Sstevel@tonic-gate static int 20617c478bd9Sstevel@tonic-gate reboot_func(int argc, char *argv[]) 20627c478bd9Sstevel@tonic-gate { 20637c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 20647c478bd9Sstevel@tonic-gate int arg; 20657c478bd9Sstevel@tonic-gate 2066108322fbScarlsonj if (zonecfg_in_alt_root()) { 2067108322fbScarlsonj zerror(gettext("cannot reboot zone in alternate root")); 2068108322fbScarlsonj return (Z_ERR); 2069108322fbScarlsonj } 2070108322fbScarlsonj 20717c478bd9Sstevel@tonic-gate optind = 0; 20727c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 20737c478bd9Sstevel@tonic-gate switch (arg) { 20747c478bd9Sstevel@tonic-gate case '?': 20757c478bd9Sstevel@tonic-gate sub_usage(SHELP_REBOOT, CMD_REBOOT); 20767c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 20777c478bd9Sstevel@tonic-gate default: 20787c478bd9Sstevel@tonic-gate sub_usage(SHELP_REBOOT, CMD_REBOOT); 20797c478bd9Sstevel@tonic-gate return (Z_USAGE); 20807c478bd9Sstevel@tonic-gate } 20817c478bd9Sstevel@tonic-gate } 20823f2f09c1Sdp 20833f2f09c1Sdp zarg.bootbuf[0] = '\0'; 20843f2f09c1Sdp for (; optind < argc; optind++) { 20853f2f09c1Sdp if (strlcat(zarg.bootbuf, argv[optind], 20863f2f09c1Sdp sizeof (zarg.bootbuf)) >= sizeof (zarg.bootbuf)) { 20873f2f09c1Sdp zerror(gettext("Boot argument list too long")); 20883f2f09c1Sdp return (Z_ERR); 20897c478bd9Sstevel@tonic-gate } 20903f2f09c1Sdp if (optind < argc - 1) 20913f2f09c1Sdp if (strlcat(zarg.bootbuf, " ", sizeof (zarg.bootbuf)) >= 20923f2f09c1Sdp sizeof (zarg.bootbuf)) { 20933f2f09c1Sdp zerror(gettext("Boot argument list too long")); 20943f2f09c1Sdp return (Z_ERR); 20953f2f09c1Sdp } 20963f2f09c1Sdp } 20973f2f09c1Sdp 20983f2f09c1Sdp 20997c478bd9Sstevel@tonic-gate /* 21007c478bd9Sstevel@tonic-gate * zoneadmd should be the one to decide whether or not to proceed, 21017c478bd9Sstevel@tonic-gate * so even though it seems that the fourth parameter below should 21027c478bd9Sstevel@tonic-gate * perhaps be B_TRUE, it really shouldn't be. 21037c478bd9Sstevel@tonic-gate */ 21049acbbeafSnn35248 if (sanity_check(target_zone, CMD_REBOOT, B_TRUE, B_FALSE, B_FALSE) 21059acbbeafSnn35248 != Z_OK) 21067c478bd9Sstevel@tonic-gate return (Z_ERR); 2107ce28b40eSzt129084 if (verify_details(CMD_REBOOT, argv) != Z_OK) 2108b5abaf04Sgjelinek return (Z_ERR); 21097c478bd9Sstevel@tonic-gate 21107c478bd9Sstevel@tonic-gate zarg.cmd = Z_REBOOT; 21117c478bd9Sstevel@tonic-gate return ((call_zoneadmd(target_zone, &zarg) == 0) ? Z_OK : Z_ERR); 21127c478bd9Sstevel@tonic-gate } 21137c478bd9Sstevel@tonic-gate 21147c478bd9Sstevel@tonic-gate static int 2115ce28b40eSzt129084 verify_brand(zone_dochandle_t handle, int cmd_num, char *argv[]) 21169acbbeafSnn35248 { 21179acbbeafSnn35248 char cmdbuf[MAXPATHLEN]; 21189acbbeafSnn35248 int err; 21199acbbeafSnn35248 char zonepath[MAXPATHLEN]; 2120123807fbSedp brand_handle_t bh = NULL; 2121ce28b40eSzt129084 int status, i; 21229acbbeafSnn35248 21239acbbeafSnn35248 /* 21249acbbeafSnn35248 * Fetch the verify command from the brand configuration. 21259acbbeafSnn35248 * "exec" the command so that the returned status is that of 21269acbbeafSnn35248 * the command and not the shell. 21279acbbeafSnn35248 */ 21289acbbeafSnn35248 if ((err = zonecfg_get_zonepath(handle, zonepath, sizeof (zonepath))) != 21299acbbeafSnn35248 Z_OK) { 21309acbbeafSnn35248 errno = err; 2131ce28b40eSzt129084 zperror(cmd_to_str(cmd_num), B_TRUE); 21329acbbeafSnn35248 return (Z_ERR); 21339acbbeafSnn35248 } 2134123807fbSedp if ((bh = brand_open(target_brand)) == NULL) { 21359acbbeafSnn35248 zerror(gettext("missing or invalid brand")); 21369acbbeafSnn35248 return (Z_ERR); 21379acbbeafSnn35248 } 21389acbbeafSnn35248 21399acbbeafSnn35248 /* 21409acbbeafSnn35248 * If the brand has its own verification routine, execute it now. 2141ce28b40eSzt129084 * The verification routine validates the intended zoneadm 2142ce28b40eSzt129084 * operation for the specific brand. The zoneadm subcommand and 2143ce28b40eSzt129084 * all its arguments are passed to the routine. 21449acbbeafSnn35248 */ 21459acbbeafSnn35248 (void) strcpy(cmdbuf, EXEC_PREFIX); 2146123807fbSedp err = brand_get_verify_adm(bh, target_zone, zonepath, 21479acbbeafSnn35248 cmdbuf + EXEC_LEN, sizeof (cmdbuf) - EXEC_LEN, 0, NULL); 2148123807fbSedp brand_close(bh); 2149ce28b40eSzt129084 if (err != 0) 2150ce28b40eSzt129084 return (Z_BRAND_ERROR); 2151ce28b40eSzt129084 if (strlen(cmdbuf) <= EXEC_LEN) 2152ce28b40eSzt129084 return (Z_OK); 2153ce28b40eSzt129084 2154ce28b40eSzt129084 if (strlcat(cmdbuf, cmd_to_str(cmd_num), 2155ce28b40eSzt129084 sizeof (cmdbuf)) >= sizeof (cmdbuf)) 2156ce28b40eSzt129084 return (Z_ERR); 2157ce28b40eSzt129084 2158ce28b40eSzt129084 /* Build the argv string */ 2159ce28b40eSzt129084 i = 0; 2160ce28b40eSzt129084 while (argv[i] != NULL) { 2161ce28b40eSzt129084 if ((strlcat(cmdbuf, " ", 2162ce28b40eSzt129084 sizeof (cmdbuf)) >= sizeof (cmdbuf)) || 2163ce28b40eSzt129084 (strlcat(cmdbuf, argv[i++], 2164ce28b40eSzt129084 sizeof (cmdbuf)) >= sizeof (cmdbuf))) 2165ce28b40eSzt129084 return (Z_ERR); 2166ce28b40eSzt129084 } 2167ce28b40eSzt129084 21689acbbeafSnn35248 status = do_subproc_interactive(cmdbuf); 21699acbbeafSnn35248 err = subproc_status(gettext("brand-specific verification"), 21709acbbeafSnn35248 status, B_FALSE); 21719acbbeafSnn35248 2172ce28b40eSzt129084 return ((err == ZONE_SUBPROC_OK) ? Z_OK : Z_BRAND_ERROR); 21739acbbeafSnn35248 } 21749acbbeafSnn35248 21759acbbeafSnn35248 static int 21767c478bd9Sstevel@tonic-gate verify_rctls(zone_dochandle_t handle) 21777c478bd9Sstevel@tonic-gate { 21787c478bd9Sstevel@tonic-gate struct zone_rctltab rctltab; 21797c478bd9Sstevel@tonic-gate size_t rbs = rctlblk_size(); 21807c478bd9Sstevel@tonic-gate rctlblk_t *rctlblk; 21817c478bd9Sstevel@tonic-gate int error = Z_INVAL; 21827c478bd9Sstevel@tonic-gate 21837c478bd9Sstevel@tonic-gate if ((rctlblk = malloc(rbs)) == NULL) { 21847c478bd9Sstevel@tonic-gate zerror(gettext("failed to allocate %lu bytes: %s"), rbs, 21857c478bd9Sstevel@tonic-gate strerror(errno)); 21867c478bd9Sstevel@tonic-gate return (Z_NOMEM); 21877c478bd9Sstevel@tonic-gate } 21887c478bd9Sstevel@tonic-gate 21897c478bd9Sstevel@tonic-gate if (zonecfg_setrctlent(handle) != Z_OK) { 21907c478bd9Sstevel@tonic-gate zerror(gettext("zonecfg_setrctlent failed")); 21917c478bd9Sstevel@tonic-gate free(rctlblk); 21927c478bd9Sstevel@tonic-gate return (error); 21937c478bd9Sstevel@tonic-gate } 21947c478bd9Sstevel@tonic-gate 21957c478bd9Sstevel@tonic-gate rctltab.zone_rctl_valptr = NULL; 21967c478bd9Sstevel@tonic-gate while (zonecfg_getrctlent(handle, &rctltab) == Z_OK) { 21977c478bd9Sstevel@tonic-gate struct zone_rctlvaltab *rctlval; 21987c478bd9Sstevel@tonic-gate const char *name = rctltab.zone_rctl_name; 21997c478bd9Sstevel@tonic-gate 22007c478bd9Sstevel@tonic-gate if (!zonecfg_is_rctl(name)) { 22017c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: Ignoring unrecognized rctl " 22027c478bd9Sstevel@tonic-gate "'%s'."), name); 22037c478bd9Sstevel@tonic-gate zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr); 22047c478bd9Sstevel@tonic-gate rctltab.zone_rctl_valptr = NULL; 22057c478bd9Sstevel@tonic-gate continue; 22067c478bd9Sstevel@tonic-gate } 22077c478bd9Sstevel@tonic-gate 22087c478bd9Sstevel@tonic-gate for (rctlval = rctltab.zone_rctl_valptr; rctlval != NULL; 22097c478bd9Sstevel@tonic-gate rctlval = rctlval->zone_rctlval_next) { 22107c478bd9Sstevel@tonic-gate if (zonecfg_construct_rctlblk(rctlval, rctlblk) 22117c478bd9Sstevel@tonic-gate != Z_OK) { 22127c478bd9Sstevel@tonic-gate zerror(gettext("invalid rctl value: " 22137c478bd9Sstevel@tonic-gate "(priv=%s,limit=%s,action%s)"), 22147c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_priv, 22157c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_limit, 22167c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_action); 22177c478bd9Sstevel@tonic-gate goto out; 22187c478bd9Sstevel@tonic-gate } 22197c478bd9Sstevel@tonic-gate if (!zonecfg_valid_rctl(name, rctlblk)) { 22207c478bd9Sstevel@tonic-gate zerror(gettext("(priv=%s,limit=%s,action=%s) " 22217c478bd9Sstevel@tonic-gate "is not a valid value for rctl '%s'"), 22227c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_priv, 22237c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_limit, 22247c478bd9Sstevel@tonic-gate rctlval->zone_rctlval_action, 22257c478bd9Sstevel@tonic-gate name); 22267c478bd9Sstevel@tonic-gate goto out; 22277c478bd9Sstevel@tonic-gate } 22287c478bd9Sstevel@tonic-gate } 22297c478bd9Sstevel@tonic-gate zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr); 22307c478bd9Sstevel@tonic-gate } 22317c478bd9Sstevel@tonic-gate rctltab.zone_rctl_valptr = NULL; 22327c478bd9Sstevel@tonic-gate error = Z_OK; 22337c478bd9Sstevel@tonic-gate out: 22347c478bd9Sstevel@tonic-gate zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr); 22357c478bd9Sstevel@tonic-gate (void) zonecfg_endrctlent(handle); 22367c478bd9Sstevel@tonic-gate free(rctlblk); 22377c478bd9Sstevel@tonic-gate return (error); 22387c478bd9Sstevel@tonic-gate } 22397c478bd9Sstevel@tonic-gate 22407c478bd9Sstevel@tonic-gate static int 22417c478bd9Sstevel@tonic-gate verify_pool(zone_dochandle_t handle) 22427c478bd9Sstevel@tonic-gate { 22437c478bd9Sstevel@tonic-gate char poolname[MAXPATHLEN]; 22447c478bd9Sstevel@tonic-gate pool_conf_t *poolconf; 22457c478bd9Sstevel@tonic-gate pool_t *pool; 22467c478bd9Sstevel@tonic-gate int status; 22477c478bd9Sstevel@tonic-gate int error; 22487c478bd9Sstevel@tonic-gate 22497c478bd9Sstevel@tonic-gate /* 22507c478bd9Sstevel@tonic-gate * This ends up being very similar to the check done in zoneadmd. 22517c478bd9Sstevel@tonic-gate */ 22527c478bd9Sstevel@tonic-gate error = zonecfg_get_pool(handle, poolname, sizeof (poolname)); 22537c478bd9Sstevel@tonic-gate if (error == Z_NO_ENTRY || (error == Z_OK && strlen(poolname) == 0)) { 22547c478bd9Sstevel@tonic-gate /* 22557c478bd9Sstevel@tonic-gate * No pool specified. 22567c478bd9Sstevel@tonic-gate */ 22577c478bd9Sstevel@tonic-gate return (0); 22587c478bd9Sstevel@tonic-gate } 22597c478bd9Sstevel@tonic-gate if (error != Z_OK) { 22607c478bd9Sstevel@tonic-gate zperror(gettext("Unable to retrieve pool name from " 22617c478bd9Sstevel@tonic-gate "configuration"), B_TRUE); 22627c478bd9Sstevel@tonic-gate return (error); 22637c478bd9Sstevel@tonic-gate } 22647c478bd9Sstevel@tonic-gate /* 22657c478bd9Sstevel@tonic-gate * Don't do anything if pools aren't enabled. 22667c478bd9Sstevel@tonic-gate */ 22677c478bd9Sstevel@tonic-gate if (pool_get_status(&status) != PO_SUCCESS || status != POOL_ENABLED) { 22687c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pools facility not active; " 22697c478bd9Sstevel@tonic-gate "zone will not be bound to pool '%s'."), poolname); 22707c478bd9Sstevel@tonic-gate return (Z_OK); 22717c478bd9Sstevel@tonic-gate } 22727c478bd9Sstevel@tonic-gate /* 22737c478bd9Sstevel@tonic-gate * Try to provide a sane error message if the requested pool doesn't 22747c478bd9Sstevel@tonic-gate * exist. It isn't clear that pools-related failures should 22757c478bd9Sstevel@tonic-gate * necessarily translate to a failure to verify the zone configuration, 22767c478bd9Sstevel@tonic-gate * hence they are not considered errors. 22777c478bd9Sstevel@tonic-gate */ 22787c478bd9Sstevel@tonic-gate if ((poolconf = pool_conf_alloc()) == NULL) { 22797c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pool_conf_alloc failed; " 22807c478bd9Sstevel@tonic-gate "using default pool")); 22817c478bd9Sstevel@tonic-gate return (Z_OK); 22827c478bd9Sstevel@tonic-gate } 22837c478bd9Sstevel@tonic-gate if (pool_conf_open(poolconf, pool_dynamic_location(), PO_RDONLY) != 22847c478bd9Sstevel@tonic-gate PO_SUCCESS) { 22857c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pool_conf_open failed; " 22867c478bd9Sstevel@tonic-gate "using default pool")); 22877c478bd9Sstevel@tonic-gate pool_conf_free(poolconf); 22887c478bd9Sstevel@tonic-gate return (Z_OK); 22897c478bd9Sstevel@tonic-gate } 22907c478bd9Sstevel@tonic-gate pool = pool_get_pool(poolconf, poolname); 22917c478bd9Sstevel@tonic-gate (void) pool_conf_close(poolconf); 22927c478bd9Sstevel@tonic-gate pool_conf_free(poolconf); 22937c478bd9Sstevel@tonic-gate if (pool == NULL) { 22947c478bd9Sstevel@tonic-gate zerror(gettext("WARNING: pool '%s' not found. " 22957c478bd9Sstevel@tonic-gate "using default pool"), poolname); 22967c478bd9Sstevel@tonic-gate } 22977c478bd9Sstevel@tonic-gate 22987c478bd9Sstevel@tonic-gate return (Z_OK); 22997c478bd9Sstevel@tonic-gate } 23007c478bd9Sstevel@tonic-gate 23017c478bd9Sstevel@tonic-gate static int 2302b5abaf04Sgjelinek verify_ipd(zone_dochandle_t handle) 2303b5abaf04Sgjelinek { 2304b5abaf04Sgjelinek int return_code = Z_OK; 2305b5abaf04Sgjelinek struct zone_fstab fstab; 2306b5abaf04Sgjelinek struct stat st; 2307b5abaf04Sgjelinek char specdir[MAXPATHLEN]; 2308b5abaf04Sgjelinek 2309b5abaf04Sgjelinek if (zonecfg_setipdent(handle) != Z_OK) { 23105ee84fbdSgjelinek /* 23115ee84fbdSgjelinek * TRANSLATION_NOTE 23125ee84fbdSgjelinek * inherit-pkg-dirs is a literal that should not be translated. 23135ee84fbdSgjelinek */ 23145ee84fbdSgjelinek (void) fprintf(stderr, gettext("could not verify " 2315b5abaf04Sgjelinek "inherit-pkg-dirs: unable to enumerate mounts\n")); 2316b5abaf04Sgjelinek return (Z_ERR); 2317b5abaf04Sgjelinek } 2318b5abaf04Sgjelinek while (zonecfg_getipdent(handle, &fstab) == Z_OK) { 2319b5abaf04Sgjelinek /* 2320b5abaf04Sgjelinek * Verify fs_dir exists. 2321b5abaf04Sgjelinek */ 2322b5abaf04Sgjelinek (void) snprintf(specdir, sizeof (specdir), "%s%s", 2323b5abaf04Sgjelinek zonecfg_get_root(), fstab.zone_fs_dir); 2324b5abaf04Sgjelinek if (stat(specdir, &st) != 0) { 23255ee84fbdSgjelinek /* 23265ee84fbdSgjelinek * TRANSLATION_NOTE 23275ee84fbdSgjelinek * inherit-pkg-dir is a literal that should not be 23285ee84fbdSgjelinek * translated. 23295ee84fbdSgjelinek */ 23305ee84fbdSgjelinek (void) fprintf(stderr, gettext("could not verify " 2331b5abaf04Sgjelinek "inherit-pkg-dir %s: %s\n"), 2332b5abaf04Sgjelinek fstab.zone_fs_dir, strerror(errno)); 2333b5abaf04Sgjelinek return_code = Z_ERR; 2334b5abaf04Sgjelinek } 2335b5abaf04Sgjelinek if (strcmp(st.st_fstype, MNTTYPE_NFS) == 0) { 23365ee84fbdSgjelinek /* 23375ee84fbdSgjelinek * TRANSLATION_NOTE 23385ee84fbdSgjelinek * inherit-pkg-dir and NFS are literals that should 23395ee84fbdSgjelinek * not be translated. 23405ee84fbdSgjelinek */ 2341b5abaf04Sgjelinek (void) fprintf(stderr, gettext("cannot verify " 23420b5de56dSgjelinek "inherit-pkg-dir %s: NFS mounted file system.\n" 23430b5de56dSgjelinek "\tA local file system must be used.\n"), 2344b5abaf04Sgjelinek fstab.zone_fs_dir); 2345b5abaf04Sgjelinek return_code = Z_ERR; 2346b5abaf04Sgjelinek } 2347b5abaf04Sgjelinek } 2348b5abaf04Sgjelinek (void) zonecfg_endipdent(handle); 2349b5abaf04Sgjelinek 2350b5abaf04Sgjelinek return (return_code); 2351b5abaf04Sgjelinek } 2352b5abaf04Sgjelinek 235320c8013fSlling /* 235420c8013fSlling * Verify that the special device/file system exists and is valid. 235520c8013fSlling */ 235620c8013fSlling static int 235720c8013fSlling verify_fs_special(struct zone_fstab *fstab) 235820c8013fSlling { 235920c8013fSlling struct stat st; 236020c8013fSlling 23616cc813faSgjelinek /* 23626cc813faSgjelinek * This validation is really intended for standard zone administration. 23636cc813faSgjelinek * If we are in a mini-root or some other upgrade situation where 23646cc813faSgjelinek * we are using the scratch zone, just by-pass this. 23656cc813faSgjelinek */ 23666cc813faSgjelinek if (zonecfg_in_alt_root()) 23676cc813faSgjelinek return (Z_OK); 23686cc813faSgjelinek 236920c8013fSlling if (strcmp(fstab->zone_fs_type, MNTTYPE_ZFS) == 0) 237020c8013fSlling return (verify_fs_zfs(fstab)); 237120c8013fSlling 237220c8013fSlling if (stat(fstab->zone_fs_special, &st) != 0) { 23735c358068Slling (void) fprintf(stderr, gettext("could not verify fs " 237420c8013fSlling "%s: could not access %s: %s\n"), fstab->zone_fs_dir, 237520c8013fSlling fstab->zone_fs_special, strerror(errno)); 237620c8013fSlling return (Z_ERR); 237720c8013fSlling } 237820c8013fSlling 237920c8013fSlling if (strcmp(st.st_fstype, MNTTYPE_NFS) == 0) { 238020c8013fSlling /* 238120c8013fSlling * TRANSLATION_NOTE 238220c8013fSlling * fs and NFS are literals that should 238320c8013fSlling * not be translated. 238420c8013fSlling */ 238520c8013fSlling (void) fprintf(stderr, gettext("cannot verify " 23860b5de56dSgjelinek "fs %s: NFS mounted file system.\n" 23870b5de56dSgjelinek "\tA local file system must be used.\n"), 238820c8013fSlling fstab->zone_fs_special); 238920c8013fSlling return (Z_ERR); 239020c8013fSlling } 239120c8013fSlling 239220c8013fSlling return (Z_OK); 239320c8013fSlling } 239420c8013fSlling 2395b5abaf04Sgjelinek static int 23967c478bd9Sstevel@tonic-gate verify_filesystems(zone_dochandle_t handle) 23977c478bd9Sstevel@tonic-gate { 23987c478bd9Sstevel@tonic-gate int return_code = Z_OK; 23997c478bd9Sstevel@tonic-gate struct zone_fstab fstab; 24007c478bd9Sstevel@tonic-gate char cmdbuf[MAXPATHLEN]; 24017c478bd9Sstevel@tonic-gate struct stat st; 24027c478bd9Sstevel@tonic-gate 24037c478bd9Sstevel@tonic-gate /* 24047c478bd9Sstevel@tonic-gate * No need to verify inherit-pkg-dir fs types, as their type is 24057c478bd9Sstevel@tonic-gate * implicitly lofs, which is known. Therefore, the types are only 24067c478bd9Sstevel@tonic-gate * verified for regular file systems below. 24077c478bd9Sstevel@tonic-gate * 24087c478bd9Sstevel@tonic-gate * Since the actual mount point is not known until the dependent mounts 24097c478bd9Sstevel@tonic-gate * are performed, we don't attempt any path validation here: that will 24107c478bd9Sstevel@tonic-gate * happen later when zoneadmd actually does the mounts. 24117c478bd9Sstevel@tonic-gate */ 24127c478bd9Sstevel@tonic-gate if (zonecfg_setfsent(handle) != Z_OK) { 24130b5de56dSgjelinek (void) fprintf(stderr, gettext("could not verify file systems: " 24147c478bd9Sstevel@tonic-gate "unable to enumerate mounts\n")); 24157c478bd9Sstevel@tonic-gate return (Z_ERR); 24167c478bd9Sstevel@tonic-gate } 24177c478bd9Sstevel@tonic-gate while (zonecfg_getfsent(handle, &fstab) == Z_OK) { 24187c478bd9Sstevel@tonic-gate if (!zonecfg_valid_fs_type(fstab.zone_fs_type)) { 24197c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 24207c478bd9Sstevel@tonic-gate "type %s is not allowed.\n"), fstab.zone_fs_dir, 24217c478bd9Sstevel@tonic-gate fstab.zone_fs_type); 24227c478bd9Sstevel@tonic-gate return_code = Z_ERR; 24237c478bd9Sstevel@tonic-gate goto next_fs; 24247c478bd9Sstevel@tonic-gate } 24257c478bd9Sstevel@tonic-gate /* 24267c478bd9Sstevel@tonic-gate * Verify /usr/lib/fs/<fstype>/mount exists. 24277c478bd9Sstevel@tonic-gate */ 24287c478bd9Sstevel@tonic-gate if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/mount", 24297c478bd9Sstevel@tonic-gate fstab.zone_fs_type) > sizeof (cmdbuf)) { 24307c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 24317c478bd9Sstevel@tonic-gate "type %s is too long.\n"), fstab.zone_fs_dir, 24327c478bd9Sstevel@tonic-gate fstab.zone_fs_type); 24337c478bd9Sstevel@tonic-gate return_code = Z_ERR; 24347c478bd9Sstevel@tonic-gate goto next_fs; 24357c478bd9Sstevel@tonic-gate } 24367c478bd9Sstevel@tonic-gate if (stat(cmdbuf, &st) != 0) { 24375ee84fbdSgjelinek (void) fprintf(stderr, gettext("could not verify fs " 24385ee84fbdSgjelinek "%s: could not access %s: %s\n"), fstab.zone_fs_dir, 24397c478bd9Sstevel@tonic-gate cmdbuf, strerror(errno)); 24407c478bd9Sstevel@tonic-gate return_code = Z_ERR; 24417c478bd9Sstevel@tonic-gate goto next_fs; 24427c478bd9Sstevel@tonic-gate } 24437c478bd9Sstevel@tonic-gate if (!S_ISREG(st.st_mode)) { 24445ee84fbdSgjelinek (void) fprintf(stderr, gettext("could not verify fs " 24455ee84fbdSgjelinek "%s: %s is not a regular file\n"), 24465ee84fbdSgjelinek fstab.zone_fs_dir, cmdbuf); 24477c478bd9Sstevel@tonic-gate return_code = Z_ERR; 24487c478bd9Sstevel@tonic-gate goto next_fs; 24497c478bd9Sstevel@tonic-gate } 24507c478bd9Sstevel@tonic-gate /* 24517c478bd9Sstevel@tonic-gate * Verify /usr/lib/fs/<fstype>/fsck exists iff zone_fs_raw is 24527c478bd9Sstevel@tonic-gate * set. 24537c478bd9Sstevel@tonic-gate */ 24547c478bd9Sstevel@tonic-gate if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/fsck", 24557c478bd9Sstevel@tonic-gate fstab.zone_fs_type) > sizeof (cmdbuf)) { 24567c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 24577c478bd9Sstevel@tonic-gate "type %s is too long.\n"), fstab.zone_fs_dir, 24587c478bd9Sstevel@tonic-gate fstab.zone_fs_type); 24597c478bd9Sstevel@tonic-gate return_code = Z_ERR; 24607c478bd9Sstevel@tonic-gate goto next_fs; 24617c478bd9Sstevel@tonic-gate } 24627c478bd9Sstevel@tonic-gate if (fstab.zone_fs_raw[0] == '\0' && stat(cmdbuf, &st) == 0) { 24635ee84fbdSgjelinek (void) fprintf(stderr, gettext("could not verify fs " 24645ee84fbdSgjelinek "%s: must specify 'raw' device for %s " 24650b5de56dSgjelinek "file systems\n"), 24667c478bd9Sstevel@tonic-gate fstab.zone_fs_dir, fstab.zone_fs_type); 24677c478bd9Sstevel@tonic-gate return_code = Z_ERR; 24687c478bd9Sstevel@tonic-gate goto next_fs; 24697c478bd9Sstevel@tonic-gate } 24707c478bd9Sstevel@tonic-gate if (fstab.zone_fs_raw[0] != '\0' && 24717c478bd9Sstevel@tonic-gate (stat(cmdbuf, &st) != 0 || !S_ISREG(st.st_mode))) { 24727c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("cannot verify fs %s: " 24737c478bd9Sstevel@tonic-gate "'raw' device specified but " 24747c478bd9Sstevel@tonic-gate "no fsck executable exists for %s\n"), 24757c478bd9Sstevel@tonic-gate fstab.zone_fs_dir, fstab.zone_fs_type); 24767c478bd9Sstevel@tonic-gate return_code = Z_ERR; 24777c478bd9Sstevel@tonic-gate goto next_fs; 24787c478bd9Sstevel@tonic-gate } 247920c8013fSlling 248020c8013fSlling /* Verify fs_special. */ 248120c8013fSlling if ((return_code = verify_fs_special(&fstab)) != Z_OK) 2482b5abaf04Sgjelinek goto next_fs; 248320c8013fSlling 248420c8013fSlling /* Verify fs_raw. */ 2485b5abaf04Sgjelinek if (fstab.zone_fs_raw[0] != '\0' && 2486b5abaf04Sgjelinek stat(fstab.zone_fs_raw, &st) != 0) { 24875ee84fbdSgjelinek /* 24885ee84fbdSgjelinek * TRANSLATION_NOTE 24895ee84fbdSgjelinek * fs is a literal that should not be translated. 24905ee84fbdSgjelinek */ 24915ee84fbdSgjelinek (void) fprintf(stderr, gettext("could not verify fs " 24925ee84fbdSgjelinek "%s: could not access %s: %s\n"), fstab.zone_fs_dir, 2493b5abaf04Sgjelinek fstab.zone_fs_raw, strerror(errno)); 2494b5abaf04Sgjelinek return_code = Z_ERR; 2495b5abaf04Sgjelinek goto next_fs; 2496b5abaf04Sgjelinek } 24977c478bd9Sstevel@tonic-gate next_fs: 24987c478bd9Sstevel@tonic-gate zonecfg_free_fs_option_list(fstab.zone_fs_options); 24997c478bd9Sstevel@tonic-gate } 25007c478bd9Sstevel@tonic-gate (void) zonecfg_endfsent(handle); 25017c478bd9Sstevel@tonic-gate 25027c478bd9Sstevel@tonic-gate return (return_code); 25037c478bd9Sstevel@tonic-gate } 25047c478bd9Sstevel@tonic-gate 25057c478bd9Sstevel@tonic-gate static int 2506ffbafc53Scomay verify_limitpriv(zone_dochandle_t handle) 2507ffbafc53Scomay { 2508ffbafc53Scomay char *privname = NULL; 2509ffbafc53Scomay int err; 2510ffbafc53Scomay priv_set_t *privs; 2511ffbafc53Scomay 2512ffbafc53Scomay if ((privs = priv_allocset()) == NULL) { 2513ffbafc53Scomay zperror(gettext("failed to allocate privilege set"), B_FALSE); 2514ffbafc53Scomay return (Z_NOMEM); 2515ffbafc53Scomay } 2516ffbafc53Scomay err = zonecfg_get_privset(handle, privs, &privname); 2517ffbafc53Scomay switch (err) { 2518ffbafc53Scomay case Z_OK: 2519ffbafc53Scomay break; 2520ffbafc53Scomay case Z_PRIV_PROHIBITED: 2521ffbafc53Scomay (void) fprintf(stderr, gettext("privilege \"%s\" is not " 2522ffbafc53Scomay "permitted within the zone's privilege set\n"), privname); 2523ffbafc53Scomay break; 2524ffbafc53Scomay case Z_PRIV_REQUIRED: 2525ffbafc53Scomay (void) fprintf(stderr, gettext("required privilege \"%s\" is " 2526ffbafc53Scomay "missing from the zone's privilege set\n"), privname); 2527ffbafc53Scomay break; 2528ffbafc53Scomay case Z_PRIV_UNKNOWN: 2529ffbafc53Scomay (void) fprintf(stderr, gettext("unknown privilege \"%s\" " 2530ffbafc53Scomay "specified in the zone's privilege set\n"), privname); 2531ffbafc53Scomay break; 2532ffbafc53Scomay default: 2533ffbafc53Scomay zperror( 2534ffbafc53Scomay gettext("failed to determine the zone's privilege set"), 2535ffbafc53Scomay B_TRUE); 2536ffbafc53Scomay break; 2537ffbafc53Scomay } 2538ffbafc53Scomay free(privname); 2539ffbafc53Scomay priv_freeset(privs); 2540ffbafc53Scomay return (err); 2541ffbafc53Scomay } 2542ffbafc53Scomay 25431390a385Sgjelinek static void 25441390a385Sgjelinek free_local_netifs(int if_cnt, struct net_if **if_list) 25451390a385Sgjelinek { 25461390a385Sgjelinek int i; 25471390a385Sgjelinek 25481390a385Sgjelinek for (i = 0; i < if_cnt; i++) { 25491390a385Sgjelinek free(if_list[i]->name); 25501390a385Sgjelinek free(if_list[i]); 25511390a385Sgjelinek } 25521390a385Sgjelinek free(if_list); 25531390a385Sgjelinek } 25541390a385Sgjelinek 25551390a385Sgjelinek /* 25561390a385Sgjelinek * Get a list of the network interfaces, along with their address families, 25571390a385Sgjelinek * that are plumbed in the global zone. See if_tcp(7p) for a description 25581390a385Sgjelinek * of the ioctls used here. 25591390a385Sgjelinek */ 25601390a385Sgjelinek static int 25611390a385Sgjelinek get_local_netifs(int *if_cnt, struct net_if ***if_list) 25621390a385Sgjelinek { 25631390a385Sgjelinek int s; 25641390a385Sgjelinek int i; 25651390a385Sgjelinek int res = Z_OK; 25661390a385Sgjelinek int space_needed; 25671390a385Sgjelinek int cnt = 0; 25681390a385Sgjelinek struct lifnum if_num; 25691390a385Sgjelinek struct lifconf if_conf; 25701390a385Sgjelinek struct lifreq *if_reqp; 25711390a385Sgjelinek char *if_buf; 25721390a385Sgjelinek struct net_if **local_ifs = NULL; 25731390a385Sgjelinek 25741390a385Sgjelinek *if_cnt = 0; 25751390a385Sgjelinek *if_list = NULL; 25761390a385Sgjelinek 25771390a385Sgjelinek if ((s = socket(SOCKET_AF(AF_INET), SOCK_DGRAM, 0)) < 0) 25781390a385Sgjelinek return (Z_ERR); 25791390a385Sgjelinek 25801390a385Sgjelinek /* 25811390a385Sgjelinek * Come back here in the unlikely event that the number of interfaces 25821390a385Sgjelinek * increases between the time we get the count and the time we do the 25831390a385Sgjelinek * SIOCGLIFCONF ioctl. 25841390a385Sgjelinek */ 25851390a385Sgjelinek retry: 25861390a385Sgjelinek /* Get the number of interfaces. */ 25871390a385Sgjelinek if_num.lifn_family = AF_UNSPEC; 25881390a385Sgjelinek if_num.lifn_flags = LIFC_NOXMIT; 25891390a385Sgjelinek if (ioctl(s, SIOCGLIFNUM, &if_num) < 0) { 25901390a385Sgjelinek (void) close(s); 25911390a385Sgjelinek return (Z_ERR); 25921390a385Sgjelinek } 25931390a385Sgjelinek 25941390a385Sgjelinek /* Get the interface configuration list. */ 25951390a385Sgjelinek space_needed = if_num.lifn_count * sizeof (struct lifreq); 25961390a385Sgjelinek if ((if_buf = malloc(space_needed)) == NULL) { 25971390a385Sgjelinek (void) close(s); 25981390a385Sgjelinek return (Z_ERR); 25991390a385Sgjelinek } 26001390a385Sgjelinek if_conf.lifc_family = AF_UNSPEC; 26011390a385Sgjelinek if_conf.lifc_flags = LIFC_NOXMIT; 26021390a385Sgjelinek if_conf.lifc_len = space_needed; 26031390a385Sgjelinek if_conf.lifc_buf = if_buf; 26041390a385Sgjelinek if (ioctl(s, SIOCGLIFCONF, &if_conf) < 0) { 26051390a385Sgjelinek free(if_buf); 26061390a385Sgjelinek /* 26071390a385Sgjelinek * SIOCGLIFCONF returns EINVAL if the buffer we passed in is 26081390a385Sgjelinek * too small. In this case go back and get the new if cnt. 26091390a385Sgjelinek */ 26101390a385Sgjelinek if (errno == EINVAL) 26111390a385Sgjelinek goto retry; 26121390a385Sgjelinek 26131390a385Sgjelinek (void) close(s); 26141390a385Sgjelinek return (Z_ERR); 26151390a385Sgjelinek } 26161390a385Sgjelinek (void) close(s); 26171390a385Sgjelinek 26181390a385Sgjelinek /* Get the name and address family for each interface. */ 26191390a385Sgjelinek if_reqp = if_conf.lifc_req; 26201390a385Sgjelinek for (i = 0; i < (if_conf.lifc_len / sizeof (struct lifreq)); i++) { 26211390a385Sgjelinek struct net_if **p; 26221390a385Sgjelinek struct lifreq req; 26231390a385Sgjelinek 26241390a385Sgjelinek if (strcmp(LOOPBACK_IF, if_reqp->lifr_name) == 0) { 26251390a385Sgjelinek if_reqp++; 26261390a385Sgjelinek continue; 26271390a385Sgjelinek } 26281390a385Sgjelinek 26291390a385Sgjelinek if ((s = socket(SOCKET_AF(if_reqp->lifr_addr.ss_family), 26301390a385Sgjelinek SOCK_DGRAM, 0)) == -1) { 26311390a385Sgjelinek res = Z_ERR; 26321390a385Sgjelinek break; 26331390a385Sgjelinek } 26341390a385Sgjelinek 26351390a385Sgjelinek (void) strncpy(req.lifr_name, if_reqp->lifr_name, 26361390a385Sgjelinek sizeof (req.lifr_name)); 26371390a385Sgjelinek if (ioctl(s, SIOCGLIFADDR, &req) < 0) { 26381390a385Sgjelinek (void) close(s); 26391390a385Sgjelinek if_reqp++; 26401390a385Sgjelinek continue; 26411390a385Sgjelinek } 26421390a385Sgjelinek 26431390a385Sgjelinek if ((p = (struct net_if **)realloc(local_ifs, 26441390a385Sgjelinek sizeof (struct net_if *) * (cnt + 1))) == NULL) { 26451390a385Sgjelinek res = Z_ERR; 26461390a385Sgjelinek break; 26471390a385Sgjelinek } 26481390a385Sgjelinek local_ifs = p; 26491390a385Sgjelinek 26501390a385Sgjelinek if ((local_ifs[cnt] = malloc(sizeof (struct net_if))) == NULL) { 26511390a385Sgjelinek res = Z_ERR; 26521390a385Sgjelinek break; 26531390a385Sgjelinek } 26541390a385Sgjelinek 26551390a385Sgjelinek if ((local_ifs[cnt]->name = strdup(if_reqp->lifr_name)) 26561390a385Sgjelinek == NULL) { 26571390a385Sgjelinek free(local_ifs[cnt]); 26581390a385Sgjelinek res = Z_ERR; 26591390a385Sgjelinek break; 26601390a385Sgjelinek } 26611390a385Sgjelinek local_ifs[cnt]->af = req.lifr_addr.ss_family; 26621390a385Sgjelinek cnt++; 26631390a385Sgjelinek 26641390a385Sgjelinek (void) close(s); 26651390a385Sgjelinek if_reqp++; 26661390a385Sgjelinek } 26671390a385Sgjelinek 26681390a385Sgjelinek free(if_buf); 26691390a385Sgjelinek 26701390a385Sgjelinek if (res != Z_OK) { 26711390a385Sgjelinek free_local_netifs(cnt, local_ifs); 26721390a385Sgjelinek } else { 26731390a385Sgjelinek *if_cnt = cnt; 26741390a385Sgjelinek *if_list = local_ifs; 26751390a385Sgjelinek } 26761390a385Sgjelinek 26771390a385Sgjelinek return (res); 26781390a385Sgjelinek } 26791390a385Sgjelinek 26801390a385Sgjelinek static char * 26811390a385Sgjelinek af2str(int af) 26821390a385Sgjelinek { 26831390a385Sgjelinek switch (af) { 26841390a385Sgjelinek case AF_INET: 26851390a385Sgjelinek return ("IPv4"); 26861390a385Sgjelinek case AF_INET6: 26871390a385Sgjelinek return ("IPv6"); 26881390a385Sgjelinek default: 26891390a385Sgjelinek return ("Unknown"); 26901390a385Sgjelinek } 26911390a385Sgjelinek } 26921390a385Sgjelinek 26931390a385Sgjelinek /* 26941390a385Sgjelinek * Cross check the network interface name and address family with the 26951390a385Sgjelinek * interfaces that are set up in the global zone so that we can print the 26961390a385Sgjelinek * appropriate error message. 26971390a385Sgjelinek */ 26981390a385Sgjelinek static void 26991390a385Sgjelinek print_net_err(char *phys, char *addr, int af, char *msg) 27001390a385Sgjelinek { 27011390a385Sgjelinek int i; 27021390a385Sgjelinek int local_if_cnt = 0; 27031390a385Sgjelinek struct net_if **local_ifs = NULL; 27041390a385Sgjelinek boolean_t found_if = B_FALSE; 27051390a385Sgjelinek boolean_t found_af = B_FALSE; 27061390a385Sgjelinek 27071390a385Sgjelinek if (get_local_netifs(&local_if_cnt, &local_ifs) != Z_OK) { 27081390a385Sgjelinek (void) fprintf(stderr, 27091390a385Sgjelinek gettext("could not verify %s %s=%s %s=%s\n\t%s\n"), 27101390a385Sgjelinek "net", "address", addr, "physical", phys, msg); 27111390a385Sgjelinek return; 27121390a385Sgjelinek } 27131390a385Sgjelinek 27141390a385Sgjelinek for (i = 0; i < local_if_cnt; i++) { 27151390a385Sgjelinek if (strcmp(phys, local_ifs[i]->name) == 0) { 27161390a385Sgjelinek found_if = B_TRUE; 27171390a385Sgjelinek if (af == local_ifs[i]->af) { 27181390a385Sgjelinek found_af = B_TRUE; 27191390a385Sgjelinek break; 27201390a385Sgjelinek } 27211390a385Sgjelinek } 27221390a385Sgjelinek } 27231390a385Sgjelinek 27241390a385Sgjelinek free_local_netifs(local_if_cnt, local_ifs); 27251390a385Sgjelinek 27261390a385Sgjelinek if (!found_if) { 27271390a385Sgjelinek (void) fprintf(stderr, 27281390a385Sgjelinek gettext("could not verify %s %s=%s\n\t" 27291390a385Sgjelinek "network interface %s is not plumbed in the global zone\n"), 27301390a385Sgjelinek "net", "physical", phys, phys); 27311390a385Sgjelinek return; 27321390a385Sgjelinek } 27331390a385Sgjelinek 27341390a385Sgjelinek /* 27351390a385Sgjelinek * Print this error if we were unable to find the address family 27361390a385Sgjelinek * for this interface. If the af variable is not initialized to 27371390a385Sgjelinek * to something meaningful by the caller (not AF_UNSPEC) then we 27381390a385Sgjelinek * also skip this message since it wouldn't be informative. 27391390a385Sgjelinek */ 27401390a385Sgjelinek if (!found_af && af != AF_UNSPEC) { 27411390a385Sgjelinek (void) fprintf(stderr, 27421390a385Sgjelinek gettext("could not verify %s %s=%s %s=%s\n\tthe %s address " 27431390a385Sgjelinek "family is not configured on this interface in the\n\t" 27441390a385Sgjelinek "global zone\n"), 27451390a385Sgjelinek "net", "address", addr, "physical", phys, af2str(af)); 27461390a385Sgjelinek return; 27471390a385Sgjelinek } 27481390a385Sgjelinek 27491390a385Sgjelinek (void) fprintf(stderr, 27501390a385Sgjelinek gettext("could not verify %s %s=%s %s=%s\n\t%s\n"), 27511390a385Sgjelinek "net", "address", addr, "physical", phys, msg); 27521390a385Sgjelinek } 27531390a385Sgjelinek 2754ffbafc53Scomay static int 2755ce28b40eSzt129084 verify_handle(int cmd_num, zone_dochandle_t handle, char *argv[]) 27567c478bd9Sstevel@tonic-gate { 27577c478bd9Sstevel@tonic-gate struct zone_nwiftab nwiftab; 27587c478bd9Sstevel@tonic-gate int return_code = Z_OK; 27597c478bd9Sstevel@tonic-gate int err; 2760108322fbScarlsonj boolean_t in_alt_root; 27617c478bd9Sstevel@tonic-gate 2762108322fbScarlsonj in_alt_root = zonecfg_in_alt_root(); 2763108322fbScarlsonj if (in_alt_root) 2764108322fbScarlsonj goto no_net; 2765108322fbScarlsonj 27667c478bd9Sstevel@tonic-gate if ((err = zonecfg_setnwifent(handle)) != Z_OK) { 27677c478bd9Sstevel@tonic-gate errno = err; 27687c478bd9Sstevel@tonic-gate zperror(cmd_to_str(cmd_num), B_TRUE); 27697c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 27707c478bd9Sstevel@tonic-gate return (Z_ERR); 27717c478bd9Sstevel@tonic-gate } 27727c478bd9Sstevel@tonic-gate while (zonecfg_getnwifent(handle, &nwiftab) == Z_OK) { 27737c478bd9Sstevel@tonic-gate struct lifreq lifr; 27741390a385Sgjelinek sa_family_t af = AF_UNSPEC; 27757c478bd9Sstevel@tonic-gate int so, res; 27767c478bd9Sstevel@tonic-gate 27777c478bd9Sstevel@tonic-gate /* skip any loopback interfaces */ 27787c478bd9Sstevel@tonic-gate if (strcmp(nwiftab.zone_nwif_physical, "lo0") == 0) 27797c478bd9Sstevel@tonic-gate continue; 27807c478bd9Sstevel@tonic-gate if ((res = zonecfg_valid_net_address(nwiftab.zone_nwif_address, 27817c478bd9Sstevel@tonic-gate &lifr)) != Z_OK) { 27821390a385Sgjelinek print_net_err(nwiftab.zone_nwif_physical, 27831390a385Sgjelinek nwiftab.zone_nwif_address, af, 27841390a385Sgjelinek zonecfg_strerror(res)); 27857c478bd9Sstevel@tonic-gate return_code = Z_ERR; 27867c478bd9Sstevel@tonic-gate continue; 27877c478bd9Sstevel@tonic-gate } 27887c478bd9Sstevel@tonic-gate af = lifr.lifr_addr.ss_family; 27897c478bd9Sstevel@tonic-gate (void) memset(&lifr, 0, sizeof (lifr)); 27907c478bd9Sstevel@tonic-gate (void) strlcpy(lifr.lifr_name, nwiftab.zone_nwif_physical, 27917c478bd9Sstevel@tonic-gate sizeof (lifr.lifr_name)); 27927c478bd9Sstevel@tonic-gate lifr.lifr_addr.ss_family = af; 27937c478bd9Sstevel@tonic-gate if ((so = socket(af, SOCK_DGRAM, 0)) < 0) { 27947c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("could not verify %s " 27957c478bd9Sstevel@tonic-gate "%s=%s %s=%s: could not get socket: %s\n"), "net", 27967c478bd9Sstevel@tonic-gate "address", nwiftab.zone_nwif_address, "physical", 27977c478bd9Sstevel@tonic-gate nwiftab.zone_nwif_physical, strerror(errno)); 27987c478bd9Sstevel@tonic-gate return_code = Z_ERR; 27997c478bd9Sstevel@tonic-gate continue; 28007c478bd9Sstevel@tonic-gate } 28011390a385Sgjelinek if (ioctl(so, SIOCGLIFFLAGS, &lifr) < 0) { 280222321485Svp157776 /* 280322321485Svp157776 * The interface failed to come up. We continue on 280422321485Svp157776 * anyway for the sake of consistency: a zone is not 280522321485Svp157776 * shut down if the interface fails any time after 280622321485Svp157776 * boot, nor does the global zone fail to boot if an 280722321485Svp157776 * interface fails. 280822321485Svp157776 */ 280922321485Svp157776 (void) fprintf(stderr, 281022321485Svp157776 gettext("WARNING: skipping interface '%s' which " 281122321485Svp157776 "may not be present/plumbed in the global zone.\n"), 281222321485Svp157776 nwiftab.zone_nwif_physical); 281322321485Svp157776 28147c478bd9Sstevel@tonic-gate } 28157c478bd9Sstevel@tonic-gate (void) close(so); 28167c478bd9Sstevel@tonic-gate } 28177c478bd9Sstevel@tonic-gate (void) zonecfg_endnwifent(handle); 2818108322fbScarlsonj no_net: 28197c478bd9Sstevel@tonic-gate 2820e7f3c547Sgjelinek /* verify that lofs has not been excluded from the kernel */ 28218cd327d5Sgjelinek if (!(cmd_num == CMD_DETACH || cmd_num == CMD_ATTACH || 28228cd327d5Sgjelinek cmd_num == CMD_MOVE || cmd_num == CMD_CLONE) && 28238cd327d5Sgjelinek modctl(MODLOAD, 1, "fs/lofs", NULL) != 0) { 2824e7f3c547Sgjelinek if (errno == ENXIO) 2825e7f3c547Sgjelinek (void) fprintf(stderr, gettext("could not verify " 2826e7f3c547Sgjelinek "lofs(7FS): possibly excluded in /etc/system\n")); 2827e7f3c547Sgjelinek else 2828e7f3c547Sgjelinek (void) fprintf(stderr, gettext("could not verify " 2829e7f3c547Sgjelinek "lofs(7FS): %s\n"), strerror(errno)); 2830e7f3c547Sgjelinek return_code = Z_ERR; 2831e7f3c547Sgjelinek } 2832e7f3c547Sgjelinek 28337c478bd9Sstevel@tonic-gate if (verify_filesystems(handle) != Z_OK) 28347c478bd9Sstevel@tonic-gate return_code = Z_ERR; 2835b5abaf04Sgjelinek if (verify_ipd(handle) != Z_OK) 2836b5abaf04Sgjelinek return_code = Z_ERR; 2837108322fbScarlsonj if (!in_alt_root && verify_rctls(handle) != Z_OK) 28387c478bd9Sstevel@tonic-gate return_code = Z_ERR; 2839108322fbScarlsonj if (!in_alt_root && verify_pool(handle) != Z_OK) 28407c478bd9Sstevel@tonic-gate return_code = Z_ERR; 2841ce28b40eSzt129084 if (!in_alt_root && verify_brand(handle, cmd_num, argv) != Z_OK) 28429acbbeafSnn35248 return_code = Z_ERR; 2843fa9e4066Sahrens if (!in_alt_root && verify_datasets(handle) != Z_OK) 2844fa9e4066Sahrens return_code = Z_ERR; 2845ffbafc53Scomay 2846ffbafc53Scomay /* 2847ffbafc53Scomay * As the "mount" command is used for patching/upgrading of zones 2848ffbafc53Scomay * or other maintenance processes, the zone's privilege set is not 2849ffbafc53Scomay * checked in this case. Instead, the default, safe set of 2850ffbafc53Scomay * privileges will be used when this zone is created in the 2851ffbafc53Scomay * kernel. 2852ffbafc53Scomay */ 2853ffbafc53Scomay if (!in_alt_root && cmd_num != CMD_MOUNT && 2854ffbafc53Scomay verify_limitpriv(handle) != Z_OK) 2855ffbafc53Scomay return_code = Z_ERR; 28568cd327d5Sgjelinek 28578cd327d5Sgjelinek return (return_code); 28588cd327d5Sgjelinek } 28598cd327d5Sgjelinek 28608cd327d5Sgjelinek static int 2861ce28b40eSzt129084 verify_details(int cmd_num, char *argv[]) 28628cd327d5Sgjelinek { 28638cd327d5Sgjelinek zone_dochandle_t handle; 28648cd327d5Sgjelinek char zonepath[MAXPATHLEN], checkpath[MAXPATHLEN]; 28658cd327d5Sgjelinek int return_code = Z_OK; 28668cd327d5Sgjelinek int err; 28678cd327d5Sgjelinek 28688cd327d5Sgjelinek if ((handle = zonecfg_init_handle()) == NULL) { 28698cd327d5Sgjelinek zperror(cmd_to_str(cmd_num), B_TRUE); 28708cd327d5Sgjelinek return (Z_ERR); 28718cd327d5Sgjelinek } 28728cd327d5Sgjelinek if ((err = zonecfg_get_handle(target_zone, handle)) != Z_OK) { 28738cd327d5Sgjelinek errno = err; 28748cd327d5Sgjelinek zperror(cmd_to_str(cmd_num), B_TRUE); 28758cd327d5Sgjelinek zonecfg_fini_handle(handle); 28768cd327d5Sgjelinek return (Z_ERR); 28778cd327d5Sgjelinek } 28788cd327d5Sgjelinek if ((err = zonecfg_get_zonepath(handle, zonepath, sizeof (zonepath))) != 28798cd327d5Sgjelinek Z_OK) { 28808cd327d5Sgjelinek errno = err; 28818cd327d5Sgjelinek zperror(cmd_to_str(cmd_num), B_TRUE); 28828cd327d5Sgjelinek zonecfg_fini_handle(handle); 28838cd327d5Sgjelinek return (Z_ERR); 28848cd327d5Sgjelinek } 28858cd327d5Sgjelinek /* 28868cd327d5Sgjelinek * zonecfg_get_zonepath() gets its data from the XML repository. 28878cd327d5Sgjelinek * Verify this against the index file, which is checked first by 28888cd327d5Sgjelinek * zone_get_zonepath(). If they don't match, bail out. 28898cd327d5Sgjelinek */ 28908cd327d5Sgjelinek if ((err = zone_get_zonepath(target_zone, checkpath, 28918cd327d5Sgjelinek sizeof (checkpath))) != Z_OK) { 28928cd327d5Sgjelinek errno = err; 28938cd327d5Sgjelinek zperror2(target_zone, gettext("could not get zone path")); 28948cd327d5Sgjelinek return (Z_ERR); 28958cd327d5Sgjelinek } 28968cd327d5Sgjelinek if (strcmp(zonepath, checkpath) != 0) { 28978cd327d5Sgjelinek /* 28988cd327d5Sgjelinek * TRANSLATION_NOTE 28998cd327d5Sgjelinek * XML and zonepath are literals that should not be translated. 29008cd327d5Sgjelinek */ 29018cd327d5Sgjelinek (void) fprintf(stderr, gettext("The XML repository has " 29028cd327d5Sgjelinek "zonepath '%s',\nbut the index file has zonepath '%s'.\n" 29038cd327d5Sgjelinek "These must match, so fix the incorrect entry.\n"), 29048cd327d5Sgjelinek zonepath, checkpath); 29058cd327d5Sgjelinek return (Z_ERR); 29068cd327d5Sgjelinek } 29078cd327d5Sgjelinek if (validate_zonepath(zonepath, cmd_num) != Z_OK) { 29088cd327d5Sgjelinek (void) fprintf(stderr, gettext("could not verify zonepath %s " 29098cd327d5Sgjelinek "because of the above errors.\n"), zonepath); 29108cd327d5Sgjelinek return_code = Z_ERR; 29118cd327d5Sgjelinek } 29128cd327d5Sgjelinek 2913ce28b40eSzt129084 if (verify_handle(cmd_num, handle, argv) != Z_OK) 29148cd327d5Sgjelinek return_code = Z_ERR; 29158cd327d5Sgjelinek 29167c478bd9Sstevel@tonic-gate zonecfg_fini_handle(handle); 29177c478bd9Sstevel@tonic-gate if (return_code == Z_ERR) 29187c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 29197c478bd9Sstevel@tonic-gate gettext("%s: zone %s failed to verify\n"), 29207c478bd9Sstevel@tonic-gate execname, target_zone); 29217c478bd9Sstevel@tonic-gate return (return_code); 29227c478bd9Sstevel@tonic-gate } 29237c478bd9Sstevel@tonic-gate 29247c478bd9Sstevel@tonic-gate static int 29257c478bd9Sstevel@tonic-gate verify_func(int argc, char *argv[]) 29267c478bd9Sstevel@tonic-gate { 29277c478bd9Sstevel@tonic-gate int arg; 29287c478bd9Sstevel@tonic-gate 29297c478bd9Sstevel@tonic-gate optind = 0; 29307c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 29317c478bd9Sstevel@tonic-gate switch (arg) { 29327c478bd9Sstevel@tonic-gate case '?': 29337c478bd9Sstevel@tonic-gate sub_usage(SHELP_VERIFY, CMD_VERIFY); 29347c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 29357c478bd9Sstevel@tonic-gate default: 29367c478bd9Sstevel@tonic-gate sub_usage(SHELP_VERIFY, CMD_VERIFY); 29377c478bd9Sstevel@tonic-gate return (Z_USAGE); 29387c478bd9Sstevel@tonic-gate } 29397c478bd9Sstevel@tonic-gate } 29407c478bd9Sstevel@tonic-gate if (argc > optind) { 29417c478bd9Sstevel@tonic-gate sub_usage(SHELP_VERIFY, CMD_VERIFY); 29427c478bd9Sstevel@tonic-gate return (Z_USAGE); 29437c478bd9Sstevel@tonic-gate } 29449acbbeafSnn35248 if (sanity_check(target_zone, CMD_VERIFY, B_FALSE, B_FALSE, B_FALSE) 29459acbbeafSnn35248 != Z_OK) 29467c478bd9Sstevel@tonic-gate return (Z_ERR); 2947ce28b40eSzt129084 return (verify_details(CMD_VERIFY, argv)); 29487c478bd9Sstevel@tonic-gate } 29497c478bd9Sstevel@tonic-gate 29509acbbeafSnn35248 static int 29519acbbeafSnn35248 addopt(char *buf, int opt, char *optarg, size_t bufsize) 29529acbbeafSnn35248 { 29539acbbeafSnn35248 char optstring[4]; 29549acbbeafSnn35248 29559acbbeafSnn35248 if (opt > 0) 29569acbbeafSnn35248 (void) sprintf(optstring, " -%c", opt); 29579acbbeafSnn35248 else 29589acbbeafSnn35248 (void) strcpy(optstring, " "); 29599acbbeafSnn35248 29609acbbeafSnn35248 if ((strlcat(buf, optstring, bufsize) > bufsize)) 29619acbbeafSnn35248 return (Z_ERR); 29629acbbeafSnn35248 if ((optarg != NULL) && (strlcat(buf, optarg, bufsize) > bufsize)) 29639acbbeafSnn35248 return (Z_ERR); 29649acbbeafSnn35248 return (Z_OK); 29659acbbeafSnn35248 } 29667c478bd9Sstevel@tonic-gate 29677c478bd9Sstevel@tonic-gate static int 29687c478bd9Sstevel@tonic-gate install_func(int argc, char *argv[]) 29697c478bd9Sstevel@tonic-gate { 29709acbbeafSnn35248 char cmdbuf[MAXPATHLEN]; 29717c478bd9Sstevel@tonic-gate int lockfd; 29729acbbeafSnn35248 int arg, err, subproc_err; 29737c478bd9Sstevel@tonic-gate char zonepath[MAXPATHLEN]; 2974123807fbSedp brand_handle_t bh = NULL; 29757c478bd9Sstevel@tonic-gate int status; 29760b5de56dSgjelinek boolean_t nodataset = B_FALSE; 29779acbbeafSnn35248 char opts[128]; 29789acbbeafSnn35248 29799acbbeafSnn35248 if (target_zone == NULL) { 29809acbbeafSnn35248 sub_usage(SHELP_INSTALL, CMD_INSTALL); 29819acbbeafSnn35248 return (Z_USAGE); 29829acbbeafSnn35248 } 29837c478bd9Sstevel@tonic-gate 2984108322fbScarlsonj if (zonecfg_in_alt_root()) { 2985108322fbScarlsonj zerror(gettext("cannot install zone in alternate root")); 2986108322fbScarlsonj return (Z_ERR); 2987108322fbScarlsonj } 2988108322fbScarlsonj 29899acbbeafSnn35248 if ((err = zone_get_zonepath(target_zone, zonepath, 29909acbbeafSnn35248 sizeof (zonepath))) != Z_OK) { 29919acbbeafSnn35248 errno = err; 29929acbbeafSnn35248 zperror2(target_zone, gettext("could not get zone path")); 29939acbbeafSnn35248 return (Z_ERR); 29949acbbeafSnn35248 } 29959acbbeafSnn35248 29969acbbeafSnn35248 /* Fetch the install command from the brand configuration. */ 2997123807fbSedp if ((bh = brand_open(target_brand)) == NULL) { 29989acbbeafSnn35248 zerror(gettext("missing or invalid brand")); 29999acbbeafSnn35248 return (Z_ERR); 30009acbbeafSnn35248 } 30019acbbeafSnn35248 30029acbbeafSnn35248 (void) strcpy(cmdbuf, EXEC_PREFIX); 3003123807fbSedp if (brand_get_install(bh, target_zone, zonepath, cmdbuf + EXEC_LEN, 30049acbbeafSnn35248 sizeof (cmdbuf) - EXEC_LEN, 0, NULL) != 0) { 30059acbbeafSnn35248 zerror("invalid brand configuration: missing install resource"); 3006123807fbSedp brand_close(bh); 30079acbbeafSnn35248 return (Z_ERR); 30089acbbeafSnn35248 } 30099acbbeafSnn35248 30109acbbeafSnn35248 (void) strcpy(opts, "?x:"); 30119acbbeafSnn35248 if (!is_native_zone) { 30129acbbeafSnn35248 /* 30139acbbeafSnn35248 * Fetch the list of recognized command-line options from 30149acbbeafSnn35248 * the brand configuration file. 30159acbbeafSnn35248 */ 3016123807fbSedp if (brand_get_installopts(bh, opts + strlen(opts), 30179acbbeafSnn35248 sizeof (opts) - strlen(opts)) != 0) { 30189acbbeafSnn35248 zerror("invalid brand configuration: missing " 30199acbbeafSnn35248 "install options resource"); 3020123807fbSedp brand_close(bh); 30219acbbeafSnn35248 return (Z_ERR); 30229acbbeafSnn35248 } 30239acbbeafSnn35248 } 3024123807fbSedp brand_close(bh); 30259acbbeafSnn35248 30267c478bd9Sstevel@tonic-gate optind = 0; 30279acbbeafSnn35248 while ((arg = getopt(argc, argv, opts)) != EOF) { 30287c478bd9Sstevel@tonic-gate switch (arg) { 30297c478bd9Sstevel@tonic-gate case '?': 30307c478bd9Sstevel@tonic-gate sub_usage(SHELP_INSTALL, CMD_INSTALL); 30317c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 30320b5de56dSgjelinek case 'x': 30330b5de56dSgjelinek if (strcmp(optarg, "nodataset") != 0) { 30340b5de56dSgjelinek sub_usage(SHELP_INSTALL, CMD_INSTALL); 30350b5de56dSgjelinek return (Z_USAGE); 30360b5de56dSgjelinek } 30370b5de56dSgjelinek nodataset = B_TRUE; 30380b5de56dSgjelinek break; 30397c478bd9Sstevel@tonic-gate default: 30409acbbeafSnn35248 if (is_native_zone) { 30417c478bd9Sstevel@tonic-gate sub_usage(SHELP_INSTALL, CMD_INSTALL); 30427c478bd9Sstevel@tonic-gate return (Z_USAGE); 30437c478bd9Sstevel@tonic-gate } 30449acbbeafSnn35248 30459acbbeafSnn35248 /* 30469acbbeafSnn35248 * This option isn't for zoneadm, so append it to 30479acbbeafSnn35248 * the command line passed to the brand-specific 30489acbbeafSnn35248 * install routine. 30499acbbeafSnn35248 */ 30509acbbeafSnn35248 if (addopt(cmdbuf, optopt, optarg, 30519acbbeafSnn35248 sizeof (cmdbuf)) != Z_OK) { 30529acbbeafSnn35248 zerror("Install command line too long"); 30539acbbeafSnn35248 return (Z_ERR); 30547c478bd9Sstevel@tonic-gate } 30559acbbeafSnn35248 break; 30567c478bd9Sstevel@tonic-gate } 30579acbbeafSnn35248 } 30589acbbeafSnn35248 30599acbbeafSnn35248 if (!is_native_zone) { 30609acbbeafSnn35248 for (; optind < argc; optind++) { 30619acbbeafSnn35248 if (addopt(cmdbuf, 0, argv[optind], 30629acbbeafSnn35248 sizeof (cmdbuf)) != Z_OK) { 30639acbbeafSnn35248 zerror("Install command line too long"); 30649acbbeafSnn35248 return (Z_ERR); 30659acbbeafSnn35248 } 30669acbbeafSnn35248 } 30679acbbeafSnn35248 } 30689acbbeafSnn35248 30699acbbeafSnn35248 if (sanity_check(target_zone, CMD_INSTALL, B_FALSE, B_TRUE, B_FALSE) 30709acbbeafSnn35248 != Z_OK) 30717c478bd9Sstevel@tonic-gate return (Z_ERR); 3072ce28b40eSzt129084 if (verify_details(CMD_INSTALL, argv) != Z_OK) 30737c478bd9Sstevel@tonic-gate return (Z_ERR); 30747c478bd9Sstevel@tonic-gate 30757c478bd9Sstevel@tonic-gate if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 30767c478bd9Sstevel@tonic-gate zerror(gettext("another %s may have an operation in progress."), 3077865e09a4Sgjelinek "zoneadm"); 30787c478bd9Sstevel@tonic-gate return (Z_ERR); 30797c478bd9Sstevel@tonic-gate } 30807c478bd9Sstevel@tonic-gate err = zone_set_state(target_zone, ZONE_STATE_INCOMPLETE); 30817c478bd9Sstevel@tonic-gate if (err != Z_OK) { 30827c478bd9Sstevel@tonic-gate errno = err; 30837c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not set state")); 30847c478bd9Sstevel@tonic-gate goto done; 30857c478bd9Sstevel@tonic-gate } 30867c478bd9Sstevel@tonic-gate 30879acbbeafSnn35248 if (!nodataset) 30889acbbeafSnn35248 create_zfs_zonepath(zonepath); 30899acbbeafSnn35248 30907c478bd9Sstevel@tonic-gate /* 30917c478bd9Sstevel@tonic-gate * According to the Application Packaging Developer's Guide, a 30927c478bd9Sstevel@tonic-gate * "checkinstall" script when included in a package is executed as 30937c478bd9Sstevel@tonic-gate * the user "install", if such a user exists, or by the user 30947c478bd9Sstevel@tonic-gate * "nobody". In order to support this dubious behavior, the path 30957c478bd9Sstevel@tonic-gate * to the zone being constructed is opened up during the life of 30967c478bd9Sstevel@tonic-gate * the command laying down the zone's root file system. Once this 30977c478bd9Sstevel@tonic-gate * has completed, regardless of whether it was successful, the 30987c478bd9Sstevel@tonic-gate * path to the zone is again restricted. 30997c478bd9Sstevel@tonic-gate */ 31007c478bd9Sstevel@tonic-gate if (chmod(zonepath, DEFAULT_DIR_MODE) != 0) { 31017c478bd9Sstevel@tonic-gate zperror(zonepath, B_FALSE); 31027c478bd9Sstevel@tonic-gate err = Z_ERR; 31037c478bd9Sstevel@tonic-gate goto done; 31047c478bd9Sstevel@tonic-gate } 31057c478bd9Sstevel@tonic-gate 31069acbbeafSnn35248 if (is_native_zone) 31077c478bd9Sstevel@tonic-gate status = do_subproc(cmdbuf); 31089acbbeafSnn35248 else 31099acbbeafSnn35248 status = do_subproc_interactive(cmdbuf); 31109acbbeafSnn35248 31117c478bd9Sstevel@tonic-gate if (chmod(zonepath, S_IRWXU) != 0) { 31127c478bd9Sstevel@tonic-gate zperror(zonepath, B_FALSE); 31137c478bd9Sstevel@tonic-gate err = Z_ERR; 31147c478bd9Sstevel@tonic-gate goto done; 31157c478bd9Sstevel@tonic-gate } 31169acbbeafSnn35248 if ((subproc_err = 31179acbbeafSnn35248 subproc_status(gettext("brand-specific installation"), status, 31189acbbeafSnn35248 B_FALSE)) != ZONE_SUBPROC_OK) { 31199acbbeafSnn35248 err = Z_ERR; 31207c478bd9Sstevel@tonic-gate goto done; 31219acbbeafSnn35248 } 31227c478bd9Sstevel@tonic-gate 31237c478bd9Sstevel@tonic-gate if ((err = zone_set_state(target_zone, ZONE_STATE_INSTALLED)) != Z_OK) { 31247c478bd9Sstevel@tonic-gate errno = err; 31257c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not set state")); 31267c478bd9Sstevel@tonic-gate goto done; 31277c478bd9Sstevel@tonic-gate } 31287c478bd9Sstevel@tonic-gate 31297c478bd9Sstevel@tonic-gate done: 31309acbbeafSnn35248 /* 31319acbbeafSnn35248 * If the install script exited with ZONE_SUBPROC_USAGE or 31329acbbeafSnn35248 * ZONE_SUBPROC_NOTCOMPLETE, try to clean up the zone and leave the 31339acbbeafSnn35248 * zone in the CONFIGURED state so that another install can be 31349acbbeafSnn35248 * attempted without requiring an uninstall first. 31359acbbeafSnn35248 */ 31369acbbeafSnn35248 if ((subproc_err == ZONE_SUBPROC_USAGE) || 31379acbbeafSnn35248 (subproc_err == ZONE_SUBPROC_NOTCOMPLETE)) { 31389acbbeafSnn35248 if ((err = cleanup_zonepath(zonepath, B_FALSE)) != Z_OK) { 31399acbbeafSnn35248 errno = err; 31409acbbeafSnn35248 zperror2(target_zone, 31419acbbeafSnn35248 gettext("cleaning up zonepath failed")); 31429acbbeafSnn35248 } else if ((err = zone_set_state(target_zone, 31439acbbeafSnn35248 ZONE_STATE_CONFIGURED)) != Z_OK) { 31449acbbeafSnn35248 errno = err; 31459acbbeafSnn35248 zperror2(target_zone, gettext("could not set state")); 31469acbbeafSnn35248 } 31479acbbeafSnn35248 } 31489acbbeafSnn35248 31497c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 31507c478bd9Sstevel@tonic-gate return ((err == Z_OK) ? Z_OK : Z_ERR); 31517c478bd9Sstevel@tonic-gate } 31527c478bd9Sstevel@tonic-gate 31537c478bd9Sstevel@tonic-gate /* 3154865e09a4Sgjelinek * Check that the inherited pkg dirs are the same for the clone and its source. 3155865e09a4Sgjelinek * The easiest way to do that is check that the list of ipds is the same 3156865e09a4Sgjelinek * by matching each one against the other. This algorithm should be fine since 3157865e09a4Sgjelinek * the list of ipds should not be that long. 3158865e09a4Sgjelinek */ 3159865e09a4Sgjelinek static int 3160865e09a4Sgjelinek valid_ipd_clone(zone_dochandle_t s_handle, char *source_zone, 3161865e09a4Sgjelinek zone_dochandle_t t_handle, char *target_zone) 3162865e09a4Sgjelinek { 3163865e09a4Sgjelinek int err; 3164865e09a4Sgjelinek int res = Z_OK; 3165865e09a4Sgjelinek int s_cnt = 0; 3166865e09a4Sgjelinek int t_cnt = 0; 3167865e09a4Sgjelinek struct zone_fstab s_fstab; 3168865e09a4Sgjelinek struct zone_fstab t_fstab; 3169865e09a4Sgjelinek 3170865e09a4Sgjelinek /* 3171865e09a4Sgjelinek * First check the source of the clone against the target. 3172865e09a4Sgjelinek */ 3173865e09a4Sgjelinek if ((err = zonecfg_setipdent(s_handle)) != Z_OK) { 3174865e09a4Sgjelinek errno = err; 3175865e09a4Sgjelinek zperror2(source_zone, gettext("could not enumerate " 3176865e09a4Sgjelinek "inherit-pkg-dirs")); 3177865e09a4Sgjelinek return (Z_ERR); 3178865e09a4Sgjelinek } 3179865e09a4Sgjelinek 3180865e09a4Sgjelinek while (zonecfg_getipdent(s_handle, &s_fstab) == Z_OK) { 3181865e09a4Sgjelinek boolean_t match = B_FALSE; 3182865e09a4Sgjelinek 3183865e09a4Sgjelinek s_cnt++; 3184865e09a4Sgjelinek 3185865e09a4Sgjelinek if ((err = zonecfg_setipdent(t_handle)) != Z_OK) { 3186865e09a4Sgjelinek errno = err; 3187865e09a4Sgjelinek zperror2(target_zone, gettext("could not enumerate " 3188865e09a4Sgjelinek "inherit-pkg-dirs")); 3189865e09a4Sgjelinek (void) zonecfg_endipdent(s_handle); 3190865e09a4Sgjelinek return (Z_ERR); 3191865e09a4Sgjelinek } 3192865e09a4Sgjelinek 3193865e09a4Sgjelinek while (zonecfg_getipdent(t_handle, &t_fstab) == Z_OK) { 3194865e09a4Sgjelinek if (strcmp(s_fstab.zone_fs_dir, t_fstab.zone_fs_dir) 3195865e09a4Sgjelinek == 0) { 3196865e09a4Sgjelinek match = B_TRUE; 3197865e09a4Sgjelinek break; 3198865e09a4Sgjelinek } 3199865e09a4Sgjelinek } 3200865e09a4Sgjelinek (void) zonecfg_endipdent(t_handle); 3201865e09a4Sgjelinek 3202865e09a4Sgjelinek if (!match) { 3203865e09a4Sgjelinek (void) fprintf(stderr, gettext("inherit-pkg-dir " 3204865e09a4Sgjelinek "'%s' is not configured in zone %s.\n"), 3205865e09a4Sgjelinek s_fstab.zone_fs_dir, target_zone); 3206865e09a4Sgjelinek res = Z_ERR; 3207865e09a4Sgjelinek } 3208865e09a4Sgjelinek } 3209865e09a4Sgjelinek 3210865e09a4Sgjelinek (void) zonecfg_endipdent(s_handle); 3211865e09a4Sgjelinek 3212865e09a4Sgjelinek /* skip the next check if we already have errors */ 3213865e09a4Sgjelinek if (res == Z_ERR) 3214865e09a4Sgjelinek return (res); 3215865e09a4Sgjelinek 3216865e09a4Sgjelinek /* 3217865e09a4Sgjelinek * Now check the number of ipds in the target so we can verify 3218865e09a4Sgjelinek * that the source is not a subset of the target. 3219865e09a4Sgjelinek */ 3220865e09a4Sgjelinek if ((err = zonecfg_setipdent(t_handle)) != Z_OK) { 3221865e09a4Sgjelinek errno = err; 3222865e09a4Sgjelinek zperror2(target_zone, gettext("could not enumerate " 3223865e09a4Sgjelinek "inherit-pkg-dirs")); 3224865e09a4Sgjelinek return (Z_ERR); 3225865e09a4Sgjelinek } 3226865e09a4Sgjelinek 3227865e09a4Sgjelinek while (zonecfg_getipdent(t_handle, &t_fstab) == Z_OK) 3228865e09a4Sgjelinek t_cnt++; 3229865e09a4Sgjelinek 3230865e09a4Sgjelinek (void) zonecfg_endipdent(t_handle); 3231865e09a4Sgjelinek 3232865e09a4Sgjelinek if (t_cnt != s_cnt) { 3233865e09a4Sgjelinek (void) fprintf(stderr, gettext("Zone %s is configured " 3234865e09a4Sgjelinek "with inherit-pkg-dirs that are not configured in zone " 3235865e09a4Sgjelinek "%s.\n"), target_zone, source_zone); 3236865e09a4Sgjelinek res = Z_ERR; 3237865e09a4Sgjelinek } 3238865e09a4Sgjelinek 3239865e09a4Sgjelinek return (res); 3240865e09a4Sgjelinek } 3241865e09a4Sgjelinek 3242865e09a4Sgjelinek static void 3243865e09a4Sgjelinek warn_dev_match(zone_dochandle_t s_handle, char *source_zone, 3244865e09a4Sgjelinek zone_dochandle_t t_handle, char *target_zone) 3245865e09a4Sgjelinek { 3246865e09a4Sgjelinek int err; 3247865e09a4Sgjelinek struct zone_devtab s_devtab; 3248865e09a4Sgjelinek struct zone_devtab t_devtab; 3249865e09a4Sgjelinek 3250865e09a4Sgjelinek if ((err = zonecfg_setdevent(t_handle)) != Z_OK) { 3251865e09a4Sgjelinek errno = err; 3252865e09a4Sgjelinek zperror2(target_zone, gettext("could not enumerate devices")); 3253865e09a4Sgjelinek return; 3254865e09a4Sgjelinek } 3255865e09a4Sgjelinek 3256865e09a4Sgjelinek while (zonecfg_getdevent(t_handle, &t_devtab) == Z_OK) { 3257865e09a4Sgjelinek if ((err = zonecfg_setdevent(s_handle)) != Z_OK) { 3258865e09a4Sgjelinek errno = err; 3259865e09a4Sgjelinek zperror2(source_zone, 3260865e09a4Sgjelinek gettext("could not enumerate devices")); 3261865e09a4Sgjelinek (void) zonecfg_enddevent(t_handle); 3262865e09a4Sgjelinek return; 3263865e09a4Sgjelinek } 3264865e09a4Sgjelinek 3265865e09a4Sgjelinek while (zonecfg_getdevent(s_handle, &s_devtab) == Z_OK) { 3266865e09a4Sgjelinek /* 3267865e09a4Sgjelinek * Use fnmatch to catch the case where wildcards 3268865e09a4Sgjelinek * were used in one zone and the other has an 3269865e09a4Sgjelinek * explicit entry (e.g. /dev/dsk/c0t0d0s6 vs. 3270865e09a4Sgjelinek * /dev/\*dsk/c0t0d0s6). 3271865e09a4Sgjelinek */ 3272865e09a4Sgjelinek if (fnmatch(t_devtab.zone_dev_match, 3273865e09a4Sgjelinek s_devtab.zone_dev_match, FNM_PATHNAME) == 0 || 3274865e09a4Sgjelinek fnmatch(s_devtab.zone_dev_match, 3275865e09a4Sgjelinek t_devtab.zone_dev_match, FNM_PATHNAME) == 0) { 3276865e09a4Sgjelinek (void) fprintf(stderr, 3277865e09a4Sgjelinek gettext("WARNING: device '%s' " 3278865e09a4Sgjelinek "is configured in both zones.\n"), 3279865e09a4Sgjelinek t_devtab.zone_dev_match); 3280865e09a4Sgjelinek break; 3281865e09a4Sgjelinek } 3282865e09a4Sgjelinek } 3283865e09a4Sgjelinek (void) zonecfg_enddevent(s_handle); 3284865e09a4Sgjelinek } 3285865e09a4Sgjelinek 3286865e09a4Sgjelinek (void) zonecfg_enddevent(t_handle); 3287865e09a4Sgjelinek } 3288865e09a4Sgjelinek 3289865e09a4Sgjelinek /* 3290865e09a4Sgjelinek * Check if the specified mount option (opt) is contained within the 3291865e09a4Sgjelinek * options string. 3292865e09a4Sgjelinek */ 3293865e09a4Sgjelinek static boolean_t 3294865e09a4Sgjelinek opt_match(char *opt, char *options) 3295865e09a4Sgjelinek { 3296865e09a4Sgjelinek char *p; 3297865e09a4Sgjelinek char *lastp; 3298865e09a4Sgjelinek 3299865e09a4Sgjelinek if ((p = strtok_r(options, ",", &lastp)) != NULL) { 3300865e09a4Sgjelinek if (strcmp(p, opt) == 0) 3301865e09a4Sgjelinek return (B_TRUE); 3302865e09a4Sgjelinek while ((p = strtok_r(NULL, ",", &lastp)) != NULL) { 3303865e09a4Sgjelinek if (strcmp(p, opt) == 0) 3304865e09a4Sgjelinek return (B_TRUE); 3305865e09a4Sgjelinek } 3306865e09a4Sgjelinek } 3307865e09a4Sgjelinek 3308865e09a4Sgjelinek return (B_FALSE); 3309865e09a4Sgjelinek } 3310865e09a4Sgjelinek 33110b5de56dSgjelinek #define RW_LOFS "WARNING: read-write lofs file system on '%s' is configured " \ 3312865e09a4Sgjelinek "in both zones.\n" 3313865e09a4Sgjelinek 3314865e09a4Sgjelinek static void 3315865e09a4Sgjelinek print_fs_warnings(struct zone_fstab *s_fstab, struct zone_fstab *t_fstab) 3316865e09a4Sgjelinek { 3317865e09a4Sgjelinek /* 3318865e09a4Sgjelinek * It is ok to have shared lofs mounted fs but we want to warn if 3319865e09a4Sgjelinek * either is rw since this will effect the other zone. 3320865e09a4Sgjelinek */ 3321865e09a4Sgjelinek if (strcmp(t_fstab->zone_fs_type, "lofs") == 0) { 3322865e09a4Sgjelinek zone_fsopt_t *optp; 3323865e09a4Sgjelinek 3324865e09a4Sgjelinek /* The default is rw so no options means rw */ 3325865e09a4Sgjelinek if (t_fstab->zone_fs_options == NULL || 3326865e09a4Sgjelinek s_fstab->zone_fs_options == NULL) { 3327865e09a4Sgjelinek (void) fprintf(stderr, gettext(RW_LOFS), 3328865e09a4Sgjelinek t_fstab->zone_fs_special); 3329865e09a4Sgjelinek return; 3330865e09a4Sgjelinek } 3331865e09a4Sgjelinek 3332865e09a4Sgjelinek for (optp = s_fstab->zone_fs_options; optp != NULL; 3333865e09a4Sgjelinek optp = optp->zone_fsopt_next) { 3334865e09a4Sgjelinek if (opt_match("rw", optp->zone_fsopt_opt)) { 3335865e09a4Sgjelinek (void) fprintf(stderr, gettext(RW_LOFS), 3336865e09a4Sgjelinek s_fstab->zone_fs_special); 3337865e09a4Sgjelinek return; 3338865e09a4Sgjelinek } 3339865e09a4Sgjelinek } 3340865e09a4Sgjelinek 3341865e09a4Sgjelinek for (optp = t_fstab->zone_fs_options; optp != NULL; 3342865e09a4Sgjelinek optp = optp->zone_fsopt_next) { 3343865e09a4Sgjelinek if (opt_match("rw", optp->zone_fsopt_opt)) { 3344865e09a4Sgjelinek (void) fprintf(stderr, gettext(RW_LOFS), 3345865e09a4Sgjelinek t_fstab->zone_fs_special); 3346865e09a4Sgjelinek return; 3347865e09a4Sgjelinek } 3348865e09a4Sgjelinek } 3349865e09a4Sgjelinek 3350865e09a4Sgjelinek return; 3351865e09a4Sgjelinek } 3352865e09a4Sgjelinek 3353865e09a4Sgjelinek /* 3354865e09a4Sgjelinek * TRANSLATION_NOTE 33550b5de56dSgjelinek * The first variable is the file system type and the second is 33560b5de56dSgjelinek * the file system special device. For example, 33570b5de56dSgjelinek * WARNING: ufs file system on '/dev/dsk/c0t0d0s0' ... 3358865e09a4Sgjelinek */ 33590b5de56dSgjelinek (void) fprintf(stderr, gettext("WARNING: %s file system on '%s' " 3360865e09a4Sgjelinek "is configured in both zones.\n"), t_fstab->zone_fs_type, 3361865e09a4Sgjelinek t_fstab->zone_fs_special); 3362865e09a4Sgjelinek } 3363865e09a4Sgjelinek 3364865e09a4Sgjelinek static void 3365865e09a4Sgjelinek warn_fs_match(zone_dochandle_t s_handle, char *source_zone, 3366865e09a4Sgjelinek zone_dochandle_t t_handle, char *target_zone) 3367865e09a4Sgjelinek { 3368865e09a4Sgjelinek int err; 3369865e09a4Sgjelinek struct zone_fstab s_fstab; 3370865e09a4Sgjelinek struct zone_fstab t_fstab; 3371865e09a4Sgjelinek 3372865e09a4Sgjelinek if ((err = zonecfg_setfsent(t_handle)) != Z_OK) { 3373865e09a4Sgjelinek errno = err; 3374865e09a4Sgjelinek zperror2(target_zone, 33750b5de56dSgjelinek gettext("could not enumerate file systems")); 3376865e09a4Sgjelinek return; 3377865e09a4Sgjelinek } 3378865e09a4Sgjelinek 3379865e09a4Sgjelinek while (zonecfg_getfsent(t_handle, &t_fstab) == Z_OK) { 3380865e09a4Sgjelinek if ((err = zonecfg_setfsent(s_handle)) != Z_OK) { 3381865e09a4Sgjelinek errno = err; 3382865e09a4Sgjelinek zperror2(source_zone, 33830b5de56dSgjelinek gettext("could not enumerate file systems")); 3384865e09a4Sgjelinek (void) zonecfg_endfsent(t_handle); 3385865e09a4Sgjelinek return; 3386865e09a4Sgjelinek } 3387865e09a4Sgjelinek 3388865e09a4Sgjelinek while (zonecfg_getfsent(s_handle, &s_fstab) == Z_OK) { 3389865e09a4Sgjelinek if (strcmp(t_fstab.zone_fs_special, 3390865e09a4Sgjelinek s_fstab.zone_fs_special) == 0) { 3391865e09a4Sgjelinek print_fs_warnings(&s_fstab, &t_fstab); 3392865e09a4Sgjelinek break; 3393865e09a4Sgjelinek } 3394865e09a4Sgjelinek } 3395865e09a4Sgjelinek (void) zonecfg_endfsent(s_handle); 3396865e09a4Sgjelinek } 3397865e09a4Sgjelinek 3398865e09a4Sgjelinek (void) zonecfg_endfsent(t_handle); 3399865e09a4Sgjelinek } 3400865e09a4Sgjelinek 3401865e09a4Sgjelinek /* 3402865e09a4Sgjelinek * We don't catch the case where you used the same IP address but 3403865e09a4Sgjelinek * it is not an exact string match. For example, 192.9.0.128 vs. 192.09.0.128. 3404865e09a4Sgjelinek * However, we're not going to worry about that but we will check for 3405865e09a4Sgjelinek * a possible netmask on one of the addresses (e.g. 10.0.0.1 and 10.0.0.1/24) 3406865e09a4Sgjelinek * and handle that case as a match. 3407865e09a4Sgjelinek */ 3408865e09a4Sgjelinek static void 3409865e09a4Sgjelinek warn_ip_match(zone_dochandle_t s_handle, char *source_zone, 3410865e09a4Sgjelinek zone_dochandle_t t_handle, char *target_zone) 3411865e09a4Sgjelinek { 3412865e09a4Sgjelinek int err; 3413865e09a4Sgjelinek struct zone_nwiftab s_nwiftab; 3414865e09a4Sgjelinek struct zone_nwiftab t_nwiftab; 3415865e09a4Sgjelinek 3416865e09a4Sgjelinek if ((err = zonecfg_setnwifent(t_handle)) != Z_OK) { 3417865e09a4Sgjelinek errno = err; 3418865e09a4Sgjelinek zperror2(target_zone, 3419865e09a4Sgjelinek gettext("could not enumerate network interfaces")); 3420865e09a4Sgjelinek return; 3421865e09a4Sgjelinek } 3422865e09a4Sgjelinek 3423865e09a4Sgjelinek while (zonecfg_getnwifent(t_handle, &t_nwiftab) == Z_OK) { 3424865e09a4Sgjelinek char *p; 3425865e09a4Sgjelinek 3426865e09a4Sgjelinek /* remove an (optional) netmask from the address */ 3427865e09a4Sgjelinek if ((p = strchr(t_nwiftab.zone_nwif_address, '/')) != NULL) 3428865e09a4Sgjelinek *p = '\0'; 3429865e09a4Sgjelinek 3430865e09a4Sgjelinek if ((err = zonecfg_setnwifent(s_handle)) != Z_OK) { 3431865e09a4Sgjelinek errno = err; 3432865e09a4Sgjelinek zperror2(source_zone, 3433865e09a4Sgjelinek gettext("could not enumerate network interfaces")); 3434865e09a4Sgjelinek (void) zonecfg_endnwifent(t_handle); 3435865e09a4Sgjelinek return; 3436865e09a4Sgjelinek } 3437865e09a4Sgjelinek 3438865e09a4Sgjelinek while (zonecfg_getnwifent(s_handle, &s_nwiftab) == Z_OK) { 3439865e09a4Sgjelinek /* remove an (optional) netmask from the address */ 3440865e09a4Sgjelinek if ((p = strchr(s_nwiftab.zone_nwif_address, '/')) 3441865e09a4Sgjelinek != NULL) 3442865e09a4Sgjelinek *p = '\0'; 3443865e09a4Sgjelinek 3444865e09a4Sgjelinek if (strcmp(t_nwiftab.zone_nwif_address, 3445865e09a4Sgjelinek s_nwiftab.zone_nwif_address) == 0) { 3446865e09a4Sgjelinek (void) fprintf(stderr, 3447865e09a4Sgjelinek gettext("WARNING: network address '%s' " 3448865e09a4Sgjelinek "is configured in both zones.\n"), 3449865e09a4Sgjelinek t_nwiftab.zone_nwif_address); 3450865e09a4Sgjelinek break; 3451865e09a4Sgjelinek } 3452865e09a4Sgjelinek } 3453865e09a4Sgjelinek (void) zonecfg_endnwifent(s_handle); 3454865e09a4Sgjelinek } 3455865e09a4Sgjelinek 3456865e09a4Sgjelinek (void) zonecfg_endnwifent(t_handle); 3457865e09a4Sgjelinek } 3458865e09a4Sgjelinek 3459865e09a4Sgjelinek static void 34609acbbeafSnn35248 warn_dataset_match(zone_dochandle_t s_handle, char *source, 34619acbbeafSnn35248 zone_dochandle_t t_handle, char *target) 3462865e09a4Sgjelinek { 3463865e09a4Sgjelinek int err; 3464865e09a4Sgjelinek struct zone_dstab s_dstab; 3465865e09a4Sgjelinek struct zone_dstab t_dstab; 3466865e09a4Sgjelinek 3467865e09a4Sgjelinek if ((err = zonecfg_setdsent(t_handle)) != Z_OK) { 3468865e09a4Sgjelinek errno = err; 34699acbbeafSnn35248 zperror2(target, gettext("could not enumerate datasets")); 3470865e09a4Sgjelinek return; 3471865e09a4Sgjelinek } 3472865e09a4Sgjelinek 3473865e09a4Sgjelinek while (zonecfg_getdsent(t_handle, &t_dstab) == Z_OK) { 3474865e09a4Sgjelinek if ((err = zonecfg_setdsent(s_handle)) != Z_OK) { 3475865e09a4Sgjelinek errno = err; 34769acbbeafSnn35248 zperror2(source, 3477865e09a4Sgjelinek gettext("could not enumerate datasets")); 3478865e09a4Sgjelinek (void) zonecfg_enddsent(t_handle); 3479865e09a4Sgjelinek return; 3480865e09a4Sgjelinek } 3481865e09a4Sgjelinek 3482865e09a4Sgjelinek while (zonecfg_getdsent(s_handle, &s_dstab) == Z_OK) { 3483865e09a4Sgjelinek if (strcmp(t_dstab.zone_dataset_name, 3484865e09a4Sgjelinek s_dstab.zone_dataset_name) == 0) { 34859acbbeafSnn35248 target_zone = source; 34869acbbeafSnn35248 zerror(gettext("WARNING: dataset '%s' " 3487865e09a4Sgjelinek "is configured in both zones.\n"), 3488865e09a4Sgjelinek t_dstab.zone_dataset_name); 3489865e09a4Sgjelinek break; 3490865e09a4Sgjelinek } 3491865e09a4Sgjelinek } 3492865e09a4Sgjelinek (void) zonecfg_enddsent(s_handle); 3493865e09a4Sgjelinek } 3494865e09a4Sgjelinek 3495865e09a4Sgjelinek (void) zonecfg_enddsent(t_handle); 3496865e09a4Sgjelinek } 3497865e09a4Sgjelinek 34989acbbeafSnn35248 /* 34999acbbeafSnn35248 * Check that the clone and its source have the same brand type. 35009acbbeafSnn35248 */ 35019acbbeafSnn35248 static int 35029acbbeafSnn35248 valid_brand_clone(char *source_zone, char *target_zone) 35039acbbeafSnn35248 { 3504123807fbSedp brand_handle_t bh; 35059acbbeafSnn35248 char source_brand[MAXNAMELEN]; 35069acbbeafSnn35248 35079acbbeafSnn35248 if ((zone_get_brand(source_zone, source_brand, 35089acbbeafSnn35248 sizeof (source_brand))) != Z_OK) { 35099acbbeafSnn35248 (void) fprintf(stderr, "%s: zone '%s': %s\n", 35109acbbeafSnn35248 execname, source_zone, gettext("missing or invalid brand")); 35119acbbeafSnn35248 return (Z_ERR); 35129acbbeafSnn35248 } 35139acbbeafSnn35248 35149acbbeafSnn35248 if (strcmp(source_brand, target_brand) != NULL) { 35159acbbeafSnn35248 (void) fprintf(stderr, 35169acbbeafSnn35248 gettext("%s: Zones '%s' and '%s' have different brand " 35179acbbeafSnn35248 "types.\n"), execname, source_zone, target_zone); 35189acbbeafSnn35248 return (Z_ERR); 35199acbbeafSnn35248 } 35209acbbeafSnn35248 3521123807fbSedp if ((bh = brand_open(target_brand)) == NULL) { 35229acbbeafSnn35248 zerror(gettext("missing or invalid brand")); 35239acbbeafSnn35248 return (Z_ERR); 35249acbbeafSnn35248 } 3525123807fbSedp brand_close(bh); 35269acbbeafSnn35248 return (Z_OK); 35279acbbeafSnn35248 } 35289acbbeafSnn35248 3529865e09a4Sgjelinek static int 3530865e09a4Sgjelinek validate_clone(char *source_zone, char *target_zone) 3531865e09a4Sgjelinek { 3532865e09a4Sgjelinek int err = Z_OK; 3533865e09a4Sgjelinek zone_dochandle_t s_handle; 3534865e09a4Sgjelinek zone_dochandle_t t_handle; 3535865e09a4Sgjelinek 3536865e09a4Sgjelinek if ((t_handle = zonecfg_init_handle()) == NULL) { 3537865e09a4Sgjelinek zperror(cmd_to_str(CMD_CLONE), B_TRUE); 3538865e09a4Sgjelinek return (Z_ERR); 3539865e09a4Sgjelinek } 3540865e09a4Sgjelinek if ((err = zonecfg_get_handle(target_zone, t_handle)) != Z_OK) { 3541865e09a4Sgjelinek errno = err; 3542865e09a4Sgjelinek zperror(cmd_to_str(CMD_CLONE), B_TRUE); 3543865e09a4Sgjelinek zonecfg_fini_handle(t_handle); 3544865e09a4Sgjelinek return (Z_ERR); 3545865e09a4Sgjelinek } 3546865e09a4Sgjelinek 3547865e09a4Sgjelinek if ((s_handle = zonecfg_init_handle()) == NULL) { 3548865e09a4Sgjelinek zperror(cmd_to_str(CMD_CLONE), B_TRUE); 3549865e09a4Sgjelinek zonecfg_fini_handle(t_handle); 3550865e09a4Sgjelinek return (Z_ERR); 3551865e09a4Sgjelinek } 3552865e09a4Sgjelinek if ((err = zonecfg_get_handle(source_zone, s_handle)) != Z_OK) { 3553865e09a4Sgjelinek errno = err; 3554865e09a4Sgjelinek zperror(cmd_to_str(CMD_CLONE), B_TRUE); 3555865e09a4Sgjelinek goto done; 3556865e09a4Sgjelinek } 3557865e09a4Sgjelinek 35589acbbeafSnn35248 /* verify new zone has same brand type */ 35599acbbeafSnn35248 err = valid_brand_clone(source_zone, target_zone); 35609acbbeafSnn35248 if (err != Z_OK) 35619acbbeafSnn35248 goto done; 35629acbbeafSnn35248 3563865e09a4Sgjelinek /* verify new zone has same inherit-pkg-dirs */ 3564865e09a4Sgjelinek err = valid_ipd_clone(s_handle, source_zone, t_handle, target_zone); 3565865e09a4Sgjelinek 3566865e09a4Sgjelinek /* warn about imported fs's which are the same */ 3567865e09a4Sgjelinek warn_fs_match(s_handle, source_zone, t_handle, target_zone); 3568865e09a4Sgjelinek 3569865e09a4Sgjelinek /* warn about imported IP addresses which are the same */ 3570865e09a4Sgjelinek warn_ip_match(s_handle, source_zone, t_handle, target_zone); 3571865e09a4Sgjelinek 3572865e09a4Sgjelinek /* warn about imported devices which are the same */ 3573865e09a4Sgjelinek warn_dev_match(s_handle, source_zone, t_handle, target_zone); 3574865e09a4Sgjelinek 3575865e09a4Sgjelinek /* warn about imported datasets which are the same */ 3576865e09a4Sgjelinek warn_dataset_match(s_handle, source_zone, t_handle, target_zone); 3577865e09a4Sgjelinek 3578865e09a4Sgjelinek done: 3579865e09a4Sgjelinek zonecfg_fini_handle(t_handle); 3580865e09a4Sgjelinek zonecfg_fini_handle(s_handle); 3581865e09a4Sgjelinek 3582865e09a4Sgjelinek return ((err == Z_OK) ? Z_OK : Z_ERR); 3583865e09a4Sgjelinek } 3584865e09a4Sgjelinek 3585865e09a4Sgjelinek static int 3586865e09a4Sgjelinek copy_zone(char *src, char *dst) 3587865e09a4Sgjelinek { 3588865e09a4Sgjelinek boolean_t out_null = B_FALSE; 3589865e09a4Sgjelinek int status; 3590865e09a4Sgjelinek char *outfile; 3591865e09a4Sgjelinek char cmdbuf[MAXPATHLEN * 2 + 128]; 3592865e09a4Sgjelinek 3593865e09a4Sgjelinek if ((outfile = tempnam("/var/log", "zone")) == NULL) { 3594865e09a4Sgjelinek outfile = "/dev/null"; 3595865e09a4Sgjelinek out_null = B_TRUE; 3596865e09a4Sgjelinek } 3597865e09a4Sgjelinek 35980b5de56dSgjelinek /* 35990b5de56dSgjelinek * Use find to get the list of files to copy. We need to skip 36000b5de56dSgjelinek * files of type "socket" since cpio can't handle those but that 36010b5de56dSgjelinek * should be ok since the app will recreate the socket when it runs. 36020b5de56dSgjelinek * We also need to filter out anything under the .zfs subdir. Since 36030b5de56dSgjelinek * find is running depth-first, we need the extra egrep to filter .zfs. 36040b5de56dSgjelinek */ 3605865e09a4Sgjelinek (void) snprintf(cmdbuf, sizeof (cmdbuf), 36060b5de56dSgjelinek "cd %s && /usr/bin/find . -type s -prune -o -depth -print | " 360707b574eeSgjelinek "/usr/bin/egrep -v '^\\./\\.zfs$|^\\./\\.zfs/' | " 3608865e09a4Sgjelinek "/usr/bin/cpio -pdmuP@ %s > %s 2>&1", 3609865e09a4Sgjelinek src, dst, outfile); 3610865e09a4Sgjelinek 3611865e09a4Sgjelinek status = do_subproc(cmdbuf); 3612865e09a4Sgjelinek 36139acbbeafSnn35248 if (subproc_status("copy", status, B_TRUE) != ZONE_SUBPROC_OK) { 3614865e09a4Sgjelinek if (!out_null) 3615865e09a4Sgjelinek (void) fprintf(stderr, gettext("\nThe copy failed.\n" 3616865e09a4Sgjelinek "More information can be found in %s\n"), outfile); 36179acbbeafSnn35248 return (Z_ERR); 3618865e09a4Sgjelinek } 3619865e09a4Sgjelinek 3620865e09a4Sgjelinek if (!out_null) 3621865e09a4Sgjelinek (void) unlink(outfile); 3622865e09a4Sgjelinek 3623865e09a4Sgjelinek return (Z_OK); 3624865e09a4Sgjelinek } 3625865e09a4Sgjelinek 3626865e09a4Sgjelinek static int 36279acbbeafSnn35248 zone_postclone(char *zonepath) 3628865e09a4Sgjelinek { 36299acbbeafSnn35248 char cmdbuf[MAXPATHLEN]; 3630865e09a4Sgjelinek int status; 3631123807fbSedp brand_handle_t bh; 36329acbbeafSnn35248 int err = Z_OK; 36335cd08338Sgjelinek 36345cd08338Sgjelinek /* 36359acbbeafSnn35248 * Fetch the post-clone command, if any, from the brand 36369acbbeafSnn35248 * configuration. 363745916cd2Sjpk */ 3638123807fbSedp if ((bh = brand_open(target_brand)) == NULL) { 36399acbbeafSnn35248 zerror(gettext("missing or invalid brand")); 36405cd08338Sgjelinek return (Z_ERR); 3641865e09a4Sgjelinek } 36429acbbeafSnn35248 (void) strcpy(cmdbuf, EXEC_PREFIX); 3643123807fbSedp err = brand_get_postclone(bh, target_zone, zonepath, cmdbuf + EXEC_LEN, 36449acbbeafSnn35248 sizeof (cmdbuf) - EXEC_LEN, 0, NULL); 3645123807fbSedp brand_close(bh); 3646865e09a4Sgjelinek 36479acbbeafSnn35248 if (err == 0 && strlen(cmdbuf) > EXEC_LEN) { 36485cd08338Sgjelinek status = do_subproc(cmdbuf); 36499acbbeafSnn35248 if ((err = subproc_status("postclone", status, B_FALSE)) 36509acbbeafSnn35248 != ZONE_SUBPROC_OK) { 36519acbbeafSnn35248 zerror(gettext("post-clone configuration failed.")); 36529acbbeafSnn35248 err = Z_ERR; 36539acbbeafSnn35248 } 3654865e09a4Sgjelinek } 3655865e09a4Sgjelinek 36569acbbeafSnn35248 return (err); 36575cd08338Sgjelinek } 3658865e09a4Sgjelinek 3659865e09a4Sgjelinek /* ARGSUSED */ 36600b5de56dSgjelinek static int 3661865e09a4Sgjelinek zfm_print(const char *p, void *r) { 3662865e09a4Sgjelinek zerror(" %s\n", p); 3663865e09a4Sgjelinek return (0); 3664865e09a4Sgjelinek } 3665865e09a4Sgjelinek 36660b5de56dSgjelinek int 36670b5de56dSgjelinek clone_copy(char *source_zonepath, char *zonepath) 36680b5de56dSgjelinek { 36690b5de56dSgjelinek int err; 36700b5de56dSgjelinek 36710b5de56dSgjelinek /* Don't clone the zone if anything is still mounted there */ 36720b5de56dSgjelinek if (zonecfg_find_mounts(source_zonepath, NULL, NULL)) { 36730b5de56dSgjelinek zerror(gettext("These file systems are mounted on " 36740b5de56dSgjelinek "subdirectories of %s.\n"), source_zonepath); 36750b5de56dSgjelinek (void) zonecfg_find_mounts(source_zonepath, zfm_print, NULL); 36760b5de56dSgjelinek return (Z_ERR); 36770b5de56dSgjelinek } 36780b5de56dSgjelinek 36790b5de56dSgjelinek /* 36800b5de56dSgjelinek * Attempt to create a ZFS fs for the zonepath. As usual, we don't 36810b5de56dSgjelinek * care if this works or not since we always have the default behavior 36820b5de56dSgjelinek * of a simple directory for the zonepath. 36830b5de56dSgjelinek */ 36840b5de56dSgjelinek create_zfs_zonepath(zonepath); 36850b5de56dSgjelinek 36860b5de56dSgjelinek (void) printf(gettext("Copying %s..."), source_zonepath); 36870b5de56dSgjelinek (void) fflush(stdout); 36880b5de56dSgjelinek 36890b5de56dSgjelinek err = copy_zone(source_zonepath, zonepath); 36900b5de56dSgjelinek 36910b5de56dSgjelinek (void) printf("\n"); 36920b5de56dSgjelinek 36930b5de56dSgjelinek return (err); 36940b5de56dSgjelinek } 36950b5de56dSgjelinek 3696865e09a4Sgjelinek static int 3697865e09a4Sgjelinek clone_func(int argc, char *argv[]) 3698865e09a4Sgjelinek { 3699865e09a4Sgjelinek char *source_zone = NULL; 3700865e09a4Sgjelinek int lockfd; 3701865e09a4Sgjelinek int err, arg; 3702865e09a4Sgjelinek char zonepath[MAXPATHLEN]; 3703865e09a4Sgjelinek char source_zonepath[MAXPATHLEN]; 3704865e09a4Sgjelinek zone_state_t state; 3705865e09a4Sgjelinek zone_entry_t *zent; 37060b5de56dSgjelinek char *method = NULL; 37070b5de56dSgjelinek char *snapshot = NULL; 3708865e09a4Sgjelinek 3709865e09a4Sgjelinek if (zonecfg_in_alt_root()) { 3710865e09a4Sgjelinek zerror(gettext("cannot clone zone in alternate root")); 3711865e09a4Sgjelinek return (Z_ERR); 3712865e09a4Sgjelinek } 3713865e09a4Sgjelinek 3714865e09a4Sgjelinek optind = 0; 37150b5de56dSgjelinek if ((arg = getopt(argc, argv, "?m:s:")) != EOF) { 3716865e09a4Sgjelinek switch (arg) { 3717865e09a4Sgjelinek case '?': 3718865e09a4Sgjelinek sub_usage(SHELP_CLONE, CMD_CLONE); 3719865e09a4Sgjelinek return (optopt == '?' ? Z_OK : Z_USAGE); 3720865e09a4Sgjelinek case 'm': 3721865e09a4Sgjelinek method = optarg; 3722865e09a4Sgjelinek break; 37230b5de56dSgjelinek case 's': 37240b5de56dSgjelinek snapshot = optarg; 37250b5de56dSgjelinek break; 3726865e09a4Sgjelinek default: 3727865e09a4Sgjelinek sub_usage(SHELP_CLONE, CMD_CLONE); 3728865e09a4Sgjelinek return (Z_USAGE); 3729865e09a4Sgjelinek } 3730865e09a4Sgjelinek } 37310b5de56dSgjelinek if (argc != (optind + 1) || 37320b5de56dSgjelinek (method != NULL && strcmp(method, "copy") != 0)) { 3733865e09a4Sgjelinek sub_usage(SHELP_CLONE, CMD_CLONE); 3734865e09a4Sgjelinek return (Z_USAGE); 3735865e09a4Sgjelinek } 3736865e09a4Sgjelinek source_zone = argv[optind]; 37379acbbeafSnn35248 if (sanity_check(target_zone, CMD_CLONE, B_FALSE, B_TRUE, B_FALSE) 37389acbbeafSnn35248 != Z_OK) 3739865e09a4Sgjelinek return (Z_ERR); 3740ce28b40eSzt129084 if (verify_details(CMD_CLONE, argv) != Z_OK) 3741865e09a4Sgjelinek return (Z_ERR); 3742865e09a4Sgjelinek 3743865e09a4Sgjelinek /* 3744865e09a4Sgjelinek * We also need to do some extra validation on the source zone. 3745865e09a4Sgjelinek */ 3746865e09a4Sgjelinek if (strcmp(source_zone, GLOBAL_ZONENAME) == 0) { 3747865e09a4Sgjelinek zerror(gettext("%s operation is invalid for the global zone."), 3748865e09a4Sgjelinek cmd_to_str(CMD_CLONE)); 3749865e09a4Sgjelinek return (Z_ERR); 3750865e09a4Sgjelinek } 3751865e09a4Sgjelinek 3752865e09a4Sgjelinek if (strncmp(source_zone, "SUNW", 4) == 0) { 3753865e09a4Sgjelinek zerror(gettext("%s operation is invalid for zones starting " 3754865e09a4Sgjelinek "with SUNW."), cmd_to_str(CMD_CLONE)); 3755865e09a4Sgjelinek return (Z_ERR); 3756865e09a4Sgjelinek } 3757865e09a4Sgjelinek 3758865e09a4Sgjelinek zent = lookup_running_zone(source_zone); 3759865e09a4Sgjelinek if (zent != NULL) { 3760865e09a4Sgjelinek /* check whether the zone is ready or running */ 3761865e09a4Sgjelinek if ((err = zone_get_state(zent->zname, &zent->zstate_num)) 3762865e09a4Sgjelinek != Z_OK) { 3763865e09a4Sgjelinek errno = err; 3764865e09a4Sgjelinek zperror2(zent->zname, gettext("could not get state")); 3765865e09a4Sgjelinek /* can't tell, so hedge */ 3766865e09a4Sgjelinek zent->zstate_str = "ready/running"; 3767865e09a4Sgjelinek } else { 3768865e09a4Sgjelinek zent->zstate_str = zone_state_str(zent->zstate_num); 3769865e09a4Sgjelinek } 3770865e09a4Sgjelinek zerror(gettext("%s operation is invalid for %s zones."), 3771865e09a4Sgjelinek cmd_to_str(CMD_CLONE), zent->zstate_str); 3772865e09a4Sgjelinek return (Z_ERR); 3773865e09a4Sgjelinek } 3774865e09a4Sgjelinek 3775865e09a4Sgjelinek if ((err = zone_get_state(source_zone, &state)) != Z_OK) { 3776865e09a4Sgjelinek errno = err; 3777865e09a4Sgjelinek zperror2(source_zone, gettext("could not get state")); 3778865e09a4Sgjelinek return (Z_ERR); 3779865e09a4Sgjelinek } 3780865e09a4Sgjelinek if (state != ZONE_STATE_INSTALLED) { 3781865e09a4Sgjelinek (void) fprintf(stderr, 3782865e09a4Sgjelinek gettext("%s: zone %s is %s; %s is required.\n"), 3783865e09a4Sgjelinek execname, source_zone, zone_state_str(state), 3784865e09a4Sgjelinek zone_state_str(ZONE_STATE_INSTALLED)); 3785865e09a4Sgjelinek return (Z_ERR); 3786865e09a4Sgjelinek } 3787865e09a4Sgjelinek 3788865e09a4Sgjelinek /* 3789865e09a4Sgjelinek * The source zone checks out ok, continue with the clone. 3790865e09a4Sgjelinek */ 3791865e09a4Sgjelinek 3792865e09a4Sgjelinek if (validate_clone(source_zone, target_zone) != Z_OK) 3793865e09a4Sgjelinek return (Z_ERR); 3794865e09a4Sgjelinek 3795865e09a4Sgjelinek if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 3796865e09a4Sgjelinek zerror(gettext("another %s may have an operation in progress."), 3797865e09a4Sgjelinek "zoneadm"); 3798865e09a4Sgjelinek return (Z_ERR); 3799865e09a4Sgjelinek } 3800865e09a4Sgjelinek 3801865e09a4Sgjelinek if ((err = zone_get_zonepath(source_zone, source_zonepath, 3802865e09a4Sgjelinek sizeof (source_zonepath))) != Z_OK) { 3803865e09a4Sgjelinek errno = err; 3804865e09a4Sgjelinek zperror2(source_zone, gettext("could not get zone path")); 3805865e09a4Sgjelinek goto done; 3806865e09a4Sgjelinek } 3807865e09a4Sgjelinek 3808865e09a4Sgjelinek if ((err = zone_get_zonepath(target_zone, zonepath, sizeof (zonepath))) 3809865e09a4Sgjelinek != Z_OK) { 3810865e09a4Sgjelinek errno = err; 3811865e09a4Sgjelinek zperror2(target_zone, gettext("could not get zone path")); 3812865e09a4Sgjelinek goto done; 3813865e09a4Sgjelinek } 3814865e09a4Sgjelinek 3815865e09a4Sgjelinek if ((err = zone_set_state(target_zone, ZONE_STATE_INCOMPLETE)) 3816865e09a4Sgjelinek != Z_OK) { 3817865e09a4Sgjelinek errno = err; 3818865e09a4Sgjelinek zperror2(target_zone, gettext("could not set state")); 3819865e09a4Sgjelinek goto done; 3820865e09a4Sgjelinek } 3821865e09a4Sgjelinek 38220b5de56dSgjelinek if (snapshot != NULL) { 38230b5de56dSgjelinek err = clone_snapshot_zfs(snapshot, zonepath); 38240b5de56dSgjelinek } else { 38250b5de56dSgjelinek /* 38260b5de56dSgjelinek * We always copy the clone unless the source is ZFS and a 38270b5de56dSgjelinek * ZFS clone worked. We fallback to copying if the ZFS clone 38280b5de56dSgjelinek * fails for some reason. 38290b5de56dSgjelinek */ 38300b5de56dSgjelinek err = Z_ERR; 38310b5de56dSgjelinek if (method == NULL && is_zonepath_zfs(source_zonepath)) 38320b5de56dSgjelinek err = clone_zfs(source_zone, source_zonepath, zonepath); 3833865e09a4Sgjelinek 38345cd08338Sgjelinek if (err != Z_OK) 38350b5de56dSgjelinek err = clone_copy(source_zonepath, zonepath); 38360b5de56dSgjelinek } 3837865e09a4Sgjelinek 38389acbbeafSnn35248 /* 38399acbbeafSnn35248 * Trusted Extensions requires that cloned zones use the same sysid 38409acbbeafSnn35248 * configuration, so it is not appropriate to perform any 38419acbbeafSnn35248 * post-clone reconfiguration. 38429acbbeafSnn35248 */ 38439acbbeafSnn35248 if ((err == Z_OK) && !is_system_labeled()) 38449acbbeafSnn35248 err = zone_postclone(zonepath); 3845865e09a4Sgjelinek 3846865e09a4Sgjelinek done: 38479acbbeafSnn35248 /* 38489acbbeafSnn35248 * If everything went well, we mark the zone as installed. 38499acbbeafSnn35248 */ 38509acbbeafSnn35248 if (err == Z_OK) { 38519acbbeafSnn35248 err = zone_set_state(target_zone, ZONE_STATE_INSTALLED); 38529acbbeafSnn35248 if (err != Z_OK) { 38539acbbeafSnn35248 errno = err; 38549acbbeafSnn35248 zperror2(target_zone, gettext("could not set state")); 38559acbbeafSnn35248 } 38569acbbeafSnn35248 } 3857865e09a4Sgjelinek release_lock_file(lockfd); 3858865e09a4Sgjelinek return ((err == Z_OK) ? Z_OK : Z_ERR); 3859865e09a4Sgjelinek } 3860865e09a4Sgjelinek 386107b574eeSgjelinek /* 38620b5de56dSgjelinek * Used when removing a zonepath after uninstalling or cleaning up after 38630b5de56dSgjelinek * the move subcommand. This handles a zonepath that has non-standard 38640b5de56dSgjelinek * contents so that we will only cleanup the stuff we know about and leave 38650b5de56dSgjelinek * any user data alone. 386607b574eeSgjelinek * 38670b5de56dSgjelinek * If the "all" parameter is true then we should remove the whole zonepath 38680b5de56dSgjelinek * even if it has non-standard files/directories in it. This can be used when 38690b5de56dSgjelinek * we need to cleanup after moving the zonepath across file systems. 38700b5de56dSgjelinek * 38710b5de56dSgjelinek * We "exec" the RMCOMMAND so that the returned status is that of RMCOMMAND 38720b5de56dSgjelinek * and not the shell. 387307b574eeSgjelinek */ 387407b574eeSgjelinek static int 38750b5de56dSgjelinek cleanup_zonepath(char *zonepath, boolean_t all) 387607b574eeSgjelinek { 387707b574eeSgjelinek int status; 38780b5de56dSgjelinek int i; 38790b5de56dSgjelinek boolean_t non_std = B_FALSE; 38800b5de56dSgjelinek struct dirent *dp; 38810b5de56dSgjelinek DIR *dirp; 38820b5de56dSgjelinek char *std_entries[] = {"dev", "lu", "root", NULL}; 38830b5de56dSgjelinek /* (MAXPATHLEN * 3) is for the 3 std_entries dirs */ 38840b5de56dSgjelinek char cmdbuf[sizeof (RMCOMMAND) + (MAXPATHLEN * 3) + 64]; 388507b574eeSgjelinek 388607b574eeSgjelinek /* 38870b5de56dSgjelinek * We shouldn't need these checks but lets be paranoid since we 38880b5de56dSgjelinek * could blow away the whole system here if we got the wrong zonepath. 388907b574eeSgjelinek */ 38900b5de56dSgjelinek if (*zonepath == NULL || strcmp(zonepath, "/") == 0) { 38910b5de56dSgjelinek (void) fprintf(stderr, "invalid zonepath '%s'\n", zonepath); 38920b5de56dSgjelinek return (Z_INVAL); 38930b5de56dSgjelinek } 38940b5de56dSgjelinek 389507b574eeSgjelinek /* 38960b5de56dSgjelinek * If the dirpath is already gone (maybe it was manually removed) then 38970b5de56dSgjelinek * we just return Z_OK so that the cleanup is successful. 389807b574eeSgjelinek */ 38990b5de56dSgjelinek if ((dirp = opendir(zonepath)) == NULL) 39000b5de56dSgjelinek return (Z_OK); 39010b5de56dSgjelinek 39020b5de56dSgjelinek /* 39030b5de56dSgjelinek * Look through the zonepath directory to see if there are any 39040b5de56dSgjelinek * non-standard files/dirs. Also skip .zfs since that might be 39050b5de56dSgjelinek * there but we'll handle ZFS file systems as a special case. 39060b5de56dSgjelinek */ 39070b5de56dSgjelinek while ((dp = readdir(dirp)) != NULL) { 39080b5de56dSgjelinek if (strcmp(dp->d_name, ".") == 0 || 39090b5de56dSgjelinek strcmp(dp->d_name, "..") == 0 || 39100b5de56dSgjelinek strcmp(dp->d_name, ".zfs") == 0) 39110b5de56dSgjelinek continue; 39120b5de56dSgjelinek 39130b5de56dSgjelinek for (i = 0; std_entries[i] != NULL; i++) 39140b5de56dSgjelinek if (strcmp(dp->d_name, std_entries[i]) == 0) 39150b5de56dSgjelinek break; 39160b5de56dSgjelinek 39170b5de56dSgjelinek if (std_entries[i] == NULL) 39180b5de56dSgjelinek non_std = B_TRUE; 39190b5de56dSgjelinek } 39200b5de56dSgjelinek (void) closedir(dirp); 39210b5de56dSgjelinek 39220b5de56dSgjelinek if (!all && non_std) { 39230b5de56dSgjelinek /* 39240b5de56dSgjelinek * There are extra, non-standard directories/files in the 39250b5de56dSgjelinek * zonepath so we don't want to remove the zonepath. We 39260b5de56dSgjelinek * just want to remove the standard directories and leave 39270b5de56dSgjelinek * the user data alone. 39280b5de56dSgjelinek */ 39290b5de56dSgjelinek (void) snprintf(cmdbuf, sizeof (cmdbuf), "exec " RMCOMMAND); 39300b5de56dSgjelinek 39310b5de56dSgjelinek for (i = 0; std_entries[i] != NULL; i++) { 39320b5de56dSgjelinek char tmpbuf[MAXPATHLEN]; 39330b5de56dSgjelinek 39340b5de56dSgjelinek if (snprintf(tmpbuf, sizeof (tmpbuf), " %s/%s", 39350b5de56dSgjelinek zonepath, std_entries[i]) >= sizeof (tmpbuf) || 39360b5de56dSgjelinek strlcat(cmdbuf, tmpbuf, sizeof (cmdbuf)) >= 39370b5de56dSgjelinek sizeof (cmdbuf)) { 39380b5de56dSgjelinek (void) fprintf(stderr, 39390b5de56dSgjelinek gettext("path is too long\n")); 39400b5de56dSgjelinek return (Z_INVAL); 39410b5de56dSgjelinek } 394207b574eeSgjelinek } 394307b574eeSgjelinek 394407b574eeSgjelinek status = do_subproc(cmdbuf); 394507b574eeSgjelinek 39460b5de56dSgjelinek (void) fprintf(stderr, gettext("WARNING: Unable to completely " 39470b5de56dSgjelinek "remove %s\nbecause it contains additional user data. " 39480b5de56dSgjelinek "Only the standard directory\nentries have been " 39490b5de56dSgjelinek "removed.\n"), 39500b5de56dSgjelinek zonepath); 395107b574eeSgjelinek 39529acbbeafSnn35248 return ((subproc_status(RMCOMMAND, status, B_TRUE) == 39539acbbeafSnn35248 ZONE_SUBPROC_OK) ? Z_OK : Z_ERR); 39540b5de56dSgjelinek } 39550b5de56dSgjelinek 39560b5de56dSgjelinek /* 39570b5de56dSgjelinek * There is nothing unexpected in the zonepath, try to get rid of the 39580b5de56dSgjelinek * whole zonepath directory. 39590b5de56dSgjelinek * 39600b5de56dSgjelinek * If the zonepath is its own zfs file system, try to destroy the 39610b5de56dSgjelinek * file system. If that fails for some reason (e.g. it has clones) 39620b5de56dSgjelinek * then we'll just remove the contents of the zonepath. 39630b5de56dSgjelinek */ 39640b5de56dSgjelinek if (is_zonepath_zfs(zonepath)) { 39650b5de56dSgjelinek if (destroy_zfs(zonepath) == Z_OK) 39660b5de56dSgjelinek return (Z_OK); 39670b5de56dSgjelinek (void) snprintf(cmdbuf, sizeof (cmdbuf), "exec " RMCOMMAND 39680b5de56dSgjelinek " %s/*", zonepath); 39690b5de56dSgjelinek status = do_subproc(cmdbuf); 39709acbbeafSnn35248 return ((subproc_status(RMCOMMAND, status, B_TRUE) == 39719acbbeafSnn35248 ZONE_SUBPROC_OK) ? Z_OK : Z_ERR); 39720b5de56dSgjelinek } 39730b5de56dSgjelinek 39740b5de56dSgjelinek (void) snprintf(cmdbuf, sizeof (cmdbuf), "exec " RMCOMMAND " %s", 39750b5de56dSgjelinek zonepath); 39760b5de56dSgjelinek status = do_subproc(cmdbuf); 39779acbbeafSnn35248 39789acbbeafSnn35248 return ((subproc_status(RMCOMMAND, status, B_TRUE) == ZONE_SUBPROC_OK) 39799acbbeafSnn35248 ? Z_OK : Z_ERR); 398007b574eeSgjelinek } 398107b574eeSgjelinek 3982865e09a4Sgjelinek static int 3983865e09a4Sgjelinek move_func(int argc, char *argv[]) 3984865e09a4Sgjelinek { 3985865e09a4Sgjelinek char *new_zonepath = NULL; 3986865e09a4Sgjelinek int lockfd; 3987865e09a4Sgjelinek int err, arg; 3988865e09a4Sgjelinek char zonepath[MAXPATHLEN]; 3989865e09a4Sgjelinek zone_dochandle_t handle; 3990865e09a4Sgjelinek boolean_t fast; 39910b5de56dSgjelinek boolean_t is_zfs = B_FALSE; 39920b5de56dSgjelinek struct dirent *dp; 39930b5de56dSgjelinek DIR *dirp; 39940b5de56dSgjelinek boolean_t empty = B_TRUE; 3995865e09a4Sgjelinek boolean_t revert; 3996865e09a4Sgjelinek struct stat zonepath_buf; 3997865e09a4Sgjelinek struct stat new_zonepath_buf; 3998865e09a4Sgjelinek 3999865e09a4Sgjelinek if (zonecfg_in_alt_root()) { 4000865e09a4Sgjelinek zerror(gettext("cannot move zone in alternate root")); 4001865e09a4Sgjelinek return (Z_ERR); 4002865e09a4Sgjelinek } 4003865e09a4Sgjelinek 4004865e09a4Sgjelinek optind = 0; 4005865e09a4Sgjelinek if ((arg = getopt(argc, argv, "?")) != EOF) { 4006865e09a4Sgjelinek switch (arg) { 4007865e09a4Sgjelinek case '?': 4008865e09a4Sgjelinek sub_usage(SHELP_MOVE, CMD_MOVE); 4009865e09a4Sgjelinek return (optopt == '?' ? Z_OK : Z_USAGE); 4010865e09a4Sgjelinek default: 4011865e09a4Sgjelinek sub_usage(SHELP_MOVE, CMD_MOVE); 4012865e09a4Sgjelinek return (Z_USAGE); 4013865e09a4Sgjelinek } 4014865e09a4Sgjelinek } 4015865e09a4Sgjelinek if (argc != (optind + 1)) { 4016865e09a4Sgjelinek sub_usage(SHELP_MOVE, CMD_MOVE); 4017865e09a4Sgjelinek return (Z_USAGE); 4018865e09a4Sgjelinek } 4019865e09a4Sgjelinek new_zonepath = argv[optind]; 40209acbbeafSnn35248 if (sanity_check(target_zone, CMD_MOVE, B_FALSE, B_TRUE, B_FALSE) 40219acbbeafSnn35248 != Z_OK) 4022865e09a4Sgjelinek return (Z_ERR); 4023ce28b40eSzt129084 if (verify_details(CMD_MOVE, argv) != Z_OK) 4024865e09a4Sgjelinek return (Z_ERR); 4025865e09a4Sgjelinek 4026865e09a4Sgjelinek /* 4027865e09a4Sgjelinek * Check out the new zonepath. This has the side effect of creating 4028865e09a4Sgjelinek * a directory for the new zonepath. We depend on this later when we 40290b5de56dSgjelinek * stat to see if we are doing a cross file system move or not. 4030865e09a4Sgjelinek */ 4031865e09a4Sgjelinek if (validate_zonepath(new_zonepath, CMD_MOVE) != Z_OK) 4032865e09a4Sgjelinek return (Z_ERR); 4033865e09a4Sgjelinek 4034865e09a4Sgjelinek if ((err = zone_get_zonepath(target_zone, zonepath, sizeof (zonepath))) 4035865e09a4Sgjelinek != Z_OK) { 4036865e09a4Sgjelinek errno = err; 4037865e09a4Sgjelinek zperror2(target_zone, gettext("could not get zone path")); 4038865e09a4Sgjelinek return (Z_ERR); 4039865e09a4Sgjelinek } 4040865e09a4Sgjelinek 4041865e09a4Sgjelinek if (stat(zonepath, &zonepath_buf) == -1) { 4042865e09a4Sgjelinek zperror(gettext("could not stat zone path"), B_FALSE); 4043865e09a4Sgjelinek return (Z_ERR); 4044865e09a4Sgjelinek } 4045865e09a4Sgjelinek 4046865e09a4Sgjelinek if (stat(new_zonepath, &new_zonepath_buf) == -1) { 4047865e09a4Sgjelinek zperror(gettext("could not stat new zone path"), B_FALSE); 4048865e09a4Sgjelinek return (Z_ERR); 4049865e09a4Sgjelinek } 4050865e09a4Sgjelinek 40510b5de56dSgjelinek /* 40520b5de56dSgjelinek * Check if the destination directory is empty. 40530b5de56dSgjelinek */ 40540b5de56dSgjelinek if ((dirp = opendir(new_zonepath)) == NULL) { 40550b5de56dSgjelinek zperror(gettext("could not open new zone path"), B_FALSE); 40560b5de56dSgjelinek return (Z_ERR); 40570b5de56dSgjelinek } 40580b5de56dSgjelinek while ((dp = readdir(dirp)) != (struct dirent *)0) { 40590b5de56dSgjelinek if (strcmp(dp->d_name, ".") == 0 || 40600b5de56dSgjelinek strcmp(dp->d_name, "..") == 0) 40610b5de56dSgjelinek continue; 40620b5de56dSgjelinek empty = B_FALSE; 40630b5de56dSgjelinek break; 40640b5de56dSgjelinek } 40650b5de56dSgjelinek (void) closedir(dirp); 40660b5de56dSgjelinek 40670b5de56dSgjelinek /* Error if there is anything in the destination directory. */ 40680b5de56dSgjelinek if (!empty) { 40690b5de56dSgjelinek (void) fprintf(stderr, gettext("could not move zone to %s: " 40700b5de56dSgjelinek "directory not empty\n"), new_zonepath); 40710b5de56dSgjelinek return (Z_ERR); 40720b5de56dSgjelinek } 40730b5de56dSgjelinek 4074865e09a4Sgjelinek /* Don't move the zone if anything is still mounted there */ 4075865e09a4Sgjelinek if (zonecfg_find_mounts(zonepath, NULL, NULL)) { 40760b5de56dSgjelinek zerror(gettext("These file systems are mounted on " 4077865e09a4Sgjelinek "subdirectories of %s.\n"), zonepath); 4078865e09a4Sgjelinek (void) zonecfg_find_mounts(zonepath, zfm_print, NULL); 4079865e09a4Sgjelinek return (Z_ERR); 4080865e09a4Sgjelinek } 4081865e09a4Sgjelinek 4082865e09a4Sgjelinek /* 4083865e09a4Sgjelinek * Check if we are moving in the same file system and can do a fast 4084865e09a4Sgjelinek * move or if we are crossing file systems and have to copy the data. 4085865e09a4Sgjelinek */ 4086865e09a4Sgjelinek fast = (zonepath_buf.st_dev == new_zonepath_buf.st_dev); 4087865e09a4Sgjelinek 4088865e09a4Sgjelinek if ((handle = zonecfg_init_handle()) == NULL) { 4089865e09a4Sgjelinek zperror(cmd_to_str(CMD_MOVE), B_TRUE); 4090865e09a4Sgjelinek return (Z_ERR); 4091865e09a4Sgjelinek } 4092865e09a4Sgjelinek 4093865e09a4Sgjelinek if ((err = zonecfg_get_handle(target_zone, handle)) != Z_OK) { 4094865e09a4Sgjelinek errno = err; 4095865e09a4Sgjelinek zperror(cmd_to_str(CMD_MOVE), B_TRUE); 4096865e09a4Sgjelinek zonecfg_fini_handle(handle); 4097865e09a4Sgjelinek return (Z_ERR); 4098865e09a4Sgjelinek } 4099865e09a4Sgjelinek 4100865e09a4Sgjelinek if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 4101865e09a4Sgjelinek zerror(gettext("another %s may have an operation in progress."), 4102865e09a4Sgjelinek "zoneadm"); 4103865e09a4Sgjelinek zonecfg_fini_handle(handle); 4104865e09a4Sgjelinek return (Z_ERR); 4105865e09a4Sgjelinek } 4106865e09a4Sgjelinek 4107865e09a4Sgjelinek /* 41080b5de56dSgjelinek * We're making some file system changes now so we have to clean up 41090b5de56dSgjelinek * the file system before we are done. This will either clean up the 4110865e09a4Sgjelinek * new zonepath if the zonecfg update failed or it will clean up the 4111865e09a4Sgjelinek * old zonepath if everything is ok. 4112865e09a4Sgjelinek */ 4113865e09a4Sgjelinek revert = B_TRUE; 4114865e09a4Sgjelinek 41150b5de56dSgjelinek if (is_zonepath_zfs(zonepath) && 41160b5de56dSgjelinek move_zfs(zonepath, new_zonepath) != Z_ERR) { 41170b5de56dSgjelinek is_zfs = B_TRUE; 41180b5de56dSgjelinek 41190b5de56dSgjelinek } else if (fast) { 4120865e09a4Sgjelinek /* same file system, use rename for a quick move */ 4121865e09a4Sgjelinek 4122865e09a4Sgjelinek /* 4123865e09a4Sgjelinek * Remove the new_zonepath directory that got created above 4124865e09a4Sgjelinek * during the validation. It gets in the way of the rename. 4125865e09a4Sgjelinek */ 4126865e09a4Sgjelinek if (rmdir(new_zonepath) != 0) { 4127865e09a4Sgjelinek zperror(gettext("could not rmdir new zone path"), 4128865e09a4Sgjelinek B_FALSE); 4129865e09a4Sgjelinek zonecfg_fini_handle(handle); 4130865e09a4Sgjelinek release_lock_file(lockfd); 4131865e09a4Sgjelinek return (Z_ERR); 4132865e09a4Sgjelinek } 4133865e09a4Sgjelinek 4134865e09a4Sgjelinek if (rename(zonepath, new_zonepath) != 0) { 4135865e09a4Sgjelinek /* 4136865e09a4Sgjelinek * If this fails we don't need to do all of the 4137865e09a4Sgjelinek * cleanup that happens for the rest of the code 4138865e09a4Sgjelinek * so just return from this error. 4139865e09a4Sgjelinek */ 4140865e09a4Sgjelinek zperror(gettext("could not move zone"), B_FALSE); 4141865e09a4Sgjelinek zonecfg_fini_handle(handle); 4142865e09a4Sgjelinek release_lock_file(lockfd); 4143865e09a4Sgjelinek return (Z_ERR); 4144865e09a4Sgjelinek } 4145865e09a4Sgjelinek 4146865e09a4Sgjelinek } else { 41470b5de56dSgjelinek /* 41480b5de56dSgjelinek * Attempt to create a ZFS fs for the new zonepath. As usual, 41490b5de56dSgjelinek * we don't care if this works or not since we always have the 41500b5de56dSgjelinek * default behavior of a simple directory for the zonepath. 41510b5de56dSgjelinek */ 41520b5de56dSgjelinek create_zfs_zonepath(new_zonepath); 41530b5de56dSgjelinek 4154865e09a4Sgjelinek (void) printf(gettext( 41550b5de56dSgjelinek "Moving across file systems; copying zonepath %s..."), 4156865e09a4Sgjelinek zonepath); 4157865e09a4Sgjelinek (void) fflush(stdout); 4158865e09a4Sgjelinek 4159865e09a4Sgjelinek err = copy_zone(zonepath, new_zonepath); 4160865e09a4Sgjelinek 4161865e09a4Sgjelinek (void) printf("\n"); 4162865e09a4Sgjelinek if (err != Z_OK) 4163865e09a4Sgjelinek goto done; 4164865e09a4Sgjelinek } 4165865e09a4Sgjelinek 4166865e09a4Sgjelinek if ((err = zonecfg_set_zonepath(handle, new_zonepath)) != Z_OK) { 4167865e09a4Sgjelinek errno = err; 4168865e09a4Sgjelinek zperror(gettext("could not set new zonepath"), B_TRUE); 4169865e09a4Sgjelinek goto done; 4170865e09a4Sgjelinek } 4171865e09a4Sgjelinek 4172865e09a4Sgjelinek if ((err = zonecfg_save(handle)) != Z_OK) { 4173865e09a4Sgjelinek errno = err; 4174865e09a4Sgjelinek zperror(gettext("zonecfg save failed"), B_TRUE); 4175865e09a4Sgjelinek goto done; 4176865e09a4Sgjelinek } 4177865e09a4Sgjelinek 4178865e09a4Sgjelinek revert = B_FALSE; 4179865e09a4Sgjelinek 4180865e09a4Sgjelinek done: 4181865e09a4Sgjelinek zonecfg_fini_handle(handle); 4182865e09a4Sgjelinek release_lock_file(lockfd); 4183865e09a4Sgjelinek 4184865e09a4Sgjelinek /* 41850b5de56dSgjelinek * Clean up the file system based on how things went. We either 4186865e09a4Sgjelinek * clean up the new zonepath if the operation failed for some reason 4187865e09a4Sgjelinek * or we clean up the old zonepath if everything is ok. 4188865e09a4Sgjelinek */ 4189865e09a4Sgjelinek if (revert) { 4190865e09a4Sgjelinek /* The zonecfg update failed, cleanup the new zonepath. */ 41910b5de56dSgjelinek if (is_zfs) { 41920b5de56dSgjelinek if (move_zfs(new_zonepath, zonepath) == Z_ERR) { 41930b5de56dSgjelinek (void) fprintf(stderr, gettext("could not " 41940b5de56dSgjelinek "restore zonepath, the zfs mountpoint is " 41950b5de56dSgjelinek "set as:\n%s\n"), new_zonepath); 41960b5de56dSgjelinek /* 41970b5de56dSgjelinek * err is already != Z_OK since we're reverting 41980b5de56dSgjelinek */ 41990b5de56dSgjelinek } 42000b5de56dSgjelinek 42010b5de56dSgjelinek } else if (fast) { 4202865e09a4Sgjelinek if (rename(new_zonepath, zonepath) != 0) { 4203865e09a4Sgjelinek zperror(gettext("could not restore zonepath"), 4204865e09a4Sgjelinek B_FALSE); 4205865e09a4Sgjelinek /* 4206865e09a4Sgjelinek * err is already != Z_OK since we're reverting 4207865e09a4Sgjelinek */ 4208865e09a4Sgjelinek } 4209865e09a4Sgjelinek } else { 4210865e09a4Sgjelinek (void) printf(gettext("Cleaning up zonepath %s..."), 4211865e09a4Sgjelinek new_zonepath); 4212865e09a4Sgjelinek (void) fflush(stdout); 42130b5de56dSgjelinek err = cleanup_zonepath(new_zonepath, B_TRUE); 4214865e09a4Sgjelinek (void) printf("\n"); 4215865e09a4Sgjelinek 421607b574eeSgjelinek if (err != Z_OK) { 4217865e09a4Sgjelinek errno = err; 4218865e09a4Sgjelinek zperror(gettext("could not remove new " 4219865e09a4Sgjelinek "zonepath"), B_TRUE); 4220865e09a4Sgjelinek } else { 4221865e09a4Sgjelinek /* 4222865e09a4Sgjelinek * Because we're reverting we know the mainline 4223865e09a4Sgjelinek * code failed but we just reused the err 4224865e09a4Sgjelinek * variable so we reset it back to Z_ERR. 4225865e09a4Sgjelinek */ 4226865e09a4Sgjelinek err = Z_ERR; 4227865e09a4Sgjelinek } 4228865e09a4Sgjelinek } 4229865e09a4Sgjelinek 4230865e09a4Sgjelinek } else { 4231865e09a4Sgjelinek /* The move was successful, cleanup the old zonepath. */ 42320b5de56dSgjelinek if (!is_zfs && !fast) { 4233865e09a4Sgjelinek (void) printf( 4234865e09a4Sgjelinek gettext("Cleaning up zonepath %s..."), zonepath); 4235865e09a4Sgjelinek (void) fflush(stdout); 42360b5de56dSgjelinek err = cleanup_zonepath(zonepath, B_TRUE); 4237865e09a4Sgjelinek (void) printf("\n"); 4238865e09a4Sgjelinek 423907b574eeSgjelinek if (err != Z_OK) { 4240865e09a4Sgjelinek errno = err; 4241865e09a4Sgjelinek zperror(gettext("could not remove zonepath"), 4242865e09a4Sgjelinek B_TRUE); 4243865e09a4Sgjelinek } 4244865e09a4Sgjelinek } 4245865e09a4Sgjelinek } 4246865e09a4Sgjelinek 4247865e09a4Sgjelinek return ((err == Z_OK) ? Z_OK : Z_ERR); 4248865e09a4Sgjelinek } 4249865e09a4Sgjelinek 4250ee519a1fSgjelinek static int 4251ee519a1fSgjelinek detach_func(int argc, char *argv[]) 4252ee519a1fSgjelinek { 4253ee519a1fSgjelinek int lockfd; 4254ee519a1fSgjelinek int err, arg; 4255ee519a1fSgjelinek char zonepath[MAXPATHLEN]; 4256ee519a1fSgjelinek zone_dochandle_t handle; 42578cd327d5Sgjelinek boolean_t execute = B_TRUE; 4258ee519a1fSgjelinek 4259ee519a1fSgjelinek if (zonecfg_in_alt_root()) { 4260ee519a1fSgjelinek zerror(gettext("cannot detach zone in alternate root")); 4261ee519a1fSgjelinek return (Z_ERR); 4262ee519a1fSgjelinek } 4263ee519a1fSgjelinek 4264ee519a1fSgjelinek optind = 0; 42658cd327d5Sgjelinek if ((arg = getopt(argc, argv, "?n")) != EOF) { 4266ee519a1fSgjelinek switch (arg) { 4267ee519a1fSgjelinek case '?': 4268ee519a1fSgjelinek sub_usage(SHELP_DETACH, CMD_DETACH); 4269ee519a1fSgjelinek return (optopt == '?' ? Z_OK : Z_USAGE); 42708cd327d5Sgjelinek case 'n': 42718cd327d5Sgjelinek execute = B_FALSE; 42728cd327d5Sgjelinek break; 4273ee519a1fSgjelinek default: 4274ee519a1fSgjelinek sub_usage(SHELP_DETACH, CMD_DETACH); 4275ee519a1fSgjelinek return (Z_USAGE); 4276ee519a1fSgjelinek } 4277ee519a1fSgjelinek } 42789acbbeafSnn35248 42798cd327d5Sgjelinek if (execute) { 42809acbbeafSnn35248 if (sanity_check(target_zone, CMD_DETACH, B_FALSE, B_TRUE, 42819acbbeafSnn35248 B_FALSE) != Z_OK) 4282ee519a1fSgjelinek return (Z_ERR); 4283ce28b40eSzt129084 if (verify_details(CMD_DETACH, argv) != Z_OK) 4284ee519a1fSgjelinek return (Z_ERR); 42858cd327d5Sgjelinek } else { 42868cd327d5Sgjelinek /* 42878cd327d5Sgjelinek * We want a dry-run to work for a non-privileged user so we 42888cd327d5Sgjelinek * only do minimal validation. 42898cd327d5Sgjelinek */ 42908cd327d5Sgjelinek if (getzoneid() != GLOBAL_ZONEID) { 42918cd327d5Sgjelinek zerror(gettext("must be in the global zone to %s a " 42928cd327d5Sgjelinek "zone."), cmd_to_str(CMD_DETACH)); 42938cd327d5Sgjelinek return (Z_ERR); 42948cd327d5Sgjelinek } 42958cd327d5Sgjelinek 42968cd327d5Sgjelinek if (target_zone == NULL) { 42978cd327d5Sgjelinek zerror(gettext("no zone specified")); 42988cd327d5Sgjelinek return (Z_ERR); 42998cd327d5Sgjelinek } 43008cd327d5Sgjelinek 43018cd327d5Sgjelinek if (strcmp(target_zone, GLOBAL_ZONENAME) == 0) { 43028cd327d5Sgjelinek zerror(gettext("%s operation is invalid for the " 43038cd327d5Sgjelinek "global zone."), cmd_to_str(CMD_DETACH)); 43048cd327d5Sgjelinek return (Z_ERR); 43058cd327d5Sgjelinek } 43068cd327d5Sgjelinek } 4307ee519a1fSgjelinek 4308ee519a1fSgjelinek if ((err = zone_get_zonepath(target_zone, zonepath, sizeof (zonepath))) 4309ee519a1fSgjelinek != Z_OK) { 4310ee519a1fSgjelinek errno = err; 4311ee519a1fSgjelinek zperror2(target_zone, gettext("could not get zone path")); 4312ee519a1fSgjelinek return (Z_ERR); 4313ee519a1fSgjelinek } 4314ee519a1fSgjelinek 4315ee519a1fSgjelinek /* Don't detach the zone if anything is still mounted there */ 43168cd327d5Sgjelinek if (execute && zonecfg_find_mounts(zonepath, NULL, NULL)) { 43170b5de56dSgjelinek zerror(gettext("These file systems are mounted on " 4318ee519a1fSgjelinek "subdirectories of %s.\n"), zonepath); 4319ee519a1fSgjelinek (void) zonecfg_find_mounts(zonepath, zfm_print, NULL); 4320ee519a1fSgjelinek return (Z_ERR); 4321ee519a1fSgjelinek } 4322ee519a1fSgjelinek 4323ee519a1fSgjelinek if ((handle = zonecfg_init_handle()) == NULL) { 4324ee519a1fSgjelinek zperror(cmd_to_str(CMD_DETACH), B_TRUE); 4325ee519a1fSgjelinek return (Z_ERR); 4326ee519a1fSgjelinek } 4327ee519a1fSgjelinek 4328ee519a1fSgjelinek if ((err = zonecfg_get_handle(target_zone, handle)) != Z_OK) { 4329ee519a1fSgjelinek errno = err; 4330ee519a1fSgjelinek zperror(cmd_to_str(CMD_DETACH), B_TRUE); 4331ee519a1fSgjelinek zonecfg_fini_handle(handle); 4332ee519a1fSgjelinek return (Z_ERR); 4333ee519a1fSgjelinek } 4334ee519a1fSgjelinek 43358cd327d5Sgjelinek if (execute && grab_lock_file(target_zone, &lockfd) != Z_OK) { 4336ee519a1fSgjelinek zerror(gettext("another %s may have an operation in progress."), 4337ee519a1fSgjelinek "zoneadm"); 4338ee519a1fSgjelinek zonecfg_fini_handle(handle); 4339ee519a1fSgjelinek return (Z_ERR); 4340ee519a1fSgjelinek } 4341ee519a1fSgjelinek 4342ee519a1fSgjelinek if ((err = zonecfg_get_detach_info(handle, B_TRUE)) != Z_OK) { 4343ee519a1fSgjelinek errno = err; 4344ee519a1fSgjelinek zperror(gettext("getting the detach information failed"), 4345ee519a1fSgjelinek B_TRUE); 4346ee519a1fSgjelinek goto done; 4347ee519a1fSgjelinek } 4348ee519a1fSgjelinek 43498cd327d5Sgjelinek if ((err = zonecfg_detach_save(handle, (execute ? 0 : ZONE_DRY_RUN))) 43508cd327d5Sgjelinek != Z_OK) { 4351ee519a1fSgjelinek errno = err; 4352ee519a1fSgjelinek zperror(gettext("saving the detach manifest failed"), B_TRUE); 4353ee519a1fSgjelinek goto done; 4354ee519a1fSgjelinek } 4355ee519a1fSgjelinek 43568cd327d5Sgjelinek /* 43578cd327d5Sgjelinek * Set the zone state back to configured unless we are running with the 43588cd327d5Sgjelinek * no-execute option. 43598cd327d5Sgjelinek */ 43608cd327d5Sgjelinek if (execute && (err = zone_set_state(target_zone, 43618cd327d5Sgjelinek ZONE_STATE_CONFIGURED)) != Z_OK) { 4362ee519a1fSgjelinek errno = err; 4363ee519a1fSgjelinek zperror(gettext("could not reset state"), B_TRUE); 4364ee519a1fSgjelinek } 4365ee519a1fSgjelinek 4366ee519a1fSgjelinek done: 4367ee519a1fSgjelinek zonecfg_fini_handle(handle); 43688cd327d5Sgjelinek if (execute) 4369ee519a1fSgjelinek release_lock_file(lockfd); 4370ee519a1fSgjelinek 4371ee519a1fSgjelinek return ((err == Z_OK) ? Z_OK : Z_ERR); 4372ee519a1fSgjelinek } 4373ee519a1fSgjelinek 4374ee519a1fSgjelinek /* 4375ee519a1fSgjelinek * During attach we go through and fix up the /dev entries for the zone 4376ee519a1fSgjelinek * we are attaching. In order to regenerate /dev with the correct devices, 4377ee519a1fSgjelinek * the old /dev will be removed, the zone readied (which generates a new 4378ee519a1fSgjelinek * /dev) then halted, then we use the info from the manifest to update 4379ee519a1fSgjelinek * the modes, owners, etc. on the new /dev. 4380ee519a1fSgjelinek */ 4381ee519a1fSgjelinek static int 4382ee519a1fSgjelinek dev_fix(zone_dochandle_t handle) 4383ee519a1fSgjelinek { 4384ee519a1fSgjelinek int res; 4385ee519a1fSgjelinek int err; 4386ee519a1fSgjelinek int status; 4387ee519a1fSgjelinek struct zone_devpermtab devtab; 4388ee519a1fSgjelinek zone_cmd_arg_t zarg; 4389ee519a1fSgjelinek char devpath[MAXPATHLEN]; 4390ee519a1fSgjelinek /* 6: "exec " and " " */ 4391ee519a1fSgjelinek char cmdbuf[sizeof (RMCOMMAND) + MAXPATHLEN + 6]; 4392ee519a1fSgjelinek 4393ee519a1fSgjelinek if ((res = zonecfg_get_zonepath(handle, devpath, sizeof (devpath))) 4394ee519a1fSgjelinek != Z_OK) 4395ee519a1fSgjelinek return (res); 4396ee519a1fSgjelinek 4397ee519a1fSgjelinek if (strlcat(devpath, "/dev", sizeof (devpath)) >= sizeof (devpath)) 4398ee519a1fSgjelinek return (Z_TOO_BIG); 4399ee519a1fSgjelinek 4400ee519a1fSgjelinek /* 4401ee519a1fSgjelinek * "exec" the command so that the returned status is that of 4402ee519a1fSgjelinek * RMCOMMAND and not the shell. 4403ee519a1fSgjelinek */ 44049acbbeafSnn35248 (void) snprintf(cmdbuf, sizeof (cmdbuf), EXEC_PREFIX RMCOMMAND " %s", 4405ee519a1fSgjelinek devpath); 4406ee519a1fSgjelinek status = do_subproc(cmdbuf); 44079acbbeafSnn35248 if ((err = subproc_status(RMCOMMAND, status, B_TRUE)) != 44089acbbeafSnn35248 ZONE_SUBPROC_OK) { 4409ee519a1fSgjelinek (void) fprintf(stderr, 4410ee519a1fSgjelinek gettext("could not remove existing /dev\n")); 4411ee519a1fSgjelinek return (Z_ERR); 4412ee519a1fSgjelinek } 4413ee519a1fSgjelinek 4414ee519a1fSgjelinek /* In order to ready the zone, it must be in the installed state */ 4415ee519a1fSgjelinek if ((err = zone_set_state(target_zone, ZONE_STATE_INSTALLED)) != Z_OK) { 4416ee519a1fSgjelinek errno = err; 4417ee519a1fSgjelinek zperror(gettext("could not reset state"), B_TRUE); 4418ee519a1fSgjelinek return (Z_ERR); 4419ee519a1fSgjelinek } 4420ee519a1fSgjelinek 4421ee519a1fSgjelinek /* We have to ready the zone to regen the dev tree */ 4422ee519a1fSgjelinek zarg.cmd = Z_READY; 4423ee519a1fSgjelinek if (call_zoneadmd(target_zone, &zarg) != 0) { 4424ee519a1fSgjelinek zerror(gettext("call to %s failed"), "zoneadmd"); 44250209230bSgjelinek /* attempt to restore zone to configured state */ 44260209230bSgjelinek (void) zone_set_state(target_zone, ZONE_STATE_CONFIGURED); 4427ee519a1fSgjelinek return (Z_ERR); 4428ee519a1fSgjelinek } 4429ee519a1fSgjelinek 4430ee519a1fSgjelinek zarg.cmd = Z_HALT; 4431ee519a1fSgjelinek if (call_zoneadmd(target_zone, &zarg) != 0) { 4432ee519a1fSgjelinek zerror(gettext("call to %s failed"), "zoneadmd"); 44330209230bSgjelinek /* attempt to restore zone to configured state */ 44340209230bSgjelinek (void) zone_set_state(target_zone, ZONE_STATE_CONFIGURED); 4435ee519a1fSgjelinek return (Z_ERR); 4436ee519a1fSgjelinek } 4437ee519a1fSgjelinek 44380209230bSgjelinek /* attempt to restore zone to configured state */ 44390209230bSgjelinek (void) zone_set_state(target_zone, ZONE_STATE_CONFIGURED); 44400209230bSgjelinek 4441ee519a1fSgjelinek if (zonecfg_setdevperment(handle) != Z_OK) { 4442ee519a1fSgjelinek (void) fprintf(stderr, 4443ee519a1fSgjelinek gettext("unable to enumerate device entries\n")); 4444ee519a1fSgjelinek return (Z_ERR); 4445ee519a1fSgjelinek } 4446ee519a1fSgjelinek 4447ee519a1fSgjelinek while (zonecfg_getdevperment(handle, &devtab) == Z_OK) { 4448ee519a1fSgjelinek int err; 4449ee519a1fSgjelinek 4450ee519a1fSgjelinek if ((err = zonecfg_devperms_apply(handle, 4451ee519a1fSgjelinek devtab.zone_devperm_name, devtab.zone_devperm_uid, 4452ee519a1fSgjelinek devtab.zone_devperm_gid, devtab.zone_devperm_mode, 4453ee519a1fSgjelinek devtab.zone_devperm_acl)) != Z_OK && err != Z_INVAL) 4454ee519a1fSgjelinek (void) fprintf(stderr, gettext("error updating device " 4455ee519a1fSgjelinek "%s: %s\n"), devtab.zone_devperm_name, 4456ee519a1fSgjelinek zonecfg_strerror(err)); 4457ee519a1fSgjelinek 4458ee519a1fSgjelinek free(devtab.zone_devperm_acl); 4459ee519a1fSgjelinek } 4460ee519a1fSgjelinek 4461ee519a1fSgjelinek (void) zonecfg_enddevperment(handle); 4462ee519a1fSgjelinek 4463ee519a1fSgjelinek return (Z_OK); 4464ee519a1fSgjelinek } 4465ee519a1fSgjelinek 44668cd327d5Sgjelinek /* 44678cd327d5Sgjelinek * Validate attaching a zone but don't actually do the work. The zone 44688cd327d5Sgjelinek * does not have to exist, so there is some complexity getting a new zone 44698cd327d5Sgjelinek * configuration set up so that we can perform the validation. This is 44708cd327d5Sgjelinek * handled within zonecfg_attach_manifest() which returns two handles; one 44718cd327d5Sgjelinek * for the the full configuration to validate (rem_handle) and the other 44728cd327d5Sgjelinek * (local_handle) containing only the zone configuration derived from the 44738cd327d5Sgjelinek * manifest. 44748cd327d5Sgjelinek */ 44758cd327d5Sgjelinek static int 4476ce28b40eSzt129084 dryrun_attach(char *manifest_path, char *argv[]) 44778cd327d5Sgjelinek { 44788cd327d5Sgjelinek int fd; 44798cd327d5Sgjelinek int err; 44808cd327d5Sgjelinek int res; 44818cd327d5Sgjelinek zone_dochandle_t local_handle; 44828cd327d5Sgjelinek zone_dochandle_t rem_handle = NULL; 44838cd327d5Sgjelinek 44848cd327d5Sgjelinek if (strcmp(manifest_path, "-") == 0) { 44858cd327d5Sgjelinek fd = 0; 44868cd327d5Sgjelinek } else if ((fd = open(manifest_path, O_RDONLY)) < 0) { 44878cd327d5Sgjelinek zperror(gettext("could not open manifest path"), B_FALSE); 44888cd327d5Sgjelinek return (Z_ERR); 44898cd327d5Sgjelinek } 44908cd327d5Sgjelinek 44918cd327d5Sgjelinek if ((local_handle = zonecfg_init_handle()) == NULL) { 44928cd327d5Sgjelinek zperror(cmd_to_str(CMD_ATTACH), B_TRUE); 44938cd327d5Sgjelinek res = Z_ERR; 44948cd327d5Sgjelinek goto done; 44958cd327d5Sgjelinek } 44968cd327d5Sgjelinek 44978cd327d5Sgjelinek if ((rem_handle = zonecfg_init_handle()) == NULL) { 44988cd327d5Sgjelinek zperror(cmd_to_str(CMD_ATTACH), B_TRUE); 44998cd327d5Sgjelinek res = Z_ERR; 45008cd327d5Sgjelinek goto done; 45018cd327d5Sgjelinek } 45028cd327d5Sgjelinek 45038cd327d5Sgjelinek if ((err = zonecfg_attach_manifest(fd, local_handle, rem_handle)) 45048cd327d5Sgjelinek != Z_OK) { 45058cd327d5Sgjelinek if (err == Z_INVALID_DOCUMENT) 45068cd327d5Sgjelinek zerror(gettext("Cannot attach to an earlier release " 45078cd327d5Sgjelinek "of the operating system")); 45088cd327d5Sgjelinek else 45098cd327d5Sgjelinek zperror(cmd_to_str(CMD_ATTACH), B_TRUE); 45108cd327d5Sgjelinek res = Z_ERR; 45118cd327d5Sgjelinek goto done; 45128cd327d5Sgjelinek } 45138cd327d5Sgjelinek 4514e2482d1aSgjelinek /* 4515e2482d1aSgjelinek * Retrieve remote handle brand type and determine whether it is 4516e2482d1aSgjelinek * native or not. 4517e2482d1aSgjelinek */ 4518e2482d1aSgjelinek if (zonecfg_get_brand(rem_handle, target_brand, sizeof (target_brand)) 4519e2482d1aSgjelinek != Z_OK) { 4520e2482d1aSgjelinek zerror(gettext("missing or invalid brand")); 4521e2482d1aSgjelinek exit(Z_ERR); 4522e2482d1aSgjelinek } 4523e2482d1aSgjelinek is_native_zone = (strcmp(target_brand, NATIVE_BRAND_NAME) == 0); 4524e2482d1aSgjelinek 4525ce28b40eSzt129084 res = verify_handle(CMD_ATTACH, local_handle, argv); 45268cd327d5Sgjelinek 45278cd327d5Sgjelinek /* Get the detach information for the locally defined zone. */ 45288cd327d5Sgjelinek if ((err = zonecfg_get_detach_info(local_handle, B_FALSE)) != Z_OK) { 45298cd327d5Sgjelinek errno = err; 45308cd327d5Sgjelinek zperror(gettext("getting the attach information failed"), 45318cd327d5Sgjelinek B_TRUE); 45328cd327d5Sgjelinek res = Z_ERR; 45338cd327d5Sgjelinek } else { 45348cd327d5Sgjelinek /* sw_cmp prints error msgs as necessary */ 45358cd327d5Sgjelinek if (sw_cmp(local_handle, rem_handle, SW_CMP_NONE) != Z_OK) 45368cd327d5Sgjelinek res = Z_ERR; 45378cd327d5Sgjelinek } 45388cd327d5Sgjelinek 45398cd327d5Sgjelinek done: 45408cd327d5Sgjelinek if (strcmp(manifest_path, "-") != 0) 45418cd327d5Sgjelinek (void) close(fd); 45428cd327d5Sgjelinek 45438cd327d5Sgjelinek zonecfg_fini_handle(local_handle); 45448cd327d5Sgjelinek zonecfg_fini_handle(rem_handle); 45458cd327d5Sgjelinek 45468cd327d5Sgjelinek return ((res == Z_OK) ? Z_OK : Z_ERR); 45478cd327d5Sgjelinek } 45488cd327d5Sgjelinek 4549ee519a1fSgjelinek static int 4550ee519a1fSgjelinek attach_func(int argc, char *argv[]) 4551ee519a1fSgjelinek { 4552ee519a1fSgjelinek int lockfd; 4553ee519a1fSgjelinek int err, arg; 4554ee519a1fSgjelinek boolean_t force = B_FALSE; 4555ee519a1fSgjelinek zone_dochandle_t handle; 4556ee519a1fSgjelinek zone_dochandle_t athandle = NULL; 4557ee519a1fSgjelinek char zonepath[MAXPATHLEN]; 45589acbbeafSnn35248 char brand[MAXNAMELEN], atbrand[MAXNAMELEN]; 45598cd327d5Sgjelinek boolean_t execute = B_TRUE; 45608cd327d5Sgjelinek char *manifest_path; 4561ee519a1fSgjelinek 4562ee519a1fSgjelinek if (zonecfg_in_alt_root()) { 4563ee519a1fSgjelinek zerror(gettext("cannot attach zone in alternate root")); 4564ee519a1fSgjelinek return (Z_ERR); 4565ee519a1fSgjelinek } 4566ee519a1fSgjelinek 4567ee519a1fSgjelinek optind = 0; 45688cd327d5Sgjelinek if ((arg = getopt(argc, argv, "?Fn:")) != EOF) { 4569ee519a1fSgjelinek switch (arg) { 4570ee519a1fSgjelinek case '?': 4571ee519a1fSgjelinek sub_usage(SHELP_ATTACH, CMD_ATTACH); 4572ee519a1fSgjelinek return (optopt == '?' ? Z_OK : Z_USAGE); 4573ee519a1fSgjelinek case 'F': 4574ee519a1fSgjelinek force = B_TRUE; 4575ee519a1fSgjelinek break; 45768cd327d5Sgjelinek case 'n': 45778cd327d5Sgjelinek execute = B_FALSE; 45788cd327d5Sgjelinek manifest_path = optarg; 45798cd327d5Sgjelinek break; 4580ee519a1fSgjelinek default: 4581ee519a1fSgjelinek sub_usage(SHELP_ATTACH, CMD_ATTACH); 4582ee519a1fSgjelinek return (Z_USAGE); 4583ee519a1fSgjelinek } 4584ee519a1fSgjelinek } 45858cd327d5Sgjelinek 45868cd327d5Sgjelinek /* 45878cd327d5Sgjelinek * If the no-execute option was specified, we need to branch down 45888cd327d5Sgjelinek * a completely different path since there is no zone required to be 45898cd327d5Sgjelinek * configured for this option. 45908cd327d5Sgjelinek */ 45918cd327d5Sgjelinek if (!execute) 4592ce28b40eSzt129084 return (dryrun_attach(manifest_path, argv)); 45938cd327d5Sgjelinek 45949acbbeafSnn35248 if (sanity_check(target_zone, CMD_ATTACH, B_FALSE, B_TRUE, B_FALSE) 45959acbbeafSnn35248 != Z_OK) 4596ee519a1fSgjelinek return (Z_ERR); 4597ce28b40eSzt129084 if (verify_details(CMD_ATTACH, argv) != Z_OK) 4598ee519a1fSgjelinek return (Z_ERR); 4599ee519a1fSgjelinek 4600ee519a1fSgjelinek if ((err = zone_get_zonepath(target_zone, zonepath, sizeof (zonepath))) 4601ee519a1fSgjelinek != Z_OK) { 4602ee519a1fSgjelinek errno = err; 4603ee519a1fSgjelinek zperror2(target_zone, gettext("could not get zone path")); 4604ee519a1fSgjelinek return (Z_ERR); 4605ee519a1fSgjelinek } 4606ee519a1fSgjelinek 4607ee519a1fSgjelinek if ((handle = zonecfg_init_handle()) == NULL) { 4608ee519a1fSgjelinek zperror(cmd_to_str(CMD_ATTACH), B_TRUE); 4609ee519a1fSgjelinek return (Z_ERR); 4610ee519a1fSgjelinek } 4611ee519a1fSgjelinek 4612ee519a1fSgjelinek if ((err = zonecfg_get_handle(target_zone, handle)) != Z_OK) { 4613ee519a1fSgjelinek errno = err; 4614ee519a1fSgjelinek zperror(cmd_to_str(CMD_ATTACH), B_TRUE); 4615ee519a1fSgjelinek zonecfg_fini_handle(handle); 4616ee519a1fSgjelinek return (Z_ERR); 4617ee519a1fSgjelinek } 4618ee519a1fSgjelinek 4619ee519a1fSgjelinek if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 4620ee519a1fSgjelinek zerror(gettext("another %s may have an operation in progress."), 4621ee519a1fSgjelinek "zoneadm"); 4622ee519a1fSgjelinek zonecfg_fini_handle(handle); 4623ee519a1fSgjelinek return (Z_ERR); 4624ee519a1fSgjelinek } 4625ee519a1fSgjelinek 4626ee519a1fSgjelinek if (force) 4627ee519a1fSgjelinek goto forced; 4628ee519a1fSgjelinek 4629ee519a1fSgjelinek if ((athandle = zonecfg_init_handle()) == NULL) { 4630ee519a1fSgjelinek zperror(cmd_to_str(CMD_ATTACH), B_TRUE); 4631ee519a1fSgjelinek goto done; 4632ee519a1fSgjelinek } 4633ee519a1fSgjelinek 4634ee519a1fSgjelinek if ((err = zonecfg_get_attach_handle(zonepath, target_zone, B_TRUE, 4635ee519a1fSgjelinek athandle)) != Z_OK) { 4636ee519a1fSgjelinek if (err == Z_NO_ZONE) 4637ee519a1fSgjelinek zerror(gettext("Not a detached zone")); 4638ee519a1fSgjelinek else if (err == Z_INVALID_DOCUMENT) 4639ee519a1fSgjelinek zerror(gettext("Cannot attach to an earlier release " 4640ee519a1fSgjelinek "of the operating system")); 4641ee519a1fSgjelinek else 4642ee519a1fSgjelinek zperror(cmd_to_str(CMD_ATTACH), B_TRUE); 4643ee519a1fSgjelinek goto done; 4644ee519a1fSgjelinek } 4645ee519a1fSgjelinek 4646ee519a1fSgjelinek /* Get the detach information for the locally defined zone. */ 4647ee519a1fSgjelinek if ((err = zonecfg_get_detach_info(handle, B_FALSE)) != Z_OK) { 4648ee519a1fSgjelinek errno = err; 4649ee519a1fSgjelinek zperror(gettext("getting the attach information failed"), 4650ee519a1fSgjelinek B_TRUE); 4651ee519a1fSgjelinek goto done; 4652ee519a1fSgjelinek } 4653ee519a1fSgjelinek 46549acbbeafSnn35248 /* 46559acbbeafSnn35248 * Ensure that the detached and locally defined zones are both of 46569acbbeafSnn35248 * the same brand. 46579acbbeafSnn35248 */ 46589acbbeafSnn35248 if ((zonecfg_get_brand(handle, brand, sizeof (brand)) != 0) || 46599acbbeafSnn35248 (zonecfg_get_brand(athandle, atbrand, sizeof (atbrand)) != 0)) { 46609acbbeafSnn35248 err = Z_ERR; 46619acbbeafSnn35248 zerror(gettext("missing or invalid brand")); 46629acbbeafSnn35248 goto done; 46639acbbeafSnn35248 } 46649acbbeafSnn35248 46659acbbeafSnn35248 if (strcmp(atbrand, brand) != NULL) { 46669acbbeafSnn35248 err = Z_ERR; 46679acbbeafSnn35248 zerror(gettext("Trying to attach a '%s' zone to a '%s' " 46689acbbeafSnn35248 "configuration."), atbrand, brand); 46699acbbeafSnn35248 goto done; 46709acbbeafSnn35248 } 46719acbbeafSnn35248 4672ee519a1fSgjelinek /* sw_cmp prints error msgs as necessary */ 46730b5de56dSgjelinek if ((err = sw_cmp(handle, athandle, SW_CMP_NONE)) != Z_OK) 4674ee519a1fSgjelinek goto done; 4675ee519a1fSgjelinek 4676ee519a1fSgjelinek if ((err = dev_fix(athandle)) != Z_OK) 4677ee519a1fSgjelinek goto done; 4678ee519a1fSgjelinek 4679ee519a1fSgjelinek forced: 4680ee519a1fSgjelinek 4681ee519a1fSgjelinek zonecfg_rm_detached(handle, force); 4682ee519a1fSgjelinek 4683ee519a1fSgjelinek if ((err = zone_set_state(target_zone, ZONE_STATE_INSTALLED)) != Z_OK) { 4684ee519a1fSgjelinek errno = err; 4685ee519a1fSgjelinek zperror(gettext("could not reset state"), B_TRUE); 4686ee519a1fSgjelinek } 4687ee519a1fSgjelinek 4688ee519a1fSgjelinek done: 4689ee519a1fSgjelinek zonecfg_fini_handle(handle); 4690ee519a1fSgjelinek release_lock_file(lockfd); 4691ee519a1fSgjelinek if (athandle != NULL) 4692ee519a1fSgjelinek zonecfg_fini_handle(athandle); 4693ee519a1fSgjelinek 4694ee519a1fSgjelinek return ((err == Z_OK) ? Z_OK : Z_ERR); 4695ee519a1fSgjelinek } 4696ee519a1fSgjelinek 4697865e09a4Sgjelinek /* 46987c478bd9Sstevel@tonic-gate * On input, TRUE => yes, FALSE => no. 46997c478bd9Sstevel@tonic-gate * On return, TRUE => 1, FALSE => 0, could not ask => -1. 47007c478bd9Sstevel@tonic-gate */ 47017c478bd9Sstevel@tonic-gate 47027c478bd9Sstevel@tonic-gate static int 47037c478bd9Sstevel@tonic-gate ask_yesno(boolean_t default_answer, const char *question) 47047c478bd9Sstevel@tonic-gate { 47057c478bd9Sstevel@tonic-gate char line[64]; /* should be large enough to answer yes or no */ 47067c478bd9Sstevel@tonic-gate 47077c478bd9Sstevel@tonic-gate if (!isatty(STDIN_FILENO)) 47087c478bd9Sstevel@tonic-gate return (-1); 47097c478bd9Sstevel@tonic-gate for (;;) { 47107c478bd9Sstevel@tonic-gate (void) printf("%s (%s)? ", question, 47117c478bd9Sstevel@tonic-gate default_answer ? "[y]/n" : "y/[n]"); 47127c478bd9Sstevel@tonic-gate if (fgets(line, sizeof (line), stdin) == NULL || 47137c478bd9Sstevel@tonic-gate line[0] == '\n') 47147c478bd9Sstevel@tonic-gate return (default_answer ? 1 : 0); 47157c478bd9Sstevel@tonic-gate if (tolower(line[0]) == 'y') 47167c478bd9Sstevel@tonic-gate return (1); 47177c478bd9Sstevel@tonic-gate if (tolower(line[0]) == 'n') 47187c478bd9Sstevel@tonic-gate return (0); 47197c478bd9Sstevel@tonic-gate } 47207c478bd9Sstevel@tonic-gate } 47217c478bd9Sstevel@tonic-gate 47227c478bd9Sstevel@tonic-gate static int 47237c478bd9Sstevel@tonic-gate uninstall_func(int argc, char *argv[]) 47247c478bd9Sstevel@tonic-gate { 47257c478bd9Sstevel@tonic-gate char line[ZONENAME_MAX + 128]; /* Enough for "Are you sure ..." */ 47260b5de56dSgjelinek char rootpath[MAXPATHLEN], zonepath[MAXPATHLEN]; 47277c478bd9Sstevel@tonic-gate boolean_t force = B_FALSE; 47287c478bd9Sstevel@tonic-gate int lockfd, answer; 47297c478bd9Sstevel@tonic-gate int err, arg; 47307c478bd9Sstevel@tonic-gate 4731108322fbScarlsonj if (zonecfg_in_alt_root()) { 4732108322fbScarlsonj zerror(gettext("cannot uninstall zone in alternate root")); 4733108322fbScarlsonj return (Z_ERR); 4734108322fbScarlsonj } 4735108322fbScarlsonj 47367c478bd9Sstevel@tonic-gate optind = 0; 47377c478bd9Sstevel@tonic-gate while ((arg = getopt(argc, argv, "?F")) != EOF) { 47387c478bd9Sstevel@tonic-gate switch (arg) { 47397c478bd9Sstevel@tonic-gate case '?': 47407c478bd9Sstevel@tonic-gate sub_usage(SHELP_UNINSTALL, CMD_UNINSTALL); 47417c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 47427c478bd9Sstevel@tonic-gate case 'F': 47437c478bd9Sstevel@tonic-gate force = B_TRUE; 47447c478bd9Sstevel@tonic-gate break; 47457c478bd9Sstevel@tonic-gate default: 47467c478bd9Sstevel@tonic-gate sub_usage(SHELP_UNINSTALL, CMD_UNINSTALL); 47477c478bd9Sstevel@tonic-gate return (Z_USAGE); 47487c478bd9Sstevel@tonic-gate } 47497c478bd9Sstevel@tonic-gate } 47507c478bd9Sstevel@tonic-gate if (argc > optind) { 47517c478bd9Sstevel@tonic-gate sub_usage(SHELP_UNINSTALL, CMD_UNINSTALL); 47527c478bd9Sstevel@tonic-gate return (Z_USAGE); 47537c478bd9Sstevel@tonic-gate } 47547c478bd9Sstevel@tonic-gate 47559acbbeafSnn35248 if (sanity_check(target_zone, CMD_UNINSTALL, B_FALSE, B_TRUE, B_FALSE) 47569acbbeafSnn35248 != Z_OK) 47577c478bd9Sstevel@tonic-gate return (Z_ERR); 47587c478bd9Sstevel@tonic-gate 4759ce28b40eSzt129084 /* 4760ce28b40eSzt129084 * Invoke brand-specific handler. 4761ce28b40eSzt129084 */ 4762ce28b40eSzt129084 if (invoke_brand_handler(CMD_UNINSTALL, argv) != Z_OK) 4763ce28b40eSzt129084 return (Z_ERR); 4764ce28b40eSzt129084 47657c478bd9Sstevel@tonic-gate if (!force) { 47667c478bd9Sstevel@tonic-gate (void) snprintf(line, sizeof (line), 47677c478bd9Sstevel@tonic-gate gettext("Are you sure you want to %s zone %s"), 47687c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL), target_zone); 47697c478bd9Sstevel@tonic-gate if ((answer = ask_yesno(B_FALSE, line)) == 0) { 47707c478bd9Sstevel@tonic-gate return (Z_OK); 47717c478bd9Sstevel@tonic-gate } else if (answer == -1) { 47727c478bd9Sstevel@tonic-gate zerror(gettext("Input not from terminal and -F " 47737c478bd9Sstevel@tonic-gate "not specified: %s not done."), 47747c478bd9Sstevel@tonic-gate cmd_to_str(CMD_UNINSTALL)); 47757c478bd9Sstevel@tonic-gate return (Z_ERR); 47767c478bd9Sstevel@tonic-gate } 47777c478bd9Sstevel@tonic-gate } 47787c478bd9Sstevel@tonic-gate 47790b5de56dSgjelinek if ((err = zone_get_zonepath(target_zone, zonepath, 47800b5de56dSgjelinek sizeof (zonepath))) != Z_OK) { 47817c478bd9Sstevel@tonic-gate errno = err; 47827c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get zone path")); 47837c478bd9Sstevel@tonic-gate return (Z_ERR); 47847c478bd9Sstevel@tonic-gate } 47857c478bd9Sstevel@tonic-gate if ((err = zone_get_rootpath(target_zone, rootpath, 47867c478bd9Sstevel@tonic-gate sizeof (rootpath))) != Z_OK) { 47877c478bd9Sstevel@tonic-gate errno = err; 47887c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not get root path")); 47897c478bd9Sstevel@tonic-gate return (Z_ERR); 47907c478bd9Sstevel@tonic-gate } 47917c478bd9Sstevel@tonic-gate 47927c478bd9Sstevel@tonic-gate /* 47937c478bd9Sstevel@tonic-gate * If there seems to be a zoneadmd running for this zone, call it 47947c478bd9Sstevel@tonic-gate * to tell it that an uninstall is happening; if all goes well it 47957c478bd9Sstevel@tonic-gate * will then shut itself down. 47967c478bd9Sstevel@tonic-gate */ 47977c478bd9Sstevel@tonic-gate if (ping_zoneadmd(target_zone) == Z_OK) { 47987c478bd9Sstevel@tonic-gate zone_cmd_arg_t zarg; 47997c478bd9Sstevel@tonic-gate zarg.cmd = Z_NOTE_UNINSTALLING; 48007c478bd9Sstevel@tonic-gate /* we don't care too much if this fails... just plow on */ 48017c478bd9Sstevel@tonic-gate (void) call_zoneadmd(target_zone, &zarg); 48027c478bd9Sstevel@tonic-gate } 48037c478bd9Sstevel@tonic-gate 48047c478bd9Sstevel@tonic-gate if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 48057c478bd9Sstevel@tonic-gate zerror(gettext("another %s may have an operation in progress."), 4806865e09a4Sgjelinek "zoneadm"); 48077c478bd9Sstevel@tonic-gate return (Z_ERR); 48087c478bd9Sstevel@tonic-gate } 48097c478bd9Sstevel@tonic-gate 48107c478bd9Sstevel@tonic-gate /* Don't uninstall the zone if anything is mounted there */ 48117c478bd9Sstevel@tonic-gate err = zonecfg_find_mounts(rootpath, NULL, NULL); 48127c478bd9Sstevel@tonic-gate if (err) { 48130b5de56dSgjelinek zerror(gettext("These file systems are mounted on " 48147c478bd9Sstevel@tonic-gate "subdirectories of %s.\n"), rootpath); 48157c478bd9Sstevel@tonic-gate (void) zonecfg_find_mounts(rootpath, zfm_print, NULL); 48167c478bd9Sstevel@tonic-gate return (Z_ERR); 48177c478bd9Sstevel@tonic-gate } 48187c478bd9Sstevel@tonic-gate 48197c478bd9Sstevel@tonic-gate err = zone_set_state(target_zone, ZONE_STATE_INCOMPLETE); 48207c478bd9Sstevel@tonic-gate if (err != Z_OK) { 48217c478bd9Sstevel@tonic-gate errno = err; 48227c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not set state")); 48237c478bd9Sstevel@tonic-gate goto bad; 48247c478bd9Sstevel@tonic-gate } 48257c478bd9Sstevel@tonic-gate 48260b5de56dSgjelinek if ((err = cleanup_zonepath(zonepath, B_FALSE)) != Z_OK) { 48270b5de56dSgjelinek errno = err; 48280b5de56dSgjelinek zperror2(target_zone, gettext("cleaning up zonepath failed")); 48297c478bd9Sstevel@tonic-gate goto bad; 48300b5de56dSgjelinek } 48310b5de56dSgjelinek 48327c478bd9Sstevel@tonic-gate err = zone_set_state(target_zone, ZONE_STATE_CONFIGURED); 48337c478bd9Sstevel@tonic-gate if (err != Z_OK) { 48347c478bd9Sstevel@tonic-gate errno = err; 48357c478bd9Sstevel@tonic-gate zperror2(target_zone, gettext("could not reset state")); 48367c478bd9Sstevel@tonic-gate } 48377c478bd9Sstevel@tonic-gate bad: 48387c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 48397c478bd9Sstevel@tonic-gate return (err); 48407c478bd9Sstevel@tonic-gate } 48417c478bd9Sstevel@tonic-gate 4842108322fbScarlsonj /* ARGSUSED */ 4843108322fbScarlsonj static int 4844108322fbScarlsonj mount_func(int argc, char *argv[]) 4845108322fbScarlsonj { 4846108322fbScarlsonj zone_cmd_arg_t zarg; 48479acbbeafSnn35248 boolean_t force = B_FALSE; 48489acbbeafSnn35248 int arg; 4849108322fbScarlsonj 48509acbbeafSnn35248 /* 48519acbbeafSnn35248 * The only supported subargument to the "mount" subcommand is 48529acbbeafSnn35248 * "-f", which forces us to mount a zone in the INCOMPLETE state. 48539acbbeafSnn35248 */ 48549acbbeafSnn35248 optind = 0; 48559acbbeafSnn35248 if ((arg = getopt(argc, argv, "f")) != EOF) { 48569acbbeafSnn35248 switch (arg) { 48579acbbeafSnn35248 case 'f': 48589acbbeafSnn35248 force = B_TRUE; 48599acbbeafSnn35248 break; 48609acbbeafSnn35248 default: 4861108322fbScarlsonj return (Z_USAGE); 48629acbbeafSnn35248 } 48639acbbeafSnn35248 } 48649acbbeafSnn35248 if (argc > optind) 48659acbbeafSnn35248 return (Z_USAGE); 48669acbbeafSnn35248 48679acbbeafSnn35248 if (sanity_check(target_zone, CMD_MOUNT, B_FALSE, B_FALSE, force) 48689acbbeafSnn35248 != Z_OK) 4869108322fbScarlsonj return (Z_ERR); 4870ce28b40eSzt129084 if (verify_details(CMD_MOUNT, argv) != Z_OK) 4871108322fbScarlsonj return (Z_ERR); 4872108322fbScarlsonj 48739acbbeafSnn35248 zarg.cmd = force ? Z_FORCEMOUNT : Z_MOUNT; 4874108322fbScarlsonj if (call_zoneadmd(target_zone, &zarg) != 0) { 4875108322fbScarlsonj zerror(gettext("call to %s failed"), "zoneadmd"); 4876108322fbScarlsonj return (Z_ERR); 4877108322fbScarlsonj } 4878108322fbScarlsonj return (Z_OK); 4879108322fbScarlsonj } 4880108322fbScarlsonj 4881108322fbScarlsonj /* ARGSUSED */ 4882108322fbScarlsonj static int 4883108322fbScarlsonj unmount_func(int argc, char *argv[]) 4884108322fbScarlsonj { 4885108322fbScarlsonj zone_cmd_arg_t zarg; 4886108322fbScarlsonj 4887108322fbScarlsonj if (argc > 0) 4888108322fbScarlsonj return (Z_USAGE); 48899acbbeafSnn35248 if (sanity_check(target_zone, CMD_UNMOUNT, B_FALSE, B_FALSE, B_FALSE) 48909acbbeafSnn35248 != Z_OK) 4891108322fbScarlsonj return (Z_ERR); 4892108322fbScarlsonj 4893108322fbScarlsonj zarg.cmd = Z_UNMOUNT; 4894108322fbScarlsonj if (call_zoneadmd(target_zone, &zarg) != 0) { 4895108322fbScarlsonj zerror(gettext("call to %s failed"), "zoneadmd"); 4896108322fbScarlsonj return (Z_ERR); 4897108322fbScarlsonj } 4898108322fbScarlsonj return (Z_OK); 4899108322fbScarlsonj } 4900108322fbScarlsonj 49017c478bd9Sstevel@tonic-gate static int 4902555afedfScarlsonj mark_func(int argc, char *argv[]) 4903555afedfScarlsonj { 4904555afedfScarlsonj int err, lockfd; 4905555afedfScarlsonj 4906555afedfScarlsonj if (argc != 1 || strcmp(argv[0], "incomplete") != 0) 4907555afedfScarlsonj return (Z_USAGE); 49089acbbeafSnn35248 if (sanity_check(target_zone, CMD_MARK, B_FALSE, B_FALSE, B_FALSE) 49099acbbeafSnn35248 != Z_OK) 4910555afedfScarlsonj return (Z_ERR); 4911555afedfScarlsonj 4912ce28b40eSzt129084 /* 4913ce28b40eSzt129084 * Invoke brand-specific handler. 4914ce28b40eSzt129084 */ 4915ce28b40eSzt129084 if (invoke_brand_handler(CMD_MARK, argv) != Z_OK) 4916ce28b40eSzt129084 return (Z_ERR); 4917ce28b40eSzt129084 4918555afedfScarlsonj if (grab_lock_file(target_zone, &lockfd) != Z_OK) { 4919555afedfScarlsonj zerror(gettext("another %s may have an operation in progress."), 4920555afedfScarlsonj "zoneadm"); 4921555afedfScarlsonj return (Z_ERR); 4922555afedfScarlsonj } 4923555afedfScarlsonj 4924555afedfScarlsonj err = zone_set_state(target_zone, ZONE_STATE_INCOMPLETE); 4925555afedfScarlsonj if (err != Z_OK) { 4926555afedfScarlsonj errno = err; 4927555afedfScarlsonj zperror2(target_zone, gettext("could not set state")); 4928555afedfScarlsonj } 4929555afedfScarlsonj release_lock_file(lockfd); 4930555afedfScarlsonj 4931555afedfScarlsonj return (err); 4932555afedfScarlsonj } 4933555afedfScarlsonj 49340209230bSgjelinek /* 49350209230bSgjelinek * Check what scheduling class we're running under and print a warning if 49360209230bSgjelinek * we're not using FSS. 49370209230bSgjelinek */ 49380209230bSgjelinek static int 49390209230bSgjelinek check_sched_fss(zone_dochandle_t handle) 49400209230bSgjelinek { 49410209230bSgjelinek char class_name[PC_CLNMSZ]; 49420209230bSgjelinek 49430209230bSgjelinek if (zonecfg_get_dflt_sched_class(handle, class_name, 49440209230bSgjelinek sizeof (class_name)) != Z_OK) { 49450209230bSgjelinek zerror(gettext("WARNING: unable to determine the zone's " 49460209230bSgjelinek "scheduling class")); 49470209230bSgjelinek } else if (strcmp("FSS", class_name) != 0) { 49480209230bSgjelinek zerror(gettext("WARNING: The zone.cpu-shares rctl is set but\n" 49490209230bSgjelinek "FSS is not the default scheduling class for this zone. " 49500209230bSgjelinek "FSS will be\nused for processes in the zone but to get " 49510209230bSgjelinek "the full benefit of FSS,\nit should be the default " 49520209230bSgjelinek "scheduling class. See dispadmin(1M) for\nmore details.")); 49530209230bSgjelinek return (Z_SYSTEM); 49540209230bSgjelinek } 49550209230bSgjelinek 49560209230bSgjelinek return (Z_OK); 49570209230bSgjelinek } 49580209230bSgjelinek 49590209230bSgjelinek static int 49600209230bSgjelinek check_cpu_shares_sched(zone_dochandle_t handle) 49610209230bSgjelinek { 49620209230bSgjelinek int err; 49630209230bSgjelinek int res = Z_OK; 49640209230bSgjelinek struct zone_rctltab rctl; 49650209230bSgjelinek 49660209230bSgjelinek if ((err = zonecfg_setrctlent(handle)) != Z_OK) { 49670209230bSgjelinek errno = err; 49680209230bSgjelinek zperror(cmd_to_str(CMD_APPLY), B_TRUE); 49690209230bSgjelinek return (err); 49700209230bSgjelinek } 49710209230bSgjelinek 49720209230bSgjelinek while (zonecfg_getrctlent(handle, &rctl) == Z_OK) { 49730209230bSgjelinek if (strcmp(rctl.zone_rctl_name, "zone.cpu-shares") == 0) { 49740209230bSgjelinek if (check_sched_fss(handle) != Z_OK) 49750209230bSgjelinek res = Z_SYSTEM; 49760209230bSgjelinek break; 49770209230bSgjelinek } 49780209230bSgjelinek } 49790209230bSgjelinek 49800209230bSgjelinek (void) zonecfg_endrctlent(handle); 49810209230bSgjelinek 49820209230bSgjelinek return (res); 49830209230bSgjelinek } 49840209230bSgjelinek 49850209230bSgjelinek /* 4986*7ef01d19Sgjelinek * Check if there is a mix of processes running in different pools within the 4987*7ef01d19Sgjelinek * zone. This is currently only going to be called for the global zone from 4988*7ef01d19Sgjelinek * apply_func but that could be generalized in the future. 4989*7ef01d19Sgjelinek */ 4990*7ef01d19Sgjelinek static boolean_t 4991*7ef01d19Sgjelinek mixed_pools(zoneid_t zoneid) 4992*7ef01d19Sgjelinek { 4993*7ef01d19Sgjelinek DIR *dirp; 4994*7ef01d19Sgjelinek dirent_t *dent; 4995*7ef01d19Sgjelinek boolean_t mixed = B_FALSE; 4996*7ef01d19Sgjelinek boolean_t poolid_set = B_FALSE; 4997*7ef01d19Sgjelinek poolid_t last_poolid = 0; 4998*7ef01d19Sgjelinek 4999*7ef01d19Sgjelinek if ((dirp = opendir("/proc")) == NULL) { 5000*7ef01d19Sgjelinek zerror(gettext("could not open /proc")); 5001*7ef01d19Sgjelinek return (B_FALSE); 5002*7ef01d19Sgjelinek } 5003*7ef01d19Sgjelinek 5004*7ef01d19Sgjelinek while ((dent = readdir(dirp)) != NULL) { 5005*7ef01d19Sgjelinek int procfd; 5006*7ef01d19Sgjelinek psinfo_t ps; 5007*7ef01d19Sgjelinek char procpath[MAXPATHLEN]; 5008*7ef01d19Sgjelinek 5009*7ef01d19Sgjelinek if (dent->d_name[0] == '.') 5010*7ef01d19Sgjelinek continue; 5011*7ef01d19Sgjelinek 5012*7ef01d19Sgjelinek (void) snprintf(procpath, sizeof (procpath), "/proc/%s/psinfo", 5013*7ef01d19Sgjelinek dent->d_name); 5014*7ef01d19Sgjelinek 5015*7ef01d19Sgjelinek if ((procfd = open(procpath, O_RDONLY)) == -1) 5016*7ef01d19Sgjelinek continue; 5017*7ef01d19Sgjelinek 5018*7ef01d19Sgjelinek if (read(procfd, &ps, sizeof (ps)) == sizeof (psinfo_t)) { 5019*7ef01d19Sgjelinek /* skip processes in other zones and system processes */ 5020*7ef01d19Sgjelinek if (zoneid != ps.pr_zoneid || ps.pr_flag & SSYS) { 5021*7ef01d19Sgjelinek (void) close(procfd); 5022*7ef01d19Sgjelinek continue; 5023*7ef01d19Sgjelinek } 5024*7ef01d19Sgjelinek 5025*7ef01d19Sgjelinek if (poolid_set) { 5026*7ef01d19Sgjelinek if (ps.pr_poolid != last_poolid) 5027*7ef01d19Sgjelinek mixed = B_TRUE; 5028*7ef01d19Sgjelinek } else { 5029*7ef01d19Sgjelinek last_poolid = ps.pr_poolid; 5030*7ef01d19Sgjelinek poolid_set = B_TRUE; 5031*7ef01d19Sgjelinek } 5032*7ef01d19Sgjelinek } 5033*7ef01d19Sgjelinek 5034*7ef01d19Sgjelinek (void) close(procfd); 5035*7ef01d19Sgjelinek 5036*7ef01d19Sgjelinek if (mixed) 5037*7ef01d19Sgjelinek break; 5038*7ef01d19Sgjelinek } 5039*7ef01d19Sgjelinek 5040*7ef01d19Sgjelinek (void) closedir(dirp); 5041*7ef01d19Sgjelinek 5042*7ef01d19Sgjelinek return (mixed); 5043*7ef01d19Sgjelinek } 5044*7ef01d19Sgjelinek 5045*7ef01d19Sgjelinek /* 5046*7ef01d19Sgjelinek * Check if a persistent or temporary pool is configured for the zone. 5047*7ef01d19Sgjelinek * This is currently only going to be called for the global zone from 5048*7ef01d19Sgjelinek * apply_func but that could be generalized in the future. 5049*7ef01d19Sgjelinek */ 5050*7ef01d19Sgjelinek static boolean_t 5051*7ef01d19Sgjelinek pool_configured(zone_dochandle_t handle) 5052*7ef01d19Sgjelinek { 5053*7ef01d19Sgjelinek int err1, err2; 5054*7ef01d19Sgjelinek struct zone_psettab pset_tab; 5055*7ef01d19Sgjelinek char poolname[MAXPATHLEN]; 5056*7ef01d19Sgjelinek 5057*7ef01d19Sgjelinek err1 = zonecfg_lookup_pset(handle, &pset_tab); 5058*7ef01d19Sgjelinek err2 = zonecfg_get_pool(handle, poolname, sizeof (poolname)); 5059*7ef01d19Sgjelinek 5060*7ef01d19Sgjelinek if (err1 == Z_NO_ENTRY && 5061*7ef01d19Sgjelinek (err2 == Z_NO_ENTRY || (err2 == Z_OK && strlen(poolname) == 0))) 5062*7ef01d19Sgjelinek return (B_FALSE); 5063*7ef01d19Sgjelinek 5064*7ef01d19Sgjelinek return (B_TRUE); 5065*7ef01d19Sgjelinek } 5066*7ef01d19Sgjelinek 5067*7ef01d19Sgjelinek /* 50680209230bSgjelinek * This is an undocumented interface which is currently only used to apply 50690209230bSgjelinek * the global zone resource management settings when the system boots. 50700209230bSgjelinek * This function does not yet properly handle updating a running system so 50710209230bSgjelinek * any projects running in the zone would be trashed if this function 50720209230bSgjelinek * were to run after the zone had booted. It also does not reset any 50730209230bSgjelinek * rctl settings that were removed from zonecfg. There is still work to be 50740209230bSgjelinek * done before we can properly support dynamically updating the resource 50750209230bSgjelinek * management settings for a running zone (global or non-global). Thus, this 50760209230bSgjelinek * functionality is undocumented for now. 50770209230bSgjelinek */ 50780209230bSgjelinek /* ARGSUSED */ 50790209230bSgjelinek static int 50800209230bSgjelinek apply_func(int argc, char *argv[]) 50810209230bSgjelinek { 50820209230bSgjelinek int err; 50830209230bSgjelinek int res = Z_OK; 50840209230bSgjelinek priv_set_t *privset; 50850209230bSgjelinek zoneid_t zoneid; 50860209230bSgjelinek zone_dochandle_t handle; 50870209230bSgjelinek struct zone_mcaptab mcap; 50880209230bSgjelinek char pool_err[128]; 50890209230bSgjelinek 50900209230bSgjelinek zoneid = getzoneid(); 50910209230bSgjelinek 50920209230bSgjelinek if (zonecfg_in_alt_root() || zoneid != GLOBAL_ZONEID || 50930209230bSgjelinek target_zone == NULL || strcmp(target_zone, GLOBAL_ZONENAME) != 0) 50940209230bSgjelinek return (usage(B_FALSE)); 50950209230bSgjelinek 50960209230bSgjelinek if ((privset = priv_allocset()) == NULL) { 50970209230bSgjelinek zerror(gettext("%s failed"), "priv_allocset"); 50980209230bSgjelinek return (Z_ERR); 50990209230bSgjelinek } 51000209230bSgjelinek 51010209230bSgjelinek if (getppriv(PRIV_EFFECTIVE, privset) != 0) { 51020209230bSgjelinek zerror(gettext("%s failed"), "getppriv"); 51030209230bSgjelinek priv_freeset(privset); 51040209230bSgjelinek return (Z_ERR); 51050209230bSgjelinek } 51060209230bSgjelinek 51070209230bSgjelinek if (priv_isfullset(privset) == B_FALSE) { 51080209230bSgjelinek (void) usage(B_FALSE); 51090209230bSgjelinek priv_freeset(privset); 51100209230bSgjelinek return (Z_ERR); 51110209230bSgjelinek } 51120209230bSgjelinek priv_freeset(privset); 51130209230bSgjelinek 51140209230bSgjelinek if ((handle = zonecfg_init_handle()) == NULL) { 51150209230bSgjelinek zperror(cmd_to_str(CMD_APPLY), B_TRUE); 51160209230bSgjelinek return (Z_ERR); 51170209230bSgjelinek } 51180209230bSgjelinek 51190209230bSgjelinek if ((err = zonecfg_get_handle(target_zone, handle)) != Z_OK) { 51200209230bSgjelinek errno = err; 51210209230bSgjelinek zperror(cmd_to_str(CMD_APPLY), B_TRUE); 51220209230bSgjelinek zonecfg_fini_handle(handle); 51230209230bSgjelinek return (Z_ERR); 51240209230bSgjelinek } 51250209230bSgjelinek 51260209230bSgjelinek /* specific error msgs are printed within apply_rctls */ 51270209230bSgjelinek if ((err = zonecfg_apply_rctls(target_zone, handle)) != Z_OK) { 51280209230bSgjelinek errno = err; 51290209230bSgjelinek zperror(cmd_to_str(CMD_APPLY), B_TRUE); 51300209230bSgjelinek res = Z_ERR; 51310209230bSgjelinek } 51320209230bSgjelinek 51330209230bSgjelinek if ((err = check_cpu_shares_sched(handle)) != Z_OK) 51340209230bSgjelinek res = Z_ERR; 51350209230bSgjelinek 5136*7ef01d19Sgjelinek if (pool_configured(handle)) { 5137*7ef01d19Sgjelinek if (mixed_pools(zoneid)) { 5138*7ef01d19Sgjelinek zerror(gettext("Zone is using multiple resource " 5139*7ef01d19Sgjelinek "pools. The pool\nconfiguration cannot be " 5140*7ef01d19Sgjelinek "applied without rebooting.")); 5141*7ef01d19Sgjelinek res = Z_ERR; 5142*7ef01d19Sgjelinek } else { 5143*7ef01d19Sgjelinek 51440209230bSgjelinek /* 5145*7ef01d19Sgjelinek * The next two blocks of code attempt to set up 5146*7ef01d19Sgjelinek * temporary pools as well as persistent pools. In 5147*7ef01d19Sgjelinek * both cases we call the functions unconditionally. 5148*7ef01d19Sgjelinek * Within each funtion the code will check if the zone 5149*7ef01d19Sgjelinek * is actually configured for a temporary pool or 5150*7ef01d19Sgjelinek * persistent pool and just return if there is nothing 5151*7ef01d19Sgjelinek * to do. 51520209230bSgjelinek */ 5153*7ef01d19Sgjelinek if ((err = zonecfg_bind_tmp_pool(handle, zoneid, 5154*7ef01d19Sgjelinek pool_err, sizeof (pool_err))) != Z_OK) { 5155*7ef01d19Sgjelinek if (err == Z_POOL || err == Z_POOL_CREATE || 5156*7ef01d19Sgjelinek err == Z_POOL_BIND) 5157*7ef01d19Sgjelinek zerror("%s: %s", zonecfg_strerror(err), 5158*7ef01d19Sgjelinek pool_err); 51590209230bSgjelinek else 5160*7ef01d19Sgjelinek zerror(gettext("could not bind zone to " 5161*7ef01d19Sgjelinek "temporary pool: %s"), 5162*7ef01d19Sgjelinek zonecfg_strerror(err)); 51630209230bSgjelinek res = Z_ERR; 51640209230bSgjelinek } 51650209230bSgjelinek 51660209230bSgjelinek if ((err = zonecfg_bind_pool(handle, zoneid, pool_err, 51670209230bSgjelinek sizeof (pool_err))) != Z_OK) { 51680209230bSgjelinek if (err == Z_POOL || err == Z_POOL_BIND) 5169*7ef01d19Sgjelinek zerror("%s: %s", zonecfg_strerror(err), 5170*7ef01d19Sgjelinek pool_err); 51710209230bSgjelinek else 51720209230bSgjelinek zerror("%s", zonecfg_strerror(err)); 51730209230bSgjelinek } 5174*7ef01d19Sgjelinek } 5175*7ef01d19Sgjelinek } 51760209230bSgjelinek 51770209230bSgjelinek /* 51780209230bSgjelinek * If a memory cap is configured, set the cap in the kernel using 51790209230bSgjelinek * zone_setattr() and make sure the rcapd SMF service is enabled. 51800209230bSgjelinek */ 51810209230bSgjelinek if (zonecfg_getmcapent(handle, &mcap) == Z_OK) { 51820209230bSgjelinek uint64_t num; 51830209230bSgjelinek char smf_err[128]; 51840209230bSgjelinek 51850209230bSgjelinek num = (uint64_t)strtoll(mcap.zone_physmem_cap, NULL, 10); 51860209230bSgjelinek if (zone_setattr(zoneid, ZONE_ATTR_PHYS_MCAP, &num, 0) == -1) { 51870209230bSgjelinek zerror(gettext("could not set zone memory cap")); 51880209230bSgjelinek res = Z_ERR; 51890209230bSgjelinek } 51900209230bSgjelinek 51910209230bSgjelinek if (zonecfg_enable_rcapd(smf_err, sizeof (smf_err)) != Z_OK) { 51920209230bSgjelinek zerror(gettext("enabling system/rcap service failed: " 51930209230bSgjelinek "%s"), smf_err); 51940209230bSgjelinek res = Z_ERR; 51950209230bSgjelinek } 51960209230bSgjelinek } 51970209230bSgjelinek 51980209230bSgjelinek zonecfg_fini_handle(handle); 51990209230bSgjelinek 52000209230bSgjelinek return (res); 52010209230bSgjelinek } 52020209230bSgjelinek 5203555afedfScarlsonj static int 52047c478bd9Sstevel@tonic-gate help_func(int argc, char *argv[]) 52057c478bd9Sstevel@tonic-gate { 52067c478bd9Sstevel@tonic-gate int arg, cmd_num; 52077c478bd9Sstevel@tonic-gate 52087c478bd9Sstevel@tonic-gate if (argc == 0) { 52097c478bd9Sstevel@tonic-gate (void) usage(B_TRUE); 52107c478bd9Sstevel@tonic-gate return (Z_OK); 52117c478bd9Sstevel@tonic-gate } 52127c478bd9Sstevel@tonic-gate optind = 0; 52137c478bd9Sstevel@tonic-gate if ((arg = getopt(argc, argv, "?")) != EOF) { 52147c478bd9Sstevel@tonic-gate switch (arg) { 52157c478bd9Sstevel@tonic-gate case '?': 52167c478bd9Sstevel@tonic-gate sub_usage(SHELP_HELP, CMD_HELP); 52177c478bd9Sstevel@tonic-gate return (optopt == '?' ? Z_OK : Z_USAGE); 52187c478bd9Sstevel@tonic-gate default: 52197c478bd9Sstevel@tonic-gate sub_usage(SHELP_HELP, CMD_HELP); 52207c478bd9Sstevel@tonic-gate return (Z_USAGE); 52217c478bd9Sstevel@tonic-gate } 52227c478bd9Sstevel@tonic-gate } 52237c478bd9Sstevel@tonic-gate while (optind < argc) { 5224394a25e2Scarlsonj /* Private commands have NULL short_usage; omit them */ 5225394a25e2Scarlsonj if ((cmd_num = cmd_match(argv[optind])) < 0 || 5226394a25e2Scarlsonj cmdtab[cmd_num].short_usage == NULL) { 52277c478bd9Sstevel@tonic-gate sub_usage(SHELP_HELP, CMD_HELP); 52287c478bd9Sstevel@tonic-gate return (Z_USAGE); 52297c478bd9Sstevel@tonic-gate } 52307c478bd9Sstevel@tonic-gate sub_usage(cmdtab[cmd_num].short_usage, cmd_num); 52317c478bd9Sstevel@tonic-gate optind++; 52327c478bd9Sstevel@tonic-gate } 52337c478bd9Sstevel@tonic-gate return (Z_OK); 52347c478bd9Sstevel@tonic-gate } 52357c478bd9Sstevel@tonic-gate 52367c478bd9Sstevel@tonic-gate /* 52377c478bd9Sstevel@tonic-gate * Returns: CMD_MIN thru CMD_MAX on success, -1 on error 52387c478bd9Sstevel@tonic-gate */ 52397c478bd9Sstevel@tonic-gate 52407c478bd9Sstevel@tonic-gate static int 52417c478bd9Sstevel@tonic-gate cmd_match(char *cmd) 52427c478bd9Sstevel@tonic-gate { 52437c478bd9Sstevel@tonic-gate int i; 52447c478bd9Sstevel@tonic-gate 52457c478bd9Sstevel@tonic-gate for (i = CMD_MIN; i <= CMD_MAX; i++) { 52467c478bd9Sstevel@tonic-gate /* return only if there is an exact match */ 52477c478bd9Sstevel@tonic-gate if (strcmp(cmd, cmdtab[i].cmd_name) == 0) 52487c478bd9Sstevel@tonic-gate return (cmdtab[i].cmd_num); 52497c478bd9Sstevel@tonic-gate } 52507c478bd9Sstevel@tonic-gate return (-1); 52517c478bd9Sstevel@tonic-gate } 52527c478bd9Sstevel@tonic-gate 52537c478bd9Sstevel@tonic-gate static int 52547c478bd9Sstevel@tonic-gate parse_and_run(int argc, char *argv[]) 52557c478bd9Sstevel@tonic-gate { 52567c478bd9Sstevel@tonic-gate int i = cmd_match(argv[0]); 52577c478bd9Sstevel@tonic-gate 52587c478bd9Sstevel@tonic-gate if (i < 0) 52597c478bd9Sstevel@tonic-gate return (usage(B_FALSE)); 52607c478bd9Sstevel@tonic-gate return (cmdtab[i].handler(argc - 1, &(argv[1]))); 52617c478bd9Sstevel@tonic-gate } 52627c478bd9Sstevel@tonic-gate 52637c478bd9Sstevel@tonic-gate static char * 52647c478bd9Sstevel@tonic-gate get_execbasename(char *execfullname) 52657c478bd9Sstevel@tonic-gate { 52667c478bd9Sstevel@tonic-gate char *last_slash, *execbasename; 52677c478bd9Sstevel@tonic-gate 52687c478bd9Sstevel@tonic-gate /* guard against '/' at end of command invocation */ 52697c478bd9Sstevel@tonic-gate for (;;) { 52707c478bd9Sstevel@tonic-gate last_slash = strrchr(execfullname, '/'); 52717c478bd9Sstevel@tonic-gate if (last_slash == NULL) { 52727c478bd9Sstevel@tonic-gate execbasename = execfullname; 52737c478bd9Sstevel@tonic-gate break; 52747c478bd9Sstevel@tonic-gate } else { 52757c478bd9Sstevel@tonic-gate execbasename = last_slash + 1; 52767c478bd9Sstevel@tonic-gate if (*execbasename == '\0') { 52777c478bd9Sstevel@tonic-gate *last_slash = '\0'; 52787c478bd9Sstevel@tonic-gate continue; 52797c478bd9Sstevel@tonic-gate } 52807c478bd9Sstevel@tonic-gate break; 52817c478bd9Sstevel@tonic-gate } 52827c478bd9Sstevel@tonic-gate } 52837c478bd9Sstevel@tonic-gate return (execbasename); 52847c478bd9Sstevel@tonic-gate } 52857c478bd9Sstevel@tonic-gate 52867c478bd9Sstevel@tonic-gate int 52877c478bd9Sstevel@tonic-gate main(int argc, char **argv) 52887c478bd9Sstevel@tonic-gate { 52897c478bd9Sstevel@tonic-gate int arg; 52907c478bd9Sstevel@tonic-gate zoneid_t zid; 5291108322fbScarlsonj struct stat st; 52929acbbeafSnn35248 char *zone_lock_env; 52939acbbeafSnn35248 int err; 52947c478bd9Sstevel@tonic-gate 52957c478bd9Sstevel@tonic-gate if ((locale = setlocale(LC_ALL, "")) == NULL) 52967c478bd9Sstevel@tonic-gate locale = "C"; 52977c478bd9Sstevel@tonic-gate (void) textdomain(TEXT_DOMAIN); 52987c478bd9Sstevel@tonic-gate setbuf(stdout, NULL); 52997c478bd9Sstevel@tonic-gate (void) sigset(SIGHUP, SIG_IGN); 53007c478bd9Sstevel@tonic-gate execname = get_execbasename(argv[0]); 53017c478bd9Sstevel@tonic-gate target_zone = NULL; 53027c478bd9Sstevel@tonic-gate if (chdir("/") != 0) { 53037c478bd9Sstevel@tonic-gate zerror(gettext("could not change directory to /.")); 53047c478bd9Sstevel@tonic-gate exit(Z_ERR); 53057c478bd9Sstevel@tonic-gate } 53067c478bd9Sstevel@tonic-gate 530799653d4eSeschrock if (init_zfs() != Z_OK) 530899653d4eSeschrock exit(Z_ERR); 530999653d4eSeschrock 5310555afedfScarlsonj while ((arg = getopt(argc, argv, "?u:z:R:")) != EOF) { 53117c478bd9Sstevel@tonic-gate switch (arg) { 53127c478bd9Sstevel@tonic-gate case '?': 53137c478bd9Sstevel@tonic-gate return (usage(B_TRUE)); 5314555afedfScarlsonj case 'u': 5315555afedfScarlsonj target_uuid = optarg; 5316555afedfScarlsonj break; 53177c478bd9Sstevel@tonic-gate case 'z': 53187c478bd9Sstevel@tonic-gate target_zone = optarg; 53197c478bd9Sstevel@tonic-gate break; 5320108322fbScarlsonj case 'R': /* private option for admin/install use */ 5321108322fbScarlsonj if (*optarg != '/') { 5322108322fbScarlsonj zerror(gettext("root path must be absolute.")); 5323108322fbScarlsonj exit(Z_ERR); 5324108322fbScarlsonj } 5325108322fbScarlsonj if (stat(optarg, &st) == -1 || !S_ISDIR(st.st_mode)) { 5326108322fbScarlsonj zerror( 5327108322fbScarlsonj gettext("root path must be a directory.")); 5328108322fbScarlsonj exit(Z_ERR); 5329108322fbScarlsonj } 5330108322fbScarlsonj zonecfg_set_root(optarg); 5331108322fbScarlsonj break; 53327c478bd9Sstevel@tonic-gate default: 53337c478bd9Sstevel@tonic-gate return (usage(B_FALSE)); 53347c478bd9Sstevel@tonic-gate } 53357c478bd9Sstevel@tonic-gate } 53367c478bd9Sstevel@tonic-gate 53377c478bd9Sstevel@tonic-gate if (optind >= argc) 53387c478bd9Sstevel@tonic-gate return (usage(B_FALSE)); 5339555afedfScarlsonj 5340555afedfScarlsonj if (target_uuid != NULL && *target_uuid != '\0') { 5341555afedfScarlsonj uuid_t uuid; 5342555afedfScarlsonj static char newtarget[ZONENAME_MAX]; 5343555afedfScarlsonj 5344555afedfScarlsonj if (uuid_parse(target_uuid, uuid) == -1) { 5345555afedfScarlsonj zerror(gettext("illegal UUID value specified")); 5346555afedfScarlsonj exit(Z_ERR); 5347555afedfScarlsonj } 5348555afedfScarlsonj if (zonecfg_get_name_by_uuid(uuid, newtarget, 5349555afedfScarlsonj sizeof (newtarget)) == Z_OK) 5350555afedfScarlsonj target_zone = newtarget; 5351555afedfScarlsonj } 5352555afedfScarlsonj 53537c478bd9Sstevel@tonic-gate if (target_zone != NULL && zone_get_id(target_zone, &zid) != 0) { 53547c478bd9Sstevel@tonic-gate errno = Z_NO_ZONE; 53557c478bd9Sstevel@tonic-gate zperror(target_zone, B_TRUE); 53567c478bd9Sstevel@tonic-gate exit(Z_ERR); 53577c478bd9Sstevel@tonic-gate } 53589acbbeafSnn35248 53599acbbeafSnn35248 /* 53609acbbeafSnn35248 * See if we have inherited the right to manipulate this zone from 53619acbbeafSnn35248 * a zoneadm instance in our ancestry. If so, set zone_lock_cnt to 53629acbbeafSnn35248 * indicate it. If not, make that explicit in our environment. 53639acbbeafSnn35248 */ 53649acbbeafSnn35248 zone_lock_env = getenv(LOCK_ENV_VAR); 53659acbbeafSnn35248 if (zone_lock_env == NULL) { 53669acbbeafSnn35248 if (putenv(zoneadm_lock_not_held) != 0) { 53679acbbeafSnn35248 zperror(target_zone, B_TRUE); 53689acbbeafSnn35248 exit(Z_ERR); 53699acbbeafSnn35248 } 53709acbbeafSnn35248 } else { 53719acbbeafSnn35248 zoneadm_is_nested = B_TRUE; 53729acbbeafSnn35248 if (atoi(zone_lock_env) == 1) 53739acbbeafSnn35248 zone_lock_cnt = 1; 53749acbbeafSnn35248 } 53759acbbeafSnn35248 53769acbbeafSnn35248 /* 53779acbbeafSnn35248 * If we are going to be operating on a single zone, retrieve its 53789acbbeafSnn35248 * brand type and determine whether it is native or not. 53799acbbeafSnn35248 */ 53809acbbeafSnn35248 if ((target_zone != NULL) && 53819acbbeafSnn35248 (strcmp(target_zone, GLOBAL_ZONENAME) != NULL)) { 53829acbbeafSnn35248 if (zone_get_brand(target_zone, target_brand, 53839acbbeafSnn35248 sizeof (target_brand)) != Z_OK) { 53849acbbeafSnn35248 zerror(gettext("missing or invalid brand")); 53859acbbeafSnn35248 exit(Z_ERR); 53869acbbeafSnn35248 } 53879acbbeafSnn35248 is_native_zone = (strcmp(target_brand, NATIVE_BRAND_NAME) == 0); 53889acbbeafSnn35248 } 53899acbbeafSnn35248 53909acbbeafSnn35248 err = parse_and_run(argc - optind, &argv[optind]); 53919acbbeafSnn35248 53929acbbeafSnn35248 return (err); 53937c478bd9Sstevel@tonic-gate } 5394