xref: /titanic_44/usr/src/uts/common/os/zone.c (revision 0fbb751d81ab0a7c7ddfd8d4e447e075a9f7024f)
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  */
2197eda132Sraf 
227c478bd9Sstevel@tonic-gate /*
23134a1f4eSCasper H.S. Dik  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate /*
277c478bd9Sstevel@tonic-gate  * Zones
287c478bd9Sstevel@tonic-gate  *
297c478bd9Sstevel@tonic-gate  *   A zone is a named collection of processes, namespace constraints,
307c478bd9Sstevel@tonic-gate  *   and other system resources which comprise a secure and manageable
317c478bd9Sstevel@tonic-gate  *   application containment facility.
327c478bd9Sstevel@tonic-gate  *
337c478bd9Sstevel@tonic-gate  *   Zones (represented by the reference counted zone_t) are tracked in
347c478bd9Sstevel@tonic-gate  *   the kernel in the zonehash.  Elsewhere in the kernel, Zone IDs
357c478bd9Sstevel@tonic-gate  *   (zoneid_t) are used to track zone association.  Zone IDs are
367c478bd9Sstevel@tonic-gate  *   dynamically generated when the zone is created; if a persistent
377c478bd9Sstevel@tonic-gate  *   identifier is needed (core files, accounting logs, audit trail,
387c478bd9Sstevel@tonic-gate  *   etc.), the zone name should be used.
397c478bd9Sstevel@tonic-gate  *
407c478bd9Sstevel@tonic-gate  *
417c478bd9Sstevel@tonic-gate  *   Global Zone:
427c478bd9Sstevel@tonic-gate  *
437c478bd9Sstevel@tonic-gate  *   The global zone (zoneid 0) is automatically associated with all
447c478bd9Sstevel@tonic-gate  *   system resources that have not been bound to a user-created zone.
457c478bd9Sstevel@tonic-gate  *   This means that even systems where zones are not in active use
467c478bd9Sstevel@tonic-gate  *   have a global zone, and all processes, mounts, etc. are
477c478bd9Sstevel@tonic-gate  *   associated with that zone.  The global zone is generally
487c478bd9Sstevel@tonic-gate  *   unconstrained in terms of privileges and access, though the usual
497c478bd9Sstevel@tonic-gate  *   credential and privilege based restrictions apply.
507c478bd9Sstevel@tonic-gate  *
517c478bd9Sstevel@tonic-gate  *
527c478bd9Sstevel@tonic-gate  *   Zone States:
537c478bd9Sstevel@tonic-gate  *
547c478bd9Sstevel@tonic-gate  *   The states in which a zone may be in and the transitions are as
557c478bd9Sstevel@tonic-gate  *   follows:
567c478bd9Sstevel@tonic-gate  *
577c478bd9Sstevel@tonic-gate  *   ZONE_IS_UNINITIALIZED: primordial state for a zone. The partially
587c478bd9Sstevel@tonic-gate  *   initialized zone is added to the list of active zones on the system but
597c478bd9Sstevel@tonic-gate  *   isn't accessible.
607c478bd9Sstevel@tonic-gate  *
61bd41d0a8Snordmark  *   ZONE_IS_INITIALIZED: Initialization complete except the ZSD callbacks are
62bd41d0a8Snordmark  *   not yet completed. Not possible to enter the zone, but attributes can
63bd41d0a8Snordmark  *   be retrieved.
64bd41d0a8Snordmark  *
657c478bd9Sstevel@tonic-gate  *   ZONE_IS_READY: zsched (the kernel dummy process for a zone) is
667c478bd9Sstevel@tonic-gate  *   ready.  The zone is made visible after the ZSD constructor callbacks are
677c478bd9Sstevel@tonic-gate  *   executed.  A zone remains in this state until it transitions into
687c478bd9Sstevel@tonic-gate  *   the ZONE_IS_BOOTING state as a result of a call to zone_boot().
697c478bd9Sstevel@tonic-gate  *
707c478bd9Sstevel@tonic-gate  *   ZONE_IS_BOOTING: in this shortlived-state, zsched attempts to start
717c478bd9Sstevel@tonic-gate  *   init.  Should that fail, the zone proceeds to the ZONE_IS_SHUTTING_DOWN
727c478bd9Sstevel@tonic-gate  *   state.
737c478bd9Sstevel@tonic-gate  *
747c478bd9Sstevel@tonic-gate  *   ZONE_IS_RUNNING: The zone is open for business: zsched has
757c478bd9Sstevel@tonic-gate  *   successfully started init.   A zone remains in this state until
767c478bd9Sstevel@tonic-gate  *   zone_shutdown() is called.
777c478bd9Sstevel@tonic-gate  *
787c478bd9Sstevel@tonic-gate  *   ZONE_IS_SHUTTING_DOWN: zone_shutdown() has been called, the system is
797c478bd9Sstevel@tonic-gate  *   killing all processes running in the zone. The zone remains
807c478bd9Sstevel@tonic-gate  *   in this state until there are no more user processes running in the zone.
817c478bd9Sstevel@tonic-gate  *   zone_create(), zone_enter(), and zone_destroy() on this zone will fail.
827c478bd9Sstevel@tonic-gate  *   Since zone_shutdown() is restartable, it may be called successfully
837c478bd9Sstevel@tonic-gate  *   multiple times for the same zone_t.  Setting of the zone's state to
847c478bd9Sstevel@tonic-gate  *   ZONE_IS_SHUTTING_DOWN is synchronized with mounts, so VOP_MOUNT() may check
857c478bd9Sstevel@tonic-gate  *   the zone's status without worrying about it being a moving target.
867c478bd9Sstevel@tonic-gate  *
877c478bd9Sstevel@tonic-gate  *   ZONE_IS_EMPTY: zone_shutdown() has been called, and there
887c478bd9Sstevel@tonic-gate  *   are no more user processes in the zone.  The zone remains in this
897c478bd9Sstevel@tonic-gate  *   state until there are no more kernel threads associated with the
907c478bd9Sstevel@tonic-gate  *   zone.  zone_create(), zone_enter(), and zone_destroy() on this zone will
917c478bd9Sstevel@tonic-gate  *   fail.
927c478bd9Sstevel@tonic-gate  *
937c478bd9Sstevel@tonic-gate  *   ZONE_IS_DOWN: All kernel threads doing work on behalf of the zone
947c478bd9Sstevel@tonic-gate  *   have exited.  zone_shutdown() returns.  Henceforth it is not possible to
957c478bd9Sstevel@tonic-gate  *   join the zone or create kernel threads therein.
967c478bd9Sstevel@tonic-gate  *
977c478bd9Sstevel@tonic-gate  *   ZONE_IS_DYING: zone_destroy() has been called on the zone; zone
987c478bd9Sstevel@tonic-gate  *   remains in this state until zsched exits.  Calls to zone_find_by_*()
997c478bd9Sstevel@tonic-gate  *   return NULL from now on.
1007c478bd9Sstevel@tonic-gate  *
1017c478bd9Sstevel@tonic-gate  *   ZONE_IS_DEAD: zsched has exited (zone_ntasks == 0).  There are no
1027c478bd9Sstevel@tonic-gate  *   processes or threads doing work on behalf of the zone.  The zone is
1037c478bd9Sstevel@tonic-gate  *   removed from the list of active zones.  zone_destroy() returns, and
1047c478bd9Sstevel@tonic-gate  *   the zone can be recreated.
1057c478bd9Sstevel@tonic-gate  *
1067c478bd9Sstevel@tonic-gate  *   ZONE_IS_FREE (internal state): zone_ref goes to 0, ZSD destructor
1077c478bd9Sstevel@tonic-gate  *   callbacks are executed, and all memory associated with the zone is
1087c478bd9Sstevel@tonic-gate  *   freed.
1097c478bd9Sstevel@tonic-gate  *
1107c478bd9Sstevel@tonic-gate  *   Threads can wait for the zone to enter a requested state by using
1117c478bd9Sstevel@tonic-gate  *   zone_status_wait() or zone_status_timedwait() with the desired
1127c478bd9Sstevel@tonic-gate  *   state passed in as an argument.  Zone state transitions are
1137c478bd9Sstevel@tonic-gate  *   uni-directional; it is not possible to move back to an earlier state.
1147c478bd9Sstevel@tonic-gate  *
1157c478bd9Sstevel@tonic-gate  *
1167c478bd9Sstevel@tonic-gate  *   Zone-Specific Data:
1177c478bd9Sstevel@tonic-gate  *
1187c478bd9Sstevel@tonic-gate  *   Subsystems needing to maintain zone-specific data can store that
1197c478bd9Sstevel@tonic-gate  *   data using the ZSD mechanism.  This provides a zone-specific data
1207c478bd9Sstevel@tonic-gate  *   store, similar to thread-specific data (see pthread_getspecific(3C)
1217c478bd9Sstevel@tonic-gate  *   or the TSD code in uts/common/disp/thread.c.  Also, ZSD can be used
1227c478bd9Sstevel@tonic-gate  *   to register callbacks to be invoked when a zone is created, shut
1237c478bd9Sstevel@tonic-gate  *   down, or destroyed.  This can be used to initialize zone-specific
1247c478bd9Sstevel@tonic-gate  *   data for new zones and to clean up when zones go away.
1257c478bd9Sstevel@tonic-gate  *
1267c478bd9Sstevel@tonic-gate  *
1277c478bd9Sstevel@tonic-gate  *   Data Structures:
1287c478bd9Sstevel@tonic-gate  *
1297c478bd9Sstevel@tonic-gate  *   The per-zone structure (zone_t) is reference counted, and freed
1307c478bd9Sstevel@tonic-gate  *   when all references are released.  zone_hold and zone_rele can be
1317c478bd9Sstevel@tonic-gate  *   used to adjust the reference count.  In addition, reference counts
1327c478bd9Sstevel@tonic-gate  *   associated with the cred_t structure are tracked separately using
1337c478bd9Sstevel@tonic-gate  *   zone_cred_hold and zone_cred_rele.
1347c478bd9Sstevel@tonic-gate  *
1357c478bd9Sstevel@tonic-gate  *   Pointers to active zone_t's are stored in two hash tables; one
1367c478bd9Sstevel@tonic-gate  *   for searching by id, the other for searching by name.  Lookups
1377c478bd9Sstevel@tonic-gate  *   can be performed on either basis, using zone_find_by_id and
1387c478bd9Sstevel@tonic-gate  *   zone_find_by_name.  Both return zone_t pointers with the zone
1397c478bd9Sstevel@tonic-gate  *   held, so zone_rele should be called when the pointer is no longer
1407c478bd9Sstevel@tonic-gate  *   needed.  Zones can also be searched by path; zone_find_by_path
1417c478bd9Sstevel@tonic-gate  *   returns the zone with which a path name is associated (global
1427c478bd9Sstevel@tonic-gate  *   zone if the path is not within some other zone's file system
1437c478bd9Sstevel@tonic-gate  *   hierarchy).  This currently requires iterating through each zone,
1447c478bd9Sstevel@tonic-gate  *   so it is slower than an id or name search via a hash table.
1457c478bd9Sstevel@tonic-gate  *
1467c478bd9Sstevel@tonic-gate  *
1477c478bd9Sstevel@tonic-gate  *   Locking:
1487c478bd9Sstevel@tonic-gate  *
1497c478bd9Sstevel@tonic-gate  *   zonehash_lock: This is a top-level global lock used to protect the
1507c478bd9Sstevel@tonic-gate  *       zone hash tables and lists.  Zones cannot be created or destroyed
1517c478bd9Sstevel@tonic-gate  *       while this lock is held.
1527c478bd9Sstevel@tonic-gate  *   zone_status_lock: This is a global lock protecting zone state.
1537c478bd9Sstevel@tonic-gate  *       Zones cannot change state while this lock is held.  It also
1547c478bd9Sstevel@tonic-gate  *       protects the list of kernel threads associated with a zone.
1557c478bd9Sstevel@tonic-gate  *   zone_lock: This is a per-zone lock used to protect several fields of
1567c478bd9Sstevel@tonic-gate  *       the zone_t (see <sys/zone.h> for details).  In addition, holding
1577c478bd9Sstevel@tonic-gate  *       this lock means that the zone cannot go away.
1580209230bSgjelinek  *   zone_nlwps_lock: This is a per-zone lock used to protect the fields
1590209230bSgjelinek  *	 related to the zone.max-lwps rctl.
1600209230bSgjelinek  *   zone_mem_lock: This is a per-zone lock used to protect the fields
1610209230bSgjelinek  *	 related to the zone.max-locked-memory and zone.max-swap rctls.
162*0fbb751dSJohn Levon  *   zone_rctl_lock: This is a per-zone lock used to protect other rctls,
163*0fbb751dSJohn Levon  *       currently just max_lofi
1647c478bd9Sstevel@tonic-gate  *   zsd_key_lock: This is a global lock protecting the key state for ZSD.
1657c478bd9Sstevel@tonic-gate  *   zone_deathrow_lock: This is a global lock protecting the "deathrow"
1667c478bd9Sstevel@tonic-gate  *       list (a list of zones in the ZONE_IS_DEAD state).
1677c478bd9Sstevel@tonic-gate  *
1687c478bd9Sstevel@tonic-gate  *   Ordering requirements:
1697c478bd9Sstevel@tonic-gate  *       pool_lock --> cpu_lock --> zonehash_lock --> zone_status_lock -->
1707c478bd9Sstevel@tonic-gate  *       	zone_lock --> zsd_key_lock --> pidlock --> p_lock
1717c478bd9Sstevel@tonic-gate  *
1720209230bSgjelinek  *   When taking zone_mem_lock or zone_nlwps_lock, the lock ordering is:
1730209230bSgjelinek  *	zonehash_lock --> a_lock --> pidlock --> p_lock --> zone_mem_lock
1740209230bSgjelinek  *	zonehash_lock --> a_lock --> pidlock --> p_lock --> zone_mem_lock
1750209230bSgjelinek  *
1767c478bd9Sstevel@tonic-gate  *   Blocking memory allocations are permitted while holding any of the
1777c478bd9Sstevel@tonic-gate  *   zone locks.
1787c478bd9Sstevel@tonic-gate  *
1797c478bd9Sstevel@tonic-gate  *
1807c478bd9Sstevel@tonic-gate  *   System Call Interface:
1817c478bd9Sstevel@tonic-gate  *
1827c478bd9Sstevel@tonic-gate  *   The zone subsystem can be managed and queried from user level with
1837c478bd9Sstevel@tonic-gate  *   the following system calls (all subcodes of the primary "zone"
1847c478bd9Sstevel@tonic-gate  *   system call):
1857c478bd9Sstevel@tonic-gate  *   - zone_create: creates a zone with selected attributes (name,
186fa9e4066Sahrens  *     root path, privileges, resource controls, ZFS datasets)
1877c478bd9Sstevel@tonic-gate  *   - zone_enter: allows the current process to enter a zone
1887c478bd9Sstevel@tonic-gate  *   - zone_getattr: reports attributes of a zone
1893f2f09c1Sdp  *   - zone_setattr: set attributes of a zone
1903f2f09c1Sdp  *   - zone_boot: set 'init' running for the zone
1917c478bd9Sstevel@tonic-gate  *   - zone_list: lists all zones active in the system
1927c478bd9Sstevel@tonic-gate  *   - zone_lookup: looks up zone id based on name
1937c478bd9Sstevel@tonic-gate  *   - zone_shutdown: initiates shutdown process (see states above)
1947c478bd9Sstevel@tonic-gate  *   - zone_destroy: completes shutdown process (see states above)
1957c478bd9Sstevel@tonic-gate  *
1967c478bd9Sstevel@tonic-gate  */
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate #include <sys/priv_impl.h>
1997c478bd9Sstevel@tonic-gate #include <sys/cred.h>
2007c478bd9Sstevel@tonic-gate #include <c2/audit.h>
2017c478bd9Sstevel@tonic-gate #include <sys/debug.h>
2027c478bd9Sstevel@tonic-gate #include <sys/file.h>
2037c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
2040209230bSgjelinek #include <sys/kstat.h>
2057c478bd9Sstevel@tonic-gate #include <sys/mutex.h>
20645916cd2Sjpk #include <sys/note.h>
2077c478bd9Sstevel@tonic-gate #include <sys/pathname.h>
2087c478bd9Sstevel@tonic-gate #include <sys/proc.h>
2097c478bd9Sstevel@tonic-gate #include <sys/project.h>
210cf8f45c7Sdstaff #include <sys/sysevent.h>
2117c478bd9Sstevel@tonic-gate #include <sys/task.h>
2127c478bd9Sstevel@tonic-gate #include <sys/systm.h>
2137c478bd9Sstevel@tonic-gate #include <sys/types.h>
2147c478bd9Sstevel@tonic-gate #include <sys/utsname.h>
2157c478bd9Sstevel@tonic-gate #include <sys/vnode.h>
2167c478bd9Sstevel@tonic-gate #include <sys/vfs.h>
2177c478bd9Sstevel@tonic-gate #include <sys/systeminfo.h>
2187c478bd9Sstevel@tonic-gate #include <sys/policy.h>
2197c478bd9Sstevel@tonic-gate #include <sys/cred_impl.h>
2207c478bd9Sstevel@tonic-gate #include <sys/contract_impl.h>
2217c478bd9Sstevel@tonic-gate #include <sys/contract/process_impl.h>
2227c478bd9Sstevel@tonic-gate #include <sys/class.h>
2237c478bd9Sstevel@tonic-gate #include <sys/pool.h>
2247c478bd9Sstevel@tonic-gate #include <sys/pool_pset.h>
2257c478bd9Sstevel@tonic-gate #include <sys/pset.h>
2267c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
2277c478bd9Sstevel@tonic-gate #include <sys/callb.h>
2287c478bd9Sstevel@tonic-gate #include <sys/vmparam.h>
2297c478bd9Sstevel@tonic-gate #include <sys/corectl.h>
230824c205fSml93401 #include <sys/ipc_impl.h>
231134a1f4eSCasper H.S. Dik #include <sys/klpd.h>
2327c478bd9Sstevel@tonic-gate 
2337c478bd9Sstevel@tonic-gate #include <sys/door.h>
2347c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
235bd41d0a8Snordmark #include <sys/sdt.h>
2367c478bd9Sstevel@tonic-gate 
2377c478bd9Sstevel@tonic-gate #include <sys/uadmin.h>
2387c478bd9Sstevel@tonic-gate #include <sys/session.h>
2397c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
2407c478bd9Sstevel@tonic-gate #include <sys/modhash.h>
2413f2f09c1Sdp #include <sys/sunddi.h>
2427c478bd9Sstevel@tonic-gate #include <sys/nvpair.h>
2437c478bd9Sstevel@tonic-gate #include <sys/rctl.h>
2447c478bd9Sstevel@tonic-gate #include <sys/fss.h>
2459acbbeafSnn35248 #include <sys/brand.h>
2467c478bd9Sstevel@tonic-gate #include <sys/zone.h>
247f4b3ec61Sdh155122 #include <net/if.h>
248c97ad5cdSakolb #include <sys/cpucaps.h>
2490209230bSgjelinek #include <vm/seg.h>
2502b24ab6bSSebastien Roy #include <sys/mac.h>
2512b24ab6bSSebastien Roy 
2522b24ab6bSSebastien Roy /* List of data link IDs which are accessible from the zone */
2532b24ab6bSSebastien Roy typedef struct zone_dl {
2542b24ab6bSSebastien Roy 	datalink_id_t	zdl_id;
2552b24ab6bSSebastien Roy 	list_node_t	zdl_linkage;
2562b24ab6bSSebastien Roy } zone_dl_t;
2570209230bSgjelinek 
2587c478bd9Sstevel@tonic-gate /*
2597c478bd9Sstevel@tonic-gate  * cv used to signal that all references to the zone have been released.  This
2607c478bd9Sstevel@tonic-gate  * needs to be global since there may be multiple waiters, and the first to
2617c478bd9Sstevel@tonic-gate  * wake up will free the zone_t, hence we cannot use zone->zone_cv.
2627c478bd9Sstevel@tonic-gate  */
2637c478bd9Sstevel@tonic-gate static kcondvar_t zone_destroy_cv;
2647c478bd9Sstevel@tonic-gate /*
2657c478bd9Sstevel@tonic-gate  * Lock used to serialize access to zone_cv.  This could have been per-zone,
2667c478bd9Sstevel@tonic-gate  * but then we'd need another lock for zone_destroy_cv, and why bother?
2677c478bd9Sstevel@tonic-gate  */
2687c478bd9Sstevel@tonic-gate static kmutex_t zone_status_lock;
2697c478bd9Sstevel@tonic-gate 
2707c478bd9Sstevel@tonic-gate /*
2717c478bd9Sstevel@tonic-gate  * ZSD-related global variables.
2727c478bd9Sstevel@tonic-gate  */
2737c478bd9Sstevel@tonic-gate static kmutex_t zsd_key_lock;	/* protects the following two */
2747c478bd9Sstevel@tonic-gate /*
2757c478bd9Sstevel@tonic-gate  * The next caller of zone_key_create() will be assigned a key of ++zsd_keyval.
2767c478bd9Sstevel@tonic-gate  */
2777c478bd9Sstevel@tonic-gate static zone_key_t zsd_keyval = 0;
2787c478bd9Sstevel@tonic-gate /*
2797c478bd9Sstevel@tonic-gate  * Global list of registered keys.  We use this when a new zone is created.
2807c478bd9Sstevel@tonic-gate  */
2817c478bd9Sstevel@tonic-gate static list_t zsd_registered_keys;
2827c478bd9Sstevel@tonic-gate 
2837c478bd9Sstevel@tonic-gate int zone_hash_size = 256;
28445916cd2Sjpk static mod_hash_t *zonehashbyname, *zonehashbyid, *zonehashbylabel;
2857c478bd9Sstevel@tonic-gate static kmutex_t zonehash_lock;
2867c478bd9Sstevel@tonic-gate static uint_t zonecount;
2877c478bd9Sstevel@tonic-gate static id_space_t *zoneid_space;
2887c478bd9Sstevel@tonic-gate 
2897c478bd9Sstevel@tonic-gate /*
2907c478bd9Sstevel@tonic-gate  * The global zone (aka zone0) is the all-seeing, all-knowing zone in which the
2917c478bd9Sstevel@tonic-gate  * kernel proper runs, and which manages all other zones.
2927c478bd9Sstevel@tonic-gate  *
2937c478bd9Sstevel@tonic-gate  * Although not declared as static, the variable "zone0" should not be used
2947c478bd9Sstevel@tonic-gate  * except for by code that needs to reference the global zone early on in boot,
2957c478bd9Sstevel@tonic-gate  * before it is fully initialized.  All other consumers should use
2967c478bd9Sstevel@tonic-gate  * 'global_zone'.
2977c478bd9Sstevel@tonic-gate  */
2987c478bd9Sstevel@tonic-gate zone_t zone0;
2997c478bd9Sstevel@tonic-gate zone_t *global_zone = NULL;	/* Set when the global zone is initialized */
3007c478bd9Sstevel@tonic-gate 
3017c478bd9Sstevel@tonic-gate /*
3027c478bd9Sstevel@tonic-gate  * List of active zones, protected by zonehash_lock.
3037c478bd9Sstevel@tonic-gate  */
3047c478bd9Sstevel@tonic-gate static list_t zone_active;
3057c478bd9Sstevel@tonic-gate 
3067c478bd9Sstevel@tonic-gate /*
3077c478bd9Sstevel@tonic-gate  * List of destroyed zones that still have outstanding cred references.
3087c478bd9Sstevel@tonic-gate  * Used for debugging.  Uses a separate lock to avoid lock ordering
3097c478bd9Sstevel@tonic-gate  * problems in zone_free.
3107c478bd9Sstevel@tonic-gate  */
3117c478bd9Sstevel@tonic-gate static list_t zone_deathrow;
3127c478bd9Sstevel@tonic-gate static kmutex_t zone_deathrow_lock;
3137c478bd9Sstevel@tonic-gate 
3147c478bd9Sstevel@tonic-gate /* number of zones is limited by virtual interface limit in IP */
3157c478bd9Sstevel@tonic-gate uint_t maxzones = 8192;
3167c478bd9Sstevel@tonic-gate 
317cf8f45c7Sdstaff /* Event channel to sent zone state change notifications */
318cf8f45c7Sdstaff evchan_t *zone_event_chan;
319cf8f45c7Sdstaff 
320cf8f45c7Sdstaff /*
321cf8f45c7Sdstaff  * This table holds the mapping from kernel zone states to
322cf8f45c7Sdstaff  * states visible in the state notification API.
323cf8f45c7Sdstaff  * The idea is that we only expose "obvious" states and
324cf8f45c7Sdstaff  * do not expose states which are just implementation details.
325cf8f45c7Sdstaff  */
326cf8f45c7Sdstaff const char  *zone_status_table[] = {
327cf8f45c7Sdstaff 	ZONE_EVENT_UNINITIALIZED,	/* uninitialized */
328bd41d0a8Snordmark 	ZONE_EVENT_INITIALIZED,		/* initialized */
329cf8f45c7Sdstaff 	ZONE_EVENT_READY,		/* ready */
330cf8f45c7Sdstaff 	ZONE_EVENT_READY,		/* booting */
331cf8f45c7Sdstaff 	ZONE_EVENT_RUNNING,		/* running */
332cf8f45c7Sdstaff 	ZONE_EVENT_SHUTTING_DOWN,	/* shutting_down */
333cf8f45c7Sdstaff 	ZONE_EVENT_SHUTTING_DOWN,	/* empty */
334cf8f45c7Sdstaff 	ZONE_EVENT_SHUTTING_DOWN,	/* down */
335cf8f45c7Sdstaff 	ZONE_EVENT_SHUTTING_DOWN,	/* dying */
336cf8f45c7Sdstaff 	ZONE_EVENT_UNINITIALIZED,	/* dead */
337cf8f45c7Sdstaff };
338cf8f45c7Sdstaff 
3397c478bd9Sstevel@tonic-gate /*
3407c478bd9Sstevel@tonic-gate  * This isn't static so lint doesn't complain.
3417c478bd9Sstevel@tonic-gate  */
3427c478bd9Sstevel@tonic-gate rctl_hndl_t rc_zone_cpu_shares;
343c6939658Ssl108498 rctl_hndl_t rc_zone_locked_mem;
3440209230bSgjelinek rctl_hndl_t rc_zone_max_swap;
345*0fbb751dSJohn Levon rctl_hndl_t rc_zone_max_lofi;
346c97ad5cdSakolb rctl_hndl_t rc_zone_cpu_cap;
3477c478bd9Sstevel@tonic-gate rctl_hndl_t rc_zone_nlwps;
348824c205fSml93401 rctl_hndl_t rc_zone_shmmax;
349824c205fSml93401 rctl_hndl_t rc_zone_shmmni;
350824c205fSml93401 rctl_hndl_t rc_zone_semmni;
351824c205fSml93401 rctl_hndl_t rc_zone_msgmni;
3527c478bd9Sstevel@tonic-gate /*
3537c478bd9Sstevel@tonic-gate  * Synchronization primitives used to synchronize between mounts and zone
3547c478bd9Sstevel@tonic-gate  * creation/destruction.
3557c478bd9Sstevel@tonic-gate  */
3567c478bd9Sstevel@tonic-gate static int mounts_in_progress;
3577c478bd9Sstevel@tonic-gate static kcondvar_t mount_cv;
3587c478bd9Sstevel@tonic-gate static kmutex_t mount_lock;
3597c478bd9Sstevel@tonic-gate 
3603f2f09c1Sdp const char * const zone_default_initname = "/sbin/init";
36145916cd2Sjpk static char * const zone_prefix = "/zone/";
3627c478bd9Sstevel@tonic-gate static int zone_shutdown(zoneid_t zoneid);
3632b24ab6bSSebastien Roy static int zone_add_datalink(zoneid_t, datalink_id_t);
3642b24ab6bSSebastien Roy static int zone_remove_datalink(zoneid_t, datalink_id_t);
3652b24ab6bSSebastien Roy static int zone_list_datalink(zoneid_t, int *, datalink_id_t *);
3667c478bd9Sstevel@tonic-gate 
367bd41d0a8Snordmark typedef boolean_t zsd_applyfn_t(kmutex_t *, boolean_t, zone_t *, zone_key_t);
368bd41d0a8Snordmark 
369bd41d0a8Snordmark static void zsd_apply_all_zones(zsd_applyfn_t *, zone_key_t);
370bd41d0a8Snordmark static void zsd_apply_all_keys(zsd_applyfn_t *, zone_t *);
371bd41d0a8Snordmark static boolean_t zsd_apply_create(kmutex_t *, boolean_t, zone_t *, zone_key_t);
372bd41d0a8Snordmark static boolean_t zsd_apply_shutdown(kmutex_t *, boolean_t, zone_t *,
373bd41d0a8Snordmark     zone_key_t);
374bd41d0a8Snordmark static boolean_t zsd_apply_destroy(kmutex_t *, boolean_t, zone_t *, zone_key_t);
375bd41d0a8Snordmark static boolean_t zsd_wait_for_creator(zone_t *, struct zsd_entry *,
376bd41d0a8Snordmark     kmutex_t *);
377bd41d0a8Snordmark static boolean_t zsd_wait_for_inprogress(zone_t *, struct zsd_entry *,
378bd41d0a8Snordmark     kmutex_t *);
379bd41d0a8Snordmark 
3807c478bd9Sstevel@tonic-gate /*
381821c4a97Sdp  * Bump this number when you alter the zone syscall interfaces; this is
382821c4a97Sdp  * because we need to have support for previous API versions in libc
383821c4a97Sdp  * to support patching; libc calls into the kernel to determine this number.
384821c4a97Sdp  *
385821c4a97Sdp  * Version 1 of the API is the version originally shipped with Solaris 10
386821c4a97Sdp  * Version 2 alters the zone_create system call in order to support more
387821c4a97Sdp  *     arguments by moving the args into a structure; and to do better
388821c4a97Sdp  *     error reporting when zone_create() fails.
389821c4a97Sdp  * Version 3 alters the zone_create system call in order to support the
390821c4a97Sdp  *     import of ZFS datasets to zones.
39145916cd2Sjpk  * Version 4 alters the zone_create system call in order to support
39245916cd2Sjpk  *     Trusted Extensions.
3933f2f09c1Sdp  * Version 5 alters the zone_boot system call, and converts its old
3943f2f09c1Sdp  *     bootargs parameter to be set by the zone_setattr API instead.
395f4b3ec61Sdh155122  * Version 6 adds the flag argument to zone_create.
396821c4a97Sdp  */
397f4b3ec61Sdh155122 static const int ZONE_SYSCALL_API_VERSION = 6;
398821c4a97Sdp 
399821c4a97Sdp /*
4007c478bd9Sstevel@tonic-gate  * Certain filesystems (such as NFS and autofs) need to know which zone
4017c478bd9Sstevel@tonic-gate  * the mount is being placed in.  Because of this, we need to be able to
4027c478bd9Sstevel@tonic-gate  * ensure that a zone isn't in the process of being created such that
4037c478bd9Sstevel@tonic-gate  * nfs_mount() thinks it is in the global zone, while by the time it
4047c478bd9Sstevel@tonic-gate  * gets added the list of mounted zones, it ends up on zoneA's mount
4057c478bd9Sstevel@tonic-gate  * list.
4067c478bd9Sstevel@tonic-gate  *
4077c478bd9Sstevel@tonic-gate  * The following functions: block_mounts()/resume_mounts() and
4087c478bd9Sstevel@tonic-gate  * mount_in_progress()/mount_completed() are used by zones and the VFS
4097c478bd9Sstevel@tonic-gate  * layer (respectively) to synchronize zone creation and new mounts.
4107c478bd9Sstevel@tonic-gate  *
4117c478bd9Sstevel@tonic-gate  * The semantics are like a reader-reader lock such that there may
4127c478bd9Sstevel@tonic-gate  * either be multiple mounts (or zone creations, if that weren't
4137c478bd9Sstevel@tonic-gate  * serialized by zonehash_lock) in progress at the same time, but not
4147c478bd9Sstevel@tonic-gate  * both.
4157c478bd9Sstevel@tonic-gate  *
4167c478bd9Sstevel@tonic-gate  * We use cv's so the user can ctrl-C out of the operation if it's
4177c478bd9Sstevel@tonic-gate  * taking too long.
4187c478bd9Sstevel@tonic-gate  *
4197c478bd9Sstevel@tonic-gate  * The semantics are such that there is unfair bias towards the
4207c478bd9Sstevel@tonic-gate  * "current" operation.  This means that zone creations may starve if
4217c478bd9Sstevel@tonic-gate  * there is a rapid succession of new mounts coming in to the system, or
4227c478bd9Sstevel@tonic-gate  * there is a remote possibility that zones will be created at such a
4237c478bd9Sstevel@tonic-gate  * rate that new mounts will not be able to proceed.
4247c478bd9Sstevel@tonic-gate  */
4257c478bd9Sstevel@tonic-gate /*
4267c478bd9Sstevel@tonic-gate  * Prevent new mounts from progressing to the point of calling
4277c478bd9Sstevel@tonic-gate  * VFS_MOUNT().  If there are already mounts in this "region", wait for
4287c478bd9Sstevel@tonic-gate  * them to complete.
4297c478bd9Sstevel@tonic-gate  */
4307c478bd9Sstevel@tonic-gate static int
4317c478bd9Sstevel@tonic-gate block_mounts(void)
4327c478bd9Sstevel@tonic-gate {
4337c478bd9Sstevel@tonic-gate 	int retval = 0;
4347c478bd9Sstevel@tonic-gate 
4357c478bd9Sstevel@tonic-gate 	/*
4367c478bd9Sstevel@tonic-gate 	 * Since it may block for a long time, block_mounts() shouldn't be
4377c478bd9Sstevel@tonic-gate 	 * called with zonehash_lock held.
4387c478bd9Sstevel@tonic-gate 	 */
4397c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_NOT_HELD(&zonehash_lock));
4407c478bd9Sstevel@tonic-gate 	mutex_enter(&mount_lock);
4417c478bd9Sstevel@tonic-gate 	while (mounts_in_progress > 0) {
4427c478bd9Sstevel@tonic-gate 		if (cv_wait_sig(&mount_cv, &mount_lock) == 0)
4437c478bd9Sstevel@tonic-gate 			goto signaled;
4447c478bd9Sstevel@tonic-gate 	}
4457c478bd9Sstevel@tonic-gate 	/*
4467c478bd9Sstevel@tonic-gate 	 * A negative value of mounts_in_progress indicates that mounts
4477c478bd9Sstevel@tonic-gate 	 * have been blocked by (-mounts_in_progress) different callers.
4487c478bd9Sstevel@tonic-gate 	 */
4497c478bd9Sstevel@tonic-gate 	mounts_in_progress--;
4507c478bd9Sstevel@tonic-gate 	retval = 1;
4517c478bd9Sstevel@tonic-gate signaled:
4527c478bd9Sstevel@tonic-gate 	mutex_exit(&mount_lock);
4537c478bd9Sstevel@tonic-gate 	return (retval);
4547c478bd9Sstevel@tonic-gate }
4557c478bd9Sstevel@tonic-gate 
4567c478bd9Sstevel@tonic-gate /*
4577c478bd9Sstevel@tonic-gate  * The VFS layer may progress with new mounts as far as we're concerned.
4587c478bd9Sstevel@tonic-gate  * Allow them to progress if we were the last obstacle.
4597c478bd9Sstevel@tonic-gate  */
4607c478bd9Sstevel@tonic-gate static void
4617c478bd9Sstevel@tonic-gate resume_mounts(void)
4627c478bd9Sstevel@tonic-gate {
4637c478bd9Sstevel@tonic-gate 	mutex_enter(&mount_lock);
4647c478bd9Sstevel@tonic-gate 	if (++mounts_in_progress == 0)
4657c478bd9Sstevel@tonic-gate 		cv_broadcast(&mount_cv);
4667c478bd9Sstevel@tonic-gate 	mutex_exit(&mount_lock);
4677c478bd9Sstevel@tonic-gate }
4687c478bd9Sstevel@tonic-gate 
4697c478bd9Sstevel@tonic-gate /*
4707c478bd9Sstevel@tonic-gate  * The VFS layer is busy with a mount; zones should wait until all
4717c478bd9Sstevel@tonic-gate  * mounts are completed to progress.
4727c478bd9Sstevel@tonic-gate  */
4737c478bd9Sstevel@tonic-gate void
4747c478bd9Sstevel@tonic-gate mount_in_progress(void)
4757c478bd9Sstevel@tonic-gate {
4767c478bd9Sstevel@tonic-gate 	mutex_enter(&mount_lock);
4777c478bd9Sstevel@tonic-gate 	while (mounts_in_progress < 0)
4787c478bd9Sstevel@tonic-gate 		cv_wait(&mount_cv, &mount_lock);
4797c478bd9Sstevel@tonic-gate 	mounts_in_progress++;
4807c478bd9Sstevel@tonic-gate 	mutex_exit(&mount_lock);
4817c478bd9Sstevel@tonic-gate }
4827c478bd9Sstevel@tonic-gate 
4837c478bd9Sstevel@tonic-gate /*
4847c478bd9Sstevel@tonic-gate  * VFS is done with one mount; wake up any waiting block_mounts()
4857c478bd9Sstevel@tonic-gate  * callers if this is the last mount.
4867c478bd9Sstevel@tonic-gate  */
4877c478bd9Sstevel@tonic-gate void
4887c478bd9Sstevel@tonic-gate mount_completed(void)
4897c478bd9Sstevel@tonic-gate {
4907c478bd9Sstevel@tonic-gate 	mutex_enter(&mount_lock);
4917c478bd9Sstevel@tonic-gate 	if (--mounts_in_progress == 0)
4927c478bd9Sstevel@tonic-gate 		cv_broadcast(&mount_cv);
4937c478bd9Sstevel@tonic-gate 	mutex_exit(&mount_lock);
4947c478bd9Sstevel@tonic-gate }
4957c478bd9Sstevel@tonic-gate 
4967c478bd9Sstevel@tonic-gate /*
4977c478bd9Sstevel@tonic-gate  * ZSD routines.
4987c478bd9Sstevel@tonic-gate  *
4997c478bd9Sstevel@tonic-gate  * Zone Specific Data (ZSD) is modeled after Thread Specific Data as
5007c478bd9Sstevel@tonic-gate  * defined by the pthread_key_create() and related interfaces.
5017c478bd9Sstevel@tonic-gate  *
5027c478bd9Sstevel@tonic-gate  * Kernel subsystems may register one or more data items and/or
5037c478bd9Sstevel@tonic-gate  * callbacks to be executed when a zone is created, shutdown, or
5047c478bd9Sstevel@tonic-gate  * destroyed.
5057c478bd9Sstevel@tonic-gate  *
5067c478bd9Sstevel@tonic-gate  * Unlike the thread counterpart, destructor callbacks will be executed
5077c478bd9Sstevel@tonic-gate  * even if the data pointer is NULL and/or there are no constructor
5087c478bd9Sstevel@tonic-gate  * callbacks, so it is the responsibility of such callbacks to check for
5097c478bd9Sstevel@tonic-gate  * NULL data values if necessary.
5107c478bd9Sstevel@tonic-gate  *
5117c478bd9Sstevel@tonic-gate  * The locking strategy and overall picture is as follows:
5127c478bd9Sstevel@tonic-gate  *
5137c478bd9Sstevel@tonic-gate  * When someone calls zone_key_create(), a template ZSD entry is added to the
514bd41d0a8Snordmark  * global list "zsd_registered_keys", protected by zsd_key_lock.  While
515bd41d0a8Snordmark  * holding that lock all the existing zones are marked as
516bd41d0a8Snordmark  * ZSD_CREATE_NEEDED and a copy of the ZSD entry added to the per-zone
517bd41d0a8Snordmark  * zone_zsd list (protected by zone_lock). The global list is updated first
518bd41d0a8Snordmark  * (under zone_key_lock) to make sure that newly created zones use the
519bd41d0a8Snordmark  * most recent list of keys. Then under zonehash_lock we walk the zones
520bd41d0a8Snordmark  * and mark them.  Similar locking is used in zone_key_delete().
5217c478bd9Sstevel@tonic-gate  *
522bd41d0a8Snordmark  * The actual create, shutdown, and destroy callbacks are done without
523bd41d0a8Snordmark  * holding any lock. And zsd_flags are used to ensure that the operations
524bd41d0a8Snordmark  * completed so that when zone_key_create (and zone_create) is done, as well as
525bd41d0a8Snordmark  * zone_key_delete (and zone_destroy) is done, all the necessary callbacks
526bd41d0a8Snordmark  * are completed.
5277c478bd9Sstevel@tonic-gate  *
5287c478bd9Sstevel@tonic-gate  * When new zones are created constructor callbacks for all registered ZSD
529bd41d0a8Snordmark  * entries will be called. That also uses the above two phases of marking
530bd41d0a8Snordmark  * what needs to be done, and then running the callbacks without holding
531bd41d0a8Snordmark  * any locks.
5327c478bd9Sstevel@tonic-gate  *
5337c478bd9Sstevel@tonic-gate  * The framework does not provide any locking around zone_getspecific() and
5347c478bd9Sstevel@tonic-gate  * zone_setspecific() apart from that needed for internal consistency, so
5357c478bd9Sstevel@tonic-gate  * callers interested in atomic "test-and-set" semantics will need to provide
5367c478bd9Sstevel@tonic-gate  * their own locking.
5377c478bd9Sstevel@tonic-gate  */
5387c478bd9Sstevel@tonic-gate 
5397c478bd9Sstevel@tonic-gate /*
5407c478bd9Sstevel@tonic-gate  * Helper function to find the zsd_entry associated with the key in the
5417c478bd9Sstevel@tonic-gate  * given list.
5427c478bd9Sstevel@tonic-gate  */
5437c478bd9Sstevel@tonic-gate static struct zsd_entry *
5447c478bd9Sstevel@tonic-gate zsd_find(list_t *l, zone_key_t key)
5457c478bd9Sstevel@tonic-gate {
5467c478bd9Sstevel@tonic-gate 	struct zsd_entry *zsd;
5477c478bd9Sstevel@tonic-gate 
5487c478bd9Sstevel@tonic-gate 	for (zsd = list_head(l); zsd != NULL; zsd = list_next(l, zsd)) {
5497c478bd9Sstevel@tonic-gate 		if (zsd->zsd_key == key) {
550bd41d0a8Snordmark 			return (zsd);
551bd41d0a8Snordmark 		}
552bd41d0a8Snordmark 	}
553bd41d0a8Snordmark 	return (NULL);
554bd41d0a8Snordmark }
555bd41d0a8Snordmark 
556bd41d0a8Snordmark /*
557bd41d0a8Snordmark  * Helper function to find the zsd_entry associated with the key in the
558bd41d0a8Snordmark  * given list. Move it to the front of the list.
559bd41d0a8Snordmark  */
560bd41d0a8Snordmark static struct zsd_entry *
561bd41d0a8Snordmark zsd_find_mru(list_t *l, zone_key_t key)
562bd41d0a8Snordmark {
563bd41d0a8Snordmark 	struct zsd_entry *zsd;
564bd41d0a8Snordmark 
565bd41d0a8Snordmark 	for (zsd = list_head(l); zsd != NULL; zsd = list_next(l, zsd)) {
566bd41d0a8Snordmark 		if (zsd->zsd_key == key) {
5677c478bd9Sstevel@tonic-gate 			/*
5687c478bd9Sstevel@tonic-gate 			 * Move to head of list to keep list in MRU order.
5697c478bd9Sstevel@tonic-gate 			 */
5707c478bd9Sstevel@tonic-gate 			if (zsd != list_head(l)) {
5717c478bd9Sstevel@tonic-gate 				list_remove(l, zsd);
5727c478bd9Sstevel@tonic-gate 				list_insert_head(l, zsd);
5737c478bd9Sstevel@tonic-gate 			}
5747c478bd9Sstevel@tonic-gate 			return (zsd);
5757c478bd9Sstevel@tonic-gate 		}
5767c478bd9Sstevel@tonic-gate 	}
5777c478bd9Sstevel@tonic-gate 	return (NULL);
5787c478bd9Sstevel@tonic-gate }
5797c478bd9Sstevel@tonic-gate 
580bd41d0a8Snordmark void
581bd41d0a8Snordmark zone_key_create(zone_key_t *keyp, void *(*create)(zoneid_t),
582bd41d0a8Snordmark     void (*shutdown)(zoneid_t, void *), void (*destroy)(zoneid_t, void *))
583bd41d0a8Snordmark {
584bd41d0a8Snordmark 	struct zsd_entry *zsdp;
585bd41d0a8Snordmark 	struct zsd_entry *t;
586bd41d0a8Snordmark 	struct zone *zone;
587bd41d0a8Snordmark 	zone_key_t  key;
588bd41d0a8Snordmark 
589bd41d0a8Snordmark 	zsdp = kmem_zalloc(sizeof (*zsdp), KM_SLEEP);
590bd41d0a8Snordmark 	zsdp->zsd_data = NULL;
591bd41d0a8Snordmark 	zsdp->zsd_create = create;
592bd41d0a8Snordmark 	zsdp->zsd_shutdown = shutdown;
593bd41d0a8Snordmark 	zsdp->zsd_destroy = destroy;
594bd41d0a8Snordmark 
595bd41d0a8Snordmark 	/*
596bd41d0a8Snordmark 	 * Insert in global list of callbacks. Makes future zone creations
597bd41d0a8Snordmark 	 * see it.
598bd41d0a8Snordmark 	 */
599bd41d0a8Snordmark 	mutex_enter(&zsd_key_lock);
600fe16170aSPramod Batni 	key = zsdp->zsd_key = ++zsd_keyval;
601bd41d0a8Snordmark 	ASSERT(zsd_keyval != 0);
602bd41d0a8Snordmark 	list_insert_tail(&zsd_registered_keys, zsdp);
603bd41d0a8Snordmark 	mutex_exit(&zsd_key_lock);
604bd41d0a8Snordmark 
605bd41d0a8Snordmark 	/*
606bd41d0a8Snordmark 	 * Insert for all existing zones and mark them as needing
607bd41d0a8Snordmark 	 * a create callback.
608bd41d0a8Snordmark 	 */
609bd41d0a8Snordmark 	mutex_enter(&zonehash_lock);	/* stop the world */
610bd41d0a8Snordmark 	for (zone = list_head(&zone_active); zone != NULL;
611bd41d0a8Snordmark 	    zone = list_next(&zone_active, zone)) {
612bd41d0a8Snordmark 		zone_status_t status;
613bd41d0a8Snordmark 
614bd41d0a8Snordmark 		mutex_enter(&zone->zone_lock);
615bd41d0a8Snordmark 
616bd41d0a8Snordmark 		/* Skip zones that are on the way down or not yet up */
617bd41d0a8Snordmark 		status = zone_status_get(zone);
618bd41d0a8Snordmark 		if (status >= ZONE_IS_DOWN ||
619bd41d0a8Snordmark 		    status == ZONE_IS_UNINITIALIZED) {
620bd41d0a8Snordmark 			mutex_exit(&zone->zone_lock);
621bd41d0a8Snordmark 			continue;
622bd41d0a8Snordmark 		}
623bd41d0a8Snordmark 
624bd41d0a8Snordmark 		t = zsd_find_mru(&zone->zone_zsd, key);
625bd41d0a8Snordmark 		if (t != NULL) {
626bd41d0a8Snordmark 			/*
627bd41d0a8Snordmark 			 * A zsd_configure already inserted it after
628bd41d0a8Snordmark 			 * we dropped zsd_key_lock above.
629bd41d0a8Snordmark 			 */
630bd41d0a8Snordmark 			mutex_exit(&zone->zone_lock);
631bd41d0a8Snordmark 			continue;
632bd41d0a8Snordmark 		}
633bd41d0a8Snordmark 		t = kmem_zalloc(sizeof (*t), KM_SLEEP);
634bd41d0a8Snordmark 		t->zsd_key = key;
635bd41d0a8Snordmark 		t->zsd_create = create;
636bd41d0a8Snordmark 		t->zsd_shutdown = shutdown;
637bd41d0a8Snordmark 		t->zsd_destroy = destroy;
638bd41d0a8Snordmark 		if (create != NULL) {
639bd41d0a8Snordmark 			t->zsd_flags = ZSD_CREATE_NEEDED;
640bd41d0a8Snordmark 			DTRACE_PROBE2(zsd__create__needed,
641bd41d0a8Snordmark 			    zone_t *, zone, zone_key_t, key);
642bd41d0a8Snordmark 		}
643bd41d0a8Snordmark 		list_insert_tail(&zone->zone_zsd, t);
644bd41d0a8Snordmark 		mutex_exit(&zone->zone_lock);
645bd41d0a8Snordmark 	}
646bd41d0a8Snordmark 	mutex_exit(&zonehash_lock);
647bd41d0a8Snordmark 
648bd41d0a8Snordmark 	if (create != NULL) {
649bd41d0a8Snordmark 		/* Now call the create callback for this key */
650bd41d0a8Snordmark 		zsd_apply_all_zones(zsd_apply_create, key);
651bd41d0a8Snordmark 	}
652fe16170aSPramod Batni 	/*
653fe16170aSPramod Batni 	 * It is safe for consumers to use the key now, make it
654fe16170aSPramod Batni 	 * globally visible. Specifically zone_getspecific() will
655fe16170aSPramod Batni 	 * always successfully return the zone specific data associated
656fe16170aSPramod Batni 	 * with the key.
657fe16170aSPramod Batni 	 */
658fe16170aSPramod Batni 	*keyp = key;
659fe16170aSPramod Batni 
660bd41d0a8Snordmark }
661bd41d0a8Snordmark 
6627c478bd9Sstevel@tonic-gate /*
6637c478bd9Sstevel@tonic-gate  * Function called when a module is being unloaded, or otherwise wishes
6647c478bd9Sstevel@tonic-gate  * to unregister its ZSD key and callbacks.
665bd41d0a8Snordmark  *
666bd41d0a8Snordmark  * Remove from the global list and determine the functions that need to
667bd41d0a8Snordmark  * be called under a global lock. Then call the functions without
668bd41d0a8Snordmark  * holding any locks. Finally free up the zone_zsd entries. (The apply
669bd41d0a8Snordmark  * functions need to access the zone_zsd entries to find zsd_data etc.)
6707c478bd9Sstevel@tonic-gate  */
6717c478bd9Sstevel@tonic-gate int
6727c478bd9Sstevel@tonic-gate zone_key_delete(zone_key_t key)
6737c478bd9Sstevel@tonic-gate {
6747c478bd9Sstevel@tonic-gate 	struct zsd_entry *zsdp = NULL;
6757c478bd9Sstevel@tonic-gate 	zone_t *zone;
6767c478bd9Sstevel@tonic-gate 
6777c478bd9Sstevel@tonic-gate 	mutex_enter(&zsd_key_lock);
678bd41d0a8Snordmark 	zsdp = zsd_find_mru(&zsd_registered_keys, key);
679bd41d0a8Snordmark 	if (zsdp == NULL) {
680bd41d0a8Snordmark 		mutex_exit(&zsd_key_lock);
681bd41d0a8Snordmark 		return (-1);
682bd41d0a8Snordmark 	}
6837c478bd9Sstevel@tonic-gate 	list_remove(&zsd_registered_keys, zsdp);
6847c478bd9Sstevel@tonic-gate 	mutex_exit(&zsd_key_lock);
6857c478bd9Sstevel@tonic-gate 
686bd41d0a8Snordmark 	mutex_enter(&zonehash_lock);
6877c478bd9Sstevel@tonic-gate 	for (zone = list_head(&zone_active); zone != NULL;
6887c478bd9Sstevel@tonic-gate 	    zone = list_next(&zone_active, zone)) {
6897c478bd9Sstevel@tonic-gate 		struct zsd_entry *del;
6907c478bd9Sstevel@tonic-gate 
691bd41d0a8Snordmark 		mutex_enter(&zone->zone_lock);
692bd41d0a8Snordmark 		del = zsd_find_mru(&zone->zone_zsd, key);
693bd41d0a8Snordmark 		if (del == NULL) {
694bd41d0a8Snordmark 			/*
695bd41d0a8Snordmark 			 * Somebody else got here first e.g the zone going
696bd41d0a8Snordmark 			 * away.
697bd41d0a8Snordmark 			 */
698bd41d0a8Snordmark 			mutex_exit(&zone->zone_lock);
699bd41d0a8Snordmark 			continue;
700bd41d0a8Snordmark 		}
7017c478bd9Sstevel@tonic-gate 		ASSERT(del->zsd_shutdown == zsdp->zsd_shutdown);
7027c478bd9Sstevel@tonic-gate 		ASSERT(del->zsd_destroy == zsdp->zsd_destroy);
703bd41d0a8Snordmark 		if (del->zsd_shutdown != NULL &&
704bd41d0a8Snordmark 		    (del->zsd_flags & ZSD_SHUTDOWN_ALL) == 0) {
705bd41d0a8Snordmark 			del->zsd_flags |= ZSD_SHUTDOWN_NEEDED;
706bd41d0a8Snordmark 			DTRACE_PROBE2(zsd__shutdown__needed,
707bd41d0a8Snordmark 			    zone_t *, zone, zone_key_t, key);
7087c478bd9Sstevel@tonic-gate 		}
709bd41d0a8Snordmark 		if (del->zsd_destroy != NULL &&
710bd41d0a8Snordmark 		    (del->zsd_flags & ZSD_DESTROY_ALL) == 0) {
711bd41d0a8Snordmark 			del->zsd_flags |= ZSD_DESTROY_NEEDED;
712bd41d0a8Snordmark 			DTRACE_PROBE2(zsd__destroy__needed,
713bd41d0a8Snordmark 			    zone_t *, zone, zone_key_t, key);
7147c478bd9Sstevel@tonic-gate 		}
7157c478bd9Sstevel@tonic-gate 		mutex_exit(&zone->zone_lock);
7167c478bd9Sstevel@tonic-gate 	}
7177c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
7187c478bd9Sstevel@tonic-gate 	kmem_free(zsdp, sizeof (*zsdp));
7197c478bd9Sstevel@tonic-gate 
720bd41d0a8Snordmark 	/* Now call the shutdown and destroy callback for this key */
721bd41d0a8Snordmark 	zsd_apply_all_zones(zsd_apply_shutdown, key);
722bd41d0a8Snordmark 	zsd_apply_all_zones(zsd_apply_destroy, key);
723bd41d0a8Snordmark 
724bd41d0a8Snordmark 	/* Now we can free up the zsdp structures in each zone */
725bd41d0a8Snordmark 	mutex_enter(&zonehash_lock);
7267c478bd9Sstevel@tonic-gate 	for (zone = list_head(&zone_active); zone != NULL;
727bd41d0a8Snordmark 	    zone = list_next(&zone_active, zone)) {
728bd41d0a8Snordmark 		struct zsd_entry *del;
729bd41d0a8Snordmark 
730bd41d0a8Snordmark 		mutex_enter(&zone->zone_lock);
731bd41d0a8Snordmark 		del = zsd_find(&zone->zone_zsd, key);
732bd41d0a8Snordmark 		if (del != NULL) {
733bd41d0a8Snordmark 			list_remove(&zone->zone_zsd, del);
734bd41d0a8Snordmark 			ASSERT(!(del->zsd_flags & ZSD_ALL_INPROGRESS));
735bd41d0a8Snordmark 			kmem_free(del, sizeof (*del));
736bd41d0a8Snordmark 		}
7377c478bd9Sstevel@tonic-gate 		mutex_exit(&zone->zone_lock);
738bd41d0a8Snordmark 	}
7397c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
740bd41d0a8Snordmark 
741bd41d0a8Snordmark 	return (0);
7427c478bd9Sstevel@tonic-gate }
7437c478bd9Sstevel@tonic-gate 
7447c478bd9Sstevel@tonic-gate /*
7457c478bd9Sstevel@tonic-gate  * ZSD counterpart of pthread_setspecific().
746bd41d0a8Snordmark  *
747bd41d0a8Snordmark  * Since all zsd callbacks, including those with no create function,
748bd41d0a8Snordmark  * have an entry in zone_zsd, if the key is registered it is part of
749bd41d0a8Snordmark  * the zone_zsd list.
750bd41d0a8Snordmark  * Return an error if the key wasn't registerd.
7517c478bd9Sstevel@tonic-gate  */
7527c478bd9Sstevel@tonic-gate int
7537c478bd9Sstevel@tonic-gate zone_setspecific(zone_key_t key, zone_t *zone, const void *data)
7547c478bd9Sstevel@tonic-gate {
7557c478bd9Sstevel@tonic-gate 	struct zsd_entry *t;
7567c478bd9Sstevel@tonic-gate 
7577c478bd9Sstevel@tonic-gate 	mutex_enter(&zone->zone_lock);
758bd41d0a8Snordmark 	t = zsd_find_mru(&zone->zone_zsd, key);
7597c478bd9Sstevel@tonic-gate 	if (t != NULL) {
7607c478bd9Sstevel@tonic-gate 		/*
7617c478bd9Sstevel@tonic-gate 		 * Replace old value with new
7627c478bd9Sstevel@tonic-gate 		 */
7637c478bd9Sstevel@tonic-gate 		t->zsd_data = (void *)data;
7647c478bd9Sstevel@tonic-gate 		mutex_exit(&zone->zone_lock);
7657c478bd9Sstevel@tonic-gate 		return (0);
7667c478bd9Sstevel@tonic-gate 	}
7677c478bd9Sstevel@tonic-gate 	mutex_exit(&zone->zone_lock);
7687c478bd9Sstevel@tonic-gate 	return (-1);
7697c478bd9Sstevel@tonic-gate }
7707c478bd9Sstevel@tonic-gate 
7717c478bd9Sstevel@tonic-gate /*
7727c478bd9Sstevel@tonic-gate  * ZSD counterpart of pthread_getspecific().
7737c478bd9Sstevel@tonic-gate  */
7747c478bd9Sstevel@tonic-gate void *
7757c478bd9Sstevel@tonic-gate zone_getspecific(zone_key_t key, zone_t *zone)
7767c478bd9Sstevel@tonic-gate {
7777c478bd9Sstevel@tonic-gate 	struct zsd_entry *t;
7787c478bd9Sstevel@tonic-gate 	void *data;
7797c478bd9Sstevel@tonic-gate 
7807c478bd9Sstevel@tonic-gate 	mutex_enter(&zone->zone_lock);
781bd41d0a8Snordmark 	t = zsd_find_mru(&zone->zone_zsd, key);
7827c478bd9Sstevel@tonic-gate 	data = (t == NULL ? NULL : t->zsd_data);
7837c478bd9Sstevel@tonic-gate 	mutex_exit(&zone->zone_lock);
7847c478bd9Sstevel@tonic-gate 	return (data);
7857c478bd9Sstevel@tonic-gate }
7867c478bd9Sstevel@tonic-gate 
7877c478bd9Sstevel@tonic-gate /*
7887c478bd9Sstevel@tonic-gate  * Function used to initialize a zone's list of ZSD callbacks and data
7897c478bd9Sstevel@tonic-gate  * when the zone is being created.  The callbacks are initialized from
790bd41d0a8Snordmark  * the template list (zsd_registered_keys). The constructor callback is
791bd41d0a8Snordmark  * executed later (once the zone exists and with locks dropped).
7927c478bd9Sstevel@tonic-gate  */
7937c478bd9Sstevel@tonic-gate static void
7947c478bd9Sstevel@tonic-gate zone_zsd_configure(zone_t *zone)
7957c478bd9Sstevel@tonic-gate {
7967c478bd9Sstevel@tonic-gate 	struct zsd_entry *zsdp;
7977c478bd9Sstevel@tonic-gate 	struct zsd_entry *t;
7987c478bd9Sstevel@tonic-gate 
7997c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&zonehash_lock));
8007c478bd9Sstevel@tonic-gate 	ASSERT(list_head(&zone->zone_zsd) == NULL);
801bd41d0a8Snordmark 	mutex_enter(&zone->zone_lock);
8027c478bd9Sstevel@tonic-gate 	mutex_enter(&zsd_key_lock);
8037c478bd9Sstevel@tonic-gate 	for (zsdp = list_head(&zsd_registered_keys); zsdp != NULL;
8047c478bd9Sstevel@tonic-gate 	    zsdp = list_next(&zsd_registered_keys, zsdp)) {
805bd41d0a8Snordmark 		/*
806bd41d0a8Snordmark 		 * Since this zone is ZONE_IS_UNCONFIGURED, zone_key_create
807bd41d0a8Snordmark 		 * should not have added anything to it.
808bd41d0a8Snordmark 		 */
809bd41d0a8Snordmark 		ASSERT(zsd_find(&zone->zone_zsd, zsdp->zsd_key) == NULL);
810bd41d0a8Snordmark 
811bd41d0a8Snordmark 		t = kmem_zalloc(sizeof (*t), KM_SLEEP);
8127c478bd9Sstevel@tonic-gate 		t->zsd_key = zsdp->zsd_key;
8137c478bd9Sstevel@tonic-gate 		t->zsd_create = zsdp->zsd_create;
8147c478bd9Sstevel@tonic-gate 		t->zsd_shutdown = zsdp->zsd_shutdown;
8157c478bd9Sstevel@tonic-gate 		t->zsd_destroy = zsdp->zsd_destroy;
816bd41d0a8Snordmark 		if (zsdp->zsd_create != NULL) {
817bd41d0a8Snordmark 			t->zsd_flags = ZSD_CREATE_NEEDED;
818bd41d0a8Snordmark 			DTRACE_PROBE2(zsd__create__needed,
819bd41d0a8Snordmark 			    zone_t *, zone, zone_key_t, zsdp->zsd_key);
820bd41d0a8Snordmark 		}
8217c478bd9Sstevel@tonic-gate 		list_insert_tail(&zone->zone_zsd, t);
8227c478bd9Sstevel@tonic-gate 	}
8237c478bd9Sstevel@tonic-gate 	mutex_exit(&zsd_key_lock);
824bd41d0a8Snordmark 	mutex_exit(&zone->zone_lock);
8257c478bd9Sstevel@tonic-gate }
8267c478bd9Sstevel@tonic-gate 
8277c478bd9Sstevel@tonic-gate enum zsd_callback_type { ZSD_CREATE, ZSD_SHUTDOWN, ZSD_DESTROY };
8287c478bd9Sstevel@tonic-gate 
8297c478bd9Sstevel@tonic-gate /*
8307c478bd9Sstevel@tonic-gate  * Helper function to execute shutdown or destructor callbacks.
8317c478bd9Sstevel@tonic-gate  */
8327c478bd9Sstevel@tonic-gate static void
8337c478bd9Sstevel@tonic-gate zone_zsd_callbacks(zone_t *zone, enum zsd_callback_type ct)
8347c478bd9Sstevel@tonic-gate {
8357c478bd9Sstevel@tonic-gate 	struct zsd_entry *t;
8367c478bd9Sstevel@tonic-gate 
8377c478bd9Sstevel@tonic-gate 	ASSERT(ct == ZSD_SHUTDOWN || ct == ZSD_DESTROY);
8387c478bd9Sstevel@tonic-gate 	ASSERT(ct != ZSD_SHUTDOWN || zone_status_get(zone) >= ZONE_IS_EMPTY);
8397c478bd9Sstevel@tonic-gate 	ASSERT(ct != ZSD_DESTROY || zone_status_get(zone) >= ZONE_IS_DOWN);
8407c478bd9Sstevel@tonic-gate 
841bd41d0a8Snordmark 	/*
842bd41d0a8Snordmark 	 * Run the callback solely based on what is registered for the zone
843bd41d0a8Snordmark 	 * in zone_zsd. The global list can change independently of this
844bd41d0a8Snordmark 	 * as keys are registered and unregistered and we don't register new
845bd41d0a8Snordmark 	 * callbacks for a zone that is in the process of going away.
846bd41d0a8Snordmark 	 */
8477c478bd9Sstevel@tonic-gate 	mutex_enter(&zone->zone_lock);
848bd41d0a8Snordmark 	for (t = list_head(&zone->zone_zsd); t != NULL;
849bd41d0a8Snordmark 	    t = list_next(&zone->zone_zsd, t)) {
850bd41d0a8Snordmark 		zone_key_t key = t->zsd_key;
8517c478bd9Sstevel@tonic-gate 
8527c478bd9Sstevel@tonic-gate 		/* Skip if no callbacks registered */
853bd41d0a8Snordmark 
8547c478bd9Sstevel@tonic-gate 		if (ct == ZSD_SHUTDOWN) {
855bd41d0a8Snordmark 			if (t->zsd_shutdown != NULL &&
856bd41d0a8Snordmark 			    (t->zsd_flags & ZSD_SHUTDOWN_ALL) == 0) {
857bd41d0a8Snordmark 				t->zsd_flags |= ZSD_SHUTDOWN_NEEDED;
858bd41d0a8Snordmark 				DTRACE_PROBE2(zsd__shutdown__needed,
859bd41d0a8Snordmark 				    zone_t *, zone, zone_key_t, key);
8607c478bd9Sstevel@tonic-gate 			}
8617c478bd9Sstevel@tonic-gate 		} else {
862bd41d0a8Snordmark 			if (t->zsd_destroy != NULL &&
863bd41d0a8Snordmark 			    (t->zsd_flags & ZSD_DESTROY_ALL) == 0) {
864bd41d0a8Snordmark 				t->zsd_flags |= ZSD_DESTROY_NEEDED;
865bd41d0a8Snordmark 				DTRACE_PROBE2(zsd__destroy__needed,
866bd41d0a8Snordmark 				    zone_t *, zone, zone_key_t, key);
8677c478bd9Sstevel@tonic-gate 			}
8687c478bd9Sstevel@tonic-gate 		}
8697c478bd9Sstevel@tonic-gate 	}
870bd41d0a8Snordmark 	mutex_exit(&zone->zone_lock);
871bd41d0a8Snordmark 
872bd41d0a8Snordmark 	/* Now call the shutdown and destroy callback for this key */
873bd41d0a8Snordmark 	zsd_apply_all_keys(zsd_apply_shutdown, zone);
874bd41d0a8Snordmark 	zsd_apply_all_keys(zsd_apply_destroy, zone);
875bd41d0a8Snordmark 
8767c478bd9Sstevel@tonic-gate }
8777c478bd9Sstevel@tonic-gate 
8787c478bd9Sstevel@tonic-gate /*
8797c478bd9Sstevel@tonic-gate  * Called when the zone is going away; free ZSD-related memory, and
8807c478bd9Sstevel@tonic-gate  * destroy the zone_zsd list.
8817c478bd9Sstevel@tonic-gate  */
8827c478bd9Sstevel@tonic-gate static void
8837c478bd9Sstevel@tonic-gate zone_free_zsd(zone_t *zone)
8847c478bd9Sstevel@tonic-gate {
8857c478bd9Sstevel@tonic-gate 	struct zsd_entry *t, *next;
8867c478bd9Sstevel@tonic-gate 
8877c478bd9Sstevel@tonic-gate 	/*
8887c478bd9Sstevel@tonic-gate 	 * Free all the zsd_entry's we had on this zone.
8897c478bd9Sstevel@tonic-gate 	 */
890bd41d0a8Snordmark 	mutex_enter(&zone->zone_lock);
8917c478bd9Sstevel@tonic-gate 	for (t = list_head(&zone->zone_zsd); t != NULL; t = next) {
8927c478bd9Sstevel@tonic-gate 		next = list_next(&zone->zone_zsd, t);
8937c478bd9Sstevel@tonic-gate 		list_remove(&zone->zone_zsd, t);
894bd41d0a8Snordmark 		ASSERT(!(t->zsd_flags & ZSD_ALL_INPROGRESS));
8957c478bd9Sstevel@tonic-gate 		kmem_free(t, sizeof (*t));
8967c478bd9Sstevel@tonic-gate 	}
8977c478bd9Sstevel@tonic-gate 	list_destroy(&zone->zone_zsd);
898bd41d0a8Snordmark 	mutex_exit(&zone->zone_lock);
899bd41d0a8Snordmark 
900bd41d0a8Snordmark }
901bd41d0a8Snordmark 
902bd41d0a8Snordmark /*
903bd41d0a8Snordmark  * Apply a function to all zones for particular key value.
904bd41d0a8Snordmark  *
905bd41d0a8Snordmark  * The applyfn has to drop zonehash_lock if it does some work, and
906bd41d0a8Snordmark  * then reacquire it before it returns.
907bd41d0a8Snordmark  * When the lock is dropped we don't follow list_next even
908bd41d0a8Snordmark  * if it is possible to do so without any hazards. This is
909bd41d0a8Snordmark  * because we want the design to allow for the list of zones
910bd41d0a8Snordmark  * to change in any arbitrary way during the time the
911bd41d0a8Snordmark  * lock was dropped.
912bd41d0a8Snordmark  *
913bd41d0a8Snordmark  * It is safe to restart the loop at list_head since the applyfn
914bd41d0a8Snordmark  * changes the zsd_flags as it does work, so a subsequent
915bd41d0a8Snordmark  * pass through will have no effect in applyfn, hence the loop will terminate
916bd41d0a8Snordmark  * in at worst O(N^2).
917bd41d0a8Snordmark  */
918bd41d0a8Snordmark static void
919bd41d0a8Snordmark zsd_apply_all_zones(zsd_applyfn_t *applyfn, zone_key_t key)
920bd41d0a8Snordmark {
921bd41d0a8Snordmark 	zone_t *zone;
922bd41d0a8Snordmark 
923bd41d0a8Snordmark 	mutex_enter(&zonehash_lock);
924bd41d0a8Snordmark 	zone = list_head(&zone_active);
925bd41d0a8Snordmark 	while (zone != NULL) {
926bd41d0a8Snordmark 		if ((applyfn)(&zonehash_lock, B_FALSE, zone, key)) {
927bd41d0a8Snordmark 			/* Lock dropped - restart at head */
928bd41d0a8Snordmark 			zone = list_head(&zone_active);
929bd41d0a8Snordmark 		} else {
930bd41d0a8Snordmark 			zone = list_next(&zone_active, zone);
931bd41d0a8Snordmark 		}
932bd41d0a8Snordmark 	}
933bd41d0a8Snordmark 	mutex_exit(&zonehash_lock);
934bd41d0a8Snordmark }
935bd41d0a8Snordmark 
936bd41d0a8Snordmark /*
937bd41d0a8Snordmark  * Apply a function to all keys for a particular zone.
938bd41d0a8Snordmark  *
939bd41d0a8Snordmark  * The applyfn has to drop zonehash_lock if it does some work, and
940bd41d0a8Snordmark  * then reacquire it before it returns.
941bd41d0a8Snordmark  * When the lock is dropped we don't follow list_next even
942bd41d0a8Snordmark  * if it is possible to do so without any hazards. This is
943bd41d0a8Snordmark  * because we want the design to allow for the list of zsd callbacks
944bd41d0a8Snordmark  * to change in any arbitrary way during the time the
945bd41d0a8Snordmark  * lock was dropped.
946bd41d0a8Snordmark  *
947bd41d0a8Snordmark  * It is safe to restart the loop at list_head since the applyfn
948bd41d0a8Snordmark  * changes the zsd_flags as it does work, so a subsequent
949bd41d0a8Snordmark  * pass through will have no effect in applyfn, hence the loop will terminate
950bd41d0a8Snordmark  * in at worst O(N^2).
951bd41d0a8Snordmark  */
952bd41d0a8Snordmark static void
953bd41d0a8Snordmark zsd_apply_all_keys(zsd_applyfn_t *applyfn, zone_t *zone)
954bd41d0a8Snordmark {
955bd41d0a8Snordmark 	struct zsd_entry *t;
956bd41d0a8Snordmark 
957bd41d0a8Snordmark 	mutex_enter(&zone->zone_lock);
958bd41d0a8Snordmark 	t = list_head(&zone->zone_zsd);
959bd41d0a8Snordmark 	while (t != NULL) {
960bd41d0a8Snordmark 		if ((applyfn)(NULL, B_TRUE, zone, t->zsd_key)) {
961bd41d0a8Snordmark 			/* Lock dropped - restart at head */
962bd41d0a8Snordmark 			t = list_head(&zone->zone_zsd);
963bd41d0a8Snordmark 		} else {
964bd41d0a8Snordmark 			t = list_next(&zone->zone_zsd, t);
965bd41d0a8Snordmark 		}
966bd41d0a8Snordmark 	}
967bd41d0a8Snordmark 	mutex_exit(&zone->zone_lock);
968bd41d0a8Snordmark }
969bd41d0a8Snordmark 
970bd41d0a8Snordmark /*
971bd41d0a8Snordmark  * Call the create function for the zone and key if CREATE_NEEDED
972bd41d0a8Snordmark  * is set.
973bd41d0a8Snordmark  * If some other thread gets here first and sets CREATE_INPROGRESS, then
974bd41d0a8Snordmark  * we wait for that thread to complete so that we can ensure that
975bd41d0a8Snordmark  * all the callbacks are done when we've looped over all zones/keys.
976bd41d0a8Snordmark  *
977bd41d0a8Snordmark  * When we call the create function, we drop the global held by the
978bd41d0a8Snordmark  * caller, and return true to tell the caller it needs to re-evalute the
979bd41d0a8Snordmark  * state.
980bd41d0a8Snordmark  * If the caller holds zone_lock then zone_lock_held is set, and zone_lock
981bd41d0a8Snordmark  * remains held on exit.
982bd41d0a8Snordmark  */
983bd41d0a8Snordmark static boolean_t
984bd41d0a8Snordmark zsd_apply_create(kmutex_t *lockp, boolean_t zone_lock_held,
985bd41d0a8Snordmark     zone_t *zone, zone_key_t key)
986bd41d0a8Snordmark {
987bd41d0a8Snordmark 	void *result;
988bd41d0a8Snordmark 	struct zsd_entry *t;
989bd41d0a8Snordmark 	boolean_t dropped;
990bd41d0a8Snordmark 
991bd41d0a8Snordmark 	if (lockp != NULL) {
992bd41d0a8Snordmark 		ASSERT(MUTEX_HELD(lockp));
993bd41d0a8Snordmark 	}
994bd41d0a8Snordmark 	if (zone_lock_held) {
995bd41d0a8Snordmark 		ASSERT(MUTEX_HELD(&zone->zone_lock));
996bd41d0a8Snordmark 	} else {
997bd41d0a8Snordmark 		mutex_enter(&zone->zone_lock);
998bd41d0a8Snordmark 	}
999bd41d0a8Snordmark 
1000bd41d0a8Snordmark 	t = zsd_find(&zone->zone_zsd, key);
1001bd41d0a8Snordmark 	if (t == NULL) {
1002bd41d0a8Snordmark 		/*
1003bd41d0a8Snordmark 		 * Somebody else got here first e.g the zone going
1004bd41d0a8Snordmark 		 * away.
1005bd41d0a8Snordmark 		 */
1006bd41d0a8Snordmark 		if (!zone_lock_held)
1007bd41d0a8Snordmark 			mutex_exit(&zone->zone_lock);
1008bd41d0a8Snordmark 		return (B_FALSE);
1009bd41d0a8Snordmark 	}
1010bd41d0a8Snordmark 	dropped = B_FALSE;
1011bd41d0a8Snordmark 	if (zsd_wait_for_inprogress(zone, t, lockp))
1012bd41d0a8Snordmark 		dropped = B_TRUE;
1013bd41d0a8Snordmark 
1014bd41d0a8Snordmark 	if (t->zsd_flags & ZSD_CREATE_NEEDED) {
1015bd41d0a8Snordmark 		t->zsd_flags &= ~ZSD_CREATE_NEEDED;
1016bd41d0a8Snordmark 		t->zsd_flags |= ZSD_CREATE_INPROGRESS;
1017bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__create__inprogress,
1018bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1019bd41d0a8Snordmark 		mutex_exit(&zone->zone_lock);
1020bd41d0a8Snordmark 		if (lockp != NULL)
1021bd41d0a8Snordmark 			mutex_exit(lockp);
1022bd41d0a8Snordmark 
1023bd41d0a8Snordmark 		dropped = B_TRUE;
1024bd41d0a8Snordmark 		ASSERT(t->zsd_create != NULL);
1025bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__create__start,
1026bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1027bd41d0a8Snordmark 
1028bd41d0a8Snordmark 		result = (*t->zsd_create)(zone->zone_id);
1029bd41d0a8Snordmark 
1030bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__create__end,
1031bd41d0a8Snordmark 		    zone_t *, zone, voidn *, result);
1032bd41d0a8Snordmark 
1033bd41d0a8Snordmark 		ASSERT(result != NULL);
1034bd41d0a8Snordmark 		if (lockp != NULL)
1035bd41d0a8Snordmark 			mutex_enter(lockp);
1036bd41d0a8Snordmark 		mutex_enter(&zone->zone_lock);
1037bd41d0a8Snordmark 		t->zsd_data = result;
1038bd41d0a8Snordmark 		t->zsd_flags &= ~ZSD_CREATE_INPROGRESS;
1039bd41d0a8Snordmark 		t->zsd_flags |= ZSD_CREATE_COMPLETED;
1040bd41d0a8Snordmark 		cv_broadcast(&t->zsd_cv);
1041bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__create__completed,
1042bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1043bd41d0a8Snordmark 	}
1044bd41d0a8Snordmark 	if (!zone_lock_held)
1045bd41d0a8Snordmark 		mutex_exit(&zone->zone_lock);
1046bd41d0a8Snordmark 	return (dropped);
1047bd41d0a8Snordmark }
1048bd41d0a8Snordmark 
1049bd41d0a8Snordmark /*
1050bd41d0a8Snordmark  * Call the shutdown function for the zone and key if SHUTDOWN_NEEDED
1051bd41d0a8Snordmark  * is set.
1052bd41d0a8Snordmark  * If some other thread gets here first and sets *_INPROGRESS, then
1053bd41d0a8Snordmark  * we wait for that thread to complete so that we can ensure that
1054bd41d0a8Snordmark  * all the callbacks are done when we've looped over all zones/keys.
1055bd41d0a8Snordmark  *
1056bd41d0a8Snordmark  * When we call the shutdown function, we drop the global held by the
1057bd41d0a8Snordmark  * caller, and return true to tell the caller it needs to re-evalute the
1058bd41d0a8Snordmark  * state.
1059bd41d0a8Snordmark  * If the caller holds zone_lock then zone_lock_held is set, and zone_lock
1060bd41d0a8Snordmark  * remains held on exit.
1061bd41d0a8Snordmark  */
1062bd41d0a8Snordmark static boolean_t
1063bd41d0a8Snordmark zsd_apply_shutdown(kmutex_t *lockp, boolean_t zone_lock_held,
1064bd41d0a8Snordmark     zone_t *zone, zone_key_t key)
1065bd41d0a8Snordmark {
1066bd41d0a8Snordmark 	struct zsd_entry *t;
1067bd41d0a8Snordmark 	void *data;
1068bd41d0a8Snordmark 	boolean_t dropped;
1069bd41d0a8Snordmark 
1070bd41d0a8Snordmark 	if (lockp != NULL) {
1071bd41d0a8Snordmark 		ASSERT(MUTEX_HELD(lockp));
1072bd41d0a8Snordmark 	}
1073bd41d0a8Snordmark 	if (zone_lock_held) {
1074bd41d0a8Snordmark 		ASSERT(MUTEX_HELD(&zone->zone_lock));
1075bd41d0a8Snordmark 	} else {
1076bd41d0a8Snordmark 		mutex_enter(&zone->zone_lock);
1077bd41d0a8Snordmark 	}
1078bd41d0a8Snordmark 
1079bd41d0a8Snordmark 	t = zsd_find(&zone->zone_zsd, key);
1080bd41d0a8Snordmark 	if (t == NULL) {
1081bd41d0a8Snordmark 		/*
1082bd41d0a8Snordmark 		 * Somebody else got here first e.g the zone going
1083bd41d0a8Snordmark 		 * away.
1084bd41d0a8Snordmark 		 */
1085bd41d0a8Snordmark 		if (!zone_lock_held)
1086bd41d0a8Snordmark 			mutex_exit(&zone->zone_lock);
1087bd41d0a8Snordmark 		return (B_FALSE);
1088bd41d0a8Snordmark 	}
1089bd41d0a8Snordmark 	dropped = B_FALSE;
1090bd41d0a8Snordmark 	if (zsd_wait_for_creator(zone, t, lockp))
1091bd41d0a8Snordmark 		dropped = B_TRUE;
1092bd41d0a8Snordmark 
1093bd41d0a8Snordmark 	if (zsd_wait_for_inprogress(zone, t, lockp))
1094bd41d0a8Snordmark 		dropped = B_TRUE;
1095bd41d0a8Snordmark 
1096bd41d0a8Snordmark 	if (t->zsd_flags & ZSD_SHUTDOWN_NEEDED) {
1097bd41d0a8Snordmark 		t->zsd_flags &= ~ZSD_SHUTDOWN_NEEDED;
1098bd41d0a8Snordmark 		t->zsd_flags |= ZSD_SHUTDOWN_INPROGRESS;
1099bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__shutdown__inprogress,
1100bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1101bd41d0a8Snordmark 		mutex_exit(&zone->zone_lock);
1102bd41d0a8Snordmark 		if (lockp != NULL)
1103bd41d0a8Snordmark 			mutex_exit(lockp);
1104bd41d0a8Snordmark 		dropped = B_TRUE;
1105bd41d0a8Snordmark 
1106bd41d0a8Snordmark 		ASSERT(t->zsd_shutdown != NULL);
1107bd41d0a8Snordmark 		data = t->zsd_data;
1108bd41d0a8Snordmark 
1109bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__shutdown__start,
1110bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1111bd41d0a8Snordmark 
1112bd41d0a8Snordmark 		(t->zsd_shutdown)(zone->zone_id, data);
1113bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__shutdown__end,
1114bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1115bd41d0a8Snordmark 
1116bd41d0a8Snordmark 		if (lockp != NULL)
1117bd41d0a8Snordmark 			mutex_enter(lockp);
1118bd41d0a8Snordmark 		mutex_enter(&zone->zone_lock);
1119bd41d0a8Snordmark 		t->zsd_flags &= ~ZSD_SHUTDOWN_INPROGRESS;
1120bd41d0a8Snordmark 		t->zsd_flags |= ZSD_SHUTDOWN_COMPLETED;
1121bd41d0a8Snordmark 		cv_broadcast(&t->zsd_cv);
1122bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__shutdown__completed,
1123bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1124bd41d0a8Snordmark 	}
1125bd41d0a8Snordmark 	if (!zone_lock_held)
1126bd41d0a8Snordmark 		mutex_exit(&zone->zone_lock);
1127bd41d0a8Snordmark 	return (dropped);
1128bd41d0a8Snordmark }
1129bd41d0a8Snordmark 
1130bd41d0a8Snordmark /*
1131bd41d0a8Snordmark  * Call the destroy function for the zone and key if DESTROY_NEEDED
1132bd41d0a8Snordmark  * is set.
1133bd41d0a8Snordmark  * If some other thread gets here first and sets *_INPROGRESS, then
1134bd41d0a8Snordmark  * we wait for that thread to complete so that we can ensure that
1135bd41d0a8Snordmark  * all the callbacks are done when we've looped over all zones/keys.
1136bd41d0a8Snordmark  *
1137bd41d0a8Snordmark  * When we call the destroy function, we drop the global held by the
1138bd41d0a8Snordmark  * caller, and return true to tell the caller it needs to re-evalute the
1139bd41d0a8Snordmark  * state.
1140bd41d0a8Snordmark  * If the caller holds zone_lock then zone_lock_held is set, and zone_lock
1141bd41d0a8Snordmark  * remains held on exit.
1142bd41d0a8Snordmark  */
1143bd41d0a8Snordmark static boolean_t
1144bd41d0a8Snordmark zsd_apply_destroy(kmutex_t *lockp, boolean_t zone_lock_held,
1145bd41d0a8Snordmark     zone_t *zone, zone_key_t key)
1146bd41d0a8Snordmark {
1147bd41d0a8Snordmark 	struct zsd_entry *t;
1148bd41d0a8Snordmark 	void *data;
1149bd41d0a8Snordmark 	boolean_t dropped;
1150bd41d0a8Snordmark 
1151bd41d0a8Snordmark 	if (lockp != NULL) {
1152bd41d0a8Snordmark 		ASSERT(MUTEX_HELD(lockp));
1153bd41d0a8Snordmark 	}
1154bd41d0a8Snordmark 	if (zone_lock_held) {
1155bd41d0a8Snordmark 		ASSERT(MUTEX_HELD(&zone->zone_lock));
1156bd41d0a8Snordmark 	} else {
1157bd41d0a8Snordmark 		mutex_enter(&zone->zone_lock);
1158bd41d0a8Snordmark 	}
1159bd41d0a8Snordmark 
1160bd41d0a8Snordmark 	t = zsd_find(&zone->zone_zsd, key);
1161bd41d0a8Snordmark 	if (t == NULL) {
1162bd41d0a8Snordmark 		/*
1163bd41d0a8Snordmark 		 * Somebody else got here first e.g the zone going
1164bd41d0a8Snordmark 		 * away.
1165bd41d0a8Snordmark 		 */
1166bd41d0a8Snordmark 		if (!zone_lock_held)
1167bd41d0a8Snordmark 			mutex_exit(&zone->zone_lock);
1168bd41d0a8Snordmark 		return (B_FALSE);
1169bd41d0a8Snordmark 	}
1170bd41d0a8Snordmark 	dropped = B_FALSE;
1171bd41d0a8Snordmark 	if (zsd_wait_for_creator(zone, t, lockp))
1172bd41d0a8Snordmark 		dropped = B_TRUE;
1173bd41d0a8Snordmark 
1174bd41d0a8Snordmark 	if (zsd_wait_for_inprogress(zone, t, lockp))
1175bd41d0a8Snordmark 		dropped = B_TRUE;
1176bd41d0a8Snordmark 
1177bd41d0a8Snordmark 	if (t->zsd_flags & ZSD_DESTROY_NEEDED) {
1178bd41d0a8Snordmark 		t->zsd_flags &= ~ZSD_DESTROY_NEEDED;
1179bd41d0a8Snordmark 		t->zsd_flags |= ZSD_DESTROY_INPROGRESS;
1180bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__destroy__inprogress,
1181bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1182bd41d0a8Snordmark 		mutex_exit(&zone->zone_lock);
1183bd41d0a8Snordmark 		if (lockp != NULL)
1184bd41d0a8Snordmark 			mutex_exit(lockp);
1185bd41d0a8Snordmark 		dropped = B_TRUE;
1186bd41d0a8Snordmark 
1187bd41d0a8Snordmark 		ASSERT(t->zsd_destroy != NULL);
1188bd41d0a8Snordmark 		data = t->zsd_data;
1189bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__destroy__start,
1190bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1191bd41d0a8Snordmark 
1192bd41d0a8Snordmark 		(t->zsd_destroy)(zone->zone_id, data);
1193bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__destroy__end,
1194bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1195bd41d0a8Snordmark 
1196bd41d0a8Snordmark 		if (lockp != NULL)
1197bd41d0a8Snordmark 			mutex_enter(lockp);
1198bd41d0a8Snordmark 		mutex_enter(&zone->zone_lock);
1199bd41d0a8Snordmark 		t->zsd_data = NULL;
1200bd41d0a8Snordmark 		t->zsd_flags &= ~ZSD_DESTROY_INPROGRESS;
1201bd41d0a8Snordmark 		t->zsd_flags |= ZSD_DESTROY_COMPLETED;
1202bd41d0a8Snordmark 		cv_broadcast(&t->zsd_cv);
1203bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__destroy__completed,
1204bd41d0a8Snordmark 		    zone_t *, zone, zone_key_t, key);
1205bd41d0a8Snordmark 	}
1206bd41d0a8Snordmark 	if (!zone_lock_held)
1207bd41d0a8Snordmark 		mutex_exit(&zone->zone_lock);
1208bd41d0a8Snordmark 	return (dropped);
1209bd41d0a8Snordmark }
1210bd41d0a8Snordmark 
1211bd41d0a8Snordmark /*
1212bd41d0a8Snordmark  * Wait for any CREATE_NEEDED flag to be cleared.
1213bd41d0a8Snordmark  * Returns true if lockp was temporarily dropped while waiting.
1214bd41d0a8Snordmark  */
1215bd41d0a8Snordmark static boolean_t
1216bd41d0a8Snordmark zsd_wait_for_creator(zone_t *zone, struct zsd_entry *t, kmutex_t *lockp)
1217bd41d0a8Snordmark {
1218bd41d0a8Snordmark 	boolean_t dropped = B_FALSE;
1219bd41d0a8Snordmark 
1220bd41d0a8Snordmark 	while (t->zsd_flags & ZSD_CREATE_NEEDED) {
1221bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__wait__for__creator,
1222bd41d0a8Snordmark 		    zone_t *, zone, struct zsd_entry *, t);
1223bd41d0a8Snordmark 		if (lockp != NULL) {
1224bd41d0a8Snordmark 			dropped = B_TRUE;
1225bd41d0a8Snordmark 			mutex_exit(lockp);
1226bd41d0a8Snordmark 		}
1227bd41d0a8Snordmark 		cv_wait(&t->zsd_cv, &zone->zone_lock);
1228bd41d0a8Snordmark 		if (lockp != NULL) {
1229bd41d0a8Snordmark 			/* First drop zone_lock to preserve order */
1230bd41d0a8Snordmark 			mutex_exit(&zone->zone_lock);
1231bd41d0a8Snordmark 			mutex_enter(lockp);
1232bd41d0a8Snordmark 			mutex_enter(&zone->zone_lock);
1233bd41d0a8Snordmark 		}
1234bd41d0a8Snordmark 	}
1235bd41d0a8Snordmark 	return (dropped);
1236bd41d0a8Snordmark }
1237bd41d0a8Snordmark 
1238bd41d0a8Snordmark /*
1239bd41d0a8Snordmark  * Wait for any INPROGRESS flag to be cleared.
1240bd41d0a8Snordmark  * Returns true if lockp was temporarily dropped while waiting.
1241bd41d0a8Snordmark  */
1242bd41d0a8Snordmark static boolean_t
1243bd41d0a8Snordmark zsd_wait_for_inprogress(zone_t *zone, struct zsd_entry *t, kmutex_t *lockp)
1244bd41d0a8Snordmark {
1245bd41d0a8Snordmark 	boolean_t dropped = B_FALSE;
1246bd41d0a8Snordmark 
1247bd41d0a8Snordmark 	while (t->zsd_flags & ZSD_ALL_INPROGRESS) {
1248bd41d0a8Snordmark 		DTRACE_PROBE2(zsd__wait__for__inprogress,
1249bd41d0a8Snordmark 		    zone_t *, zone, struct zsd_entry *, t);
1250bd41d0a8Snordmark 		if (lockp != NULL) {
1251bd41d0a8Snordmark 			dropped = B_TRUE;
1252bd41d0a8Snordmark 			mutex_exit(lockp);
1253bd41d0a8Snordmark 		}
1254bd41d0a8Snordmark 		cv_wait(&t->zsd_cv, &zone->zone_lock);
1255bd41d0a8Snordmark 		if (lockp != NULL) {
1256bd41d0a8Snordmark 			/* First drop zone_lock to preserve order */
1257bd41d0a8Snordmark 			mutex_exit(&zone->zone_lock);
1258bd41d0a8Snordmark 			mutex_enter(lockp);
1259bd41d0a8Snordmark 			mutex_enter(&zone->zone_lock);
1260bd41d0a8Snordmark 		}
1261bd41d0a8Snordmark 	}
1262bd41d0a8Snordmark 	return (dropped);
12637c478bd9Sstevel@tonic-gate }
12647c478bd9Sstevel@tonic-gate 
12657c478bd9Sstevel@tonic-gate /*
1266fa9e4066Sahrens  * Frees memory associated with the zone dataset list.
1267fa9e4066Sahrens  */
1268fa9e4066Sahrens static void
1269fa9e4066Sahrens zone_free_datasets(zone_t *zone)
1270fa9e4066Sahrens {
1271fa9e4066Sahrens 	zone_dataset_t *t, *next;
1272fa9e4066Sahrens 
1273fa9e4066Sahrens 	for (t = list_head(&zone->zone_datasets); t != NULL; t = next) {
1274fa9e4066Sahrens 		next = list_next(&zone->zone_datasets, t);
1275fa9e4066Sahrens 		list_remove(&zone->zone_datasets, t);
1276fa9e4066Sahrens 		kmem_free(t->zd_dataset, strlen(t->zd_dataset) + 1);
1277fa9e4066Sahrens 		kmem_free(t, sizeof (*t));
1278fa9e4066Sahrens 	}
1279fa9e4066Sahrens 	list_destroy(&zone->zone_datasets);
1280fa9e4066Sahrens }
1281fa9e4066Sahrens 
1282fa9e4066Sahrens /*
12837c478bd9Sstevel@tonic-gate  * zone.cpu-shares resource control support.
12847c478bd9Sstevel@tonic-gate  */
12857c478bd9Sstevel@tonic-gate /*ARGSUSED*/
12867c478bd9Sstevel@tonic-gate static rctl_qty_t
12877c478bd9Sstevel@tonic-gate zone_cpu_shares_usage(rctl_t *rctl, struct proc *p)
12887c478bd9Sstevel@tonic-gate {
12897c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&p->p_lock));
12907c478bd9Sstevel@tonic-gate 	return (p->p_zone->zone_shares);
12917c478bd9Sstevel@tonic-gate }
12927c478bd9Sstevel@tonic-gate 
12937c478bd9Sstevel@tonic-gate /*ARGSUSED*/
12947c478bd9Sstevel@tonic-gate static int
12957c478bd9Sstevel@tonic-gate zone_cpu_shares_set(rctl_t *rctl, struct proc *p, rctl_entity_p_t *e,
12967c478bd9Sstevel@tonic-gate     rctl_qty_t nv)
12977c478bd9Sstevel@tonic-gate {
12987c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&p->p_lock));
12997c478bd9Sstevel@tonic-gate 	ASSERT(e->rcep_t == RCENTITY_ZONE);
13007c478bd9Sstevel@tonic-gate 	if (e->rcep_p.zone == NULL)
13017c478bd9Sstevel@tonic-gate 		return (0);
13027c478bd9Sstevel@tonic-gate 
13037c478bd9Sstevel@tonic-gate 	e->rcep_p.zone->zone_shares = nv;
13047c478bd9Sstevel@tonic-gate 	return (0);
13057c478bd9Sstevel@tonic-gate }
13067c478bd9Sstevel@tonic-gate 
13077c478bd9Sstevel@tonic-gate static rctl_ops_t zone_cpu_shares_ops = {
13087c478bd9Sstevel@tonic-gate 	rcop_no_action,
13097c478bd9Sstevel@tonic-gate 	zone_cpu_shares_usage,
13107c478bd9Sstevel@tonic-gate 	zone_cpu_shares_set,
13117c478bd9Sstevel@tonic-gate 	rcop_no_test
13127c478bd9Sstevel@tonic-gate };
13137c478bd9Sstevel@tonic-gate 
1314c97ad5cdSakolb /*
1315c97ad5cdSakolb  * zone.cpu-cap resource control support.
1316c97ad5cdSakolb  */
1317c97ad5cdSakolb /*ARGSUSED*/
1318c97ad5cdSakolb static rctl_qty_t
1319c97ad5cdSakolb zone_cpu_cap_get(rctl_t *rctl, struct proc *p)
1320c97ad5cdSakolb {
1321c97ad5cdSakolb 	ASSERT(MUTEX_HELD(&p->p_lock));
1322c97ad5cdSakolb 	return (cpucaps_zone_get(p->p_zone));
1323c97ad5cdSakolb }
1324c97ad5cdSakolb 
1325c97ad5cdSakolb /*ARGSUSED*/
1326c97ad5cdSakolb static int
1327c97ad5cdSakolb zone_cpu_cap_set(rctl_t *rctl, struct proc *p, rctl_entity_p_t *e,
1328c97ad5cdSakolb     rctl_qty_t nv)
1329c97ad5cdSakolb {
1330c97ad5cdSakolb 	zone_t *zone = e->rcep_p.zone;
1331c97ad5cdSakolb 
1332c97ad5cdSakolb 	ASSERT(MUTEX_HELD(&p->p_lock));
1333c97ad5cdSakolb 	ASSERT(e->rcep_t == RCENTITY_ZONE);
1334c97ad5cdSakolb 
1335c97ad5cdSakolb 	if (zone == NULL)
1336c97ad5cdSakolb 		return (0);
1337c97ad5cdSakolb 
1338c97ad5cdSakolb 	/*
1339c97ad5cdSakolb 	 * set cap to the new value.
1340c97ad5cdSakolb 	 */
1341c97ad5cdSakolb 	return (cpucaps_zone_set(zone, nv));
1342c97ad5cdSakolb }
1343c97ad5cdSakolb 
1344c97ad5cdSakolb static rctl_ops_t zone_cpu_cap_ops = {
1345c97ad5cdSakolb 	rcop_no_action,
1346c97ad5cdSakolb 	zone_cpu_cap_get,
1347c97ad5cdSakolb 	zone_cpu_cap_set,
1348c97ad5cdSakolb 	rcop_no_test
1349c97ad5cdSakolb };
1350c97ad5cdSakolb 
13517c478bd9Sstevel@tonic-gate /*ARGSUSED*/
13527c478bd9Sstevel@tonic-gate static rctl_qty_t
13537c478bd9Sstevel@tonic-gate zone_lwps_usage(rctl_t *r, proc_t *p)
13547c478bd9Sstevel@tonic-gate {
13557c478bd9Sstevel@tonic-gate 	rctl_qty_t nlwps;
13567c478bd9Sstevel@tonic-gate 	zone_t *zone = p->p_zone;
13577c478bd9Sstevel@tonic-gate 
13587c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&p->p_lock));
13597c478bd9Sstevel@tonic-gate 
13607c478bd9Sstevel@tonic-gate 	mutex_enter(&zone->zone_nlwps_lock);
13617c478bd9Sstevel@tonic-gate 	nlwps = zone->zone_nlwps;
13627c478bd9Sstevel@tonic-gate 	mutex_exit(&zone->zone_nlwps_lock);
13637c478bd9Sstevel@tonic-gate 
13647c478bd9Sstevel@tonic-gate 	return (nlwps);
13657c478bd9Sstevel@tonic-gate }
13667c478bd9Sstevel@tonic-gate 
13677c478bd9Sstevel@tonic-gate /*ARGSUSED*/
13687c478bd9Sstevel@tonic-gate static int
13697c478bd9Sstevel@tonic-gate zone_lwps_test(rctl_t *r, proc_t *p, rctl_entity_p_t *e, rctl_val_t *rcntl,
13707c478bd9Sstevel@tonic-gate     rctl_qty_t incr, uint_t flags)
13717c478bd9Sstevel@tonic-gate {
13727c478bd9Sstevel@tonic-gate 	rctl_qty_t nlwps;
13737c478bd9Sstevel@tonic-gate 
13747c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&p->p_lock));
13757c478bd9Sstevel@tonic-gate 	ASSERT(e->rcep_t == RCENTITY_ZONE);
13767c478bd9Sstevel@tonic-gate 	if (e->rcep_p.zone == NULL)
13777c478bd9Sstevel@tonic-gate 		return (0);
13787c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&(e->rcep_p.zone->zone_nlwps_lock)));
13797c478bd9Sstevel@tonic-gate 	nlwps = e->rcep_p.zone->zone_nlwps;
13807c478bd9Sstevel@tonic-gate 
13817c478bd9Sstevel@tonic-gate 	if (nlwps + incr > rcntl->rcv_value)
13827c478bd9Sstevel@tonic-gate 		return (1);
13837c478bd9Sstevel@tonic-gate 
13847c478bd9Sstevel@tonic-gate 	return (0);
13857c478bd9Sstevel@tonic-gate }
13867c478bd9Sstevel@tonic-gate 
13877c478bd9Sstevel@tonic-gate /*ARGSUSED*/
13887c478bd9Sstevel@tonic-gate static int
1389c6939658Ssl108498 zone_lwps_set(rctl_t *rctl, struct proc *p, rctl_entity_p_t *e, rctl_qty_t nv)
1390c6939658Ssl108498 {
13917c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&p->p_lock));
13927c478bd9Sstevel@tonic-gate 	ASSERT(e->rcep_t == RCENTITY_ZONE);
13937c478bd9Sstevel@tonic-gate 	if (e->rcep_p.zone == NULL)
13947c478bd9Sstevel@tonic-gate 		return (0);
13957c478bd9Sstevel@tonic-gate 	e->rcep_p.zone->zone_nlwps_ctl = nv;
13967c478bd9Sstevel@tonic-gate 	return (0);
13977c478bd9Sstevel@tonic-gate }
13987c478bd9Sstevel@tonic-gate 
13997c478bd9Sstevel@tonic-gate static rctl_ops_t zone_lwps_ops = {
14007c478bd9Sstevel@tonic-gate 	rcop_no_action,
14017c478bd9Sstevel@tonic-gate 	zone_lwps_usage,
14027c478bd9Sstevel@tonic-gate 	zone_lwps_set,
14037c478bd9Sstevel@tonic-gate 	zone_lwps_test,
14047c478bd9Sstevel@tonic-gate };
14057c478bd9Sstevel@tonic-gate 
1406824c205fSml93401 /*ARGSUSED*/
1407824c205fSml93401 static int
1408824c205fSml93401 zone_shmmax_test(rctl_t *r, proc_t *p, rctl_entity_p_t *e, rctl_val_t *rval,
1409824c205fSml93401     rctl_qty_t incr, uint_t flags)
1410824c205fSml93401 {
1411824c205fSml93401 	rctl_qty_t v;
1412824c205fSml93401 	ASSERT(MUTEX_HELD(&p->p_lock));
1413824c205fSml93401 	ASSERT(e->rcep_t == RCENTITY_ZONE);
1414824c205fSml93401 	v = e->rcep_p.zone->zone_shmmax + incr;
1415824c205fSml93401 	if (v > rval->rcv_value)
1416824c205fSml93401 		return (1);
1417824c205fSml93401 	return (0);
1418824c205fSml93401 }
1419824c205fSml93401 
1420824c205fSml93401 static rctl_ops_t zone_shmmax_ops = {
1421824c205fSml93401 	rcop_no_action,
1422824c205fSml93401 	rcop_no_usage,
1423824c205fSml93401 	rcop_no_set,
1424824c205fSml93401 	zone_shmmax_test
1425824c205fSml93401 };
1426824c205fSml93401 
1427824c205fSml93401 /*ARGSUSED*/
1428824c205fSml93401 static int
1429824c205fSml93401 zone_shmmni_test(rctl_t *r, proc_t *p, rctl_entity_p_t *e, rctl_val_t *rval,
1430824c205fSml93401     rctl_qty_t incr, uint_t flags)
1431824c205fSml93401 {
1432824c205fSml93401 	rctl_qty_t v;
1433824c205fSml93401 	ASSERT(MUTEX_HELD(&p->p_lock));
1434824c205fSml93401 	ASSERT(e->rcep_t == RCENTITY_ZONE);
1435824c205fSml93401 	v = e->rcep_p.zone->zone_ipc.ipcq_shmmni + incr;
1436824c205fSml93401 	if (v > rval->rcv_value)
1437824c205fSml93401 		return (1);
1438824c205fSml93401 	return (0);
1439824c205fSml93401 }
1440824c205fSml93401 
1441824c205fSml93401 static rctl_ops_t zone_shmmni_ops = {
1442824c205fSml93401 	rcop_no_action,
1443824c205fSml93401 	rcop_no_usage,
1444824c205fSml93401 	rcop_no_set,
1445824c205fSml93401 	zone_shmmni_test
1446824c205fSml93401 };
1447824c205fSml93401 
1448824c205fSml93401 /*ARGSUSED*/
1449824c205fSml93401 static int
1450824c205fSml93401 zone_semmni_test(rctl_t *r, proc_t *p, rctl_entity_p_t *e, rctl_val_t *rval,
1451824c205fSml93401     rctl_qty_t incr, uint_t flags)
1452824c205fSml93401 {
1453824c205fSml93401 	rctl_qty_t v;
1454824c205fSml93401 	ASSERT(MUTEX_HELD(&p->p_lock));
1455824c205fSml93401 	ASSERT(e->rcep_t == RCENTITY_ZONE);
1456824c205fSml93401 	v = e->rcep_p.zone->zone_ipc.ipcq_semmni + incr;
1457824c205fSml93401 	if (v > rval->rcv_value)
1458824c205fSml93401 		return (1);
1459824c205fSml93401 	return (0);
1460824c205fSml93401 }
1461824c205fSml93401 
1462824c205fSml93401 static rctl_ops_t zone_semmni_ops = {
1463824c205fSml93401 	rcop_no_action,
1464824c205fSml93401 	rcop_no_usage,
1465824c205fSml93401 	rcop_no_set,
1466824c205fSml93401 	zone_semmni_test
1467824c205fSml93401 };
1468824c205fSml93401 
1469824c205fSml93401 /*ARGSUSED*/
1470824c205fSml93401 static int
1471824c205fSml93401 zone_msgmni_test(rctl_t *r, proc_t *p, rctl_entity_p_t *e, rctl_val_t *rval,
1472824c205fSml93401     rctl_qty_t incr, uint_t flags)
1473824c205fSml93401 {
1474824c205fSml93401 	rctl_qty_t v;
1475824c205fSml93401 	ASSERT(MUTEX_HELD(&p->p_lock));
1476824c205fSml93401 	ASSERT(e->rcep_t == RCENTITY_ZONE);
1477824c205fSml93401 	v = e->rcep_p.zone->zone_ipc.ipcq_msgmni + incr;
1478824c205fSml93401 	if (v > rval->rcv_value)
1479824c205fSml93401 		return (1);
1480824c205fSml93401 	return (0);
1481824c205fSml93401 }
1482824c205fSml93401 
1483824c205fSml93401 static rctl_ops_t zone_msgmni_ops = {
1484824c205fSml93401 	rcop_no_action,
1485824c205fSml93401 	rcop_no_usage,
1486824c205fSml93401 	rcop_no_set,
1487824c205fSml93401 	zone_msgmni_test
1488824c205fSml93401 };
1489824c205fSml93401 
1490c6939658Ssl108498 /*ARGSUSED*/
1491c6939658Ssl108498 static rctl_qty_t
1492c6939658Ssl108498 zone_locked_mem_usage(rctl_t *rctl, struct proc *p)
1493c6939658Ssl108498 {
1494c6939658Ssl108498 	rctl_qty_t q;
1495c6939658Ssl108498 	ASSERT(MUTEX_HELD(&p->p_lock));
14960209230bSgjelinek 	mutex_enter(&p->p_zone->zone_mem_lock);
1497c6939658Ssl108498 	q = p->p_zone->zone_locked_mem;
14980209230bSgjelinek 	mutex_exit(&p->p_zone->zone_mem_lock);
1499c6939658Ssl108498 	return (q);
1500c6939658Ssl108498 }
1501c6939658Ssl108498 
1502c6939658Ssl108498 /*ARGSUSED*/
1503c6939658Ssl108498 static int
1504c6939658Ssl108498 zone_locked_mem_test(rctl_t *r, proc_t *p, rctl_entity_p_t *e,
1505c6939658Ssl108498     rctl_val_t *rcntl, rctl_qty_t incr, uint_t flags)
1506c6939658Ssl108498 {
1507c6939658Ssl108498 	rctl_qty_t q;
15080209230bSgjelinek 	zone_t *z;
15090209230bSgjelinek 
15100209230bSgjelinek 	z = e->rcep_p.zone;
1511c6939658Ssl108498 	ASSERT(MUTEX_HELD(&p->p_lock));
15120209230bSgjelinek 	ASSERT(MUTEX_HELD(&z->zone_mem_lock));
15130209230bSgjelinek 	q = z->zone_locked_mem;
1514c6939658Ssl108498 	if (q + incr > rcntl->rcv_value)
1515c6939658Ssl108498 		return (1);
1516c6939658Ssl108498 	return (0);
1517c6939658Ssl108498 }
1518c6939658Ssl108498 
1519c6939658Ssl108498 /*ARGSUSED*/
1520c6939658Ssl108498 static int
1521c6939658Ssl108498 zone_locked_mem_set(rctl_t *rctl, struct proc *p, rctl_entity_p_t *e,
1522c6939658Ssl108498     rctl_qty_t nv)
1523c6939658Ssl108498 {
1524c6939658Ssl108498 	ASSERT(MUTEX_HELD(&p->p_lock));
1525c6939658Ssl108498 	ASSERT(e->rcep_t == RCENTITY_ZONE);
1526c6939658Ssl108498 	if (e->rcep_p.zone == NULL)
1527c6939658Ssl108498 		return (0);
1528c6939658Ssl108498 	e->rcep_p.zone->zone_locked_mem_ctl = nv;
1529c6939658Ssl108498 	return (0);
1530c6939658Ssl108498 }
1531c6939658Ssl108498 
1532c6939658Ssl108498 static rctl_ops_t zone_locked_mem_ops = {
1533c6939658Ssl108498 	rcop_no_action,
1534c6939658Ssl108498 	zone_locked_mem_usage,
1535c6939658Ssl108498 	zone_locked_mem_set,
1536c6939658Ssl108498 	zone_locked_mem_test
1537c6939658Ssl108498 };
1538824c205fSml93401 
15390209230bSgjelinek /*ARGSUSED*/
15400209230bSgjelinek static rctl_qty_t
15410209230bSgjelinek zone_max_swap_usage(rctl_t *rctl, struct proc *p)
15420209230bSgjelinek {
15430209230bSgjelinek 	rctl_qty_t q;
15440209230bSgjelinek 	zone_t *z = p->p_zone;
15450209230bSgjelinek 
15460209230bSgjelinek 	ASSERT(MUTEX_HELD(&p->p_lock));
15470209230bSgjelinek 	mutex_enter(&z->zone_mem_lock);
15480209230bSgjelinek 	q = z->zone_max_swap;
15490209230bSgjelinek 	mutex_exit(&z->zone_mem_lock);
15500209230bSgjelinek 	return (q);
15510209230bSgjelinek }
15520209230bSgjelinek 
15530209230bSgjelinek /*ARGSUSED*/
15540209230bSgjelinek static int
15550209230bSgjelinek zone_max_swap_test(rctl_t *r, proc_t *p, rctl_entity_p_t *e,
15560209230bSgjelinek     rctl_val_t *rcntl, rctl_qty_t incr, uint_t flags)
15570209230bSgjelinek {
15580209230bSgjelinek 	rctl_qty_t q;
15590209230bSgjelinek 	zone_t *z;
15600209230bSgjelinek 
15610209230bSgjelinek 	z = e->rcep_p.zone;
15620209230bSgjelinek 	ASSERT(MUTEX_HELD(&p->p_lock));
15630209230bSgjelinek 	ASSERT(MUTEX_HELD(&z->zone_mem_lock));
15640209230bSgjelinek 	q = z->zone_max_swap;
15650209230bSgjelinek 	if (q + incr > rcntl->rcv_value)
15660209230bSgjelinek 		return (1);
15670209230bSgjelinek 	return (0);
15680209230bSgjelinek }
15690209230bSgjelinek 
15700209230bSgjelinek /*ARGSUSED*/
15710209230bSgjelinek static int
15720209230bSgjelinek zone_max_swap_set(rctl_t *rctl, struct proc *p, rctl_entity_p_t *e,
15730209230bSgjelinek     rctl_qty_t nv)
15740209230bSgjelinek {
15750209230bSgjelinek 	ASSERT(MUTEX_HELD(&p->p_lock));
15760209230bSgjelinek 	ASSERT(e->rcep_t == RCENTITY_ZONE);
15770209230bSgjelinek 	if (e->rcep_p.zone == NULL)
15780209230bSgjelinek 		return (0);
15790209230bSgjelinek 	e->rcep_p.zone->zone_max_swap_ctl = nv;
15800209230bSgjelinek 	return (0);
15810209230bSgjelinek }
15820209230bSgjelinek 
15830209230bSgjelinek static rctl_ops_t zone_max_swap_ops = {
15840209230bSgjelinek 	rcop_no_action,
15850209230bSgjelinek 	zone_max_swap_usage,
15860209230bSgjelinek 	zone_max_swap_set,
15870209230bSgjelinek 	zone_max_swap_test
15880209230bSgjelinek };
15890209230bSgjelinek 
1590*0fbb751dSJohn Levon /*ARGSUSED*/
1591*0fbb751dSJohn Levon static rctl_qty_t
1592*0fbb751dSJohn Levon zone_max_lofi_usage(rctl_t *rctl, struct proc *p)
1593*0fbb751dSJohn Levon {
1594*0fbb751dSJohn Levon 	rctl_qty_t q;
1595*0fbb751dSJohn Levon 	zone_t *z = p->p_zone;
1596*0fbb751dSJohn Levon 
1597*0fbb751dSJohn Levon 	ASSERT(MUTEX_HELD(&p->p_lock));
1598*0fbb751dSJohn Levon 	mutex_enter(&z->zone_rctl_lock);
1599*0fbb751dSJohn Levon 	q = z->zone_max_lofi;
1600*0fbb751dSJohn Levon 	mutex_exit(&z->zone_rctl_lock);
1601*0fbb751dSJohn Levon 	return (q);
1602*0fbb751dSJohn Levon }
1603*0fbb751dSJohn Levon 
1604*0fbb751dSJohn Levon /*ARGSUSED*/
1605*0fbb751dSJohn Levon static int
1606*0fbb751dSJohn Levon zone_max_lofi_test(rctl_t *r, proc_t *p, rctl_entity_p_t *e,
1607*0fbb751dSJohn Levon     rctl_val_t *rcntl, rctl_qty_t incr, uint_t flags)
1608*0fbb751dSJohn Levon {
1609*0fbb751dSJohn Levon 	rctl_qty_t q;
1610*0fbb751dSJohn Levon 	zone_t *z;
1611*0fbb751dSJohn Levon 
1612*0fbb751dSJohn Levon 	z = e->rcep_p.zone;
1613*0fbb751dSJohn Levon 	ASSERT(MUTEX_HELD(&p->p_lock));
1614*0fbb751dSJohn Levon 	ASSERT(MUTEX_HELD(&z->zone_rctl_lock));
1615*0fbb751dSJohn Levon 	q = z->zone_max_lofi;
1616*0fbb751dSJohn Levon 	if (q + incr > rcntl->rcv_value)
1617*0fbb751dSJohn Levon 		return (1);
1618*0fbb751dSJohn Levon 	return (0);
1619*0fbb751dSJohn Levon }
1620*0fbb751dSJohn Levon 
1621*0fbb751dSJohn Levon /*ARGSUSED*/
1622*0fbb751dSJohn Levon static int
1623*0fbb751dSJohn Levon zone_max_lofi_set(rctl_t *rctl, struct proc *p, rctl_entity_p_t *e,
1624*0fbb751dSJohn Levon     rctl_qty_t nv)
1625*0fbb751dSJohn Levon {
1626*0fbb751dSJohn Levon 	ASSERT(MUTEX_HELD(&p->p_lock));
1627*0fbb751dSJohn Levon 	ASSERT(e->rcep_t == RCENTITY_ZONE);
1628*0fbb751dSJohn Levon 	if (e->rcep_p.zone == NULL)
1629*0fbb751dSJohn Levon 		return (0);
1630*0fbb751dSJohn Levon 	e->rcep_p.zone->zone_max_lofi_ctl = nv;
1631*0fbb751dSJohn Levon 	return (0);
1632*0fbb751dSJohn Levon }
1633*0fbb751dSJohn Levon 
1634*0fbb751dSJohn Levon static rctl_ops_t zone_max_lofi_ops = {
1635*0fbb751dSJohn Levon 	rcop_no_action,
1636*0fbb751dSJohn Levon 	zone_max_lofi_usage,
1637*0fbb751dSJohn Levon 	zone_max_lofi_set,
1638*0fbb751dSJohn Levon 	zone_max_lofi_test
1639*0fbb751dSJohn Levon };
1640*0fbb751dSJohn Levon 
16417c478bd9Sstevel@tonic-gate /*
16427c478bd9Sstevel@tonic-gate  * Helper function to brand the zone with a unique ID.
16437c478bd9Sstevel@tonic-gate  */
16447c478bd9Sstevel@tonic-gate static void
16457c478bd9Sstevel@tonic-gate zone_uniqid(zone_t *zone)
16467c478bd9Sstevel@tonic-gate {
16477c478bd9Sstevel@tonic-gate 	static uint64_t uniqid = 0;
16487c478bd9Sstevel@tonic-gate 
16497c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&zonehash_lock));
16507c478bd9Sstevel@tonic-gate 	zone->zone_uniqid = uniqid++;
16517c478bd9Sstevel@tonic-gate }
16527c478bd9Sstevel@tonic-gate 
16537c478bd9Sstevel@tonic-gate /*
16547c478bd9Sstevel@tonic-gate  * Returns a held pointer to the "kcred" for the specified zone.
16557c478bd9Sstevel@tonic-gate  */
16567c478bd9Sstevel@tonic-gate struct cred *
16577c478bd9Sstevel@tonic-gate zone_get_kcred(zoneid_t zoneid)
16587c478bd9Sstevel@tonic-gate {
16597c478bd9Sstevel@tonic-gate 	zone_t *zone;
16607c478bd9Sstevel@tonic-gate 	cred_t *cr;
16617c478bd9Sstevel@tonic-gate 
16627c478bd9Sstevel@tonic-gate 	if ((zone = zone_find_by_id(zoneid)) == NULL)
16637c478bd9Sstevel@tonic-gate 		return (NULL);
16647c478bd9Sstevel@tonic-gate 	cr = zone->zone_kcred;
16657c478bd9Sstevel@tonic-gate 	crhold(cr);
16667c478bd9Sstevel@tonic-gate 	zone_rele(zone);
16677c478bd9Sstevel@tonic-gate 	return (cr);
16687c478bd9Sstevel@tonic-gate }
16697c478bd9Sstevel@tonic-gate 
16700209230bSgjelinek static int
16710209230bSgjelinek zone_lockedmem_kstat_update(kstat_t *ksp, int rw)
16720209230bSgjelinek {
16730209230bSgjelinek 	zone_t *zone = ksp->ks_private;
16740209230bSgjelinek 	zone_kstat_t *zk = ksp->ks_data;
16750209230bSgjelinek 
16760209230bSgjelinek 	if (rw == KSTAT_WRITE)
16770209230bSgjelinek 		return (EACCES);
16780209230bSgjelinek 
16790209230bSgjelinek 	zk->zk_usage.value.ui64 = zone->zone_locked_mem;
16800209230bSgjelinek 	zk->zk_value.value.ui64 = zone->zone_locked_mem_ctl;
16810209230bSgjelinek 	return (0);
16820209230bSgjelinek }
16830209230bSgjelinek 
16840209230bSgjelinek static int
16850209230bSgjelinek zone_swapresv_kstat_update(kstat_t *ksp, int rw)
16860209230bSgjelinek {
16870209230bSgjelinek 	zone_t *zone = ksp->ks_private;
16880209230bSgjelinek 	zone_kstat_t *zk = ksp->ks_data;
16890209230bSgjelinek 
16900209230bSgjelinek 	if (rw == KSTAT_WRITE)
16910209230bSgjelinek 		return (EACCES);
16920209230bSgjelinek 
16930209230bSgjelinek 	zk->zk_usage.value.ui64 = zone->zone_max_swap;
16940209230bSgjelinek 	zk->zk_value.value.ui64 = zone->zone_max_swap_ctl;
16950209230bSgjelinek 	return (0);
16960209230bSgjelinek }
16970209230bSgjelinek 
16980209230bSgjelinek static void
16990209230bSgjelinek zone_kstat_create(zone_t *zone)
17000209230bSgjelinek {
17010209230bSgjelinek 	kstat_t *ksp;
17020209230bSgjelinek 	zone_kstat_t *zk;
17030209230bSgjelinek 
17040209230bSgjelinek 	ksp = rctl_kstat_create_zone(zone, "lockedmem", KSTAT_TYPE_NAMED,
17050209230bSgjelinek 	    sizeof (zone_kstat_t) / sizeof (kstat_named_t),
17060209230bSgjelinek 	    KSTAT_FLAG_VIRTUAL);
17070209230bSgjelinek 
17080209230bSgjelinek 	if (ksp == NULL)
17090209230bSgjelinek 		return;
17100209230bSgjelinek 
17110209230bSgjelinek 	zk = ksp->ks_data = kmem_alloc(sizeof (zone_kstat_t), KM_SLEEP);
17120209230bSgjelinek 	ksp->ks_data_size += strlen(zone->zone_name) + 1;
17130209230bSgjelinek 	kstat_named_init(&zk->zk_zonename, "zonename", KSTAT_DATA_STRING);
17140209230bSgjelinek 	kstat_named_setstr(&zk->zk_zonename, zone->zone_name);
17150209230bSgjelinek 	kstat_named_init(&zk->zk_usage, "usage", KSTAT_DATA_UINT64);
17160209230bSgjelinek 	kstat_named_init(&zk->zk_value, "value", KSTAT_DATA_UINT64);
17170209230bSgjelinek 	ksp->ks_update = zone_lockedmem_kstat_update;
17180209230bSgjelinek 	ksp->ks_private = zone;
17190209230bSgjelinek 	kstat_install(ksp);
17200209230bSgjelinek 
17210209230bSgjelinek 	zone->zone_lockedmem_kstat = ksp;
17220209230bSgjelinek 
17230209230bSgjelinek 	ksp = rctl_kstat_create_zone(zone, "swapresv", KSTAT_TYPE_NAMED,
17240209230bSgjelinek 	    sizeof (zone_kstat_t) / sizeof (kstat_named_t),
17250209230bSgjelinek 	    KSTAT_FLAG_VIRTUAL);
17260209230bSgjelinek 
17270209230bSgjelinek 	if (ksp == NULL)
17280209230bSgjelinek 		return;
17290209230bSgjelinek 
17300209230bSgjelinek 	zk = ksp->ks_data = kmem_alloc(sizeof (zone_kstat_t), KM_SLEEP);
17310209230bSgjelinek 	ksp->ks_data_size += strlen(zone->zone_name) + 1;
17320209230bSgjelinek 	kstat_named_init(&zk->zk_zonename, "zonename", KSTAT_DATA_STRING);
17330209230bSgjelinek 	kstat_named_setstr(&zk->zk_zonename, zone->zone_name);
17340209230bSgjelinek 	kstat_named_init(&zk->zk_usage, "usage", KSTAT_DATA_UINT64);
17350209230bSgjelinek 	kstat_named_init(&zk->zk_value, "value", KSTAT_DATA_UINT64);
17360209230bSgjelinek 	ksp->ks_update = zone_swapresv_kstat_update;
17370209230bSgjelinek 	ksp->ks_private = zone;
17380209230bSgjelinek 	kstat_install(ksp);
17390209230bSgjelinek 
17400209230bSgjelinek 	zone->zone_swapresv_kstat = ksp;
17410209230bSgjelinek }
17420209230bSgjelinek 
17430209230bSgjelinek static void
17440209230bSgjelinek zone_kstat_delete(zone_t *zone)
17450209230bSgjelinek {
17460209230bSgjelinek 	void *data;
17470209230bSgjelinek 
17480209230bSgjelinek 	if (zone->zone_lockedmem_kstat != NULL) {
17490209230bSgjelinek 		data = zone->zone_lockedmem_kstat->ks_data;
17500209230bSgjelinek 		kstat_delete(zone->zone_lockedmem_kstat);
17510209230bSgjelinek 		kmem_free(data, sizeof (zone_kstat_t));
17520209230bSgjelinek 	}
17530209230bSgjelinek 	if (zone->zone_swapresv_kstat != NULL) {
17540209230bSgjelinek 		data = zone->zone_swapresv_kstat->ks_data;
17550209230bSgjelinek 		kstat_delete(zone->zone_swapresv_kstat);
17560209230bSgjelinek 		kmem_free(data, sizeof (zone_kstat_t));
17570209230bSgjelinek 	}
17580209230bSgjelinek }
17590209230bSgjelinek 
17607c478bd9Sstevel@tonic-gate /*
17617c478bd9Sstevel@tonic-gate  * Called very early on in boot to initialize the ZSD list so that
17627c478bd9Sstevel@tonic-gate  * zone_key_create() can be called before zone_init().  It also initializes
17637c478bd9Sstevel@tonic-gate  * portions of zone0 which may be used before zone_init() is called.  The
17647c478bd9Sstevel@tonic-gate  * variable "global_zone" will be set when zone0 is fully initialized by
17657c478bd9Sstevel@tonic-gate  * zone_init().
17667c478bd9Sstevel@tonic-gate  */
17677c478bd9Sstevel@tonic-gate void
17687c478bd9Sstevel@tonic-gate zone_zsd_init(void)
17697c478bd9Sstevel@tonic-gate {
17707c478bd9Sstevel@tonic-gate 	mutex_init(&zonehash_lock, NULL, MUTEX_DEFAULT, NULL);
17717c478bd9Sstevel@tonic-gate 	mutex_init(&zsd_key_lock, NULL, MUTEX_DEFAULT, NULL);
17727c478bd9Sstevel@tonic-gate 	list_create(&zsd_registered_keys, sizeof (struct zsd_entry),
17737c478bd9Sstevel@tonic-gate 	    offsetof(struct zsd_entry, zsd_linkage));
17747c478bd9Sstevel@tonic-gate 	list_create(&zone_active, sizeof (zone_t),
17757c478bd9Sstevel@tonic-gate 	    offsetof(zone_t, zone_linkage));
17767c478bd9Sstevel@tonic-gate 	list_create(&zone_deathrow, sizeof (zone_t),
17777c478bd9Sstevel@tonic-gate 	    offsetof(zone_t, zone_linkage));
17787c478bd9Sstevel@tonic-gate 
17797c478bd9Sstevel@tonic-gate 	mutex_init(&zone0.zone_lock, NULL, MUTEX_DEFAULT, NULL);
17807c478bd9Sstevel@tonic-gate 	mutex_init(&zone0.zone_nlwps_lock, NULL, MUTEX_DEFAULT, NULL);
17810209230bSgjelinek 	mutex_init(&zone0.zone_mem_lock, NULL, MUTEX_DEFAULT, NULL);
17827c478bd9Sstevel@tonic-gate 	zone0.zone_shares = 1;
17830209230bSgjelinek 	zone0.zone_nlwps = 0;
17847c478bd9Sstevel@tonic-gate 	zone0.zone_nlwps_ctl = INT_MAX;
17850209230bSgjelinek 	zone0.zone_locked_mem = 0;
17860209230bSgjelinek 	zone0.zone_locked_mem_ctl = UINT64_MAX;
17870209230bSgjelinek 	ASSERT(zone0.zone_max_swap == 0);
17880209230bSgjelinek 	zone0.zone_max_swap_ctl = UINT64_MAX;
1789*0fbb751dSJohn Levon 	zone0.zone_max_lofi = 0;
1790*0fbb751dSJohn Levon 	zone0.zone_max_lofi_ctl = UINT64_MAX;
1791824c205fSml93401 	zone0.zone_shmmax = 0;
1792824c205fSml93401 	zone0.zone_ipc.ipcq_shmmni = 0;
1793824c205fSml93401 	zone0.zone_ipc.ipcq_semmni = 0;
1794824c205fSml93401 	zone0.zone_ipc.ipcq_msgmni = 0;
17957c478bd9Sstevel@tonic-gate 	zone0.zone_name = GLOBAL_ZONENAME;
17967c478bd9Sstevel@tonic-gate 	zone0.zone_nodename = utsname.nodename;
17977c478bd9Sstevel@tonic-gate 	zone0.zone_domain = srpc_domain;
17985679c89fSjv227347 	zone0.zone_hostid = HW_INVALID_HOSTID;
1799*0fbb751dSJohn Levon 	zone0.zone_fs_allowed = NULL;
18007c478bd9Sstevel@tonic-gate 	zone0.zone_ref = 1;
18017c478bd9Sstevel@tonic-gate 	zone0.zone_id = GLOBAL_ZONEID;
18027c478bd9Sstevel@tonic-gate 	zone0.zone_status = ZONE_IS_RUNNING;
18037c478bd9Sstevel@tonic-gate 	zone0.zone_rootpath = "/";
18047c478bd9Sstevel@tonic-gate 	zone0.zone_rootpathlen = 2;
18057c478bd9Sstevel@tonic-gate 	zone0.zone_psetid = ZONE_PS_INVAL;
18067c478bd9Sstevel@tonic-gate 	zone0.zone_ncpus = 0;
18077c478bd9Sstevel@tonic-gate 	zone0.zone_ncpus_online = 0;
18087c478bd9Sstevel@tonic-gate 	zone0.zone_proc_initpid = 1;
18093f2f09c1Sdp 	zone0.zone_initname = initname;
18100209230bSgjelinek 	zone0.zone_lockedmem_kstat = NULL;
18110209230bSgjelinek 	zone0.zone_swapresv_kstat = NULL;
18127c478bd9Sstevel@tonic-gate 	list_create(&zone0.zone_zsd, sizeof (struct zsd_entry),
18137c478bd9Sstevel@tonic-gate 	    offsetof(struct zsd_entry, zsd_linkage));
18147c478bd9Sstevel@tonic-gate 	list_insert_head(&zone_active, &zone0);
18157c478bd9Sstevel@tonic-gate 
18167c478bd9Sstevel@tonic-gate 	/*
18177c478bd9Sstevel@tonic-gate 	 * The root filesystem is not mounted yet, so zone_rootvp cannot be set
18187c478bd9Sstevel@tonic-gate 	 * to anything meaningful.  It is assigned to be 'rootdir' in
18197c478bd9Sstevel@tonic-gate 	 * vfs_mountroot().
18207c478bd9Sstevel@tonic-gate 	 */
18217c478bd9Sstevel@tonic-gate 	zone0.zone_rootvp = NULL;
18227c478bd9Sstevel@tonic-gate 	zone0.zone_vfslist = NULL;
18233f2f09c1Sdp 	zone0.zone_bootargs = initargs;
18247c478bd9Sstevel@tonic-gate 	zone0.zone_privset = kmem_alloc(sizeof (priv_set_t), KM_SLEEP);
18257c478bd9Sstevel@tonic-gate 	/*
18267c478bd9Sstevel@tonic-gate 	 * The global zone has all privileges
18277c478bd9Sstevel@tonic-gate 	 */
18287c478bd9Sstevel@tonic-gate 	priv_fillset(zone0.zone_privset);
18297c478bd9Sstevel@tonic-gate 	/*
18307c478bd9Sstevel@tonic-gate 	 * Add p0 to the global zone
18317c478bd9Sstevel@tonic-gate 	 */
18327c478bd9Sstevel@tonic-gate 	zone0.zone_zsched = &p0;
18337c478bd9Sstevel@tonic-gate 	p0.p_zone = &zone0;
18347c478bd9Sstevel@tonic-gate }
18357c478bd9Sstevel@tonic-gate 
18367c478bd9Sstevel@tonic-gate /*
183745916cd2Sjpk  * Compute a hash value based on the contents of the label and the DOI.  The
183845916cd2Sjpk  * hash algorithm is somewhat arbitrary, but is based on the observation that
183945916cd2Sjpk  * humans will likely pick labels that differ by amounts that work out to be
184045916cd2Sjpk  * multiples of the number of hash chains, and thus stirring in some primes
184145916cd2Sjpk  * should help.
184245916cd2Sjpk  */
184345916cd2Sjpk static uint_t
184445916cd2Sjpk hash_bylabel(void *hdata, mod_hash_key_t key)
184545916cd2Sjpk {
184645916cd2Sjpk 	const ts_label_t *lab = (ts_label_t *)key;
184745916cd2Sjpk 	const uint32_t *up, *ue;
184845916cd2Sjpk 	uint_t hash;
184945916cd2Sjpk 	int i;
185045916cd2Sjpk 
185145916cd2Sjpk 	_NOTE(ARGUNUSED(hdata));
185245916cd2Sjpk 
185345916cd2Sjpk 	hash = lab->tsl_doi + (lab->tsl_doi << 1);
185445916cd2Sjpk 	/* we depend on alignment of label, but not representation */
185545916cd2Sjpk 	up = (const uint32_t *)&lab->tsl_label;
185645916cd2Sjpk 	ue = up + sizeof (lab->tsl_label) / sizeof (*up);
185745916cd2Sjpk 	i = 1;
185845916cd2Sjpk 	while (up < ue) {
185945916cd2Sjpk 		/* using 2^n + 1, 1 <= n <= 16 as source of many primes */
186045916cd2Sjpk 		hash += *up + (*up << ((i % 16) + 1));
186145916cd2Sjpk 		up++;
186245916cd2Sjpk 		i++;
186345916cd2Sjpk 	}
186445916cd2Sjpk 	return (hash);
186545916cd2Sjpk }
186645916cd2Sjpk 
186745916cd2Sjpk /*
186845916cd2Sjpk  * All that mod_hash cares about here is zero (equal) versus non-zero (not
186945916cd2Sjpk  * equal).  This may need to be changed if less than / greater than is ever
187045916cd2Sjpk  * needed.
187145916cd2Sjpk  */
187245916cd2Sjpk static int
187345916cd2Sjpk hash_labelkey_cmp(mod_hash_key_t key1, mod_hash_key_t key2)
187445916cd2Sjpk {
187545916cd2Sjpk 	ts_label_t *lab1 = (ts_label_t *)key1;
187645916cd2Sjpk 	ts_label_t *lab2 = (ts_label_t *)key2;
187745916cd2Sjpk 
187845916cd2Sjpk 	return (label_equal(lab1, lab2) ? 0 : 1);
187945916cd2Sjpk }
188045916cd2Sjpk 
188145916cd2Sjpk /*
18827c478bd9Sstevel@tonic-gate  * Called by main() to initialize the zones framework.
18837c478bd9Sstevel@tonic-gate  */
18847c478bd9Sstevel@tonic-gate void
18857c478bd9Sstevel@tonic-gate zone_init(void)
18867c478bd9Sstevel@tonic-gate {
18877c478bd9Sstevel@tonic-gate 	rctl_dict_entry_t *rde;
18887c478bd9Sstevel@tonic-gate 	rctl_val_t *dval;
18897c478bd9Sstevel@tonic-gate 	rctl_set_t *set;
18907c478bd9Sstevel@tonic-gate 	rctl_alloc_gp_t *gp;
18917c478bd9Sstevel@tonic-gate 	rctl_entity_p_t e;
1892cf8f45c7Sdstaff 	int res;
18937c478bd9Sstevel@tonic-gate 
18947c478bd9Sstevel@tonic-gate 	ASSERT(curproc == &p0);
18957c478bd9Sstevel@tonic-gate 
18967c478bd9Sstevel@tonic-gate 	/*
18977c478bd9Sstevel@tonic-gate 	 * Create ID space for zone IDs.  ID 0 is reserved for the
18987c478bd9Sstevel@tonic-gate 	 * global zone.
18997c478bd9Sstevel@tonic-gate 	 */
19007c478bd9Sstevel@tonic-gate 	zoneid_space = id_space_create("zoneid_space", 1, MAX_ZONEID);
19017c478bd9Sstevel@tonic-gate 
19027c478bd9Sstevel@tonic-gate 	/*
19037c478bd9Sstevel@tonic-gate 	 * Initialize generic zone resource controls, if any.
19047c478bd9Sstevel@tonic-gate 	 */
19057c478bd9Sstevel@tonic-gate 	rc_zone_cpu_shares = rctl_register("zone.cpu-shares",
19067c478bd9Sstevel@tonic-gate 	    RCENTITY_ZONE, RCTL_GLOBAL_SIGNAL_NEVER | RCTL_GLOBAL_DENY_NEVER |
190719f92332Sml93401 	    RCTL_GLOBAL_NOBASIC | RCTL_GLOBAL_COUNT | RCTL_GLOBAL_SYSLOG_NEVER,
1908c97ad5cdSakolb 	    FSS_MAXSHARES, FSS_MAXSHARES, &zone_cpu_shares_ops);
1909c97ad5cdSakolb 
1910c97ad5cdSakolb 	rc_zone_cpu_cap = rctl_register("zone.cpu-cap",
1911c97ad5cdSakolb 	    RCENTITY_ZONE, RCTL_GLOBAL_SIGNAL_NEVER | RCTL_GLOBAL_DENY_ALWAYS |
1912c97ad5cdSakolb 	    RCTL_GLOBAL_NOBASIC | RCTL_GLOBAL_COUNT |RCTL_GLOBAL_SYSLOG_NEVER |
1913c97ad5cdSakolb 	    RCTL_GLOBAL_INFINITE,
1914c97ad5cdSakolb 	    MAXCAP, MAXCAP, &zone_cpu_cap_ops);
19157c478bd9Sstevel@tonic-gate 
19167c478bd9Sstevel@tonic-gate 	rc_zone_nlwps = rctl_register("zone.max-lwps", RCENTITY_ZONE,
19177c478bd9Sstevel@tonic-gate 	    RCTL_GLOBAL_NOACTION | RCTL_GLOBAL_NOBASIC | RCTL_GLOBAL_COUNT,
19187c478bd9Sstevel@tonic-gate 	    INT_MAX, INT_MAX, &zone_lwps_ops);
19197c478bd9Sstevel@tonic-gate 	/*
1920824c205fSml93401 	 * System V IPC resource controls
1921824c205fSml93401 	 */
1922824c205fSml93401 	rc_zone_msgmni = rctl_register("zone.max-msg-ids",
1923824c205fSml93401 	    RCENTITY_ZONE, RCTL_GLOBAL_DENY_ALWAYS | RCTL_GLOBAL_NOBASIC |
1924824c205fSml93401 	    RCTL_GLOBAL_COUNT, IPC_IDS_MAX, IPC_IDS_MAX, &zone_msgmni_ops);
1925824c205fSml93401 
1926824c205fSml93401 	rc_zone_semmni = rctl_register("zone.max-sem-ids",
1927824c205fSml93401 	    RCENTITY_ZONE, RCTL_GLOBAL_DENY_ALWAYS | RCTL_GLOBAL_NOBASIC |
1928824c205fSml93401 	    RCTL_GLOBAL_COUNT, IPC_IDS_MAX, IPC_IDS_MAX, &zone_semmni_ops);
1929824c205fSml93401 
1930824c205fSml93401 	rc_zone_shmmni = rctl_register("zone.max-shm-ids",
1931824c205fSml93401 	    RCENTITY_ZONE, RCTL_GLOBAL_DENY_ALWAYS | RCTL_GLOBAL_NOBASIC |
1932824c205fSml93401 	    RCTL_GLOBAL_COUNT, IPC_IDS_MAX, IPC_IDS_MAX, &zone_shmmni_ops);
1933824c205fSml93401 
1934824c205fSml93401 	rc_zone_shmmax = rctl_register("zone.max-shm-memory",
1935824c205fSml93401 	    RCENTITY_ZONE, RCTL_GLOBAL_DENY_ALWAYS | RCTL_GLOBAL_NOBASIC |
1936824c205fSml93401 	    RCTL_GLOBAL_BYTES, UINT64_MAX, UINT64_MAX, &zone_shmmax_ops);
1937824c205fSml93401 
1938824c205fSml93401 	/*
19397c478bd9Sstevel@tonic-gate 	 * Create a rctl_val with PRIVILEGED, NOACTION, value = 1.  Then attach
19407c478bd9Sstevel@tonic-gate 	 * this at the head of the rctl_dict_entry for ``zone.cpu-shares''.
19417c478bd9Sstevel@tonic-gate 	 */
19427c478bd9Sstevel@tonic-gate 	dval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
19437c478bd9Sstevel@tonic-gate 	bzero(dval, sizeof (rctl_val_t));
19447c478bd9Sstevel@tonic-gate 	dval->rcv_value = 1;
19457c478bd9Sstevel@tonic-gate 	dval->rcv_privilege = RCPRIV_PRIVILEGED;
19467c478bd9Sstevel@tonic-gate 	dval->rcv_flagaction = RCTL_LOCAL_NOACTION;
19477c478bd9Sstevel@tonic-gate 	dval->rcv_action_recip_pid = -1;
19487c478bd9Sstevel@tonic-gate 
19497c478bd9Sstevel@tonic-gate 	rde = rctl_dict_lookup("zone.cpu-shares");
19507c478bd9Sstevel@tonic-gate 	(void) rctl_val_list_insert(&rde->rcd_default_value, dval);
19517c478bd9Sstevel@tonic-gate 
1952c6939658Ssl108498 	rc_zone_locked_mem = rctl_register("zone.max-locked-memory",
1953c6939658Ssl108498 	    RCENTITY_ZONE, RCTL_GLOBAL_NOBASIC | RCTL_GLOBAL_BYTES |
1954c6939658Ssl108498 	    RCTL_GLOBAL_DENY_ALWAYS, UINT64_MAX, UINT64_MAX,
1955c6939658Ssl108498 	    &zone_locked_mem_ops);
19560209230bSgjelinek 
19570209230bSgjelinek 	rc_zone_max_swap = rctl_register("zone.max-swap",
19580209230bSgjelinek 	    RCENTITY_ZONE, RCTL_GLOBAL_NOBASIC | RCTL_GLOBAL_BYTES |
19590209230bSgjelinek 	    RCTL_GLOBAL_DENY_ALWAYS, UINT64_MAX, UINT64_MAX,
19600209230bSgjelinek 	    &zone_max_swap_ops);
19610209230bSgjelinek 
1962*0fbb751dSJohn Levon 	rc_zone_max_lofi = rctl_register("zone.max-lofi",
1963*0fbb751dSJohn Levon 	    RCENTITY_ZONE, RCTL_GLOBAL_NOBASIC | RCTL_GLOBAL_COUNT |
1964*0fbb751dSJohn Levon 	    RCTL_GLOBAL_DENY_ALWAYS, UINT64_MAX, UINT64_MAX,
1965*0fbb751dSJohn Levon 	    &zone_max_lofi_ops);
1966*0fbb751dSJohn Levon 
19677c478bd9Sstevel@tonic-gate 	/*
19687c478bd9Sstevel@tonic-gate 	 * Initialize the ``global zone''.
19697c478bd9Sstevel@tonic-gate 	 */
19707c478bd9Sstevel@tonic-gate 	set = rctl_set_create();
19717c478bd9Sstevel@tonic-gate 	gp = rctl_set_init_prealloc(RCENTITY_ZONE);
19727c478bd9Sstevel@tonic-gate 	mutex_enter(&p0.p_lock);
19737c478bd9Sstevel@tonic-gate 	e.rcep_p.zone = &zone0;
19747c478bd9Sstevel@tonic-gate 	e.rcep_t = RCENTITY_ZONE;
19757c478bd9Sstevel@tonic-gate 	zone0.zone_rctls = rctl_set_init(RCENTITY_ZONE, &p0, &e, set,
19767c478bd9Sstevel@tonic-gate 	    gp);
19777c478bd9Sstevel@tonic-gate 
19787c478bd9Sstevel@tonic-gate 	zone0.zone_nlwps = p0.p_lwpcnt;
19797c478bd9Sstevel@tonic-gate 	zone0.zone_ntasks = 1;
19807c478bd9Sstevel@tonic-gate 	mutex_exit(&p0.p_lock);
19819acbbeafSnn35248 	zone0.zone_restart_init = B_TRUE;
19829acbbeafSnn35248 	zone0.zone_brand = &native_brand;
19837c478bd9Sstevel@tonic-gate 	rctl_prealloc_destroy(gp);
19847c478bd9Sstevel@tonic-gate 	/*
19850209230bSgjelinek 	 * pool_default hasn't been initialized yet, so we let pool_init()
19860209230bSgjelinek 	 * take care of making sure the global zone is in the default pool.
19877c478bd9Sstevel@tonic-gate 	 */
198845916cd2Sjpk 
198945916cd2Sjpk 	/*
19900209230bSgjelinek 	 * Initialize global zone kstats
19910209230bSgjelinek 	 */
19920209230bSgjelinek 	zone_kstat_create(&zone0);
19930209230bSgjelinek 
19940209230bSgjelinek 	/*
199545916cd2Sjpk 	 * Initialize zone label.
199645916cd2Sjpk 	 * mlp are initialized when tnzonecfg is loaded.
199745916cd2Sjpk 	 */
199845916cd2Sjpk 	zone0.zone_slabel = l_admin_low;
199945916cd2Sjpk 	rw_init(&zone0.zone_mlps.mlpl_rwlock, NULL, RW_DEFAULT, NULL);
200045916cd2Sjpk 	label_hold(l_admin_low);
200145916cd2Sjpk 
2002835ee219SRobert Harris 	/*
2003835ee219SRobert Harris 	 * Initialise the lock for the database structure used by mntfs.
2004835ee219SRobert Harris 	 */
2005835ee219SRobert Harris 	rw_init(&zone0.zone_mntfs_db_lock, NULL, RW_DEFAULT, NULL);
2006835ee219SRobert Harris 
20077c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
20087c478bd9Sstevel@tonic-gate 	zone_uniqid(&zone0);
20097c478bd9Sstevel@tonic-gate 	ASSERT(zone0.zone_uniqid == GLOBAL_ZONEUNIQID);
201045916cd2Sjpk 
20117c478bd9Sstevel@tonic-gate 	zonehashbyid = mod_hash_create_idhash("zone_by_id", zone_hash_size,
20127c478bd9Sstevel@tonic-gate 	    mod_hash_null_valdtor);
20137c478bd9Sstevel@tonic-gate 	zonehashbyname = mod_hash_create_strhash("zone_by_name",
20147c478bd9Sstevel@tonic-gate 	    zone_hash_size, mod_hash_null_valdtor);
201545916cd2Sjpk 	/*
201645916cd2Sjpk 	 * maintain zonehashbylabel only for labeled systems
201745916cd2Sjpk 	 */
201845916cd2Sjpk 	if (is_system_labeled())
201945916cd2Sjpk 		zonehashbylabel = mod_hash_create_extended("zone_by_label",
202045916cd2Sjpk 		    zone_hash_size, mod_hash_null_keydtor,
202145916cd2Sjpk 		    mod_hash_null_valdtor, hash_bylabel, NULL,
202245916cd2Sjpk 		    hash_labelkey_cmp, KM_SLEEP);
20237c478bd9Sstevel@tonic-gate 	zonecount = 1;
20247c478bd9Sstevel@tonic-gate 
20257c478bd9Sstevel@tonic-gate 	(void) mod_hash_insert(zonehashbyid, (mod_hash_key_t)GLOBAL_ZONEID,
20267c478bd9Sstevel@tonic-gate 	    (mod_hash_val_t)&zone0);
20277c478bd9Sstevel@tonic-gate 	(void) mod_hash_insert(zonehashbyname, (mod_hash_key_t)zone0.zone_name,
20287c478bd9Sstevel@tonic-gate 	    (mod_hash_val_t)&zone0);
202948451833Scarlsonj 	if (is_system_labeled()) {
203048451833Scarlsonj 		zone0.zone_flags |= ZF_HASHED_LABEL;
203145916cd2Sjpk 		(void) mod_hash_insert(zonehashbylabel,
203245916cd2Sjpk 		    (mod_hash_key_t)zone0.zone_slabel, (mod_hash_val_t)&zone0);
203348451833Scarlsonj 	}
203445916cd2Sjpk 	mutex_exit(&zonehash_lock);
203545916cd2Sjpk 
20367c478bd9Sstevel@tonic-gate 	/*
20377c478bd9Sstevel@tonic-gate 	 * We avoid setting zone_kcred until now, since kcred is initialized
20387c478bd9Sstevel@tonic-gate 	 * sometime after zone_zsd_init() and before zone_init().
20397c478bd9Sstevel@tonic-gate 	 */
20407c478bd9Sstevel@tonic-gate 	zone0.zone_kcred = kcred;
20417c478bd9Sstevel@tonic-gate 	/*
20427c478bd9Sstevel@tonic-gate 	 * The global zone is fully initialized (except for zone_rootvp which
20437c478bd9Sstevel@tonic-gate 	 * will be set when the root filesystem is mounted).
20447c478bd9Sstevel@tonic-gate 	 */
20457c478bd9Sstevel@tonic-gate 	global_zone = &zone0;
2046cf8f45c7Sdstaff 
2047cf8f45c7Sdstaff 	/*
2048cf8f45c7Sdstaff 	 * Setup an event channel to send zone status change notifications on
2049cf8f45c7Sdstaff 	 */
2050cf8f45c7Sdstaff 	res = sysevent_evc_bind(ZONE_EVENT_CHANNEL, &zone_event_chan,
2051cf8f45c7Sdstaff 	    EVCH_CREAT);
2052cf8f45c7Sdstaff 
2053cf8f45c7Sdstaff 	if (res)
2054cf8f45c7Sdstaff 		panic("Sysevent_evc_bind failed during zone setup.\n");
20550209230bSgjelinek 
20567c478bd9Sstevel@tonic-gate }
20577c478bd9Sstevel@tonic-gate 
20587c478bd9Sstevel@tonic-gate static void
20597c478bd9Sstevel@tonic-gate zone_free(zone_t *zone)
20607c478bd9Sstevel@tonic-gate {
20617c478bd9Sstevel@tonic-gate 	ASSERT(zone != global_zone);
20627c478bd9Sstevel@tonic-gate 	ASSERT(zone->zone_ntasks == 0);
20637c478bd9Sstevel@tonic-gate 	ASSERT(zone->zone_nlwps == 0);
20647c478bd9Sstevel@tonic-gate 	ASSERT(zone->zone_cred_ref == 0);
20657c478bd9Sstevel@tonic-gate 	ASSERT(zone->zone_kcred == NULL);
20667c478bd9Sstevel@tonic-gate 	ASSERT(zone_status_get(zone) == ZONE_IS_DEAD ||
20677c478bd9Sstevel@tonic-gate 	    zone_status_get(zone) == ZONE_IS_UNINITIALIZED);
20687c478bd9Sstevel@tonic-gate 
2069c97ad5cdSakolb 	/*
2070c97ad5cdSakolb 	 * Remove any zone caps.
2071c97ad5cdSakolb 	 */
2072c97ad5cdSakolb 	cpucaps_zone_remove(zone);
2073c97ad5cdSakolb 
2074c97ad5cdSakolb 	ASSERT(zone->zone_cpucap == NULL);
2075c97ad5cdSakolb 
20767c478bd9Sstevel@tonic-gate 	/* remove from deathrow list */
20777c478bd9Sstevel@tonic-gate 	if (zone_status_get(zone) == ZONE_IS_DEAD) {
20787c478bd9Sstevel@tonic-gate 		ASSERT(zone->zone_ref == 0);
20797c478bd9Sstevel@tonic-gate 		mutex_enter(&zone_deathrow_lock);
20807c478bd9Sstevel@tonic-gate 		list_remove(&zone_deathrow, zone);
20817c478bd9Sstevel@tonic-gate 		mutex_exit(&zone_deathrow_lock);
20827c478bd9Sstevel@tonic-gate 	}
20837c478bd9Sstevel@tonic-gate 
20847c478bd9Sstevel@tonic-gate 	zone_free_zsd(zone);
2085fa9e4066Sahrens 	zone_free_datasets(zone);
20862b24ab6bSSebastien Roy 	list_destroy(&zone->zone_dl_list);
20877c478bd9Sstevel@tonic-gate 
20887c478bd9Sstevel@tonic-gate 	if (zone->zone_rootvp != NULL)
20897c478bd9Sstevel@tonic-gate 		VN_RELE(zone->zone_rootvp);
20907c478bd9Sstevel@tonic-gate 	if (zone->zone_rootpath)
20917c478bd9Sstevel@tonic-gate 		kmem_free(zone->zone_rootpath, zone->zone_rootpathlen);
20927c478bd9Sstevel@tonic-gate 	if (zone->zone_name != NULL)
20937c478bd9Sstevel@tonic-gate 		kmem_free(zone->zone_name, ZONENAME_MAX);
209445916cd2Sjpk 	if (zone->zone_slabel != NULL)
209545916cd2Sjpk 		label_rele(zone->zone_slabel);
20967c478bd9Sstevel@tonic-gate 	if (zone->zone_nodename != NULL)
20977c478bd9Sstevel@tonic-gate 		kmem_free(zone->zone_nodename, _SYS_NMLN);
20987c478bd9Sstevel@tonic-gate 	if (zone->zone_domain != NULL)
20997c478bd9Sstevel@tonic-gate 		kmem_free(zone->zone_domain, _SYS_NMLN);
21007c478bd9Sstevel@tonic-gate 	if (zone->zone_privset != NULL)
21017c478bd9Sstevel@tonic-gate 		kmem_free(zone->zone_privset, sizeof (priv_set_t));
21027c478bd9Sstevel@tonic-gate 	if (zone->zone_rctls != NULL)
21037c478bd9Sstevel@tonic-gate 		rctl_set_free(zone->zone_rctls);
21047c478bd9Sstevel@tonic-gate 	if (zone->zone_bootargs != NULL)
2105*0fbb751dSJohn Levon 		strfree(zone->zone_bootargs);
21063f2f09c1Sdp 	if (zone->zone_initname != NULL)
2107*0fbb751dSJohn Levon 		strfree(zone->zone_initname);
2108*0fbb751dSJohn Levon 	if (zone->zone_fs_allowed != NULL)
2109*0fbb751dSJohn Levon 		strfree(zone->zone_fs_allowed);
2110134a1f4eSCasper H.S. Dik 	if (zone->zone_pfexecd != NULL)
2111134a1f4eSCasper H.S. Dik 		klpd_freelist(&zone->zone_pfexecd);
21127c478bd9Sstevel@tonic-gate 	id_free(zoneid_space, zone->zone_id);
21137c478bd9Sstevel@tonic-gate 	mutex_destroy(&zone->zone_lock);
21147c478bd9Sstevel@tonic-gate 	cv_destroy(&zone->zone_cv);
211545916cd2Sjpk 	rw_destroy(&zone->zone_mlps.mlpl_rwlock);
2116835ee219SRobert Harris 	rw_destroy(&zone->zone_mntfs_db_lock);
21177c478bd9Sstevel@tonic-gate 	kmem_free(zone, sizeof (zone_t));
21187c478bd9Sstevel@tonic-gate }
21197c478bd9Sstevel@tonic-gate 
21207c478bd9Sstevel@tonic-gate /*
21217c478bd9Sstevel@tonic-gate  * See block comment at the top of this file for information about zone
21227c478bd9Sstevel@tonic-gate  * status values.
21237c478bd9Sstevel@tonic-gate  */
21247c478bd9Sstevel@tonic-gate /*
21257c478bd9Sstevel@tonic-gate  * Convenience function for setting zone status.
21267c478bd9Sstevel@tonic-gate  */
21277c478bd9Sstevel@tonic-gate static void
21287c478bd9Sstevel@tonic-gate zone_status_set(zone_t *zone, zone_status_t status)
21297c478bd9Sstevel@tonic-gate {
2130cf8f45c7Sdstaff 
2131cf8f45c7Sdstaff 	nvlist_t *nvl = NULL;
21327c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&zone_status_lock));
21337c478bd9Sstevel@tonic-gate 	ASSERT(status > ZONE_MIN_STATE && status <= ZONE_MAX_STATE &&
21347c478bd9Sstevel@tonic-gate 	    status >= zone_status_get(zone));
2135cf8f45c7Sdstaff 
2136cf8f45c7Sdstaff 	if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) ||
2137cf8f45c7Sdstaff 	    nvlist_add_string(nvl, ZONE_CB_NAME, zone->zone_name) ||
2138cf8f45c7Sdstaff 	    nvlist_add_string(nvl, ZONE_CB_NEWSTATE,
2139cf8f45c7Sdstaff 	    zone_status_table[status]) ||
2140cf8f45c7Sdstaff 	    nvlist_add_string(nvl, ZONE_CB_OLDSTATE,
2141cf8f45c7Sdstaff 	    zone_status_table[zone->zone_status]) ||
2142cf8f45c7Sdstaff 	    nvlist_add_int32(nvl, ZONE_CB_ZONEID, zone->zone_id) ||
2143cf8f45c7Sdstaff 	    nvlist_add_uint64(nvl, ZONE_CB_TIMESTAMP, (uint64_t)gethrtime()) ||
2144cf8f45c7Sdstaff 	    sysevent_evc_publish(zone_event_chan, ZONE_EVENT_STATUS_CLASS,
21453f2f09c1Sdp 	    ZONE_EVENT_STATUS_SUBCLASS, "sun.com", "kernel", nvl, EVCH_SLEEP)) {
2146cf8f45c7Sdstaff #ifdef DEBUG
2147cf8f45c7Sdstaff 		(void) printf(
2148cf8f45c7Sdstaff 		    "Failed to allocate and send zone state change event.\n");
2149cf8f45c7Sdstaff #endif
2150cf8f45c7Sdstaff 	}
2151cf8f45c7Sdstaff 	nvlist_free(nvl);
2152cf8f45c7Sdstaff 
21537c478bd9Sstevel@tonic-gate 	zone->zone_status = status;
2154cf8f45c7Sdstaff 
21557c478bd9Sstevel@tonic-gate 	cv_broadcast(&zone->zone_cv);
21567c478bd9Sstevel@tonic-gate }
21577c478bd9Sstevel@tonic-gate 
21587c478bd9Sstevel@tonic-gate /*
21597c478bd9Sstevel@tonic-gate  * Public function to retrieve the zone status.  The zone status may
21607c478bd9Sstevel@tonic-gate  * change after it is retrieved.
21617c478bd9Sstevel@tonic-gate  */
21627c478bd9Sstevel@tonic-gate zone_status_t
21637c478bd9Sstevel@tonic-gate zone_status_get(zone_t *zone)
21647c478bd9Sstevel@tonic-gate {
21657c478bd9Sstevel@tonic-gate 	return (zone->zone_status);
21667c478bd9Sstevel@tonic-gate }
21677c478bd9Sstevel@tonic-gate 
21687c478bd9Sstevel@tonic-gate static int
21697c478bd9Sstevel@tonic-gate zone_set_bootargs(zone_t *zone, const char *zone_bootargs)
21707c478bd9Sstevel@tonic-gate {
2171*0fbb751dSJohn Levon 	char *buf = kmem_zalloc(BOOTARGS_MAX, KM_SLEEP);
21723f2f09c1Sdp 	int err = 0;
21737c478bd9Sstevel@tonic-gate 
21743f2f09c1Sdp 	ASSERT(zone != global_zone);
2175*0fbb751dSJohn Levon 	if ((err = copyinstr(zone_bootargs, buf, BOOTARGS_MAX, NULL)) != 0)
21763f2f09c1Sdp 		goto done;	/* EFAULT or ENAMETOOLONG */
21773f2f09c1Sdp 
21783f2f09c1Sdp 	if (zone->zone_bootargs != NULL)
2179*0fbb751dSJohn Levon 		strfree(zone->zone_bootargs);
21803f2f09c1Sdp 
2181*0fbb751dSJohn Levon 	zone->zone_bootargs = strdup(buf);
21823f2f09c1Sdp 
21833f2f09c1Sdp done:
2184*0fbb751dSJohn Levon 	kmem_free(buf, BOOTARGS_MAX);
21853f2f09c1Sdp 	return (err);
21867c478bd9Sstevel@tonic-gate }
21877c478bd9Sstevel@tonic-gate 
21883f2f09c1Sdp static int
218959f2ff5cSedp zone_set_brand(zone_t *zone, const char *brand)
219059f2ff5cSedp {
219159f2ff5cSedp 	struct brand_attr *attrp;
219259f2ff5cSedp 	brand_t *bp;
219359f2ff5cSedp 
219459f2ff5cSedp 	attrp = kmem_alloc(sizeof (struct brand_attr), KM_SLEEP);
219559f2ff5cSedp 	if (copyin(brand, attrp, sizeof (struct brand_attr)) != 0) {
219659f2ff5cSedp 		kmem_free(attrp, sizeof (struct brand_attr));
219759f2ff5cSedp 		return (EFAULT);
219859f2ff5cSedp 	}
219959f2ff5cSedp 
220059f2ff5cSedp 	bp = brand_register_zone(attrp);
220159f2ff5cSedp 	kmem_free(attrp, sizeof (struct brand_attr));
220259f2ff5cSedp 	if (bp == NULL)
220359f2ff5cSedp 		return (EINVAL);
220459f2ff5cSedp 
220559f2ff5cSedp 	/*
220659f2ff5cSedp 	 * This is the only place where a zone can change it's brand.
220759f2ff5cSedp 	 * We already need to hold zone_status_lock to check the zone
220859f2ff5cSedp 	 * status, so we'll just use that lock to serialize zone
220959f2ff5cSedp 	 * branding requests as well.
221059f2ff5cSedp 	 */
221159f2ff5cSedp 	mutex_enter(&zone_status_lock);
221259f2ff5cSedp 
221359f2ff5cSedp 	/* Re-Branding is not allowed and the zone can't be booted yet */
221459f2ff5cSedp 	if ((ZONE_IS_BRANDED(zone)) ||
221559f2ff5cSedp 	    (zone_status_get(zone) >= ZONE_IS_BOOTING)) {
221659f2ff5cSedp 		mutex_exit(&zone_status_lock);
221759f2ff5cSedp 		brand_unregister_zone(bp);
221859f2ff5cSedp 		return (EINVAL);
221959f2ff5cSedp 	}
222059f2ff5cSedp 
2221319378d9Seh208807 	/* set up the brand specific data */
222259f2ff5cSedp 	zone->zone_brand = bp;
2223319378d9Seh208807 	ZBROP(zone)->b_init_brand_data(zone);
2224319378d9Seh208807 
222559f2ff5cSedp 	mutex_exit(&zone_status_lock);
222659f2ff5cSedp 	return (0);
222759f2ff5cSedp }
222859f2ff5cSedp 
222959f2ff5cSedp static int
2230*0fbb751dSJohn Levon zone_set_fs_allowed(zone_t *zone, const char *zone_fs_allowed)
2231*0fbb751dSJohn Levon {
2232*0fbb751dSJohn Levon 	char *buf = kmem_zalloc(ZONE_FS_ALLOWED_MAX, KM_SLEEP);
2233*0fbb751dSJohn Levon 	int err = 0;
2234*0fbb751dSJohn Levon 
2235*0fbb751dSJohn Levon 	ASSERT(zone != global_zone);
2236*0fbb751dSJohn Levon 	if ((err = copyinstr(zone_fs_allowed, buf,
2237*0fbb751dSJohn Levon 	    ZONE_FS_ALLOWED_MAX, NULL)) != 0)
2238*0fbb751dSJohn Levon 		goto done;
2239*0fbb751dSJohn Levon 
2240*0fbb751dSJohn Levon 	if (zone->zone_fs_allowed != NULL)
2241*0fbb751dSJohn Levon 		strfree(zone->zone_fs_allowed);
2242*0fbb751dSJohn Levon 
2243*0fbb751dSJohn Levon 	zone->zone_fs_allowed = strdup(buf);
2244*0fbb751dSJohn Levon 
2245*0fbb751dSJohn Levon done:
2246*0fbb751dSJohn Levon 	kmem_free(buf, ZONE_FS_ALLOWED_MAX);
2247*0fbb751dSJohn Levon 	return (err);
2248*0fbb751dSJohn Levon }
2249*0fbb751dSJohn Levon 
2250*0fbb751dSJohn Levon static int
22513f2f09c1Sdp zone_set_initname(zone_t *zone, const char *zone_initname)
22523f2f09c1Sdp {
22533f2f09c1Sdp 	char initname[INITNAME_SZ];
22543f2f09c1Sdp 	size_t len;
22553f2f09c1Sdp 	int err = 0;
22563f2f09c1Sdp 
22573f2f09c1Sdp 	ASSERT(zone != global_zone);
22583f2f09c1Sdp 	if ((err = copyinstr(zone_initname, initname, INITNAME_SZ, &len)) != 0)
22593f2f09c1Sdp 		return (err);	/* EFAULT or ENAMETOOLONG */
22603f2f09c1Sdp 
22613f2f09c1Sdp 	if (zone->zone_initname != NULL)
2262*0fbb751dSJohn Levon 		strfree(zone->zone_initname);
22633f2f09c1Sdp 
22643f2f09c1Sdp 	zone->zone_initname = kmem_alloc(strlen(initname) + 1, KM_SLEEP);
22653f2f09c1Sdp 	(void) strcpy(zone->zone_initname, initname);
22667c478bd9Sstevel@tonic-gate 	return (0);
22677c478bd9Sstevel@tonic-gate }
22687c478bd9Sstevel@tonic-gate 
22690209230bSgjelinek static int
22700209230bSgjelinek zone_set_phys_mcap(zone_t *zone, const uint64_t *zone_mcap)
22710209230bSgjelinek {
22720209230bSgjelinek 	uint64_t mcap;
22730209230bSgjelinek 	int err = 0;
22740209230bSgjelinek 
22750209230bSgjelinek 	if ((err = copyin(zone_mcap, &mcap, sizeof (uint64_t))) == 0)
22760209230bSgjelinek 		zone->zone_phys_mcap = mcap;
22770209230bSgjelinek 
22780209230bSgjelinek 	return (err);
22790209230bSgjelinek }
22800209230bSgjelinek 
22810209230bSgjelinek static int
22820209230bSgjelinek zone_set_sched_class(zone_t *zone, const char *new_class)
22830209230bSgjelinek {
22840209230bSgjelinek 	char sched_class[PC_CLNMSZ];
22850209230bSgjelinek 	id_t classid;
22860209230bSgjelinek 	int err;
22870209230bSgjelinek 
22880209230bSgjelinek 	ASSERT(zone != global_zone);
22890209230bSgjelinek 	if ((err = copyinstr(new_class, sched_class, PC_CLNMSZ, NULL)) != 0)
22900209230bSgjelinek 		return (err);	/* EFAULT or ENAMETOOLONG */
22910209230bSgjelinek 
229235a5a358SJonathan Adams 	if (getcid(sched_class, &classid) != 0 || CLASS_KERNEL(classid))
22930209230bSgjelinek 		return (set_errno(EINVAL));
22940209230bSgjelinek 	zone->zone_defaultcid = classid;
22950209230bSgjelinek 	ASSERT(zone->zone_defaultcid > 0 &&
22960209230bSgjelinek 	    zone->zone_defaultcid < loaded_classes);
22970209230bSgjelinek 
22980209230bSgjelinek 	return (0);
22990209230bSgjelinek }
23000209230bSgjelinek 
23017c478bd9Sstevel@tonic-gate /*
23027c478bd9Sstevel@tonic-gate  * Block indefinitely waiting for (zone_status >= status)
23037c478bd9Sstevel@tonic-gate  */
23047c478bd9Sstevel@tonic-gate void
23057c478bd9Sstevel@tonic-gate zone_status_wait(zone_t *zone, zone_status_t status)
23067c478bd9Sstevel@tonic-gate {
23077c478bd9Sstevel@tonic-gate 	ASSERT(status > ZONE_MIN_STATE && status <= ZONE_MAX_STATE);
23087c478bd9Sstevel@tonic-gate 
23097c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
23107c478bd9Sstevel@tonic-gate 	while (zone->zone_status < status) {
23117c478bd9Sstevel@tonic-gate 		cv_wait(&zone->zone_cv, &zone_status_lock);
23127c478bd9Sstevel@tonic-gate 	}
23137c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
23147c478bd9Sstevel@tonic-gate }
23157c478bd9Sstevel@tonic-gate 
23167c478bd9Sstevel@tonic-gate /*
23177c478bd9Sstevel@tonic-gate  * Private CPR-safe version of zone_status_wait().
23187c478bd9Sstevel@tonic-gate  */
23197c478bd9Sstevel@tonic-gate static void
23207c478bd9Sstevel@tonic-gate zone_status_wait_cpr(zone_t *zone, zone_status_t status, char *str)
23217c478bd9Sstevel@tonic-gate {
23227c478bd9Sstevel@tonic-gate 	callb_cpr_t cprinfo;
23237c478bd9Sstevel@tonic-gate 
23247c478bd9Sstevel@tonic-gate 	ASSERT(status > ZONE_MIN_STATE && status <= ZONE_MAX_STATE);
23257c478bd9Sstevel@tonic-gate 
23267c478bd9Sstevel@tonic-gate 	CALLB_CPR_INIT(&cprinfo, &zone_status_lock, callb_generic_cpr,
23277c478bd9Sstevel@tonic-gate 	    str);
23287c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
23297c478bd9Sstevel@tonic-gate 	while (zone->zone_status < status) {
23307c478bd9Sstevel@tonic-gate 		CALLB_CPR_SAFE_BEGIN(&cprinfo);
23317c478bd9Sstevel@tonic-gate 		cv_wait(&zone->zone_cv, &zone_status_lock);
23327c478bd9Sstevel@tonic-gate 		CALLB_CPR_SAFE_END(&cprinfo, &zone_status_lock);
23337c478bd9Sstevel@tonic-gate 	}
23347c478bd9Sstevel@tonic-gate 	/*
23357c478bd9Sstevel@tonic-gate 	 * zone_status_lock is implicitly released by the following.
23367c478bd9Sstevel@tonic-gate 	 */
23377c478bd9Sstevel@tonic-gate 	CALLB_CPR_EXIT(&cprinfo);
23387c478bd9Sstevel@tonic-gate }
23397c478bd9Sstevel@tonic-gate 
23407c478bd9Sstevel@tonic-gate /*
23417c478bd9Sstevel@tonic-gate  * Block until zone enters requested state or signal is received.  Return (0)
23427c478bd9Sstevel@tonic-gate  * if signaled, non-zero otherwise.
23437c478bd9Sstevel@tonic-gate  */
23447c478bd9Sstevel@tonic-gate int
23457c478bd9Sstevel@tonic-gate zone_status_wait_sig(zone_t *zone, zone_status_t status)
23467c478bd9Sstevel@tonic-gate {
23477c478bd9Sstevel@tonic-gate 	ASSERT(status > ZONE_MIN_STATE && status <= ZONE_MAX_STATE);
23487c478bd9Sstevel@tonic-gate 
23497c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
23507c478bd9Sstevel@tonic-gate 	while (zone->zone_status < status) {
23517c478bd9Sstevel@tonic-gate 		if (!cv_wait_sig(&zone->zone_cv, &zone_status_lock)) {
23527c478bd9Sstevel@tonic-gate 			mutex_exit(&zone_status_lock);
23537c478bd9Sstevel@tonic-gate 			return (0);
23547c478bd9Sstevel@tonic-gate 		}
23557c478bd9Sstevel@tonic-gate 	}
23567c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
23577c478bd9Sstevel@tonic-gate 	return (1);
23587c478bd9Sstevel@tonic-gate }
23597c478bd9Sstevel@tonic-gate 
23607c478bd9Sstevel@tonic-gate /*
23617c478bd9Sstevel@tonic-gate  * Block until the zone enters the requested state or the timeout expires,
23627c478bd9Sstevel@tonic-gate  * whichever happens first.  Return (-1) if operation timed out, time remaining
23637c478bd9Sstevel@tonic-gate  * otherwise.
23647c478bd9Sstevel@tonic-gate  */
23657c478bd9Sstevel@tonic-gate clock_t
23667c478bd9Sstevel@tonic-gate zone_status_timedwait(zone_t *zone, clock_t tim, zone_status_t status)
23677c478bd9Sstevel@tonic-gate {
23687c478bd9Sstevel@tonic-gate 	clock_t timeleft = 0;
23697c478bd9Sstevel@tonic-gate 
23707c478bd9Sstevel@tonic-gate 	ASSERT(status > ZONE_MIN_STATE && status <= ZONE_MAX_STATE);
23717c478bd9Sstevel@tonic-gate 
23727c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
23737c478bd9Sstevel@tonic-gate 	while (zone->zone_status < status && timeleft != -1) {
23747c478bd9Sstevel@tonic-gate 		timeleft = cv_timedwait(&zone->zone_cv, &zone_status_lock, tim);
23757c478bd9Sstevel@tonic-gate 	}
23767c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
23777c478bd9Sstevel@tonic-gate 	return (timeleft);
23787c478bd9Sstevel@tonic-gate }
23797c478bd9Sstevel@tonic-gate 
23807c478bd9Sstevel@tonic-gate /*
23817c478bd9Sstevel@tonic-gate  * Block until the zone enters the requested state, the current process is
23827c478bd9Sstevel@tonic-gate  * signaled,  or the timeout expires, whichever happens first.  Return (-1) if
23837c478bd9Sstevel@tonic-gate  * operation timed out, 0 if signaled, time remaining otherwise.
23847c478bd9Sstevel@tonic-gate  */
23857c478bd9Sstevel@tonic-gate clock_t
23867c478bd9Sstevel@tonic-gate zone_status_timedwait_sig(zone_t *zone, clock_t tim, zone_status_t status)
23877c478bd9Sstevel@tonic-gate {
2388d3d50737SRafael Vanoni 	clock_t timeleft = tim - ddi_get_lbolt();
23897c478bd9Sstevel@tonic-gate 
23907c478bd9Sstevel@tonic-gate 	ASSERT(status > ZONE_MIN_STATE && status <= ZONE_MAX_STATE);
23917c478bd9Sstevel@tonic-gate 
23927c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
23937c478bd9Sstevel@tonic-gate 	while (zone->zone_status < status) {
23947c478bd9Sstevel@tonic-gate 		timeleft = cv_timedwait_sig(&zone->zone_cv, &zone_status_lock,
23957c478bd9Sstevel@tonic-gate 		    tim);
23967c478bd9Sstevel@tonic-gate 		if (timeleft <= 0)
23977c478bd9Sstevel@tonic-gate 			break;
23987c478bd9Sstevel@tonic-gate 	}
23997c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
24007c478bd9Sstevel@tonic-gate 	return (timeleft);
24017c478bd9Sstevel@tonic-gate }
24027c478bd9Sstevel@tonic-gate 
24037c478bd9Sstevel@tonic-gate /*
24047c478bd9Sstevel@tonic-gate  * Zones have two reference counts: one for references from credential
24057c478bd9Sstevel@tonic-gate  * structures (zone_cred_ref), and one (zone_ref) for everything else.
24067c478bd9Sstevel@tonic-gate  * This is so we can allow a zone to be rebooted while there are still
24077c478bd9Sstevel@tonic-gate  * outstanding cred references, since certain drivers cache dblks (which
24087c478bd9Sstevel@tonic-gate  * implicitly results in cached creds).  We wait for zone_ref to drop to
24097c478bd9Sstevel@tonic-gate  * 0 (actually 1), but not zone_cred_ref.  The zone structure itself is
24107c478bd9Sstevel@tonic-gate  * later freed when the zone_cred_ref drops to 0, though nothing other
24117c478bd9Sstevel@tonic-gate  * than the zone id and privilege set should be accessed once the zone
24127c478bd9Sstevel@tonic-gate  * is "dead".
24137c478bd9Sstevel@tonic-gate  *
24147c478bd9Sstevel@tonic-gate  * A debugging flag, zone_wait_for_cred, can be set to a non-zero value
24157c478bd9Sstevel@tonic-gate  * to force halt/reboot to block waiting for the zone_cred_ref to drop
24167c478bd9Sstevel@tonic-gate  * to 0.  This can be useful to flush out other sources of cached creds
24177c478bd9Sstevel@tonic-gate  * that may be less innocuous than the driver case.
24187c478bd9Sstevel@tonic-gate  */
24197c478bd9Sstevel@tonic-gate 
24207c478bd9Sstevel@tonic-gate int zone_wait_for_cred = 0;
24217c478bd9Sstevel@tonic-gate 
24227c478bd9Sstevel@tonic-gate static void
24237c478bd9Sstevel@tonic-gate zone_hold_locked(zone_t *z)
24247c478bd9Sstevel@tonic-gate {
24257c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&z->zone_lock));
24267c478bd9Sstevel@tonic-gate 	z->zone_ref++;
24277c478bd9Sstevel@tonic-gate 	ASSERT(z->zone_ref != 0);
24287c478bd9Sstevel@tonic-gate }
24297c478bd9Sstevel@tonic-gate 
24307c478bd9Sstevel@tonic-gate void
24317c478bd9Sstevel@tonic-gate zone_hold(zone_t *z)
24327c478bd9Sstevel@tonic-gate {
24337c478bd9Sstevel@tonic-gate 	mutex_enter(&z->zone_lock);
24347c478bd9Sstevel@tonic-gate 	zone_hold_locked(z);
24357c478bd9Sstevel@tonic-gate 	mutex_exit(&z->zone_lock);
24367c478bd9Sstevel@tonic-gate }
24377c478bd9Sstevel@tonic-gate 
24387c478bd9Sstevel@tonic-gate /*
24397c478bd9Sstevel@tonic-gate  * If the non-cred ref count drops to 1 and either the cred ref count
24407c478bd9Sstevel@tonic-gate  * is 0 or we aren't waiting for cred references, the zone is ready to
24417c478bd9Sstevel@tonic-gate  * be destroyed.
24427c478bd9Sstevel@tonic-gate  */
24437c478bd9Sstevel@tonic-gate #define	ZONE_IS_UNREF(zone)	((zone)->zone_ref == 1 && \
24447c478bd9Sstevel@tonic-gate 	    (!zone_wait_for_cred || (zone)->zone_cred_ref == 0))
24457c478bd9Sstevel@tonic-gate 
24467c478bd9Sstevel@tonic-gate void
24477c478bd9Sstevel@tonic-gate zone_rele(zone_t *z)
24487c478bd9Sstevel@tonic-gate {
24497c478bd9Sstevel@tonic-gate 	boolean_t wakeup;
24507c478bd9Sstevel@tonic-gate 
24517c478bd9Sstevel@tonic-gate 	mutex_enter(&z->zone_lock);
24527c478bd9Sstevel@tonic-gate 	ASSERT(z->zone_ref != 0);
24537c478bd9Sstevel@tonic-gate 	z->zone_ref--;
24547c478bd9Sstevel@tonic-gate 	if (z->zone_ref == 0 && z->zone_cred_ref == 0) {
24557c478bd9Sstevel@tonic-gate 		/* no more refs, free the structure */
24567c478bd9Sstevel@tonic-gate 		mutex_exit(&z->zone_lock);
24577c478bd9Sstevel@tonic-gate 		zone_free(z);
24587c478bd9Sstevel@tonic-gate 		return;
24597c478bd9Sstevel@tonic-gate 	}
24607c478bd9Sstevel@tonic-gate 	/* signal zone_destroy so the zone can finish halting */
24617c478bd9Sstevel@tonic-gate 	wakeup = (ZONE_IS_UNREF(z) && zone_status_get(z) >= ZONE_IS_DEAD);
24627c478bd9Sstevel@tonic-gate 	mutex_exit(&z->zone_lock);
24637c478bd9Sstevel@tonic-gate 
24647c478bd9Sstevel@tonic-gate 	if (wakeup) {
24657c478bd9Sstevel@tonic-gate 		/*
24667c478bd9Sstevel@tonic-gate 		 * Grabbing zonehash_lock here effectively synchronizes with
24677c478bd9Sstevel@tonic-gate 		 * zone_destroy() to avoid missed signals.
24687c478bd9Sstevel@tonic-gate 		 */
24697c478bd9Sstevel@tonic-gate 		mutex_enter(&zonehash_lock);
24707c478bd9Sstevel@tonic-gate 		cv_broadcast(&zone_destroy_cv);
24717c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
24727c478bd9Sstevel@tonic-gate 	}
24737c478bd9Sstevel@tonic-gate }
24747c478bd9Sstevel@tonic-gate 
24757c478bd9Sstevel@tonic-gate void
24767c478bd9Sstevel@tonic-gate zone_cred_hold(zone_t *z)
24777c478bd9Sstevel@tonic-gate {
24787c478bd9Sstevel@tonic-gate 	mutex_enter(&z->zone_lock);
24797c478bd9Sstevel@tonic-gate 	z->zone_cred_ref++;
24807c478bd9Sstevel@tonic-gate 	ASSERT(z->zone_cred_ref != 0);
24817c478bd9Sstevel@tonic-gate 	mutex_exit(&z->zone_lock);
24827c478bd9Sstevel@tonic-gate }
24837c478bd9Sstevel@tonic-gate 
24847c478bd9Sstevel@tonic-gate void
24857c478bd9Sstevel@tonic-gate zone_cred_rele(zone_t *z)
24867c478bd9Sstevel@tonic-gate {
24877c478bd9Sstevel@tonic-gate 	boolean_t wakeup;
24887c478bd9Sstevel@tonic-gate 
24897c478bd9Sstevel@tonic-gate 	mutex_enter(&z->zone_lock);
24907c478bd9Sstevel@tonic-gate 	ASSERT(z->zone_cred_ref != 0);
24917c478bd9Sstevel@tonic-gate 	z->zone_cred_ref--;
24927c478bd9Sstevel@tonic-gate 	if (z->zone_ref == 0 && z->zone_cred_ref == 0) {
24937c478bd9Sstevel@tonic-gate 		/* no more refs, free the structure */
24947c478bd9Sstevel@tonic-gate 		mutex_exit(&z->zone_lock);
24957c478bd9Sstevel@tonic-gate 		zone_free(z);
24967c478bd9Sstevel@tonic-gate 		return;
24977c478bd9Sstevel@tonic-gate 	}
24987c478bd9Sstevel@tonic-gate 	/*
24997c478bd9Sstevel@tonic-gate 	 * If zone_destroy is waiting for the cred references to drain
25007c478bd9Sstevel@tonic-gate 	 * out, and they have, signal it.
25017c478bd9Sstevel@tonic-gate 	 */
25027c478bd9Sstevel@tonic-gate 	wakeup = (zone_wait_for_cred && ZONE_IS_UNREF(z) &&
25037c478bd9Sstevel@tonic-gate 	    zone_status_get(z) >= ZONE_IS_DEAD);
25047c478bd9Sstevel@tonic-gate 	mutex_exit(&z->zone_lock);
25057c478bd9Sstevel@tonic-gate 
25067c478bd9Sstevel@tonic-gate 	if (wakeup) {
25077c478bd9Sstevel@tonic-gate 		/*
25087c478bd9Sstevel@tonic-gate 		 * Grabbing zonehash_lock here effectively synchronizes with
25097c478bd9Sstevel@tonic-gate 		 * zone_destroy() to avoid missed signals.
25107c478bd9Sstevel@tonic-gate 		 */
25117c478bd9Sstevel@tonic-gate 		mutex_enter(&zonehash_lock);
25127c478bd9Sstevel@tonic-gate 		cv_broadcast(&zone_destroy_cv);
25137c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
25147c478bd9Sstevel@tonic-gate 	}
25157c478bd9Sstevel@tonic-gate }
25167c478bd9Sstevel@tonic-gate 
25177c478bd9Sstevel@tonic-gate void
25187c478bd9Sstevel@tonic-gate zone_task_hold(zone_t *z)
25197c478bd9Sstevel@tonic-gate {
25207c478bd9Sstevel@tonic-gate 	mutex_enter(&z->zone_lock);
25217c478bd9Sstevel@tonic-gate 	z->zone_ntasks++;
25227c478bd9Sstevel@tonic-gate 	ASSERT(z->zone_ntasks != 0);
25237c478bd9Sstevel@tonic-gate 	mutex_exit(&z->zone_lock);
25247c478bd9Sstevel@tonic-gate }
25257c478bd9Sstevel@tonic-gate 
25267c478bd9Sstevel@tonic-gate void
25277c478bd9Sstevel@tonic-gate zone_task_rele(zone_t *zone)
25287c478bd9Sstevel@tonic-gate {
25297c478bd9Sstevel@tonic-gate 	uint_t refcnt;
25307c478bd9Sstevel@tonic-gate 
25317c478bd9Sstevel@tonic-gate 	mutex_enter(&zone->zone_lock);
25327c478bd9Sstevel@tonic-gate 	ASSERT(zone->zone_ntasks != 0);
25337c478bd9Sstevel@tonic-gate 	refcnt = --zone->zone_ntasks;
25347c478bd9Sstevel@tonic-gate 	if (refcnt > 1)	{	/* Common case */
25357c478bd9Sstevel@tonic-gate 		mutex_exit(&zone->zone_lock);
25367c478bd9Sstevel@tonic-gate 		return;
25377c478bd9Sstevel@tonic-gate 	}
25387c478bd9Sstevel@tonic-gate 	zone_hold_locked(zone);	/* so we can use the zone_t later */
25397c478bd9Sstevel@tonic-gate 	mutex_exit(&zone->zone_lock);
25407c478bd9Sstevel@tonic-gate 	if (refcnt == 1) {
25417c478bd9Sstevel@tonic-gate 		/*
25427c478bd9Sstevel@tonic-gate 		 * See if the zone is shutting down.
25437c478bd9Sstevel@tonic-gate 		 */
25447c478bd9Sstevel@tonic-gate 		mutex_enter(&zone_status_lock);
25457c478bd9Sstevel@tonic-gate 		if (zone_status_get(zone) != ZONE_IS_SHUTTING_DOWN) {
25467c478bd9Sstevel@tonic-gate 			goto out;
25477c478bd9Sstevel@tonic-gate 		}
25487c478bd9Sstevel@tonic-gate 
25497c478bd9Sstevel@tonic-gate 		/*
25507c478bd9Sstevel@tonic-gate 		 * Make sure the ntasks didn't change since we
25517c478bd9Sstevel@tonic-gate 		 * dropped zone_lock.
25527c478bd9Sstevel@tonic-gate 		 */
25537c478bd9Sstevel@tonic-gate 		mutex_enter(&zone->zone_lock);
25547c478bd9Sstevel@tonic-gate 		if (refcnt != zone->zone_ntasks) {
25557c478bd9Sstevel@tonic-gate 			mutex_exit(&zone->zone_lock);
25567c478bd9Sstevel@tonic-gate 			goto out;
25577c478bd9Sstevel@tonic-gate 		}
25587c478bd9Sstevel@tonic-gate 		mutex_exit(&zone->zone_lock);
25597c478bd9Sstevel@tonic-gate 
25607c478bd9Sstevel@tonic-gate 		/*
25617c478bd9Sstevel@tonic-gate 		 * No more user processes in the zone.  The zone is empty.
25627c478bd9Sstevel@tonic-gate 		 */
25637c478bd9Sstevel@tonic-gate 		zone_status_set(zone, ZONE_IS_EMPTY);
25647c478bd9Sstevel@tonic-gate 		goto out;
25657c478bd9Sstevel@tonic-gate 	}
25667c478bd9Sstevel@tonic-gate 
25677c478bd9Sstevel@tonic-gate 	ASSERT(refcnt == 0);
25687c478bd9Sstevel@tonic-gate 	/*
25697c478bd9Sstevel@tonic-gate 	 * zsched has exited; the zone is dead.
25707c478bd9Sstevel@tonic-gate 	 */
25717c478bd9Sstevel@tonic-gate 	zone->zone_zsched = NULL;		/* paranoia */
25727c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
25737c478bd9Sstevel@tonic-gate 	zone_status_set(zone, ZONE_IS_DEAD);
25747c478bd9Sstevel@tonic-gate out:
25757c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
25767c478bd9Sstevel@tonic-gate 	zone_rele(zone);
25777c478bd9Sstevel@tonic-gate }
25787c478bd9Sstevel@tonic-gate 
25797c478bd9Sstevel@tonic-gate zoneid_t
25807c478bd9Sstevel@tonic-gate getzoneid(void)
25817c478bd9Sstevel@tonic-gate {
25827c478bd9Sstevel@tonic-gate 	return (curproc->p_zone->zone_id);
25837c478bd9Sstevel@tonic-gate }
25847c478bd9Sstevel@tonic-gate 
25857c478bd9Sstevel@tonic-gate /*
25867c478bd9Sstevel@tonic-gate  * Internal versions of zone_find_by_*().  These don't zone_hold() or
25877c478bd9Sstevel@tonic-gate  * check the validity of a zone's state.
25887c478bd9Sstevel@tonic-gate  */
25897c478bd9Sstevel@tonic-gate static zone_t *
25907c478bd9Sstevel@tonic-gate zone_find_all_by_id(zoneid_t zoneid)
25917c478bd9Sstevel@tonic-gate {
25927c478bd9Sstevel@tonic-gate 	mod_hash_val_t hv;
25937c478bd9Sstevel@tonic-gate 	zone_t *zone = NULL;
25947c478bd9Sstevel@tonic-gate 
25957c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&zonehash_lock));
25967c478bd9Sstevel@tonic-gate 
25977c478bd9Sstevel@tonic-gate 	if (mod_hash_find(zonehashbyid,
25987c478bd9Sstevel@tonic-gate 	    (mod_hash_key_t)(uintptr_t)zoneid, &hv) == 0)
25997c478bd9Sstevel@tonic-gate 		zone = (zone_t *)hv;
26007c478bd9Sstevel@tonic-gate 	return (zone);
26017c478bd9Sstevel@tonic-gate }
26027c478bd9Sstevel@tonic-gate 
26037c478bd9Sstevel@tonic-gate static zone_t *
260445916cd2Sjpk zone_find_all_by_label(const ts_label_t *label)
260545916cd2Sjpk {
260645916cd2Sjpk 	mod_hash_val_t hv;
260745916cd2Sjpk 	zone_t *zone = NULL;
260845916cd2Sjpk 
260945916cd2Sjpk 	ASSERT(MUTEX_HELD(&zonehash_lock));
261045916cd2Sjpk 
261145916cd2Sjpk 	/*
261245916cd2Sjpk 	 * zonehashbylabel is not maintained for unlabeled systems
261345916cd2Sjpk 	 */
261445916cd2Sjpk 	if (!is_system_labeled())
261545916cd2Sjpk 		return (NULL);
261645916cd2Sjpk 	if (mod_hash_find(zonehashbylabel, (mod_hash_key_t)label, &hv) == 0)
261745916cd2Sjpk 		zone = (zone_t *)hv;
261845916cd2Sjpk 	return (zone);
261945916cd2Sjpk }
262045916cd2Sjpk 
262145916cd2Sjpk static zone_t *
26227c478bd9Sstevel@tonic-gate zone_find_all_by_name(char *name)
26237c478bd9Sstevel@tonic-gate {
26247c478bd9Sstevel@tonic-gate 	mod_hash_val_t hv;
26257c478bd9Sstevel@tonic-gate 	zone_t *zone = NULL;
26267c478bd9Sstevel@tonic-gate 
26277c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&zonehash_lock));
26287c478bd9Sstevel@tonic-gate 
26297c478bd9Sstevel@tonic-gate 	if (mod_hash_find(zonehashbyname, (mod_hash_key_t)name, &hv) == 0)
26307c478bd9Sstevel@tonic-gate 		zone = (zone_t *)hv;
26317c478bd9Sstevel@tonic-gate 	return (zone);
26327c478bd9Sstevel@tonic-gate }
26337c478bd9Sstevel@tonic-gate 
26347c478bd9Sstevel@tonic-gate /*
26357c478bd9Sstevel@tonic-gate  * Public interface for looking up a zone by zoneid.  Only returns the zone if
26367c478bd9Sstevel@tonic-gate  * it is fully initialized, and has not yet begun the zone_destroy() sequence.
26377c478bd9Sstevel@tonic-gate  * Caller must call zone_rele() once it is done with the zone.
26387c478bd9Sstevel@tonic-gate  *
26397c478bd9Sstevel@tonic-gate  * The zone may begin the zone_destroy() sequence immediately after this
26407c478bd9Sstevel@tonic-gate  * function returns, but may be safely used until zone_rele() is called.
26417c478bd9Sstevel@tonic-gate  */
26427c478bd9Sstevel@tonic-gate zone_t *
26437c478bd9Sstevel@tonic-gate zone_find_by_id(zoneid_t zoneid)
26447c478bd9Sstevel@tonic-gate {
26457c478bd9Sstevel@tonic-gate 	zone_t *zone;
26467c478bd9Sstevel@tonic-gate 	zone_status_t status;
26477c478bd9Sstevel@tonic-gate 
26487c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
26497c478bd9Sstevel@tonic-gate 	if ((zone = zone_find_all_by_id(zoneid)) == NULL) {
26507c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
26517c478bd9Sstevel@tonic-gate 		return (NULL);
26527c478bd9Sstevel@tonic-gate 	}
26537c478bd9Sstevel@tonic-gate 	status = zone_status_get(zone);
26547c478bd9Sstevel@tonic-gate 	if (status < ZONE_IS_READY || status > ZONE_IS_DOWN) {
26557c478bd9Sstevel@tonic-gate 		/*
26567c478bd9Sstevel@tonic-gate 		 * For all practical purposes the zone doesn't exist.
26577c478bd9Sstevel@tonic-gate 		 */
26587c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
26597c478bd9Sstevel@tonic-gate 		return (NULL);
26607c478bd9Sstevel@tonic-gate 	}
26617c478bd9Sstevel@tonic-gate 	zone_hold(zone);
26627c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
26637c478bd9Sstevel@tonic-gate 	return (zone);
26647c478bd9Sstevel@tonic-gate }
26657c478bd9Sstevel@tonic-gate 
26667c478bd9Sstevel@tonic-gate /*
266745916cd2Sjpk  * Similar to zone_find_by_id, but using zone label as the key.
266845916cd2Sjpk  */
266945916cd2Sjpk zone_t *
267045916cd2Sjpk zone_find_by_label(const ts_label_t *label)
267145916cd2Sjpk {
267245916cd2Sjpk 	zone_t *zone;
267342bc57c4Srica 	zone_status_t status;
267445916cd2Sjpk 
267545916cd2Sjpk 	mutex_enter(&zonehash_lock);
267645916cd2Sjpk 	if ((zone = zone_find_all_by_label(label)) == NULL) {
267745916cd2Sjpk 		mutex_exit(&zonehash_lock);
267845916cd2Sjpk 		return (NULL);
267945916cd2Sjpk 	}
268042bc57c4Srica 
268142bc57c4Srica 	status = zone_status_get(zone);
268242bc57c4Srica 	if (status > ZONE_IS_DOWN) {
268345916cd2Sjpk 		/*
268445916cd2Sjpk 		 * For all practical purposes the zone doesn't exist.
268545916cd2Sjpk 		 */
268642bc57c4Srica 		mutex_exit(&zonehash_lock);
268742bc57c4Srica 		return (NULL);
268845916cd2Sjpk 	}
268942bc57c4Srica 	zone_hold(zone);
269045916cd2Sjpk 	mutex_exit(&zonehash_lock);
269145916cd2Sjpk 	return (zone);
269245916cd2Sjpk }
269345916cd2Sjpk 
269445916cd2Sjpk /*
26957c478bd9Sstevel@tonic-gate  * Similar to zone_find_by_id, but using zone name as the key.
26967c478bd9Sstevel@tonic-gate  */
26977c478bd9Sstevel@tonic-gate zone_t *
26987c478bd9Sstevel@tonic-gate zone_find_by_name(char *name)
26997c478bd9Sstevel@tonic-gate {
27007c478bd9Sstevel@tonic-gate 	zone_t *zone;
27017c478bd9Sstevel@tonic-gate 	zone_status_t status;
27027c478bd9Sstevel@tonic-gate 
27037c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
27047c478bd9Sstevel@tonic-gate 	if ((zone = zone_find_all_by_name(name)) == NULL) {
27057c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
27067c478bd9Sstevel@tonic-gate 		return (NULL);
27077c478bd9Sstevel@tonic-gate 	}
27087c478bd9Sstevel@tonic-gate 	status = zone_status_get(zone);
27097c478bd9Sstevel@tonic-gate 	if (status < ZONE_IS_READY || status > ZONE_IS_DOWN) {
27107c478bd9Sstevel@tonic-gate 		/*
27117c478bd9Sstevel@tonic-gate 		 * For all practical purposes the zone doesn't exist.
27127c478bd9Sstevel@tonic-gate 		 */
27137c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
27147c478bd9Sstevel@tonic-gate 		return (NULL);
27157c478bd9Sstevel@tonic-gate 	}
27167c478bd9Sstevel@tonic-gate 	zone_hold(zone);
27177c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
27187c478bd9Sstevel@tonic-gate 	return (zone);
27197c478bd9Sstevel@tonic-gate }
27207c478bd9Sstevel@tonic-gate 
27217c478bd9Sstevel@tonic-gate /*
27227c478bd9Sstevel@tonic-gate  * Similar to zone_find_by_id(), using the path as a key.  For instance,
27237c478bd9Sstevel@tonic-gate  * if there is a zone "foo" rooted at /foo/root, and the path argument
27247c478bd9Sstevel@tonic-gate  * is "/foo/root/proc", it will return the held zone_t corresponding to
27257c478bd9Sstevel@tonic-gate  * zone "foo".
27267c478bd9Sstevel@tonic-gate  *
27277c478bd9Sstevel@tonic-gate  * zone_find_by_path() always returns a non-NULL value, since at the
27287c478bd9Sstevel@tonic-gate  * very least every path will be contained in the global zone.
27297c478bd9Sstevel@tonic-gate  *
27307c478bd9Sstevel@tonic-gate  * As with the other zone_find_by_*() functions, the caller is
27317c478bd9Sstevel@tonic-gate  * responsible for zone_rele()ing the return value of this function.
27327c478bd9Sstevel@tonic-gate  */
27337c478bd9Sstevel@tonic-gate zone_t *
27347c478bd9Sstevel@tonic-gate zone_find_by_path(const char *path)
27357c478bd9Sstevel@tonic-gate {
27367c478bd9Sstevel@tonic-gate 	zone_t *zone;
27377c478bd9Sstevel@tonic-gate 	zone_t *zret = NULL;
27387c478bd9Sstevel@tonic-gate 	zone_status_t status;
27397c478bd9Sstevel@tonic-gate 
27407c478bd9Sstevel@tonic-gate 	if (path == NULL) {
27417c478bd9Sstevel@tonic-gate 		/*
27427c478bd9Sstevel@tonic-gate 		 * Call from rootconf().
27437c478bd9Sstevel@tonic-gate 		 */
27447c478bd9Sstevel@tonic-gate 		zone_hold(global_zone);
27457c478bd9Sstevel@tonic-gate 		return (global_zone);
27467c478bd9Sstevel@tonic-gate 	}
27477c478bd9Sstevel@tonic-gate 	ASSERT(*path == '/');
27487c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
27497c478bd9Sstevel@tonic-gate 	for (zone = list_head(&zone_active); zone != NULL;
27507c478bd9Sstevel@tonic-gate 	    zone = list_next(&zone_active, zone)) {
27517c478bd9Sstevel@tonic-gate 		if (ZONE_PATH_VISIBLE(path, zone))
27527c478bd9Sstevel@tonic-gate 			zret = zone;
27537c478bd9Sstevel@tonic-gate 	}
27547c478bd9Sstevel@tonic-gate 	ASSERT(zret != NULL);
27557c478bd9Sstevel@tonic-gate 	status = zone_status_get(zret);
27567c478bd9Sstevel@tonic-gate 	if (status < ZONE_IS_READY || status > ZONE_IS_DOWN) {
27577c478bd9Sstevel@tonic-gate 		/*
27587c478bd9Sstevel@tonic-gate 		 * Zone practically doesn't exist.
27597c478bd9Sstevel@tonic-gate 		 */
27607c478bd9Sstevel@tonic-gate 		zret = global_zone;
27617c478bd9Sstevel@tonic-gate 	}
27627c478bd9Sstevel@tonic-gate 	zone_hold(zret);
27637c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
27647c478bd9Sstevel@tonic-gate 	return (zret);
27657c478bd9Sstevel@tonic-gate }
27667c478bd9Sstevel@tonic-gate 
27677c478bd9Sstevel@tonic-gate /*
27687c478bd9Sstevel@tonic-gate  * Get the number of cpus visible to this zone.  The system-wide global
27697c478bd9Sstevel@tonic-gate  * 'ncpus' is returned if pools are disabled, the caller is in the
27707c478bd9Sstevel@tonic-gate  * global zone, or a NULL zone argument is passed in.
27717c478bd9Sstevel@tonic-gate  */
27727c478bd9Sstevel@tonic-gate int
27737c478bd9Sstevel@tonic-gate zone_ncpus_get(zone_t *zone)
27747c478bd9Sstevel@tonic-gate {
27757c478bd9Sstevel@tonic-gate 	int myncpus = zone == NULL ? 0 : zone->zone_ncpus;
27767c478bd9Sstevel@tonic-gate 
27777c478bd9Sstevel@tonic-gate 	return (myncpus != 0 ? myncpus : ncpus);
27787c478bd9Sstevel@tonic-gate }
27797c478bd9Sstevel@tonic-gate 
27807c478bd9Sstevel@tonic-gate /*
27817c478bd9Sstevel@tonic-gate  * Get the number of online cpus visible to this zone.  The system-wide
27827c478bd9Sstevel@tonic-gate  * global 'ncpus_online' is returned if pools are disabled, the caller
27837c478bd9Sstevel@tonic-gate  * is in the global zone, or a NULL zone argument is passed in.
27847c478bd9Sstevel@tonic-gate  */
27857c478bd9Sstevel@tonic-gate int
27867c478bd9Sstevel@tonic-gate zone_ncpus_online_get(zone_t *zone)
27877c478bd9Sstevel@tonic-gate {
27887c478bd9Sstevel@tonic-gate 	int myncpus_online = zone == NULL ? 0 : zone->zone_ncpus_online;
27897c478bd9Sstevel@tonic-gate 
27907c478bd9Sstevel@tonic-gate 	return (myncpus_online != 0 ? myncpus_online : ncpus_online);
27917c478bd9Sstevel@tonic-gate }
27927c478bd9Sstevel@tonic-gate 
27937c478bd9Sstevel@tonic-gate /*
27947c478bd9Sstevel@tonic-gate  * Return the pool to which the zone is currently bound.
27957c478bd9Sstevel@tonic-gate  */
27967c478bd9Sstevel@tonic-gate pool_t *
27977c478bd9Sstevel@tonic-gate zone_pool_get(zone_t *zone)
27987c478bd9Sstevel@tonic-gate {
27997c478bd9Sstevel@tonic-gate 	ASSERT(pool_lock_held());
28007c478bd9Sstevel@tonic-gate 
28017c478bd9Sstevel@tonic-gate 	return (zone->zone_pool);
28027c478bd9Sstevel@tonic-gate }
28037c478bd9Sstevel@tonic-gate 
28047c478bd9Sstevel@tonic-gate /*
28057c478bd9Sstevel@tonic-gate  * Set the zone's pool pointer and update the zone's visibility to match
28067c478bd9Sstevel@tonic-gate  * the resources in the new pool.
28077c478bd9Sstevel@tonic-gate  */
28087c478bd9Sstevel@tonic-gate void
28097c478bd9Sstevel@tonic-gate zone_pool_set(zone_t *zone, pool_t *pool)
28107c478bd9Sstevel@tonic-gate {
28117c478bd9Sstevel@tonic-gate 	ASSERT(pool_lock_held());
28127c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
28137c478bd9Sstevel@tonic-gate 
28147c478bd9Sstevel@tonic-gate 	zone->zone_pool = pool;
28157c478bd9Sstevel@tonic-gate 	zone_pset_set(zone, pool->pool_pset->pset_id);
28167c478bd9Sstevel@tonic-gate }
28177c478bd9Sstevel@tonic-gate 
28187c478bd9Sstevel@tonic-gate /*
28197c478bd9Sstevel@tonic-gate  * Return the cached value of the id of the processor set to which the
28207c478bd9Sstevel@tonic-gate  * zone is currently bound.  The value will be ZONE_PS_INVAL if the pools
28217c478bd9Sstevel@tonic-gate  * facility is disabled.
28227c478bd9Sstevel@tonic-gate  */
28237c478bd9Sstevel@tonic-gate psetid_t
28247c478bd9Sstevel@tonic-gate zone_pset_get(zone_t *zone)
28257c478bd9Sstevel@tonic-gate {
28267c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
28277c478bd9Sstevel@tonic-gate 
28287c478bd9Sstevel@tonic-gate 	return (zone->zone_psetid);
28297c478bd9Sstevel@tonic-gate }
28307c478bd9Sstevel@tonic-gate 
28317c478bd9Sstevel@tonic-gate /*
28327c478bd9Sstevel@tonic-gate  * Set the cached value of the id of the processor set to which the zone
28337c478bd9Sstevel@tonic-gate  * is currently bound.  Also update the zone's visibility to match the
28347c478bd9Sstevel@tonic-gate  * resources in the new processor set.
28357c478bd9Sstevel@tonic-gate  */
28367c478bd9Sstevel@tonic-gate void
28377c478bd9Sstevel@tonic-gate zone_pset_set(zone_t *zone, psetid_t newpsetid)
28387c478bd9Sstevel@tonic-gate {
28397c478bd9Sstevel@tonic-gate 	psetid_t oldpsetid;
28407c478bd9Sstevel@tonic-gate 
28417c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
28427c478bd9Sstevel@tonic-gate 	oldpsetid = zone_pset_get(zone);
28437c478bd9Sstevel@tonic-gate 
28447c478bd9Sstevel@tonic-gate 	if (oldpsetid == newpsetid)
28457c478bd9Sstevel@tonic-gate 		return;
28467c478bd9Sstevel@tonic-gate 	/*
28477c478bd9Sstevel@tonic-gate 	 * Global zone sees all.
28487c478bd9Sstevel@tonic-gate 	 */
28497c478bd9Sstevel@tonic-gate 	if (zone != global_zone) {
28507c478bd9Sstevel@tonic-gate 		zone->zone_psetid = newpsetid;
28517c478bd9Sstevel@tonic-gate 		if (newpsetid != ZONE_PS_INVAL)
28527c478bd9Sstevel@tonic-gate 			pool_pset_visibility_add(newpsetid, zone);
28537c478bd9Sstevel@tonic-gate 		if (oldpsetid != ZONE_PS_INVAL)
28547c478bd9Sstevel@tonic-gate 			pool_pset_visibility_remove(oldpsetid, zone);
28557c478bd9Sstevel@tonic-gate 	}
28567c478bd9Sstevel@tonic-gate 	/*
28577c478bd9Sstevel@tonic-gate 	 * Disabling pools, so we should start using the global values
28587c478bd9Sstevel@tonic-gate 	 * for ncpus and ncpus_online.
28597c478bd9Sstevel@tonic-gate 	 */
28607c478bd9Sstevel@tonic-gate 	if (newpsetid == ZONE_PS_INVAL) {
28617c478bd9Sstevel@tonic-gate 		zone->zone_ncpus = 0;
28627c478bd9Sstevel@tonic-gate 		zone->zone_ncpus_online = 0;
28637c478bd9Sstevel@tonic-gate 	}
28647c478bd9Sstevel@tonic-gate }
28657c478bd9Sstevel@tonic-gate 
28667c478bd9Sstevel@tonic-gate /*
28677c478bd9Sstevel@tonic-gate  * Walk the list of active zones and issue the provided callback for
28687c478bd9Sstevel@tonic-gate  * each of them.
28697c478bd9Sstevel@tonic-gate  *
28707c478bd9Sstevel@tonic-gate  * Caller must not be holding any locks that may be acquired under
28717c478bd9Sstevel@tonic-gate  * zonehash_lock.  See comment at the beginning of the file for a list of
28727c478bd9Sstevel@tonic-gate  * common locks and their interactions with zones.
28737c478bd9Sstevel@tonic-gate  */
28747c478bd9Sstevel@tonic-gate int
28757c478bd9Sstevel@tonic-gate zone_walk(int (*cb)(zone_t *, void *), void *data)
28767c478bd9Sstevel@tonic-gate {
28777c478bd9Sstevel@tonic-gate 	zone_t *zone;
28787c478bd9Sstevel@tonic-gate 	int ret = 0;
28797c478bd9Sstevel@tonic-gate 	zone_status_t status;
28807c478bd9Sstevel@tonic-gate 
28817c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
28827c478bd9Sstevel@tonic-gate 	for (zone = list_head(&zone_active); zone != NULL;
28837c478bd9Sstevel@tonic-gate 	    zone = list_next(&zone_active, zone)) {
28847c478bd9Sstevel@tonic-gate 		/*
28857c478bd9Sstevel@tonic-gate 		 * Skip zones that shouldn't be externally visible.
28867c478bd9Sstevel@tonic-gate 		 */
28877c478bd9Sstevel@tonic-gate 		status = zone_status_get(zone);
28887c478bd9Sstevel@tonic-gate 		if (status < ZONE_IS_READY || status > ZONE_IS_DOWN)
28897c478bd9Sstevel@tonic-gate 			continue;
28907c478bd9Sstevel@tonic-gate 		/*
28917c478bd9Sstevel@tonic-gate 		 * Bail immediately if any callback invocation returns a
28927c478bd9Sstevel@tonic-gate 		 * non-zero value.
28937c478bd9Sstevel@tonic-gate 		 */
28947c478bd9Sstevel@tonic-gate 		ret = (*cb)(zone, data);
28957c478bd9Sstevel@tonic-gate 		if (ret != 0)
28967c478bd9Sstevel@tonic-gate 			break;
28977c478bd9Sstevel@tonic-gate 	}
28987c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
28997c478bd9Sstevel@tonic-gate 	return (ret);
29007c478bd9Sstevel@tonic-gate }
29017c478bd9Sstevel@tonic-gate 
29027c478bd9Sstevel@tonic-gate static int
29037c478bd9Sstevel@tonic-gate zone_set_root(zone_t *zone, const char *upath)
29047c478bd9Sstevel@tonic-gate {
29057c478bd9Sstevel@tonic-gate 	vnode_t *vp;
29067c478bd9Sstevel@tonic-gate 	int trycount;
29077c478bd9Sstevel@tonic-gate 	int error = 0;
29087c478bd9Sstevel@tonic-gate 	char *path;
29097c478bd9Sstevel@tonic-gate 	struct pathname upn, pn;
29107c478bd9Sstevel@tonic-gate 	size_t pathlen;
29117c478bd9Sstevel@tonic-gate 
29127c478bd9Sstevel@tonic-gate 	if ((error = pn_get((char *)upath, UIO_USERSPACE, &upn)) != 0)
29137c478bd9Sstevel@tonic-gate 		return (error);
29147c478bd9Sstevel@tonic-gate 
29157c478bd9Sstevel@tonic-gate 	pn_alloc(&pn);
29167c478bd9Sstevel@tonic-gate 
29177c478bd9Sstevel@tonic-gate 	/* prevent infinite loop */
29187c478bd9Sstevel@tonic-gate 	trycount = 10;
29197c478bd9Sstevel@tonic-gate 	for (;;) {
29207c478bd9Sstevel@tonic-gate 		if (--trycount <= 0) {
29217c478bd9Sstevel@tonic-gate 			error = ESTALE;
29227c478bd9Sstevel@tonic-gate 			goto out;
29237c478bd9Sstevel@tonic-gate 		}
29247c478bd9Sstevel@tonic-gate 
29257c478bd9Sstevel@tonic-gate 		if ((error = lookuppn(&upn, &pn, FOLLOW, NULLVPP, &vp)) == 0) {
29267c478bd9Sstevel@tonic-gate 			/*
29277c478bd9Sstevel@tonic-gate 			 * VOP_ACCESS() may cover 'vp' with a new
29287c478bd9Sstevel@tonic-gate 			 * filesystem, if 'vp' is an autoFS vnode.
29297c478bd9Sstevel@tonic-gate 			 * Get the new 'vp' if so.
29307c478bd9Sstevel@tonic-gate 			 */
2931da6c28aaSamw 			if ((error =
2932da6c28aaSamw 			    VOP_ACCESS(vp, VEXEC, 0, CRED(), NULL)) == 0 &&
293325d2dc23Seh208807 			    (!vn_ismntpt(vp) ||
29347c478bd9Sstevel@tonic-gate 			    (error = traverse(&vp)) == 0)) {
29357c478bd9Sstevel@tonic-gate 				pathlen = pn.pn_pathlen + 2;
29367c478bd9Sstevel@tonic-gate 				path = kmem_alloc(pathlen, KM_SLEEP);
29377c478bd9Sstevel@tonic-gate 				(void) strncpy(path, pn.pn_path,
29387c478bd9Sstevel@tonic-gate 				    pn.pn_pathlen + 1);
29397c478bd9Sstevel@tonic-gate 				path[pathlen - 2] = '/';
29407c478bd9Sstevel@tonic-gate 				path[pathlen - 1] = '\0';
29417c478bd9Sstevel@tonic-gate 				pn_free(&pn);
29427c478bd9Sstevel@tonic-gate 				pn_free(&upn);
29437c478bd9Sstevel@tonic-gate 
29447c478bd9Sstevel@tonic-gate 				/* Success! */
29457c478bd9Sstevel@tonic-gate 				break;
29467c478bd9Sstevel@tonic-gate 			}
29477c478bd9Sstevel@tonic-gate 			VN_RELE(vp);
29487c478bd9Sstevel@tonic-gate 		}
29497c478bd9Sstevel@tonic-gate 		if (error != ESTALE)
29507c478bd9Sstevel@tonic-gate 			goto out;
29517c478bd9Sstevel@tonic-gate 	}
29527c478bd9Sstevel@tonic-gate 
29537c478bd9Sstevel@tonic-gate 	ASSERT(error == 0);
29547c478bd9Sstevel@tonic-gate 	zone->zone_rootvp = vp;		/* we hold a reference to vp */
29557c478bd9Sstevel@tonic-gate 	zone->zone_rootpath = path;
29567c478bd9Sstevel@tonic-gate 	zone->zone_rootpathlen = pathlen;
295748451833Scarlsonj 	if (pathlen > 5 && strcmp(path + pathlen - 5, "/lu/") == 0)
295848451833Scarlsonj 		zone->zone_flags |= ZF_IS_SCRATCH;
29597c478bd9Sstevel@tonic-gate 	return (0);
29607c478bd9Sstevel@tonic-gate 
29617c478bd9Sstevel@tonic-gate out:
29627c478bd9Sstevel@tonic-gate 	pn_free(&pn);
29637c478bd9Sstevel@tonic-gate 	pn_free(&upn);
29647c478bd9Sstevel@tonic-gate 	return (error);
29657c478bd9Sstevel@tonic-gate }
29667c478bd9Sstevel@tonic-gate 
29677c478bd9Sstevel@tonic-gate #define	isalnum(c)	(((c) >= '0' && (c) <= '9') || \
29687c478bd9Sstevel@tonic-gate 			((c) >= 'a' && (c) <= 'z') || \
29697c478bd9Sstevel@tonic-gate 			((c) >= 'A' && (c) <= 'Z'))
29707c478bd9Sstevel@tonic-gate 
29717c478bd9Sstevel@tonic-gate static int
29727c478bd9Sstevel@tonic-gate zone_set_name(zone_t *zone, const char *uname)
29737c478bd9Sstevel@tonic-gate {
29747c478bd9Sstevel@tonic-gate 	char *kname = kmem_zalloc(ZONENAME_MAX, KM_SLEEP);
29757c478bd9Sstevel@tonic-gate 	size_t len;
29767c478bd9Sstevel@tonic-gate 	int i, err;
29777c478bd9Sstevel@tonic-gate 
29787c478bd9Sstevel@tonic-gate 	if ((err = copyinstr(uname, kname, ZONENAME_MAX, &len)) != 0) {
29797c478bd9Sstevel@tonic-gate 		kmem_free(kname, ZONENAME_MAX);
29807c478bd9Sstevel@tonic-gate 		return (err);	/* EFAULT or ENAMETOOLONG */
29817c478bd9Sstevel@tonic-gate 	}
29827c478bd9Sstevel@tonic-gate 
29837c478bd9Sstevel@tonic-gate 	/* must be less than ZONENAME_MAX */
29847c478bd9Sstevel@tonic-gate 	if (len == ZONENAME_MAX && kname[ZONENAME_MAX - 1] != '\0') {
29857c478bd9Sstevel@tonic-gate 		kmem_free(kname, ZONENAME_MAX);
29867c478bd9Sstevel@tonic-gate 		return (EINVAL);
29877c478bd9Sstevel@tonic-gate 	}
29887c478bd9Sstevel@tonic-gate 
29897c478bd9Sstevel@tonic-gate 	/*
29907c478bd9Sstevel@tonic-gate 	 * Name must start with an alphanumeric and must contain only
29917c478bd9Sstevel@tonic-gate 	 * alphanumerics, '-', '_' and '.'.
29927c478bd9Sstevel@tonic-gate 	 */
29937c478bd9Sstevel@tonic-gate 	if (!isalnum(kname[0])) {
29947c478bd9Sstevel@tonic-gate 		kmem_free(kname, ZONENAME_MAX);
29957c478bd9Sstevel@tonic-gate 		return (EINVAL);
29967c478bd9Sstevel@tonic-gate 	}
29977c478bd9Sstevel@tonic-gate 	for (i = 1; i < len - 1; i++) {
29987c478bd9Sstevel@tonic-gate 		if (!isalnum(kname[i]) && kname[i] != '-' && kname[i] != '_' &&
29997c478bd9Sstevel@tonic-gate 		    kname[i] != '.') {
30007c478bd9Sstevel@tonic-gate 			kmem_free(kname, ZONENAME_MAX);
30017c478bd9Sstevel@tonic-gate 			return (EINVAL);
30027c478bd9Sstevel@tonic-gate 		}
30037c478bd9Sstevel@tonic-gate 	}
30047c478bd9Sstevel@tonic-gate 
30057c478bd9Sstevel@tonic-gate 	zone->zone_name = kname;
30067c478bd9Sstevel@tonic-gate 	return (0);
30077c478bd9Sstevel@tonic-gate }
30087c478bd9Sstevel@tonic-gate 
30097c478bd9Sstevel@tonic-gate /*
30105679c89fSjv227347  * Gets the 32-bit hostid of the specified zone as an unsigned int.  If 'zonep'
30115679c89fSjv227347  * is NULL or it points to a zone with no hostid emulation, then the machine's
30125679c89fSjv227347  * hostid (i.e., the global zone's hostid) is returned.  This function returns
30135679c89fSjv227347  * zero if neither the zone nor the host machine (global zone) have hostids.  It
30145679c89fSjv227347  * returns HW_INVALID_HOSTID if the function attempts to return the machine's
30155679c89fSjv227347  * hostid and the machine's hostid is invalid.
30165679c89fSjv227347  */
30175679c89fSjv227347 uint32_t
30185679c89fSjv227347 zone_get_hostid(zone_t *zonep)
30195679c89fSjv227347 {
30205679c89fSjv227347 	unsigned long machine_hostid;
30215679c89fSjv227347 
30225679c89fSjv227347 	if (zonep == NULL || zonep->zone_hostid == HW_INVALID_HOSTID) {
30235679c89fSjv227347 		if (ddi_strtoul(hw_serial, NULL, 10, &machine_hostid) != 0)
30245679c89fSjv227347 			return (HW_INVALID_HOSTID);
30255679c89fSjv227347 		return ((uint32_t)machine_hostid);
30265679c89fSjv227347 	}
30275679c89fSjv227347 	return (zonep->zone_hostid);
30285679c89fSjv227347 }
30295679c89fSjv227347 
30305679c89fSjv227347 /*
30317c478bd9Sstevel@tonic-gate  * Similar to thread_create(), but makes sure the thread is in the appropriate
30327c478bd9Sstevel@tonic-gate  * zone's zsched process (curproc->p_zone->zone_zsched) before returning.
30337c478bd9Sstevel@tonic-gate  */
30347c478bd9Sstevel@tonic-gate /*ARGSUSED*/
30357c478bd9Sstevel@tonic-gate kthread_t *
30367c478bd9Sstevel@tonic-gate zthread_create(
30377c478bd9Sstevel@tonic-gate     caddr_t stk,
30387c478bd9Sstevel@tonic-gate     size_t stksize,
30397c478bd9Sstevel@tonic-gate     void (*proc)(),
30407c478bd9Sstevel@tonic-gate     void *arg,
30417c478bd9Sstevel@tonic-gate     size_t len,
30427c478bd9Sstevel@tonic-gate     pri_t pri)
30437c478bd9Sstevel@tonic-gate {
30447c478bd9Sstevel@tonic-gate 	kthread_t *t;
30457c478bd9Sstevel@tonic-gate 	zone_t *zone = curproc->p_zone;
30467c478bd9Sstevel@tonic-gate 	proc_t *pp = zone->zone_zsched;
30477c478bd9Sstevel@tonic-gate 
30487c478bd9Sstevel@tonic-gate 	zone_hold(zone);	/* Reference to be dropped when thread exits */
30497c478bd9Sstevel@tonic-gate 
30507c478bd9Sstevel@tonic-gate 	/*
30517c478bd9Sstevel@tonic-gate 	 * No-one should be trying to create threads if the zone is shutting
30527c478bd9Sstevel@tonic-gate 	 * down and there aren't any kernel threads around.  See comment
30537c478bd9Sstevel@tonic-gate 	 * in zthread_exit().
30547c478bd9Sstevel@tonic-gate 	 */
30557c478bd9Sstevel@tonic-gate 	ASSERT(!(zone->zone_kthreads == NULL &&
30567c478bd9Sstevel@tonic-gate 	    zone_status_get(zone) >= ZONE_IS_EMPTY));
30577c478bd9Sstevel@tonic-gate 	/*
30587c478bd9Sstevel@tonic-gate 	 * Create a thread, but don't let it run until we've finished setting
30597c478bd9Sstevel@tonic-gate 	 * things up.
30607c478bd9Sstevel@tonic-gate 	 */
30617c478bd9Sstevel@tonic-gate 	t = thread_create(stk, stksize, proc, arg, len, pp, TS_STOPPED, pri);
30627c478bd9Sstevel@tonic-gate 	ASSERT(t->t_forw == NULL);
30637c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
30647c478bd9Sstevel@tonic-gate 	if (zone->zone_kthreads == NULL) {
30657c478bd9Sstevel@tonic-gate 		t->t_forw = t->t_back = t;
30667c478bd9Sstevel@tonic-gate 	} else {
30677c478bd9Sstevel@tonic-gate 		kthread_t *tx = zone->zone_kthreads;
30687c478bd9Sstevel@tonic-gate 
30697c478bd9Sstevel@tonic-gate 		t->t_forw = tx;
30707c478bd9Sstevel@tonic-gate 		t->t_back = tx->t_back;
30717c478bd9Sstevel@tonic-gate 		tx->t_back->t_forw = t;
30727c478bd9Sstevel@tonic-gate 		tx->t_back = t;
30737c478bd9Sstevel@tonic-gate 	}
30747c478bd9Sstevel@tonic-gate 	zone->zone_kthreads = t;
30757c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
30767c478bd9Sstevel@tonic-gate 
30777c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
30787c478bd9Sstevel@tonic-gate 	t->t_proc_flag |= TP_ZTHREAD;
30797c478bd9Sstevel@tonic-gate 	project_rele(t->t_proj);
30807c478bd9Sstevel@tonic-gate 	t->t_proj = project_hold(pp->p_task->tk_proj);
30817c478bd9Sstevel@tonic-gate 
30827c478bd9Sstevel@tonic-gate 	/*
30837c478bd9Sstevel@tonic-gate 	 * Setup complete, let it run.
30847c478bd9Sstevel@tonic-gate 	 */
30857c478bd9Sstevel@tonic-gate 	thread_lock(t);
30867c478bd9Sstevel@tonic-gate 	t->t_schedflag |= TS_ALLSTART;
30877c478bd9Sstevel@tonic-gate 	setrun_locked(t);
30887c478bd9Sstevel@tonic-gate 	thread_unlock(t);
30897c478bd9Sstevel@tonic-gate 
30907c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
30917c478bd9Sstevel@tonic-gate 
30927c478bd9Sstevel@tonic-gate 	return (t);
30937c478bd9Sstevel@tonic-gate }
30947c478bd9Sstevel@tonic-gate 
30957c478bd9Sstevel@tonic-gate /*
30967c478bd9Sstevel@tonic-gate  * Similar to thread_exit().  Must be called by threads created via
30977c478bd9Sstevel@tonic-gate  * zthread_exit().
30987c478bd9Sstevel@tonic-gate  */
30997c478bd9Sstevel@tonic-gate void
31007c478bd9Sstevel@tonic-gate zthread_exit(void)
31017c478bd9Sstevel@tonic-gate {
31027c478bd9Sstevel@tonic-gate 	kthread_t *t = curthread;
31037c478bd9Sstevel@tonic-gate 	proc_t *pp = curproc;
31047c478bd9Sstevel@tonic-gate 	zone_t *zone = pp->p_zone;
31057c478bd9Sstevel@tonic-gate 
31067c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
31077c478bd9Sstevel@tonic-gate 
31087c478bd9Sstevel@tonic-gate 	/*
31097c478bd9Sstevel@tonic-gate 	 * Reparent to p0
31107c478bd9Sstevel@tonic-gate 	 */
3111b4b07f87Sjosephb 	kpreempt_disable();
31127c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
31137c478bd9Sstevel@tonic-gate 	t->t_proc_flag &= ~TP_ZTHREAD;
31147c478bd9Sstevel@tonic-gate 	t->t_procp = &p0;
31157c478bd9Sstevel@tonic-gate 	hat_thread_exit(t);
31167c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
3117b4b07f87Sjosephb 	kpreempt_enable();
31187c478bd9Sstevel@tonic-gate 
31197c478bd9Sstevel@tonic-gate 	if (t->t_back == t) {
31207c478bd9Sstevel@tonic-gate 		ASSERT(t->t_forw == t);
31217c478bd9Sstevel@tonic-gate 		/*
31227c478bd9Sstevel@tonic-gate 		 * If the zone is empty, once the thread count
31237c478bd9Sstevel@tonic-gate 		 * goes to zero no further kernel threads can be
31247c478bd9Sstevel@tonic-gate 		 * created.  This is because if the creator is a process
31257c478bd9Sstevel@tonic-gate 		 * in the zone, then it must have exited before the zone
31267c478bd9Sstevel@tonic-gate 		 * state could be set to ZONE_IS_EMPTY.
31277c478bd9Sstevel@tonic-gate 		 * Otherwise, if the creator is a kernel thread in the
31287c478bd9Sstevel@tonic-gate 		 * zone, the thread count is non-zero.
31297c478bd9Sstevel@tonic-gate 		 *
31307c478bd9Sstevel@tonic-gate 		 * This really means that non-zone kernel threads should
31317c478bd9Sstevel@tonic-gate 		 * not create zone kernel threads.
31327c478bd9Sstevel@tonic-gate 		 */
31337c478bd9Sstevel@tonic-gate 		zone->zone_kthreads = NULL;
31347c478bd9Sstevel@tonic-gate 		if (zone_status_get(zone) == ZONE_IS_EMPTY) {
31357c478bd9Sstevel@tonic-gate 			zone_status_set(zone, ZONE_IS_DOWN);
3136c97ad5cdSakolb 			/*
3137c97ad5cdSakolb 			 * Remove any CPU caps on this zone.
3138c97ad5cdSakolb 			 */
3139c97ad5cdSakolb 			cpucaps_zone_remove(zone);
31407c478bd9Sstevel@tonic-gate 		}
31417c478bd9Sstevel@tonic-gate 	} else {
31427c478bd9Sstevel@tonic-gate 		t->t_forw->t_back = t->t_back;
31437c478bd9Sstevel@tonic-gate 		t->t_back->t_forw = t->t_forw;
31447c478bd9Sstevel@tonic-gate 		if (zone->zone_kthreads == t)
31457c478bd9Sstevel@tonic-gate 			zone->zone_kthreads = t->t_forw;
31467c478bd9Sstevel@tonic-gate 	}
31477c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
31487c478bd9Sstevel@tonic-gate 	zone_rele(zone);
31497c478bd9Sstevel@tonic-gate 	thread_exit();
31507c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
31517c478bd9Sstevel@tonic-gate }
31527c478bd9Sstevel@tonic-gate 
31537c478bd9Sstevel@tonic-gate static void
31547c478bd9Sstevel@tonic-gate zone_chdir(vnode_t *vp, vnode_t **vpp, proc_t *pp)
31557c478bd9Sstevel@tonic-gate {
31567c478bd9Sstevel@tonic-gate 	vnode_t *oldvp;
31577c478bd9Sstevel@tonic-gate 
31587c478bd9Sstevel@tonic-gate 	/* we're going to hold a reference here to the directory */
31597c478bd9Sstevel@tonic-gate 	VN_HOLD(vp);
31607c478bd9Sstevel@tonic-gate 
3161005d3febSMarek Pospisil 	/* update abs cwd/root path see c2/audit.c */
3162005d3febSMarek Pospisil 	if (AU_AUDITING())
31637c478bd9Sstevel@tonic-gate 		audit_chdirec(vp, vpp);
31647c478bd9Sstevel@tonic-gate 
31657c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
31667c478bd9Sstevel@tonic-gate 	oldvp = *vpp;
31677c478bd9Sstevel@tonic-gate 	*vpp = vp;
31687c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
31697c478bd9Sstevel@tonic-gate 	if (oldvp != NULL)
31707c478bd9Sstevel@tonic-gate 		VN_RELE(oldvp);
31717c478bd9Sstevel@tonic-gate }
31727c478bd9Sstevel@tonic-gate 
31737c478bd9Sstevel@tonic-gate /*
31747c478bd9Sstevel@tonic-gate  * Convert an rctl value represented by an nvlist_t into an rctl_val_t.
31757c478bd9Sstevel@tonic-gate  */
31767c478bd9Sstevel@tonic-gate static int
31777c478bd9Sstevel@tonic-gate nvlist2rctlval(nvlist_t *nvl, rctl_val_t *rv)
31787c478bd9Sstevel@tonic-gate {
31797c478bd9Sstevel@tonic-gate 	nvpair_t *nvp = NULL;
31807c478bd9Sstevel@tonic-gate 	boolean_t priv_set = B_FALSE;
31817c478bd9Sstevel@tonic-gate 	boolean_t limit_set = B_FALSE;
31827c478bd9Sstevel@tonic-gate 	boolean_t action_set = B_FALSE;
31837c478bd9Sstevel@tonic-gate 
31847c478bd9Sstevel@tonic-gate 	while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
31857c478bd9Sstevel@tonic-gate 		const char *name;
31867c478bd9Sstevel@tonic-gate 		uint64_t ui64;
31877c478bd9Sstevel@tonic-gate 
31887c478bd9Sstevel@tonic-gate 		name = nvpair_name(nvp);
31897c478bd9Sstevel@tonic-gate 		if (nvpair_type(nvp) != DATA_TYPE_UINT64)
31907c478bd9Sstevel@tonic-gate 			return (EINVAL);
31917c478bd9Sstevel@tonic-gate 		(void) nvpair_value_uint64(nvp, &ui64);
31927c478bd9Sstevel@tonic-gate 		if (strcmp(name, "privilege") == 0) {
31937c478bd9Sstevel@tonic-gate 			/*
31947c478bd9Sstevel@tonic-gate 			 * Currently only privileged values are allowed, but
31957c478bd9Sstevel@tonic-gate 			 * this may change in the future.
31967c478bd9Sstevel@tonic-gate 			 */
31977c478bd9Sstevel@tonic-gate 			if (ui64 != RCPRIV_PRIVILEGED)
31987c478bd9Sstevel@tonic-gate 				return (EINVAL);
31997c478bd9Sstevel@tonic-gate 			rv->rcv_privilege = ui64;
32007c478bd9Sstevel@tonic-gate 			priv_set = B_TRUE;
32017c478bd9Sstevel@tonic-gate 		} else if (strcmp(name, "limit") == 0) {
32027c478bd9Sstevel@tonic-gate 			rv->rcv_value = ui64;
32037c478bd9Sstevel@tonic-gate 			limit_set = B_TRUE;
32047c478bd9Sstevel@tonic-gate 		} else if (strcmp(name, "action") == 0) {
32057c478bd9Sstevel@tonic-gate 			if (ui64 != RCTL_LOCAL_NOACTION &&
32067c478bd9Sstevel@tonic-gate 			    ui64 != RCTL_LOCAL_DENY)
32077c478bd9Sstevel@tonic-gate 				return (EINVAL);
32087c478bd9Sstevel@tonic-gate 			rv->rcv_flagaction = ui64;
32097c478bd9Sstevel@tonic-gate 			action_set = B_TRUE;
32107c478bd9Sstevel@tonic-gate 		} else {
32117c478bd9Sstevel@tonic-gate 			return (EINVAL);
32127c478bd9Sstevel@tonic-gate 		}
32137c478bd9Sstevel@tonic-gate 	}
32147c478bd9Sstevel@tonic-gate 
32157c478bd9Sstevel@tonic-gate 	if (!(priv_set && limit_set && action_set))
32167c478bd9Sstevel@tonic-gate 		return (EINVAL);
32177c478bd9Sstevel@tonic-gate 	rv->rcv_action_signal = 0;
32187c478bd9Sstevel@tonic-gate 	rv->rcv_action_recipient = NULL;
32197c478bd9Sstevel@tonic-gate 	rv->rcv_action_recip_pid = -1;
32207c478bd9Sstevel@tonic-gate 	rv->rcv_firing_time = 0;
32217c478bd9Sstevel@tonic-gate 
32227c478bd9Sstevel@tonic-gate 	return (0);
32237c478bd9Sstevel@tonic-gate }
32247c478bd9Sstevel@tonic-gate 
32253f2f09c1Sdp /*
32263f2f09c1Sdp  * Non-global zone version of start_init.
32273f2f09c1Sdp  */
32287c478bd9Sstevel@tonic-gate void
32293f2f09c1Sdp zone_start_init(void)
32307c478bd9Sstevel@tonic-gate {
32317c478bd9Sstevel@tonic-gate 	proc_t *p = ttoproc(curthread);
32329acbbeafSnn35248 	zone_t *z = p->p_zone;
32333f2f09c1Sdp 
32343f2f09c1Sdp 	ASSERT(!INGLOBALZONE(curproc));
32357c478bd9Sstevel@tonic-gate 
32367c478bd9Sstevel@tonic-gate 	/*
32379acbbeafSnn35248 	 * For all purposes (ZONE_ATTR_INITPID and restart_init),
32389acbbeafSnn35248 	 * storing just the pid of init is sufficient.
32399acbbeafSnn35248 	 */
32409acbbeafSnn35248 	z->zone_proc_initpid = p->p_pid;
32419acbbeafSnn35248 
32429acbbeafSnn35248 	/*
32433f2f09c1Sdp 	 * We maintain zone_boot_err so that we can return the cause of the
32443f2f09c1Sdp 	 * failure back to the caller of the zone_boot syscall.
32457c478bd9Sstevel@tonic-gate 	 */
32463f2f09c1Sdp 	p->p_zone->zone_boot_err = start_init_common();
32477c478bd9Sstevel@tonic-gate 
32488f983ab3Sjv227347 	/*
32498f983ab3Sjv227347 	 * We will prevent booting zones from becoming running zones if the
32508f983ab3Sjv227347 	 * global zone is shutting down.
32518f983ab3Sjv227347 	 */
32527c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
32538f983ab3Sjv227347 	if (z->zone_boot_err != 0 || zone_status_get(global_zone) >=
32548f983ab3Sjv227347 	    ZONE_IS_SHUTTING_DOWN) {
32557c478bd9Sstevel@tonic-gate 		/*
32567c478bd9Sstevel@tonic-gate 		 * Make sure we are still in the booting state-- we could have
32577c478bd9Sstevel@tonic-gate 		 * raced and already be shutting down, or even further along.
32587c478bd9Sstevel@tonic-gate 		 */
3259c97ad5cdSakolb 		if (zone_status_get(z) == ZONE_IS_BOOTING) {
32609acbbeafSnn35248 			zone_status_set(z, ZONE_IS_SHUTTING_DOWN);
3261c97ad5cdSakolb 		}
32627c478bd9Sstevel@tonic-gate 		mutex_exit(&zone_status_lock);
32637c478bd9Sstevel@tonic-gate 		/* It's gone bad, dispose of the process */
32649acbbeafSnn35248 		if (proc_exit(CLD_EXITED, z->zone_boot_err) != 0) {
326597eda132Sraf 			mutex_enter(&p->p_lock);
326697eda132Sraf 			ASSERT(p->p_flag & SEXITLWPS);
32677c478bd9Sstevel@tonic-gate 			lwp_exit();
32687c478bd9Sstevel@tonic-gate 		}
32697c478bd9Sstevel@tonic-gate 	} else {
32709acbbeafSnn35248 		if (zone_status_get(z) == ZONE_IS_BOOTING)
32719acbbeafSnn35248 			zone_status_set(z, ZONE_IS_RUNNING);
32727c478bd9Sstevel@tonic-gate 		mutex_exit(&zone_status_lock);
32737c478bd9Sstevel@tonic-gate 		/* cause the process to return to userland. */
32747c478bd9Sstevel@tonic-gate 		lwp_rtt();
32757c478bd9Sstevel@tonic-gate 	}
32767c478bd9Sstevel@tonic-gate }
32777c478bd9Sstevel@tonic-gate 
32787c478bd9Sstevel@tonic-gate struct zsched_arg {
32797c478bd9Sstevel@tonic-gate 	zone_t *zone;
32807c478bd9Sstevel@tonic-gate 	nvlist_t *nvlist;
32817c478bd9Sstevel@tonic-gate };
32827c478bd9Sstevel@tonic-gate 
32837c478bd9Sstevel@tonic-gate /*
32847c478bd9Sstevel@tonic-gate  * Per-zone "sched" workalike.  The similarity to "sched" doesn't have
32857c478bd9Sstevel@tonic-gate  * anything to do with scheduling, but rather with the fact that
32867c478bd9Sstevel@tonic-gate  * per-zone kernel threads are parented to zsched, just like regular
32877c478bd9Sstevel@tonic-gate  * kernel threads are parented to sched (p0).
32887c478bd9Sstevel@tonic-gate  *
32897c478bd9Sstevel@tonic-gate  * zsched is also responsible for launching init for the zone.
32907c478bd9Sstevel@tonic-gate  */
32917c478bd9Sstevel@tonic-gate static void
32927c478bd9Sstevel@tonic-gate zsched(void *arg)
32937c478bd9Sstevel@tonic-gate {
32947c478bd9Sstevel@tonic-gate 	struct zsched_arg *za = arg;
32957c478bd9Sstevel@tonic-gate 	proc_t *pp = curproc;
32967c478bd9Sstevel@tonic-gate 	proc_t *initp = proc_init;
32977c478bd9Sstevel@tonic-gate 	zone_t *zone = za->zone;
32987c478bd9Sstevel@tonic-gate 	cred_t *cr, *oldcred;
32997c478bd9Sstevel@tonic-gate 	rctl_set_t *set;
33007c478bd9Sstevel@tonic-gate 	rctl_alloc_gp_t *gp;
33017c478bd9Sstevel@tonic-gate 	contract_t *ct = NULL;
33027c478bd9Sstevel@tonic-gate 	task_t *tk, *oldtk;
33037c478bd9Sstevel@tonic-gate 	rctl_entity_p_t e;
33047c478bd9Sstevel@tonic-gate 	kproject_t *pj;
33057c478bd9Sstevel@tonic-gate 
33067c478bd9Sstevel@tonic-gate 	nvlist_t *nvl = za->nvlist;
33077c478bd9Sstevel@tonic-gate 	nvpair_t *nvp = NULL;
33087c478bd9Sstevel@tonic-gate 
3309ae115bc7Smrj 	bcopy("zsched", PTOU(pp)->u_psargs, sizeof ("zsched"));
3310ae115bc7Smrj 	bcopy("zsched", PTOU(pp)->u_comm, sizeof ("zsched"));
3311ae115bc7Smrj 	PTOU(pp)->u_argc = 0;
3312ae115bc7Smrj 	PTOU(pp)->u_argv = NULL;
3313ae115bc7Smrj 	PTOU(pp)->u_envp = NULL;
33147c478bd9Sstevel@tonic-gate 	closeall(P_FINFO(pp));
33157c478bd9Sstevel@tonic-gate 
33167c478bd9Sstevel@tonic-gate 	/*
33177c478bd9Sstevel@tonic-gate 	 * We are this zone's "zsched" process.  As the zone isn't generally
33187c478bd9Sstevel@tonic-gate 	 * visible yet we don't need to grab any locks before initializing its
33197c478bd9Sstevel@tonic-gate 	 * zone_proc pointer.
33207c478bd9Sstevel@tonic-gate 	 */
33217c478bd9Sstevel@tonic-gate 	zone_hold(zone);  /* this hold is released by zone_destroy() */
33227c478bd9Sstevel@tonic-gate 	zone->zone_zsched = pp;
33237c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
33247c478bd9Sstevel@tonic-gate 	pp->p_zone = zone;
33257c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
33267c478bd9Sstevel@tonic-gate 
33277c478bd9Sstevel@tonic-gate 	/*
33287c478bd9Sstevel@tonic-gate 	 * Disassociate process from its 'parent'; parent ourselves to init
33297c478bd9Sstevel@tonic-gate 	 * (pid 1) and change other values as needed.
33307c478bd9Sstevel@tonic-gate 	 */
33317c478bd9Sstevel@tonic-gate 	sess_create();
33327c478bd9Sstevel@tonic-gate 
33337c478bd9Sstevel@tonic-gate 	mutex_enter(&pidlock);
33347c478bd9Sstevel@tonic-gate 	proc_detach(pp);
33357c478bd9Sstevel@tonic-gate 	pp->p_ppid = 1;
33367c478bd9Sstevel@tonic-gate 	pp->p_flag |= SZONETOP;
33377c478bd9Sstevel@tonic-gate 	pp->p_ancpid = 1;
33387c478bd9Sstevel@tonic-gate 	pp->p_parent = initp;
33397c478bd9Sstevel@tonic-gate 	pp->p_psibling = NULL;
33407c478bd9Sstevel@tonic-gate 	if (initp->p_child)
33417c478bd9Sstevel@tonic-gate 		initp->p_child->p_psibling = pp;
33427c478bd9Sstevel@tonic-gate 	pp->p_sibling = initp->p_child;
33437c478bd9Sstevel@tonic-gate 	initp->p_child = pp;
33447c478bd9Sstevel@tonic-gate 
33457c478bd9Sstevel@tonic-gate 	/* Decrement what newproc() incremented. */
33467c478bd9Sstevel@tonic-gate 	upcount_dec(crgetruid(CRED()), GLOBAL_ZONEID);
33477c478bd9Sstevel@tonic-gate 	/*
33487c478bd9Sstevel@tonic-gate 	 * Our credentials are about to become kcred-like, so we don't care
33497c478bd9Sstevel@tonic-gate 	 * about the caller's ruid.
33507c478bd9Sstevel@tonic-gate 	 */
33517c478bd9Sstevel@tonic-gate 	upcount_inc(crgetruid(kcred), zone->zone_id);
33527c478bd9Sstevel@tonic-gate 	mutex_exit(&pidlock);
33537c478bd9Sstevel@tonic-gate 
33547c478bd9Sstevel@tonic-gate 	/*
33557c478bd9Sstevel@tonic-gate 	 * getting out of global zone, so decrement lwp counts
33567c478bd9Sstevel@tonic-gate 	 */
33577c478bd9Sstevel@tonic-gate 	pj = pp->p_task->tk_proj;
33587c478bd9Sstevel@tonic-gate 	mutex_enter(&global_zone->zone_nlwps_lock);
33597c478bd9Sstevel@tonic-gate 	pj->kpj_nlwps -= pp->p_lwpcnt;
33607c478bd9Sstevel@tonic-gate 	global_zone->zone_nlwps -= pp->p_lwpcnt;
33617c478bd9Sstevel@tonic-gate 	mutex_exit(&global_zone->zone_nlwps_lock);
33627c478bd9Sstevel@tonic-gate 
33637c478bd9Sstevel@tonic-gate 	/*
3364c6939658Ssl108498 	 * Decrement locked memory counts on old zone and project.
3365c6939658Ssl108498 	 */
33660209230bSgjelinek 	mutex_enter(&global_zone->zone_mem_lock);
3367c6939658Ssl108498 	global_zone->zone_locked_mem -= pp->p_locked_mem;
3368c6939658Ssl108498 	pj->kpj_data.kpd_locked_mem -= pp->p_locked_mem;
33690209230bSgjelinek 	mutex_exit(&global_zone->zone_mem_lock);
3370c6939658Ssl108498 
3371c6939658Ssl108498 	/*
33727c478bd9Sstevel@tonic-gate 	 * Create and join a new task in project '0' of this zone.
33737c478bd9Sstevel@tonic-gate 	 *
33747c478bd9Sstevel@tonic-gate 	 * We don't need to call holdlwps() since we know we're the only lwp in
33757c478bd9Sstevel@tonic-gate 	 * this process.
33767c478bd9Sstevel@tonic-gate 	 *
33777c478bd9Sstevel@tonic-gate 	 * task_join() returns with p_lock held.
33787c478bd9Sstevel@tonic-gate 	 */
33797c478bd9Sstevel@tonic-gate 	tk = task_create(0, zone);
33807c478bd9Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
33817c478bd9Sstevel@tonic-gate 	oldtk = task_join(tk, 0);
3382c6939658Ssl108498 
3383c6939658Ssl108498 	pj = pp->p_task->tk_proj;
3384c6939658Ssl108498 
33850209230bSgjelinek 	mutex_enter(&zone->zone_mem_lock);
3386c6939658Ssl108498 	zone->zone_locked_mem += pp->p_locked_mem;
3387c6939658Ssl108498 	pj->kpj_data.kpd_locked_mem += pp->p_locked_mem;
33880209230bSgjelinek 	mutex_exit(&zone->zone_mem_lock);
33897c478bd9Sstevel@tonic-gate 
33907c478bd9Sstevel@tonic-gate 	/*
33917c478bd9Sstevel@tonic-gate 	 * add lwp counts to zsched's zone, and increment project's task count
33927c478bd9Sstevel@tonic-gate 	 * due to the task created in the above tasksys_settaskid
33937c478bd9Sstevel@tonic-gate 	 */
3394c6939658Ssl108498 
33957c478bd9Sstevel@tonic-gate 	mutex_enter(&zone->zone_nlwps_lock);
33967c478bd9Sstevel@tonic-gate 	pj->kpj_nlwps += pp->p_lwpcnt;
33977c478bd9Sstevel@tonic-gate 	pj->kpj_ntasks += 1;
33987c478bd9Sstevel@tonic-gate 	zone->zone_nlwps += pp->p_lwpcnt;
33997c478bd9Sstevel@tonic-gate 	mutex_exit(&zone->zone_nlwps_lock);
34007c478bd9Sstevel@tonic-gate 
3401c6939658Ssl108498 	mutex_exit(&curproc->p_lock);
3402c6939658Ssl108498 	mutex_exit(&cpu_lock);
3403c6939658Ssl108498 	task_rele(oldtk);
3404c6939658Ssl108498 
34057c478bd9Sstevel@tonic-gate 	/*
34067c478bd9Sstevel@tonic-gate 	 * The process was created by a process in the global zone, hence the
34077c478bd9Sstevel@tonic-gate 	 * credentials are wrong.  We might as well have kcred-ish credentials.
34087c478bd9Sstevel@tonic-gate 	 */
34097c478bd9Sstevel@tonic-gate 	cr = zone->zone_kcred;
34107c478bd9Sstevel@tonic-gate 	crhold(cr);
34117c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_crlock);
34127c478bd9Sstevel@tonic-gate 	oldcred = pp->p_cred;
34137c478bd9Sstevel@tonic-gate 	pp->p_cred = cr;
34147c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_crlock);
34157c478bd9Sstevel@tonic-gate 	crfree(oldcred);
34167c478bd9Sstevel@tonic-gate 
34177c478bd9Sstevel@tonic-gate 	/*
34187c478bd9Sstevel@tonic-gate 	 * Hold credentials again (for thread)
34197c478bd9Sstevel@tonic-gate 	 */
34207c478bd9Sstevel@tonic-gate 	crhold(cr);
34217c478bd9Sstevel@tonic-gate 
34227c478bd9Sstevel@tonic-gate 	/*
34237c478bd9Sstevel@tonic-gate 	 * p_lwpcnt can't change since this is a kernel process.
34247c478bd9Sstevel@tonic-gate 	 */
34257c478bd9Sstevel@tonic-gate 	crset(pp, cr);
34267c478bd9Sstevel@tonic-gate 
34277c478bd9Sstevel@tonic-gate 	/*
34287c478bd9Sstevel@tonic-gate 	 * Chroot
34297c478bd9Sstevel@tonic-gate 	 */
34307c478bd9Sstevel@tonic-gate 	zone_chdir(zone->zone_rootvp, &PTOU(pp)->u_cdir, pp);
34317c478bd9Sstevel@tonic-gate 	zone_chdir(zone->zone_rootvp, &PTOU(pp)->u_rdir, pp);
34327c478bd9Sstevel@tonic-gate 
34337c478bd9Sstevel@tonic-gate 	/*
34347c478bd9Sstevel@tonic-gate 	 * Initialize zone's rctl set.
34357c478bd9Sstevel@tonic-gate 	 */
34367c478bd9Sstevel@tonic-gate 	set = rctl_set_create();
34377c478bd9Sstevel@tonic-gate 	gp = rctl_set_init_prealloc(RCENTITY_ZONE);
34387c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
34397c478bd9Sstevel@tonic-gate 	e.rcep_p.zone = zone;
34407c478bd9Sstevel@tonic-gate 	e.rcep_t = RCENTITY_ZONE;
34417c478bd9Sstevel@tonic-gate 	zone->zone_rctls = rctl_set_init(RCENTITY_ZONE, pp, &e, set, gp);
34427c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
34437c478bd9Sstevel@tonic-gate 	rctl_prealloc_destroy(gp);
34447c478bd9Sstevel@tonic-gate 
34457c478bd9Sstevel@tonic-gate 	/*
34467c478bd9Sstevel@tonic-gate 	 * Apply the rctls passed in to zone_create().  This is basically a list
34477c478bd9Sstevel@tonic-gate 	 * assignment: all of the old values are removed and the new ones
34487c478bd9Sstevel@tonic-gate 	 * inserted.  That is, if an empty list is passed in, all values are
34497c478bd9Sstevel@tonic-gate 	 * removed.
34507c478bd9Sstevel@tonic-gate 	 */
34517c478bd9Sstevel@tonic-gate 	while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
34527c478bd9Sstevel@tonic-gate 		rctl_dict_entry_t *rde;
34537c478bd9Sstevel@tonic-gate 		rctl_hndl_t hndl;
34547c478bd9Sstevel@tonic-gate 		char *name;
34557c478bd9Sstevel@tonic-gate 		nvlist_t **nvlarray;
34567c478bd9Sstevel@tonic-gate 		uint_t i, nelem;
34577c478bd9Sstevel@tonic-gate 		int error;	/* For ASSERT()s */
34587c478bd9Sstevel@tonic-gate 
34597c478bd9Sstevel@tonic-gate 		name = nvpair_name(nvp);
34607c478bd9Sstevel@tonic-gate 		hndl = rctl_hndl_lookup(name);
34617c478bd9Sstevel@tonic-gate 		ASSERT(hndl != -1);
34627c478bd9Sstevel@tonic-gate 		rde = rctl_dict_lookup_hndl(hndl);
34637c478bd9Sstevel@tonic-gate 		ASSERT(rde != NULL);
34647c478bd9Sstevel@tonic-gate 
34657c478bd9Sstevel@tonic-gate 		for (; /* ever */; ) {
34667c478bd9Sstevel@tonic-gate 			rctl_val_t oval;
34677c478bd9Sstevel@tonic-gate 
34687c478bd9Sstevel@tonic-gate 			mutex_enter(&pp->p_lock);
34697c478bd9Sstevel@tonic-gate 			error = rctl_local_get(hndl, NULL, &oval, pp);
34707c478bd9Sstevel@tonic-gate 			mutex_exit(&pp->p_lock);
34717c478bd9Sstevel@tonic-gate 			ASSERT(error == 0);	/* Can't fail for RCTL_FIRST */
34727c478bd9Sstevel@tonic-gate 			ASSERT(oval.rcv_privilege != RCPRIV_BASIC);
34737c478bd9Sstevel@tonic-gate 			if (oval.rcv_privilege == RCPRIV_SYSTEM)
34747c478bd9Sstevel@tonic-gate 				break;
34757c478bd9Sstevel@tonic-gate 			mutex_enter(&pp->p_lock);
34767c478bd9Sstevel@tonic-gate 			error = rctl_local_delete(hndl, &oval, pp);
34777c478bd9Sstevel@tonic-gate 			mutex_exit(&pp->p_lock);
34787c478bd9Sstevel@tonic-gate 			ASSERT(error == 0);
34797c478bd9Sstevel@tonic-gate 		}
34807c478bd9Sstevel@tonic-gate 		error = nvpair_value_nvlist_array(nvp, &nvlarray, &nelem);
34817c478bd9Sstevel@tonic-gate 		ASSERT(error == 0);
34827c478bd9Sstevel@tonic-gate 		for (i = 0; i < nelem; i++) {
34837c478bd9Sstevel@tonic-gate 			rctl_val_t *nvalp;
34847c478bd9Sstevel@tonic-gate 
34857c478bd9Sstevel@tonic-gate 			nvalp = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
34867c478bd9Sstevel@tonic-gate 			error = nvlist2rctlval(nvlarray[i], nvalp);
34877c478bd9Sstevel@tonic-gate 			ASSERT(error == 0);
34887c478bd9Sstevel@tonic-gate 			/*
34897c478bd9Sstevel@tonic-gate 			 * rctl_local_insert can fail if the value being
34907c478bd9Sstevel@tonic-gate 			 * inserted is a duplicate; this is OK.
34917c478bd9Sstevel@tonic-gate 			 */
34927c478bd9Sstevel@tonic-gate 			mutex_enter(&pp->p_lock);
34937c478bd9Sstevel@tonic-gate 			if (rctl_local_insert(hndl, nvalp, pp) != 0)
34947c478bd9Sstevel@tonic-gate 				kmem_cache_free(rctl_val_cache, nvalp);
34957c478bd9Sstevel@tonic-gate 			mutex_exit(&pp->p_lock);
34967c478bd9Sstevel@tonic-gate 		}
34977c478bd9Sstevel@tonic-gate 	}
34987c478bd9Sstevel@tonic-gate 	/*
34997c478bd9Sstevel@tonic-gate 	 * Tell the world that we're done setting up.
35007c478bd9Sstevel@tonic-gate 	 *
3501bd41d0a8Snordmark 	 * At this point we want to set the zone status to ZONE_IS_INITIALIZED
35027c478bd9Sstevel@tonic-gate 	 * and atomically set the zone's processor set visibility.  Once
35037c478bd9Sstevel@tonic-gate 	 * we drop pool_lock() this zone will automatically get updated
35047c478bd9Sstevel@tonic-gate 	 * to reflect any future changes to the pools configuration.
3505bd41d0a8Snordmark 	 *
3506bd41d0a8Snordmark 	 * Note that after we drop the locks below (zonehash_lock in
3507bd41d0a8Snordmark 	 * particular) other operations such as a zone_getattr call can
3508bd41d0a8Snordmark 	 * now proceed and observe the zone. That is the reason for doing a
3509bd41d0a8Snordmark 	 * state transition to the INITIALIZED state.
35107c478bd9Sstevel@tonic-gate 	 */
35117c478bd9Sstevel@tonic-gate 	pool_lock();
35127c478bd9Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
35137c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
35147c478bd9Sstevel@tonic-gate 	zone_uniqid(zone);
35157c478bd9Sstevel@tonic-gate 	zone_zsd_configure(zone);
35167c478bd9Sstevel@tonic-gate 	if (pool_state == POOL_ENABLED)
35177c478bd9Sstevel@tonic-gate 		zone_pset_set(zone, pool_default->pool_pset->pset_id);
35187c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
35197c478bd9Sstevel@tonic-gate 	ASSERT(zone_status_get(zone) == ZONE_IS_UNINITIALIZED);
3520bd41d0a8Snordmark 	zone_status_set(zone, ZONE_IS_INITIALIZED);
35217c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
35227c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
35237c478bd9Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
35247c478bd9Sstevel@tonic-gate 	pool_unlock();
35257c478bd9Sstevel@tonic-gate 
3526bd41d0a8Snordmark 	/* Now call the create callback for this key */
3527bd41d0a8Snordmark 	zsd_apply_all_keys(zsd_apply_create, zone);
3528bd41d0a8Snordmark 
3529bd41d0a8Snordmark 	/* The callbacks are complete. Mark ZONE_IS_READY */
3530bd41d0a8Snordmark 	mutex_enter(&zone_status_lock);
3531bd41d0a8Snordmark 	ASSERT(zone_status_get(zone) == ZONE_IS_INITIALIZED);
3532bd41d0a8Snordmark 	zone_status_set(zone, ZONE_IS_READY);
3533bd41d0a8Snordmark 	mutex_exit(&zone_status_lock);
3534bd41d0a8Snordmark 
35357c478bd9Sstevel@tonic-gate 	/*
35367c478bd9Sstevel@tonic-gate 	 * Once we see the zone transition to the ZONE_IS_BOOTING state,
35377c478bd9Sstevel@tonic-gate 	 * we launch init, and set the state to running.
35387c478bd9Sstevel@tonic-gate 	 */
35397c478bd9Sstevel@tonic-gate 	zone_status_wait_cpr(zone, ZONE_IS_BOOTING, "zsched");
35407c478bd9Sstevel@tonic-gate 
35417c478bd9Sstevel@tonic-gate 	if (zone_status_get(zone) == ZONE_IS_BOOTING) {
35427c478bd9Sstevel@tonic-gate 		id_t cid;
35437c478bd9Sstevel@tonic-gate 
35447c478bd9Sstevel@tonic-gate 		/*
35457c478bd9Sstevel@tonic-gate 		 * Ok, this is a little complicated.  We need to grab the
35467c478bd9Sstevel@tonic-gate 		 * zone's pool's scheduling class ID; note that by now, we
35477c478bd9Sstevel@tonic-gate 		 * are already bound to a pool if we need to be (zoneadmd
35487c478bd9Sstevel@tonic-gate 		 * will have done that to us while we're in the READY
35497c478bd9Sstevel@tonic-gate 		 * state).  *But* the scheduling class for the zone's 'init'
35507c478bd9Sstevel@tonic-gate 		 * must be explicitly passed to newproc, which doesn't
35517c478bd9Sstevel@tonic-gate 		 * respect pool bindings.
35527c478bd9Sstevel@tonic-gate 		 *
35537c478bd9Sstevel@tonic-gate 		 * We hold the pool_lock across the call to newproc() to
35547c478bd9Sstevel@tonic-gate 		 * close the obvious race: the pool's scheduling class
35557c478bd9Sstevel@tonic-gate 		 * could change before we manage to create the LWP with
35567c478bd9Sstevel@tonic-gate 		 * classid 'cid'.
35577c478bd9Sstevel@tonic-gate 		 */
35587c478bd9Sstevel@tonic-gate 		pool_lock();
35590209230bSgjelinek 		if (zone->zone_defaultcid > 0)
35600209230bSgjelinek 			cid = zone->zone_defaultcid;
35610209230bSgjelinek 		else
35627c478bd9Sstevel@tonic-gate 			cid = pool_get_class(zone->zone_pool);
35637c478bd9Sstevel@tonic-gate 		if (cid == -1)
35647c478bd9Sstevel@tonic-gate 			cid = defaultcid;
35657c478bd9Sstevel@tonic-gate 
35667c478bd9Sstevel@tonic-gate 		/*
35677c478bd9Sstevel@tonic-gate 		 * If this fails, zone_boot will ultimately fail.  The
35687c478bd9Sstevel@tonic-gate 		 * state of the zone will be set to SHUTTING_DOWN-- userland
35697c478bd9Sstevel@tonic-gate 		 * will have to tear down the zone, and fail, or try again.
35707c478bd9Sstevel@tonic-gate 		 */
35713f2f09c1Sdp 		if ((zone->zone_boot_err = newproc(zone_start_init, NULL, cid,
357235a5a358SJonathan Adams 		    minclsyspri - 1, &ct, 0)) != 0) {
35737c478bd9Sstevel@tonic-gate 			mutex_enter(&zone_status_lock);
35747c478bd9Sstevel@tonic-gate 			zone_status_set(zone, ZONE_IS_SHUTTING_DOWN);
35757c478bd9Sstevel@tonic-gate 			mutex_exit(&zone_status_lock);
35767c478bd9Sstevel@tonic-gate 		}
35777c478bd9Sstevel@tonic-gate 		pool_unlock();
35787c478bd9Sstevel@tonic-gate 	}
35797c478bd9Sstevel@tonic-gate 
35807c478bd9Sstevel@tonic-gate 	/*
35817c478bd9Sstevel@tonic-gate 	 * Wait for zone_destroy() to be called.  This is what we spend
35827c478bd9Sstevel@tonic-gate 	 * most of our life doing.
35837c478bd9Sstevel@tonic-gate 	 */
35847c478bd9Sstevel@tonic-gate 	zone_status_wait_cpr(zone, ZONE_IS_DYING, "zsched");
35857c478bd9Sstevel@tonic-gate 
35867c478bd9Sstevel@tonic-gate 	if (ct)
35877c478bd9Sstevel@tonic-gate 		/*
35887c478bd9Sstevel@tonic-gate 		 * At this point the process contract should be empty.
35897c478bd9Sstevel@tonic-gate 		 * (Though if it isn't, it's not the end of the world.)
35907c478bd9Sstevel@tonic-gate 		 */
35917c478bd9Sstevel@tonic-gate 		VERIFY(contract_abandon(ct, curproc, B_TRUE) == 0);
35927c478bd9Sstevel@tonic-gate 
35937c478bd9Sstevel@tonic-gate 	/*
35947c478bd9Sstevel@tonic-gate 	 * Allow kcred to be freed when all referring processes
35957c478bd9Sstevel@tonic-gate 	 * (including this one) go away.  We can't just do this in
35967c478bd9Sstevel@tonic-gate 	 * zone_free because we need to wait for the zone_cred_ref to
35977c478bd9Sstevel@tonic-gate 	 * drop to 0 before calling zone_free, and the existence of
35987c478bd9Sstevel@tonic-gate 	 * zone_kcred will prevent that.  Thus, we call crfree here to
35997c478bd9Sstevel@tonic-gate 	 * balance the crdup in zone_create.  The crhold calls earlier
36007c478bd9Sstevel@tonic-gate 	 * in zsched will be dropped when the thread and process exit.
36017c478bd9Sstevel@tonic-gate 	 */
36027c478bd9Sstevel@tonic-gate 	crfree(zone->zone_kcred);
36037c478bd9Sstevel@tonic-gate 	zone->zone_kcred = NULL;
36047c478bd9Sstevel@tonic-gate 
36057c478bd9Sstevel@tonic-gate 	exit(CLD_EXITED, 0);
36067c478bd9Sstevel@tonic-gate }
36077c478bd9Sstevel@tonic-gate 
36087c478bd9Sstevel@tonic-gate /*
36097c478bd9Sstevel@tonic-gate  * Helper function to determine if there are any submounts of the
36107c478bd9Sstevel@tonic-gate  * provided path.  Used to make sure the zone doesn't "inherit" any
36117c478bd9Sstevel@tonic-gate  * mounts from before it is created.
36127c478bd9Sstevel@tonic-gate  */
36137c478bd9Sstevel@tonic-gate static uint_t
36147c478bd9Sstevel@tonic-gate zone_mount_count(const char *rootpath)
36157c478bd9Sstevel@tonic-gate {
36167c478bd9Sstevel@tonic-gate 	vfs_t *vfsp;
36177c478bd9Sstevel@tonic-gate 	uint_t count = 0;
36187c478bd9Sstevel@tonic-gate 	size_t rootpathlen = strlen(rootpath);
36197c478bd9Sstevel@tonic-gate 
36207c478bd9Sstevel@tonic-gate 	/*
36217c478bd9Sstevel@tonic-gate 	 * Holding zonehash_lock prevents race conditions with
36227c478bd9Sstevel@tonic-gate 	 * vfs_list_add()/vfs_list_remove() since we serialize with
36237c478bd9Sstevel@tonic-gate 	 * zone_find_by_path().
36247c478bd9Sstevel@tonic-gate 	 */
36257c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&zonehash_lock));
36267c478bd9Sstevel@tonic-gate 	/*
36277c478bd9Sstevel@tonic-gate 	 * The rootpath must end with a '/'
36287c478bd9Sstevel@tonic-gate 	 */
36297c478bd9Sstevel@tonic-gate 	ASSERT(rootpath[rootpathlen - 1] == '/');
36307c478bd9Sstevel@tonic-gate 
36317c478bd9Sstevel@tonic-gate 	/*
36327c478bd9Sstevel@tonic-gate 	 * This intentionally does not count the rootpath itself if that
36337c478bd9Sstevel@tonic-gate 	 * happens to be a mount point.
36347c478bd9Sstevel@tonic-gate 	 */
36357c478bd9Sstevel@tonic-gate 	vfs_list_read_lock();
36367c478bd9Sstevel@tonic-gate 	vfsp = rootvfs;
36377c478bd9Sstevel@tonic-gate 	do {
36387c478bd9Sstevel@tonic-gate 		if (strncmp(rootpath, refstr_value(vfsp->vfs_mntpt),
36397c478bd9Sstevel@tonic-gate 		    rootpathlen) == 0)
36407c478bd9Sstevel@tonic-gate 			count++;
36417c478bd9Sstevel@tonic-gate 		vfsp = vfsp->vfs_next;
36427c478bd9Sstevel@tonic-gate 	} while (vfsp != rootvfs);
36437c478bd9Sstevel@tonic-gate 	vfs_list_unlock();
36447c478bd9Sstevel@tonic-gate 	return (count);
36457c478bd9Sstevel@tonic-gate }
36467c478bd9Sstevel@tonic-gate 
36477c478bd9Sstevel@tonic-gate /*
36487c478bd9Sstevel@tonic-gate  * Helper function to make sure that a zone created on 'rootpath'
36497c478bd9Sstevel@tonic-gate  * wouldn't end up containing other zones' rootpaths.
36507c478bd9Sstevel@tonic-gate  */
36517c478bd9Sstevel@tonic-gate static boolean_t
36527c478bd9Sstevel@tonic-gate zone_is_nested(const char *rootpath)
36537c478bd9Sstevel@tonic-gate {
36547c478bd9Sstevel@tonic-gate 	zone_t *zone;
36557c478bd9Sstevel@tonic-gate 	size_t rootpathlen = strlen(rootpath);
36567c478bd9Sstevel@tonic-gate 	size_t len;
36577c478bd9Sstevel@tonic-gate 
36587c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&zonehash_lock));
36597c478bd9Sstevel@tonic-gate 
36602bb88978SDhanaraj M 	/*
36612bb88978SDhanaraj M 	 * zone_set_root() appended '/' and '\0' at the end of rootpath
36622bb88978SDhanaraj M 	 */
36632bb88978SDhanaraj M 	if ((rootpathlen <= 3) && (rootpath[0] == '/') &&
36642bb88978SDhanaraj M 	    (rootpath[1] == '/') && (rootpath[2] == '\0'))
36652bb88978SDhanaraj M 		return (B_TRUE);
36662bb88978SDhanaraj M 
36677c478bd9Sstevel@tonic-gate 	for (zone = list_head(&zone_active); zone != NULL;
36687c478bd9Sstevel@tonic-gate 	    zone = list_next(&zone_active, zone)) {
36697c478bd9Sstevel@tonic-gate 		if (zone == global_zone)
36707c478bd9Sstevel@tonic-gate 			continue;
36717c478bd9Sstevel@tonic-gate 		len = strlen(zone->zone_rootpath);
36727c478bd9Sstevel@tonic-gate 		if (strncmp(rootpath, zone->zone_rootpath,
36737c478bd9Sstevel@tonic-gate 		    MIN(rootpathlen, len)) == 0)
36747c478bd9Sstevel@tonic-gate 			return (B_TRUE);
36757c478bd9Sstevel@tonic-gate 	}
36767c478bd9Sstevel@tonic-gate 	return (B_FALSE);
36777c478bd9Sstevel@tonic-gate }
36787c478bd9Sstevel@tonic-gate 
36797c478bd9Sstevel@tonic-gate static int
3680821c4a97Sdp zone_set_privset(zone_t *zone, const priv_set_t *zone_privs,
3681821c4a97Sdp     size_t zone_privssz)
36827c478bd9Sstevel@tonic-gate {
36837c478bd9Sstevel@tonic-gate 	priv_set_t *privs = kmem_alloc(sizeof (priv_set_t), KM_SLEEP);
36847c478bd9Sstevel@tonic-gate 
3685821c4a97Sdp 	if (zone_privssz < sizeof (priv_set_t))
3686821c4a97Sdp 		return (set_errno(ENOMEM));
3687821c4a97Sdp 
36887c478bd9Sstevel@tonic-gate 	if (copyin(zone_privs, privs, sizeof (priv_set_t))) {
36897c478bd9Sstevel@tonic-gate 		kmem_free(privs, sizeof (priv_set_t));
36907c478bd9Sstevel@tonic-gate 		return (EFAULT);
36917c478bd9Sstevel@tonic-gate 	}
36927c478bd9Sstevel@tonic-gate 
36937c478bd9Sstevel@tonic-gate 	zone->zone_privset = privs;
36947c478bd9Sstevel@tonic-gate 	return (0);
36957c478bd9Sstevel@tonic-gate }
36967c478bd9Sstevel@tonic-gate 
36977c478bd9Sstevel@tonic-gate /*
36987c478bd9Sstevel@tonic-gate  * We make creative use of nvlists to pass in rctls from userland.  The list is
36997c478bd9Sstevel@tonic-gate  * a list of the following structures:
37007c478bd9Sstevel@tonic-gate  *
37017c478bd9Sstevel@tonic-gate  * (name = rctl_name, value = nvpair_list_array)
37027c478bd9Sstevel@tonic-gate  *
37037c478bd9Sstevel@tonic-gate  * Where each element of the nvpair_list_array is of the form:
37047c478bd9Sstevel@tonic-gate  *
37057c478bd9Sstevel@tonic-gate  * [(name = "privilege", value = RCPRIV_PRIVILEGED),
37067c478bd9Sstevel@tonic-gate  * 	(name = "limit", value = uint64_t),
37077c478bd9Sstevel@tonic-gate  * 	(name = "action", value = (RCTL_LOCAL_NOACTION || RCTL_LOCAL_DENY))]
37087c478bd9Sstevel@tonic-gate  */
37097c478bd9Sstevel@tonic-gate static int
37107c478bd9Sstevel@tonic-gate parse_rctls(caddr_t ubuf, size_t buflen, nvlist_t **nvlp)
37117c478bd9Sstevel@tonic-gate {
37127c478bd9Sstevel@tonic-gate 	nvpair_t *nvp = NULL;
37137c478bd9Sstevel@tonic-gate 	nvlist_t *nvl = NULL;
37147c478bd9Sstevel@tonic-gate 	char *kbuf;
37157c478bd9Sstevel@tonic-gate 	int error;
37167c478bd9Sstevel@tonic-gate 	rctl_val_t rv;
37177c478bd9Sstevel@tonic-gate 
37187c478bd9Sstevel@tonic-gate 	*nvlp = NULL;
37197c478bd9Sstevel@tonic-gate 
37207c478bd9Sstevel@tonic-gate 	if (buflen == 0)
37217c478bd9Sstevel@tonic-gate 		return (0);
37227c478bd9Sstevel@tonic-gate 
37237c478bd9Sstevel@tonic-gate 	if ((kbuf = kmem_alloc(buflen, KM_NOSLEEP)) == NULL)
37247c478bd9Sstevel@tonic-gate 		return (ENOMEM);
37257c478bd9Sstevel@tonic-gate 	if (copyin(ubuf, kbuf, buflen)) {
37267c478bd9Sstevel@tonic-gate 		error = EFAULT;
37277c478bd9Sstevel@tonic-gate 		goto out;
37287c478bd9Sstevel@tonic-gate 	}
37297c478bd9Sstevel@tonic-gate 	if (nvlist_unpack(kbuf, buflen, &nvl, KM_SLEEP) != 0) {
37307c478bd9Sstevel@tonic-gate 		/*
37317c478bd9Sstevel@tonic-gate 		 * nvl may have been allocated/free'd, but the value set to
37327c478bd9Sstevel@tonic-gate 		 * non-NULL, so we reset it here.
37337c478bd9Sstevel@tonic-gate 		 */
37347c478bd9Sstevel@tonic-gate 		nvl = NULL;
37357c478bd9Sstevel@tonic-gate 		error = EINVAL;
37367c478bd9Sstevel@tonic-gate 		goto out;
37377c478bd9Sstevel@tonic-gate 	}
37387c478bd9Sstevel@tonic-gate 	while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
37397c478bd9Sstevel@tonic-gate 		rctl_dict_entry_t *rde;
37407c478bd9Sstevel@tonic-gate 		rctl_hndl_t hndl;
37417c478bd9Sstevel@tonic-gate 		nvlist_t **nvlarray;
37427c478bd9Sstevel@tonic-gate 		uint_t i, nelem;
37437c478bd9Sstevel@tonic-gate 		char *name;
37447c478bd9Sstevel@tonic-gate 
37457c478bd9Sstevel@tonic-gate 		error = EINVAL;
37467c478bd9Sstevel@tonic-gate 		name = nvpair_name(nvp);
37477c478bd9Sstevel@tonic-gate 		if (strncmp(nvpair_name(nvp), "zone.", sizeof ("zone.") - 1)
37487c478bd9Sstevel@tonic-gate 		    != 0 || nvpair_type(nvp) != DATA_TYPE_NVLIST_ARRAY) {
37497c478bd9Sstevel@tonic-gate 			goto out;
37507c478bd9Sstevel@tonic-gate 		}
37517c478bd9Sstevel@tonic-gate 		if ((hndl = rctl_hndl_lookup(name)) == -1) {
37527c478bd9Sstevel@tonic-gate 			goto out;
37537c478bd9Sstevel@tonic-gate 		}
37547c478bd9Sstevel@tonic-gate 		rde = rctl_dict_lookup_hndl(hndl);
37557c478bd9Sstevel@tonic-gate 		error = nvpair_value_nvlist_array(nvp, &nvlarray, &nelem);
37567c478bd9Sstevel@tonic-gate 		ASSERT(error == 0);
37577c478bd9Sstevel@tonic-gate 		for (i = 0; i < nelem; i++) {
37587c478bd9Sstevel@tonic-gate 			if (error = nvlist2rctlval(nvlarray[i], &rv))
37597c478bd9Sstevel@tonic-gate 				goto out;
37607c478bd9Sstevel@tonic-gate 		}
37617c478bd9Sstevel@tonic-gate 		if (rctl_invalid_value(rde, &rv)) {
37627c478bd9Sstevel@tonic-gate 			error = EINVAL;
37637c478bd9Sstevel@tonic-gate 			goto out;
37647c478bd9Sstevel@tonic-gate 		}
37657c478bd9Sstevel@tonic-gate 	}
37667c478bd9Sstevel@tonic-gate 	error = 0;
37677c478bd9Sstevel@tonic-gate 	*nvlp = nvl;
37687c478bd9Sstevel@tonic-gate out:
37697c478bd9Sstevel@tonic-gate 	kmem_free(kbuf, buflen);
37707c478bd9Sstevel@tonic-gate 	if (error && nvl != NULL)
37717c478bd9Sstevel@tonic-gate 		nvlist_free(nvl);
37727c478bd9Sstevel@tonic-gate 	return (error);
37737c478bd9Sstevel@tonic-gate }
37747c478bd9Sstevel@tonic-gate 
37757c478bd9Sstevel@tonic-gate int
37767c478bd9Sstevel@tonic-gate zone_create_error(int er_error, int er_ext, int *er_out) {
37777c478bd9Sstevel@tonic-gate 	if (er_out != NULL) {
37787c478bd9Sstevel@tonic-gate 		if (copyout(&er_ext, er_out, sizeof (int))) {
37797c478bd9Sstevel@tonic-gate 			return (set_errno(EFAULT));
37807c478bd9Sstevel@tonic-gate 		}
37817c478bd9Sstevel@tonic-gate 	}
37827c478bd9Sstevel@tonic-gate 	return (set_errno(er_error));
37837c478bd9Sstevel@tonic-gate }
37847c478bd9Sstevel@tonic-gate 
378545916cd2Sjpk static int
378645916cd2Sjpk zone_set_label(zone_t *zone, const bslabel_t *lab, uint32_t doi)
378745916cd2Sjpk {
378845916cd2Sjpk 	ts_label_t *tsl;
378945916cd2Sjpk 	bslabel_t blab;
379045916cd2Sjpk 
379145916cd2Sjpk 	/* Get label from user */
379245916cd2Sjpk 	if (copyin(lab, &blab, sizeof (blab)) != 0)
379345916cd2Sjpk 		return (EFAULT);
379445916cd2Sjpk 	tsl = labelalloc(&blab, doi, KM_NOSLEEP);
379545916cd2Sjpk 	if (tsl == NULL)
379645916cd2Sjpk 		return (ENOMEM);
379745916cd2Sjpk 
379845916cd2Sjpk 	zone->zone_slabel = tsl;
379945916cd2Sjpk 	return (0);
380045916cd2Sjpk }
380145916cd2Sjpk 
38027c478bd9Sstevel@tonic-gate /*
3803fa9e4066Sahrens  * Parses a comma-separated list of ZFS datasets into a per-zone dictionary.
3804fa9e4066Sahrens  */
3805fa9e4066Sahrens static int
3806fa9e4066Sahrens parse_zfs(zone_t *zone, caddr_t ubuf, size_t buflen)
3807fa9e4066Sahrens {
3808fa9e4066Sahrens 	char *kbuf;
3809fa9e4066Sahrens 	char *dataset, *next;
3810fa9e4066Sahrens 	zone_dataset_t *zd;
3811fa9e4066Sahrens 	size_t len;
3812fa9e4066Sahrens 
3813fa9e4066Sahrens 	if (ubuf == NULL || buflen == 0)
3814fa9e4066Sahrens 		return (0);
3815fa9e4066Sahrens 
3816fa9e4066Sahrens 	if ((kbuf = kmem_alloc(buflen, KM_NOSLEEP)) == NULL)
3817fa9e4066Sahrens 		return (ENOMEM);
3818fa9e4066Sahrens 
3819fa9e4066Sahrens 	if (copyin(ubuf, kbuf, buflen) != 0) {
3820fa9e4066Sahrens 		kmem_free(kbuf, buflen);
3821fa9e4066Sahrens 		return (EFAULT);
3822fa9e4066Sahrens 	}
3823fa9e4066Sahrens 
3824fa9e4066Sahrens 	dataset = next = kbuf;
3825fa9e4066Sahrens 	for (;;) {
3826fa9e4066Sahrens 		zd = kmem_alloc(sizeof (zone_dataset_t), KM_SLEEP);
3827fa9e4066Sahrens 
3828fa9e4066Sahrens 		next = strchr(dataset, ',');
3829fa9e4066Sahrens 
3830fa9e4066Sahrens 		if (next == NULL)
3831fa9e4066Sahrens 			len = strlen(dataset);
3832fa9e4066Sahrens 		else
3833fa9e4066Sahrens 			len = next - dataset;
3834fa9e4066Sahrens 
3835fa9e4066Sahrens 		zd->zd_dataset = kmem_alloc(len + 1, KM_SLEEP);
3836fa9e4066Sahrens 		bcopy(dataset, zd->zd_dataset, len);
3837fa9e4066Sahrens 		zd->zd_dataset[len] = '\0';
3838fa9e4066Sahrens 
3839fa9e4066Sahrens 		list_insert_head(&zone->zone_datasets, zd);
3840fa9e4066Sahrens 
3841fa9e4066Sahrens 		if (next == NULL)
3842fa9e4066Sahrens 			break;
3843fa9e4066Sahrens 
3844fa9e4066Sahrens 		dataset = next + 1;
3845fa9e4066Sahrens 	}
3846fa9e4066Sahrens 
3847fa9e4066Sahrens 	kmem_free(kbuf, buflen);
3848fa9e4066Sahrens 	return (0);
3849fa9e4066Sahrens }
3850fa9e4066Sahrens 
3851fa9e4066Sahrens /*
38527c478bd9Sstevel@tonic-gate  * System call to create/initialize a new zone named 'zone_name', rooted
38537c478bd9Sstevel@tonic-gate  * at 'zone_root', with a zone-wide privilege limit set of 'zone_privs',
385445916cd2Sjpk  * and initialized with the zone-wide rctls described in 'rctlbuf', and
385545916cd2Sjpk  * with labeling set by 'match', 'doi', and 'label'.
38567c478bd9Sstevel@tonic-gate  *
38577c478bd9Sstevel@tonic-gate  * If extended error is non-null, we may use it to return more detailed
38587c478bd9Sstevel@tonic-gate  * error information.
38597c478bd9Sstevel@tonic-gate  */
38607c478bd9Sstevel@tonic-gate static zoneid_t
38617c478bd9Sstevel@tonic-gate zone_create(const char *zone_name, const char *zone_root,
3862821c4a97Sdp     const priv_set_t *zone_privs, size_t zone_privssz,
3863821c4a97Sdp     caddr_t rctlbuf, size_t rctlbufsz,
386445916cd2Sjpk     caddr_t zfsbuf, size_t zfsbufsz, int *extended_error,
3865f4b3ec61Sdh155122     int match, uint32_t doi, const bslabel_t *label,
3866f4b3ec61Sdh155122     int flags)
38677c478bd9Sstevel@tonic-gate {
38687c478bd9Sstevel@tonic-gate 	struct zsched_arg zarg;
38697c478bd9Sstevel@tonic-gate 	nvlist_t *rctls = NULL;
38707c478bd9Sstevel@tonic-gate 	proc_t *pp = curproc;
38717c478bd9Sstevel@tonic-gate 	zone_t *zone, *ztmp;
38727c478bd9Sstevel@tonic-gate 	zoneid_t zoneid;
38737c478bd9Sstevel@tonic-gate 	int error;
38747c478bd9Sstevel@tonic-gate 	int error2 = 0;
38757c478bd9Sstevel@tonic-gate 	char *str;
38767c478bd9Sstevel@tonic-gate 	cred_t *zkcr;
387748451833Scarlsonj 	boolean_t insert_label_hash;
38787c478bd9Sstevel@tonic-gate 
38797c478bd9Sstevel@tonic-gate 	if (secpolicy_zone_config(CRED()) != 0)
38807c478bd9Sstevel@tonic-gate 		return (set_errno(EPERM));
38817c478bd9Sstevel@tonic-gate 
38827c478bd9Sstevel@tonic-gate 	/* can't boot zone from within chroot environment */
38837c478bd9Sstevel@tonic-gate 	if (PTOU(pp)->u_rdir != NULL && PTOU(pp)->u_rdir != rootdir)
38847c478bd9Sstevel@tonic-gate 		return (zone_create_error(ENOTSUP, ZE_CHROOTED,
38857c478bd9Sstevel@tonic-gate 		    extended_error));
38867c478bd9Sstevel@tonic-gate 
38877c478bd9Sstevel@tonic-gate 	zone = kmem_zalloc(sizeof (zone_t), KM_SLEEP);
38887c478bd9Sstevel@tonic-gate 	zoneid = zone->zone_id = id_alloc(zoneid_space);
38897c478bd9Sstevel@tonic-gate 	zone->zone_status = ZONE_IS_UNINITIALIZED;
38907c478bd9Sstevel@tonic-gate 	zone->zone_pool = pool_default;
38917c478bd9Sstevel@tonic-gate 	zone->zone_pool_mod = gethrtime();
38927c478bd9Sstevel@tonic-gate 	zone->zone_psetid = ZONE_PS_INVAL;
38937c478bd9Sstevel@tonic-gate 	zone->zone_ncpus = 0;
38947c478bd9Sstevel@tonic-gate 	zone->zone_ncpus_online = 0;
38959acbbeafSnn35248 	zone->zone_restart_init = B_TRUE;
38969acbbeafSnn35248 	zone->zone_brand = &native_brand;
38979acbbeafSnn35248 	zone->zone_initname = NULL;
38987c478bd9Sstevel@tonic-gate 	mutex_init(&zone->zone_lock, NULL, MUTEX_DEFAULT, NULL);
38997c478bd9Sstevel@tonic-gate 	mutex_init(&zone->zone_nlwps_lock, NULL, MUTEX_DEFAULT, NULL);
39000209230bSgjelinek 	mutex_init(&zone->zone_mem_lock, NULL, MUTEX_DEFAULT, NULL);
39017c478bd9Sstevel@tonic-gate 	cv_init(&zone->zone_cv, NULL, CV_DEFAULT, NULL);
39027c478bd9Sstevel@tonic-gate 	list_create(&zone->zone_zsd, sizeof (struct zsd_entry),
39037c478bd9Sstevel@tonic-gate 	    offsetof(struct zsd_entry, zsd_linkage));
3904fa9e4066Sahrens 	list_create(&zone->zone_datasets, sizeof (zone_dataset_t),
3905fa9e4066Sahrens 	    offsetof(zone_dataset_t, zd_linkage));
39062b24ab6bSSebastien Roy 	list_create(&zone->zone_dl_list, sizeof (zone_dl_t),
39072b24ab6bSSebastien Roy 	    offsetof(zone_dl_t, zdl_linkage));
390845916cd2Sjpk 	rw_init(&zone->zone_mlps.mlpl_rwlock, NULL, RW_DEFAULT, NULL);
3909835ee219SRobert Harris 	rw_init(&zone->zone_mntfs_db_lock, NULL, RW_DEFAULT, NULL);
39107c478bd9Sstevel@tonic-gate 
3911f4b3ec61Sdh155122 	if (flags & ZCF_NET_EXCL) {
3912f4b3ec61Sdh155122 		zone->zone_flags |= ZF_NET_EXCL;
3913f4b3ec61Sdh155122 	}
3914f4b3ec61Sdh155122 
39157c478bd9Sstevel@tonic-gate 	if ((error = zone_set_name(zone, zone_name)) != 0) {
39167c478bd9Sstevel@tonic-gate 		zone_free(zone);
39177c478bd9Sstevel@tonic-gate 		return (zone_create_error(error, 0, extended_error));
39187c478bd9Sstevel@tonic-gate 	}
39197c478bd9Sstevel@tonic-gate 
39207c478bd9Sstevel@tonic-gate 	if ((error = zone_set_root(zone, zone_root)) != 0) {
39217c478bd9Sstevel@tonic-gate 		zone_free(zone);
39227c478bd9Sstevel@tonic-gate 		return (zone_create_error(error, 0, extended_error));
39237c478bd9Sstevel@tonic-gate 	}
3924821c4a97Sdp 	if ((error = zone_set_privset(zone, zone_privs, zone_privssz)) != 0) {
39257c478bd9Sstevel@tonic-gate 		zone_free(zone);
39267c478bd9Sstevel@tonic-gate 		return (zone_create_error(error, 0, extended_error));
39277c478bd9Sstevel@tonic-gate 	}
39287c478bd9Sstevel@tonic-gate 
39297c478bd9Sstevel@tonic-gate 	/* initialize node name to be the same as zone name */
39307c478bd9Sstevel@tonic-gate 	zone->zone_nodename = kmem_alloc(_SYS_NMLN, KM_SLEEP);
39317c478bd9Sstevel@tonic-gate 	(void) strncpy(zone->zone_nodename, zone->zone_name, _SYS_NMLN);
39327c478bd9Sstevel@tonic-gate 	zone->zone_nodename[_SYS_NMLN - 1] = '\0';
39337c478bd9Sstevel@tonic-gate 
39347c478bd9Sstevel@tonic-gate 	zone->zone_domain = kmem_alloc(_SYS_NMLN, KM_SLEEP);
39357c478bd9Sstevel@tonic-gate 	zone->zone_domain[0] = '\0';
39365679c89fSjv227347 	zone->zone_hostid = HW_INVALID_HOSTID;
39377c478bd9Sstevel@tonic-gate 	zone->zone_shares = 1;
3938824c205fSml93401 	zone->zone_shmmax = 0;
3939824c205fSml93401 	zone->zone_ipc.ipcq_shmmni = 0;
3940824c205fSml93401 	zone->zone_ipc.ipcq_semmni = 0;
3941824c205fSml93401 	zone->zone_ipc.ipcq_msgmni = 0;
39427c478bd9Sstevel@tonic-gate 	zone->zone_bootargs = NULL;
3943*0fbb751dSJohn Levon 	zone->zone_fs_allowed = NULL;
39443f2f09c1Sdp 	zone->zone_initname =
39453f2f09c1Sdp 	    kmem_alloc(strlen(zone_default_initname) + 1, KM_SLEEP);
39463f2f09c1Sdp 	(void) strcpy(zone->zone_initname, zone_default_initname);
39470209230bSgjelinek 	zone->zone_nlwps = 0;
39480209230bSgjelinek 	zone->zone_nlwps_ctl = INT_MAX;
3949c6939658Ssl108498 	zone->zone_locked_mem = 0;
3950c6939658Ssl108498 	zone->zone_locked_mem_ctl = UINT64_MAX;
39510209230bSgjelinek 	zone->zone_max_swap = 0;
39520209230bSgjelinek 	zone->zone_max_swap_ctl = UINT64_MAX;
3953*0fbb751dSJohn Levon 	zone->zone_max_lofi = 0;
3954*0fbb751dSJohn Levon 	zone->zone_max_lofi_ctl = UINT64_MAX;
39550209230bSgjelinek 	zone0.zone_lockedmem_kstat = NULL;
39560209230bSgjelinek 	zone0.zone_swapresv_kstat = NULL;
39577c478bd9Sstevel@tonic-gate 
39587c478bd9Sstevel@tonic-gate 	/*
39597c478bd9Sstevel@tonic-gate 	 * Zsched initializes the rctls.
39607c478bd9Sstevel@tonic-gate 	 */
39617c478bd9Sstevel@tonic-gate 	zone->zone_rctls = NULL;
39627c478bd9Sstevel@tonic-gate 
39637c478bd9Sstevel@tonic-gate 	if ((error = parse_rctls(rctlbuf, rctlbufsz, &rctls)) != 0) {
39647c478bd9Sstevel@tonic-gate 		zone_free(zone);
39657c478bd9Sstevel@tonic-gate 		return (zone_create_error(error, 0, extended_error));
39667c478bd9Sstevel@tonic-gate 	}
39677c478bd9Sstevel@tonic-gate 
3968fa9e4066Sahrens 	if ((error = parse_zfs(zone, zfsbuf, zfsbufsz)) != 0) {
3969fa9e4066Sahrens 		zone_free(zone);
3970fa9e4066Sahrens 		return (set_errno(error));
3971fa9e4066Sahrens 	}
3972fa9e4066Sahrens 
39737c478bd9Sstevel@tonic-gate 	/*
397445916cd2Sjpk 	 * Read in the trusted system parameters:
397545916cd2Sjpk 	 * match flag and sensitivity label.
397645916cd2Sjpk 	 */
397745916cd2Sjpk 	zone->zone_match = match;
397848451833Scarlsonj 	if (is_system_labeled() && !(zone->zone_flags & ZF_IS_SCRATCH)) {
39797e6639c2Skp158701 		/* Fail if requested to set doi to anything but system's doi */
39807e6639c2Skp158701 		if (doi != 0 && doi != default_doi) {
39817e6639c2Skp158701 			zone_free(zone);
39827e6639c2Skp158701 			return (set_errno(EINVAL));
39837e6639c2Skp158701 		}
39847e6639c2Skp158701 		/* Always apply system's doi to the zone */
39857e6639c2Skp158701 		error = zone_set_label(zone, label, default_doi);
398645916cd2Sjpk 		if (error != 0) {
398745916cd2Sjpk 			zone_free(zone);
398845916cd2Sjpk 			return (set_errno(error));
398945916cd2Sjpk 		}
399048451833Scarlsonj 		insert_label_hash = B_TRUE;
399145916cd2Sjpk 	} else {
399245916cd2Sjpk 		/* all zones get an admin_low label if system is not labeled */
399345916cd2Sjpk 		zone->zone_slabel = l_admin_low;
399445916cd2Sjpk 		label_hold(l_admin_low);
399548451833Scarlsonj 		insert_label_hash = B_FALSE;
399645916cd2Sjpk 	}
399745916cd2Sjpk 
399845916cd2Sjpk 	/*
39997c478bd9Sstevel@tonic-gate 	 * Stop all lwps since that's what normally happens as part of fork().
40007c478bd9Sstevel@tonic-gate 	 * This needs to happen before we grab any locks to avoid deadlock
40017c478bd9Sstevel@tonic-gate 	 * (another lwp in the process could be waiting for the held lock).
40027c478bd9Sstevel@tonic-gate 	 */
40037c478bd9Sstevel@tonic-gate 	if (curthread != pp->p_agenttp && !holdlwps(SHOLDFORK)) {
40047c478bd9Sstevel@tonic-gate 		zone_free(zone);
40057c478bd9Sstevel@tonic-gate 		if (rctls)
40067c478bd9Sstevel@tonic-gate 			nvlist_free(rctls);
40077c478bd9Sstevel@tonic-gate 		return (zone_create_error(error, 0, extended_error));
40087c478bd9Sstevel@tonic-gate 	}
40097c478bd9Sstevel@tonic-gate 
40107c478bd9Sstevel@tonic-gate 	if (block_mounts() == 0) {
40117c478bd9Sstevel@tonic-gate 		mutex_enter(&pp->p_lock);
40127c478bd9Sstevel@tonic-gate 		if (curthread != pp->p_agenttp)
40137c478bd9Sstevel@tonic-gate 			continuelwps(pp);
40147c478bd9Sstevel@tonic-gate 		mutex_exit(&pp->p_lock);
40157c478bd9Sstevel@tonic-gate 		zone_free(zone);
40167c478bd9Sstevel@tonic-gate 		if (rctls)
40177c478bd9Sstevel@tonic-gate 			nvlist_free(rctls);
40187c478bd9Sstevel@tonic-gate 		return (zone_create_error(error, 0, extended_error));
40197c478bd9Sstevel@tonic-gate 	}
40207c478bd9Sstevel@tonic-gate 
40217c478bd9Sstevel@tonic-gate 	/*
40227c478bd9Sstevel@tonic-gate 	 * Set up credential for kernel access.  After this, any errors
40237c478bd9Sstevel@tonic-gate 	 * should go through the dance in errout rather than calling
40247c478bd9Sstevel@tonic-gate 	 * zone_free directly.
40257c478bd9Sstevel@tonic-gate 	 */
40267c478bd9Sstevel@tonic-gate 	zone->zone_kcred = crdup(kcred);
40277c478bd9Sstevel@tonic-gate 	crsetzone(zone->zone_kcred, zone);
40287c478bd9Sstevel@tonic-gate 	priv_intersect(zone->zone_privset, &CR_PPRIV(zone->zone_kcred));
40297c478bd9Sstevel@tonic-gate 	priv_intersect(zone->zone_privset, &CR_EPRIV(zone->zone_kcred));
40307c478bd9Sstevel@tonic-gate 	priv_intersect(zone->zone_privset, &CR_IPRIV(zone->zone_kcred));
40317c478bd9Sstevel@tonic-gate 	priv_intersect(zone->zone_privset, &CR_LPRIV(zone->zone_kcred));
40327c478bd9Sstevel@tonic-gate 
40337c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
40347c478bd9Sstevel@tonic-gate 	/*
40357c478bd9Sstevel@tonic-gate 	 * Make sure zone doesn't already exist.
403645916cd2Sjpk 	 *
403745916cd2Sjpk 	 * If the system and zone are labeled,
403845916cd2Sjpk 	 * make sure no other zone exists that has the same label.
40397c478bd9Sstevel@tonic-gate 	 */
404045916cd2Sjpk 	if ((ztmp = zone_find_all_by_name(zone->zone_name)) != NULL ||
404148451833Scarlsonj 	    (insert_label_hash &&
404245916cd2Sjpk 	    (ztmp = zone_find_all_by_label(zone->zone_slabel)) != NULL)) {
40437c478bd9Sstevel@tonic-gate 		zone_status_t status;
40447c478bd9Sstevel@tonic-gate 
40457c478bd9Sstevel@tonic-gate 		status = zone_status_get(ztmp);
40467c478bd9Sstevel@tonic-gate 		if (status == ZONE_IS_READY || status == ZONE_IS_RUNNING)
40477c478bd9Sstevel@tonic-gate 			error = EEXIST;
40487c478bd9Sstevel@tonic-gate 		else
40497c478bd9Sstevel@tonic-gate 			error = EBUSY;
40508c55461bSton 
40518c55461bSton 		if (insert_label_hash)
40528c55461bSton 			error2 = ZE_LABELINUSE;
40538c55461bSton 
40547c478bd9Sstevel@tonic-gate 		goto errout;
40557c478bd9Sstevel@tonic-gate 	}
40567c478bd9Sstevel@tonic-gate 
40577c478bd9Sstevel@tonic-gate 	/*
40587c478bd9Sstevel@tonic-gate 	 * Don't allow zone creations which would cause one zone's rootpath to
40597c478bd9Sstevel@tonic-gate 	 * be accessible from that of another (non-global) zone.
40607c478bd9Sstevel@tonic-gate 	 */
40617c478bd9Sstevel@tonic-gate 	if (zone_is_nested(zone->zone_rootpath)) {
40627c478bd9Sstevel@tonic-gate 		error = EBUSY;
40637c478bd9Sstevel@tonic-gate 		goto errout;
40647c478bd9Sstevel@tonic-gate 	}
40657c478bd9Sstevel@tonic-gate 
40667c478bd9Sstevel@tonic-gate 	ASSERT(zonecount != 0);		/* check for leaks */
40677c478bd9Sstevel@tonic-gate 	if (zonecount + 1 > maxzones) {
40687c478bd9Sstevel@tonic-gate 		error = ENOMEM;
40697c478bd9Sstevel@tonic-gate 		goto errout;
40707c478bd9Sstevel@tonic-gate 	}
40717c478bd9Sstevel@tonic-gate 
40727c478bd9Sstevel@tonic-gate 	if (zone_mount_count(zone->zone_rootpath) != 0) {
40737c478bd9Sstevel@tonic-gate 		error = EBUSY;
40747c478bd9Sstevel@tonic-gate 		error2 = ZE_AREMOUNTS;
40757c478bd9Sstevel@tonic-gate 		goto errout;
40767c478bd9Sstevel@tonic-gate 	}
40777c478bd9Sstevel@tonic-gate 
40787c478bd9Sstevel@tonic-gate 	/*
40797c478bd9Sstevel@tonic-gate 	 * Zone is still incomplete, but we need to drop all locks while
40807c478bd9Sstevel@tonic-gate 	 * zsched() initializes this zone's kernel process.  We
40817c478bd9Sstevel@tonic-gate 	 * optimistically add the zone to the hashtable and associated
40827c478bd9Sstevel@tonic-gate 	 * lists so a parallel zone_create() doesn't try to create the
40837c478bd9Sstevel@tonic-gate 	 * same zone.
40847c478bd9Sstevel@tonic-gate 	 */
40857c478bd9Sstevel@tonic-gate 	zonecount++;
40867c478bd9Sstevel@tonic-gate 	(void) mod_hash_insert(zonehashbyid,
40877c478bd9Sstevel@tonic-gate 	    (mod_hash_key_t)(uintptr_t)zone->zone_id,
40887c478bd9Sstevel@tonic-gate 	    (mod_hash_val_t)(uintptr_t)zone);
40897c478bd9Sstevel@tonic-gate 	str = kmem_alloc(strlen(zone->zone_name) + 1, KM_SLEEP);
40907c478bd9Sstevel@tonic-gate 	(void) strcpy(str, zone->zone_name);
40917c478bd9Sstevel@tonic-gate 	(void) mod_hash_insert(zonehashbyname, (mod_hash_key_t)str,
40927c478bd9Sstevel@tonic-gate 	    (mod_hash_val_t)(uintptr_t)zone);
409348451833Scarlsonj 	if (insert_label_hash) {
409445916cd2Sjpk 		(void) mod_hash_insert(zonehashbylabel,
409545916cd2Sjpk 		    (mod_hash_key_t)zone->zone_slabel, (mod_hash_val_t)zone);
409648451833Scarlsonj 		zone->zone_flags |= ZF_HASHED_LABEL;
409745916cd2Sjpk 	}
409845916cd2Sjpk 
40997c478bd9Sstevel@tonic-gate 	/*
41007c478bd9Sstevel@tonic-gate 	 * Insert into active list.  At this point there are no 'hold's
41017c478bd9Sstevel@tonic-gate 	 * on the zone, but everyone else knows not to use it, so we can
41027c478bd9Sstevel@tonic-gate 	 * continue to use it.  zsched() will do a zone_hold() if the
41037c478bd9Sstevel@tonic-gate 	 * newproc() is successful.
41047c478bd9Sstevel@tonic-gate 	 */
41057c478bd9Sstevel@tonic-gate 	list_insert_tail(&zone_active, zone);
41067c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
41077c478bd9Sstevel@tonic-gate 
41087c478bd9Sstevel@tonic-gate 	zarg.zone = zone;
41097c478bd9Sstevel@tonic-gate 	zarg.nvlist = rctls;
41107c478bd9Sstevel@tonic-gate 	/*
41117c478bd9Sstevel@tonic-gate 	 * The process, task, and project rctls are probably wrong;
41127c478bd9Sstevel@tonic-gate 	 * we need an interface to get the default values of all rctls,
41137c478bd9Sstevel@tonic-gate 	 * and initialize zsched appropriately.  I'm not sure that that
41147c478bd9Sstevel@tonic-gate 	 * makes much of a difference, though.
41157c478bd9Sstevel@tonic-gate 	 */
411635a5a358SJonathan Adams 	error = newproc(zsched, (void *)&zarg, syscid, minclsyspri, NULL, 0);
411735a5a358SJonathan Adams 	if (error != 0) {
41187c478bd9Sstevel@tonic-gate 		/*
41197c478bd9Sstevel@tonic-gate 		 * We need to undo all globally visible state.
41207c478bd9Sstevel@tonic-gate 		 */
41217c478bd9Sstevel@tonic-gate 		mutex_enter(&zonehash_lock);
41227c478bd9Sstevel@tonic-gate 		list_remove(&zone_active, zone);
412348451833Scarlsonj 		if (zone->zone_flags & ZF_HASHED_LABEL) {
412445916cd2Sjpk 			ASSERT(zone->zone_slabel != NULL);
412545916cd2Sjpk 			(void) mod_hash_destroy(zonehashbylabel,
412645916cd2Sjpk 			    (mod_hash_key_t)zone->zone_slabel);
412745916cd2Sjpk 		}
41287c478bd9Sstevel@tonic-gate 		(void) mod_hash_destroy(zonehashbyname,
41297c478bd9Sstevel@tonic-gate 		    (mod_hash_key_t)(uintptr_t)zone->zone_name);
41307c478bd9Sstevel@tonic-gate 		(void) mod_hash_destroy(zonehashbyid,
41317c478bd9Sstevel@tonic-gate 		    (mod_hash_key_t)(uintptr_t)zone->zone_id);
41327c478bd9Sstevel@tonic-gate 		ASSERT(zonecount > 1);
41337c478bd9Sstevel@tonic-gate 		zonecount--;
41347c478bd9Sstevel@tonic-gate 		goto errout;
41357c478bd9Sstevel@tonic-gate 	}
41367c478bd9Sstevel@tonic-gate 
41377c478bd9Sstevel@tonic-gate 	/*
41387c478bd9Sstevel@tonic-gate 	 * Zone creation can't fail from now on.
41397c478bd9Sstevel@tonic-gate 	 */
41407c478bd9Sstevel@tonic-gate 
41417c478bd9Sstevel@tonic-gate 	/*
41420209230bSgjelinek 	 * Create zone kstats
41430209230bSgjelinek 	 */
41440209230bSgjelinek 	zone_kstat_create(zone);
41450209230bSgjelinek 
41460209230bSgjelinek 	/*
41477c478bd9Sstevel@tonic-gate 	 * Let the other lwps continue.
41487c478bd9Sstevel@tonic-gate 	 */
41497c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
41507c478bd9Sstevel@tonic-gate 	if (curthread != pp->p_agenttp)
41517c478bd9Sstevel@tonic-gate 		continuelwps(pp);
41527c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
41537c478bd9Sstevel@tonic-gate 
41547c478bd9Sstevel@tonic-gate 	/*
41557c478bd9Sstevel@tonic-gate 	 * Wait for zsched to finish initializing the zone.
41567c478bd9Sstevel@tonic-gate 	 */
41577c478bd9Sstevel@tonic-gate 	zone_status_wait(zone, ZONE_IS_READY);
41587c478bd9Sstevel@tonic-gate 	/*
41597c478bd9Sstevel@tonic-gate 	 * The zone is fully visible, so we can let mounts progress.
41607c478bd9Sstevel@tonic-gate 	 */
41617c478bd9Sstevel@tonic-gate 	resume_mounts();
41627c478bd9Sstevel@tonic-gate 	if (rctls)
41637c478bd9Sstevel@tonic-gate 		nvlist_free(rctls);
41647c478bd9Sstevel@tonic-gate 
41657c478bd9Sstevel@tonic-gate 	return (zoneid);
41667c478bd9Sstevel@tonic-gate 
41677c478bd9Sstevel@tonic-gate errout:
41687c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
41697c478bd9Sstevel@tonic-gate 	/*
41707c478bd9Sstevel@tonic-gate 	 * Let the other lwps continue.
41717c478bd9Sstevel@tonic-gate 	 */
41727c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
41737c478bd9Sstevel@tonic-gate 	if (curthread != pp->p_agenttp)
41747c478bd9Sstevel@tonic-gate 		continuelwps(pp);
41757c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
41767c478bd9Sstevel@tonic-gate 
41777c478bd9Sstevel@tonic-gate 	resume_mounts();
41787c478bd9Sstevel@tonic-gate 	if (rctls)
41797c478bd9Sstevel@tonic-gate 		nvlist_free(rctls);
41807c478bd9Sstevel@tonic-gate 	/*
41817c478bd9Sstevel@tonic-gate 	 * There is currently one reference to the zone, a cred_ref from
41827c478bd9Sstevel@tonic-gate 	 * zone_kcred.  To free the zone, we call crfree, which will call
41837c478bd9Sstevel@tonic-gate 	 * zone_cred_rele, which will call zone_free.
41847c478bd9Sstevel@tonic-gate 	 */
41857c478bd9Sstevel@tonic-gate 	ASSERT(zone->zone_cred_ref == 1);	/* for zone_kcred */
41867c478bd9Sstevel@tonic-gate 	ASSERT(zone->zone_kcred->cr_ref == 1);
41877c478bd9Sstevel@tonic-gate 	ASSERT(zone->zone_ref == 0);
41887c478bd9Sstevel@tonic-gate 	zkcr = zone->zone_kcred;
41897c478bd9Sstevel@tonic-gate 	zone->zone_kcred = NULL;
41907c478bd9Sstevel@tonic-gate 	crfree(zkcr);				/* triggers call to zone_free */
41917c478bd9Sstevel@tonic-gate 	return (zone_create_error(error, error2, extended_error));
41927c478bd9Sstevel@tonic-gate }
41937c478bd9Sstevel@tonic-gate 
41947c478bd9Sstevel@tonic-gate /*
41957c478bd9Sstevel@tonic-gate  * Cause the zone to boot.  This is pretty simple, since we let zoneadmd do
41963f2f09c1Sdp  * the heavy lifting.  initname is the path to the program to launch
41973f2f09c1Sdp  * at the "top" of the zone; if this is NULL, we use the system default,
41983f2f09c1Sdp  * which is stored at zone_default_initname.
41997c478bd9Sstevel@tonic-gate  */
42007c478bd9Sstevel@tonic-gate static int
42013f2f09c1Sdp zone_boot(zoneid_t zoneid)
42027c478bd9Sstevel@tonic-gate {
42037c478bd9Sstevel@tonic-gate 	int err;
42047c478bd9Sstevel@tonic-gate 	zone_t *zone;
42057c478bd9Sstevel@tonic-gate 
42067c478bd9Sstevel@tonic-gate 	if (secpolicy_zone_config(CRED()) != 0)
42077c478bd9Sstevel@tonic-gate 		return (set_errno(EPERM));
42087c478bd9Sstevel@tonic-gate 	if (zoneid < MIN_USERZONEID || zoneid > MAX_ZONEID)
42097c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
42107c478bd9Sstevel@tonic-gate 
42117c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
42127c478bd9Sstevel@tonic-gate 	/*
42137c478bd9Sstevel@tonic-gate 	 * Look for zone under hash lock to prevent races with calls to
42147c478bd9Sstevel@tonic-gate 	 * zone_shutdown, zone_destroy, etc.
42157c478bd9Sstevel@tonic-gate 	 */
42167c478bd9Sstevel@tonic-gate 	if ((zone = zone_find_all_by_id(zoneid)) == NULL) {
42177c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
42187c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
42197c478bd9Sstevel@tonic-gate 	}
42207c478bd9Sstevel@tonic-gate 
42217c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
42227c478bd9Sstevel@tonic-gate 	if (zone_status_get(zone) != ZONE_IS_READY) {
42237c478bd9Sstevel@tonic-gate 		mutex_exit(&zone_status_lock);
42247c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
42257c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
42267c478bd9Sstevel@tonic-gate 	}
42277c478bd9Sstevel@tonic-gate 	zone_status_set(zone, ZONE_IS_BOOTING);
42287c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
42297c478bd9Sstevel@tonic-gate 
42307c478bd9Sstevel@tonic-gate 	zone_hold(zone);	/* so we can use the zone_t later */
42317c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
42327c478bd9Sstevel@tonic-gate 
42337c478bd9Sstevel@tonic-gate 	if (zone_status_wait_sig(zone, ZONE_IS_RUNNING) == 0) {
42347c478bd9Sstevel@tonic-gate 		zone_rele(zone);
42357c478bd9Sstevel@tonic-gate 		return (set_errno(EINTR));
42367c478bd9Sstevel@tonic-gate 	}
42377c478bd9Sstevel@tonic-gate 
42387c478bd9Sstevel@tonic-gate 	/*
42397c478bd9Sstevel@tonic-gate 	 * Boot (starting init) might have failed, in which case the zone
42407c478bd9Sstevel@tonic-gate 	 * will go to the SHUTTING_DOWN state; an appropriate errno will
42417c478bd9Sstevel@tonic-gate 	 * be placed in zone->zone_boot_err, and so we return that.
42427c478bd9Sstevel@tonic-gate 	 */
42437c478bd9Sstevel@tonic-gate 	err = zone->zone_boot_err;
42447c478bd9Sstevel@tonic-gate 	zone_rele(zone);
42457c478bd9Sstevel@tonic-gate 	return (err ? set_errno(err) : 0);
42467c478bd9Sstevel@tonic-gate }
42477c478bd9Sstevel@tonic-gate 
42487c478bd9Sstevel@tonic-gate /*
42497c478bd9Sstevel@tonic-gate  * Kills all user processes in the zone, waiting for them all to exit
42507c478bd9Sstevel@tonic-gate  * before returning.
42517c478bd9Sstevel@tonic-gate  */
42527c478bd9Sstevel@tonic-gate static int
42537c478bd9Sstevel@tonic-gate zone_empty(zone_t *zone)
42547c478bd9Sstevel@tonic-gate {
42557c478bd9Sstevel@tonic-gate 	int waitstatus;
42567c478bd9Sstevel@tonic-gate 
42577c478bd9Sstevel@tonic-gate 	/*
42587c478bd9Sstevel@tonic-gate 	 * We need to drop zonehash_lock before killing all
42597c478bd9Sstevel@tonic-gate 	 * processes, otherwise we'll deadlock with zone_find_*
42607c478bd9Sstevel@tonic-gate 	 * which can be called from the exit path.
42617c478bd9Sstevel@tonic-gate 	 */
42627c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_NOT_HELD(&zonehash_lock));
4263d3d50737SRafael Vanoni 	while ((waitstatus = zone_status_timedwait_sig(zone,
4264d3d50737SRafael Vanoni 	    ddi_get_lbolt() + hz, ZONE_IS_EMPTY)) == -1) {
42657c478bd9Sstevel@tonic-gate 		killall(zone->zone_id);
42667c478bd9Sstevel@tonic-gate 	}
42677c478bd9Sstevel@tonic-gate 	/*
42687c478bd9Sstevel@tonic-gate 	 * return EINTR if we were signaled
42697c478bd9Sstevel@tonic-gate 	 */
42707c478bd9Sstevel@tonic-gate 	if (waitstatus == 0)
42717c478bd9Sstevel@tonic-gate 		return (EINTR);
42727c478bd9Sstevel@tonic-gate 	return (0);
42737c478bd9Sstevel@tonic-gate }
42747c478bd9Sstevel@tonic-gate 
42757c478bd9Sstevel@tonic-gate /*
427645916cd2Sjpk  * This function implements the policy for zone visibility.
427745916cd2Sjpk  *
427845916cd2Sjpk  * In standard Solaris, a non-global zone can only see itself.
427945916cd2Sjpk  *
428045916cd2Sjpk  * In Trusted Extensions, a labeled zone can lookup any zone whose label
428145916cd2Sjpk  * it dominates. For this test, the label of the global zone is treated as
428245916cd2Sjpk  * admin_high so it is special-cased instead of being checked for dominance.
428345916cd2Sjpk  *
428445916cd2Sjpk  * Returns true if zone attributes are viewable, false otherwise.
428545916cd2Sjpk  */
428645916cd2Sjpk static boolean_t
428745916cd2Sjpk zone_list_access(zone_t *zone)
428845916cd2Sjpk {
428945916cd2Sjpk 
429045916cd2Sjpk 	if (curproc->p_zone == global_zone ||
429145916cd2Sjpk 	    curproc->p_zone == zone) {
429245916cd2Sjpk 		return (B_TRUE);
429348451833Scarlsonj 	} else if (is_system_labeled() && !(zone->zone_flags & ZF_IS_SCRATCH)) {
429445916cd2Sjpk 		bslabel_t *curproc_label;
429545916cd2Sjpk 		bslabel_t *zone_label;
429645916cd2Sjpk 
429745916cd2Sjpk 		curproc_label = label2bslabel(curproc->p_zone->zone_slabel);
429845916cd2Sjpk 		zone_label = label2bslabel(zone->zone_slabel);
429945916cd2Sjpk 
430045916cd2Sjpk 		if (zone->zone_id != GLOBAL_ZONEID &&
430145916cd2Sjpk 		    bldominates(curproc_label, zone_label)) {
430245916cd2Sjpk 			return (B_TRUE);
430345916cd2Sjpk 		} else {
430445916cd2Sjpk 			return (B_FALSE);
430545916cd2Sjpk 		}
430645916cd2Sjpk 	} else {
430745916cd2Sjpk 		return (B_FALSE);
430845916cd2Sjpk 	}
430945916cd2Sjpk }
431045916cd2Sjpk 
431145916cd2Sjpk /*
43127c478bd9Sstevel@tonic-gate  * Systemcall to start the zone's halt sequence.  By the time this
43137c478bd9Sstevel@tonic-gate  * function successfully returns, all user processes and kernel threads
43147c478bd9Sstevel@tonic-gate  * executing in it will have exited, ZSD shutdown callbacks executed,
43157c478bd9Sstevel@tonic-gate  * and the zone status set to ZONE_IS_DOWN.
43167c478bd9Sstevel@tonic-gate  *
43177c478bd9Sstevel@tonic-gate  * It is possible that the call will interrupt itself if the caller is the
43187c478bd9Sstevel@tonic-gate  * parent of any process running in the zone, and doesn't have SIGCHLD blocked.
43197c478bd9Sstevel@tonic-gate  */
43207c478bd9Sstevel@tonic-gate static int
43217c478bd9Sstevel@tonic-gate zone_shutdown(zoneid_t zoneid)
43227c478bd9Sstevel@tonic-gate {
43237c478bd9Sstevel@tonic-gate 	int error;
43247c478bd9Sstevel@tonic-gate 	zone_t *zone;
43257c478bd9Sstevel@tonic-gate 	zone_status_t status;
43267c478bd9Sstevel@tonic-gate 
43277c478bd9Sstevel@tonic-gate 	if (secpolicy_zone_config(CRED()) != 0)
43287c478bd9Sstevel@tonic-gate 		return (set_errno(EPERM));
43297c478bd9Sstevel@tonic-gate 	if (zoneid < MIN_USERZONEID || zoneid > MAX_ZONEID)
43307c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
43317c478bd9Sstevel@tonic-gate 
43327c478bd9Sstevel@tonic-gate 	/*
43337c478bd9Sstevel@tonic-gate 	 * Block mounts so that VFS_MOUNT() can get an accurate view of
43347c478bd9Sstevel@tonic-gate 	 * the zone's status with regards to ZONE_IS_SHUTTING down.
43357c478bd9Sstevel@tonic-gate 	 *
43367c478bd9Sstevel@tonic-gate 	 * e.g. NFS can fail the mount if it determines that the zone
43377c478bd9Sstevel@tonic-gate 	 * has already begun the shutdown sequence.
43387c478bd9Sstevel@tonic-gate 	 */
43397c478bd9Sstevel@tonic-gate 	if (block_mounts() == 0)
43407c478bd9Sstevel@tonic-gate 		return (set_errno(EINTR));
43417c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
43427c478bd9Sstevel@tonic-gate 	/*
43437c478bd9Sstevel@tonic-gate 	 * Look for zone under hash lock to prevent races with other
43447c478bd9Sstevel@tonic-gate 	 * calls to zone_shutdown and zone_destroy.
43457c478bd9Sstevel@tonic-gate 	 */
43467c478bd9Sstevel@tonic-gate 	if ((zone = zone_find_all_by_id(zoneid)) == NULL) {
43477c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
43487c478bd9Sstevel@tonic-gate 		resume_mounts();
43497c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
43507c478bd9Sstevel@tonic-gate 	}
43517c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
43527c478bd9Sstevel@tonic-gate 	status = zone_status_get(zone);
43537c478bd9Sstevel@tonic-gate 	/*
43547c478bd9Sstevel@tonic-gate 	 * Fail if the zone isn't fully initialized yet.
43557c478bd9Sstevel@tonic-gate 	 */
43567c478bd9Sstevel@tonic-gate 	if (status < ZONE_IS_READY) {
43577c478bd9Sstevel@tonic-gate 		mutex_exit(&zone_status_lock);
43587c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
43597c478bd9Sstevel@tonic-gate 		resume_mounts();
43607c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
43617c478bd9Sstevel@tonic-gate 	}
43627c478bd9Sstevel@tonic-gate 	/*
43637c478bd9Sstevel@tonic-gate 	 * If conditions required for zone_shutdown() to return have been met,
43647c478bd9Sstevel@tonic-gate 	 * return success.
43657c478bd9Sstevel@tonic-gate 	 */
43667c478bd9Sstevel@tonic-gate 	if (status >= ZONE_IS_DOWN) {
43677c478bd9Sstevel@tonic-gate 		mutex_exit(&zone_status_lock);
43687c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
43697c478bd9Sstevel@tonic-gate 		resume_mounts();
43707c478bd9Sstevel@tonic-gate 		return (0);
43717c478bd9Sstevel@tonic-gate 	}
43727c478bd9Sstevel@tonic-gate 	/*
43737c478bd9Sstevel@tonic-gate 	 * If zone_shutdown() hasn't been called before, go through the motions.
43747c478bd9Sstevel@tonic-gate 	 * If it has, there's nothing to do but wait for the kernel threads to
43757c478bd9Sstevel@tonic-gate 	 * drain.
43767c478bd9Sstevel@tonic-gate 	 */
43777c478bd9Sstevel@tonic-gate 	if (status < ZONE_IS_EMPTY) {
43787c478bd9Sstevel@tonic-gate 		uint_t ntasks;
43797c478bd9Sstevel@tonic-gate 
43807c478bd9Sstevel@tonic-gate 		mutex_enter(&zone->zone_lock);
43817c478bd9Sstevel@tonic-gate 		if ((ntasks = zone->zone_ntasks) != 1) {
43827c478bd9Sstevel@tonic-gate 			/*
43837c478bd9Sstevel@tonic-gate 			 * There's still stuff running.
43847c478bd9Sstevel@tonic-gate 			 */
43857c478bd9Sstevel@tonic-gate 			zone_status_set(zone, ZONE_IS_SHUTTING_DOWN);
43867c478bd9Sstevel@tonic-gate 		}
43877c478bd9Sstevel@tonic-gate 		mutex_exit(&zone->zone_lock);
43887c478bd9Sstevel@tonic-gate 		if (ntasks == 1) {
43897c478bd9Sstevel@tonic-gate 			/*
43907c478bd9Sstevel@tonic-gate 			 * The only way to create another task is through
43917c478bd9Sstevel@tonic-gate 			 * zone_enter(), which will block until we drop
43927c478bd9Sstevel@tonic-gate 			 * zonehash_lock.  The zone is empty.
43937c478bd9Sstevel@tonic-gate 			 */
43947c478bd9Sstevel@tonic-gate 			if (zone->zone_kthreads == NULL) {
43957c478bd9Sstevel@tonic-gate 				/*
43967c478bd9Sstevel@tonic-gate 				 * Skip ahead to ZONE_IS_DOWN
43977c478bd9Sstevel@tonic-gate 				 */
43987c478bd9Sstevel@tonic-gate 				zone_status_set(zone, ZONE_IS_DOWN);
43997c478bd9Sstevel@tonic-gate 			} else {
44007c478bd9Sstevel@tonic-gate 				zone_status_set(zone, ZONE_IS_EMPTY);
44017c478bd9Sstevel@tonic-gate 			}
44027c478bd9Sstevel@tonic-gate 		}
44037c478bd9Sstevel@tonic-gate 	}
44047c478bd9Sstevel@tonic-gate 	zone_hold(zone);	/* so we can use the zone_t later */
44057c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
44067c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
44077c478bd9Sstevel@tonic-gate 	resume_mounts();
44087c478bd9Sstevel@tonic-gate 
44097c478bd9Sstevel@tonic-gate 	if (error = zone_empty(zone)) {
44107c478bd9Sstevel@tonic-gate 		zone_rele(zone);
44117c478bd9Sstevel@tonic-gate 		return (set_errno(error));
44127c478bd9Sstevel@tonic-gate 	}
44137c478bd9Sstevel@tonic-gate 	/*
44147c478bd9Sstevel@tonic-gate 	 * After the zone status goes to ZONE_IS_DOWN this zone will no
44157c478bd9Sstevel@tonic-gate 	 * longer be notified of changes to the pools configuration, so
44167c478bd9Sstevel@tonic-gate 	 * in order to not end up with a stale pool pointer, we point
44177c478bd9Sstevel@tonic-gate 	 * ourselves at the default pool and remove all resource
44187c478bd9Sstevel@tonic-gate 	 * visibility.  This is especially important as the zone_t may
44197c478bd9Sstevel@tonic-gate 	 * languish on the deathrow for a very long time waiting for
44207c478bd9Sstevel@tonic-gate 	 * cred's to drain out.
44217c478bd9Sstevel@tonic-gate 	 *
44227c478bd9Sstevel@tonic-gate 	 * This rebinding of the zone can happen multiple times
44237c478bd9Sstevel@tonic-gate 	 * (presumably due to interrupted or parallel systemcalls)
44247c478bd9Sstevel@tonic-gate 	 * without any adverse effects.
44257c478bd9Sstevel@tonic-gate 	 */
44267c478bd9Sstevel@tonic-gate 	if (pool_lock_intr() != 0) {
44277c478bd9Sstevel@tonic-gate 		zone_rele(zone);
44287c478bd9Sstevel@tonic-gate 		return (set_errno(EINTR));
44297c478bd9Sstevel@tonic-gate 	}
44307c478bd9Sstevel@tonic-gate 	if (pool_state == POOL_ENABLED) {
44317c478bd9Sstevel@tonic-gate 		mutex_enter(&cpu_lock);
44327c478bd9Sstevel@tonic-gate 		zone_pool_set(zone, pool_default);
44337c478bd9Sstevel@tonic-gate 		/*
44347c478bd9Sstevel@tonic-gate 		 * The zone no longer needs to be able to see any cpus.
44357c478bd9Sstevel@tonic-gate 		 */
44367c478bd9Sstevel@tonic-gate 		zone_pset_set(zone, ZONE_PS_INVAL);
44377c478bd9Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
44387c478bd9Sstevel@tonic-gate 	}
44397c478bd9Sstevel@tonic-gate 	pool_unlock();
44407c478bd9Sstevel@tonic-gate 
44417c478bd9Sstevel@tonic-gate 	/*
44427c478bd9Sstevel@tonic-gate 	 * ZSD shutdown callbacks can be executed multiple times, hence
44437c478bd9Sstevel@tonic-gate 	 * it is safe to not be holding any locks across this call.
44447c478bd9Sstevel@tonic-gate 	 */
44457c478bd9Sstevel@tonic-gate 	zone_zsd_callbacks(zone, ZSD_SHUTDOWN);
44467c478bd9Sstevel@tonic-gate 
44477c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
44487c478bd9Sstevel@tonic-gate 	if (zone->zone_kthreads == NULL && zone_status_get(zone) < ZONE_IS_DOWN)
44497c478bd9Sstevel@tonic-gate 		zone_status_set(zone, ZONE_IS_DOWN);
44507c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
44517c478bd9Sstevel@tonic-gate 
44527c478bd9Sstevel@tonic-gate 	/*
44537c478bd9Sstevel@tonic-gate 	 * Wait for kernel threads to drain.
44547c478bd9Sstevel@tonic-gate 	 */
44557c478bd9Sstevel@tonic-gate 	if (!zone_status_wait_sig(zone, ZONE_IS_DOWN)) {
44567c478bd9Sstevel@tonic-gate 		zone_rele(zone);
44577c478bd9Sstevel@tonic-gate 		return (set_errno(EINTR));
44587c478bd9Sstevel@tonic-gate 	}
44599acbbeafSnn35248 
446052978630Ssl108498 	/*
446152978630Ssl108498 	 * Zone can be become down/destroyable even if the above wait
446252978630Ssl108498 	 * returns EINTR, so any code added here may never execute.
446352978630Ssl108498 	 * (i.e. don't add code here)
446452978630Ssl108498 	 */
44659acbbeafSnn35248 
44667c478bd9Sstevel@tonic-gate 	zone_rele(zone);
44677c478bd9Sstevel@tonic-gate 	return (0);
44687c478bd9Sstevel@tonic-gate }
44697c478bd9Sstevel@tonic-gate 
44707c478bd9Sstevel@tonic-gate /*
44717c478bd9Sstevel@tonic-gate  * Systemcall entry point to finalize the zone halt process.  The caller
4472824c205fSml93401  * must have already successfully called zone_shutdown().
44737c478bd9Sstevel@tonic-gate  *
44747c478bd9Sstevel@tonic-gate  * Upon successful completion, the zone will have been fully destroyed:
44757c478bd9Sstevel@tonic-gate  * zsched will have exited, destructor callbacks executed, and the zone
44767c478bd9Sstevel@tonic-gate  * removed from the list of active zones.
44777c478bd9Sstevel@tonic-gate  */
44787c478bd9Sstevel@tonic-gate static int
44797c478bd9Sstevel@tonic-gate zone_destroy(zoneid_t zoneid)
44807c478bd9Sstevel@tonic-gate {
44817c478bd9Sstevel@tonic-gate 	uint64_t uniqid;
44827c478bd9Sstevel@tonic-gate 	zone_t *zone;
44837c478bd9Sstevel@tonic-gate 	zone_status_t status;
44847c478bd9Sstevel@tonic-gate 
44857c478bd9Sstevel@tonic-gate 	if (secpolicy_zone_config(CRED()) != 0)
44867c478bd9Sstevel@tonic-gate 		return (set_errno(EPERM));
44877c478bd9Sstevel@tonic-gate 	if (zoneid < MIN_USERZONEID || zoneid > MAX_ZONEID)
44887c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
44897c478bd9Sstevel@tonic-gate 
44907c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
44917c478bd9Sstevel@tonic-gate 	/*
44927c478bd9Sstevel@tonic-gate 	 * Look for zone under hash lock to prevent races with other
44937c478bd9Sstevel@tonic-gate 	 * calls to zone_destroy.
44947c478bd9Sstevel@tonic-gate 	 */
44957c478bd9Sstevel@tonic-gate 	if ((zone = zone_find_all_by_id(zoneid)) == NULL) {
44967c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
44977c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
44987c478bd9Sstevel@tonic-gate 	}
44997c478bd9Sstevel@tonic-gate 
45007c478bd9Sstevel@tonic-gate 	if (zone_mount_count(zone->zone_rootpath) != 0) {
45017c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
45027c478bd9Sstevel@tonic-gate 		return (set_errno(EBUSY));
45037c478bd9Sstevel@tonic-gate 	}
45047c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
45057c478bd9Sstevel@tonic-gate 	status = zone_status_get(zone);
45067c478bd9Sstevel@tonic-gate 	if (status < ZONE_IS_DOWN) {
45077c478bd9Sstevel@tonic-gate 		mutex_exit(&zone_status_lock);
45087c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
45097c478bd9Sstevel@tonic-gate 		return (set_errno(EBUSY));
45107c478bd9Sstevel@tonic-gate 	} else if (status == ZONE_IS_DOWN) {
45117c478bd9Sstevel@tonic-gate 		zone_status_set(zone, ZONE_IS_DYING); /* Tell zsched to exit */
45127c478bd9Sstevel@tonic-gate 	}
45137c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
45147c478bd9Sstevel@tonic-gate 	zone_hold(zone);
45157c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
45167c478bd9Sstevel@tonic-gate 
45177c478bd9Sstevel@tonic-gate 	/*
45187c478bd9Sstevel@tonic-gate 	 * wait for zsched to exit
45197c478bd9Sstevel@tonic-gate 	 */
45207c478bd9Sstevel@tonic-gate 	zone_status_wait(zone, ZONE_IS_DEAD);
45217c478bd9Sstevel@tonic-gate 	zone_zsd_callbacks(zone, ZSD_DESTROY);
4522f4b3ec61Sdh155122 	zone->zone_netstack = NULL;
45237c478bd9Sstevel@tonic-gate 	uniqid = zone->zone_uniqid;
45247c478bd9Sstevel@tonic-gate 	zone_rele(zone);
45257c478bd9Sstevel@tonic-gate 	zone = NULL;	/* potentially free'd */
45267c478bd9Sstevel@tonic-gate 
45277c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
45287c478bd9Sstevel@tonic-gate 	for (; /* ever */; ) {
45297c478bd9Sstevel@tonic-gate 		boolean_t unref;
45307c478bd9Sstevel@tonic-gate 
45317c478bd9Sstevel@tonic-gate 		if ((zone = zone_find_all_by_id(zoneid)) == NULL ||
45327c478bd9Sstevel@tonic-gate 		    zone->zone_uniqid != uniqid) {
45337c478bd9Sstevel@tonic-gate 			/*
45347c478bd9Sstevel@tonic-gate 			 * The zone has gone away.  Necessary conditions
45357c478bd9Sstevel@tonic-gate 			 * are met, so we return success.
45367c478bd9Sstevel@tonic-gate 			 */
45377c478bd9Sstevel@tonic-gate 			mutex_exit(&zonehash_lock);
45387c478bd9Sstevel@tonic-gate 			return (0);
45397c478bd9Sstevel@tonic-gate 		}
45407c478bd9Sstevel@tonic-gate 		mutex_enter(&zone->zone_lock);
45417c478bd9Sstevel@tonic-gate 		unref = ZONE_IS_UNREF(zone);
45427c478bd9Sstevel@tonic-gate 		mutex_exit(&zone->zone_lock);
45437c478bd9Sstevel@tonic-gate 		if (unref) {
45447c478bd9Sstevel@tonic-gate 			/*
45457c478bd9Sstevel@tonic-gate 			 * There is only one reference to the zone -- that
45467c478bd9Sstevel@tonic-gate 			 * added when the zone was added to the hashtables --
45477c478bd9Sstevel@tonic-gate 			 * and things will remain this way until we drop
45487c478bd9Sstevel@tonic-gate 			 * zonehash_lock... we can go ahead and cleanup the
45497c478bd9Sstevel@tonic-gate 			 * zone.
45507c478bd9Sstevel@tonic-gate 			 */
45517c478bd9Sstevel@tonic-gate 			break;
45527c478bd9Sstevel@tonic-gate 		}
45537c478bd9Sstevel@tonic-gate 
45547c478bd9Sstevel@tonic-gate 		if (cv_wait_sig(&zone_destroy_cv, &zonehash_lock) == 0) {
45557c478bd9Sstevel@tonic-gate 			/* Signaled */
45567c478bd9Sstevel@tonic-gate 			mutex_exit(&zonehash_lock);
45577c478bd9Sstevel@tonic-gate 			return (set_errno(EINTR));
45587c478bd9Sstevel@tonic-gate 		}
45597c478bd9Sstevel@tonic-gate 
45607c478bd9Sstevel@tonic-gate 	}
45617c478bd9Sstevel@tonic-gate 
4562c97ad5cdSakolb 	/*
4563c97ad5cdSakolb 	 * Remove CPU cap for this zone now since we're not going to
4564c97ad5cdSakolb 	 * fail below this point.
4565c97ad5cdSakolb 	 */
4566c97ad5cdSakolb 	cpucaps_zone_remove(zone);
4567c97ad5cdSakolb 
4568c97ad5cdSakolb 	/* Get rid of the zone's kstats */
45690209230bSgjelinek 	zone_kstat_delete(zone);
45700209230bSgjelinek 
4571134a1f4eSCasper H.S. Dik 	/* remove the pfexecd doors */
4572134a1f4eSCasper H.S. Dik 	if (zone->zone_pfexecd != NULL) {
4573134a1f4eSCasper H.S. Dik 		klpd_freelist(&zone->zone_pfexecd);
4574134a1f4eSCasper H.S. Dik 		zone->zone_pfexecd = NULL;
4575134a1f4eSCasper H.S. Dik 	}
4576134a1f4eSCasper H.S. Dik 
4577319378d9Seh208807 	/* free brand specific data */
4578319378d9Seh208807 	if (ZONE_IS_BRANDED(zone))
4579319378d9Seh208807 		ZBROP(zone)->b_free_brand_data(zone);
4580319378d9Seh208807 
458152978630Ssl108498 	/* Say goodbye to brand framework. */
458252978630Ssl108498 	brand_unregister_zone(zone->zone_brand);
458352978630Ssl108498 
45847c478bd9Sstevel@tonic-gate 	/*
45857c478bd9Sstevel@tonic-gate 	 * It is now safe to let the zone be recreated; remove it from the
45867c478bd9Sstevel@tonic-gate 	 * lists.  The memory will not be freed until the last cred
45877c478bd9Sstevel@tonic-gate 	 * reference goes away.
45887c478bd9Sstevel@tonic-gate 	 */
45897c478bd9Sstevel@tonic-gate 	ASSERT(zonecount > 1);	/* must be > 1; can't destroy global zone */
45907c478bd9Sstevel@tonic-gate 	zonecount--;
45917c478bd9Sstevel@tonic-gate 	/* remove from active list and hash tables */
45927c478bd9Sstevel@tonic-gate 	list_remove(&zone_active, zone);
45937c478bd9Sstevel@tonic-gate 	(void) mod_hash_destroy(zonehashbyname,
45947c478bd9Sstevel@tonic-gate 	    (mod_hash_key_t)zone->zone_name);
45957c478bd9Sstevel@tonic-gate 	(void) mod_hash_destroy(zonehashbyid,
45967c478bd9Sstevel@tonic-gate 	    (mod_hash_key_t)(uintptr_t)zone->zone_id);
459748451833Scarlsonj 	if (zone->zone_flags & ZF_HASHED_LABEL)
459845916cd2Sjpk 		(void) mod_hash_destroy(zonehashbylabel,
459945916cd2Sjpk 		    (mod_hash_key_t)zone->zone_slabel);
46007c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
46017c478bd9Sstevel@tonic-gate 
4602108322fbScarlsonj 	/*
4603108322fbScarlsonj 	 * Release the root vnode; we're not using it anymore.  Nor should any
4604108322fbScarlsonj 	 * other thread that might access it exist.
4605108322fbScarlsonj 	 */
4606108322fbScarlsonj 	if (zone->zone_rootvp != NULL) {
4607108322fbScarlsonj 		VN_RELE(zone->zone_rootvp);
4608108322fbScarlsonj 		zone->zone_rootvp = NULL;
4609108322fbScarlsonj 	}
4610108322fbScarlsonj 
46117c478bd9Sstevel@tonic-gate 	/* add to deathrow list */
46127c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_deathrow_lock);
46137c478bd9Sstevel@tonic-gate 	list_insert_tail(&zone_deathrow, zone);
46147c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_deathrow_lock);
46157c478bd9Sstevel@tonic-gate 
46167c478bd9Sstevel@tonic-gate 	/*
46177c478bd9Sstevel@tonic-gate 	 * Drop last reference (which was added by zsched()), this will
46187c478bd9Sstevel@tonic-gate 	 * free the zone unless there are outstanding cred references.
46197c478bd9Sstevel@tonic-gate 	 */
46207c478bd9Sstevel@tonic-gate 	zone_rele(zone);
46217c478bd9Sstevel@tonic-gate 	return (0);
46227c478bd9Sstevel@tonic-gate }
46237c478bd9Sstevel@tonic-gate 
46247c478bd9Sstevel@tonic-gate /*
46257c478bd9Sstevel@tonic-gate  * Systemcall entry point for zone_getattr(2).
46267c478bd9Sstevel@tonic-gate  */
46277c478bd9Sstevel@tonic-gate static ssize_t
46287c478bd9Sstevel@tonic-gate zone_getattr(zoneid_t zoneid, int attr, void *buf, size_t bufsize)
46297c478bd9Sstevel@tonic-gate {
46307c478bd9Sstevel@tonic-gate 	size_t size;
46317c478bd9Sstevel@tonic-gate 	int error = 0, err;
46327c478bd9Sstevel@tonic-gate 	zone_t *zone;
46337c478bd9Sstevel@tonic-gate 	char *zonepath;
46343f2f09c1Sdp 	char *outstr;
46357c478bd9Sstevel@tonic-gate 	zone_status_t zone_status;
46367c478bd9Sstevel@tonic-gate 	pid_t initpid;
4637c97ad5cdSakolb 	boolean_t global = (curzone == global_zone);
4638c97ad5cdSakolb 	boolean_t inzone = (curzone->zone_id == zoneid);
4639f4b3ec61Sdh155122 	ushort_t flags;
46407c478bd9Sstevel@tonic-gate 
46417c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
46427c478bd9Sstevel@tonic-gate 	if ((zone = zone_find_all_by_id(zoneid)) == NULL) {
46437c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
46447c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
46457c478bd9Sstevel@tonic-gate 	}
46467c478bd9Sstevel@tonic-gate 	zone_status = zone_status_get(zone);
4647bd41d0a8Snordmark 	if (zone_status < ZONE_IS_INITIALIZED) {
46487c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
46497c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
46507c478bd9Sstevel@tonic-gate 	}
46517c478bd9Sstevel@tonic-gate 	zone_hold(zone);
46527c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
46537c478bd9Sstevel@tonic-gate 
46547c478bd9Sstevel@tonic-gate 	/*
465545916cd2Sjpk 	 * If not in the global zone, don't show information about other zones,
465645916cd2Sjpk 	 * unless the system is labeled and the local zone's label dominates
465745916cd2Sjpk 	 * the other zone.
46587c478bd9Sstevel@tonic-gate 	 */
465945916cd2Sjpk 	if (!zone_list_access(zone)) {
46607c478bd9Sstevel@tonic-gate 		zone_rele(zone);
46617c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
46627c478bd9Sstevel@tonic-gate 	}
46637c478bd9Sstevel@tonic-gate 
46647c478bd9Sstevel@tonic-gate 	switch (attr) {
46657c478bd9Sstevel@tonic-gate 	case ZONE_ATTR_ROOT:
46667c478bd9Sstevel@tonic-gate 		if (global) {
46677c478bd9Sstevel@tonic-gate 			/*
46687c478bd9Sstevel@tonic-gate 			 * Copy the path to trim the trailing "/" (except for
46697c478bd9Sstevel@tonic-gate 			 * the global zone).
46707c478bd9Sstevel@tonic-gate 			 */
46717c478bd9Sstevel@tonic-gate 			if (zone != global_zone)
46727c478bd9Sstevel@tonic-gate 				size = zone->zone_rootpathlen - 1;
46737c478bd9Sstevel@tonic-gate 			else
46747c478bd9Sstevel@tonic-gate 				size = zone->zone_rootpathlen;
46757c478bd9Sstevel@tonic-gate 			zonepath = kmem_alloc(size, KM_SLEEP);
46767c478bd9Sstevel@tonic-gate 			bcopy(zone->zone_rootpath, zonepath, size);
46777c478bd9Sstevel@tonic-gate 			zonepath[size - 1] = '\0';
46787c478bd9Sstevel@tonic-gate 		} else {
4679c97ad5cdSakolb 			if (inzone || !is_system_labeled()) {
46807c478bd9Sstevel@tonic-gate 				/*
468145916cd2Sjpk 				 * Caller is not in the global zone.
468245916cd2Sjpk 				 * if the query is on the current zone
468345916cd2Sjpk 				 * or the system is not labeled,
468445916cd2Sjpk 				 * just return faked-up path for current zone.
46857c478bd9Sstevel@tonic-gate 				 */
46867c478bd9Sstevel@tonic-gate 				zonepath = "/";
46877c478bd9Sstevel@tonic-gate 				size = 2;
468845916cd2Sjpk 			} else {
468945916cd2Sjpk 				/*
469045916cd2Sjpk 				 * Return related path for current zone.
469145916cd2Sjpk 				 */
469245916cd2Sjpk 				int prefix_len = strlen(zone_prefix);
469345916cd2Sjpk 				int zname_len = strlen(zone->zone_name);
469445916cd2Sjpk 
469545916cd2Sjpk 				size = prefix_len + zname_len + 1;
469645916cd2Sjpk 				zonepath = kmem_alloc(size, KM_SLEEP);
469745916cd2Sjpk 				bcopy(zone_prefix, zonepath, prefix_len);
469845916cd2Sjpk 				bcopy(zone->zone_name, zonepath +
469945916cd2Sjpk 				    prefix_len, zname_len);
470045916cd2Sjpk 				zonepath[size - 1] = '\0';
470145916cd2Sjpk 			}
47027c478bd9Sstevel@tonic-gate 		}
47037c478bd9Sstevel@tonic-gate 		if (bufsize > size)
47047c478bd9Sstevel@tonic-gate 			bufsize = size;
47057c478bd9Sstevel@tonic-gate 		if (buf != NULL) {
47067c478bd9Sstevel@tonic-gate 			err = copyoutstr(zonepath, buf, bufsize, NULL);
47077c478bd9Sstevel@tonic-gate 			if (err != 0 && err != ENAMETOOLONG)
47087c478bd9Sstevel@tonic-gate 				error = EFAULT;
47097c478bd9Sstevel@tonic-gate 		}
4710c97ad5cdSakolb 		if (global || (is_system_labeled() && !inzone))
47117c478bd9Sstevel@tonic-gate 			kmem_free(zonepath, size);
47127c478bd9Sstevel@tonic-gate 		break;
47137c478bd9Sstevel@tonic-gate 
47147c478bd9Sstevel@tonic-gate 	case ZONE_ATTR_NAME:
47157c478bd9Sstevel@tonic-gate 		size = strlen(zone->zone_name) + 1;
47167c478bd9Sstevel@tonic-gate 		if (bufsize > size)
47177c478bd9Sstevel@tonic-gate 			bufsize = size;
47187c478bd9Sstevel@tonic-gate 		if (buf != NULL) {
47197c478bd9Sstevel@tonic-gate 			err = copyoutstr(zone->zone_name, buf, bufsize, NULL);
47207c478bd9Sstevel@tonic-gate 			if (err != 0 && err != ENAMETOOLONG)
47217c478bd9Sstevel@tonic-gate 				error = EFAULT;
47227c478bd9Sstevel@tonic-gate 		}
47237c478bd9Sstevel@tonic-gate 		break;
47247c478bd9Sstevel@tonic-gate 
47257c478bd9Sstevel@tonic-gate 	case ZONE_ATTR_STATUS:
47267c478bd9Sstevel@tonic-gate 		/*
47277c478bd9Sstevel@tonic-gate 		 * Since we're not holding zonehash_lock, the zone status
47287c478bd9Sstevel@tonic-gate 		 * may be anything; leave it up to userland to sort it out.
47297c478bd9Sstevel@tonic-gate 		 */
47307c478bd9Sstevel@tonic-gate 		size = sizeof (zone_status);
47317c478bd9Sstevel@tonic-gate 		if (bufsize > size)
47327c478bd9Sstevel@tonic-gate 			bufsize = size;
47337c478bd9Sstevel@tonic-gate 		zone_status = zone_status_get(zone);
47347c478bd9Sstevel@tonic-gate 		if (buf != NULL &&
47357c478bd9Sstevel@tonic-gate 		    copyout(&zone_status, buf, bufsize) != 0)
47367c478bd9Sstevel@tonic-gate 			error = EFAULT;
47377c478bd9Sstevel@tonic-gate 		break;
4738f4b3ec61Sdh155122 	case ZONE_ATTR_FLAGS:
4739f4b3ec61Sdh155122 		size = sizeof (zone->zone_flags);
4740f4b3ec61Sdh155122 		if (bufsize > size)
4741f4b3ec61Sdh155122 			bufsize = size;
4742f4b3ec61Sdh155122 		flags = zone->zone_flags;
4743f4b3ec61Sdh155122 		if (buf != NULL &&
4744f4b3ec61Sdh155122 		    copyout(&flags, buf, bufsize) != 0)
4745f4b3ec61Sdh155122 			error = EFAULT;
4746f4b3ec61Sdh155122 		break;
47477c478bd9Sstevel@tonic-gate 	case ZONE_ATTR_PRIVSET:
47487c478bd9Sstevel@tonic-gate 		size = sizeof (priv_set_t);
47497c478bd9Sstevel@tonic-gate 		if (bufsize > size)
47507c478bd9Sstevel@tonic-gate 			bufsize = size;
47517c478bd9Sstevel@tonic-gate 		if (buf != NULL &&
47527c478bd9Sstevel@tonic-gate 		    copyout(zone->zone_privset, buf, bufsize) != 0)
47537c478bd9Sstevel@tonic-gate 			error = EFAULT;
47547c478bd9Sstevel@tonic-gate 		break;
47557c478bd9Sstevel@tonic-gate 	case ZONE_ATTR_UNIQID:
47567c478bd9Sstevel@tonic-gate 		size = sizeof (zone->zone_uniqid);
47577c478bd9Sstevel@tonic-gate 		if (bufsize > size)
47587c478bd9Sstevel@tonic-gate 			bufsize = size;
47597c478bd9Sstevel@tonic-gate 		if (buf != NULL &&
47607c478bd9Sstevel@tonic-gate 		    copyout(&zone->zone_uniqid, buf, bufsize) != 0)
47617c478bd9Sstevel@tonic-gate 			error = EFAULT;
47627c478bd9Sstevel@tonic-gate 		break;
47637c478bd9Sstevel@tonic-gate 	case ZONE_ATTR_POOLID:
47647c478bd9Sstevel@tonic-gate 		{
47657c478bd9Sstevel@tonic-gate 			pool_t *pool;
47667c478bd9Sstevel@tonic-gate 			poolid_t poolid;
47677c478bd9Sstevel@tonic-gate 
47687c478bd9Sstevel@tonic-gate 			if (pool_lock_intr() != 0) {
47697c478bd9Sstevel@tonic-gate 				error = EINTR;
47707c478bd9Sstevel@tonic-gate 				break;
47717c478bd9Sstevel@tonic-gate 			}
47727c478bd9Sstevel@tonic-gate 			pool = zone_pool_get(zone);
47737c478bd9Sstevel@tonic-gate 			poolid = pool->pool_id;
47747c478bd9Sstevel@tonic-gate 			pool_unlock();
47757c478bd9Sstevel@tonic-gate 			size = sizeof (poolid);
47767c478bd9Sstevel@tonic-gate 			if (bufsize > size)
47777c478bd9Sstevel@tonic-gate 				bufsize = size;
47787c478bd9Sstevel@tonic-gate 			if (buf != NULL && copyout(&poolid, buf, size) != 0)
47797c478bd9Sstevel@tonic-gate 				error = EFAULT;
47807c478bd9Sstevel@tonic-gate 		}
47817c478bd9Sstevel@tonic-gate 		break;
478245916cd2Sjpk 	case ZONE_ATTR_SLBL:
478345916cd2Sjpk 		size = sizeof (bslabel_t);
478445916cd2Sjpk 		if (bufsize > size)
478545916cd2Sjpk 			bufsize = size;
478645916cd2Sjpk 		if (zone->zone_slabel == NULL)
478745916cd2Sjpk 			error = EINVAL;
478845916cd2Sjpk 		else if (buf != NULL &&
478945916cd2Sjpk 		    copyout(label2bslabel(zone->zone_slabel), buf,
479045916cd2Sjpk 		    bufsize) != 0)
479145916cd2Sjpk 			error = EFAULT;
479245916cd2Sjpk 		break;
47937c478bd9Sstevel@tonic-gate 	case ZONE_ATTR_INITPID:
47947c478bd9Sstevel@tonic-gate 		size = sizeof (initpid);
47957c478bd9Sstevel@tonic-gate 		if (bufsize > size)
47967c478bd9Sstevel@tonic-gate 			bufsize = size;
47977c478bd9Sstevel@tonic-gate 		initpid = zone->zone_proc_initpid;
47987c478bd9Sstevel@tonic-gate 		if (initpid == -1) {
47997c478bd9Sstevel@tonic-gate 			error = ESRCH;
48007c478bd9Sstevel@tonic-gate 			break;
48017c478bd9Sstevel@tonic-gate 		}
48027c478bd9Sstevel@tonic-gate 		if (buf != NULL &&
48037c478bd9Sstevel@tonic-gate 		    copyout(&initpid, buf, bufsize) != 0)
48047c478bd9Sstevel@tonic-gate 			error = EFAULT;
48057c478bd9Sstevel@tonic-gate 		break;
48069acbbeafSnn35248 	case ZONE_ATTR_BRAND:
48079acbbeafSnn35248 		size = strlen(zone->zone_brand->b_name) + 1;
48089acbbeafSnn35248 
48099acbbeafSnn35248 		if (bufsize > size)
48109acbbeafSnn35248 			bufsize = size;
48119acbbeafSnn35248 		if (buf != NULL) {
48129acbbeafSnn35248 			err = copyoutstr(zone->zone_brand->b_name, buf,
48139acbbeafSnn35248 			    bufsize, NULL);
48149acbbeafSnn35248 			if (err != 0 && err != ENAMETOOLONG)
48159acbbeafSnn35248 				error = EFAULT;
48169acbbeafSnn35248 		}
48179acbbeafSnn35248 		break;
48183f2f09c1Sdp 	case ZONE_ATTR_INITNAME:
48193f2f09c1Sdp 		size = strlen(zone->zone_initname) + 1;
48203f2f09c1Sdp 		if (bufsize > size)
48213f2f09c1Sdp 			bufsize = size;
48223f2f09c1Sdp 		if (buf != NULL) {
48233f2f09c1Sdp 			err = copyoutstr(zone->zone_initname, buf, bufsize,
48243f2f09c1Sdp 			    NULL);
48253f2f09c1Sdp 			if (err != 0 && err != ENAMETOOLONG)
48263f2f09c1Sdp 				error = EFAULT;
48273f2f09c1Sdp 		}
48283f2f09c1Sdp 		break;
48293f2f09c1Sdp 	case ZONE_ATTR_BOOTARGS:
48303f2f09c1Sdp 		if (zone->zone_bootargs == NULL)
48313f2f09c1Sdp 			outstr = "";
48323f2f09c1Sdp 		else
48333f2f09c1Sdp 			outstr = zone->zone_bootargs;
48343f2f09c1Sdp 		size = strlen(outstr) + 1;
48353f2f09c1Sdp 		if (bufsize > size)
48363f2f09c1Sdp 			bufsize = size;
48373f2f09c1Sdp 		if (buf != NULL) {
48383f2f09c1Sdp 			err = copyoutstr(outstr, buf, bufsize, NULL);
48393f2f09c1Sdp 			if (err != 0 && err != ENAMETOOLONG)
48403f2f09c1Sdp 				error = EFAULT;
48413f2f09c1Sdp 		}
48423f2f09c1Sdp 		break;
48430209230bSgjelinek 	case ZONE_ATTR_PHYS_MCAP:
48440209230bSgjelinek 		size = sizeof (zone->zone_phys_mcap);
48450209230bSgjelinek 		if (bufsize > size)
48460209230bSgjelinek 			bufsize = size;
48470209230bSgjelinek 		if (buf != NULL &&
48480209230bSgjelinek 		    copyout(&zone->zone_phys_mcap, buf, bufsize) != 0)
48490209230bSgjelinek 			error = EFAULT;
48500209230bSgjelinek 		break;
48510209230bSgjelinek 	case ZONE_ATTR_SCHED_CLASS:
48520209230bSgjelinek 		mutex_enter(&class_lock);
48530209230bSgjelinek 
48540209230bSgjelinek 		if (zone->zone_defaultcid >= loaded_classes)
48550209230bSgjelinek 			outstr = "";
48560209230bSgjelinek 		else
48570209230bSgjelinek 			outstr = sclass[zone->zone_defaultcid].cl_name;
48580209230bSgjelinek 		size = strlen(outstr) + 1;
48590209230bSgjelinek 		if (bufsize > size)
48600209230bSgjelinek 			bufsize = size;
48610209230bSgjelinek 		if (buf != NULL) {
48620209230bSgjelinek 			err = copyoutstr(outstr, buf, bufsize, NULL);
48630209230bSgjelinek 			if (err != 0 && err != ENAMETOOLONG)
48640209230bSgjelinek 				error = EFAULT;
48650209230bSgjelinek 		}
48660209230bSgjelinek 
48670209230bSgjelinek 		mutex_exit(&class_lock);
48680209230bSgjelinek 		break;
48695679c89fSjv227347 	case ZONE_ATTR_HOSTID:
48705679c89fSjv227347 		if (zone->zone_hostid != HW_INVALID_HOSTID &&
48715679c89fSjv227347 		    bufsize == sizeof (zone->zone_hostid)) {
48725679c89fSjv227347 			size = sizeof (zone->zone_hostid);
48735679c89fSjv227347 			if (buf != NULL && copyout(&zone->zone_hostid, buf,
48745679c89fSjv227347 			    bufsize) != 0)
48755679c89fSjv227347 				error = EFAULT;
48765679c89fSjv227347 		} else {
48775679c89fSjv227347 			error = EINVAL;
48785679c89fSjv227347 		}
48795679c89fSjv227347 		break;
4880*0fbb751dSJohn Levon 	case ZONE_ATTR_FS_ALLOWED:
4881*0fbb751dSJohn Levon 		if (zone->zone_fs_allowed == NULL)
4882*0fbb751dSJohn Levon 			outstr = "";
4883*0fbb751dSJohn Levon 		else
4884*0fbb751dSJohn Levon 			outstr = zone->zone_fs_allowed;
4885*0fbb751dSJohn Levon 		size = strlen(outstr) + 1;
4886*0fbb751dSJohn Levon 		if (bufsize > size)
4887*0fbb751dSJohn Levon 			bufsize = size;
4888*0fbb751dSJohn Levon 		if (buf != NULL) {
4889*0fbb751dSJohn Levon 			err = copyoutstr(outstr, buf, bufsize, NULL);
4890*0fbb751dSJohn Levon 			if (err != 0 && err != ENAMETOOLONG)
4891*0fbb751dSJohn Levon 				error = EFAULT;
4892*0fbb751dSJohn Levon 		}
4893*0fbb751dSJohn Levon 		break;
48947c478bd9Sstevel@tonic-gate 	default:
48959acbbeafSnn35248 		if ((attr >= ZONE_ATTR_BRAND_ATTRS) && ZONE_IS_BRANDED(zone)) {
48969acbbeafSnn35248 			size = bufsize;
48979acbbeafSnn35248 			error = ZBROP(zone)->b_getattr(zone, attr, buf, &size);
48989acbbeafSnn35248 		} else {
48997c478bd9Sstevel@tonic-gate 			error = EINVAL;
49007c478bd9Sstevel@tonic-gate 		}
49019acbbeafSnn35248 	}
49027c478bd9Sstevel@tonic-gate 	zone_rele(zone);
49037c478bd9Sstevel@tonic-gate 
49047c478bd9Sstevel@tonic-gate 	if (error)
49057c478bd9Sstevel@tonic-gate 		return (set_errno(error));
49067c478bd9Sstevel@tonic-gate 	return ((ssize_t)size);
49077c478bd9Sstevel@tonic-gate }
49087c478bd9Sstevel@tonic-gate 
49097c478bd9Sstevel@tonic-gate /*
49103f2f09c1Sdp  * Systemcall entry point for zone_setattr(2).
49113f2f09c1Sdp  */
49123f2f09c1Sdp /*ARGSUSED*/
49133f2f09c1Sdp static int
49143f2f09c1Sdp zone_setattr(zoneid_t zoneid, int attr, void *buf, size_t bufsize)
49153f2f09c1Sdp {
49163f2f09c1Sdp 	zone_t *zone;
49173f2f09c1Sdp 	zone_status_t zone_status;
49183f2f09c1Sdp 	int err;
49193f2f09c1Sdp 
49203f2f09c1Sdp 	if (secpolicy_zone_config(CRED()) != 0)
49213f2f09c1Sdp 		return (set_errno(EPERM));
49223f2f09c1Sdp 
49233f2f09c1Sdp 	/*
49240209230bSgjelinek 	 * Only the ZONE_ATTR_PHYS_MCAP attribute can be set on the
49250209230bSgjelinek 	 * global zone.
49263f2f09c1Sdp 	 */
49270209230bSgjelinek 	if (zoneid == GLOBAL_ZONEID && attr != ZONE_ATTR_PHYS_MCAP) {
49283f2f09c1Sdp 		return (set_errno(EINVAL));
49293f2f09c1Sdp 	}
49303f2f09c1Sdp 
49313f2f09c1Sdp 	mutex_enter(&zonehash_lock);
49323f2f09c1Sdp 	if ((zone = zone_find_all_by_id(zoneid)) == NULL) {
49333f2f09c1Sdp 		mutex_exit(&zonehash_lock);
49343f2f09c1Sdp 		return (set_errno(EINVAL));
49353f2f09c1Sdp 	}
49363f2f09c1Sdp 	zone_hold(zone);
49373f2f09c1Sdp 	mutex_exit(&zonehash_lock);
49383f2f09c1Sdp 
49390209230bSgjelinek 	/*
49400209230bSgjelinek 	 * At present most attributes can only be set on non-running,
49410209230bSgjelinek 	 * non-global zones.
49420209230bSgjelinek 	 */
49433f2f09c1Sdp 	zone_status = zone_status_get(zone);
49440209230bSgjelinek 	if (attr != ZONE_ATTR_PHYS_MCAP && zone_status > ZONE_IS_READY)
49453f2f09c1Sdp 		goto done;
49463f2f09c1Sdp 
49473f2f09c1Sdp 	switch (attr) {
49483f2f09c1Sdp 	case ZONE_ATTR_INITNAME:
49493f2f09c1Sdp 		err = zone_set_initname(zone, (const char *)buf);
49503f2f09c1Sdp 		break;
49513f2f09c1Sdp 	case ZONE_ATTR_BOOTARGS:
49523f2f09c1Sdp 		err = zone_set_bootargs(zone, (const char *)buf);
49533f2f09c1Sdp 		break;
49549acbbeafSnn35248 	case ZONE_ATTR_BRAND:
495559f2ff5cSedp 		err = zone_set_brand(zone, (const char *)buf);
49569acbbeafSnn35248 		break;
4957*0fbb751dSJohn Levon 	case ZONE_ATTR_FS_ALLOWED:
4958*0fbb751dSJohn Levon 		err = zone_set_fs_allowed(zone, (const char *)buf);
4959*0fbb751dSJohn Levon 		break;
49600209230bSgjelinek 	case ZONE_ATTR_PHYS_MCAP:
49610209230bSgjelinek 		err = zone_set_phys_mcap(zone, (const uint64_t *)buf);
49620209230bSgjelinek 		break;
49630209230bSgjelinek 	case ZONE_ATTR_SCHED_CLASS:
49640209230bSgjelinek 		err = zone_set_sched_class(zone, (const char *)buf);
49650209230bSgjelinek 		break;
49665679c89fSjv227347 	case ZONE_ATTR_HOSTID:
49675679c89fSjv227347 		if (bufsize == sizeof (zone->zone_hostid)) {
49685679c89fSjv227347 			if (copyin(buf, &zone->zone_hostid, bufsize) == 0)
49695679c89fSjv227347 				err = 0;
49705679c89fSjv227347 			else
49715679c89fSjv227347 				err = EFAULT;
49725679c89fSjv227347 		} else {
49735679c89fSjv227347 			err = EINVAL;
49745679c89fSjv227347 		}
49755679c89fSjv227347 		break;
49763f2f09c1Sdp 	default:
49779acbbeafSnn35248 		if ((attr >= ZONE_ATTR_BRAND_ATTRS) && ZONE_IS_BRANDED(zone))
49789acbbeafSnn35248 			err = ZBROP(zone)->b_setattr(zone, attr, buf, bufsize);
49799acbbeafSnn35248 		else
49803f2f09c1Sdp 			err = EINVAL;
49813f2f09c1Sdp 	}
49823f2f09c1Sdp 
49833f2f09c1Sdp done:
49843f2f09c1Sdp 	zone_rele(zone);
49853f2f09c1Sdp 	return (err != 0 ? set_errno(err) : 0);
49863f2f09c1Sdp }
49873f2f09c1Sdp 
49883f2f09c1Sdp /*
49897c478bd9Sstevel@tonic-gate  * Return zero if the process has at least one vnode mapped in to its
49907c478bd9Sstevel@tonic-gate  * address space which shouldn't be allowed to change zones.
49910209230bSgjelinek  *
49920209230bSgjelinek  * Also return zero if the process has any shared mappings which reserve
49930209230bSgjelinek  * swap.  This is because the counting for zone.max-swap does not allow swap
4994da6c28aaSamw  * reservation to be shared between zones.  zone swap reservation is counted
49950209230bSgjelinek  * on zone->zone_max_swap.
49967c478bd9Sstevel@tonic-gate  */
49977c478bd9Sstevel@tonic-gate static int
49987c478bd9Sstevel@tonic-gate as_can_change_zones(void)
49997c478bd9Sstevel@tonic-gate {
50007c478bd9Sstevel@tonic-gate 	proc_t *pp = curproc;
50017c478bd9Sstevel@tonic-gate 	struct seg *seg;
50027c478bd9Sstevel@tonic-gate 	struct as *as = pp->p_as;
50037c478bd9Sstevel@tonic-gate 	vnode_t *vp;
50047c478bd9Sstevel@tonic-gate 	int allow = 1;
50057c478bd9Sstevel@tonic-gate 
50067c478bd9Sstevel@tonic-gate 	ASSERT(pp->p_as != &kas);
50070209230bSgjelinek 	AS_LOCK_ENTER(as, &as->a_lock, RW_READER);
50087c478bd9Sstevel@tonic-gate 	for (seg = AS_SEGFIRST(as); seg != NULL; seg = AS_SEGNEXT(as, seg)) {
50090209230bSgjelinek 
50100209230bSgjelinek 		/*
50110209230bSgjelinek 		 * Cannot enter zone with shared anon memory which
50120209230bSgjelinek 		 * reserves swap.  See comment above.
50130209230bSgjelinek 		 */
50140209230bSgjelinek 		if (seg_can_change_zones(seg) == B_FALSE) {
50150209230bSgjelinek 			allow = 0;
50160209230bSgjelinek 			break;
50170209230bSgjelinek 		}
50187c478bd9Sstevel@tonic-gate 		/*
50197c478bd9Sstevel@tonic-gate 		 * if we can't get a backing vnode for this segment then skip
50207c478bd9Sstevel@tonic-gate 		 * it.
50217c478bd9Sstevel@tonic-gate 		 */
50227c478bd9Sstevel@tonic-gate 		vp = NULL;
50237c478bd9Sstevel@tonic-gate 		if (SEGOP_GETVP(seg, seg->s_base, &vp) != 0 || vp == NULL)
50247c478bd9Sstevel@tonic-gate 			continue;
50257c478bd9Sstevel@tonic-gate 		if (!vn_can_change_zones(vp)) { /* bail on first match */
50267c478bd9Sstevel@tonic-gate 			allow = 0;
50277c478bd9Sstevel@tonic-gate 			break;
50287c478bd9Sstevel@tonic-gate 		}
50297c478bd9Sstevel@tonic-gate 	}
50300209230bSgjelinek 	AS_LOCK_EXIT(as, &as->a_lock);
50317c478bd9Sstevel@tonic-gate 	return (allow);
50327c478bd9Sstevel@tonic-gate }
50337c478bd9Sstevel@tonic-gate 
50347c478bd9Sstevel@tonic-gate /*
50350209230bSgjelinek  * Count swap reserved by curproc's address space
50360209230bSgjelinek  */
50370209230bSgjelinek static size_t
50380209230bSgjelinek as_swresv(void)
50390209230bSgjelinek {
50400209230bSgjelinek 	proc_t *pp = curproc;
50410209230bSgjelinek 	struct seg *seg;
50420209230bSgjelinek 	struct as *as = pp->p_as;
50430209230bSgjelinek 	size_t swap = 0;
50440209230bSgjelinek 
50450209230bSgjelinek 	ASSERT(pp->p_as != &kas);
50460209230bSgjelinek 	ASSERT(AS_WRITE_HELD(as, &as->a_lock));
50470209230bSgjelinek 	for (seg = AS_SEGFIRST(as); seg != NULL; seg = AS_SEGNEXT(as, seg))
50480209230bSgjelinek 		swap += seg_swresv(seg);
50490209230bSgjelinek 
50500209230bSgjelinek 	return (swap);
50510209230bSgjelinek }
50520209230bSgjelinek 
50530209230bSgjelinek /*
50547c478bd9Sstevel@tonic-gate  * Systemcall entry point for zone_enter().
50557c478bd9Sstevel@tonic-gate  *
50567c478bd9Sstevel@tonic-gate  * The current process is injected into said zone.  In the process
50577c478bd9Sstevel@tonic-gate  * it will change its project membership, privileges, rootdir/cwd,
50587c478bd9Sstevel@tonic-gate  * zone-wide rctls, and pool association to match those of the zone.
50597c478bd9Sstevel@tonic-gate  *
50607c478bd9Sstevel@tonic-gate  * The first zone_enter() called while the zone is in the ZONE_IS_READY
50617c478bd9Sstevel@tonic-gate  * state will transition it to ZONE_IS_RUNNING.  Processes may only
50627c478bd9Sstevel@tonic-gate  * enter a zone that is "ready" or "running".
50637c478bd9Sstevel@tonic-gate  */
50647c478bd9Sstevel@tonic-gate static int
50657c478bd9Sstevel@tonic-gate zone_enter(zoneid_t zoneid)
50667c478bd9Sstevel@tonic-gate {
50677c478bd9Sstevel@tonic-gate 	zone_t *zone;
50687c478bd9Sstevel@tonic-gate 	vnode_t *vp;
50697c478bd9Sstevel@tonic-gate 	proc_t *pp = curproc;
50707c478bd9Sstevel@tonic-gate 	contract_t *ct;
50717c478bd9Sstevel@tonic-gate 	cont_process_t *ctp;
50727c478bd9Sstevel@tonic-gate 	task_t *tk, *oldtk;
50737c478bd9Sstevel@tonic-gate 	kproject_t *zone_proj0;
50747c478bd9Sstevel@tonic-gate 	cred_t *cr, *newcr;
50757c478bd9Sstevel@tonic-gate 	pool_t *oldpool, *newpool;
50767c478bd9Sstevel@tonic-gate 	sess_t *sp;
50777c478bd9Sstevel@tonic-gate 	uid_t uid;
50787c478bd9Sstevel@tonic-gate 	zone_status_t status;
50797c478bd9Sstevel@tonic-gate 	int err = 0;
50807c478bd9Sstevel@tonic-gate 	rctl_entity_p_t e;
50810209230bSgjelinek 	size_t swap;
5082c97ad5cdSakolb 	kthread_id_t t;
50837c478bd9Sstevel@tonic-gate 
50847c478bd9Sstevel@tonic-gate 	if (secpolicy_zone_config(CRED()) != 0)
50857c478bd9Sstevel@tonic-gate 		return (set_errno(EPERM));
50867c478bd9Sstevel@tonic-gate 	if (zoneid < MIN_USERZONEID || zoneid > MAX_ZONEID)
50877c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
50887c478bd9Sstevel@tonic-gate 
50897c478bd9Sstevel@tonic-gate 	/*
50907c478bd9Sstevel@tonic-gate 	 * Stop all lwps so we don't need to hold a lock to look at
50917c478bd9Sstevel@tonic-gate 	 * curproc->p_zone.  This needs to happen before we grab any
50927c478bd9Sstevel@tonic-gate 	 * locks to avoid deadlock (another lwp in the process could
50937c478bd9Sstevel@tonic-gate 	 * be waiting for the held lock).
50947c478bd9Sstevel@tonic-gate 	 */
50957c478bd9Sstevel@tonic-gate 	if (curthread != pp->p_agenttp && !holdlwps(SHOLDFORK))
50967c478bd9Sstevel@tonic-gate 		return (set_errno(EINTR));
50977c478bd9Sstevel@tonic-gate 
50987c478bd9Sstevel@tonic-gate 	/*
50997c478bd9Sstevel@tonic-gate 	 * Make sure we're not changing zones with files open or mapped in
51007c478bd9Sstevel@tonic-gate 	 * to our address space which shouldn't be changing zones.
51017c478bd9Sstevel@tonic-gate 	 */
51027c478bd9Sstevel@tonic-gate 	if (!files_can_change_zones()) {
51037c478bd9Sstevel@tonic-gate 		err = EBADF;
51047c478bd9Sstevel@tonic-gate 		goto out;
51057c478bd9Sstevel@tonic-gate 	}
51067c478bd9Sstevel@tonic-gate 	if (!as_can_change_zones()) {
51077c478bd9Sstevel@tonic-gate 		err = EFAULT;
51087c478bd9Sstevel@tonic-gate 		goto out;
51097c478bd9Sstevel@tonic-gate 	}
51107c478bd9Sstevel@tonic-gate 
51117c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
51127c478bd9Sstevel@tonic-gate 	if (pp->p_zone != global_zone) {
51137c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
51147c478bd9Sstevel@tonic-gate 		err = EINVAL;
51157c478bd9Sstevel@tonic-gate 		goto out;
51167c478bd9Sstevel@tonic-gate 	}
51177c478bd9Sstevel@tonic-gate 
51187c478bd9Sstevel@tonic-gate 	zone = zone_find_all_by_id(zoneid);
51197c478bd9Sstevel@tonic-gate 	if (zone == NULL) {
51207c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
51217c478bd9Sstevel@tonic-gate 		err = EINVAL;
51227c478bd9Sstevel@tonic-gate 		goto out;
51237c478bd9Sstevel@tonic-gate 	}
51247c478bd9Sstevel@tonic-gate 
51257c478bd9Sstevel@tonic-gate 	/*
51267c478bd9Sstevel@tonic-gate 	 * To prevent processes in a zone from holding contracts on
51277c478bd9Sstevel@tonic-gate 	 * extrazonal resources, and to avoid process contract
51287c478bd9Sstevel@tonic-gate 	 * memberships which span zones, contract holders and processes
51297c478bd9Sstevel@tonic-gate 	 * which aren't the sole members of their encapsulating process
51307c478bd9Sstevel@tonic-gate 	 * contracts are not allowed to zone_enter.
51317c478bd9Sstevel@tonic-gate 	 */
51327c478bd9Sstevel@tonic-gate 	ctp = pp->p_ct_process;
51337c478bd9Sstevel@tonic-gate 	ct = &ctp->conp_contract;
51347c478bd9Sstevel@tonic-gate 	mutex_enter(&ct->ct_lock);
51357c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
51367c478bd9Sstevel@tonic-gate 	if ((avl_numnodes(&pp->p_ct_held) != 0) || (ctp->conp_nmembers != 1)) {
51377c478bd9Sstevel@tonic-gate 		mutex_exit(&pp->p_lock);
51387c478bd9Sstevel@tonic-gate 		mutex_exit(&ct->ct_lock);
51397c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
51407c478bd9Sstevel@tonic-gate 		err = EINVAL;
51417c478bd9Sstevel@tonic-gate 		goto out;
51427c478bd9Sstevel@tonic-gate 	}
51437c478bd9Sstevel@tonic-gate 
51447c478bd9Sstevel@tonic-gate 	/*
51457c478bd9Sstevel@tonic-gate 	 * Moreover, we don't allow processes whose encapsulating
51467c478bd9Sstevel@tonic-gate 	 * process contracts have inherited extrazonal contracts.
51477c478bd9Sstevel@tonic-gate 	 * While it would be easier to eliminate all process contracts
51487c478bd9Sstevel@tonic-gate 	 * with inherited contracts, we need to be able to give a
51497c478bd9Sstevel@tonic-gate 	 * restarted init (or other zone-penetrating process) its
51507c478bd9Sstevel@tonic-gate 	 * predecessor's contracts.
51517c478bd9Sstevel@tonic-gate 	 */
51527c478bd9Sstevel@tonic-gate 	if (ctp->conp_ninherited != 0) {
51537c478bd9Sstevel@tonic-gate 		contract_t *next;
51547c478bd9Sstevel@tonic-gate 		for (next = list_head(&ctp->conp_inherited); next;
51557c478bd9Sstevel@tonic-gate 		    next = list_next(&ctp->conp_inherited, next)) {
51567c478bd9Sstevel@tonic-gate 			if (contract_getzuniqid(next) != zone->zone_uniqid) {
51577c478bd9Sstevel@tonic-gate 				mutex_exit(&pp->p_lock);
51587c478bd9Sstevel@tonic-gate 				mutex_exit(&ct->ct_lock);
51597c478bd9Sstevel@tonic-gate 				mutex_exit(&zonehash_lock);
51607c478bd9Sstevel@tonic-gate 				err = EINVAL;
51617c478bd9Sstevel@tonic-gate 				goto out;
51627c478bd9Sstevel@tonic-gate 			}
51637c478bd9Sstevel@tonic-gate 		}
51647c478bd9Sstevel@tonic-gate 	}
51657b209c2cSacruz 
51667c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
51677c478bd9Sstevel@tonic-gate 	mutex_exit(&ct->ct_lock);
51687c478bd9Sstevel@tonic-gate 
51697c478bd9Sstevel@tonic-gate 	status = zone_status_get(zone);
51707c478bd9Sstevel@tonic-gate 	if (status < ZONE_IS_READY || status >= ZONE_IS_SHUTTING_DOWN) {
51717c478bd9Sstevel@tonic-gate 		/*
51727c478bd9Sstevel@tonic-gate 		 * Can't join
51737c478bd9Sstevel@tonic-gate 		 */
51747c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
51757c478bd9Sstevel@tonic-gate 		err = EINVAL;
51767c478bd9Sstevel@tonic-gate 		goto out;
51777c478bd9Sstevel@tonic-gate 	}
51787c478bd9Sstevel@tonic-gate 
51797c478bd9Sstevel@tonic-gate 	/*
51807c478bd9Sstevel@tonic-gate 	 * Make sure new priv set is within the permitted set for caller
51817c478bd9Sstevel@tonic-gate 	 */
51827c478bd9Sstevel@tonic-gate 	if (!priv_issubset(zone->zone_privset, &CR_OPPRIV(CRED()))) {
51837c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
51847c478bd9Sstevel@tonic-gate 		err = EPERM;
51857c478bd9Sstevel@tonic-gate 		goto out;
51867c478bd9Sstevel@tonic-gate 	}
51877c478bd9Sstevel@tonic-gate 	/*
51887c478bd9Sstevel@tonic-gate 	 * We want to momentarily drop zonehash_lock while we optimistically
51897c478bd9Sstevel@tonic-gate 	 * bind curproc to the pool it should be running in.  This is safe
51907c478bd9Sstevel@tonic-gate 	 * since the zone can't disappear (we have a hold on it).
51917c478bd9Sstevel@tonic-gate 	 */
51927c478bd9Sstevel@tonic-gate 	zone_hold(zone);
51937c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
51947c478bd9Sstevel@tonic-gate 
51957c478bd9Sstevel@tonic-gate 	/*
51967c478bd9Sstevel@tonic-gate 	 * Grab pool_lock to keep the pools configuration from changing
51977c478bd9Sstevel@tonic-gate 	 * and to stop ourselves from getting rebound to another pool
51987c478bd9Sstevel@tonic-gate 	 * until we join the zone.
51997c478bd9Sstevel@tonic-gate 	 */
52007c478bd9Sstevel@tonic-gate 	if (pool_lock_intr() != 0) {
52017c478bd9Sstevel@tonic-gate 		zone_rele(zone);
52027c478bd9Sstevel@tonic-gate 		err = EINTR;
52037c478bd9Sstevel@tonic-gate 		goto out;
52047c478bd9Sstevel@tonic-gate 	}
52057c478bd9Sstevel@tonic-gate 	ASSERT(secpolicy_pool(CRED()) == 0);
52067c478bd9Sstevel@tonic-gate 	/*
52077c478bd9Sstevel@tonic-gate 	 * Bind ourselves to the pool currently associated with the zone.
52087c478bd9Sstevel@tonic-gate 	 */
52097c478bd9Sstevel@tonic-gate 	oldpool = curproc->p_pool;
52107c478bd9Sstevel@tonic-gate 	newpool = zone_pool_get(zone);
52117c478bd9Sstevel@tonic-gate 	if (pool_state == POOL_ENABLED && newpool != oldpool &&
52127c478bd9Sstevel@tonic-gate 	    (err = pool_do_bind(newpool, P_PID, P_MYID,
52137c478bd9Sstevel@tonic-gate 	    POOL_BIND_ALL)) != 0) {
52147c478bd9Sstevel@tonic-gate 		pool_unlock();
52157c478bd9Sstevel@tonic-gate 		zone_rele(zone);
52167c478bd9Sstevel@tonic-gate 		goto out;
52177c478bd9Sstevel@tonic-gate 	}
52187c478bd9Sstevel@tonic-gate 
52197c478bd9Sstevel@tonic-gate 	/*
52207c478bd9Sstevel@tonic-gate 	 * Grab cpu_lock now; we'll need it later when we call
52217c478bd9Sstevel@tonic-gate 	 * task_join().
52227c478bd9Sstevel@tonic-gate 	 */
52237c478bd9Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
52247c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
52257c478bd9Sstevel@tonic-gate 	/*
52267c478bd9Sstevel@tonic-gate 	 * Make sure the zone hasn't moved on since we dropped zonehash_lock.
52277c478bd9Sstevel@tonic-gate 	 */
52287c478bd9Sstevel@tonic-gate 	if (zone_status_get(zone) >= ZONE_IS_SHUTTING_DOWN) {
52297c478bd9Sstevel@tonic-gate 		/*
52307c478bd9Sstevel@tonic-gate 		 * Can't join anymore.
52317c478bd9Sstevel@tonic-gate 		 */
52327c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
52337c478bd9Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
52347c478bd9Sstevel@tonic-gate 		if (pool_state == POOL_ENABLED &&
52357c478bd9Sstevel@tonic-gate 		    newpool != oldpool)
52367c478bd9Sstevel@tonic-gate 			(void) pool_do_bind(oldpool, P_PID, P_MYID,
52377c478bd9Sstevel@tonic-gate 			    POOL_BIND_ALL);
52387c478bd9Sstevel@tonic-gate 		pool_unlock();
52397c478bd9Sstevel@tonic-gate 		zone_rele(zone);
52407c478bd9Sstevel@tonic-gate 		err = EINVAL;
52417c478bd9Sstevel@tonic-gate 		goto out;
52427c478bd9Sstevel@tonic-gate 	}
52437c478bd9Sstevel@tonic-gate 
52440209230bSgjelinek 	/*
52450209230bSgjelinek 	 * a_lock must be held while transfering locked memory and swap
52460209230bSgjelinek 	 * reservation from the global zone to the non global zone because
52470209230bSgjelinek 	 * asynchronous faults on the processes' address space can lock
52480209230bSgjelinek 	 * memory and reserve swap via MCL_FUTURE and MAP_NORESERVE
52490209230bSgjelinek 	 * segments respectively.
52500209230bSgjelinek 	 */
52510209230bSgjelinek 	AS_LOCK_ENTER(pp->as, &pp->p_as->a_lock, RW_WRITER);
52520209230bSgjelinek 	swap = as_swresv();
52537c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
52547c478bd9Sstevel@tonic-gate 	zone_proj0 = zone->zone_zsched->p_task->tk_proj;
52557c478bd9Sstevel@tonic-gate 	/* verify that we do not exceed and task or lwp limits */
52567c478bd9Sstevel@tonic-gate 	mutex_enter(&zone->zone_nlwps_lock);
52577c478bd9Sstevel@tonic-gate 	/* add new lwps to zone and zone's proj0 */
52587c478bd9Sstevel@tonic-gate 	zone_proj0->kpj_nlwps += pp->p_lwpcnt;
52597c478bd9Sstevel@tonic-gate 	zone->zone_nlwps += pp->p_lwpcnt;
52607c478bd9Sstevel@tonic-gate 	/* add 1 task to zone's proj0 */
52617c478bd9Sstevel@tonic-gate 	zone_proj0->kpj_ntasks += 1;
52627c478bd9Sstevel@tonic-gate 	mutex_exit(&zone->zone_nlwps_lock);
52637c478bd9Sstevel@tonic-gate 
52640209230bSgjelinek 	mutex_enter(&zone->zone_mem_lock);
5265c6939658Ssl108498 	zone->zone_locked_mem += pp->p_locked_mem;
5266c6939658Ssl108498 	zone_proj0->kpj_data.kpd_locked_mem += pp->p_locked_mem;
52670209230bSgjelinek 	zone->zone_max_swap += swap;
52680209230bSgjelinek 	mutex_exit(&zone->zone_mem_lock);
5269c6939658Ssl108498 
5270c1a9a9c3Skrishna 	mutex_enter(&(zone_proj0->kpj_data.kpd_crypto_lock));
5271c1a9a9c3Skrishna 	zone_proj0->kpj_data.kpd_crypto_mem += pp->p_crypto_mem;
5272c1a9a9c3Skrishna 	mutex_exit(&(zone_proj0->kpj_data.kpd_crypto_lock));
5273c1a9a9c3Skrishna 
52747c478bd9Sstevel@tonic-gate 	/* remove lwps from proc's old zone and old project */
52757c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_zone->zone_nlwps_lock);
52767c478bd9Sstevel@tonic-gate 	pp->p_zone->zone_nlwps -= pp->p_lwpcnt;
52777c478bd9Sstevel@tonic-gate 	pp->p_task->tk_proj->kpj_nlwps -= pp->p_lwpcnt;
52787c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_zone->zone_nlwps_lock);
52797c478bd9Sstevel@tonic-gate 
52800209230bSgjelinek 	mutex_enter(&pp->p_zone->zone_mem_lock);
5281c6939658Ssl108498 	pp->p_zone->zone_locked_mem -= pp->p_locked_mem;
5282c6939658Ssl108498 	pp->p_task->tk_proj->kpj_data.kpd_locked_mem -= pp->p_locked_mem;
52830209230bSgjelinek 	pp->p_zone->zone_max_swap -= swap;
52840209230bSgjelinek 	mutex_exit(&pp->p_zone->zone_mem_lock);
5285c6939658Ssl108498 
5286c1a9a9c3Skrishna 	mutex_enter(&(pp->p_task->tk_proj->kpj_data.kpd_crypto_lock));
5287c1a9a9c3Skrishna 	pp->p_task->tk_proj->kpj_data.kpd_crypto_mem -= pp->p_crypto_mem;
5288c1a9a9c3Skrishna 	mutex_exit(&(pp->p_task->tk_proj->kpj_data.kpd_crypto_lock));
5289c1a9a9c3Skrishna 
5290bb5ca623SVamsi Nagineni 	pp->p_flag |= SZONETOP;
5291bb5ca623SVamsi Nagineni 	pp->p_zone = zone;
5292c6939658Ssl108498 	mutex_exit(&pp->p_lock);
52930209230bSgjelinek 	AS_LOCK_EXIT(pp->p_as, &pp->p_as->a_lock);
5294c6939658Ssl108498 
52957c478bd9Sstevel@tonic-gate 	/*
52967c478bd9Sstevel@tonic-gate 	 * Joining the zone cannot fail from now on.
52977c478bd9Sstevel@tonic-gate 	 *
52987c478bd9Sstevel@tonic-gate 	 * This means that a lot of the following code can be commonized and
52997c478bd9Sstevel@tonic-gate 	 * shared with zsched().
53007c478bd9Sstevel@tonic-gate 	 */
53017c478bd9Sstevel@tonic-gate 
53027c478bd9Sstevel@tonic-gate 	/*
53037b209c2cSacruz 	 * If the process contract fmri was inherited, we need to
53047b209c2cSacruz 	 * flag this so that any contract status will not leak
53057b209c2cSacruz 	 * extra zone information, svc_fmri in this case
53067b209c2cSacruz 	 */
53077b209c2cSacruz 	if (ctp->conp_svc_ctid != ct->ct_id) {
53087b209c2cSacruz 		mutex_enter(&ct->ct_lock);
53097b209c2cSacruz 		ctp->conp_svc_zone_enter = ct->ct_id;
53107b209c2cSacruz 		mutex_exit(&ct->ct_lock);
53117b209c2cSacruz 	}
53127b209c2cSacruz 
53137b209c2cSacruz 	/*
53147c478bd9Sstevel@tonic-gate 	 * Reset the encapsulating process contract's zone.
53157c478bd9Sstevel@tonic-gate 	 */
53167c478bd9Sstevel@tonic-gate 	ASSERT(ct->ct_mzuniqid == GLOBAL_ZONEUNIQID);
53177c478bd9Sstevel@tonic-gate 	contract_setzuniqid(ct, zone->zone_uniqid);
53187c478bd9Sstevel@tonic-gate 
53197c478bd9Sstevel@tonic-gate 	/*
53207c478bd9Sstevel@tonic-gate 	 * Create a new task and associate the process with the project keyed
53217c478bd9Sstevel@tonic-gate 	 * by (projid,zoneid).
53227c478bd9Sstevel@tonic-gate 	 *
53237c478bd9Sstevel@tonic-gate 	 * We might as well be in project 0; the global zone's projid doesn't
53247c478bd9Sstevel@tonic-gate 	 * make much sense in a zone anyhow.
53257c478bd9Sstevel@tonic-gate 	 *
53267c478bd9Sstevel@tonic-gate 	 * This also increments zone_ntasks, and returns with p_lock held.
53277c478bd9Sstevel@tonic-gate 	 */
53287c478bd9Sstevel@tonic-gate 	tk = task_create(0, zone);
53297c478bd9Sstevel@tonic-gate 	oldtk = task_join(tk, 0);
53307c478bd9Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
53317c478bd9Sstevel@tonic-gate 
53327c478bd9Sstevel@tonic-gate 	/*
53337c478bd9Sstevel@tonic-gate 	 * call RCTLOP_SET functions on this proc
53347c478bd9Sstevel@tonic-gate 	 */
53357c478bd9Sstevel@tonic-gate 	e.rcep_p.zone = zone;
53367c478bd9Sstevel@tonic-gate 	e.rcep_t = RCENTITY_ZONE;
53377c478bd9Sstevel@tonic-gate 	(void) rctl_set_dup(NULL, NULL, pp, &e, zone->zone_rctls, NULL,
53387c478bd9Sstevel@tonic-gate 	    RCD_CALLBACK);
53397c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
53407c478bd9Sstevel@tonic-gate 
53417c478bd9Sstevel@tonic-gate 	/*
53427c478bd9Sstevel@tonic-gate 	 * We don't need to hold any of zsched's locks here; not only do we know
53437c478bd9Sstevel@tonic-gate 	 * the process and zone aren't going away, we know its session isn't
53447c478bd9Sstevel@tonic-gate 	 * changing either.
53457c478bd9Sstevel@tonic-gate 	 *
53467c478bd9Sstevel@tonic-gate 	 * By joining zsched's session here, we mimic the behavior in the
53477c478bd9Sstevel@tonic-gate 	 * global zone of init's sid being the pid of sched.  We extend this
53487c478bd9Sstevel@tonic-gate 	 * to all zlogin-like zone_enter()'ing processes as well.
53497c478bd9Sstevel@tonic-gate 	 */
53507c478bd9Sstevel@tonic-gate 	mutex_enter(&pidlock);
53517c478bd9Sstevel@tonic-gate 	sp = zone->zone_zsched->p_sessp;
53529acbbeafSnn35248 	sess_hold(zone->zone_zsched);
53537c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
53547c478bd9Sstevel@tonic-gate 	pgexit(pp);
53559acbbeafSnn35248 	sess_rele(pp->p_sessp, B_TRUE);
53567c478bd9Sstevel@tonic-gate 	pp->p_sessp = sp;
53577c478bd9Sstevel@tonic-gate 	pgjoin(pp, zone->zone_zsched->p_pidp);
53580209230bSgjelinek 
53590209230bSgjelinek 	/*
5360c97ad5cdSakolb 	 * If any threads are scheduled to be placed on zone wait queue they
5361c97ad5cdSakolb 	 * should abandon the idea since the wait queue is changing.
5362c97ad5cdSakolb 	 * We need to be holding pidlock & p_lock to do this.
5363c97ad5cdSakolb 	 */
5364c97ad5cdSakolb 	if ((t = pp->p_tlist) != NULL) {
5365c97ad5cdSakolb 		do {
5366c97ad5cdSakolb 			thread_lock(t);
5367c97ad5cdSakolb 			/*
5368c97ad5cdSakolb 			 * Kick this thread so that he doesn't sit
5369c97ad5cdSakolb 			 * on a wrong wait queue.
5370c97ad5cdSakolb 			 */
5371c97ad5cdSakolb 			if (ISWAITING(t))
5372c97ad5cdSakolb 				setrun_locked(t);
5373c97ad5cdSakolb 
5374c97ad5cdSakolb 			if (t->t_schedflag & TS_ANYWAITQ)
5375c97ad5cdSakolb 				t->t_schedflag &= ~ TS_ANYWAITQ;
5376c97ad5cdSakolb 
5377c97ad5cdSakolb 			thread_unlock(t);
5378c97ad5cdSakolb 		} while ((t = t->t_forw) != pp->p_tlist);
5379c97ad5cdSakolb 	}
5380c97ad5cdSakolb 
5381c97ad5cdSakolb 	/*
53820209230bSgjelinek 	 * If there is a default scheduling class for the zone and it is not
53830209230bSgjelinek 	 * the class we are currently in, change all of the threads in the
53840209230bSgjelinek 	 * process to the new class.  We need to be holding pidlock & p_lock
53850209230bSgjelinek 	 * when we call parmsset so this is a good place to do it.
53860209230bSgjelinek 	 */
53870209230bSgjelinek 	if (zone->zone_defaultcid > 0 &&
53880209230bSgjelinek 	    zone->zone_defaultcid != curthread->t_cid) {
53890209230bSgjelinek 		pcparms_t pcparms;
53900209230bSgjelinek 
53910209230bSgjelinek 		pcparms.pc_cid = zone->zone_defaultcid;
53920209230bSgjelinek 		pcparms.pc_clparms[0] = 0;
53930209230bSgjelinek 
53940209230bSgjelinek 		/*
53950209230bSgjelinek 		 * If setting the class fails, we still want to enter the zone.
53960209230bSgjelinek 		 */
53970209230bSgjelinek 		if ((t = pp->p_tlist) != NULL) {
53980209230bSgjelinek 			do {
53990209230bSgjelinek 				(void) parmsset(&pcparms, t);
54000209230bSgjelinek 			} while ((t = t->t_forw) != pp->p_tlist);
54010209230bSgjelinek 		}
54020209230bSgjelinek 	}
54030209230bSgjelinek 
54047c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
54057c478bd9Sstevel@tonic-gate 	mutex_exit(&pidlock);
54067c478bd9Sstevel@tonic-gate 
54077c478bd9Sstevel@tonic-gate 	mutex_exit(&zonehash_lock);
54087c478bd9Sstevel@tonic-gate 	/*
54097c478bd9Sstevel@tonic-gate 	 * We're firmly in the zone; let pools progress.
54107c478bd9Sstevel@tonic-gate 	 */
54117c478bd9Sstevel@tonic-gate 	pool_unlock();
54127c478bd9Sstevel@tonic-gate 	task_rele(oldtk);
54137c478bd9Sstevel@tonic-gate 	/*
54147c478bd9Sstevel@tonic-gate 	 * We don't need to retain a hold on the zone since we already
54157c478bd9Sstevel@tonic-gate 	 * incremented zone_ntasks, so the zone isn't going anywhere.
54167c478bd9Sstevel@tonic-gate 	 */
54177c478bd9Sstevel@tonic-gate 	zone_rele(zone);
54187c478bd9Sstevel@tonic-gate 
54197c478bd9Sstevel@tonic-gate 	/*
54207c478bd9Sstevel@tonic-gate 	 * Chroot
54217c478bd9Sstevel@tonic-gate 	 */
54227c478bd9Sstevel@tonic-gate 	vp = zone->zone_rootvp;
54237c478bd9Sstevel@tonic-gate 	zone_chdir(vp, &PTOU(pp)->u_cdir, pp);
54247c478bd9Sstevel@tonic-gate 	zone_chdir(vp, &PTOU(pp)->u_rdir, pp);
54257c478bd9Sstevel@tonic-gate 
54267c478bd9Sstevel@tonic-gate 	/*
54277c478bd9Sstevel@tonic-gate 	 * Change process credentials
54287c478bd9Sstevel@tonic-gate 	 */
54297c478bd9Sstevel@tonic-gate 	newcr = cralloc();
54307c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_crlock);
54317c478bd9Sstevel@tonic-gate 	cr = pp->p_cred;
54327c478bd9Sstevel@tonic-gate 	crcopy_to(cr, newcr);
54337c478bd9Sstevel@tonic-gate 	crsetzone(newcr, zone);
54347c478bd9Sstevel@tonic-gate 	pp->p_cred = newcr;
54357c478bd9Sstevel@tonic-gate 
54367c478bd9Sstevel@tonic-gate 	/*
54377c478bd9Sstevel@tonic-gate 	 * Restrict all process privilege sets to zone limit
54387c478bd9Sstevel@tonic-gate 	 */
54397c478bd9Sstevel@tonic-gate 	priv_intersect(zone->zone_privset, &CR_PPRIV(newcr));
54407c478bd9Sstevel@tonic-gate 	priv_intersect(zone->zone_privset, &CR_EPRIV(newcr));
54417c478bd9Sstevel@tonic-gate 	priv_intersect(zone->zone_privset, &CR_IPRIV(newcr));
54427c478bd9Sstevel@tonic-gate 	priv_intersect(zone->zone_privset, &CR_LPRIV(newcr));
54437c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_crlock);
54447c478bd9Sstevel@tonic-gate 	crset(pp, newcr);
54457c478bd9Sstevel@tonic-gate 
54467c478bd9Sstevel@tonic-gate 	/*
54477c478bd9Sstevel@tonic-gate 	 * Adjust upcount to reflect zone entry.
54487c478bd9Sstevel@tonic-gate 	 */
54497c478bd9Sstevel@tonic-gate 	uid = crgetruid(newcr);
54507c478bd9Sstevel@tonic-gate 	mutex_enter(&pidlock);
54517c478bd9Sstevel@tonic-gate 	upcount_dec(uid, GLOBAL_ZONEID);
54527c478bd9Sstevel@tonic-gate 	upcount_inc(uid, zoneid);
54537c478bd9Sstevel@tonic-gate 	mutex_exit(&pidlock);
54547c478bd9Sstevel@tonic-gate 
54557c478bd9Sstevel@tonic-gate 	/*
54567c478bd9Sstevel@tonic-gate 	 * Set up core file path and content.
54577c478bd9Sstevel@tonic-gate 	 */
54587c478bd9Sstevel@tonic-gate 	set_core_defaults();
54597c478bd9Sstevel@tonic-gate 
54607c478bd9Sstevel@tonic-gate out:
54617c478bd9Sstevel@tonic-gate 	/*
54627c478bd9Sstevel@tonic-gate 	 * Let the other lwps continue.
54637c478bd9Sstevel@tonic-gate 	 */
54647c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
54657c478bd9Sstevel@tonic-gate 	if (curthread != pp->p_agenttp)
54667c478bd9Sstevel@tonic-gate 		continuelwps(pp);
54677c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
54687c478bd9Sstevel@tonic-gate 
54697c478bd9Sstevel@tonic-gate 	return (err != 0 ? set_errno(err) : 0);
54707c478bd9Sstevel@tonic-gate }
54717c478bd9Sstevel@tonic-gate 
54727c478bd9Sstevel@tonic-gate /*
54737c478bd9Sstevel@tonic-gate  * Systemcall entry point for zone_list(2).
54747c478bd9Sstevel@tonic-gate  *
54757c478bd9Sstevel@tonic-gate  * Processes running in a (non-global) zone only see themselves.
547645916cd2Sjpk  * On labeled systems, they see all zones whose label they dominate.
54777c478bd9Sstevel@tonic-gate  */
54787c478bd9Sstevel@tonic-gate static int
54797c478bd9Sstevel@tonic-gate zone_list(zoneid_t *zoneidlist, uint_t *numzones)
54807c478bd9Sstevel@tonic-gate {
54817c478bd9Sstevel@tonic-gate 	zoneid_t *zoneids;
548248451833Scarlsonj 	zone_t *zone, *myzone;
54837c478bd9Sstevel@tonic-gate 	uint_t user_nzones, real_nzones;
548445916cd2Sjpk 	uint_t domi_nzones;
548545916cd2Sjpk 	int error;
54867c478bd9Sstevel@tonic-gate 
54877c478bd9Sstevel@tonic-gate 	if (copyin(numzones, &user_nzones, sizeof (uint_t)) != 0)
54887c478bd9Sstevel@tonic-gate 		return (set_errno(EFAULT));
54897c478bd9Sstevel@tonic-gate 
549048451833Scarlsonj 	myzone = curproc->p_zone;
549148451833Scarlsonj 	if (myzone != global_zone) {
549245916cd2Sjpk 		bslabel_t *mybslab;
549345916cd2Sjpk 
549445916cd2Sjpk 		if (!is_system_labeled()) {
54957c478bd9Sstevel@tonic-gate 			/* just return current zone */
549645916cd2Sjpk 			real_nzones = domi_nzones = 1;
54977c478bd9Sstevel@tonic-gate 			zoneids = kmem_alloc(sizeof (zoneid_t), KM_SLEEP);
549848451833Scarlsonj 			zoneids[0] = myzone->zone_id;
54997c478bd9Sstevel@tonic-gate 		} else {
550045916cd2Sjpk 			/* return all zones that are dominated */
55017c478bd9Sstevel@tonic-gate 			mutex_enter(&zonehash_lock);
55027c478bd9Sstevel@tonic-gate 			real_nzones = zonecount;
550345916cd2Sjpk 			domi_nzones = 0;
550445916cd2Sjpk 			if (real_nzones > 0) {
550545916cd2Sjpk 				zoneids = kmem_alloc(real_nzones *
550645916cd2Sjpk 				    sizeof (zoneid_t), KM_SLEEP);
550748451833Scarlsonj 				mybslab = label2bslabel(myzone->zone_slabel);
550845916cd2Sjpk 				for (zone = list_head(&zone_active);
550945916cd2Sjpk 				    zone != NULL;
551045916cd2Sjpk 				    zone = list_next(&zone_active, zone)) {
551145916cd2Sjpk 					if (zone->zone_id == GLOBAL_ZONEID)
551245916cd2Sjpk 						continue;
551348451833Scarlsonj 					if (zone != myzone &&
551448451833Scarlsonj 					    (zone->zone_flags & ZF_IS_SCRATCH))
551548451833Scarlsonj 						continue;
551648451833Scarlsonj 					/*
551748451833Scarlsonj 					 * Note that a label always dominates
551848451833Scarlsonj 					 * itself, so myzone is always included
551948451833Scarlsonj 					 * in the list.
552048451833Scarlsonj 					 */
552145916cd2Sjpk 					if (bldominates(mybslab,
552245916cd2Sjpk 					    label2bslabel(zone->zone_slabel))) {
552345916cd2Sjpk 						zoneids[domi_nzones++] =
552445916cd2Sjpk 						    zone->zone_id;
552545916cd2Sjpk 					}
552645916cd2Sjpk 				}
552745916cd2Sjpk 			}
552845916cd2Sjpk 			mutex_exit(&zonehash_lock);
552945916cd2Sjpk 		}
553045916cd2Sjpk 	} else {
553145916cd2Sjpk 		mutex_enter(&zonehash_lock);
553245916cd2Sjpk 		real_nzones = zonecount;
553345916cd2Sjpk 		domi_nzones = 0;
553445916cd2Sjpk 		if (real_nzones > 0) {
55357c478bd9Sstevel@tonic-gate 			zoneids = kmem_alloc(real_nzones * sizeof (zoneid_t),
55367c478bd9Sstevel@tonic-gate 			    KM_SLEEP);
55377c478bd9Sstevel@tonic-gate 			for (zone = list_head(&zone_active); zone != NULL;
55387c478bd9Sstevel@tonic-gate 			    zone = list_next(&zone_active, zone))
553945916cd2Sjpk 				zoneids[domi_nzones++] = zone->zone_id;
554045916cd2Sjpk 			ASSERT(domi_nzones == real_nzones);
55417c478bd9Sstevel@tonic-gate 		}
55427c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
55437c478bd9Sstevel@tonic-gate 	}
55447c478bd9Sstevel@tonic-gate 
554545916cd2Sjpk 	/*
554645916cd2Sjpk 	 * If user has allocated space for fewer entries than we found, then
554745916cd2Sjpk 	 * return only up to his limit.  Either way, tell him exactly how many
554845916cd2Sjpk 	 * we found.
554945916cd2Sjpk 	 */
555045916cd2Sjpk 	if (domi_nzones < user_nzones)
555145916cd2Sjpk 		user_nzones = domi_nzones;
555245916cd2Sjpk 	error = 0;
555345916cd2Sjpk 	if (copyout(&domi_nzones, numzones, sizeof (uint_t)) != 0) {
55547c478bd9Sstevel@tonic-gate 		error = EFAULT;
555545916cd2Sjpk 	} else if (zoneidlist != NULL && user_nzones != 0) {
55567c478bd9Sstevel@tonic-gate 		if (copyout(zoneids, zoneidlist,
55577c478bd9Sstevel@tonic-gate 		    user_nzones * sizeof (zoneid_t)) != 0)
55587c478bd9Sstevel@tonic-gate 			error = EFAULT;
55597c478bd9Sstevel@tonic-gate 	}
55607c478bd9Sstevel@tonic-gate 
556145916cd2Sjpk 	if (real_nzones > 0)
55627c478bd9Sstevel@tonic-gate 		kmem_free(zoneids, real_nzones * sizeof (zoneid_t));
55637c478bd9Sstevel@tonic-gate 
556445916cd2Sjpk 	if (error != 0)
55657c478bd9Sstevel@tonic-gate 		return (set_errno(error));
55667c478bd9Sstevel@tonic-gate 	else
55677c478bd9Sstevel@tonic-gate 		return (0);
55687c478bd9Sstevel@tonic-gate }
55697c478bd9Sstevel@tonic-gate 
55707c478bd9Sstevel@tonic-gate /*
55717c478bd9Sstevel@tonic-gate  * Systemcall entry point for zone_lookup(2).
55727c478bd9Sstevel@tonic-gate  *
557345916cd2Sjpk  * Non-global zones are only able to see themselves and (on labeled systems)
557445916cd2Sjpk  * the zones they dominate.
55757c478bd9Sstevel@tonic-gate  */
55767c478bd9Sstevel@tonic-gate static zoneid_t
55777c478bd9Sstevel@tonic-gate zone_lookup(const char *zone_name)
55787c478bd9Sstevel@tonic-gate {
55797c478bd9Sstevel@tonic-gate 	char *kname;
55807c478bd9Sstevel@tonic-gate 	zone_t *zone;
55817c478bd9Sstevel@tonic-gate 	zoneid_t zoneid;
55827c478bd9Sstevel@tonic-gate 	int err;
55837c478bd9Sstevel@tonic-gate 
55847c478bd9Sstevel@tonic-gate 	if (zone_name == NULL) {
55857c478bd9Sstevel@tonic-gate 		/* return caller's zone id */
55867c478bd9Sstevel@tonic-gate 		return (getzoneid());
55877c478bd9Sstevel@tonic-gate 	}
55887c478bd9Sstevel@tonic-gate 
55897c478bd9Sstevel@tonic-gate 	kname = kmem_zalloc(ZONENAME_MAX, KM_SLEEP);
55907c478bd9Sstevel@tonic-gate 	if ((err = copyinstr(zone_name, kname, ZONENAME_MAX, NULL)) != 0) {
55917c478bd9Sstevel@tonic-gate 		kmem_free(kname, ZONENAME_MAX);
55927c478bd9Sstevel@tonic-gate 		return (set_errno(err));
55937c478bd9Sstevel@tonic-gate 	}
55947c478bd9Sstevel@tonic-gate 
55957c478bd9Sstevel@tonic-gate 	mutex_enter(&zonehash_lock);
55967c478bd9Sstevel@tonic-gate 	zone = zone_find_all_by_name(kname);
55977c478bd9Sstevel@tonic-gate 	kmem_free(kname, ZONENAME_MAX);
559845916cd2Sjpk 	/*
559945916cd2Sjpk 	 * In a non-global zone, can only lookup global and own name.
560045916cd2Sjpk 	 * In Trusted Extensions zone label dominance rules apply.
560145916cd2Sjpk 	 */
560245916cd2Sjpk 	if (zone == NULL ||
560345916cd2Sjpk 	    zone_status_get(zone) < ZONE_IS_READY ||
560445916cd2Sjpk 	    !zone_list_access(zone)) {
56057c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
56067c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
560745916cd2Sjpk 	} else {
56087c478bd9Sstevel@tonic-gate 		zoneid = zone->zone_id;
56097c478bd9Sstevel@tonic-gate 		mutex_exit(&zonehash_lock);
56107c478bd9Sstevel@tonic-gate 		return (zoneid);
56117c478bd9Sstevel@tonic-gate 	}
561245916cd2Sjpk }
56137c478bd9Sstevel@tonic-gate 
5614821c4a97Sdp static int
5615821c4a97Sdp zone_version(int *version_arg)
5616821c4a97Sdp {
5617821c4a97Sdp 	int version = ZONE_SYSCALL_API_VERSION;
5618821c4a97Sdp 
5619821c4a97Sdp 	if (copyout(&version, version_arg, sizeof (int)) != 0)
5620821c4a97Sdp 		return (set_errno(EFAULT));
5621821c4a97Sdp 	return (0);
5622821c4a97Sdp }
5623821c4a97Sdp 
56247c478bd9Sstevel@tonic-gate /* ARGSUSED */
56257c478bd9Sstevel@tonic-gate long
5626fa9e4066Sahrens zone(int cmd, void *arg1, void *arg2, void *arg3, void *arg4)
56277c478bd9Sstevel@tonic-gate {
56287c478bd9Sstevel@tonic-gate 	zone_def zs;
56292b24ab6bSSebastien Roy 	int err;
56307c478bd9Sstevel@tonic-gate 
56317c478bd9Sstevel@tonic-gate 	switch (cmd) {
56327c478bd9Sstevel@tonic-gate 	case ZONE_CREATE:
56337c478bd9Sstevel@tonic-gate 		if (get_udatamodel() == DATAMODEL_NATIVE) {
56347c478bd9Sstevel@tonic-gate 			if (copyin(arg1, &zs, sizeof (zone_def))) {
56357c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
56367c478bd9Sstevel@tonic-gate 			}
56377c478bd9Sstevel@tonic-gate 		} else {
56387c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL
56397c478bd9Sstevel@tonic-gate 			zone_def32 zs32;
56407c478bd9Sstevel@tonic-gate 
56417c478bd9Sstevel@tonic-gate 			if (copyin(arg1, &zs32, sizeof (zone_def32))) {
56427c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
56437c478bd9Sstevel@tonic-gate 			}
56447c478bd9Sstevel@tonic-gate 			zs.zone_name =
56457c478bd9Sstevel@tonic-gate 			    (const char *)(unsigned long)zs32.zone_name;
56467c478bd9Sstevel@tonic-gate 			zs.zone_root =
56477c478bd9Sstevel@tonic-gate 			    (const char *)(unsigned long)zs32.zone_root;
56487c478bd9Sstevel@tonic-gate 			zs.zone_privs =
56497c478bd9Sstevel@tonic-gate 			    (const struct priv_set *)
56507c478bd9Sstevel@tonic-gate 			    (unsigned long)zs32.zone_privs;
56516f70df68Sdp 			zs.zone_privssz = zs32.zone_privssz;
56527c478bd9Sstevel@tonic-gate 			zs.rctlbuf = (caddr_t)(unsigned long)zs32.rctlbuf;
56537c478bd9Sstevel@tonic-gate 			zs.rctlbufsz = zs32.rctlbufsz;
5654fa9e4066Sahrens 			zs.zfsbuf = (caddr_t)(unsigned long)zs32.zfsbuf;
5655fa9e4066Sahrens 			zs.zfsbufsz = zs32.zfsbufsz;
56567c478bd9Sstevel@tonic-gate 			zs.extended_error =
56577c478bd9Sstevel@tonic-gate 			    (int *)(unsigned long)zs32.extended_error;
565845916cd2Sjpk 			zs.match = zs32.match;
565945916cd2Sjpk 			zs.doi = zs32.doi;
566045916cd2Sjpk 			zs.label = (const bslabel_t *)(uintptr_t)zs32.label;
5661f4b3ec61Sdh155122 			zs.flags = zs32.flags;
56627c478bd9Sstevel@tonic-gate #else
56637c478bd9Sstevel@tonic-gate 			panic("get_udatamodel() returned bogus result\n");
56647c478bd9Sstevel@tonic-gate #endif
56657c478bd9Sstevel@tonic-gate 		}
56667c478bd9Sstevel@tonic-gate 
56677c478bd9Sstevel@tonic-gate 		return (zone_create(zs.zone_name, zs.zone_root,
5668821c4a97Sdp 		    zs.zone_privs, zs.zone_privssz,
5669821c4a97Sdp 		    (caddr_t)zs.rctlbuf, zs.rctlbufsz,
5670fa9e4066Sahrens 		    (caddr_t)zs.zfsbuf, zs.zfsbufsz,
567145916cd2Sjpk 		    zs.extended_error, zs.match, zs.doi,
5672f4b3ec61Sdh155122 		    zs.label, zs.flags));
56737c478bd9Sstevel@tonic-gate 	case ZONE_BOOT:
56743f2f09c1Sdp 		return (zone_boot((zoneid_t)(uintptr_t)arg1));
56757c478bd9Sstevel@tonic-gate 	case ZONE_DESTROY:
56767c478bd9Sstevel@tonic-gate 		return (zone_destroy((zoneid_t)(uintptr_t)arg1));
56777c478bd9Sstevel@tonic-gate 	case ZONE_GETATTR:
56787c478bd9Sstevel@tonic-gate 		return (zone_getattr((zoneid_t)(uintptr_t)arg1,
56797c478bd9Sstevel@tonic-gate 		    (int)(uintptr_t)arg2, arg3, (size_t)arg4));
56803f2f09c1Sdp 	case ZONE_SETATTR:
56813f2f09c1Sdp 		return (zone_setattr((zoneid_t)(uintptr_t)arg1,
56823f2f09c1Sdp 		    (int)(uintptr_t)arg2, arg3, (size_t)arg4));
56837c478bd9Sstevel@tonic-gate 	case ZONE_ENTER:
56847c478bd9Sstevel@tonic-gate 		return (zone_enter((zoneid_t)(uintptr_t)arg1));
56857c478bd9Sstevel@tonic-gate 	case ZONE_LIST:
56867c478bd9Sstevel@tonic-gate 		return (zone_list((zoneid_t *)arg1, (uint_t *)arg2));
56877c478bd9Sstevel@tonic-gate 	case ZONE_SHUTDOWN:
56887c478bd9Sstevel@tonic-gate 		return (zone_shutdown((zoneid_t)(uintptr_t)arg1));
56897c478bd9Sstevel@tonic-gate 	case ZONE_LOOKUP:
56907c478bd9Sstevel@tonic-gate 		return (zone_lookup((const char *)arg1));
5691821c4a97Sdp 	case ZONE_VERSION:
5692821c4a97Sdp 		return (zone_version((int *)arg1));
5693f4b3ec61Sdh155122 	case ZONE_ADD_DATALINK:
5694f4b3ec61Sdh155122 		return (zone_add_datalink((zoneid_t)(uintptr_t)arg1,
56952b24ab6bSSebastien Roy 		    (datalink_id_t)(uintptr_t)arg2));
5696f4b3ec61Sdh155122 	case ZONE_DEL_DATALINK:
5697f4b3ec61Sdh155122 		return (zone_remove_datalink((zoneid_t)(uintptr_t)arg1,
56982b24ab6bSSebastien Roy 		    (datalink_id_t)(uintptr_t)arg2));
56992b24ab6bSSebastien Roy 	case ZONE_CHECK_DATALINK: {
57002b24ab6bSSebastien Roy 		zoneid_t	zoneid;
57012b24ab6bSSebastien Roy 		boolean_t	need_copyout;
57022b24ab6bSSebastien Roy 
57032b24ab6bSSebastien Roy 		if (copyin(arg1, &zoneid, sizeof (zoneid)) != 0)
57042b24ab6bSSebastien Roy 			return (EFAULT);
57052b24ab6bSSebastien Roy 		need_copyout = (zoneid == ALL_ZONES);
57062b24ab6bSSebastien Roy 		err = zone_check_datalink(&zoneid,
57072b24ab6bSSebastien Roy 		    (datalink_id_t)(uintptr_t)arg2);
57082b24ab6bSSebastien Roy 		if (err == 0 && need_copyout) {
57092b24ab6bSSebastien Roy 			if (copyout(&zoneid, arg1, sizeof (zoneid)) != 0)
57102b24ab6bSSebastien Roy 				err = EFAULT;
57112b24ab6bSSebastien Roy 		}
57122b24ab6bSSebastien Roy 		return (err == 0 ? 0 : set_errno(err));
57132b24ab6bSSebastien Roy 	}
5714f4b3ec61Sdh155122 	case ZONE_LIST_DATALINK:
5715f4b3ec61Sdh155122 		return (zone_list_datalink((zoneid_t)(uintptr_t)arg1,
57162b24ab6bSSebastien Roy 		    (int *)arg2, (datalink_id_t *)(uintptr_t)arg3));
57177c478bd9Sstevel@tonic-gate 	default:
57187c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
57197c478bd9Sstevel@tonic-gate 	}
57207c478bd9Sstevel@tonic-gate }
57217c478bd9Sstevel@tonic-gate 
57227c478bd9Sstevel@tonic-gate struct zarg {
57237c478bd9Sstevel@tonic-gate 	zone_t *zone;
57247c478bd9Sstevel@tonic-gate 	zone_cmd_arg_t arg;
57257c478bd9Sstevel@tonic-gate };
57267c478bd9Sstevel@tonic-gate 
57277c478bd9Sstevel@tonic-gate static int
57287c478bd9Sstevel@tonic-gate zone_lookup_door(const char *zone_name, door_handle_t *doorp)
57297c478bd9Sstevel@tonic-gate {
57307c478bd9Sstevel@tonic-gate 	char *buf;
57317c478bd9Sstevel@tonic-gate 	size_t buflen;
57327c478bd9Sstevel@tonic-gate 	int error;
57337c478bd9Sstevel@tonic-gate 
57347c478bd9Sstevel@tonic-gate 	buflen = sizeof (ZONE_DOOR_PATH) + strlen(zone_name);
57357c478bd9Sstevel@tonic-gate 	buf = kmem_alloc(buflen, KM_SLEEP);
57367c478bd9Sstevel@tonic-gate 	(void) snprintf(buf, buflen, ZONE_DOOR_PATH, zone_name);
57377c478bd9Sstevel@tonic-gate 	error = door_ki_open(buf, doorp);
57387c478bd9Sstevel@tonic-gate 	kmem_free(buf, buflen);
57397c478bd9Sstevel@tonic-gate 	return (error);
57407c478bd9Sstevel@tonic-gate }
57417c478bd9Sstevel@tonic-gate 
57427c478bd9Sstevel@tonic-gate static void
57437c478bd9Sstevel@tonic-gate zone_release_door(door_handle_t *doorp)
57447c478bd9Sstevel@tonic-gate {
57457c478bd9Sstevel@tonic-gate 	door_ki_rele(*doorp);
57467c478bd9Sstevel@tonic-gate 	*doorp = NULL;
57477c478bd9Sstevel@tonic-gate }
57487c478bd9Sstevel@tonic-gate 
57497c478bd9Sstevel@tonic-gate static void
57507c478bd9Sstevel@tonic-gate zone_ki_call_zoneadmd(struct zarg *zargp)
57517c478bd9Sstevel@tonic-gate {
57527c478bd9Sstevel@tonic-gate 	door_handle_t door = NULL;
57537c478bd9Sstevel@tonic-gate 	door_arg_t darg, save_arg;
57547c478bd9Sstevel@tonic-gate 	char *zone_name;
57557c478bd9Sstevel@tonic-gate 	size_t zone_namelen;
57567c478bd9Sstevel@tonic-gate 	zoneid_t zoneid;
57577c478bd9Sstevel@tonic-gate 	zone_t *zone;
57587c478bd9Sstevel@tonic-gate 	zone_cmd_arg_t arg;
57597c478bd9Sstevel@tonic-gate 	uint64_t uniqid;
57607c478bd9Sstevel@tonic-gate 	size_t size;
57617c478bd9Sstevel@tonic-gate 	int error;
57627c478bd9Sstevel@tonic-gate 	int retry;
57637c478bd9Sstevel@tonic-gate 
57647c478bd9Sstevel@tonic-gate 	zone = zargp->zone;
57657c478bd9Sstevel@tonic-gate 	arg = zargp->arg;
57667c478bd9Sstevel@tonic-gate 	kmem_free(zargp, sizeof (*zargp));
57677c478bd9Sstevel@tonic-gate 
57687c478bd9Sstevel@tonic-gate 	zone_namelen = strlen(zone->zone_name) + 1;
57697c478bd9Sstevel@tonic-gate 	zone_name = kmem_alloc(zone_namelen, KM_SLEEP);
57707c478bd9Sstevel@tonic-gate 	bcopy(zone->zone_name, zone_name, zone_namelen);
57717c478bd9Sstevel@tonic-gate 	zoneid = zone->zone_id;
57727c478bd9Sstevel@tonic-gate 	uniqid = zone->zone_uniqid;
57737c478bd9Sstevel@tonic-gate 	/*
57747c478bd9Sstevel@tonic-gate 	 * zoneadmd may be down, but at least we can empty out the zone.
57757c478bd9Sstevel@tonic-gate 	 * We can ignore the return value of zone_empty() since we're called
57767c478bd9Sstevel@tonic-gate 	 * from a kernel thread and know we won't be delivered any signals.
57777c478bd9Sstevel@tonic-gate 	 */
57787c478bd9Sstevel@tonic-gate 	ASSERT(curproc == &p0);
57797c478bd9Sstevel@tonic-gate 	(void) zone_empty(zone);
57807c478bd9Sstevel@tonic-gate 	ASSERT(zone_status_get(zone) >= ZONE_IS_EMPTY);
57817c478bd9Sstevel@tonic-gate 	zone_rele(zone);
57827c478bd9Sstevel@tonic-gate 
57837c478bd9Sstevel@tonic-gate 	size = sizeof (arg);
57847c478bd9Sstevel@tonic-gate 	darg.rbuf = (char *)&arg;
57857c478bd9Sstevel@tonic-gate 	darg.data_ptr = (char *)&arg;
57867c478bd9Sstevel@tonic-gate 	darg.rsize = size;
57877c478bd9Sstevel@tonic-gate 	darg.data_size = size;
57887c478bd9Sstevel@tonic-gate 	darg.desc_ptr = NULL;
57897c478bd9Sstevel@tonic-gate 	darg.desc_num = 0;
57907c478bd9Sstevel@tonic-gate 
57917c478bd9Sstevel@tonic-gate 	save_arg = darg;
57927c478bd9Sstevel@tonic-gate 	/*
57937c478bd9Sstevel@tonic-gate 	 * Since we're not holding a reference to the zone, any number of
57947c478bd9Sstevel@tonic-gate 	 * things can go wrong, including the zone disappearing before we get a
57957c478bd9Sstevel@tonic-gate 	 * chance to talk to zoneadmd.
57967c478bd9Sstevel@tonic-gate 	 */
57977c478bd9Sstevel@tonic-gate 	for (retry = 0; /* forever */; retry++) {
57987c478bd9Sstevel@tonic-gate 		if (door == NULL &&
57997c478bd9Sstevel@tonic-gate 		    (error = zone_lookup_door(zone_name, &door)) != 0) {
58007c478bd9Sstevel@tonic-gate 			goto next;
58017c478bd9Sstevel@tonic-gate 		}
58027c478bd9Sstevel@tonic-gate 		ASSERT(door != NULL);
58037c478bd9Sstevel@tonic-gate 
5804323a81d9Sjwadams 		if ((error = door_ki_upcall_limited(door, &darg, NULL,
5805323a81d9Sjwadams 		    SIZE_MAX, 0)) == 0) {
58067c478bd9Sstevel@tonic-gate 			break;
58077c478bd9Sstevel@tonic-gate 		}
58087c478bd9Sstevel@tonic-gate 		switch (error) {
58097c478bd9Sstevel@tonic-gate 		case EINTR:
58107c478bd9Sstevel@tonic-gate 			/* FALLTHROUGH */
58117c478bd9Sstevel@tonic-gate 		case EAGAIN:	/* process may be forking */
58127c478bd9Sstevel@tonic-gate 			/*
58137c478bd9Sstevel@tonic-gate 			 * Back off for a bit
58147c478bd9Sstevel@tonic-gate 			 */
58157c478bd9Sstevel@tonic-gate 			break;
58167c478bd9Sstevel@tonic-gate 		case EBADF:
58177c478bd9Sstevel@tonic-gate 			zone_release_door(&door);
58187c478bd9Sstevel@tonic-gate 			if (zone_lookup_door(zone_name, &door) != 0) {
58197c478bd9Sstevel@tonic-gate 				/*
58207c478bd9Sstevel@tonic-gate 				 * zoneadmd may be dead, but it may come back to
58217c478bd9Sstevel@tonic-gate 				 * life later.
58227c478bd9Sstevel@tonic-gate 				 */
58237c478bd9Sstevel@tonic-gate 				break;
58247c478bd9Sstevel@tonic-gate 			}
58257c478bd9Sstevel@tonic-gate 			break;
58267c478bd9Sstevel@tonic-gate 		default:
58277c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN,
58287c478bd9Sstevel@tonic-gate 			    "zone_ki_call_zoneadmd: door_ki_upcall error %d\n",
58297c478bd9Sstevel@tonic-gate 			    error);
58307c478bd9Sstevel@tonic-gate 			goto out;
58317c478bd9Sstevel@tonic-gate 		}
58327c478bd9Sstevel@tonic-gate next:
58337c478bd9Sstevel@tonic-gate 		/*
58347c478bd9Sstevel@tonic-gate 		 * If this isn't the same zone_t that we originally had in mind,
58357c478bd9Sstevel@tonic-gate 		 * then this is the same as if two kadmin requests come in at
58367c478bd9Sstevel@tonic-gate 		 * the same time: the first one wins.  This means we lose, so we
58377c478bd9Sstevel@tonic-gate 		 * bail.
58387c478bd9Sstevel@tonic-gate 		 */
58397c478bd9Sstevel@tonic-gate 		if ((zone = zone_find_by_id(zoneid)) == NULL) {
58407c478bd9Sstevel@tonic-gate 			/*
58417c478bd9Sstevel@tonic-gate 			 * Problem is solved.
58427c478bd9Sstevel@tonic-gate 			 */
58437c478bd9Sstevel@tonic-gate 			break;
58447c478bd9Sstevel@tonic-gate 		}
58457c478bd9Sstevel@tonic-gate 		if (zone->zone_uniqid != uniqid) {
58467c478bd9Sstevel@tonic-gate 			/*
58477c478bd9Sstevel@tonic-gate 			 * zoneid recycled
58487c478bd9Sstevel@tonic-gate 			 */
58497c478bd9Sstevel@tonic-gate 			zone_rele(zone);
58507c478bd9Sstevel@tonic-gate 			break;
58517c478bd9Sstevel@tonic-gate 		}
58527c478bd9Sstevel@tonic-gate 		/*
58537c478bd9Sstevel@tonic-gate 		 * We could zone_status_timedwait(), but there doesn't seem to
58547c478bd9Sstevel@tonic-gate 		 * be much point in doing that (plus, it would mean that
58557c478bd9Sstevel@tonic-gate 		 * zone_free() isn't called until this thread exits).
58567c478bd9Sstevel@tonic-gate 		 */
58577c478bd9Sstevel@tonic-gate 		zone_rele(zone);
58587c478bd9Sstevel@tonic-gate 		delay(hz);
58597c478bd9Sstevel@tonic-gate 		darg = save_arg;
58607c478bd9Sstevel@tonic-gate 	}
58617c478bd9Sstevel@tonic-gate out:
58627c478bd9Sstevel@tonic-gate 	if (door != NULL) {
58637c478bd9Sstevel@tonic-gate 		zone_release_door(&door);
58647c478bd9Sstevel@tonic-gate 	}
58657c478bd9Sstevel@tonic-gate 	kmem_free(zone_name, zone_namelen);
58667c478bd9Sstevel@tonic-gate 	thread_exit();
58677c478bd9Sstevel@tonic-gate }
58687c478bd9Sstevel@tonic-gate 
58697c478bd9Sstevel@tonic-gate /*
58703f2f09c1Sdp  * Entry point for uadmin() to tell the zone to go away or reboot.  Analog to
58713f2f09c1Sdp  * kadmin().  The caller is a process in the zone.
58727c478bd9Sstevel@tonic-gate  *
58737c478bd9Sstevel@tonic-gate  * In order to shutdown the zone, we will hand off control to zoneadmd
58747c478bd9Sstevel@tonic-gate  * (running in the global zone) via a door.  We do a half-hearted job at
58757c478bd9Sstevel@tonic-gate  * killing all processes in the zone, create a kernel thread to contact
58767c478bd9Sstevel@tonic-gate  * zoneadmd, and make note of the "uniqid" of the zone.  The uniqid is
58777c478bd9Sstevel@tonic-gate  * a form of generation number used to let zoneadmd (as well as
58787c478bd9Sstevel@tonic-gate  * zone_destroy()) know exactly which zone they're re talking about.
58797c478bd9Sstevel@tonic-gate  */
58807c478bd9Sstevel@tonic-gate int
58813f2f09c1Sdp zone_kadmin(int cmd, int fcn, const char *mdep, cred_t *credp)
58827c478bd9Sstevel@tonic-gate {
58837c478bd9Sstevel@tonic-gate 	struct zarg *zargp;
58847c478bd9Sstevel@tonic-gate 	zone_cmd_t zcmd;
58857c478bd9Sstevel@tonic-gate 	zone_t *zone;
58867c478bd9Sstevel@tonic-gate 
58877c478bd9Sstevel@tonic-gate 	zone = curproc->p_zone;
58887c478bd9Sstevel@tonic-gate 	ASSERT(getzoneid() != GLOBAL_ZONEID);
58897c478bd9Sstevel@tonic-gate 
58907c478bd9Sstevel@tonic-gate 	switch (cmd) {
58917c478bd9Sstevel@tonic-gate 	case A_SHUTDOWN:
58927c478bd9Sstevel@tonic-gate 		switch (fcn) {
58937c478bd9Sstevel@tonic-gate 		case AD_HALT:
58947c478bd9Sstevel@tonic-gate 		case AD_POWEROFF:
58957c478bd9Sstevel@tonic-gate 			zcmd = Z_HALT;
58967c478bd9Sstevel@tonic-gate 			break;
58977c478bd9Sstevel@tonic-gate 		case AD_BOOT:
58987c478bd9Sstevel@tonic-gate 			zcmd = Z_REBOOT;
58997c478bd9Sstevel@tonic-gate 			break;
59007c478bd9Sstevel@tonic-gate 		case AD_IBOOT:
59017c478bd9Sstevel@tonic-gate 		case AD_SBOOT:
59027c478bd9Sstevel@tonic-gate 		case AD_SIBOOT:
59037c478bd9Sstevel@tonic-gate 		case AD_NOSYNC:
59047c478bd9Sstevel@tonic-gate 			return (ENOTSUP);
59057c478bd9Sstevel@tonic-gate 		default:
59067c478bd9Sstevel@tonic-gate 			return (EINVAL);
59077c478bd9Sstevel@tonic-gate 		}
59087c478bd9Sstevel@tonic-gate 		break;
59097c478bd9Sstevel@tonic-gate 	case A_REBOOT:
59107c478bd9Sstevel@tonic-gate 		zcmd = Z_REBOOT;
59117c478bd9Sstevel@tonic-gate 		break;
59127c478bd9Sstevel@tonic-gate 	case A_FTRACE:
59137c478bd9Sstevel@tonic-gate 	case A_REMOUNT:
59147c478bd9Sstevel@tonic-gate 	case A_FREEZE:
59157c478bd9Sstevel@tonic-gate 	case A_DUMP:
5916753a6d45SSherry Moore 	case A_CONFIG:
59177c478bd9Sstevel@tonic-gate 		return (ENOTSUP);
59187c478bd9Sstevel@tonic-gate 	default:
59197c478bd9Sstevel@tonic-gate 		ASSERT(cmd != A_SWAPCTL);	/* handled by uadmin() */
59207c478bd9Sstevel@tonic-gate 		return (EINVAL);
59217c478bd9Sstevel@tonic-gate 	}
59227c478bd9Sstevel@tonic-gate 
59237c478bd9Sstevel@tonic-gate 	if (secpolicy_zone_admin(credp, B_FALSE))
59247c478bd9Sstevel@tonic-gate 		return (EPERM);
59257c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
59263f2f09c1Sdp 
59277c478bd9Sstevel@tonic-gate 	/*
59287c478bd9Sstevel@tonic-gate 	 * zone_status can't be ZONE_IS_EMPTY or higher since curproc
59297c478bd9Sstevel@tonic-gate 	 * is in the zone.
59307c478bd9Sstevel@tonic-gate 	 */
59317c478bd9Sstevel@tonic-gate 	ASSERT(zone_status_get(zone) < ZONE_IS_EMPTY);
59327c478bd9Sstevel@tonic-gate 	if (zone_status_get(zone) > ZONE_IS_RUNNING) {
59337c478bd9Sstevel@tonic-gate 		/*
59347c478bd9Sstevel@tonic-gate 		 * This zone is already on its way down.
59357c478bd9Sstevel@tonic-gate 		 */
59367c478bd9Sstevel@tonic-gate 		mutex_exit(&zone_status_lock);
59377c478bd9Sstevel@tonic-gate 		return (0);
59387c478bd9Sstevel@tonic-gate 	}
59397c478bd9Sstevel@tonic-gate 	/*
59407c478bd9Sstevel@tonic-gate 	 * Prevent future zone_enter()s
59417c478bd9Sstevel@tonic-gate 	 */
59427c478bd9Sstevel@tonic-gate 	zone_status_set(zone, ZONE_IS_SHUTTING_DOWN);
59437c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
59447c478bd9Sstevel@tonic-gate 
59457c478bd9Sstevel@tonic-gate 	/*
59467c478bd9Sstevel@tonic-gate 	 * Kill everyone now and call zoneadmd later.
59477c478bd9Sstevel@tonic-gate 	 * zone_ki_call_zoneadmd() will do a more thorough job of this
59487c478bd9Sstevel@tonic-gate 	 * later.
59497c478bd9Sstevel@tonic-gate 	 */
59507c478bd9Sstevel@tonic-gate 	killall(zone->zone_id);
59517c478bd9Sstevel@tonic-gate 	/*
59527c478bd9Sstevel@tonic-gate 	 * Now, create the thread to contact zoneadmd and do the rest of the
59537c478bd9Sstevel@tonic-gate 	 * work.  This thread can't be created in our zone otherwise
59547c478bd9Sstevel@tonic-gate 	 * zone_destroy() would deadlock.
59557c478bd9Sstevel@tonic-gate 	 */
59563f2f09c1Sdp 	zargp = kmem_zalloc(sizeof (*zargp), KM_SLEEP);
59577c478bd9Sstevel@tonic-gate 	zargp->arg.cmd = zcmd;
59587c478bd9Sstevel@tonic-gate 	zargp->arg.uniqid = zone->zone_uniqid;
59593f2f09c1Sdp 	zargp->zone = zone;
59607c478bd9Sstevel@tonic-gate 	(void) strcpy(zargp->arg.locale, "C");
59613f2f09c1Sdp 	/* mdep was already copied in for us by uadmin */
59623f2f09c1Sdp 	if (mdep != NULL)
59633f2f09c1Sdp 		(void) strlcpy(zargp->arg.bootbuf, mdep,
59643f2f09c1Sdp 		    sizeof (zargp->arg.bootbuf));
59653f2f09c1Sdp 	zone_hold(zone);
59667c478bd9Sstevel@tonic-gate 
59677c478bd9Sstevel@tonic-gate 	(void) thread_create(NULL, 0, zone_ki_call_zoneadmd, zargp, 0, &p0,
59687c478bd9Sstevel@tonic-gate 	    TS_RUN, minclsyspri);
59697c478bd9Sstevel@tonic-gate 	exit(CLD_EXITED, 0);
59707c478bd9Sstevel@tonic-gate 
59717c478bd9Sstevel@tonic-gate 	return (EINVAL);
59727c478bd9Sstevel@tonic-gate }
59737c478bd9Sstevel@tonic-gate 
59747c478bd9Sstevel@tonic-gate /*
59757c478bd9Sstevel@tonic-gate  * Entry point so kadmin(A_SHUTDOWN, ...) can set the global zone's
59767c478bd9Sstevel@tonic-gate  * status to ZONE_IS_SHUTTING_DOWN.
59778f983ab3Sjv227347  *
59788f983ab3Sjv227347  * This function also shuts down all running zones to ensure that they won't
59798f983ab3Sjv227347  * fork new processes.
59807c478bd9Sstevel@tonic-gate  */
59817c478bd9Sstevel@tonic-gate void
59827c478bd9Sstevel@tonic-gate zone_shutdown_global(void)
59837c478bd9Sstevel@tonic-gate {
59848f983ab3Sjv227347 	zone_t *current_zonep;
59857c478bd9Sstevel@tonic-gate 
59868f983ab3Sjv227347 	ASSERT(INGLOBALZONE(curproc));
59878f983ab3Sjv227347 	mutex_enter(&zonehash_lock);
59887c478bd9Sstevel@tonic-gate 	mutex_enter(&zone_status_lock);
59898f983ab3Sjv227347 
59908f983ab3Sjv227347 	/* Modify the global zone's status first. */
59917c478bd9Sstevel@tonic-gate 	ASSERT(zone_status_get(global_zone) == ZONE_IS_RUNNING);
59927c478bd9Sstevel@tonic-gate 	zone_status_set(global_zone, ZONE_IS_SHUTTING_DOWN);
59938f983ab3Sjv227347 
59948f983ab3Sjv227347 	/*
59958f983ab3Sjv227347 	 * Now change the states of all running zones to ZONE_IS_SHUTTING_DOWN.
59968f983ab3Sjv227347 	 * We don't mark all zones with ZONE_IS_SHUTTING_DOWN because doing so
59978f983ab3Sjv227347 	 * could cause assertions to fail (e.g., assertions about a zone's
59988f983ab3Sjv227347 	 * state during initialization, readying, or booting) or produce races.
59998f983ab3Sjv227347 	 * We'll let threads continue to initialize and ready new zones: they'll
60008f983ab3Sjv227347 	 * fail to boot the new zones when they see that the global zone is
60018f983ab3Sjv227347 	 * shutting down.
60028f983ab3Sjv227347 	 */
60038f983ab3Sjv227347 	for (current_zonep = list_head(&zone_active); current_zonep != NULL;
60048f983ab3Sjv227347 	    current_zonep = list_next(&zone_active, current_zonep)) {
60058f983ab3Sjv227347 		if (zone_status_get(current_zonep) == ZONE_IS_RUNNING)
60068f983ab3Sjv227347 			zone_status_set(current_zonep, ZONE_IS_SHUTTING_DOWN);
60078f983ab3Sjv227347 	}
60087c478bd9Sstevel@tonic-gate 	mutex_exit(&zone_status_lock);
60098f983ab3Sjv227347 	mutex_exit(&zonehash_lock);
60107c478bd9Sstevel@tonic-gate }
6011fa9e4066Sahrens 
6012fa9e4066Sahrens /*
6013fa9e4066Sahrens  * Returns true if the named dataset is visible in the current zone.
6014fa9e4066Sahrens  * The 'write' parameter is set to 1 if the dataset is also writable.
6015fa9e4066Sahrens  */
6016fa9e4066Sahrens int
6017fa9e4066Sahrens zone_dataset_visible(const char *dataset, int *write)
6018fa9e4066Sahrens {
6019658a1dc7SSanjeev Bagewadi 	static int zfstype = -1;
6020fa9e4066Sahrens 	zone_dataset_t *zd;
6021fa9e4066Sahrens 	size_t len;
6022fa9e4066Sahrens 	zone_t *zone = curproc->p_zone;
6023658a1dc7SSanjeev Bagewadi 	const char *name = NULL;
6024658a1dc7SSanjeev Bagewadi 	vfs_t *vfsp = NULL;
6025fa9e4066Sahrens 
6026fa9e4066Sahrens 	if (dataset[0] == '\0')
6027fa9e4066Sahrens 		return (0);
6028fa9e4066Sahrens 
6029fa9e4066Sahrens 	/*
6030fa9e4066Sahrens 	 * Walk the list once, looking for datasets which match exactly, or
6031fa9e4066Sahrens 	 * specify a dataset underneath an exported dataset.  If found, return
6032fa9e4066Sahrens 	 * true and note that it is writable.
6033fa9e4066Sahrens 	 */
6034fa9e4066Sahrens 	for (zd = list_head(&zone->zone_datasets); zd != NULL;
6035fa9e4066Sahrens 	    zd = list_next(&zone->zone_datasets, zd)) {
6036fa9e4066Sahrens 
6037fa9e4066Sahrens 		len = strlen(zd->zd_dataset);
6038fa9e4066Sahrens 		if (strlen(dataset) >= len &&
6039fa9e4066Sahrens 		    bcmp(dataset, zd->zd_dataset, len) == 0 &&
604095c9592aSmaybee 		    (dataset[len] == '\0' || dataset[len] == '/' ||
604195c9592aSmaybee 		    dataset[len] == '@')) {
6042fa9e4066Sahrens 			if (write)
6043fa9e4066Sahrens 				*write = 1;
6044fa9e4066Sahrens 			return (1);
6045fa9e4066Sahrens 		}
6046fa9e4066Sahrens 	}
6047fa9e4066Sahrens 
6048fa9e4066Sahrens 	/*
6049fa9e4066Sahrens 	 * Walk the list a second time, searching for datasets which are parents
6050fa9e4066Sahrens 	 * of exported datasets.  These should be visible, but read-only.
6051fa9e4066Sahrens 	 *
6052fa9e4066Sahrens 	 * Note that we also have to support forms such as 'pool/dataset/', with
6053fa9e4066Sahrens 	 * a trailing slash.
6054fa9e4066Sahrens 	 */
6055fa9e4066Sahrens 	for (zd = list_head(&zone->zone_datasets); zd != NULL;
6056fa9e4066Sahrens 	    zd = list_next(&zone->zone_datasets, zd)) {
6057fa9e4066Sahrens 
6058fa9e4066Sahrens 		len = strlen(dataset);
6059fa9e4066Sahrens 		if (dataset[len - 1] == '/')
6060fa9e4066Sahrens 			len--;	/* Ignore trailing slash */
6061fa9e4066Sahrens 		if (len < strlen(zd->zd_dataset) &&
6062fa9e4066Sahrens 		    bcmp(dataset, zd->zd_dataset, len) == 0 &&
6063fa9e4066Sahrens 		    zd->zd_dataset[len] == '/') {
6064fa9e4066Sahrens 			if (write)
6065fa9e4066Sahrens 				*write = 0;
6066fa9e4066Sahrens 			return (1);
6067fa9e4066Sahrens 		}
6068fa9e4066Sahrens 	}
6069fa9e4066Sahrens 
6070658a1dc7SSanjeev Bagewadi 	/*
6071658a1dc7SSanjeev Bagewadi 	 * We reach here if the given dataset is not found in the zone_dataset
6072658a1dc7SSanjeev Bagewadi 	 * list. Check if this dataset was added as a filesystem (ie. "add fs")
6073658a1dc7SSanjeev Bagewadi 	 * instead of delegation. For this we search for the dataset in the
6074658a1dc7SSanjeev Bagewadi 	 * zone_vfslist of this zone. If found, return true and note that it is
6075658a1dc7SSanjeev Bagewadi 	 * not writable.
6076658a1dc7SSanjeev Bagewadi 	 */
6077658a1dc7SSanjeev Bagewadi 
6078658a1dc7SSanjeev Bagewadi 	/*
6079658a1dc7SSanjeev Bagewadi 	 * Initialize zfstype if it is not initialized yet.
6080658a1dc7SSanjeev Bagewadi 	 */
6081658a1dc7SSanjeev Bagewadi 	if (zfstype == -1) {
6082658a1dc7SSanjeev Bagewadi 		struct vfssw *vswp = vfs_getvfssw("zfs");
6083658a1dc7SSanjeev Bagewadi 		zfstype = vswp - vfssw;
6084658a1dc7SSanjeev Bagewadi 		vfs_unrefvfssw(vswp);
6085658a1dc7SSanjeev Bagewadi 	}
6086658a1dc7SSanjeev Bagewadi 
6087658a1dc7SSanjeev Bagewadi 	vfs_list_read_lock();
6088658a1dc7SSanjeev Bagewadi 	vfsp = zone->zone_vfslist;
6089658a1dc7SSanjeev Bagewadi 	do {
6090658a1dc7SSanjeev Bagewadi 		ASSERT(vfsp);
6091658a1dc7SSanjeev Bagewadi 		if (vfsp->vfs_fstype == zfstype) {
6092658a1dc7SSanjeev Bagewadi 			name = refstr_value(vfsp->vfs_resource);
6093658a1dc7SSanjeev Bagewadi 
6094658a1dc7SSanjeev Bagewadi 			/*
6095658a1dc7SSanjeev Bagewadi 			 * Check if we have an exact match.
6096658a1dc7SSanjeev Bagewadi 			 */
6097658a1dc7SSanjeev Bagewadi 			if (strcmp(dataset, name) == 0) {
6098658a1dc7SSanjeev Bagewadi 				vfs_list_unlock();
6099658a1dc7SSanjeev Bagewadi 				if (write)
6100658a1dc7SSanjeev Bagewadi 					*write = 0;
6101658a1dc7SSanjeev Bagewadi 				return (1);
6102658a1dc7SSanjeev Bagewadi 			}
6103658a1dc7SSanjeev Bagewadi 			/*
6104658a1dc7SSanjeev Bagewadi 			 * We need to check if we are looking for parents of
6105658a1dc7SSanjeev Bagewadi 			 * a dataset. These should be visible, but read-only.
6106658a1dc7SSanjeev Bagewadi 			 */
6107658a1dc7SSanjeev Bagewadi 			len = strlen(dataset);
6108658a1dc7SSanjeev Bagewadi 			if (dataset[len - 1] == '/')
6109658a1dc7SSanjeev Bagewadi 				len--;
6110658a1dc7SSanjeev Bagewadi 
6111658a1dc7SSanjeev Bagewadi 			if (len < strlen(name) &&
6112658a1dc7SSanjeev Bagewadi 			    bcmp(dataset, name, len) == 0 && name[len] == '/') {
6113658a1dc7SSanjeev Bagewadi 				vfs_list_unlock();
6114658a1dc7SSanjeev Bagewadi 				if (write)
6115658a1dc7SSanjeev Bagewadi 					*write = 0;
6116658a1dc7SSanjeev Bagewadi 				return (1);
6117658a1dc7SSanjeev Bagewadi 			}
6118658a1dc7SSanjeev Bagewadi 		}
6119658a1dc7SSanjeev Bagewadi 		vfsp = vfsp->vfs_zone_next;
6120658a1dc7SSanjeev Bagewadi 	} while (vfsp != zone->zone_vfslist);
6121658a1dc7SSanjeev Bagewadi 
6122658a1dc7SSanjeev Bagewadi 	vfs_list_unlock();
6123fa9e4066Sahrens 	return (0);
6124fa9e4066Sahrens }
612545916cd2Sjpk 
612645916cd2Sjpk /*
612745916cd2Sjpk  * zone_find_by_any_path() -
612845916cd2Sjpk  *
612945916cd2Sjpk  * kernel-private routine similar to zone_find_by_path(), but which
613045916cd2Sjpk  * effectively compares against zone paths rather than zonerootpath
613145916cd2Sjpk  * (i.e., the last component of zonerootpaths, which should be "root/",
613245916cd2Sjpk  * are not compared.)  This is done in order to accurately identify all
613345916cd2Sjpk  * paths, whether zone-visible or not, including those which are parallel
613445916cd2Sjpk  * to /root/, such as /dev/, /home/, etc...
613545916cd2Sjpk  *
613645916cd2Sjpk  * If the specified path does not fall under any zone path then global
613745916cd2Sjpk  * zone is returned.
613845916cd2Sjpk  *
613945916cd2Sjpk  * The treat_abs parameter indicates whether the path should be treated as
614045916cd2Sjpk  * an absolute path although it does not begin with "/".  (This supports
614145916cd2Sjpk  * nfs mount syntax such as host:any/path.)
614245916cd2Sjpk  *
614345916cd2Sjpk  * The caller is responsible for zone_rele of the returned zone.
614445916cd2Sjpk  */
614545916cd2Sjpk zone_t *
614645916cd2Sjpk zone_find_by_any_path(const char *path, boolean_t treat_abs)
614745916cd2Sjpk {
614845916cd2Sjpk 	zone_t *zone;
614945916cd2Sjpk 	int path_offset = 0;
615045916cd2Sjpk 
615145916cd2Sjpk 	if (path == NULL) {
615245916cd2Sjpk 		zone_hold(global_zone);
615345916cd2Sjpk 		return (global_zone);
615445916cd2Sjpk 	}
615545916cd2Sjpk 
615645916cd2Sjpk 	if (*path != '/') {
615745916cd2Sjpk 		ASSERT(treat_abs);
615845916cd2Sjpk 		path_offset = 1;
615945916cd2Sjpk 	}
616045916cd2Sjpk 
616145916cd2Sjpk 	mutex_enter(&zonehash_lock);
616245916cd2Sjpk 	for (zone = list_head(&zone_active); zone != NULL;
616345916cd2Sjpk 	    zone = list_next(&zone_active, zone)) {
616445916cd2Sjpk 		char	*c;
616545916cd2Sjpk 		size_t	pathlen;
61660f95d722Smp46848 		char *rootpath_start;
616745916cd2Sjpk 
616845916cd2Sjpk 		if (zone == global_zone)	/* skip global zone */
616945916cd2Sjpk 			continue;
617045916cd2Sjpk 
617145916cd2Sjpk 		/* scan backwards to find start of last component */
617245916cd2Sjpk 		c = zone->zone_rootpath + zone->zone_rootpathlen - 2;
617345916cd2Sjpk 		do {
617445916cd2Sjpk 			c--;
617545916cd2Sjpk 		} while (*c != '/');
617645916cd2Sjpk 
61770f95d722Smp46848 		pathlen = c - zone->zone_rootpath + 1 - path_offset;
61780f95d722Smp46848 		rootpath_start = (zone->zone_rootpath + path_offset);
61790f95d722Smp46848 		if (strncmp(path, rootpath_start, pathlen) == 0)
618045916cd2Sjpk 			break;
618145916cd2Sjpk 	}
618245916cd2Sjpk 	if (zone == NULL)
618345916cd2Sjpk 		zone = global_zone;
618445916cd2Sjpk 	zone_hold(zone);
618545916cd2Sjpk 	mutex_exit(&zonehash_lock);
618645916cd2Sjpk 	return (zone);
618745916cd2Sjpk }
6188f4b3ec61Sdh155122 
6189f4b3ec61Sdh155122 /*
61902b24ab6bSSebastien Roy  * Finds a zone_dl_t with the given linkid in the given zone.  Returns the
61912b24ab6bSSebastien Roy  * zone_dl_t pointer if found, and NULL otherwise.
6192f4b3ec61Sdh155122  */
61932b24ab6bSSebastien Roy static zone_dl_t *
61942b24ab6bSSebastien Roy zone_find_dl(zone_t *zone, datalink_id_t linkid)
6195f4b3ec61Sdh155122 {
61962b24ab6bSSebastien Roy 	zone_dl_t *zdl;
6197f4b3ec61Sdh155122 
61982b24ab6bSSebastien Roy 	ASSERT(mutex_owned(&zone->zone_lock));
61992b24ab6bSSebastien Roy 	for (zdl = list_head(&zone->zone_dl_list); zdl != NULL;
62002b24ab6bSSebastien Roy 	    zdl = list_next(&zone->zone_dl_list, zdl)) {
62012b24ab6bSSebastien Roy 		if (zdl->zdl_id == linkid)
6202f4b3ec61Sdh155122 			break;
6203f4b3ec61Sdh155122 	}
62042b24ab6bSSebastien Roy 	return (zdl);
6205f4b3ec61Sdh155122 }
62062b24ab6bSSebastien Roy 
62072b24ab6bSSebastien Roy static boolean_t
62082b24ab6bSSebastien Roy zone_dl_exists(zone_t *zone, datalink_id_t linkid)
62092b24ab6bSSebastien Roy {
62102b24ab6bSSebastien Roy 	boolean_t exists;
62112b24ab6bSSebastien Roy 
62122b24ab6bSSebastien Roy 	mutex_enter(&zone->zone_lock);
62132b24ab6bSSebastien Roy 	exists = (zone_find_dl(zone, linkid) != NULL);
6214f4b3ec61Sdh155122 	mutex_exit(&zone->zone_lock);
62152b24ab6bSSebastien Roy 	return (exists);
6216f4b3ec61Sdh155122 }
6217f4b3ec61Sdh155122 
6218f4b3ec61Sdh155122 /*
62192b24ab6bSSebastien Roy  * Add an data link name for the zone.
6220f4b3ec61Sdh155122  */
6221f4b3ec61Sdh155122 static int
62222b24ab6bSSebastien Roy zone_add_datalink(zoneid_t zoneid, datalink_id_t linkid)
6223f4b3ec61Sdh155122 {
62242b24ab6bSSebastien Roy 	zone_dl_t *zdl;
6225f4b3ec61Sdh155122 	zone_t *zone;
6226f4b3ec61Sdh155122 	zone_t *thiszone;
6227f4b3ec61Sdh155122 
62282b24ab6bSSebastien Roy 	if ((thiszone = zone_find_by_id(zoneid)) == NULL)
6229f4b3ec61Sdh155122 		return (set_errno(ENXIO));
6230f4b3ec61Sdh155122 
62312b24ab6bSSebastien Roy 	/* Verify that the datalink ID doesn't already belong to a zone. */
6232f4b3ec61Sdh155122 	mutex_enter(&zonehash_lock);
6233f4b3ec61Sdh155122 	for (zone = list_head(&zone_active); zone != NULL;
6234f4b3ec61Sdh155122 	    zone = list_next(&zone_active, zone)) {
62352b24ab6bSSebastien Roy 		if (zone_dl_exists(zone, linkid)) {
6236f4b3ec61Sdh155122 			mutex_exit(&zonehash_lock);
6237f4b3ec61Sdh155122 			zone_rele(thiszone);
62382b24ab6bSSebastien Roy 			return (set_errno((zone == thiszone) ? EEXIST : EPERM));
6239f4b3ec61Sdh155122 		}
6240f4b3ec61Sdh155122 	}
62412b24ab6bSSebastien Roy 
62422b24ab6bSSebastien Roy 	zdl = kmem_zalloc(sizeof (*zdl), KM_SLEEP);
62432b24ab6bSSebastien Roy 	zdl->zdl_id = linkid;
6244f4b3ec61Sdh155122 	mutex_enter(&thiszone->zone_lock);
62452b24ab6bSSebastien Roy 	list_insert_head(&thiszone->zone_dl_list, zdl);
6246f4b3ec61Sdh155122 	mutex_exit(&thiszone->zone_lock);
6247f4b3ec61Sdh155122 	mutex_exit(&zonehash_lock);
6248f4b3ec61Sdh155122 	zone_rele(thiszone);
6249f4b3ec61Sdh155122 	return (0);
6250f4b3ec61Sdh155122 }
6251f4b3ec61Sdh155122 
6252f4b3ec61Sdh155122 static int
62532b24ab6bSSebastien Roy zone_remove_datalink(zoneid_t zoneid, datalink_id_t linkid)
6254f4b3ec61Sdh155122 {
62552b24ab6bSSebastien Roy 	zone_dl_t *zdl;
6256f4b3ec61Sdh155122 	zone_t *zone;
6257f4b3ec61Sdh155122 	int err = 0;
6258f4b3ec61Sdh155122 
62592b24ab6bSSebastien Roy 	if ((zone = zone_find_by_id(zoneid)) == NULL)
62602b24ab6bSSebastien Roy 		return (set_errno(EINVAL));
6261f4b3ec61Sdh155122 
62622b24ab6bSSebastien Roy 	mutex_enter(&zone->zone_lock);
62632b24ab6bSSebastien Roy 	if ((zdl = zone_find_dl(zone, linkid)) == NULL) {
62642b24ab6bSSebastien Roy 		err = ENXIO;
62652b24ab6bSSebastien Roy 	} else {
62662b24ab6bSSebastien Roy 		list_remove(&zone->zone_dl_list, zdl);
62672b24ab6bSSebastien Roy 		kmem_free(zdl, sizeof (zone_dl_t));
62682b24ab6bSSebastien Roy 	}
62692b24ab6bSSebastien Roy 	mutex_exit(&zone->zone_lock);
62702b24ab6bSSebastien Roy 	zone_rele(zone);
62712b24ab6bSSebastien Roy 	return (err == 0 ? 0 : set_errno(err));
62722b24ab6bSSebastien Roy }
6273f4b3ec61Sdh155122 
6274f4b3ec61Sdh155122 /*
62752b24ab6bSSebastien Roy  * Using the zoneidp as ALL_ZONES, we can lookup which zone has been assigned
62762b24ab6bSSebastien Roy  * the linkid.  Otherwise we just check if the specified zoneidp has been
62772b24ab6bSSebastien Roy  * assigned the supplied linkid.
6278f4b3ec61Sdh155122  */
62792b24ab6bSSebastien Roy int
62802b24ab6bSSebastien Roy zone_check_datalink(zoneid_t *zoneidp, datalink_id_t linkid)
62812b24ab6bSSebastien Roy {
62822b24ab6bSSebastien Roy 	zone_t *zone;
62832b24ab6bSSebastien Roy 	int err = ENXIO;
62842b24ab6bSSebastien Roy 
62852b24ab6bSSebastien Roy 	if (*zoneidp != ALL_ZONES) {
62862b24ab6bSSebastien Roy 		if ((zone = zone_find_by_id(*zoneidp)) != NULL) {
62872b24ab6bSSebastien Roy 			if (zone_dl_exists(zone, linkid))
62882b24ab6bSSebastien Roy 				err = 0;
62892b24ab6bSSebastien Roy 			zone_rele(zone);
62902b24ab6bSSebastien Roy 		}
62912b24ab6bSSebastien Roy 		return (err);
62922b24ab6bSSebastien Roy 	}
62932b24ab6bSSebastien Roy 
6294f4b3ec61Sdh155122 	mutex_enter(&zonehash_lock);
6295f4b3ec61Sdh155122 	for (zone = list_head(&zone_active); zone != NULL;
6296f4b3ec61Sdh155122 	    zone = list_next(&zone_active, zone)) {
62972b24ab6bSSebastien Roy 		if (zone_dl_exists(zone, linkid)) {
62982b24ab6bSSebastien Roy 			*zoneidp = zone->zone_id;
62992b24ab6bSSebastien Roy 			err = 0;
63002b24ab6bSSebastien Roy 			break;
6301f4b3ec61Sdh155122 		}
6302f4b3ec61Sdh155122 	}
6303f4b3ec61Sdh155122 	mutex_exit(&zonehash_lock);
63042b24ab6bSSebastien Roy 	return (err);
6305f4b3ec61Sdh155122 }
6306f4b3ec61Sdh155122 
6307f4b3ec61Sdh155122 /*
63082b24ab6bSSebastien Roy  * Get the list of datalink IDs assigned to a zone.
63092b24ab6bSSebastien Roy  *
63102b24ab6bSSebastien Roy  * On input, *nump is the number of datalink IDs that can fit in the supplied
63112b24ab6bSSebastien Roy  * idarray.  Upon return, *nump is either set to the number of datalink IDs
63122b24ab6bSSebastien Roy  * that were placed in the array if the array was large enough, or to the
63132b24ab6bSSebastien Roy  * number of datalink IDs that the function needs to place in the array if the
63142b24ab6bSSebastien Roy  * array is too small.
6315f4b3ec61Sdh155122  */
6316f4b3ec61Sdh155122 static int
63172b24ab6bSSebastien Roy zone_list_datalink(zoneid_t zoneid, int *nump, datalink_id_t *idarray)
6318f4b3ec61Sdh155122 {
63192b24ab6bSSebastien Roy 	uint_t num, dlcount;
6320f4b3ec61Sdh155122 	zone_t *zone;
63212b24ab6bSSebastien Roy 	zone_dl_t *zdl;
63222b24ab6bSSebastien Roy 	datalink_id_t *idptr = idarray;
6323f4b3ec61Sdh155122 
6324f4b3ec61Sdh155122 	if (copyin(nump, &dlcount, sizeof (dlcount)) != 0)
6325f4b3ec61Sdh155122 		return (set_errno(EFAULT));
63262b24ab6bSSebastien Roy 	if ((zone = zone_find_by_id(zoneid)) == NULL)
6327f4b3ec61Sdh155122 		return (set_errno(ENXIO));
6328f4b3ec61Sdh155122 
6329f4b3ec61Sdh155122 	num = 0;
6330f4b3ec61Sdh155122 	mutex_enter(&zone->zone_lock);
63312b24ab6bSSebastien Roy 	for (zdl = list_head(&zone->zone_dl_list); zdl != NULL;
63322b24ab6bSSebastien Roy 	    zdl = list_next(&zone->zone_dl_list, zdl)) {
6333f4b3ec61Sdh155122 		/*
63342b24ab6bSSebastien Roy 		 * If the list is bigger than what the caller supplied, just
63352b24ab6bSSebastien Roy 		 * count, don't do copyout.
6336f4b3ec61Sdh155122 		 */
6337f4b3ec61Sdh155122 		if (++num > dlcount)
6338f4b3ec61Sdh155122 			continue;
63392b24ab6bSSebastien Roy 		if (copyout(&zdl->zdl_id, idptr, sizeof (*idptr)) != 0) {
6340f4b3ec61Sdh155122 			mutex_exit(&zone->zone_lock);
6341f4b3ec61Sdh155122 			zone_rele(zone);
6342f4b3ec61Sdh155122 			return (set_errno(EFAULT));
6343f4b3ec61Sdh155122 		}
63442b24ab6bSSebastien Roy 		idptr++;
6345f4b3ec61Sdh155122 	}
6346f4b3ec61Sdh155122 	mutex_exit(&zone->zone_lock);
6347f4b3ec61Sdh155122 	zone_rele(zone);
6348f4b3ec61Sdh155122 
6349f4b3ec61Sdh155122 	/* Increased or decreased, caller should be notified. */
6350f4b3ec61Sdh155122 	if (num != dlcount) {
63512b24ab6bSSebastien Roy 		if (copyout(&num, nump, sizeof (num)) != 0)
6352f4b3ec61Sdh155122 			return (set_errno(EFAULT));
6353f4b3ec61Sdh155122 	}
6354f4b3ec61Sdh155122 	return (0);
6355f4b3ec61Sdh155122 }
6356f4b3ec61Sdh155122 
6357f4b3ec61Sdh155122 /*
6358f4b3ec61Sdh155122  * Public interface for looking up a zone by zoneid. It's a customized version
6359bd41d0a8Snordmark  * for netstack_zone_create(). It can only be called from the zsd create
6360bd41d0a8Snordmark  * callbacks, since it doesn't have reference on the zone structure hence if
6361bd41d0a8Snordmark  * it is called elsewhere the zone could disappear after the zonehash_lock
6362bd41d0a8Snordmark  * is dropped.
6363bd41d0a8Snordmark  *
6364bd41d0a8Snordmark  * Furthermore it
6365bd41d0a8Snordmark  * 1. Doesn't check the status of the zone.
6366bd41d0a8Snordmark  * 2. It will be called even before zone_init is called, in that case the
6367f4b3ec61Sdh155122  *    address of zone0 is returned directly, and netstack_zone_create()
6368f4b3ec61Sdh155122  *    will only assign a value to zone0.zone_netstack, won't break anything.
6369bd41d0a8Snordmark  * 3. Returns without the zone being held.
6370f4b3ec61Sdh155122  */
6371f4b3ec61Sdh155122 zone_t *
6372f4b3ec61Sdh155122 zone_find_by_id_nolock(zoneid_t zoneid)
6373f4b3ec61Sdh155122 {
6374bd41d0a8Snordmark 	zone_t *zone;
6375f4b3ec61Sdh155122 
6376bd41d0a8Snordmark 	mutex_enter(&zonehash_lock);
6377f4b3ec61Sdh155122 	if (zonehashbyid == NULL)
6378bd41d0a8Snordmark 		zone = &zone0;
6379f4b3ec61Sdh155122 	else
6380bd41d0a8Snordmark 		zone = zone_find_all_by_id(zoneid);
6381bd41d0a8Snordmark 	mutex_exit(&zonehash_lock);
6382bd41d0a8Snordmark 	return (zone);
6383f4b3ec61Sdh155122 }
6384d62bc4baSyz147064 
6385d62bc4baSyz147064 /*
6386d62bc4baSyz147064  * Walk the datalinks for a given zone
6387d62bc4baSyz147064  */
6388d62bc4baSyz147064 int
63892b24ab6bSSebastien Roy zone_datalink_walk(zoneid_t zoneid, int (*cb)(datalink_id_t, void *),
63902b24ab6bSSebastien Roy     void *data)
6391d62bc4baSyz147064 {
6392d62bc4baSyz147064 	zone_t		*zone;
63932b24ab6bSSebastien Roy 	zone_dl_t	*zdl;
63942b24ab6bSSebastien Roy 	datalink_id_t	*idarray;
63952b24ab6bSSebastien Roy 	uint_t		idcount = 0;
63962b24ab6bSSebastien Roy 	int		i, ret = 0;
6397d62bc4baSyz147064 
6398d62bc4baSyz147064 	if ((zone = zone_find_by_id(zoneid)) == NULL)
6399d62bc4baSyz147064 		return (ENOENT);
6400d62bc4baSyz147064 
64012b24ab6bSSebastien Roy 	/*
64022b24ab6bSSebastien Roy 	 * We first build an array of linkid's so that we can walk these and
64032b24ab6bSSebastien Roy 	 * execute the callback with the zone_lock dropped.
64042b24ab6bSSebastien Roy 	 */
6405d62bc4baSyz147064 	mutex_enter(&zone->zone_lock);
64062b24ab6bSSebastien Roy 	for (zdl = list_head(&zone->zone_dl_list); zdl != NULL;
64072b24ab6bSSebastien Roy 	    zdl = list_next(&zone->zone_dl_list, zdl)) {
64082b24ab6bSSebastien Roy 		idcount++;
6409d62bc4baSyz147064 	}
64102b24ab6bSSebastien Roy 
64112b24ab6bSSebastien Roy 	if (idcount == 0) {
6412d62bc4baSyz147064 		mutex_exit(&zone->zone_lock);
6413d62bc4baSyz147064 		zone_rele(zone);
64142b24ab6bSSebastien Roy 		return (0);
64152b24ab6bSSebastien Roy 	}
64162b24ab6bSSebastien Roy 
64172b24ab6bSSebastien Roy 	idarray = kmem_alloc(sizeof (datalink_id_t) * idcount, KM_NOSLEEP);
64182b24ab6bSSebastien Roy 	if (idarray == NULL) {
64192b24ab6bSSebastien Roy 		mutex_exit(&zone->zone_lock);
64202b24ab6bSSebastien Roy 		zone_rele(zone);
64212b24ab6bSSebastien Roy 		return (ENOMEM);
64222b24ab6bSSebastien Roy 	}
64232b24ab6bSSebastien Roy 
64242b24ab6bSSebastien Roy 	for (i = 0, zdl = list_head(&zone->zone_dl_list); zdl != NULL;
64252b24ab6bSSebastien Roy 	    i++, zdl = list_next(&zone->zone_dl_list, zdl)) {
64262b24ab6bSSebastien Roy 		idarray[i] = zdl->zdl_id;
64272b24ab6bSSebastien Roy 	}
64282b24ab6bSSebastien Roy 
64292b24ab6bSSebastien Roy 	mutex_exit(&zone->zone_lock);
64302b24ab6bSSebastien Roy 
64312b24ab6bSSebastien Roy 	for (i = 0; i < idcount && ret == 0; i++) {
64322b24ab6bSSebastien Roy 		if ((ret = (*cb)(idarray[i], data)) != 0)
64332b24ab6bSSebastien Roy 			break;
64342b24ab6bSSebastien Roy 	}
64352b24ab6bSSebastien Roy 
64362b24ab6bSSebastien Roy 	zone_rele(zone);
64372b24ab6bSSebastien Roy 	kmem_free(idarray, sizeof (datalink_id_t) * idcount);
6438d62bc4baSyz147064 	return (ret);
6439d62bc4baSyz147064 }
6440