1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate #ifndef _SYS_ZONE_H 28*7c478bd9Sstevel@tonic-gate #define _SYS_ZONE_H 29*7c478bd9Sstevel@tonic-gate 30*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 31*7c478bd9Sstevel@tonic-gate 32*7c478bd9Sstevel@tonic-gate #include <sys/types.h> 33*7c478bd9Sstevel@tonic-gate #include <sys/mutex.h> 34*7c478bd9Sstevel@tonic-gate #include <sys/param.h> 35*7c478bd9Sstevel@tonic-gate #include <sys/rctl.h> 36*7c478bd9Sstevel@tonic-gate #include <sys/pset.h> 37*7c478bd9Sstevel@tonic-gate 38*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 39*7c478bd9Sstevel@tonic-gate extern "C" { 40*7c478bd9Sstevel@tonic-gate #endif 41*7c478bd9Sstevel@tonic-gate 42*7c478bd9Sstevel@tonic-gate /* 43*7c478bd9Sstevel@tonic-gate * NOTE 44*7c478bd9Sstevel@tonic-gate * 45*7c478bd9Sstevel@tonic-gate * The contents of this file are private to the implementation of 46*7c478bd9Sstevel@tonic-gate * Solaris and are subject to change at any time without notice. 47*7c478bd9Sstevel@tonic-gate * Applications and drivers using these interfaces may fail to 48*7c478bd9Sstevel@tonic-gate * run on future releases. 49*7c478bd9Sstevel@tonic-gate */ 50*7c478bd9Sstevel@tonic-gate 51*7c478bd9Sstevel@tonic-gate /* Available both in kernel and for user space */ 52*7c478bd9Sstevel@tonic-gate 53*7c478bd9Sstevel@tonic-gate /* zone id restrictions and special ids */ 54*7c478bd9Sstevel@tonic-gate #define MAX_ZONEID 9999 55*7c478bd9Sstevel@tonic-gate #define MIN_USERZONEID 1 /* lowest user-creatable zone ID */ 56*7c478bd9Sstevel@tonic-gate #define MIN_ZONEID 0 /* minimum zone ID on system */ 57*7c478bd9Sstevel@tonic-gate #define GLOBAL_ZONEID 0 58*7c478bd9Sstevel@tonic-gate #define ZONEID_WIDTH 4 /* for printf */ 59*7c478bd9Sstevel@tonic-gate 60*7c478bd9Sstevel@tonic-gate /* system call subcodes */ 61*7c478bd9Sstevel@tonic-gate #define ZONE_CREATE 0 62*7c478bd9Sstevel@tonic-gate #define ZONE_DESTROY 1 63*7c478bd9Sstevel@tonic-gate #define ZONE_GETATTR 2 64*7c478bd9Sstevel@tonic-gate #define ZONE_ENTER 3 65*7c478bd9Sstevel@tonic-gate #define ZONE_LIST 4 66*7c478bd9Sstevel@tonic-gate #define ZONE_SHUTDOWN 5 67*7c478bd9Sstevel@tonic-gate #define ZONE_LOOKUP 6 68*7c478bd9Sstevel@tonic-gate #define ZONE_BOOT 7 69*7c478bd9Sstevel@tonic-gate 70*7c478bd9Sstevel@tonic-gate /* zone attributes */ 71*7c478bd9Sstevel@tonic-gate #define ZONE_ATTR_ROOT 1 72*7c478bd9Sstevel@tonic-gate #define ZONE_ATTR_NAME 2 73*7c478bd9Sstevel@tonic-gate #define ZONE_ATTR_STATUS 3 74*7c478bd9Sstevel@tonic-gate #define ZONE_ATTR_PRIVSET 4 75*7c478bd9Sstevel@tonic-gate #define ZONE_ATTR_UNIQID 5 76*7c478bd9Sstevel@tonic-gate #define ZONE_ATTR_POOLID 6 77*7c478bd9Sstevel@tonic-gate #define ZONE_ATTR_INITPID 7 78*7c478bd9Sstevel@tonic-gate 79*7c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32 80*7c478bd9Sstevel@tonic-gate typedef struct { 81*7c478bd9Sstevel@tonic-gate caddr32_t zone_name; 82*7c478bd9Sstevel@tonic-gate caddr32_t zone_root; 83*7c478bd9Sstevel@tonic-gate caddr32_t zone_privs; 84*7c478bd9Sstevel@tonic-gate caddr32_t rctlbuf; 85*7c478bd9Sstevel@tonic-gate size32_t rctlbufsz; 86*7c478bd9Sstevel@tonic-gate caddr32_t extended_error; 87*7c478bd9Sstevel@tonic-gate } zone_def32; 88*7c478bd9Sstevel@tonic-gate #endif 89*7c478bd9Sstevel@tonic-gate typedef struct { 90*7c478bd9Sstevel@tonic-gate const char *zone_name; 91*7c478bd9Sstevel@tonic-gate const char *zone_root; 92*7c478bd9Sstevel@tonic-gate const struct priv_set *zone_privs; 93*7c478bd9Sstevel@tonic-gate const char *rctlbuf; 94*7c478bd9Sstevel@tonic-gate size_t rctlbufsz; 95*7c478bd9Sstevel@tonic-gate int *extended_error; 96*7c478bd9Sstevel@tonic-gate } zone_def; 97*7c478bd9Sstevel@tonic-gate 98*7c478bd9Sstevel@tonic-gate /* extended error information */ 99*7c478bd9Sstevel@tonic-gate #define ZE_UNKNOWN 0 /* No extended error info */ 100*7c478bd9Sstevel@tonic-gate #define ZE_CHROOTED 1 /* tried to zone_create from chroot */ 101*7c478bd9Sstevel@tonic-gate #define ZE_AREMOUNTS 2 /* there are mounts within the zone */ 102*7c478bd9Sstevel@tonic-gate 103*7c478bd9Sstevel@tonic-gate /* zone_status */ 104*7c478bd9Sstevel@tonic-gate typedef enum { 105*7c478bd9Sstevel@tonic-gate ZONE_IS_UNINITIALIZED = 0, 106*7c478bd9Sstevel@tonic-gate ZONE_IS_READY, 107*7c478bd9Sstevel@tonic-gate ZONE_IS_BOOTING, 108*7c478bd9Sstevel@tonic-gate ZONE_IS_RUNNING, 109*7c478bd9Sstevel@tonic-gate ZONE_IS_SHUTTING_DOWN, 110*7c478bd9Sstevel@tonic-gate ZONE_IS_EMPTY, 111*7c478bd9Sstevel@tonic-gate ZONE_IS_DOWN, 112*7c478bd9Sstevel@tonic-gate ZONE_IS_DYING, 113*7c478bd9Sstevel@tonic-gate ZONE_IS_DEAD 114*7c478bd9Sstevel@tonic-gate } zone_status_t; 115*7c478bd9Sstevel@tonic-gate #define ZONE_MIN_STATE ZONE_IS_UNINITIALIZED 116*7c478bd9Sstevel@tonic-gate #define ZONE_MAX_STATE ZONE_IS_DEAD 117*7c478bd9Sstevel@tonic-gate 118*7c478bd9Sstevel@tonic-gate /* 119*7c478bd9Sstevel@tonic-gate * Valid commands which may be issued by zoneadm to zoneadmd. The kernel also 120*7c478bd9Sstevel@tonic-gate * communicates with zoneadmd, but only uses Z_REBOOT and Z_HALT. 121*7c478bd9Sstevel@tonic-gate */ 122*7c478bd9Sstevel@tonic-gate typedef enum zone_cmd { 123*7c478bd9Sstevel@tonic-gate Z_READY, Z_BOOT, Z_REBOOT, Z_HALT, Z_NOTE_UNINSTALLING 124*7c478bd9Sstevel@tonic-gate } zone_cmd_t; 125*7c478bd9Sstevel@tonic-gate 126*7c478bd9Sstevel@tonic-gate #define ZONEBOOTARGS_MAX 257 /* uadmin()'s buffer is 257 bytes. */ 127*7c478bd9Sstevel@tonic-gate 128*7c478bd9Sstevel@tonic-gate /* 129*7c478bd9Sstevel@tonic-gate * The structure of a request to zoneadmd. 130*7c478bd9Sstevel@tonic-gate */ 131*7c478bd9Sstevel@tonic-gate typedef struct zone_cmd_arg { 132*7c478bd9Sstevel@tonic-gate uint64_t uniqid; /* unique "generation number" */ 133*7c478bd9Sstevel@tonic-gate zone_cmd_t cmd; /* requested action */ 134*7c478bd9Sstevel@tonic-gate char locale[MAXPATHLEN]; /* locale in which to render messages */ 135*7c478bd9Sstevel@tonic-gate char bootbuf[ZONEBOOTARGS_MAX]; /* arguments passed to zone_boot() */ 136*7c478bd9Sstevel@tonic-gate } zone_cmd_arg_t; 137*7c478bd9Sstevel@tonic-gate 138*7c478bd9Sstevel@tonic-gate /* 139*7c478bd9Sstevel@tonic-gate * Structure of zoneadmd's response to a request. A NULL return value means 140*7c478bd9Sstevel@tonic-gate * the caller should attempt to restart zoneadmd and retry. 141*7c478bd9Sstevel@tonic-gate */ 142*7c478bd9Sstevel@tonic-gate typedef struct zone_cmd_rval { 143*7c478bd9Sstevel@tonic-gate int rval; /* return value of request */ 144*7c478bd9Sstevel@tonic-gate char errbuf[1]; /* variable-sized buffer containing error messages */ 145*7c478bd9Sstevel@tonic-gate } zone_cmd_rval_t; 146*7c478bd9Sstevel@tonic-gate 147*7c478bd9Sstevel@tonic-gate /* 148*7c478bd9Sstevel@tonic-gate * The zone support infrastructure uses the zone name as a component 149*7c478bd9Sstevel@tonic-gate * of unix domain (AF_UNIX) sockets, which are limited to 108 characters 150*7c478bd9Sstevel@tonic-gate * in length, so ZONENAME_MAX is limited by that. 151*7c478bd9Sstevel@tonic-gate */ 152*7c478bd9Sstevel@tonic-gate #define ZONENAME_MAX 64 153*7c478bd9Sstevel@tonic-gate 154*7c478bd9Sstevel@tonic-gate #define GLOBAL_ZONENAME "global" 155*7c478bd9Sstevel@tonic-gate 156*7c478bd9Sstevel@tonic-gate /* 157*7c478bd9Sstevel@tonic-gate * Extended Regular expression (see regex(5)) which matches all valid zone 158*7c478bd9Sstevel@tonic-gate * names. 159*7c478bd9Sstevel@tonic-gate */ 160*7c478bd9Sstevel@tonic-gate #define ZONENAME_REGEXP "[a-zA-Z0-9][-_.a-zA-Z0-9]{0,62}" 161*7c478bd9Sstevel@tonic-gate 162*7c478bd9Sstevel@tonic-gate /* 163*7c478bd9Sstevel@tonic-gate * Where the zones support infrastructure places temporary files. 164*7c478bd9Sstevel@tonic-gate */ 165*7c478bd9Sstevel@tonic-gate #define ZONES_TMPDIR "/var/run/zones" 166*7c478bd9Sstevel@tonic-gate 167*7c478bd9Sstevel@tonic-gate /* 168*7c478bd9Sstevel@tonic-gate * The path to the door used by clients to communicate with zoneadmd. 169*7c478bd9Sstevel@tonic-gate */ 170*7c478bd9Sstevel@tonic-gate #define ZONE_DOOR_PATH ZONES_TMPDIR "/%s.zoneadmd_door" 171*7c478bd9Sstevel@tonic-gate 172*7c478bd9Sstevel@tonic-gate 173*7c478bd9Sstevel@tonic-gate #ifdef _KERNEL 174*7c478bd9Sstevel@tonic-gate /* 175*7c478bd9Sstevel@tonic-gate * We need to protect the definition of 'list_t' from userland applications and 176*7c478bd9Sstevel@tonic-gate * libraries which may be defining ther own versions. 177*7c478bd9Sstevel@tonic-gate */ 178*7c478bd9Sstevel@tonic-gate #include <sys/list.h> 179*7c478bd9Sstevel@tonic-gate 180*7c478bd9Sstevel@tonic-gate #define GLOBAL_ZONEUNIQID 0 /* uniqid of the global zone */ 181*7c478bd9Sstevel@tonic-gate 182*7c478bd9Sstevel@tonic-gate /* zone_flags */ 183*7c478bd9Sstevel@tonic-gate #define ZF_DESTROYED 0x1 /* ZSD destructor callbacks run */ 184*7c478bd9Sstevel@tonic-gate 185*7c478bd9Sstevel@tonic-gate struct pool; 186*7c478bd9Sstevel@tonic-gate 187*7c478bd9Sstevel@tonic-gate typedef struct zone { 188*7c478bd9Sstevel@tonic-gate /* 189*7c478bd9Sstevel@tonic-gate * zone_name is never modified once set. 190*7c478bd9Sstevel@tonic-gate */ 191*7c478bd9Sstevel@tonic-gate char *zone_name; /* zone's configuration name */ 192*7c478bd9Sstevel@tonic-gate /* 193*7c478bd9Sstevel@tonic-gate * zone_nodename and zone_domain are never freed once allocated. 194*7c478bd9Sstevel@tonic-gate */ 195*7c478bd9Sstevel@tonic-gate char *zone_nodename; /* utsname.nodename equivalent */ 196*7c478bd9Sstevel@tonic-gate char *zone_domain; /* srpc_domain equivalent */ 197*7c478bd9Sstevel@tonic-gate /* 198*7c478bd9Sstevel@tonic-gate * zone_lock protects the following fields of a zone_t: 199*7c478bd9Sstevel@tonic-gate * zone_ref 200*7c478bd9Sstevel@tonic-gate * zone_cred_ref 201*7c478bd9Sstevel@tonic-gate * zone_ntasks 202*7c478bd9Sstevel@tonic-gate * zone_flags 203*7c478bd9Sstevel@tonic-gate * zone_zsd 204*7c478bd9Sstevel@tonic-gate */ 205*7c478bd9Sstevel@tonic-gate kmutex_t zone_lock; 206*7c478bd9Sstevel@tonic-gate /* 207*7c478bd9Sstevel@tonic-gate * zone_linkage is the zone's linkage into the active or 208*7c478bd9Sstevel@tonic-gate * death-row list. The field is protected by zonehash_lock. 209*7c478bd9Sstevel@tonic-gate */ 210*7c478bd9Sstevel@tonic-gate list_node_t zone_linkage; 211*7c478bd9Sstevel@tonic-gate zoneid_t zone_id; /* ID of zone */ 212*7c478bd9Sstevel@tonic-gate uint_t zone_ref; /* count of zone_hold()s on zone */ 213*7c478bd9Sstevel@tonic-gate uint_t zone_cred_ref; /* count of zone_hold_cred()s on zone */ 214*7c478bd9Sstevel@tonic-gate /* 215*7c478bd9Sstevel@tonic-gate * zone_rootvp and zone_rootpath can never be modified once set. 216*7c478bd9Sstevel@tonic-gate */ 217*7c478bd9Sstevel@tonic-gate struct vnode *zone_rootvp; /* zone's root vnode */ 218*7c478bd9Sstevel@tonic-gate char *zone_rootpath; /* Path to zone's root + '/' */ 219*7c478bd9Sstevel@tonic-gate ushort_t zone_flags; /* misc flags */ 220*7c478bd9Sstevel@tonic-gate zone_status_t zone_status; /* protected by zone_status_lock */ 221*7c478bd9Sstevel@tonic-gate uint_t zone_ntasks; /* number of tasks executing in zone */ 222*7c478bd9Sstevel@tonic-gate kmutex_t zone_nlwps_lock; /* protects zone_nlwps, and *_nlwps */ 223*7c478bd9Sstevel@tonic-gate /* counters in projects and tasks */ 224*7c478bd9Sstevel@tonic-gate /* that are within the zone */ 225*7c478bd9Sstevel@tonic-gate rctl_qty_t zone_nlwps; /* number of lwps in zone */ 226*7c478bd9Sstevel@tonic-gate rctl_qty_t zone_nlwps_ctl; /* protected by zone_rctls->rcs_lock */ 227*7c478bd9Sstevel@tonic-gate 228*7c478bd9Sstevel@tonic-gate uint_t zone_rootpathlen; /* strlen(zone_rootpath) + 1 */ 229*7c478bd9Sstevel@tonic-gate uint32_t zone_shares; /* FSS shares allocated to zone */ 230*7c478bd9Sstevel@tonic-gate rctl_set_t *zone_rctls; /* zone-wide (zone.*) rctls */ 231*7c478bd9Sstevel@tonic-gate list_t zone_zsd; /* list of Zone-Specific Data values */ 232*7c478bd9Sstevel@tonic-gate kcondvar_t zone_cv; /* used to signal state changes */ 233*7c478bd9Sstevel@tonic-gate struct proc *zone_zsched; /* Dummy kernel "zsched" process */ 234*7c478bd9Sstevel@tonic-gate pid_t zone_proc_initpid; /* pid of "init" for this zone */ 235*7c478bd9Sstevel@tonic-gate int zone_boot_err; /* for zone_boot() if boot fails */ 236*7c478bd9Sstevel@tonic-gate char *zone_bootargs; /* arguments passed via zone_boot() */ 237*7c478bd9Sstevel@tonic-gate /* 238*7c478bd9Sstevel@tonic-gate * zone_kthreads is protected by zone_status_lock. 239*7c478bd9Sstevel@tonic-gate */ 240*7c478bd9Sstevel@tonic-gate kthread_t *zone_kthreads; /* kernel threads in zone */ 241*7c478bd9Sstevel@tonic-gate struct priv_set *zone_privset; /* limit set for zone */ 242*7c478bd9Sstevel@tonic-gate /* 243*7c478bd9Sstevel@tonic-gate * zone_vfslist is protected by vfs_list_lock(). 244*7c478bd9Sstevel@tonic-gate */ 245*7c478bd9Sstevel@tonic-gate struct vfs *zone_vfslist; /* list of FS's mounted in zone */ 246*7c478bd9Sstevel@tonic-gate uint64_t zone_uniqid; /* unique zone generation number */ 247*7c478bd9Sstevel@tonic-gate struct cred *zone_kcred; /* kcred-like, zone-limited cred */ 248*7c478bd9Sstevel@tonic-gate /* 249*7c478bd9Sstevel@tonic-gate * zone_pool is protected by pool_lock(). 250*7c478bd9Sstevel@tonic-gate */ 251*7c478bd9Sstevel@tonic-gate struct pool *zone_pool; /* pool the zone is bound to */ 252*7c478bd9Sstevel@tonic-gate hrtime_t zone_pool_mod; /* last pool bind modification time */ 253*7c478bd9Sstevel@tonic-gate /* zone_psetid is protected by cpu_lock */ 254*7c478bd9Sstevel@tonic-gate psetid_t zone_psetid; /* pset the zone is bound to */ 255*7c478bd9Sstevel@tonic-gate /* 256*7c478bd9Sstevel@tonic-gate * The following two can be read without holding any locks. They are 257*7c478bd9Sstevel@tonic-gate * updated under cpu_lock. 258*7c478bd9Sstevel@tonic-gate */ 259*7c478bd9Sstevel@tonic-gate int zone_ncpus; /* zone's idea of ncpus */ 260*7c478bd9Sstevel@tonic-gate int zone_ncpus_online; /* zone's idea of ncpus_online */ 261*7c478bd9Sstevel@tonic-gate } zone_t; 262*7c478bd9Sstevel@tonic-gate 263*7c478bd9Sstevel@tonic-gate /* 264*7c478bd9Sstevel@tonic-gate * Special value of zone_psetid to indicate that pools are disabled. 265*7c478bd9Sstevel@tonic-gate */ 266*7c478bd9Sstevel@tonic-gate #define ZONE_PS_INVAL PS_MYID 267*7c478bd9Sstevel@tonic-gate 268*7c478bd9Sstevel@tonic-gate extern zone_t zone0; 269*7c478bd9Sstevel@tonic-gate extern zone_t *global_zone; 270*7c478bd9Sstevel@tonic-gate extern uint_t maxzones; 271*7c478bd9Sstevel@tonic-gate extern rctl_hndl_t rc_zone_nlwps; 272*7c478bd9Sstevel@tonic-gate 273*7c478bd9Sstevel@tonic-gate extern const char * const zone_initname; 274*7c478bd9Sstevel@tonic-gate 275*7c478bd9Sstevel@tonic-gate extern long zone(int, void *, void *, void *, void *, void *); 276*7c478bd9Sstevel@tonic-gate extern void zone_zsd_init(void); 277*7c478bd9Sstevel@tonic-gate extern void zone_init(void); 278*7c478bd9Sstevel@tonic-gate extern void zone_hold(zone_t *); 279*7c478bd9Sstevel@tonic-gate extern void zone_rele(zone_t *); 280*7c478bd9Sstevel@tonic-gate extern void zone_cred_hold(zone_t *); 281*7c478bd9Sstevel@tonic-gate extern void zone_cred_rele(zone_t *); 282*7c478bd9Sstevel@tonic-gate extern void zone_task_hold(zone_t *); 283*7c478bd9Sstevel@tonic-gate extern void zone_task_rele(zone_t *); 284*7c478bd9Sstevel@tonic-gate extern zone_t *zone_find_by_id(zoneid_t); 285*7c478bd9Sstevel@tonic-gate extern zone_t *zone_find_by_name(char *); 286*7c478bd9Sstevel@tonic-gate extern zone_t *zone_find_by_path(const char *); 287*7c478bd9Sstevel@tonic-gate extern zoneid_t getzoneid(void); 288*7c478bd9Sstevel@tonic-gate 289*7c478bd9Sstevel@tonic-gate /* 290*7c478bd9Sstevel@tonic-gate * Zone-specific data (ZSD) APIs 291*7c478bd9Sstevel@tonic-gate */ 292*7c478bd9Sstevel@tonic-gate /* 293*7c478bd9Sstevel@tonic-gate * The following is what code should be initializing its zone_key_t to if it 294*7c478bd9Sstevel@tonic-gate * calls zone_getspecific() without necessarily knowing that zone_key_create() 295*7c478bd9Sstevel@tonic-gate * has been called on the key. 296*7c478bd9Sstevel@tonic-gate */ 297*7c478bd9Sstevel@tonic-gate #define ZONE_KEY_UNINITIALIZED 0 298*7c478bd9Sstevel@tonic-gate 299*7c478bd9Sstevel@tonic-gate typedef uint_t zone_key_t; 300*7c478bd9Sstevel@tonic-gate 301*7c478bd9Sstevel@tonic-gate extern void zone_key_create(zone_key_t *, void *(*)(zoneid_t), 302*7c478bd9Sstevel@tonic-gate void (*)(zoneid_t, void *), void (*)(zoneid_t, void *)); 303*7c478bd9Sstevel@tonic-gate extern int zone_key_delete(zone_key_t); 304*7c478bd9Sstevel@tonic-gate extern void *zone_getspecific(zone_key_t, zone_t *); 305*7c478bd9Sstevel@tonic-gate extern int zone_setspecific(zone_key_t, zone_t *, const void *); 306*7c478bd9Sstevel@tonic-gate 307*7c478bd9Sstevel@tonic-gate /* 308*7c478bd9Sstevel@tonic-gate * The definition of a zsd_entry is truly private to zone.c and is only 309*7c478bd9Sstevel@tonic-gate * placed here so it can be shared with mdb. 310*7c478bd9Sstevel@tonic-gate */ 311*7c478bd9Sstevel@tonic-gate struct zsd_entry { 312*7c478bd9Sstevel@tonic-gate zone_key_t zsd_key; /* Key used to lookup value */ 313*7c478bd9Sstevel@tonic-gate void *zsd_data; /* Caller-managed value */ 314*7c478bd9Sstevel@tonic-gate /* 315*7c478bd9Sstevel@tonic-gate * Callbacks to be executed when a zone is created, shutdown, and 316*7c478bd9Sstevel@tonic-gate * destroyed, respectively. 317*7c478bd9Sstevel@tonic-gate */ 318*7c478bd9Sstevel@tonic-gate void *(*zsd_create)(zoneid_t); 319*7c478bd9Sstevel@tonic-gate void (*zsd_shutdown)(zoneid_t, void *); 320*7c478bd9Sstevel@tonic-gate void (*zsd_destroy)(zoneid_t, void *); 321*7c478bd9Sstevel@tonic-gate list_node_t zsd_linkage; 322*7c478bd9Sstevel@tonic-gate }; 323*7c478bd9Sstevel@tonic-gate 324*7c478bd9Sstevel@tonic-gate /* 325*7c478bd9Sstevel@tonic-gate * Macros to help with zone visibility restrictions. 326*7c478bd9Sstevel@tonic-gate */ 327*7c478bd9Sstevel@tonic-gate 328*7c478bd9Sstevel@tonic-gate /* 329*7c478bd9Sstevel@tonic-gate * Is process in the global zone? 330*7c478bd9Sstevel@tonic-gate */ 331*7c478bd9Sstevel@tonic-gate #define INGLOBALZONE(p) \ 332*7c478bd9Sstevel@tonic-gate ((p)->p_zone == global_zone) 333*7c478bd9Sstevel@tonic-gate 334*7c478bd9Sstevel@tonic-gate /* 335*7c478bd9Sstevel@tonic-gate * Can process view objects in given zone? 336*7c478bd9Sstevel@tonic-gate */ 337*7c478bd9Sstevel@tonic-gate #define HASZONEACCESS(p, zoneid) \ 338*7c478bd9Sstevel@tonic-gate ((p)->p_zone->zone_id == (zoneid) || INGLOBALZONE(p)) 339*7c478bd9Sstevel@tonic-gate 340*7c478bd9Sstevel@tonic-gate /* 341*7c478bd9Sstevel@tonic-gate * Convenience macro to see if a resolved path is visible from within a 342*7c478bd9Sstevel@tonic-gate * given zone. 343*7c478bd9Sstevel@tonic-gate * 344*7c478bd9Sstevel@tonic-gate * The basic idea is that the first (zone_rootpathlen - 1) bytes of the 345*7c478bd9Sstevel@tonic-gate * two strings must be equal. Since the rootpathlen has a trailing '/', 346*7c478bd9Sstevel@tonic-gate * we want to skip everything in the path up to (but not including) the 347*7c478bd9Sstevel@tonic-gate * trailing '/'. 348*7c478bd9Sstevel@tonic-gate */ 349*7c478bd9Sstevel@tonic-gate #define ZONE_PATH_VISIBLE(path, zone) \ 350*7c478bd9Sstevel@tonic-gate (strncmp((path), (zone)->zone_rootpath, \ 351*7c478bd9Sstevel@tonic-gate (zone)->zone_rootpathlen - 1) == 0) 352*7c478bd9Sstevel@tonic-gate 353*7c478bd9Sstevel@tonic-gate /* 354*7c478bd9Sstevel@tonic-gate * Convenience macro to go from the global view of a path to that seen 355*7c478bd9Sstevel@tonic-gate * from within said zone. It is the responsibility of the caller to 356*7c478bd9Sstevel@tonic-gate * ensure that the path is a resolved one (ie, no '..'s or '.'s), and is 357*7c478bd9Sstevel@tonic-gate * in fact visible from within the zone. 358*7c478bd9Sstevel@tonic-gate */ 359*7c478bd9Sstevel@tonic-gate #define ZONE_PATH_TRANSLATE(path, zone) \ 360*7c478bd9Sstevel@tonic-gate (ASSERT(ZONE_PATH_VISIBLE(path, zone)), \ 361*7c478bd9Sstevel@tonic-gate (path) + (zone)->zone_rootpathlen - 2) 362*7c478bd9Sstevel@tonic-gate 363*7c478bd9Sstevel@tonic-gate /* 364*7c478bd9Sstevel@tonic-gate * Special processes visible in all zones. 365*7c478bd9Sstevel@tonic-gate */ 366*7c478bd9Sstevel@tonic-gate #define ZONE_SPECIALPID(x) ((x) == 0 || (x) == 1) 367*7c478bd9Sstevel@tonic-gate 368*7c478bd9Sstevel@tonic-gate /* 369*7c478bd9Sstevel@tonic-gate * Special zoneid_t token to refer to all zones. 370*7c478bd9Sstevel@tonic-gate */ 371*7c478bd9Sstevel@tonic-gate #define ALL_ZONES (-1) 372*7c478bd9Sstevel@tonic-gate 373*7c478bd9Sstevel@tonic-gate /* 374*7c478bd9Sstevel@tonic-gate * Zone-safe version of thread_create() to be used when the caller wants to 375*7c478bd9Sstevel@tonic-gate * create a kernel thread to run within the current zone's context. 376*7c478bd9Sstevel@tonic-gate */ 377*7c478bd9Sstevel@tonic-gate extern kthread_t *zthread_create(caddr_t, size_t, void (*)(), void *, size_t, 378*7c478bd9Sstevel@tonic-gate pri_t); 379*7c478bd9Sstevel@tonic-gate extern void zthread_exit(void); 380*7c478bd9Sstevel@tonic-gate 381*7c478bd9Sstevel@tonic-gate /* 382*7c478bd9Sstevel@tonic-gate * Functions for an external observer to register interest in a zone's status 383*7c478bd9Sstevel@tonic-gate * change. Observers will be woken up when the zone status equals the status 384*7c478bd9Sstevel@tonic-gate * argument passed in (in the case of zone_status_timedwait, the function may 385*7c478bd9Sstevel@tonic-gate * also return because of a timeout; zone_status_wait_sig may return early due 386*7c478bd9Sstevel@tonic-gate * to a signal being delivered; zone_status_timedwait_sig may return for any of 387*7c478bd9Sstevel@tonic-gate * the above reasons). 388*7c478bd9Sstevel@tonic-gate * 389*7c478bd9Sstevel@tonic-gate * Otherwise these behave identically to cv_timedwait(), cv_wait(), and 390*7c478bd9Sstevel@tonic-gate * cv_wait_sig() respectively. 391*7c478bd9Sstevel@tonic-gate */ 392*7c478bd9Sstevel@tonic-gate extern clock_t zone_status_timedwait(zone_t *, clock_t, zone_status_t); 393*7c478bd9Sstevel@tonic-gate extern clock_t zone_status_timedwait_sig(zone_t *, clock_t, zone_status_t); 394*7c478bd9Sstevel@tonic-gate extern void zone_status_wait(zone_t *, zone_status_t); 395*7c478bd9Sstevel@tonic-gate extern int zone_status_wait_sig(zone_t *, zone_status_t); 396*7c478bd9Sstevel@tonic-gate 397*7c478bd9Sstevel@tonic-gate /* 398*7c478bd9Sstevel@tonic-gate * Get the status of the zone (at the time it was called). The state may 399*7c478bd9Sstevel@tonic-gate * have progressed by the time it is returned. 400*7c478bd9Sstevel@tonic-gate */ 401*7c478bd9Sstevel@tonic-gate extern zone_status_t zone_status_get(zone_t *); 402*7c478bd9Sstevel@tonic-gate 403*7c478bd9Sstevel@tonic-gate /* 404*7c478bd9Sstevel@tonic-gate * Get the "kcred" credentials corresponding to the given zone. 405*7c478bd9Sstevel@tonic-gate */ 406*7c478bd9Sstevel@tonic-gate extern struct cred *zone_get_kcred(zoneid_t); 407*7c478bd9Sstevel@tonic-gate 408*7c478bd9Sstevel@tonic-gate /* 409*7c478bd9Sstevel@tonic-gate * Get/set the pool the zone is currently bound to. 410*7c478bd9Sstevel@tonic-gate */ 411*7c478bd9Sstevel@tonic-gate extern struct pool *zone_pool_get(zone_t *); 412*7c478bd9Sstevel@tonic-gate extern void zone_pool_set(zone_t *, struct pool *); 413*7c478bd9Sstevel@tonic-gate 414*7c478bd9Sstevel@tonic-gate /* 415*7c478bd9Sstevel@tonic-gate * Get/set the pset the zone is currently using. 416*7c478bd9Sstevel@tonic-gate */ 417*7c478bd9Sstevel@tonic-gate extern psetid_t zone_pset_get(zone_t *); 418*7c478bd9Sstevel@tonic-gate extern void zone_pset_set(zone_t *, psetid_t); 419*7c478bd9Sstevel@tonic-gate 420*7c478bd9Sstevel@tonic-gate /* 421*7c478bd9Sstevel@tonic-gate * Get the number of cpus/online-cpus visible from the given zone. 422*7c478bd9Sstevel@tonic-gate */ 423*7c478bd9Sstevel@tonic-gate extern int zone_ncpus_get(zone_t *); 424*7c478bd9Sstevel@tonic-gate extern int zone_ncpus_online_get(zone_t *); 425*7c478bd9Sstevel@tonic-gate 426*7c478bd9Sstevel@tonic-gate /* 427*7c478bd9Sstevel@tonic-gate * zone version of uadmin() 428*7c478bd9Sstevel@tonic-gate */ 429*7c478bd9Sstevel@tonic-gate extern int zone_uadmin(int, int, struct cred *); 430*7c478bd9Sstevel@tonic-gate extern void zone_shutdown_global(void); 431*7c478bd9Sstevel@tonic-gate 432*7c478bd9Sstevel@tonic-gate extern void mount_in_progress(void); 433*7c478bd9Sstevel@tonic-gate extern void mount_completed(void); 434*7c478bd9Sstevel@tonic-gate 435*7c478bd9Sstevel@tonic-gate extern int zone_walk(int (*)(zone_t *, void *), void *); 436*7c478bd9Sstevel@tonic-gate 437*7c478bd9Sstevel@tonic-gate #endif /* _KERNEL */ 438*7c478bd9Sstevel@tonic-gate 439*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 440*7c478bd9Sstevel@tonic-gate } 441*7c478bd9Sstevel@tonic-gate #endif 442*7c478bd9Sstevel@tonic-gate 443*7c478bd9Sstevel@tonic-gate #endif /* _SYS_ZONE_H */ 444