xref: /illumos-gate/usr/src/lib/libc/port/sys/zone.c (revision 3f2f09c1efd66f6d2995998ea72c5df8c70c9a97)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
545916cd2Sjpk  * Common Development and Distribution License (the "License").
645916cd2Sjpk  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
2245916cd2Sjpk  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate #pragma weak getzoneid = _getzoneid
297c478bd9Sstevel@tonic-gate #pragma weak getzoneidbyname = _getzoneidbyname
307c478bd9Sstevel@tonic-gate #pragma weak getzonenamebyid = _getzonenamebyid
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate #include "synonyms.h"
337c478bd9Sstevel@tonic-gate #include <sys/types.h>
347c478bd9Sstevel@tonic-gate #include <sys/syscall.h>
357c478bd9Sstevel@tonic-gate #include <sys/zone.h>
367c478bd9Sstevel@tonic-gate #include <sys/priv.h>
37821c4a97Sdp #include <priv_private.h>
387c478bd9Sstevel@tonic-gate #include <zone.h>
3945916cd2Sjpk #include <sys/tsol/label.h>
407c478bd9Sstevel@tonic-gate #include <dlfcn.h>
417c478bd9Sstevel@tonic-gate #include <stdlib.h>
427c478bd9Sstevel@tonic-gate #include <errno.h>
437c478bd9Sstevel@tonic-gate 
4445916cd2Sjpk zoneid_t
45fa9e4066Sahrens zone_create(const char *name, const char *root, const struct priv_set *privs,
46fa9e4066Sahrens     const char *rctls, size_t rctlsz, const char *zfs, size_t zfssz,
4745916cd2Sjpk     int *extended_error, int match, int doi, const bslabel_t *label)
487c478bd9Sstevel@tonic-gate {
497c478bd9Sstevel@tonic-gate 	zone_def  zd;
50821c4a97Sdp 	priv_data_t *d;
51821c4a97Sdp 
52821c4a97Sdp 	LOADPRIVDATA(d);
537c478bd9Sstevel@tonic-gate 
547c478bd9Sstevel@tonic-gate 	zd.zone_name = name;
557c478bd9Sstevel@tonic-gate 	zd.zone_root = root;
567c478bd9Sstevel@tonic-gate 	zd.zone_privs = privs;
57821c4a97Sdp 	zd.zone_privssz = d->pd_setsize;
587c478bd9Sstevel@tonic-gate 	zd.rctlbuf = rctls;
597c478bd9Sstevel@tonic-gate 	zd.rctlbufsz = rctlsz;
60fa9e4066Sahrens 	zd.zfsbuf = zfs;
61fa9e4066Sahrens 	zd.zfsbufsz = zfssz;
627c478bd9Sstevel@tonic-gate 	zd.extended_error = extended_error;
6345916cd2Sjpk 	zd.match = match;
6445916cd2Sjpk 	zd.doi = doi;
6545916cd2Sjpk 	zd.label = label;
667c478bd9Sstevel@tonic-gate 
67fa9e4066Sahrens 	return ((zoneid_t)syscall(SYS_zone, ZONE_CREATE, &zd));
687c478bd9Sstevel@tonic-gate }
697c478bd9Sstevel@tonic-gate 
707c478bd9Sstevel@tonic-gate int
71*3f2f09c1Sdp zone_boot(zoneid_t zoneid)
727c478bd9Sstevel@tonic-gate {
73*3f2f09c1Sdp 	return (syscall(SYS_zone, ZONE_BOOT, zoneid));
747c478bd9Sstevel@tonic-gate }
757c478bd9Sstevel@tonic-gate 
767c478bd9Sstevel@tonic-gate int
777c478bd9Sstevel@tonic-gate zone_shutdown(zoneid_t zoneid)
787c478bd9Sstevel@tonic-gate {
797c478bd9Sstevel@tonic-gate 	return (syscall(SYS_zone, ZONE_SHUTDOWN, zoneid));
807c478bd9Sstevel@tonic-gate }
817c478bd9Sstevel@tonic-gate 
827c478bd9Sstevel@tonic-gate int
837c478bd9Sstevel@tonic-gate zone_destroy(zoneid_t zoneid)
847c478bd9Sstevel@tonic-gate {
857c478bd9Sstevel@tonic-gate 	return (syscall(SYS_zone, ZONE_DESTROY, zoneid));
867c478bd9Sstevel@tonic-gate }
877c478bd9Sstevel@tonic-gate 
887c478bd9Sstevel@tonic-gate ssize_t
897c478bd9Sstevel@tonic-gate zone_getattr(zoneid_t zoneid, int attr, void *valp, size_t size)
907c478bd9Sstevel@tonic-gate {
917c478bd9Sstevel@tonic-gate 	sysret_t rval;
927c478bd9Sstevel@tonic-gate 	int error;
937c478bd9Sstevel@tonic-gate 
947c478bd9Sstevel@tonic-gate 	error = __systemcall(&rval, SYS_zone, ZONE_GETATTR, zoneid,
957c478bd9Sstevel@tonic-gate 	    attr, valp, size);
967c478bd9Sstevel@tonic-gate 	if (error)
977c478bd9Sstevel@tonic-gate 		(void) __set_errno(error);
987c478bd9Sstevel@tonic-gate 	return ((ssize_t)rval.sys_rval1);
997c478bd9Sstevel@tonic-gate }
1007c478bd9Sstevel@tonic-gate 
101*3f2f09c1Sdp int
102*3f2f09c1Sdp zone_setattr(zoneid_t zoneid, int attr, void *valp, size_t size)
103*3f2f09c1Sdp {
104*3f2f09c1Sdp 	return (syscall(SYS_zone, ZONE_SETATTR, zoneid, attr, valp, size));
105*3f2f09c1Sdp }
106*3f2f09c1Sdp 
1077c478bd9Sstevel@tonic-gate int
1087c478bd9Sstevel@tonic-gate zone_enter(zoneid_t zoneid)
1097c478bd9Sstevel@tonic-gate {
1107c478bd9Sstevel@tonic-gate 	return (syscall(SYS_zone, ZONE_ENTER, zoneid));
1117c478bd9Sstevel@tonic-gate }
1127c478bd9Sstevel@tonic-gate 
1137c478bd9Sstevel@tonic-gate /*
1147c478bd9Sstevel@tonic-gate  * Get id (if any) for specified zone.
1157c478bd9Sstevel@tonic-gate  *
1167c478bd9Sstevel@tonic-gate  * Call the real zone_get_id() in libzonecfg.so.1 if it can be found.
1177c478bd9Sstevel@tonic-gate  * Otherwise, perform a stripped-down version of the function.
1187c478bd9Sstevel@tonic-gate  * Any changes in one version should probably be reflected in the other.
1197c478bd9Sstevel@tonic-gate  *
1207c478bd9Sstevel@tonic-gate  * This stripped-down version of the function only checks for active
1217c478bd9Sstevel@tonic-gate  * (booted) zones, by numeric id or name.
1227c478bd9Sstevel@tonic-gate  */
1237c478bd9Sstevel@tonic-gate 
1247c478bd9Sstevel@tonic-gate typedef	int (*zone_get_id_t)(const char *, zoneid_t *);
1257c478bd9Sstevel@tonic-gate static zone_get_id_t real_zone_get_id = NULL;
1267c478bd9Sstevel@tonic-gate 
1277c478bd9Sstevel@tonic-gate int
1287c478bd9Sstevel@tonic-gate zone_get_id(const char *str, zoneid_t *zip)
1297c478bd9Sstevel@tonic-gate {
1307c478bd9Sstevel@tonic-gate 	zoneid_t zoneid;
1317c478bd9Sstevel@tonic-gate 	char *cp;
1327c478bd9Sstevel@tonic-gate 
1337c478bd9Sstevel@tonic-gate 	/*
1347c478bd9Sstevel@tonic-gate 	 * The first time we are called, attempt to dlopen() libzonecfg.so.1
1357c478bd9Sstevel@tonic-gate 	 * and get a pointer to the real zone_get_id().
1367c478bd9Sstevel@tonic-gate 	 * If we fail, set our pointer to -1 so we won't try again.
1377c478bd9Sstevel@tonic-gate 	 */
1387c478bd9Sstevel@tonic-gate 	if (real_zone_get_id == NULL) {
1397c478bd9Sstevel@tonic-gate 		/*
1407c478bd9Sstevel@tonic-gate 		 * There's no harm in doing this more than once, even
1417c478bd9Sstevel@tonic-gate 		 * concurrently.  We will get the same result each time,
1427c478bd9Sstevel@tonic-gate 		 * and the dynamic linker will single-thread the dlopen()
1437c478bd9Sstevel@tonic-gate 		 * with its own internal lock.  The worst that can happen
1447c478bd9Sstevel@tonic-gate 		 * is that the handle gets a reference count greater than
1457c478bd9Sstevel@tonic-gate 		 * one, which doesn't matter since we never dlclose()
1467c478bd9Sstevel@tonic-gate 		 * the handle if we successfully find the symbol; the
1477c478bd9Sstevel@tonic-gate 		 * library just stays in the address space until exit().
1487c478bd9Sstevel@tonic-gate 		 */
1497c478bd9Sstevel@tonic-gate 		void *dlhandle = dlopen("libzonecfg.so.1", RTLD_LAZY);
1507c478bd9Sstevel@tonic-gate 		void *sym = (void *)(-1);
1517c478bd9Sstevel@tonic-gate 
1527c478bd9Sstevel@tonic-gate 		if (dlhandle != NULL &&
1537c478bd9Sstevel@tonic-gate 		    (sym = dlsym(dlhandle, "zone_get_id")) == NULL) {
1547c478bd9Sstevel@tonic-gate 			sym = (void *)(-1);
1557c478bd9Sstevel@tonic-gate 			(void) dlclose(dlhandle);
1567c478bd9Sstevel@tonic-gate 		}
1577c478bd9Sstevel@tonic-gate 		real_zone_get_id = (zone_get_id_t)sym;
1587c478bd9Sstevel@tonic-gate 	}
1597c478bd9Sstevel@tonic-gate 
1607c478bd9Sstevel@tonic-gate 	/*
1617c478bd9Sstevel@tonic-gate 	 * If we've successfully loaded it, call the real zone_get_id().
1627c478bd9Sstevel@tonic-gate 	 * Otherwise, perform our stripped-down version of the code.
1637c478bd9Sstevel@tonic-gate 	 */
1647c478bd9Sstevel@tonic-gate 	if (real_zone_get_id != (zone_get_id_t)(-1))
1657c478bd9Sstevel@tonic-gate 		return (real_zone_get_id(str, zip));
1667c478bd9Sstevel@tonic-gate 
1677c478bd9Sstevel@tonic-gate 	/* first try looking for active zone by id */
1687c478bd9Sstevel@tonic-gate 	errno = 0;
1697c478bd9Sstevel@tonic-gate 	zoneid = (zoneid_t)strtol(str, &cp, 0);
1707c478bd9Sstevel@tonic-gate 	if (errno == 0 && cp != str && *cp == '\0' &&
1717c478bd9Sstevel@tonic-gate 	    getzonenamebyid(zoneid, NULL, 0) != -1) {
1727c478bd9Sstevel@tonic-gate 		*zip = zoneid;
1737c478bd9Sstevel@tonic-gate 		return (0);
1747c478bd9Sstevel@tonic-gate 	}
1757c478bd9Sstevel@tonic-gate 
1767c478bd9Sstevel@tonic-gate 	/* then look for active zone by name */
1777c478bd9Sstevel@tonic-gate 	if ((zoneid = getzoneidbyname(str)) != -1) {
1787c478bd9Sstevel@tonic-gate 		*zip = zoneid;
1797c478bd9Sstevel@tonic-gate 		return (0);
1807c478bd9Sstevel@tonic-gate 	}
1817c478bd9Sstevel@tonic-gate 
1827c478bd9Sstevel@tonic-gate 	/* not an active zone, return error */
1837c478bd9Sstevel@tonic-gate 	return (-1);
1847c478bd9Sstevel@tonic-gate }
1857c478bd9Sstevel@tonic-gate 
1867c478bd9Sstevel@tonic-gate int
1877c478bd9Sstevel@tonic-gate zone_list(zoneid_t *zonelist, uint_t *numzones)
1887c478bd9Sstevel@tonic-gate {
1897c478bd9Sstevel@tonic-gate 	return (syscall(SYS_zone, ZONE_LIST, zonelist, numzones));
1907c478bd9Sstevel@tonic-gate }
1917c478bd9Sstevel@tonic-gate 
1927c478bd9Sstevel@tonic-gate /*
1937c478bd9Sstevel@tonic-gate  * Underlying implementation for getzoneid and getzoneidbyname.
1947c478bd9Sstevel@tonic-gate  */
1957c478bd9Sstevel@tonic-gate static zoneid_t
1967c478bd9Sstevel@tonic-gate zone_lookup(const char *name)
1977c478bd9Sstevel@tonic-gate {
1987c478bd9Sstevel@tonic-gate 	return ((zoneid_t)syscall(SYS_zone, ZONE_LOOKUP, name));
1997c478bd9Sstevel@tonic-gate }
2007c478bd9Sstevel@tonic-gate 
2017c478bd9Sstevel@tonic-gate zoneid_t
2027c478bd9Sstevel@tonic-gate getzoneid(void)
2037c478bd9Sstevel@tonic-gate {
2047c478bd9Sstevel@tonic-gate 	return (zone_lookup(NULL));
2057c478bd9Sstevel@tonic-gate }
2067c478bd9Sstevel@tonic-gate 
2077c478bd9Sstevel@tonic-gate zoneid_t
2087c478bd9Sstevel@tonic-gate getzoneidbyname(const char *zonename)
2097c478bd9Sstevel@tonic-gate {
2107c478bd9Sstevel@tonic-gate 	return (zone_lookup(zonename));
2117c478bd9Sstevel@tonic-gate }
2127c478bd9Sstevel@tonic-gate 
2137c478bd9Sstevel@tonic-gate ssize_t
2147c478bd9Sstevel@tonic-gate getzonenamebyid(zoneid_t zoneid, char *buf, size_t buflen)
2157c478bd9Sstevel@tonic-gate {
2167c478bd9Sstevel@tonic-gate 	return (zone_getattr(zoneid, ZONE_ATTR_NAME, buf, buflen));
2177c478bd9Sstevel@tonic-gate }
218821c4a97Sdp 
219821c4a97Sdp int
220821c4a97Sdp zone_version(int *version)
221821c4a97Sdp {
222821c4a97Sdp 	return (syscall(SYS_zone, ZONE_VERSION, version));
223821c4a97Sdp }
224