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 _LIBDLADM_IMPL_H
27 #define	_LIBDLADM_IMPL_H
28 
29 #include <sys/types.h>
30 #include <sys/mac.h>
31 #include <sys/mac_flow.h>
32 #include <libdladm.h>
33 #include <stdio.h>
34 
35 #ifdef	__cplusplus
36 extern "C" {
37 #endif
38 
39 #define	MAXLINELEN		1024
40 #define	BUFLEN(lim, ptr)	(((lim) > (ptr)) ? ((lim) - (ptr)) : 0)
41 
42 /*
43  * The handle contains file descriptors to DLD_CONTROL_DEV and
44  * DLMGMT_DOOR.  Rather than opening the file descriptor each time
45  * it is required, the handle is opened by consumers of libdladm
46  * (e.g., dladm) and then passed to libdladm.
47  */
48 struct dladm_handle {
49 	int dld_fd;	/* file descriptor to DLD_CONTROL_DEV */
50 	int door_fd;	/* file descriptor to DLMGMT_DOOR */
51 };
52 
53 /* DLMGMT_DOOR can only be accessed by libdladm and dlmgmtd */
54 extern dladm_status_t	dladm_door_fd(dladm_handle_t, int *);
55 
56 extern dladm_status_t	dladm_errno2status(int);
57 extern dladm_status_t   i_dladm_rw_db(dladm_handle_t, const char *, mode_t,
58 			    dladm_status_t (*)(dladm_handle_t, void *, FILE *,
59 			    FILE *), void *, boolean_t);
60 extern dladm_status_t	i_dladm_get_state(dladm_handle_t, datalink_id_t,
61 			    link_state_t *);
62 
63 extern const char	*dladm_pri2str(mac_priority_level_t, char *);
64 extern dladm_status_t	dladm_str2pri(char *, mac_priority_level_t *);
65 extern dladm_status_t	dladm_parse_args(char *, dladm_arg_list_t **,
66 			    boolean_t);
67 extern void		dladm_free_args(dladm_arg_list_t *);
68 
69 /*
70  * Link attributes persisted by dlmgmtd.
71  */
72 /*
73  * Set for VLANs only
74  */
75 #define	FVLANID		"vid"		/* uint64_t */
76 #define	FLINKOVER	"linkover"	/* uint64_t */
77 
78 /*
79  * Set for AGGRs only
80  */
81 #define	FKEY		"key"		/* uint64_t */
82 #define	FNPORTS		"nports"	/* uint64_t */
83 #define	FPORTS		"portnames"	/* string */
84 #define	FPOLICY		"policy"	/* uint64_t */
85 #define	FFIXMACADDR	"fix_macaddr"	/* boolean_t */
86 #define	FFORCE		"force"		/* boolean_t */
87 #define	FLACPMODE	"lacp_mode"	/* uint64_t */
88 #define	FLACPTIMER	"lacp_timer"	/* uint64_t */
89 
90 /*
91  * Set for VNICs only
92  */
93 #define	FMADDRTYPE	"maddrtype"	/* uint64_t */
94 #define	FMADDRLEN	"maddrlen"	/* uint64_t */
95 #define	FMADDRSLOT	"maddrslot"	/* uint64_t */
96 #define	FMADDRPREFIXLEN	"maddrpreflen"	/* uint64_t */
97 #define	FHWRINGS	"hwrings"	/* boolean_t */
98 
99 /*
100  * Set for simlinks only
101  */
102 #define	FSIMNETTYPE	"simnettype"	/* uint64_t */
103 #define	FSIMNETPEER	"simnetpeer"	/* uint64_t */
104 
105 /*
106  * Common fields
107  */
108 #define	FMACADDR	"macaddr"	/* string */
109 
110 /*
111  * List of all the above attributes.
112  */
113 #define	DLADM_ATTR_NAMES	FVLANID, FLINKOVER, \
114 				FKEY, FNPORTS, FPORTS, FPOLICY, \
115 				FFIXMACADDR, FFORCE, FLACPMODE, FLACPTIMER, \
116 				FMADDRTYPE, FMADDRLEN, FMADDRSLOT, \
117 				FMADDRPREFIXLEN, FHWRINGS, \
118 				FMACADDR, FSIMNETTYPE, FSIMNETPEER
119 
120 /*
121  * Data structures used for implementing temporary properties
122  */
123 
124 typedef struct val_desc {
125 	char		*vd_name;
126 	uintptr_t	vd_val;
127 } val_desc_t;
128 
129 #define	VALCNT(vals)	(sizeof ((vals)) / sizeof (val_desc_t))
130 
131 extern dladm_status_t	dladm_link_proplist_extract(dladm_handle_t,
132 			    dladm_arg_list_t *, mac_resource_props_t *);
133 
134 extern dladm_status_t	dladm_flow_proplist_extract(dladm_arg_list_t *,
135 			    mac_resource_props_t *);
136 
137 /*
138  * The prop extract() callback.
139  *
140  * rp_extract extracts the kernel structure from the val_desc_t created
141  * by the pd_check function.
142  */
143 typedef	dladm_status_t	rp_extractf_t(val_desc_t *propval, void *arg,
144 				uint_t cnt);
145 extern rp_extractf_t	do_extract_maxbw, do_extract_priority,
146 			do_extract_cpus;
147 
148 typedef struct resource_prop_s {
149 	/*
150 	 * resource property name
151 	 */
152 	char		*rp_name;
153 
154 	/*
155 	 * callback to extract kernel structure
156 	 */
157 	rp_extractf_t	*rp_extract;
158 } resource_prop_t;
159 
160 /*
161  * Set for bridged links only
162  */
163 #define	FBRIDGE		"bridge"	/* string */
164 
165 #ifdef	__cplusplus
166 }
167 #endif
168 
169 #endif	/* _LIBDLADM_IMPL_H */
170