xref: /illumos-gate/usr/src/cmd/zonecfg/zonecfg.h (revision de860bd9529e1034e1666f74f7bc0ec8cd5ca701)
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 /*
23  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef _ZONECFG_H
28 #define	_ZONECFG_H
29 
30 #pragma ident	"%Z%%M%	%I%	%E% SMI"
31 
32 /*
33  * header file for zonecfg command
34  */
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 #include <unistd.h>
41 
42 #define	FALSE	0
43 #define	TRUE	1
44 
45 typedef int bool;
46 
47 #define	Z_ERR		1
48 #define	Z_USAGE		2
49 #define	Z_REPEAT	3
50 
51 #define	CMD_ADD		0
52 #define	CMD_CANCEL	1
53 #define	CMD_CLEAR	2
54 #define	CMD_COMMIT	3
55 #define	CMD_CREATE	4
56 #define	CMD_DELETE	5
57 #define	CMD_END		6
58 #define	CMD_EXIT	7
59 #define	CMD_EXPORT	8
60 #define	CMD_HELP	9
61 #define	CMD_INFO	10
62 #define	CMD_REMOVE	11
63 #define	CMD_REVERT	12
64 #define	CMD_SELECT	13
65 #define	CMD_SET		14
66 #define	CMD_VERIFY	15
67 
68 #define	CMD_MIN		CMD_ADD
69 #define	CMD_MAX		CMD_VERIFY
70 
71 /* resource types: increment RT_MAX when expanding this list */
72 #define	RT_UNKNOWN	0
73 #define	RT_ZONENAME	1	/* really a property, but for info ... */
74 #define	RT_ZONEPATH	2	/* really a property, but for info ... */
75 #define	RT_AUTOBOOT	3	/* really a property, but for info ... */
76 #define	RT_POOL		4	/* really a property, but for info ... */
77 #define	RT_FS		5
78 #define	RT_IPD		6
79 #define	RT_NET		7
80 #define	RT_DEVICE	8
81 #define	RT_RCTL		9
82 #define	RT_ATTR		10
83 #define	RT_DATASET	11
84 #define	RT_LIMITPRIV	12	/* really a property, but for info ... */
85 #define	RT_BOOTARGS	13	/* really a property, but for info ... */
86 #define	RT_BRAND	14	/* really a property, but for info ... */
87 #define	RT_DCPU		15
88 #define	RT_MCAP		16
89 #define	RT_MAXLWPS	17	/* really a rctl alias property, but for info */
90 #define	RT_MAXSHMMEM	18	/* really a rctl alias property, but for info */
91 #define	RT_MAXSHMIDS	19	/* really a rctl alias property, but for info */
92 #define	RT_MAXMSGIDS	20	/* really a rctl alias property, but for info */
93 #define	RT_MAXSEMIDS	21	/* really a rctl alias property, but for info */
94 #define	RT_SHARES	22	/* really a rctl alias property, but for info */
95 #define	RT_SCHED	23	/* really a property, but for info ... */
96 #define	RT_IPTYPE	24	/* really a property, but for info ... */
97 #define	RT_PCAP		25
98 
99 #define	RT_MIN		RT_UNKNOWN
100 #define	RT_MAX		RT_PCAP
101 
102 /* property types: increment PT_MAX when expanding this list */
103 #define	PT_UNKNOWN	0
104 #define	PT_ZONENAME	1
105 #define	PT_ZONEPATH	2
106 #define	PT_AUTOBOOT	3
107 #define	PT_POOL		4
108 #define	PT_DIR		5
109 #define	PT_SPECIAL	6
110 #define	PT_TYPE		7
111 #define	PT_OPTIONS	8
112 #define	PT_ADDRESS	9
113 #define	PT_PHYSICAL	10
114 #define	PT_NAME		11
115 #define	PT_VALUE	12
116 #define	PT_MATCH	13
117 #define	PT_PRIV		14
118 #define	PT_LIMIT	15
119 #define	PT_ACTION	16
120 #define	PT_RAW		17
121 #define	PT_LIMITPRIV	18
122 #define	PT_BOOTARGS	19
123 #define	PT_BRAND	20
124 #define	PT_NCPUS	21
125 #define	PT_IMPORTANCE	22
126 #define	PT_SWAP		23
127 #define	PT_LOCKED	24
128 #define	PT_SHARES	25
129 #define	PT_MAXLWPS	26
130 #define	PT_MAXSHMMEM	27
131 #define	PT_MAXSHMIDS	28
132 #define	PT_MAXMSGIDS	29
133 #define	PT_MAXSEMIDS	30
134 #define	PT_MAXLOCKEDMEM	31
135 #define	PT_MAXSWAP	32
136 #define	PT_SCHED	33
137 #define	PT_IPTYPE	34
138 #define	PT_DEFROUTER	35
139 
140 #define	PT_MIN		PT_UNKNOWN
141 #define	PT_MAX		PT_DEFROUTER
142 
143 #define	MAX_EQ_PROP_PAIRS	3
144 
145 #define	PROP_VAL_SIMPLE		0
146 #define	PROP_VAL_COMPLEX	1
147 #define	PROP_VAL_LIST		2
148 
149 #define	PROP_VAL_MIN		PROP_VAL_SIMPLE
150 #define	PROP_VAL_MAX		PROP_VAL_LIST
151 
152 /*
153  * If any subcommand is ever modified to take more than three arguments,
154  * this will need to be incremented.
155  */
156 #define	MAX_SUBCMD_ARGS		3
157 
158 typedef struct complex_property {
159 	int	cp_type;	/* from the PT_* list above */
160 	char	*cp_value;
161 	struct complex_property *cp_next;
162 } complex_property_t, *complex_property_ptr_t;
163 
164 typedef struct list_property {
165 	char	*lp_simple;
166 	complex_property_ptr_t	lp_complex;
167 	struct list_property	*lp_next;
168 } list_property_t, *list_property_ptr_t;
169 
170 typedef struct property_value {
171 	int	pv_type;	/* from the PROP_VAL_* list above */
172 	char	*pv_simple;
173 	complex_property_ptr_t	pv_complex;
174 	list_property_ptr_t	pv_list;
175 } property_value_t, *property_value_ptr_t;
176 
177 typedef struct cmd {
178 	char	*cmd_name;
179 	void	(*cmd_handler)(struct cmd *);
180 	int	cmd_res_type;
181 	int	cmd_prop_nv_pairs;
182 	int	cmd_prop_name[MAX_EQ_PROP_PAIRS];
183 	property_value_ptr_t	cmd_property_ptr[MAX_EQ_PROP_PAIRS];
184 	int	cmd_argc;
185 	char	*cmd_argv[MAX_SUBCMD_ARGS + 1];
186 } cmd_t;
187 
188 #define	HELP_USAGE	0x01
189 #define	HELP_SUBCMDS	0x02
190 #define	HELP_SYNTAX	0x04
191 #define	HELP_RESOURCES	0x08
192 #define	HELP_PROPS	0x10
193 #define	HELP_META	0x20
194 #define	HELP_NETADDR	0x40
195 #define	HELP_RES_SCOPE	0x80
196 
197 #define	HELP_RES_PROPS	(HELP_RESOURCES | HELP_PROPS)
198 
199 extern void add_func(cmd_t *);
200 extern void cancel_func(cmd_t *);
201 extern void commit_func(cmd_t *);
202 extern void create_func(cmd_t *);
203 extern void delete_func(cmd_t *);
204 extern void end_func(cmd_t *);
205 extern void exit_func(cmd_t *);
206 extern void export_func(cmd_t *);
207 extern void help_func(cmd_t *);
208 extern void info_func(cmd_t *);
209 extern void remove_func(cmd_t *);
210 extern void revert_func(cmd_t *);
211 extern void select_func(cmd_t *);
212 extern void set_func(cmd_t *);
213 extern void verify_func(cmd_t *);
214 extern void clear_func(cmd_t *);
215 
216 extern cmd_t *alloc_cmd(void);
217 extern complex_property_ptr_t alloc_complex(void);
218 extern list_property_ptr_t alloc_list(void);
219 extern void free_cmd(cmd_t *cmd);
220 extern void free_complex(complex_property_ptr_t complex);
221 extern void free_list(list_property_ptr_t list);
222 extern void free_outer_list(list_property_ptr_t list);
223 
224 extern void usage(bool verbose, uint_t flags);
225 
226 extern FILE *yyin;
227 
228 #ifdef __cplusplus
229 }
230 #endif
231 
232 #endif	/* _ZONECFG_H */
233