xref: /illumos-gate/usr/src/lib/libc/port/sys/zone.c (revision 821c4a97)
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
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #pragma weak getzoneid = _getzoneid
307c478bd9Sstevel@tonic-gate #pragma weak getzoneidbyname = _getzoneidbyname
317c478bd9Sstevel@tonic-gate #pragma weak getzonenamebyid = _getzonenamebyid
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate #include "synonyms.h"
347c478bd9Sstevel@tonic-gate #include <sys/types.h>
357c478bd9Sstevel@tonic-gate #include <sys/syscall.h>
367c478bd9Sstevel@tonic-gate #include <sys/zone.h>
377c478bd9Sstevel@tonic-gate #include <sys/priv.h>
38*821c4a97Sdp #include <priv_private.h>
397c478bd9Sstevel@tonic-gate #include <zone.h>
407c478bd9Sstevel@tonic-gate #include <dlfcn.h>
417c478bd9Sstevel@tonic-gate #include <stdlib.h>
427c478bd9Sstevel@tonic-gate #include <errno.h>
437c478bd9Sstevel@tonic-gate 
44fa9e4066Sahrens extern 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,
47fa9e4066Sahrens     int *extended_error)
487c478bd9Sstevel@tonic-gate {
497c478bd9Sstevel@tonic-gate 	zone_def  zd;
50*821c4a97Sdp 	priv_data_t *d;
51*821c4a97Sdp 
52*821c4a97Sdp 	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;
57*821c4a97Sdp 	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;
637c478bd9Sstevel@tonic-gate 
64fa9e4066Sahrens 	return ((zoneid_t)syscall(SYS_zone, ZONE_CREATE, &zd));
657c478bd9Sstevel@tonic-gate }
667c478bd9Sstevel@tonic-gate 
677c478bd9Sstevel@tonic-gate int
687c478bd9Sstevel@tonic-gate zone_boot(zoneid_t zoneid, const char *bootargs)
697c478bd9Sstevel@tonic-gate {
707c478bd9Sstevel@tonic-gate 	return (syscall(SYS_zone, ZONE_BOOT, zoneid, bootargs));
717c478bd9Sstevel@tonic-gate }
727c478bd9Sstevel@tonic-gate 
737c478bd9Sstevel@tonic-gate int
747c478bd9Sstevel@tonic-gate zone_shutdown(zoneid_t zoneid)
757c478bd9Sstevel@tonic-gate {
767c478bd9Sstevel@tonic-gate 	return (syscall(SYS_zone, ZONE_SHUTDOWN, zoneid));
777c478bd9Sstevel@tonic-gate }
787c478bd9Sstevel@tonic-gate 
797c478bd9Sstevel@tonic-gate int
807c478bd9Sstevel@tonic-gate zone_destroy(zoneid_t zoneid)
817c478bd9Sstevel@tonic-gate {
827c478bd9Sstevel@tonic-gate 	return (syscall(SYS_zone, ZONE_DESTROY, zoneid));
837c478bd9Sstevel@tonic-gate }
847c478bd9Sstevel@tonic-gate 
857c478bd9Sstevel@tonic-gate ssize_t
867c478bd9Sstevel@tonic-gate zone_getattr(zoneid_t zoneid, int attr, void *valp, size_t size)
877c478bd9Sstevel@tonic-gate {
887c478bd9Sstevel@tonic-gate 	sysret_t rval;
897c478bd9Sstevel@tonic-gate 	int error;
907c478bd9Sstevel@tonic-gate 
917c478bd9Sstevel@tonic-gate 	error = __systemcall(&rval, SYS_zone, ZONE_GETATTR, zoneid,
927c478bd9Sstevel@tonic-gate 	    attr, valp, size);
937c478bd9Sstevel@tonic-gate 	if (error)
947c478bd9Sstevel@tonic-gate 		(void) __set_errno(error);
957c478bd9Sstevel@tonic-gate 	return ((ssize_t)rval.sys_rval1);
967c478bd9Sstevel@tonic-gate }
977c478bd9Sstevel@tonic-gate 
987c478bd9Sstevel@tonic-gate int
997c478bd9Sstevel@tonic-gate zone_enter(zoneid_t zoneid)
1007c478bd9Sstevel@tonic-gate {
1017c478bd9Sstevel@tonic-gate 	return (syscall(SYS_zone, ZONE_ENTER, zoneid));
1027c478bd9Sstevel@tonic-gate }
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate /*
1057c478bd9Sstevel@tonic-gate  * Get id (if any) for specified zone.
1067c478bd9Sstevel@tonic-gate  *
1077c478bd9Sstevel@tonic-gate  * Call the real zone_get_id() in libzonecfg.so.1 if it can be found.
1087c478bd9Sstevel@tonic-gate  * Otherwise, perform a stripped-down version of the function.
1097c478bd9Sstevel@tonic-gate  * Any changes in one version should probably be reflected in the other.
1107c478bd9Sstevel@tonic-gate  *
1117c478bd9Sstevel@tonic-gate  * This stripped-down version of the function only checks for active
1127c478bd9Sstevel@tonic-gate  * (booted) zones, by numeric id or name.
1137c478bd9Sstevel@tonic-gate  */
1147c478bd9Sstevel@tonic-gate 
1157c478bd9Sstevel@tonic-gate typedef	int (*zone_get_id_t)(const char *, zoneid_t *);
1167c478bd9Sstevel@tonic-gate static zone_get_id_t real_zone_get_id = NULL;
1177c478bd9Sstevel@tonic-gate 
1187c478bd9Sstevel@tonic-gate int
1197c478bd9Sstevel@tonic-gate zone_get_id(const char *str, zoneid_t *zip)
1207c478bd9Sstevel@tonic-gate {
1217c478bd9Sstevel@tonic-gate 	zoneid_t zoneid;
1227c478bd9Sstevel@tonic-gate 	char *cp;
1237c478bd9Sstevel@tonic-gate 
1247c478bd9Sstevel@tonic-gate 	/*
1257c478bd9Sstevel@tonic-gate 	 * The first time we are called, attempt to dlopen() libzonecfg.so.1
1267c478bd9Sstevel@tonic-gate 	 * and get a pointer to the real zone_get_id().
1277c478bd9Sstevel@tonic-gate 	 * If we fail, set our pointer to -1 so we won't try again.
1287c478bd9Sstevel@tonic-gate 	 */
1297c478bd9Sstevel@tonic-gate 	if (real_zone_get_id == NULL) {
1307c478bd9Sstevel@tonic-gate 		/*
1317c478bd9Sstevel@tonic-gate 		 * There's no harm in doing this more than once, even
1327c478bd9Sstevel@tonic-gate 		 * concurrently.  We will get the same result each time,
1337c478bd9Sstevel@tonic-gate 		 * and the dynamic linker will single-thread the dlopen()
1347c478bd9Sstevel@tonic-gate 		 * with its own internal lock.  The worst that can happen
1357c478bd9Sstevel@tonic-gate 		 * is that the handle gets a reference count greater than
1367c478bd9Sstevel@tonic-gate 		 * one, which doesn't matter since we never dlclose()
1377c478bd9Sstevel@tonic-gate 		 * the handle if we successfully find the symbol; the
1387c478bd9Sstevel@tonic-gate 		 * library just stays in the address space until exit().
1397c478bd9Sstevel@tonic-gate 		 */
1407c478bd9Sstevel@tonic-gate 		void *dlhandle = dlopen("libzonecfg.so.1", RTLD_LAZY);
1417c478bd9Sstevel@tonic-gate 		void *sym = (void *)(-1);
1427c478bd9Sstevel@tonic-gate 
1437c478bd9Sstevel@tonic-gate 		if (dlhandle != NULL &&
1447c478bd9Sstevel@tonic-gate 		    (sym = dlsym(dlhandle, "zone_get_id")) == NULL) {
1457c478bd9Sstevel@tonic-gate 			sym = (void *)(-1);
1467c478bd9Sstevel@tonic-gate 			(void) dlclose(dlhandle);
1477c478bd9Sstevel@tonic-gate 		}
1487c478bd9Sstevel@tonic-gate 		real_zone_get_id = (zone_get_id_t)sym;
1497c478bd9Sstevel@tonic-gate 	}
1507c478bd9Sstevel@tonic-gate 
1517c478bd9Sstevel@tonic-gate 	/*
1527c478bd9Sstevel@tonic-gate 	 * If we've successfully loaded it, call the real zone_get_id().
1537c478bd9Sstevel@tonic-gate 	 * Otherwise, perform our stripped-down version of the code.
1547c478bd9Sstevel@tonic-gate 	 */
1557c478bd9Sstevel@tonic-gate 	if (real_zone_get_id != (zone_get_id_t)(-1))
1567c478bd9Sstevel@tonic-gate 		return (real_zone_get_id(str, zip));
1577c478bd9Sstevel@tonic-gate 
1587c478bd9Sstevel@tonic-gate 	/* first try looking for active zone by id */
1597c478bd9Sstevel@tonic-gate 	errno = 0;
1607c478bd9Sstevel@tonic-gate 	zoneid = (zoneid_t)strtol(str, &cp, 0);
1617c478bd9Sstevel@tonic-gate 	if (errno == 0 && cp != str && *cp == '\0' &&
1627c478bd9Sstevel@tonic-gate 	    getzonenamebyid(zoneid, NULL, 0) != -1) {
1637c478bd9Sstevel@tonic-gate 		*zip = zoneid;
1647c478bd9Sstevel@tonic-gate 		return (0);
1657c478bd9Sstevel@tonic-gate 	}
1667c478bd9Sstevel@tonic-gate 
1677c478bd9Sstevel@tonic-gate 	/* then look for active zone by name */
1687c478bd9Sstevel@tonic-gate 	if ((zoneid = getzoneidbyname(str)) != -1) {
1697c478bd9Sstevel@tonic-gate 		*zip = zoneid;
1707c478bd9Sstevel@tonic-gate 		return (0);
1717c478bd9Sstevel@tonic-gate 	}
1727c478bd9Sstevel@tonic-gate 
1737c478bd9Sstevel@tonic-gate 	/* not an active zone, return error */
1747c478bd9Sstevel@tonic-gate 	return (-1);
1757c478bd9Sstevel@tonic-gate }
1767c478bd9Sstevel@tonic-gate 
1777c478bd9Sstevel@tonic-gate int
1787c478bd9Sstevel@tonic-gate zone_list(zoneid_t *zonelist, uint_t *numzones)
1797c478bd9Sstevel@tonic-gate {
1807c478bd9Sstevel@tonic-gate 	return (syscall(SYS_zone, ZONE_LIST, zonelist, numzones));
1817c478bd9Sstevel@tonic-gate }
1827c478bd9Sstevel@tonic-gate 
1837c478bd9Sstevel@tonic-gate /*
1847c478bd9Sstevel@tonic-gate  * Underlying implementation for getzoneid and getzoneidbyname.
1857c478bd9Sstevel@tonic-gate  */
1867c478bd9Sstevel@tonic-gate static zoneid_t
1877c478bd9Sstevel@tonic-gate zone_lookup(const char *name)
1887c478bd9Sstevel@tonic-gate {
1897c478bd9Sstevel@tonic-gate 	return ((zoneid_t)syscall(SYS_zone, ZONE_LOOKUP, name));
1907c478bd9Sstevel@tonic-gate }
1917c478bd9Sstevel@tonic-gate 
1927c478bd9Sstevel@tonic-gate zoneid_t
1937c478bd9Sstevel@tonic-gate getzoneid(void)
1947c478bd9Sstevel@tonic-gate {
1957c478bd9Sstevel@tonic-gate 	return (zone_lookup(NULL));
1967c478bd9Sstevel@tonic-gate }
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate zoneid_t
1997c478bd9Sstevel@tonic-gate getzoneidbyname(const char *zonename)
2007c478bd9Sstevel@tonic-gate {
2017c478bd9Sstevel@tonic-gate 	return (zone_lookup(zonename));
2027c478bd9Sstevel@tonic-gate }
2037c478bd9Sstevel@tonic-gate 
2047c478bd9Sstevel@tonic-gate ssize_t
2057c478bd9Sstevel@tonic-gate getzonenamebyid(zoneid_t zoneid, char *buf, size_t buflen)
2067c478bd9Sstevel@tonic-gate {
2077c478bd9Sstevel@tonic-gate 	return (zone_getattr(zoneid, ZONE_ATTR_NAME, buf, buflen));
2087c478bd9Sstevel@tonic-gate }
209*821c4a97Sdp 
210*821c4a97Sdp int
211*821c4a97Sdp zone_version(int *version)
212*821c4a97Sdp {
213*821c4a97Sdp 	return (syscall(SYS_zone, ZONE_VERSION, version));
214*821c4a97Sdp }
215