xref: /illumos-gate/usr/src/lib/libdladm/common/libdladm.h (revision ccd81fdda071e031209c777983199d191c35b0a2)
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 (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  */
24 
25 #ifndef _LIBDLADM_H
26 #define	_LIBDLADM_H
27 
28 #include <sys/dls_mgmt.h>
29 #include <sys/dld.h>
30 #include <sys/dlpi.h>
31 
32 /*
33  * This file includes structures, macros and common routines shared by all
34  * data-link administration, and routines which do not directly administrate
35  * links. For example, dladm_status2str().
36  */
37 
38 #ifdef	__cplusplus
39 extern "C" {
40 #endif
41 
42 #define	LINKID_STR_WIDTH	10
43 #define	DLADM_STRSIZE		256
44 
45 /*
46  * option flags taken by the libdladm functions
47  *
48  *  - DLADM_OPT_ACTIVE:
49  *    The function requests to bringup some configuration that only take
50  *    effect on active system (not persistent).
51  *
52  *  - DLADM_OPT_PERSIST:
53  *    The function requests to persist some configuration.
54  *
55  *  - DLADM_OPT_CREATE:
56  *    Today, only used by dladm_set_secobj() - requests to create a secobj.
57  *
58  *  - DLADM_OPT_FORCE:
59  *    The function requests to execute a specific operation forcefully.
60  *
61  *  - DLADM_OPT_PREFIX:
62  *    The function requests to generate a link name using the specified prefix.
63  *
64  *  - DLADM_OPT_VLAN:
65  *    Signifies VLAN creation code path
66  *
67  *  - DLADM_OPT_NOREFRESH:
68  *    Do not refresh the daemon after setting parameter (used by STP mcheck).
69  *
70  *  - DLADM_OPT_BOOT:
71  *    Bypass check functions during boot (used by pool property since pools
72  *    can come up after link properties are set)
73  */
74 #define	DLADM_OPT_ACTIVE	0x00000001
75 #define	DLADM_OPT_PERSIST	0x00000002
76 #define	DLADM_OPT_CREATE	0x00000004
77 #define	DLADM_OPT_FORCE		0x00000008
78 #define	DLADM_OPT_PREFIX	0x00000010
79 #define	DLADM_OPT_ANCHOR	0x00000020
80 #define	DLADM_OPT_VLAN		0x00000040
81 #define	DLADM_OPT_NOREFRESH	0x00000080
82 #define	DLADM_OPT_BOOT		0x00000100
83 
84 #define	DLADM_WALK_TERMINATE	0
85 #define	DLADM_WALK_CONTINUE	-1
86 
87 #define	DLADM_MAX_ARG_CNT	32
88 #define	DLADM_MAX_ARG_VALS	64
89 
90 typedef enum {
91 	DLADM_STATUS_OK = 0,
92 	DLADM_STATUS_BADARG,
93 	DLADM_STATUS_FAILED,
94 	DLADM_STATUS_TOOSMALL,
95 	DLADM_STATUS_NOTSUP,
96 	DLADM_STATUS_NOTFOUND,
97 	DLADM_STATUS_BADVAL,
98 	DLADM_STATUS_NOMEM,
99 	DLADM_STATUS_EXIST,
100 	DLADM_STATUS_LINKINVAL,
101 	DLADM_STATUS_PROPRDONLY,
102 	DLADM_STATUS_BADVALCNT,
103 	DLADM_STATUS_DBNOTFOUND,
104 	DLADM_STATUS_DENIED,
105 	DLADM_STATUS_IOERR,
106 	DLADM_STATUS_TEMPONLY,
107 	DLADM_STATUS_TIMEDOUT,
108 	DLADM_STATUS_ISCONN,
109 	DLADM_STATUS_NOTCONN,
110 	DLADM_STATUS_REPOSITORYINVAL,
111 	DLADM_STATUS_MACADDRINVAL,
112 	DLADM_STATUS_KEYINVAL,
113 	DLADM_STATUS_INVALIDMACADDRLEN,
114 	DLADM_STATUS_INVALIDMACADDRTYPE,
115 	DLADM_STATUS_LINKBUSY,
116 	DLADM_STATUS_VIDINVAL,
117 	DLADM_STATUS_NONOTIF,
118 	DLADM_STATUS_TRYAGAIN,
119 	DLADM_STATUS_IPTUNTYPE,
120 	DLADM_STATUS_IPTUNTYPEREQD,
121 	DLADM_STATUS_BADIPTUNLADDR,
122 	DLADM_STATUS_BADIPTUNRADDR,
123 	DLADM_STATUS_ADDRINUSE,
124 	DLADM_STATUS_BADTIMEVAL,
125 	DLADM_STATUS_INVALIDMACADDR,
126 	DLADM_STATUS_INVALIDMACADDRNIC,
127 	DLADM_STATUS_INVALIDMACADDRINUSE,
128 	DLADM_STATUS_MACFACTORYSLOTINVALID,
129 	DLADM_STATUS_MACFACTORYSLOTUSED,
130 	DLADM_STATUS_MACFACTORYSLOTALLUSED,
131 	DLADM_STATUS_MACFACTORYNOTSUP,
132 	DLADM_STATUS_INVALIDMACPREFIX,
133 	DLADM_STATUS_INVALIDMACPREFIXLEN,
134 	DLADM_STATUS_CPUMAX,
135 	DLADM_STATUS_CPUERR,
136 	DLADM_STATUS_CPUNOTONLINE,
137 	DLADM_STATUS_DB_NOTFOUND,
138 	DLADM_STATUS_DB_PARSE_ERR,
139 	DLADM_STATUS_PROP_PARSE_ERR,
140 	DLADM_STATUS_ATTR_PARSE_ERR,
141 	DLADM_STATUS_FLOW_DB_ERR,
142 	DLADM_STATUS_FLOW_DB_OPEN_ERR,
143 	DLADM_STATUS_FLOW_DB_PARSE_ERR,
144 	DLADM_STATUS_FLOWPROP_DB_PARSE_ERR,
145 	DLADM_STATUS_FLOW_ADD_ERR,
146 	DLADM_STATUS_FLOW_WALK_ERR,
147 	DLADM_STATUS_FLOW_IDENTICAL,
148 	DLADM_STATUS_FLOW_INCOMPATIBLE,
149 	DLADM_STATUS_FLOW_EXISTS,
150 	DLADM_STATUS_PERSIST_FLOW_EXISTS,
151 	DLADM_STATUS_INVALID_IP,
152 	DLADM_STATUS_INVALID_PREFIXLEN,
153 	DLADM_STATUS_INVALID_PROTOCOL,
154 	DLADM_STATUS_INVALID_PORT,
155 	DLADM_STATUS_INVALID_DSF,
156 	DLADM_STATUS_INVALID_DSFMASK,
157 	DLADM_STATUS_INVALID_MACMARGIN,
158 	DLADM_STATUS_NOTDEFINED,
159 	DLADM_STATUS_BADPROP,
160 	DLADM_STATUS_MINMAXBW,
161 	DLADM_STATUS_NO_HWRINGS,
162 	DLADM_STATUS_PERMONLY,
163 	DLADM_STATUS_OPTMISSING,
164 	DLADM_STATUS_POOLCPU,
165 	DLADM_STATUS_INVALID_PORT_INSTANCE,
166 	DLADM_STATUS_PORT_IS_DOWN,
167 	DLADM_STATUS_PKEY_NOT_PRESENT,
168 	DLADM_STATUS_PARTITION_EXISTS,
169 	DLADM_STATUS_INVALID_PKEY,
170 	DLADM_STATUS_NO_IB_HW_RESOURCE,
171 	DLADM_STATUS_INVALID_PKEY_TBL_SIZE,
172 	DLADM_STATUS_PORT_NOPROTO
173 } dladm_status_t;
174 
175 typedef enum {
176 	DLADM_TYPE_STR,
177 	DLADM_TYPE_BOOLEAN,
178 	DLADM_TYPE_UINT64
179 } dladm_datatype_t;
180 
181 typedef int dladm_conf_t;
182 #define	DLADM_INVALID_CONF	0
183 
184 /* opaque dladm handle to libdladm functions */
185 struct dladm_handle;
186 typedef struct dladm_handle *dladm_handle_t;
187 
188 /* open/close handle */
189 extern dladm_status_t	dladm_open(dladm_handle_t *);
190 extern void		dladm_close(dladm_handle_t);
191 
192 /*
193  * retrieve the dld file descriptor from handle, only libdladm and
194  * dlmgmtd are given access to the door file descriptor.
195  */
196 extern int	dladm_dld_fd(dladm_handle_t);
197 
198 typedef struct dladm_arg_info {
199 	const char	*ai_name;
200 	char		*ai_val[DLADM_MAX_ARG_VALS];
201 	uint_t		ai_count;
202 } dladm_arg_info_t;
203 
204 typedef struct dladm_arg_list {
205 	dladm_arg_info_t	al_info[DLADM_MAX_ARG_CNT];
206 	uint_t			al_count;
207 	char			*al_buf;
208 } dladm_arg_list_t;
209 
210 typedef enum {
211 	DLADM_LOGTYPE_LINK = 1,
212 	DLADM_LOGTYPE_FLOW
213 } dladm_logtype_t;
214 
215 typedef struct dladm_usage {
216 	char		du_name[MAXLINKNAMELEN];
217 	uint64_t	du_duration;
218 	uint64_t	du_stime;
219 	uint64_t	du_etime;
220 	uint64_t	du_ipackets;
221 	uint64_t	du_rbytes;
222 	uint64_t	du_opackets;
223 	uint64_t	du_obytes;
224 	uint64_t	du_bandwidth;
225 	boolean_t	du_last;
226 } dladm_usage_t;
227 
228 extern const char	*dladm_status2str(dladm_status_t, char *);
229 extern dladm_status_t	dladm_set_rootdir(const char *);
230 extern const char	*dladm_class2str(datalink_class_t, char *);
231 extern const char	*dladm_media2str(uint32_t, char *);
232 extern uint32_t		dladm_str2media(const char *);
233 extern boolean_t	dladm_valid_linkname(const char *);
234 extern boolean_t	dladm_str2interval(char *, uint32_t *);
235 extern dladm_status_t	dladm_str2bw(char *, uint64_t *);
236 extern const char	*dladm_bw2str(int64_t, char *);
237 extern dladm_status_t	dladm_str2pri(char *, mac_priority_level_t *);
238 extern const char	*dladm_pri2str(mac_priority_level_t, char *);
239 extern dladm_status_t	dladm_str2protect(char *, uint32_t *);
240 extern const char	*dladm_protect2str(uint32_t, char *);
241 extern dladm_status_t	dladm_str2ipv4addr(char *, void *);
242 extern const char	*dladm_ipv4addr2str(void *, char *);
243 extern dladm_status_t	dladm_str2ipv6addr(char *, void *);
244 extern const char	*dladm_ipv6addr2str(void *, char *);
245 
246 extern dladm_status_t	dladm_parse_flow_props(char *, dladm_arg_list_t **,
247 			    boolean_t);
248 extern dladm_status_t	dladm_parse_link_props(char *, dladm_arg_list_t **,
249 			    boolean_t);
250 extern void		dladm_free_props(dladm_arg_list_t *);
251 extern dladm_status_t	dladm_parse_flow_attrs(char *, dladm_arg_list_t **,
252 			    boolean_t);
253 extern void		dladm_free_attrs(dladm_arg_list_t *);
254 
255 extern dladm_status_t	dladm_start_usagelog(dladm_handle_t, dladm_logtype_t,
256 			    uint_t);
257 extern dladm_status_t	dladm_stop_usagelog(dladm_handle_t, dladm_logtype_t);
258 extern dladm_status_t	dladm_walk_usage_res(int (*)(dladm_usage_t *, void *),
259 			    int, char *, char *, char *, char *, void *);
260 extern dladm_status_t	dladm_walk_usage_time(int (*)(dladm_usage_t *, void *),
261 			    int, char *, char *, char *, void *);
262 extern dladm_status_t	dladm_usage_summary(int (*)(dladm_usage_t *, void *),
263 			    int, char *, void *);
264 extern dladm_status_t	dladm_usage_dates(int (*)(dladm_usage_t *, void *),
265 			    int, char *, char *, void *);
266 extern dladm_status_t	dladm_zone_boot(dladm_handle_t, zoneid_t);
267 extern dladm_status_t	dladm_zone_halt(dladm_handle_t, zoneid_t);
268 
269 #ifdef	__cplusplus
270 }
271 #endif
272 
273 #endif	/* _LIBDLADM_H */
274