1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
22 * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23 * Use is subject to license terms.
24 */
25
26#ifndef _ZONE_H
27#define	_ZONE_H
28
29#include <sys/types.h>
30#include <sys/zone.h>
31#include <sys/priv.h>
32#include <tsol/label.h>
33
34#ifdef	__cplusplus
35extern "C" {
36#endif
37
38/*
39 * Functions for mapping between id and name for active zones.
40 */
41extern zoneid_t		getzoneid(void);
42extern zoneid_t		getzoneidbyname(const char *);
43extern ssize_t		getzonenamebyid(zoneid_t, char *, size_t);
44
45/*
46 * NOTE
47 *
48 * The remaining contents of this file are private to the implementation
49 * of Solaris and are subject to change at any time without notice,
50 * Applications using these interfaces may fail to run on future releases.
51 */
52
53extern int zonept(int, zoneid_t);
54extern int zone_get_id(const char *, zoneid_t *);
55
56/* System call API */
57extern zoneid_t	zone_create(const char *, const char *,
58    const struct priv_set *, const char *, size_t, const char *, size_t, int *,
59    int, int, const bslabel_t *, int);
60extern int	zone_boot(zoneid_t);
61extern int	zone_destroy(zoneid_t);
62extern ssize_t	zone_getattr(zoneid_t, int, void *, size_t);
63extern int	zone_setattr(zoneid_t, int, void *, size_t);
64extern int	zone_enter(zoneid_t);
65extern int	zone_list(zoneid_t *, uint_t *);
66extern int	zone_shutdown(zoneid_t);
67extern int	zone_version(int *);
68extern int	zone_add_datalink(zoneid_t, datalink_id_t);
69extern int	zone_remove_datalink(zoneid_t, datalink_id_t);
70extern int	zone_check_datalink(zoneid_t *, datalink_id_t);
71extern int	zone_list_datalink(zoneid_t, int *, datalink_id_t *);
72
73#ifdef	__cplusplus
74}
75#endif
76
77#endif /* _ZONE_H */
78