xref: /illumos-gate/usr/src/uts/common/io/mac/plugins/mac_ether.c (revision 9b14cf1dc76dad8f2d9a74310e0a0200af96d217)
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 2007 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 /*
29  * Ethernet MAC plugin for the Nemo mac module
30  */
31 
32 #include <sys/types.h>
33 #include <sys/modctl.h>
34 #include <sys/dlpi.h>
35 #include <sys/mac.h>
36 #include <sys/mac_ether.h>
37 #include <sys/dls.h>
38 #include <sys/ethernet.h>
39 #include <sys/byteorder.h>
40 #include <sys/strsun.h>
41 #include <inet/common.h>
42 
43 static uint8_t	ether_brdcst[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
44 
45 static mac_stat_info_t ether_stats[] = {
46 	/* RFC1643 stats */
47 	{ ETHER_STAT_ALIGN_ERRORS, "align_errors", KSTAT_DATA_UINT32,	0 },
48 	{ ETHER_STAT_FCS_ERRORS, "fcs_errors", KSTAT_DATA_UINT32,	0 },
49 	{ ETHER_STAT_FIRST_COLLISIONS, "first_collisions", KSTAT_DATA_UINT32,
50 	    0 },
51 	{ ETHER_STAT_MULTI_COLLISIONS, "multi_collisions", KSTAT_DATA_UINT32,
52 	    0 },
53 	{ ETHER_STAT_SQE_ERRORS, "sqe_errors", KSTAT_DATA_UINT32,	0},
54 	{ ETHER_STAT_DEFER_XMTS, "defer_xmts", KSTAT_DATA_UINT32,	0},
55 	{ ETHER_STAT_TX_LATE_COLLISIONS, "tx_late_collisions",
56 	    KSTAT_DATA_UINT32, 0 },
57 	{ ETHER_STAT_EX_COLLISIONS, "ex_collisions", KSTAT_DATA_UINT32,	0 },
58 	{ ETHER_STAT_MACXMT_ERRORS, "macxmt_errors", KSTAT_DATA_UINT32,	0 },
59 	{ ETHER_STAT_CARRIER_ERRORS, "carrier_errors", KSTAT_DATA_UINT32, 0 },
60 	{ ETHER_STAT_TOOLONG_ERRORS, "toolong_errors", KSTAT_DATA_UINT32, 0 },
61 	{ ETHER_STAT_MACRCV_ERRORS, "macrcv_errors", KSTAT_DATA_UINT32, 0 },
62 	{ ETHER_STAT_TOOSHORT_ERRORS, "runt_errors", KSTAT_DATA_UINT32,	0 },
63 
64 	/* Statistics described in the ieee802.3(5) man page */
65 	{ ETHER_STAT_XCVR_ADDR, "xcvr_addr", KSTAT_DATA_UINT32,		0 },
66 	{ ETHER_STAT_XCVR_ID, "xcvr_id", KSTAT_DATA_UINT32, 		0 },
67 	{ ETHER_STAT_XCVR_INUSE, "xcvr_inuse", KSTAT_DATA_UINT32,	0 },
68 	{ ETHER_STAT_CAP_1000FDX, "cap_1000fdx", KSTAT_DATA_UINT32,	0 },
69 	{ ETHER_STAT_CAP_1000HDX, "cap_1000hdx", KSTAT_DATA_UINT32,	0 },
70 	{ ETHER_STAT_CAP_100FDX, "cap_100fdx", KSTAT_DATA_UINT32,	0 },
71 	{ ETHER_STAT_CAP_100HDX, "cap_100hdx", KSTAT_DATA_UINT32,	0 },
72 	{ ETHER_STAT_CAP_10FDX, "cap_10fdx", KSTAT_DATA_UINT32,		0 },
73 	{ ETHER_STAT_CAP_10HDX, "cap_10hdx", KSTAT_DATA_UINT32,		0 },
74 	{ ETHER_STAT_CAP_ASMPAUSE, "cap_asmpause", KSTAT_DATA_UINT32,	0 },
75 	{ ETHER_STAT_CAP_PAUSE, "cap_pause", KSTAT_DATA_UINT32,		0 },
76 	{ ETHER_STAT_CAP_AUTONEG, "cap_autoneg", KSTAT_DATA_UINT32,	0 },
77 	{ ETHER_STAT_CAP_REMFAULT, "cap_rem_fault", KSTAT_DATA_UINT32,	0 },
78 	{ ETHER_STAT_ADV_CAP_1000FDX, "adv_cap_1000fdx", KSTAT_DATA_UINT32, 0 },
79 	{ ETHER_STAT_ADV_CAP_1000HDX, "adv_cap_1000hdx", KSTAT_DATA_UINT32, 0 },
80 	{ ETHER_STAT_ADV_CAP_100FDX, "adv_cap_100fdx", KSTAT_DATA_UINT32, 0},
81 	{ ETHER_STAT_ADV_CAP_100HDX, "adv_cap_100hdx", KSTAT_DATA_UINT32, 0},
82 	{ ETHER_STAT_ADV_CAP_10FDX, "adv_cap_10fdx", KSTAT_DATA_UINT32,	0 },
83 	{ ETHER_STAT_ADV_CAP_10HDX, "adv_cap_10hdx", KSTAT_DATA_UINT32,	0 },
84 	{ ETHER_STAT_ADV_CAP_ASMPAUSE, "adv_cap_asmpause", KSTAT_DATA_UINT32,
85 	    0 },
86 	{ ETHER_STAT_ADV_CAP_PAUSE, "adv_cap_pause", KSTAT_DATA_UINT32,	0 },
87 	{ ETHER_STAT_ADV_CAP_AUTONEG, "adv_cap_autoneg", KSTAT_DATA_UINT32, 0 },
88 	{ ETHER_STAT_ADV_REMFAULT, "adv_rem_fault", KSTAT_DATA_UINT32,	0 },
89 	{ ETHER_STAT_LP_CAP_1000FDX, "lp_cap_1000fdx", KSTAT_DATA_UINT32, 0 },
90 	{ ETHER_STAT_LP_CAP_1000HDX, "lp_cap_1000hdx", KSTAT_DATA_UINT32, 0 },
91 	{ ETHER_STAT_LP_CAP_100FDX, "lp_cap_100fdx", KSTAT_DATA_UINT32,	0 },
92 	{ ETHER_STAT_LP_CAP_100HDX, "lp_cap_100hdx", KSTAT_DATA_UINT32,	0 },
93 	{ ETHER_STAT_LP_CAP_10FDX, "lp_cap_10fdx", KSTAT_DATA_UINT32,	0 },
94 	{ ETHER_STAT_LP_CAP_10HDX, "lp_cap_10hdx", KSTAT_DATA_UINT32,	0 },
95 	{ ETHER_STAT_LP_CAP_ASMPAUSE, "lp_cap_asmpause", KSTAT_DATA_UINT32, 0 },
96 	{ ETHER_STAT_LP_CAP_PAUSE, "lp_cap_pause", KSTAT_DATA_UINT32,	0 },
97 	{ ETHER_STAT_LP_CAP_AUTONEG, "lp_cap_autoneg", KSTAT_DATA_UINT32, 0 },
98 	{ ETHER_STAT_LP_REMFAULT, "lp_rem_fault", KSTAT_DATA_UINT32,	0 },
99 	{ ETHER_STAT_LINK_ASMPAUSE, "link_asmpause", KSTAT_DATA_UINT32,	0 },
100 	{ ETHER_STAT_LINK_PAUSE, "link_pause", KSTAT_DATA_UINT32,	0 },
101 	{ ETHER_STAT_LINK_AUTONEG, "link_autoneg", KSTAT_DATA_UINT32,	0 },
102 	{ ETHER_STAT_LINK_DUPLEX, "link_duplex", KSTAT_DATA_UINT32,	0 }
103 };
104 
105 static struct modlmisc mac_ether_modlmisc = {
106 	&mod_miscops,
107 	"Ethernet MAC plugin %I%"
108 };
109 
110 static struct modlinkage mac_ether_modlinkage = {
111 	MODREV_1,
112 	&mac_ether_modlmisc,
113 	NULL
114 };
115 
116 static mactype_ops_t mac_ether_type_ops;
117 
118 int
119 _init(void)
120 {
121 	mactype_register_t *mtrp;
122 	int	err;
123 
124 	if ((mtrp = mactype_alloc(MACTYPE_VERSION)) == NULL)
125 		return (ENOTSUP);
126 	mtrp->mtr_ident = MAC_PLUGIN_IDENT_ETHER;
127 	mtrp->mtr_ops = &mac_ether_type_ops;
128 	mtrp->mtr_mactype = DL_ETHER;
129 	mtrp->mtr_nativetype = DL_ETHER;
130 	mtrp->mtr_addrlen = ETHERADDRL;
131 	mtrp->mtr_brdcst_addr = ether_brdcst;
132 	mtrp->mtr_stats = ether_stats;
133 	mtrp->mtr_statcount = A_CNT(ether_stats);
134 	if ((err = mactype_register(mtrp)) == 0) {
135 		if ((err = mod_install(&mac_ether_modlinkage)) != 0)
136 			(void) mactype_unregister(MAC_PLUGIN_IDENT_ETHER);
137 	}
138 	mactype_free(mtrp);
139 	return (err);
140 }
141 
142 int
143 _fini(void)
144 {
145 	int	err;
146 
147 	if ((err = mactype_unregister(MAC_PLUGIN_IDENT_ETHER)) != 0)
148 		return (err);
149 	return (mod_remove(&mac_ether_modlinkage));
150 }
151 
152 int
153 _info(struct modinfo *modinfop)
154 {
155 	return (mod_info(&mac_ether_modlinkage, modinfop));
156 }
157 
158 /*
159  * MAC Type plugin operations
160  */
161 
162 /* ARGSUSED */
163 int
164 mac_ether_unicst_verify(const void *addr, void *mac_pdata)
165 {
166 	/* If it's not a group address, then it's a valid unicast address. */
167 	return (((((uint8_t *)addr)[0] & 0x01) != 0) ? EINVAL : 0);
168 }
169 
170 /* ARGSUSED */
171 int
172 mac_ether_multicst_verify(const void *addr, void *mac_pdata)
173 {
174 	/* The address must be a group address. */
175 	if ((((uint8_t *)addr)[0] & 0x01) == 0)
176 		return (EINVAL);
177 	/* The address must not be the media broadcast address. */
178 	if (bcmp(addr, ether_brdcst, ETHERADDRL) == 0)
179 		return (EINVAL);
180 	return (0);
181 }
182 
183 /*
184  * Check the legality of an Ethernet SAP value. The following values are
185  * allowed, as specified by PSARC 2003/150:
186  *
187  * 0..ETHERMTU (1500)					802 semantics
188  * ETHERTYPE_802_MIN (1536)..ETHERTYPE_MAX (65535)	ethertype semantics
189  *
190  * Note that SAP values less than or equal to ETHERMTU (1500) represent LLC
191  * channels. (See PSARC 2003/150).  We strictly use SAP 0 to represent LLC
192  * channels.
193  */
194 /* ARGSUSED */
195 boolean_t
196 mac_ether_sap_verify(uint32_t sap, uint32_t *bind_sap, void *mac_pdata)
197 {
198 	if (sap >= ETHERTYPE_802_MIN && sap <= ETHERTYPE_MAX) {
199 		if (bind_sap != NULL)
200 			*bind_sap = sap;
201 		return (B_TRUE);
202 	}
203 
204 	if (sap <= ETHERMTU) {
205 		if (bind_sap != NULL)
206 			*bind_sap = DLS_SAP_LLC;
207 		return (B_TRUE);
208 	}
209 	return (B_FALSE);
210 }
211 
212 /* ARGSUSED */
213 mblk_t *
214 mac_ether_header(const void *saddr, const void *daddr, uint32_t sap,
215     void *mac_pdata, mblk_t *payload, size_t extra_len)
216 {
217 	struct ether_header	*ehp;
218 	mblk_t			*mp;
219 	uint32_t		bind_sap;
220 
221 	if (!mac_ether_sap_verify(sap, &bind_sap, NULL))
222 		return (NULL);
223 
224 	mp = allocb(sizeof (struct ether_header) + extra_len, BPRI_HI);
225 	if (mp == NULL)
226 		return (NULL);
227 
228 	ehp = (struct ether_header *)mp->b_rptr;
229 	bcopy(daddr, &(ehp->ether_dhost), ETHERADDRL);
230 	bcopy(saddr, &(ehp->ether_shost), ETHERADDRL);
231 
232 	/*
233 	 * sap <= ETHERMTU indicates that LLC is being used.  If that's the
234 	 * case, then the ether_type needs to be set to the payload length.
235 	 */
236 	if ((bind_sap == DLS_SAP_LLC) && (payload != NULL))
237 		sap = msgdsize(payload);
238 	ehp->ether_type = htons(sap);
239 
240 	mp->b_wptr += sizeof (struct ether_header);
241 	return (mp);
242 }
243 
244 /* ARGSUSED */
245 int
246 mac_ether_header_info(mblk_t *mp, void *mac_pdata, mac_header_info_t *hdr_info)
247 {
248 	struct ether_header	*ehp;
249 	uint16_t		ether_type;
250 
251 	if (MBLKL(mp) < sizeof (struct ether_header))
252 		return (EINVAL);
253 
254 	ehp = (struct ether_header *)mp->b_rptr;
255 	ether_type = ntohs(ehp->ether_type);
256 
257 	hdr_info->mhi_hdrsize = sizeof (struct ether_header);
258 	hdr_info->mhi_daddr = (const uint8_t *)&(ehp->ether_dhost);
259 	hdr_info->mhi_saddr = (const uint8_t *)&(ehp->ether_shost);
260 	hdr_info->mhi_origsap = ether_type;
261 	hdr_info->mhi_bindsap = (ether_type > ETHERMTU) ?
262 	    ether_type : DLS_SAP_LLC;
263 	hdr_info->mhi_pktsize = (hdr_info->mhi_bindsap == DLS_SAP_LLC) ?
264 	    hdr_info->mhi_hdrsize + ether_type : 0;
265 
266 	if (mac_ether_unicst_verify(hdr_info->mhi_daddr, NULL) == 0)
267 		hdr_info->mhi_dsttype = MAC_ADDRTYPE_UNICAST;
268 	else if (mac_ether_multicst_verify(hdr_info->mhi_daddr, NULL) == 0)
269 		hdr_info->mhi_dsttype = MAC_ADDRTYPE_MULTICAST;
270 	else
271 		hdr_info->mhi_dsttype = MAC_ADDRTYPE_BROADCAST;
272 
273 	return (0);
274 }
275 
276 static mactype_ops_t mac_ether_type_ops = {
277 	0,
278 	mac_ether_unicst_verify,
279 	mac_ether_multicst_verify,
280 	mac_ether_sap_verify,
281 	mac_ether_header,
282 	mac_ether_header_info
283 };
284