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 545916cd2Sjpk * Common Development and Distribution License (the "License"). 645916cd2Sjpk * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22f4b3ec61Sdh155122 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate #ifndef _SYS_ZONE_H 277c478bd9Sstevel@tonic-gate #define _SYS_ZONE_H 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 307c478bd9Sstevel@tonic-gate 317c478bd9Sstevel@tonic-gate #include <sys/types.h> 327c478bd9Sstevel@tonic-gate #include <sys/mutex.h> 337c478bd9Sstevel@tonic-gate #include <sys/param.h> 347c478bd9Sstevel@tonic-gate #include <sys/rctl.h> 35824c205fSml93401 #include <sys/ipc_rctl.h> 367c478bd9Sstevel@tonic-gate #include <sys/pset.h> 3745916cd2Sjpk #include <sys/tsol/label.h> 38f4b3ec61Sdh155122 #include <sys/cred.h> 39f4b3ec61Sdh155122 #include <sys/netstack.h> 403f2f09c1Sdp #include <sys/uadmin.h> 417c478bd9Sstevel@tonic-gate 427c478bd9Sstevel@tonic-gate #ifdef __cplusplus 437c478bd9Sstevel@tonic-gate extern "C" { 447c478bd9Sstevel@tonic-gate #endif 457c478bd9Sstevel@tonic-gate 467c478bd9Sstevel@tonic-gate /* 477c478bd9Sstevel@tonic-gate * NOTE 487c478bd9Sstevel@tonic-gate * 497c478bd9Sstevel@tonic-gate * The contents of this file are private to the implementation of 507c478bd9Sstevel@tonic-gate * Solaris and are subject to change at any time without notice. 517c478bd9Sstevel@tonic-gate * Applications and drivers using these interfaces may fail to 527c478bd9Sstevel@tonic-gate * run on future releases. 537c478bd9Sstevel@tonic-gate */ 547c478bd9Sstevel@tonic-gate 557c478bd9Sstevel@tonic-gate /* Available both in kernel and for user space */ 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate /* zone id restrictions and special ids */ 587c478bd9Sstevel@tonic-gate #define MAX_ZONEID 9999 597c478bd9Sstevel@tonic-gate #define MIN_USERZONEID 1 /* lowest user-creatable zone ID */ 607c478bd9Sstevel@tonic-gate #define MIN_ZONEID 0 /* minimum zone ID on system */ 617c478bd9Sstevel@tonic-gate #define GLOBAL_ZONEID 0 627c478bd9Sstevel@tonic-gate #define ZONEID_WIDTH 4 /* for printf */ 637c478bd9Sstevel@tonic-gate 6445916cd2Sjpk /* 6545916cd2Sjpk * Special zoneid_t token to refer to all zones. 6645916cd2Sjpk */ 6745916cd2Sjpk #define ALL_ZONES (-1) 6845916cd2Sjpk 697c478bd9Sstevel@tonic-gate /* system call subcodes */ 707c478bd9Sstevel@tonic-gate #define ZONE_CREATE 0 717c478bd9Sstevel@tonic-gate #define ZONE_DESTROY 1 727c478bd9Sstevel@tonic-gate #define ZONE_GETATTR 2 737c478bd9Sstevel@tonic-gate #define ZONE_ENTER 3 747c478bd9Sstevel@tonic-gate #define ZONE_LIST 4 757c478bd9Sstevel@tonic-gate #define ZONE_SHUTDOWN 5 767c478bd9Sstevel@tonic-gate #define ZONE_LOOKUP 6 777c478bd9Sstevel@tonic-gate #define ZONE_BOOT 7 78821c4a97Sdp #define ZONE_VERSION 8 793f2f09c1Sdp #define ZONE_SETATTR 9 80f4b3ec61Sdh155122 #define ZONE_ADD_DATALINK 10 81f4b3ec61Sdh155122 #define ZONE_DEL_DATALINK 11 82f4b3ec61Sdh155122 #define ZONE_CHECK_DATALINK 12 83f4b3ec61Sdh155122 #define ZONE_LIST_DATALINK 13 847c478bd9Sstevel@tonic-gate 857c478bd9Sstevel@tonic-gate /* zone attributes */ 867c478bd9Sstevel@tonic-gate #define ZONE_ATTR_ROOT 1 877c478bd9Sstevel@tonic-gate #define ZONE_ATTR_NAME 2 887c478bd9Sstevel@tonic-gate #define ZONE_ATTR_STATUS 3 897c478bd9Sstevel@tonic-gate #define ZONE_ATTR_PRIVSET 4 907c478bd9Sstevel@tonic-gate #define ZONE_ATTR_UNIQID 5 917c478bd9Sstevel@tonic-gate #define ZONE_ATTR_POOLID 6 927c478bd9Sstevel@tonic-gate #define ZONE_ATTR_INITPID 7 9345916cd2Sjpk #define ZONE_ATTR_SLBL 8 943f2f09c1Sdp #define ZONE_ATTR_INITNAME 9 953f2f09c1Sdp #define ZONE_ATTR_BOOTARGS 10 969acbbeafSnn35248 #define ZONE_ATTR_BRAND 11 970209230bSgjelinek #define ZONE_ATTR_PHYS_MCAP 12 980209230bSgjelinek #define ZONE_ATTR_SCHED_CLASS 13 99f4b3ec61Sdh155122 #define ZONE_ATTR_FLAGS 14 1009acbbeafSnn35248 1019acbbeafSnn35248 /* Start of the brand-specific attribute namespace */ 1029acbbeafSnn35248 #define ZONE_ATTR_BRAND_ATTRS 32768 1037c478bd9Sstevel@tonic-gate 104cf8f45c7Sdstaff #define ZONE_EVENT_CHANNEL "com.sun:zones:status" 105cf8f45c7Sdstaff #define ZONE_EVENT_STATUS_CLASS "status" 106cf8f45c7Sdstaff #define ZONE_EVENT_STATUS_SUBCLASS "change" 107cf8f45c7Sdstaff 108cf8f45c7Sdstaff #define ZONE_EVENT_UNINITIALIZED "uninitialized" 109cf8f45c7Sdstaff #define ZONE_EVENT_READY "ready" 110cf8f45c7Sdstaff #define ZONE_EVENT_RUNNING "running" 111cf8f45c7Sdstaff #define ZONE_EVENT_SHUTTING_DOWN "shutting_down" 112cf8f45c7Sdstaff 113cf8f45c7Sdstaff #define ZONE_CB_NAME "zonename" 114cf8f45c7Sdstaff #define ZONE_CB_NEWSTATE "newstate" 115cf8f45c7Sdstaff #define ZONE_CB_OLDSTATE "oldstate" 116cf8f45c7Sdstaff #define ZONE_CB_TIMESTAMP "when" 117cf8f45c7Sdstaff #define ZONE_CB_ZONEID "zoneid" 118cf8f45c7Sdstaff 1199acbbeafSnn35248 /* 1209acbbeafSnn35248 * Exit values that may be returned by scripts or programs invoked by various 1219acbbeafSnn35248 * zone commands. 1229acbbeafSnn35248 * 1239acbbeafSnn35248 * These are defined as: 1249acbbeafSnn35248 * 1259acbbeafSnn35248 * ZONE_SUBPROC_OK 1269acbbeafSnn35248 * =============== 1279acbbeafSnn35248 * The subprocess completed successfully. 1289acbbeafSnn35248 * 1299acbbeafSnn35248 * ZONE_SUBPROC_USAGE 1309acbbeafSnn35248 * ================== 1319acbbeafSnn35248 * The subprocess failed with a usage message, or a usage message should 1329acbbeafSnn35248 * be output in its behalf. 1339acbbeafSnn35248 * 1349acbbeafSnn35248 * ZONE_SUBPROC_NOTCOMPLETE 1359acbbeafSnn35248 * ======================== 1369acbbeafSnn35248 * The subprocess did not complete, but the actions performed by the 1379acbbeafSnn35248 * subprocess require no recovery actions by the user. 1389acbbeafSnn35248 * 1399acbbeafSnn35248 * For example, if the subprocess were called by "zoneadm install," the 1409acbbeafSnn35248 * installation of the zone did not succeed but the user need not perform 1419acbbeafSnn35248 * a "zoneadm uninstall" before attempting another install. 1429acbbeafSnn35248 * 1439acbbeafSnn35248 * ZONE_SUBPROC_FATAL 1449acbbeafSnn35248 * ================== 1459acbbeafSnn35248 * The subprocess failed in a fatal manner, usually one that will require 1469acbbeafSnn35248 * some type of recovery action by the user. 1479acbbeafSnn35248 * 1489acbbeafSnn35248 * For example, if the subprocess were called by "zoneadm install," the 1499acbbeafSnn35248 * installation of the zone did not succeed and the user will need to 1509acbbeafSnn35248 * perform a "zoneadm uninstall" before another install attempt is 1519acbbeafSnn35248 * possible. 1529acbbeafSnn35248 * 1539acbbeafSnn35248 * The non-success exit values are large to avoid accidental collision 1549acbbeafSnn35248 * with values used internally by some commands (e.g. "Z_ERR" and 1559acbbeafSnn35248 * "Z_USAGE" as used by zoneadm.) 1569acbbeafSnn35248 */ 1579acbbeafSnn35248 #define ZONE_SUBPROC_OK 0 1589acbbeafSnn35248 #define ZONE_SUBPROC_USAGE 253 1599acbbeafSnn35248 #define ZONE_SUBPROC_NOTCOMPLETE 254 1609acbbeafSnn35248 #define ZONE_SUBPROC_FATAL 255 1619acbbeafSnn35248 1627c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32 1637c478bd9Sstevel@tonic-gate typedef struct { 1647c478bd9Sstevel@tonic-gate caddr32_t zone_name; 1657c478bd9Sstevel@tonic-gate caddr32_t zone_root; 1667c478bd9Sstevel@tonic-gate caddr32_t zone_privs; 167821c4a97Sdp size32_t zone_privssz; 1687c478bd9Sstevel@tonic-gate caddr32_t rctlbuf; 1697c478bd9Sstevel@tonic-gate size32_t rctlbufsz; 1707c478bd9Sstevel@tonic-gate caddr32_t extended_error; 171fa9e4066Sahrens caddr32_t zfsbuf; 172fa9e4066Sahrens size32_t zfsbufsz; 17342bc57c4Srica int match; /* match level */ 17442bc57c4Srica uint32_t doi; /* DOI for label */ 17542bc57c4Srica caddr32_t label; /* label associated with zone */ 176f4b3ec61Sdh155122 int flags; 1777c478bd9Sstevel@tonic-gate } zone_def32; 1787c478bd9Sstevel@tonic-gate #endif 1797c478bd9Sstevel@tonic-gate typedef struct { 1807c478bd9Sstevel@tonic-gate const char *zone_name; 1817c478bd9Sstevel@tonic-gate const char *zone_root; 1827c478bd9Sstevel@tonic-gate const struct priv_set *zone_privs; 183821c4a97Sdp size_t zone_privssz; 1847c478bd9Sstevel@tonic-gate const char *rctlbuf; 1857c478bd9Sstevel@tonic-gate size_t rctlbufsz; 1867c478bd9Sstevel@tonic-gate int *extended_error; 187fa9e4066Sahrens const char *zfsbuf; 188fa9e4066Sahrens size_t zfsbufsz; 18945916cd2Sjpk int match; /* match level */ 19042bc57c4Srica uint32_t doi; /* DOI for label */ 19145916cd2Sjpk const bslabel_t *label; /* label associated with zone */ 192f4b3ec61Sdh155122 int flags; 1937c478bd9Sstevel@tonic-gate } zone_def; 1947c478bd9Sstevel@tonic-gate 1957c478bd9Sstevel@tonic-gate /* extended error information */ 1967c478bd9Sstevel@tonic-gate #define ZE_UNKNOWN 0 /* No extended error info */ 1977c478bd9Sstevel@tonic-gate #define ZE_CHROOTED 1 /* tried to zone_create from chroot */ 1987c478bd9Sstevel@tonic-gate #define ZE_AREMOUNTS 2 /* there are mounts within the zone */ 1997c478bd9Sstevel@tonic-gate 2007c478bd9Sstevel@tonic-gate /* zone_status */ 2017c478bd9Sstevel@tonic-gate typedef enum { 2027c478bd9Sstevel@tonic-gate ZONE_IS_UNINITIALIZED = 0, 2037c478bd9Sstevel@tonic-gate ZONE_IS_READY, 2047c478bd9Sstevel@tonic-gate ZONE_IS_BOOTING, 2057c478bd9Sstevel@tonic-gate ZONE_IS_RUNNING, 2067c478bd9Sstevel@tonic-gate ZONE_IS_SHUTTING_DOWN, 2077c478bd9Sstevel@tonic-gate ZONE_IS_EMPTY, 2087c478bd9Sstevel@tonic-gate ZONE_IS_DOWN, 2097c478bd9Sstevel@tonic-gate ZONE_IS_DYING, 2107c478bd9Sstevel@tonic-gate ZONE_IS_DEAD 2117c478bd9Sstevel@tonic-gate } zone_status_t; 2127c478bd9Sstevel@tonic-gate #define ZONE_MIN_STATE ZONE_IS_UNINITIALIZED 2137c478bd9Sstevel@tonic-gate #define ZONE_MAX_STATE ZONE_IS_DEAD 2147c478bd9Sstevel@tonic-gate 2157c478bd9Sstevel@tonic-gate /* 2167c478bd9Sstevel@tonic-gate * Valid commands which may be issued by zoneadm to zoneadmd. The kernel also 2177c478bd9Sstevel@tonic-gate * communicates with zoneadmd, but only uses Z_REBOOT and Z_HALT. 2187c478bd9Sstevel@tonic-gate */ 2197c478bd9Sstevel@tonic-gate typedef enum zone_cmd { 2209acbbeafSnn35248 Z_READY, Z_BOOT, Z_FORCEBOOT, Z_REBOOT, Z_HALT, Z_NOTE_UNINSTALLING, 2219acbbeafSnn35248 Z_MOUNT, Z_FORCEMOUNT, Z_UNMOUNT 2227c478bd9Sstevel@tonic-gate } zone_cmd_t; 2237c478bd9Sstevel@tonic-gate 2247c478bd9Sstevel@tonic-gate /* 2257c478bd9Sstevel@tonic-gate * The structure of a request to zoneadmd. 2267c478bd9Sstevel@tonic-gate */ 2277c478bd9Sstevel@tonic-gate typedef struct zone_cmd_arg { 2287c478bd9Sstevel@tonic-gate uint64_t uniqid; /* unique "generation number" */ 2297c478bd9Sstevel@tonic-gate zone_cmd_t cmd; /* requested action */ 2303f2f09c1Sdp uint32_t _pad; /* need consistent 32/64 bit alignmt */ 2317c478bd9Sstevel@tonic-gate char locale[MAXPATHLEN]; /* locale in which to render messages */ 2323f2f09c1Sdp char bootbuf[BOOTARGS_MAX]; /* arguments passed to zone_boot() */ 2337c478bd9Sstevel@tonic-gate } zone_cmd_arg_t; 2347c478bd9Sstevel@tonic-gate 2357c478bd9Sstevel@tonic-gate /* 2367c478bd9Sstevel@tonic-gate * Structure of zoneadmd's response to a request. A NULL return value means 2377c478bd9Sstevel@tonic-gate * the caller should attempt to restart zoneadmd and retry. 2387c478bd9Sstevel@tonic-gate */ 2397c478bd9Sstevel@tonic-gate typedef struct zone_cmd_rval { 2407c478bd9Sstevel@tonic-gate int rval; /* return value of request */ 2417c478bd9Sstevel@tonic-gate char errbuf[1]; /* variable-sized buffer containing error messages */ 2427c478bd9Sstevel@tonic-gate } zone_cmd_rval_t; 2437c478bd9Sstevel@tonic-gate 2447c478bd9Sstevel@tonic-gate /* 2457c478bd9Sstevel@tonic-gate * The zone support infrastructure uses the zone name as a component 2467c478bd9Sstevel@tonic-gate * of unix domain (AF_UNIX) sockets, which are limited to 108 characters 2477c478bd9Sstevel@tonic-gate * in length, so ZONENAME_MAX is limited by that. 2487c478bd9Sstevel@tonic-gate */ 2497c478bd9Sstevel@tonic-gate #define ZONENAME_MAX 64 2507c478bd9Sstevel@tonic-gate 2517c478bd9Sstevel@tonic-gate #define GLOBAL_ZONENAME "global" 2527c478bd9Sstevel@tonic-gate 2537c478bd9Sstevel@tonic-gate /* 2547c478bd9Sstevel@tonic-gate * Extended Regular expression (see regex(5)) which matches all valid zone 2557c478bd9Sstevel@tonic-gate * names. 2567c478bd9Sstevel@tonic-gate */ 2577c478bd9Sstevel@tonic-gate #define ZONENAME_REGEXP "[a-zA-Z0-9][-_.a-zA-Z0-9]{0,62}" 2587c478bd9Sstevel@tonic-gate 2597c478bd9Sstevel@tonic-gate /* 2607c478bd9Sstevel@tonic-gate * Where the zones support infrastructure places temporary files. 2617c478bd9Sstevel@tonic-gate */ 2627c478bd9Sstevel@tonic-gate #define ZONES_TMPDIR "/var/run/zones" 2637c478bd9Sstevel@tonic-gate 2647c478bd9Sstevel@tonic-gate /* 2657c478bd9Sstevel@tonic-gate * The path to the door used by clients to communicate with zoneadmd. 2667c478bd9Sstevel@tonic-gate */ 2677c478bd9Sstevel@tonic-gate #define ZONE_DOOR_PATH ZONES_TMPDIR "/%s.zoneadmd_door" 2687c478bd9Sstevel@tonic-gate 269f4b3ec61Sdh155122 /* zone_flags */ 270f4b3ec61Sdh155122 #define ZF_DESTROYED 0x1 /* ZSD destructor callbacks run */ 271f4b3ec61Sdh155122 #define ZF_HASHED_LABEL 0x2 /* zone has a unique label */ 272f4b3ec61Sdh155122 #define ZF_IS_SCRATCH 0x4 /* scratch zone */ 273f4b3ec61Sdh155122 #define ZF_NET_EXCL 0x8 /* Zone has an exclusive IP stack */ 274f4b3ec61Sdh155122 275f4b3ec61Sdh155122 /* zone_create flags */ 276f4b3ec61Sdh155122 #define ZCF_NET_EXCL 0x1 /* Create a zone with exclusive IP */ 277f4b3ec61Sdh155122 2787c478bd9Sstevel@tonic-gate #ifdef _KERNEL 2797c478bd9Sstevel@tonic-gate /* 2807c478bd9Sstevel@tonic-gate * We need to protect the definition of 'list_t' from userland applications and 2817c478bd9Sstevel@tonic-gate * libraries which may be defining ther own versions. 2827c478bd9Sstevel@tonic-gate */ 2837c478bd9Sstevel@tonic-gate #include <sys/list.h> 2847c478bd9Sstevel@tonic-gate 2857c478bd9Sstevel@tonic-gate #define GLOBAL_ZONEUNIQID 0 /* uniqid of the global zone */ 2867c478bd9Sstevel@tonic-gate 2877c478bd9Sstevel@tonic-gate struct pool; 2889acbbeafSnn35248 struct brand; 289f4b3ec61Sdh155122 struct dlnamelist; 2907c478bd9Sstevel@tonic-gate 291fa9e4066Sahrens /* 292fa9e4066Sahrens * Structure to record list of ZFS datasets exported to a zone. 293fa9e4066Sahrens */ 294fa9e4066Sahrens typedef struct zone_dataset { 295fa9e4066Sahrens char *zd_dataset; 296fa9e4066Sahrens list_node_t zd_linkage; 297fa9e4066Sahrens } zone_dataset_t; 298fa9e4066Sahrens 2990209230bSgjelinek /* 3000209230bSgjelinek * structure for zone kstats 3010209230bSgjelinek */ 3020209230bSgjelinek typedef struct zone_kstat { 3030209230bSgjelinek kstat_named_t zk_zonename; 3040209230bSgjelinek kstat_named_t zk_usage; 3050209230bSgjelinek kstat_named_t zk_value; 3060209230bSgjelinek } zone_kstat_t; 3070209230bSgjelinek 308c97ad5cdSakolb struct cpucap; 309c97ad5cdSakolb 3107c478bd9Sstevel@tonic-gate typedef struct zone { 3117c478bd9Sstevel@tonic-gate /* 3127c478bd9Sstevel@tonic-gate * zone_name is never modified once set. 3137c478bd9Sstevel@tonic-gate */ 3147c478bd9Sstevel@tonic-gate char *zone_name; /* zone's configuration name */ 3157c478bd9Sstevel@tonic-gate /* 3167c478bd9Sstevel@tonic-gate * zone_nodename and zone_domain are never freed once allocated. 3177c478bd9Sstevel@tonic-gate */ 3187c478bd9Sstevel@tonic-gate char *zone_nodename; /* utsname.nodename equivalent */ 3197c478bd9Sstevel@tonic-gate char *zone_domain; /* srpc_domain equivalent */ 3207c478bd9Sstevel@tonic-gate /* 3217c478bd9Sstevel@tonic-gate * zone_lock protects the following fields of a zone_t: 3227c478bd9Sstevel@tonic-gate * zone_ref 3237c478bd9Sstevel@tonic-gate * zone_cred_ref 3247c478bd9Sstevel@tonic-gate * zone_ntasks 3257c478bd9Sstevel@tonic-gate * zone_flags 3267c478bd9Sstevel@tonic-gate * zone_zsd 3277c478bd9Sstevel@tonic-gate */ 3287c478bd9Sstevel@tonic-gate kmutex_t zone_lock; 3297c478bd9Sstevel@tonic-gate /* 3307c478bd9Sstevel@tonic-gate * zone_linkage is the zone's linkage into the active or 3317c478bd9Sstevel@tonic-gate * death-row list. The field is protected by zonehash_lock. 3327c478bd9Sstevel@tonic-gate */ 3337c478bd9Sstevel@tonic-gate list_node_t zone_linkage; 3347c478bd9Sstevel@tonic-gate zoneid_t zone_id; /* ID of zone */ 3357c478bd9Sstevel@tonic-gate uint_t zone_ref; /* count of zone_hold()s on zone */ 3367c478bd9Sstevel@tonic-gate uint_t zone_cred_ref; /* count of zone_hold_cred()s on zone */ 3377c478bd9Sstevel@tonic-gate /* 3387c478bd9Sstevel@tonic-gate * zone_rootvp and zone_rootpath can never be modified once set. 3397c478bd9Sstevel@tonic-gate */ 3407c478bd9Sstevel@tonic-gate struct vnode *zone_rootvp; /* zone's root vnode */ 3417c478bd9Sstevel@tonic-gate char *zone_rootpath; /* Path to zone's root + '/' */ 3427c478bd9Sstevel@tonic-gate ushort_t zone_flags; /* misc flags */ 3437c478bd9Sstevel@tonic-gate zone_status_t zone_status; /* protected by zone_status_lock */ 3447c478bd9Sstevel@tonic-gate uint_t zone_ntasks; /* number of tasks executing in zone */ 3457c478bd9Sstevel@tonic-gate kmutex_t zone_nlwps_lock; /* protects zone_nlwps, and *_nlwps */ 3467c478bd9Sstevel@tonic-gate /* counters in projects and tasks */ 3477c478bd9Sstevel@tonic-gate /* that are within the zone */ 3487c478bd9Sstevel@tonic-gate rctl_qty_t zone_nlwps; /* number of lwps in zone */ 3497c478bd9Sstevel@tonic-gate rctl_qty_t zone_nlwps_ctl; /* protected by zone_rctls->rcs_lock */ 350824c205fSml93401 rctl_qty_t zone_shmmax; /* System V shared memory usage */ 351824c205fSml93401 ipc_rqty_t zone_ipc; /* System V IPC id resource usage */ 3527c478bd9Sstevel@tonic-gate 3537c478bd9Sstevel@tonic-gate uint_t zone_rootpathlen; /* strlen(zone_rootpath) + 1 */ 3547c478bd9Sstevel@tonic-gate uint32_t zone_shares; /* FSS shares allocated to zone */ 3557c478bd9Sstevel@tonic-gate rctl_set_t *zone_rctls; /* zone-wide (zone.*) rctls */ 3560209230bSgjelinek kmutex_t zone_mem_lock; /* protects zone_locked_mem and */ 357c6939658Ssl108498 /* kpd_locked_mem for all */ 3580209230bSgjelinek /* projects in zone. */ 3590209230bSgjelinek /* Also protects zone_max_swap */ 360c6939658Ssl108498 /* grab after p_lock, before rcs_lock */ 3610209230bSgjelinek rctl_qty_t zone_locked_mem; /* bytes of locked memory in */ 3620209230bSgjelinek /* zone */ 3630209230bSgjelinek rctl_qty_t zone_locked_mem_ctl; /* Current locked memory */ 364c6939658Ssl108498 /* limit. Protected by */ 365c6939658Ssl108498 /* zone_rctls->rcs_lock */ 3660209230bSgjelinek rctl_qty_t zone_max_swap; /* bytes of swap reserved by zone */ 3670209230bSgjelinek rctl_qty_t zone_max_swap_ctl; /* current swap limit. */ 3680209230bSgjelinek /* Protected by */ 3690209230bSgjelinek /* zone_rctls->rcs_lock */ 3707c478bd9Sstevel@tonic-gate list_t zone_zsd; /* list of Zone-Specific Data values */ 3717c478bd9Sstevel@tonic-gate kcondvar_t zone_cv; /* used to signal state changes */ 3727c478bd9Sstevel@tonic-gate struct proc *zone_zsched; /* Dummy kernel "zsched" process */ 3737c478bd9Sstevel@tonic-gate pid_t zone_proc_initpid; /* pid of "init" for this zone */ 3743f2f09c1Sdp char *zone_initname; /* fs path to 'init' */ 3757c478bd9Sstevel@tonic-gate int zone_boot_err; /* for zone_boot() if boot fails */ 3767c478bd9Sstevel@tonic-gate char *zone_bootargs; /* arguments passed via zone_boot() */ 3770209230bSgjelinek uint64_t zone_phys_mcap; /* physical memory cap */ 3787c478bd9Sstevel@tonic-gate /* 3797c478bd9Sstevel@tonic-gate * zone_kthreads is protected by zone_status_lock. 3807c478bd9Sstevel@tonic-gate */ 3817c478bd9Sstevel@tonic-gate kthread_t *zone_kthreads; /* kernel threads in zone */ 3827c478bd9Sstevel@tonic-gate struct priv_set *zone_privset; /* limit set for zone */ 3837c478bd9Sstevel@tonic-gate /* 3847c478bd9Sstevel@tonic-gate * zone_vfslist is protected by vfs_list_lock(). 3857c478bd9Sstevel@tonic-gate */ 3867c478bd9Sstevel@tonic-gate struct vfs *zone_vfslist; /* list of FS's mounted in zone */ 3877c478bd9Sstevel@tonic-gate uint64_t zone_uniqid; /* unique zone generation number */ 3887c478bd9Sstevel@tonic-gate struct cred *zone_kcred; /* kcred-like, zone-limited cred */ 3897c478bd9Sstevel@tonic-gate /* 3907c478bd9Sstevel@tonic-gate * zone_pool is protected by pool_lock(). 3917c478bd9Sstevel@tonic-gate */ 3927c478bd9Sstevel@tonic-gate struct pool *zone_pool; /* pool the zone is bound to */ 3937c478bd9Sstevel@tonic-gate hrtime_t zone_pool_mod; /* last pool bind modification time */ 3947c478bd9Sstevel@tonic-gate /* zone_psetid is protected by cpu_lock */ 3957c478bd9Sstevel@tonic-gate psetid_t zone_psetid; /* pset the zone is bound to */ 3967c478bd9Sstevel@tonic-gate /* 3977c478bd9Sstevel@tonic-gate * The following two can be read without holding any locks. They are 3987c478bd9Sstevel@tonic-gate * updated under cpu_lock. 3997c478bd9Sstevel@tonic-gate */ 4007c478bd9Sstevel@tonic-gate int zone_ncpus; /* zone's idea of ncpus */ 4017c478bd9Sstevel@tonic-gate int zone_ncpus_online; /* zone's idea of ncpus_online */ 402fa9e4066Sahrens /* 403fa9e4066Sahrens * List of ZFS datasets exported to this zone. 404fa9e4066Sahrens */ 405fa9e4066Sahrens list_t zone_datasets; /* list of datasets */ 40645916cd2Sjpk 40742bc57c4Srica ts_label_t *zone_slabel; /* zone sensitivity label */ 40842bc57c4Srica int zone_match; /* require label match for packets */ 40945916cd2Sjpk tsol_mlp_list_t zone_mlps; /* MLPs on zone-private addresses */ 4103f2f09c1Sdp 4119acbbeafSnn35248 boolean_t zone_restart_init; /* Restart init if it dies? */ 4129acbbeafSnn35248 struct brand *zone_brand; /* zone's brand */ 4130209230bSgjelinek id_t zone_defaultcid; /* dflt scheduling class id */ 4140209230bSgjelinek kstat_t *zone_swapresv_kstat; 4150209230bSgjelinek kstat_t *zone_lockedmem_kstat; 416f4b3ec61Sdh155122 /* 417f4b3ec61Sdh155122 * zone_dl_list is protected by zone_lock 418f4b3ec61Sdh155122 */ 419f4b3ec61Sdh155122 struct dlnamelist *zone_dl_list; 420f4b3ec61Sdh155122 netstack_t *zone_netstack; 421c97ad5cdSakolb struct cpucap *zone_cpucap; /* CPU caps data */ 422*9e9e6ab8Spaulson /* 423*9e9e6ab8Spaulson * Solaris Auditing per-zone audit context 424*9e9e6ab8Spaulson */ 425*9e9e6ab8Spaulson struct au_kcontext *zone_audit_kctxt; 4267c478bd9Sstevel@tonic-gate } zone_t; 4277c478bd9Sstevel@tonic-gate 4287c478bd9Sstevel@tonic-gate /* 4297c478bd9Sstevel@tonic-gate * Special value of zone_psetid to indicate that pools are disabled. 4307c478bd9Sstevel@tonic-gate */ 4317c478bd9Sstevel@tonic-gate #define ZONE_PS_INVAL PS_MYID 4327c478bd9Sstevel@tonic-gate 433f4b3ec61Sdh155122 4347c478bd9Sstevel@tonic-gate extern zone_t zone0; 4357c478bd9Sstevel@tonic-gate extern zone_t *global_zone; 4367c478bd9Sstevel@tonic-gate extern uint_t maxzones; 4377c478bd9Sstevel@tonic-gate extern rctl_hndl_t rc_zone_nlwps; 4387c478bd9Sstevel@tonic-gate 439fa9e4066Sahrens extern long zone(int, void *, void *, void *, void *); 4407c478bd9Sstevel@tonic-gate extern void zone_zsd_init(void); 4417c478bd9Sstevel@tonic-gate extern void zone_init(void); 4427c478bd9Sstevel@tonic-gate extern void zone_hold(zone_t *); 4437c478bd9Sstevel@tonic-gate extern void zone_rele(zone_t *); 4447c478bd9Sstevel@tonic-gate extern void zone_cred_hold(zone_t *); 4457c478bd9Sstevel@tonic-gate extern void zone_cred_rele(zone_t *); 4467c478bd9Sstevel@tonic-gate extern void zone_task_hold(zone_t *); 4477c478bd9Sstevel@tonic-gate extern void zone_task_rele(zone_t *); 4487c478bd9Sstevel@tonic-gate extern zone_t *zone_find_by_id(zoneid_t); 44945916cd2Sjpk extern zone_t *zone_find_by_label(const ts_label_t *); 4507c478bd9Sstevel@tonic-gate extern zone_t *zone_find_by_name(char *); 45145916cd2Sjpk extern zone_t *zone_find_by_any_path(const char *, boolean_t); 45248451833Scarlsonj extern zone_t *zone_find_by_path(const char *); 4537c478bd9Sstevel@tonic-gate extern zoneid_t getzoneid(void); 454f4b3ec61Sdh155122 extern zone_t *zone_find_by_id_nolock(zoneid_t); 4557c478bd9Sstevel@tonic-gate 4567c478bd9Sstevel@tonic-gate /* 4577c478bd9Sstevel@tonic-gate * Zone-specific data (ZSD) APIs 4587c478bd9Sstevel@tonic-gate */ 4597c478bd9Sstevel@tonic-gate /* 4607c478bd9Sstevel@tonic-gate * The following is what code should be initializing its zone_key_t to if it 4617c478bd9Sstevel@tonic-gate * calls zone_getspecific() without necessarily knowing that zone_key_create() 4627c478bd9Sstevel@tonic-gate * has been called on the key. 4637c478bd9Sstevel@tonic-gate */ 4647c478bd9Sstevel@tonic-gate #define ZONE_KEY_UNINITIALIZED 0 4657c478bd9Sstevel@tonic-gate 4667c478bd9Sstevel@tonic-gate typedef uint_t zone_key_t; 4677c478bd9Sstevel@tonic-gate 4687c478bd9Sstevel@tonic-gate extern void zone_key_create(zone_key_t *, void *(*)(zoneid_t), 4697c478bd9Sstevel@tonic-gate void (*)(zoneid_t, void *), void (*)(zoneid_t, void *)); 4707c478bd9Sstevel@tonic-gate extern int zone_key_delete(zone_key_t); 4717c478bd9Sstevel@tonic-gate extern void *zone_getspecific(zone_key_t, zone_t *); 4727c478bd9Sstevel@tonic-gate extern int zone_setspecific(zone_key_t, zone_t *, const void *); 4737c478bd9Sstevel@tonic-gate 4747c478bd9Sstevel@tonic-gate /* 4757c478bd9Sstevel@tonic-gate * The definition of a zsd_entry is truly private to zone.c and is only 4767c478bd9Sstevel@tonic-gate * placed here so it can be shared with mdb. 4777c478bd9Sstevel@tonic-gate */ 4787c478bd9Sstevel@tonic-gate struct zsd_entry { 4797c478bd9Sstevel@tonic-gate zone_key_t zsd_key; /* Key used to lookup value */ 4807c478bd9Sstevel@tonic-gate void *zsd_data; /* Caller-managed value */ 4817c478bd9Sstevel@tonic-gate /* 4827c478bd9Sstevel@tonic-gate * Callbacks to be executed when a zone is created, shutdown, and 4837c478bd9Sstevel@tonic-gate * destroyed, respectively. 4847c478bd9Sstevel@tonic-gate */ 4857c478bd9Sstevel@tonic-gate void *(*zsd_create)(zoneid_t); 4867c478bd9Sstevel@tonic-gate void (*zsd_shutdown)(zoneid_t, void *); 4877c478bd9Sstevel@tonic-gate void (*zsd_destroy)(zoneid_t, void *); 4887c478bd9Sstevel@tonic-gate list_node_t zsd_linkage; 4897c478bd9Sstevel@tonic-gate }; 4907c478bd9Sstevel@tonic-gate 4917c478bd9Sstevel@tonic-gate /* 4927c478bd9Sstevel@tonic-gate * Macros to help with zone visibility restrictions. 4937c478bd9Sstevel@tonic-gate */ 4947c478bd9Sstevel@tonic-gate 4957c478bd9Sstevel@tonic-gate /* 4967c478bd9Sstevel@tonic-gate * Is process in the global zone? 4977c478bd9Sstevel@tonic-gate */ 4987c478bd9Sstevel@tonic-gate #define INGLOBALZONE(p) \ 4997c478bd9Sstevel@tonic-gate ((p)->p_zone == global_zone) 5007c478bd9Sstevel@tonic-gate 5017c478bd9Sstevel@tonic-gate /* 5027c478bd9Sstevel@tonic-gate * Can process view objects in given zone? 5037c478bd9Sstevel@tonic-gate */ 5047c478bd9Sstevel@tonic-gate #define HASZONEACCESS(p, zoneid) \ 5057c478bd9Sstevel@tonic-gate ((p)->p_zone->zone_id == (zoneid) || INGLOBALZONE(p)) 5067c478bd9Sstevel@tonic-gate 5077c478bd9Sstevel@tonic-gate /* 5087c478bd9Sstevel@tonic-gate * Convenience macro to see if a resolved path is visible from within a 5097c478bd9Sstevel@tonic-gate * given zone. 5107c478bd9Sstevel@tonic-gate * 5117c478bd9Sstevel@tonic-gate * The basic idea is that the first (zone_rootpathlen - 1) bytes of the 5127c478bd9Sstevel@tonic-gate * two strings must be equal. Since the rootpathlen has a trailing '/', 5137c478bd9Sstevel@tonic-gate * we want to skip everything in the path up to (but not including) the 5147c478bd9Sstevel@tonic-gate * trailing '/'. 5157c478bd9Sstevel@tonic-gate */ 5167c478bd9Sstevel@tonic-gate #define ZONE_PATH_VISIBLE(path, zone) \ 5177c478bd9Sstevel@tonic-gate (strncmp((path), (zone)->zone_rootpath, \ 5187c478bd9Sstevel@tonic-gate (zone)->zone_rootpathlen - 1) == 0) 5197c478bd9Sstevel@tonic-gate 5207c478bd9Sstevel@tonic-gate /* 5217c478bd9Sstevel@tonic-gate * Convenience macro to go from the global view of a path to that seen 5227c478bd9Sstevel@tonic-gate * from within said zone. It is the responsibility of the caller to 5237c478bd9Sstevel@tonic-gate * ensure that the path is a resolved one (ie, no '..'s or '.'s), and is 5247c478bd9Sstevel@tonic-gate * in fact visible from within the zone. 5257c478bd9Sstevel@tonic-gate */ 5267c478bd9Sstevel@tonic-gate #define ZONE_PATH_TRANSLATE(path, zone) \ 5277c478bd9Sstevel@tonic-gate (ASSERT(ZONE_PATH_VISIBLE(path, zone)), \ 5287c478bd9Sstevel@tonic-gate (path) + (zone)->zone_rootpathlen - 2) 5297c478bd9Sstevel@tonic-gate 5307c478bd9Sstevel@tonic-gate /* 5317c478bd9Sstevel@tonic-gate * Special processes visible in all zones. 5327c478bd9Sstevel@tonic-gate */ 5337c478bd9Sstevel@tonic-gate #define ZONE_SPECIALPID(x) ((x) == 0 || (x) == 1) 5347c478bd9Sstevel@tonic-gate 5357c478bd9Sstevel@tonic-gate /* 5367c478bd9Sstevel@tonic-gate * Zone-safe version of thread_create() to be used when the caller wants to 5377c478bd9Sstevel@tonic-gate * create a kernel thread to run within the current zone's context. 5387c478bd9Sstevel@tonic-gate */ 5397c478bd9Sstevel@tonic-gate extern kthread_t *zthread_create(caddr_t, size_t, void (*)(), void *, size_t, 5407c478bd9Sstevel@tonic-gate pri_t); 5417c478bd9Sstevel@tonic-gate extern void zthread_exit(void); 5427c478bd9Sstevel@tonic-gate 5437c478bd9Sstevel@tonic-gate /* 5447c478bd9Sstevel@tonic-gate * Functions for an external observer to register interest in a zone's status 5457c478bd9Sstevel@tonic-gate * change. Observers will be woken up when the zone status equals the status 5467c478bd9Sstevel@tonic-gate * argument passed in (in the case of zone_status_timedwait, the function may 5477c478bd9Sstevel@tonic-gate * also return because of a timeout; zone_status_wait_sig may return early due 5487c478bd9Sstevel@tonic-gate * to a signal being delivered; zone_status_timedwait_sig may return for any of 5497c478bd9Sstevel@tonic-gate * the above reasons). 5507c478bd9Sstevel@tonic-gate * 5517c478bd9Sstevel@tonic-gate * Otherwise these behave identically to cv_timedwait(), cv_wait(), and 5527c478bd9Sstevel@tonic-gate * cv_wait_sig() respectively. 5537c478bd9Sstevel@tonic-gate */ 5547c478bd9Sstevel@tonic-gate extern clock_t zone_status_timedwait(zone_t *, clock_t, zone_status_t); 5557c478bd9Sstevel@tonic-gate extern clock_t zone_status_timedwait_sig(zone_t *, clock_t, zone_status_t); 5567c478bd9Sstevel@tonic-gate extern void zone_status_wait(zone_t *, zone_status_t); 5577c478bd9Sstevel@tonic-gate extern int zone_status_wait_sig(zone_t *, zone_status_t); 5587c478bd9Sstevel@tonic-gate 5597c478bd9Sstevel@tonic-gate /* 5607c478bd9Sstevel@tonic-gate * Get the status of the zone (at the time it was called). The state may 5617c478bd9Sstevel@tonic-gate * have progressed by the time it is returned. 5627c478bd9Sstevel@tonic-gate */ 5637c478bd9Sstevel@tonic-gate extern zone_status_t zone_status_get(zone_t *); 5647c478bd9Sstevel@tonic-gate 5657c478bd9Sstevel@tonic-gate /* 5667c478bd9Sstevel@tonic-gate * Get the "kcred" credentials corresponding to the given zone. 5677c478bd9Sstevel@tonic-gate */ 5687c478bd9Sstevel@tonic-gate extern struct cred *zone_get_kcred(zoneid_t); 5697c478bd9Sstevel@tonic-gate 5707c478bd9Sstevel@tonic-gate /* 5717c478bd9Sstevel@tonic-gate * Get/set the pool the zone is currently bound to. 5727c478bd9Sstevel@tonic-gate */ 5737c478bd9Sstevel@tonic-gate extern struct pool *zone_pool_get(zone_t *); 5747c478bd9Sstevel@tonic-gate extern void zone_pool_set(zone_t *, struct pool *); 5757c478bd9Sstevel@tonic-gate 5767c478bd9Sstevel@tonic-gate /* 5777c478bd9Sstevel@tonic-gate * Get/set the pset the zone is currently using. 5787c478bd9Sstevel@tonic-gate */ 5797c478bd9Sstevel@tonic-gate extern psetid_t zone_pset_get(zone_t *); 5807c478bd9Sstevel@tonic-gate extern void zone_pset_set(zone_t *, psetid_t); 5817c478bd9Sstevel@tonic-gate 5827c478bd9Sstevel@tonic-gate /* 5837c478bd9Sstevel@tonic-gate * Get the number of cpus/online-cpus visible from the given zone. 5847c478bd9Sstevel@tonic-gate */ 5857c478bd9Sstevel@tonic-gate extern int zone_ncpus_get(zone_t *); 5867c478bd9Sstevel@tonic-gate extern int zone_ncpus_online_get(zone_t *); 5877c478bd9Sstevel@tonic-gate 5887c478bd9Sstevel@tonic-gate /* 589fa9e4066Sahrens * Returns true if the named pool/dataset is visible in the current zone. 590fa9e4066Sahrens */ 591fa9e4066Sahrens extern int zone_dataset_visible(const char *, int *); 592fa9e4066Sahrens 593fa9e4066Sahrens /* 5943f2f09c1Sdp * zone version of kadmin() 5957c478bd9Sstevel@tonic-gate */ 5963f2f09c1Sdp extern int zone_kadmin(int, int, const char *, cred_t *); 5977c478bd9Sstevel@tonic-gate extern void zone_shutdown_global(void); 5987c478bd9Sstevel@tonic-gate 5997c478bd9Sstevel@tonic-gate extern void mount_in_progress(void); 6007c478bd9Sstevel@tonic-gate extern void mount_completed(void); 6017c478bd9Sstevel@tonic-gate 6027c478bd9Sstevel@tonic-gate extern int zone_walk(int (*)(zone_t *, void *), void *); 6037c478bd9Sstevel@tonic-gate 604c6939658Ssl108498 extern rctl_hndl_t rc_zone_locked_mem; 6050209230bSgjelinek extern rctl_hndl_t rc_zone_max_swap; 606c6939658Ssl108498 6077c478bd9Sstevel@tonic-gate #endif /* _KERNEL */ 6087c478bd9Sstevel@tonic-gate 6097c478bd9Sstevel@tonic-gate #ifdef __cplusplus 6107c478bd9Sstevel@tonic-gate } 6117c478bd9Sstevel@tonic-gate #endif 6127c478bd9Sstevel@tonic-gate 6137c478bd9Sstevel@tonic-gate #endif /* _SYS_ZONE_H */ 614