1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1982, 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 *
31 * @(#)if_ethersubr.c 8.1 (Berkeley) 6/10/93
32 */
33
34 #include "opt_inet.h"
35 #include "opt_inet6.h"
36 #include "opt_netgraph.h"
37 #include "opt_mbuf_profiling.h"
38 #include "opt_rss.h"
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/devctl.h>
43 #include <sys/eventhandler.h>
44 #include <sys/jail.h>
45 #include <sys/kernel.h>
46 #include <sys/lock.h>
47 #include <sys/malloc.h>
48 #include <sys/module.h>
49 #include <sys/mbuf.h>
50 #include <sys/proc.h>
51 #include <sys/priv.h>
52 #include <sys/random.h>
53 #include <sys/socket.h>
54 #include <sys/sockio.h>
55 #include <sys/sysctl.h>
56 #include <sys/uuid.h>
57
58 #include <net/ieee_oui.h>
59 #include <net/if.h>
60 #include <net/if_var.h>
61 #include <net/if_arp.h>
62 #include <net/netisr.h>
63 #include <net/route.h>
64 #include <net/if_llc.h>
65 #include <net/if_dl.h>
66 #include <net/if_types.h>
67 #include <net/bpf.h>
68 #include <net/ethernet.h>
69 #include <net/if_bridgevar.h>
70 #include <net/if_vlan_var.h>
71 #include <net/if_llatbl.h>
72 #include <net/pfil.h>
73 #include <net/rss_config.h>
74 #include <net/vnet.h>
75
76 #include <netpfil/pf/pf_mtag.h>
77
78 #if defined(INET) || defined(INET6)
79 #include <netinet/in.h>
80 #include <netinet/in_var.h>
81 #include <netinet/if_ether.h>
82 #include <netinet/ip_carp.h>
83 #include <netinet/ip_var.h>
84 #endif
85 #ifdef INET6
86 #include <netinet6/nd6.h>
87 #endif
88 #include <security/mac/mac_framework.h>
89
90 #include <crypto/sha1.h>
91
92 #ifdef CTASSERT
93 CTASSERT(sizeof (struct ether_header) == ETHER_ADDR_LEN * 2 + 2);
94 CTASSERT(sizeof (struct ether_addr) == ETHER_ADDR_LEN);
95 #endif
96
97 VNET_DEFINE(pfil_head_t, link_pfil_head); /* Packet filter hooks */
98
99 /* netgraph node hooks for ng_ether(4) */
100 void (*ng_ether_input_p)(struct ifnet *ifp, struct mbuf **mp);
101 void (*ng_ether_input_orphan_p)(struct ifnet *ifp, struct mbuf *m);
102 int (*ng_ether_output_p)(struct ifnet *ifp, struct mbuf **mp);
103 void (*ng_ether_attach_p)(struct ifnet *ifp);
104 void (*ng_ether_detach_p)(struct ifnet *ifp);
105
106 void (*vlan_input_p)(struct ifnet *, struct mbuf *);
107
108 /* if_bridge(4) support */
109 void (*bridge_dn_p)(struct mbuf *, struct ifnet *);
110
111 /* if_lagg(4) support */
112 struct mbuf *(*lagg_input_ethernet_p)(struct ifnet *, struct mbuf *);
113
114 static const u_char etherbroadcastaddr[ETHER_ADDR_LEN] =
115 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
116
117 static int ether_resolvemulti(struct ifnet *, struct sockaddr **,
118 struct sockaddr *);
119 static int ether_requestencap(struct ifnet *, struct if_encap_req *);
120
121 static inline bool ether_do_pcp(struct ifnet *, struct mbuf *);
122
123 #define senderr(e) do { error = (e); goto bad;} while (0)
124
125 static void
update_mbuf_csumflags(struct mbuf * src,struct mbuf * dst)126 update_mbuf_csumflags(struct mbuf *src, struct mbuf *dst)
127 {
128 int csum_flags = 0;
129
130 if (src->m_pkthdr.csum_flags & CSUM_IP)
131 csum_flags |= (CSUM_IP_CHECKED|CSUM_IP_VALID);
132 if (src->m_pkthdr.csum_flags & CSUM_DELAY_DATA)
133 csum_flags |= (CSUM_DATA_VALID|CSUM_PSEUDO_HDR);
134 if (src->m_pkthdr.csum_flags & CSUM_SCTP)
135 csum_flags |= CSUM_SCTP_VALID;
136 dst->m_pkthdr.csum_flags |= csum_flags;
137 if (csum_flags & CSUM_DATA_VALID)
138 dst->m_pkthdr.csum_data = 0xffff;
139 }
140
141 /*
142 * Handle link-layer encapsulation requests.
143 */
144 static int
ether_requestencap(struct ifnet * ifp,struct if_encap_req * req)145 ether_requestencap(struct ifnet *ifp, struct if_encap_req *req)
146 {
147 struct ether_header *eh;
148 struct arphdr *ah;
149 uint16_t etype;
150 const u_char *lladdr;
151
152 if (req->rtype != IFENCAP_LL)
153 return (EOPNOTSUPP);
154
155 if (req->bufsize < ETHER_HDR_LEN)
156 return (ENOMEM);
157
158 eh = (struct ether_header *)req->buf;
159 lladdr = req->lladdr;
160 req->lladdr_off = 0;
161
162 switch (req->family) {
163 case AF_INET:
164 etype = htons(ETHERTYPE_IP);
165 break;
166 case AF_INET6:
167 etype = htons(ETHERTYPE_IPV6);
168 break;
169 case AF_ARP:
170 ah = (struct arphdr *)req->hdata;
171 ah->ar_hrd = htons(ARPHRD_ETHER);
172
173 switch(ntohs(ah->ar_op)) {
174 case ARPOP_REVREQUEST:
175 case ARPOP_REVREPLY:
176 etype = htons(ETHERTYPE_REVARP);
177 break;
178 case ARPOP_REQUEST:
179 case ARPOP_REPLY:
180 default:
181 etype = htons(ETHERTYPE_ARP);
182 break;
183 }
184
185 if (req->flags & IFENCAP_FLAG_BROADCAST)
186 lladdr = ifp->if_broadcastaddr;
187 break;
188 default:
189 return (EAFNOSUPPORT);
190 }
191
192 memcpy(&eh->ether_type, &etype, sizeof(eh->ether_type));
193 memcpy(eh->ether_dhost, lladdr, ETHER_ADDR_LEN);
194 memcpy(eh->ether_shost, IF_LLADDR(ifp), ETHER_ADDR_LEN);
195 req->bufsize = sizeof(struct ether_header);
196
197 return (0);
198 }
199
200 static int
ether_resolve_addr(struct ifnet * ifp,struct mbuf * m,const struct sockaddr * dst,struct route * ro,u_char * phdr,uint32_t * pflags,struct llentry ** plle)201 ether_resolve_addr(struct ifnet *ifp, struct mbuf *m,
202 const struct sockaddr *dst, struct route *ro, u_char *phdr,
203 uint32_t *pflags, struct llentry **plle)
204 {
205 struct ether_header *eh;
206 uint32_t lleflags = 0;
207 int error = 0;
208 #if defined(INET) || defined(INET6)
209 uint16_t etype;
210 #endif
211
212 if (plle)
213 *plle = NULL;
214 eh = (struct ether_header *)phdr;
215
216 switch (dst->sa_family) {
217 #ifdef INET
218 case AF_INET:
219 if ((m->m_flags & (M_BCAST | M_MCAST)) == 0)
220 error = arpresolve(ifp, 0, m, dst, phdr, &lleflags,
221 plle);
222 else {
223 if (m->m_flags & M_BCAST)
224 memcpy(eh->ether_dhost, ifp->if_broadcastaddr,
225 ETHER_ADDR_LEN);
226 else {
227 const struct in_addr *a;
228 a = &(((const struct sockaddr_in *)dst)->sin_addr);
229 ETHER_MAP_IP_MULTICAST(a, eh->ether_dhost);
230 }
231 etype = htons(ETHERTYPE_IP);
232 memcpy(&eh->ether_type, &etype, sizeof(etype));
233 memcpy(eh->ether_shost, IF_LLADDR(ifp), ETHER_ADDR_LEN);
234 }
235 break;
236 #endif
237 #ifdef INET6
238 case AF_INET6:
239 if ((m->m_flags & M_MCAST) == 0) {
240 int af = RO_GET_FAMILY(ro, dst);
241 error = nd6_resolve(ifp, LLE_SF(af, 0), m, dst, phdr,
242 &lleflags, plle);
243 } else {
244 const struct in6_addr *a6;
245 a6 = &(((const struct sockaddr_in6 *)dst)->sin6_addr);
246 ETHER_MAP_IPV6_MULTICAST(a6, eh->ether_dhost);
247 etype = htons(ETHERTYPE_IPV6);
248 memcpy(&eh->ether_type, &etype, sizeof(etype));
249 memcpy(eh->ether_shost, IF_LLADDR(ifp), ETHER_ADDR_LEN);
250 }
251 break;
252 #endif
253 default:
254 if_printf(ifp, "can't handle af%d\n", dst->sa_family);
255 if (m != NULL)
256 m_freem(m);
257 return (EAFNOSUPPORT);
258 }
259
260 if (error == EHOSTDOWN) {
261 if (ro != NULL && (ro->ro_flags & RT_HAS_GW) != 0)
262 error = EHOSTUNREACH;
263 }
264
265 if (error != 0)
266 return (error);
267
268 *pflags = RT_MAY_LOOP;
269 if (lleflags & LLE_IFADDR)
270 *pflags |= RT_L2_ME;
271
272 return (0);
273 }
274
275 /*
276 * Ethernet output routine.
277 * Encapsulate a packet of type family for the local net.
278 * Use trailer local net encapsulation if enough data in first
279 * packet leaves a multiple of 512 bytes of data in remainder.
280 */
281 int
ether_output(struct ifnet * ifp,struct mbuf * m,const struct sockaddr * dst,struct route * ro)282 ether_output(struct ifnet *ifp, struct mbuf *m,
283 const struct sockaddr *dst, struct route *ro)
284 {
285 int error = 0;
286 char linkhdr[ETHER_HDR_LEN], *phdr;
287 struct ether_header *eh;
288 struct pf_mtag *t;
289 bool loop_copy;
290 int hlen; /* link layer header length */
291 uint32_t pflags;
292 struct llentry *lle = NULL;
293 int addref = 0;
294
295 phdr = NULL;
296 pflags = 0;
297 if (ro != NULL) {
298 /* XXX BPF uses ro_prepend */
299 if (ro->ro_prepend != NULL) {
300 phdr = ro->ro_prepend;
301 hlen = ro->ro_plen;
302 } else if (!(m->m_flags & (M_BCAST | M_MCAST))) {
303 if ((ro->ro_flags & RT_LLE_CACHE) != 0) {
304 lle = ro->ro_lle;
305 if (lle != NULL &&
306 (lle->la_flags & LLE_VALID) == 0) {
307 LLE_FREE(lle);
308 lle = NULL; /* redundant */
309 ro->ro_lle = NULL;
310 }
311 if (lle == NULL) {
312 /* if we lookup, keep cache */
313 addref = 1;
314 } else
315 /*
316 * Notify LLE code that
317 * the entry was used
318 * by datapath.
319 */
320 llentry_provide_feedback(lle);
321 }
322 if (lle != NULL) {
323 phdr = lle->r_linkdata;
324 hlen = lle->r_hdrlen;
325 pflags = lle->r_flags;
326 }
327 }
328 }
329
330 #ifdef MAC
331 error = mac_ifnet_check_transmit(ifp, m);
332 if (error)
333 senderr(error);
334 #endif
335
336 M_PROFILE(m);
337 if (ifp->if_flags & IFF_MONITOR)
338 senderr(ENETDOWN);
339 if (!((ifp->if_flags & IFF_UP) &&
340 (ifp->if_drv_flags & IFF_DRV_RUNNING)))
341 senderr(ENETDOWN);
342
343 if (phdr == NULL) {
344 /* No prepend data supplied. Try to calculate ourselves. */
345 phdr = linkhdr;
346 hlen = ETHER_HDR_LEN;
347 error = ether_resolve_addr(ifp, m, dst, ro, phdr, &pflags,
348 addref ? &lle : NULL);
349 if (addref && lle != NULL)
350 ro->ro_lle = lle;
351 if (error != 0)
352 return (error == EWOULDBLOCK ? 0 : error);
353 }
354
355 if ((pflags & RT_L2_ME) != 0) {
356 update_mbuf_csumflags(m, m);
357 return (if_simloop(ifp, m, RO_GET_FAMILY(ro, dst), 0));
358 }
359 loop_copy = (pflags & RT_MAY_LOOP) != 0;
360
361 /*
362 * Add local net header. If no space in first mbuf,
363 * allocate another.
364 *
365 * Note that we do prepend regardless of RT_HAS_HEADER flag.
366 * This is done because BPF code shifts m_data pointer
367 * to the end of ethernet header prior to calling if_output().
368 */
369 M_PREPEND(m, hlen, M_NOWAIT);
370 if (m == NULL)
371 senderr(ENOBUFS);
372 if ((pflags & RT_HAS_HEADER) == 0) {
373 eh = mtod(m, struct ether_header *);
374 memcpy(eh, phdr, hlen);
375 }
376
377 /*
378 * If a simplex interface, and the packet is being sent to our
379 * Ethernet address or a broadcast address, loopback a copy.
380 * XXX To make a simplex device behave exactly like a duplex
381 * device, we should copy in the case of sending to our own
382 * ethernet address (thus letting the original actually appear
383 * on the wire). However, we don't do that here for security
384 * reasons and compatibility with the original behavior.
385 */
386 if ((m->m_flags & M_BCAST) && loop_copy && (ifp->if_flags & IFF_SIMPLEX) &&
387 ((t = pf_find_mtag(m)) == NULL || !t->routed)) {
388 struct mbuf *n;
389
390 /*
391 * Because if_simloop() modifies the packet, we need a
392 * writable copy through m_dup() instead of a readonly
393 * one as m_copy[m] would give us. The alternative would
394 * be to modify if_simloop() to handle the readonly mbuf,
395 * but performancewise it is mostly equivalent (trading
396 * extra data copying vs. extra locking).
397 *
398 * XXX This is a local workaround. A number of less
399 * often used kernel parts suffer from the same bug.
400 * See PR kern/105943 for a proposed general solution.
401 */
402 if ((n = m_dup(m, M_NOWAIT)) != NULL) {
403 update_mbuf_csumflags(m, n);
404 (void)if_simloop(ifp, n, RO_GET_FAMILY(ro, dst), hlen);
405 } else
406 if_inc_counter(ifp, IFCOUNTER_IQDROPS, 1);
407 }
408
409 /*
410 * Bridges require special output handling.
411 */
412 if (ifp->if_bridge) {
413 BRIDGE_OUTPUT(ifp, m, error);
414 return (error);
415 }
416
417 #if defined(INET) || defined(INET6)
418 if (ifp->if_carp &&
419 (error = (*carp_output_p)(ifp, m, dst)))
420 goto bad;
421 #endif
422
423 /* Handle ng_ether(4) processing, if any */
424 if (ifp->if_l2com != NULL) {
425 KASSERT(ng_ether_output_p != NULL,
426 ("ng_ether_output_p is NULL"));
427 if ((error = (*ng_ether_output_p)(ifp, &m)) != 0) {
428 bad: if (m != NULL)
429 m_freem(m);
430 return (error);
431 }
432 if (m == NULL)
433 return (0);
434 }
435
436 /* Continue with link-layer output */
437 return ether_output_frame(ifp, m);
438 }
439
440 static bool
ether_set_pcp(struct mbuf ** mp,struct ifnet * ifp,uint8_t pcp)441 ether_set_pcp(struct mbuf **mp, struct ifnet *ifp, uint8_t pcp)
442 {
443 struct ether_8021q_tag qtag;
444 struct ether_header *eh;
445
446 eh = mtod(*mp, struct ether_header *);
447 if (eh->ether_type == htons(ETHERTYPE_VLAN) ||
448 eh->ether_type == htons(ETHERTYPE_QINQ)) {
449 (*mp)->m_flags &= ~M_VLANTAG;
450 return (true);
451 }
452
453 qtag.vid = 0;
454 qtag.pcp = pcp;
455 qtag.proto = ETHERTYPE_VLAN;
456 if (ether_8021q_frame(mp, ifp, ifp, &qtag))
457 return (true);
458 if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
459 return (false);
460 }
461
462 /*
463 * Ethernet link layer output routine to send a raw frame to the device.
464 *
465 * This assumes that the 14 byte Ethernet header is present and contiguous
466 * in the first mbuf (if BRIDGE'ing).
467 */
468 int
ether_output_frame(struct ifnet * ifp,struct mbuf * m)469 ether_output_frame(struct ifnet *ifp, struct mbuf *m)
470 {
471 if (ether_do_pcp(ifp, m) && !ether_set_pcp(&m, ifp, ifp->if_pcp))
472 return (0);
473
474 if (PFIL_HOOKED_OUT(V_link_pfil_head))
475 switch (pfil_run_hooks(V_link_pfil_head, &m, ifp, PFIL_OUT,
476 NULL)) {
477 case PFIL_DROPPED:
478 return (EACCES);
479 case PFIL_CONSUMED:
480 return (0);
481 }
482
483 #ifdef EXPERIMENTAL
484 #if defined(INET6) && defined(INET)
485 /* draft-ietf-6man-ipv6only-flag */
486 /* Catch ETHERTYPE_IP, and ETHERTYPE_[REV]ARP if we are v6-only. */
487 if ((ND_IFINFO(ifp)->flags & ND6_IFF_IPV6_ONLY_MASK) != 0) {
488 struct ether_header *eh;
489
490 eh = mtod(m, struct ether_header *);
491 switch (ntohs(eh->ether_type)) {
492 case ETHERTYPE_IP:
493 case ETHERTYPE_ARP:
494 case ETHERTYPE_REVARP:
495 m_freem(m);
496 return (EAFNOSUPPORT);
497 /* NOTREACHED */
498 break;
499 };
500 }
501 #endif
502 #endif
503
504 /*
505 * Queue message on interface, update output statistics if
506 * successful, and start output if interface not yet active.
507 */
508 return ((ifp->if_transmit)(ifp, m));
509 }
510
511 /*
512 * Process a received Ethernet packet; the packet is in the
513 * mbuf chain m with the ethernet header at the front.
514 */
515 static void
ether_input_internal(struct ifnet * ifp,struct mbuf * m)516 ether_input_internal(struct ifnet *ifp, struct mbuf *m)
517 {
518 struct ether_header *eh;
519 u_short etype;
520
521 if ((ifp->if_flags & IFF_UP) == 0) {
522 m_freem(m);
523 return;
524 }
525 #ifdef DIAGNOSTIC
526 if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
527 if_printf(ifp, "discard frame at !IFF_DRV_RUNNING\n");
528 m_freem(m);
529 return;
530 }
531 #endif
532 if (__predict_false(m->m_len < ETHER_HDR_LEN)) {
533 /* Drivers should pullup and ensure the mbuf is valid */
534 if_printf(ifp, "discard frame w/o leading ethernet "
535 "header (len %d pkt len %d)\n",
536 m->m_len, m->m_pkthdr.len);
537 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
538 m_freem(m);
539 return;
540 }
541 eh = mtod(m, struct ether_header *);
542 etype = ntohs(eh->ether_type);
543 random_harvest_queue_ether(m, sizeof(*m));
544
545 #ifdef EXPERIMENTAL
546 #if defined(INET6) && defined(INET)
547 /* draft-ietf-6man-ipv6only-flag */
548 /* Catch ETHERTYPE_IP, and ETHERTYPE_[REV]ARP if we are v6-only. */
549 if ((ND_IFINFO(ifp)->flags & ND6_IFF_IPV6_ONLY_MASK) != 0) {
550 switch (etype) {
551 case ETHERTYPE_IP:
552 case ETHERTYPE_ARP:
553 case ETHERTYPE_REVARP:
554 m_freem(m);
555 return;
556 /* NOTREACHED */
557 break;
558 };
559 }
560 #endif
561 #endif
562
563 CURVNET_SET_QUIET(ifp->if_vnet);
564
565 if (ETHER_IS_MULTICAST(eh->ether_dhost)) {
566 if (ETHER_IS_BROADCAST(eh->ether_dhost))
567 m->m_flags |= M_BCAST;
568 else
569 m->m_flags |= M_MCAST;
570 if_inc_counter(ifp, IFCOUNTER_IMCASTS, 1);
571 }
572
573 #ifdef MAC
574 /*
575 * Tag the mbuf with an appropriate MAC label before any other
576 * consumers can get to it.
577 */
578 mac_ifnet_create_mbuf(ifp, m);
579 #endif
580
581 /*
582 * Give bpf a chance at the packet.
583 */
584 ETHER_BPF_MTAP(ifp, m);
585
586 /*
587 * If the CRC is still on the packet, trim it off. We do this once
588 * and once only in case we are re-entered. Nothing else on the
589 * Ethernet receive path expects to see the FCS.
590 */
591 if (m->m_flags & M_HASFCS) {
592 m_adj(m, -ETHER_CRC_LEN);
593 m->m_flags &= ~M_HASFCS;
594 }
595
596 if (!(ifp->if_capenable & IFCAP_HWSTATS))
597 if_inc_counter(ifp, IFCOUNTER_IBYTES, m->m_pkthdr.len);
598
599 /* Allow monitor mode to claim this frame, after stats are updated. */
600 if (ifp->if_flags & IFF_MONITOR) {
601 m_freem(m);
602 CURVNET_RESTORE();
603 return;
604 }
605
606 /* Handle input from a lagg(4) port */
607 if (ifp->if_type == IFT_IEEE8023ADLAG) {
608 KASSERT(lagg_input_ethernet_p != NULL,
609 ("%s: if_lagg not loaded!", __func__));
610 m = (*lagg_input_ethernet_p)(ifp, m);
611 if (m != NULL)
612 ifp = m->m_pkthdr.rcvif;
613 else {
614 CURVNET_RESTORE();
615 return;
616 }
617 }
618
619 /*
620 * If the hardware did not process an 802.1Q tag, do this now,
621 * to allow 802.1P priority frames to be passed to the main input
622 * path correctly.
623 */
624 if ((m->m_flags & M_VLANTAG) == 0 &&
625 ((etype == ETHERTYPE_VLAN) || (etype == ETHERTYPE_QINQ))) {
626 struct ether_vlan_header *evl;
627
628 if (m->m_len < sizeof(*evl) &&
629 (m = m_pullup(m, sizeof(*evl))) == NULL) {
630 #ifdef DIAGNOSTIC
631 if_printf(ifp, "cannot pullup VLAN header\n");
632 #endif
633 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
634 CURVNET_RESTORE();
635 return;
636 }
637
638 evl = mtod(m, struct ether_vlan_header *);
639 m->m_pkthdr.ether_vtag = ntohs(evl->evl_tag);
640 m->m_flags |= M_VLANTAG;
641
642 bcopy((char *)evl, (char *)evl + ETHER_VLAN_ENCAP_LEN,
643 ETHER_HDR_LEN - ETHER_TYPE_LEN);
644 m_adj(m, ETHER_VLAN_ENCAP_LEN);
645 eh = mtod(m, struct ether_header *);
646 }
647
648 M_SETFIB(m, ifp->if_fib);
649
650 /* Allow ng_ether(4) to claim this frame. */
651 if (ifp->if_l2com != NULL) {
652 KASSERT(ng_ether_input_p != NULL,
653 ("%s: ng_ether_input_p is NULL", __func__));
654 m->m_flags &= ~M_PROMISC;
655 (*ng_ether_input_p)(ifp, &m);
656 if (m == NULL) {
657 CURVNET_RESTORE();
658 return;
659 }
660 eh = mtod(m, struct ether_header *);
661 }
662
663 /*
664 * Allow if_bridge(4) to claim this frame.
665 * The BRIDGE_INPUT() macro will update ifp if the bridge changed it
666 * and the frame should be delivered locally.
667 */
668 if (ifp->if_bridge != NULL) {
669 m->m_flags &= ~M_PROMISC;
670 BRIDGE_INPUT(ifp, m);
671 if (m == NULL) {
672 CURVNET_RESTORE();
673 return;
674 }
675 eh = mtod(m, struct ether_header *);
676 }
677
678 #if defined(INET) || defined(INET6)
679 /*
680 * Clear M_PROMISC on frame so that carp(4) will see it when the
681 * mbuf flows up to Layer 3.
682 * FreeBSD's implementation of carp(4) uses the inprotosw
683 * to dispatch IPPROTO_CARP. carp(4) also allocates its own
684 * Ethernet addresses of the form 00:00:5e:00:01:xx, which
685 * is outside the scope of the M_PROMISC test below.
686 * TODO: Maintain a hash table of ethernet addresses other than
687 * ether_dhost which may be active on this ifp.
688 */
689 if (ifp->if_carp && (*carp_forus_p)(ifp, eh->ether_dhost)) {
690 m->m_flags &= ~M_PROMISC;
691 } else
692 #endif
693 {
694 /*
695 * If the frame received was not for our MAC address, set the
696 * M_PROMISC flag on the mbuf chain. The frame may need to
697 * be seen by the rest of the Ethernet input path in case of
698 * re-entry (e.g. bridge, vlan, netgraph) but should not be
699 * seen by upper protocol layers.
700 */
701 if (!ETHER_IS_MULTICAST(eh->ether_dhost) &&
702 bcmp(IF_LLADDR(ifp), eh->ether_dhost, ETHER_ADDR_LEN) != 0)
703 m->m_flags |= M_PROMISC;
704 }
705
706 ether_demux(ifp, m);
707 CURVNET_RESTORE();
708 }
709
710 /*
711 * Ethernet input dispatch; by default, direct dispatch here regardless of
712 * global configuration. However, if RSS is enabled, hook up RSS affinity
713 * so that when deferred or hybrid dispatch is enabled, we can redistribute
714 * load based on RSS.
715 *
716 * XXXRW: Would be nice if the ifnet passed up a flag indicating whether or
717 * not it had already done work distribution via multi-queue. Then we could
718 * direct dispatch in the event load balancing was already complete and
719 * handle the case of interfaces with different capabilities better.
720 *
721 * XXXRW: Sort of want an M_DISTRIBUTED flag to avoid multiple distributions
722 * at multiple layers?
723 *
724 * XXXRW: For now, enable all this only if RSS is compiled in, although it
725 * works fine without RSS. Need to characterise the performance overhead
726 * of the detour through the netisr code in the event the result is always
727 * direct dispatch.
728 */
729 static void
ether_nh_input(struct mbuf * m)730 ether_nh_input(struct mbuf *m)
731 {
732
733 M_ASSERTPKTHDR(m);
734 KASSERT(m->m_pkthdr.rcvif != NULL,
735 ("%s: NULL interface pointer", __func__));
736 ether_input_internal(m->m_pkthdr.rcvif, m);
737 }
738
739 static struct netisr_handler ether_nh = {
740 .nh_name = "ether",
741 .nh_handler = ether_nh_input,
742 .nh_proto = NETISR_ETHER,
743 #ifdef RSS
744 .nh_policy = NETISR_POLICY_CPU,
745 .nh_dispatch = NETISR_DISPATCH_DIRECT,
746 .nh_m2cpuid = rss_m2cpuid,
747 #else
748 .nh_policy = NETISR_POLICY_SOURCE,
749 .nh_dispatch = NETISR_DISPATCH_DIRECT,
750 #endif
751 };
752
753 static void
ether_init(__unused void * arg)754 ether_init(__unused void *arg)
755 {
756
757 netisr_register(ðer_nh);
758 }
759 SYSINIT(ether, SI_SUB_INIT_IF, SI_ORDER_ANY, ether_init, NULL);
760
761 static void
vnet_ether_init(__unused void * arg)762 vnet_ether_init(__unused void *arg)
763 {
764 struct pfil_head_args args;
765
766 args.pa_version = PFIL_VERSION;
767 args.pa_flags = PFIL_IN | PFIL_OUT;
768 args.pa_type = PFIL_TYPE_ETHERNET;
769 args.pa_headname = PFIL_ETHER_NAME;
770 V_link_pfil_head = pfil_head_register(&args);
771
772 #ifdef VIMAGE
773 netisr_register_vnet(ðer_nh);
774 #endif
775 }
776 VNET_SYSINIT(vnet_ether_init, SI_SUB_PROTO_IF, SI_ORDER_ANY,
777 vnet_ether_init, NULL);
778
779 #ifdef VIMAGE
780 static void
vnet_ether_pfil_destroy(__unused void * arg)781 vnet_ether_pfil_destroy(__unused void *arg)
782 {
783
784 pfil_head_unregister(V_link_pfil_head);
785 }
786 VNET_SYSUNINIT(vnet_ether_pfil_uninit, SI_SUB_PROTO_PFIL, SI_ORDER_ANY,
787 vnet_ether_pfil_destroy, NULL);
788
789 static void
vnet_ether_destroy(__unused void * arg)790 vnet_ether_destroy(__unused void *arg)
791 {
792
793 netisr_unregister_vnet(ðer_nh);
794 }
795 VNET_SYSUNINIT(vnet_ether_uninit, SI_SUB_PROTO_IF, SI_ORDER_ANY,
796 vnet_ether_destroy, NULL);
797 #endif
798
799 static void
ether_input(struct ifnet * ifp,struct mbuf * m)800 ether_input(struct ifnet *ifp, struct mbuf *m)
801 {
802 struct epoch_tracker et;
803 struct mbuf *mn;
804 bool needs_epoch;
805
806 needs_epoch = !(ifp->if_flags & IFF_KNOWSEPOCH);
807
808 /*
809 * The drivers are allowed to pass in a chain of packets linked with
810 * m_nextpkt. We split them up into separate packets here and pass
811 * them up. This allows the drivers to amortize the receive lock.
812 */
813 CURVNET_SET_QUIET(ifp->if_vnet);
814 if (__predict_false(needs_epoch))
815 NET_EPOCH_ENTER(et);
816 while (m) {
817 mn = m->m_nextpkt;
818 m->m_nextpkt = NULL;
819
820 /*
821 * We will rely on rcvif being set properly in the deferred
822 * context, so assert it is correct here.
823 */
824 MPASS((m->m_pkthdr.csum_flags & CSUM_SND_TAG) == 0);
825 KASSERT(m->m_pkthdr.rcvif == ifp, ("%s: ifnet mismatch m %p "
826 "rcvif %p ifp %p", __func__, m, m->m_pkthdr.rcvif, ifp));
827 netisr_dispatch(NETISR_ETHER, m);
828 m = mn;
829 }
830 if (__predict_false(needs_epoch))
831 NET_EPOCH_EXIT(et);
832 CURVNET_RESTORE();
833 }
834
835 /*
836 * Upper layer processing for a received Ethernet packet.
837 */
838 void
ether_demux(struct ifnet * ifp,struct mbuf * m)839 ether_demux(struct ifnet *ifp, struct mbuf *m)
840 {
841 struct ether_header *eh;
842 int i, isr;
843 u_short ether_type;
844
845 NET_EPOCH_ASSERT();
846 KASSERT(ifp != NULL, ("%s: NULL interface pointer", __func__));
847
848 /* Do not grab PROMISC frames in case we are re-entered. */
849 if (PFIL_HOOKED_IN(V_link_pfil_head) && !(m->m_flags & M_PROMISC)) {
850 i = pfil_run_hooks(V_link_pfil_head, &m, ifp, PFIL_IN, NULL);
851 if (i != 0 || m == NULL)
852 return;
853 }
854
855 eh = mtod(m, struct ether_header *);
856 ether_type = ntohs(eh->ether_type);
857
858 /*
859 * If this frame has a VLAN tag other than 0, call vlan_input()
860 * if its module is loaded. Otherwise, drop.
861 */
862 if ((m->m_flags & M_VLANTAG) &&
863 EVL_VLANOFTAG(m->m_pkthdr.ether_vtag) != 0) {
864 if (ifp->if_vlantrunk == NULL) {
865 if_inc_counter(ifp, IFCOUNTER_NOPROTO, 1);
866 m_freem(m);
867 return;
868 }
869 KASSERT(vlan_input_p != NULL,("%s: VLAN not loaded!",
870 __func__));
871 /* Clear before possibly re-entering ether_input(). */
872 m->m_flags &= ~M_PROMISC;
873 (*vlan_input_p)(ifp, m);
874 return;
875 }
876
877 /*
878 * Pass promiscuously received frames to the upper layer if the user
879 * requested this by setting IFF_PPROMISC. Otherwise, drop them.
880 */
881 if ((ifp->if_flags & IFF_PPROMISC) == 0 && (m->m_flags & M_PROMISC)) {
882 m_freem(m);
883 return;
884 }
885
886 /*
887 * Reset layer specific mbuf flags to avoid confusing upper layers.
888 */
889 m->m_flags &= ~M_VLANTAG;
890 m_clrprotoflags(m);
891
892 /*
893 * Dispatch frame to upper layer.
894 */
895 switch (ether_type) {
896 #ifdef INET
897 case ETHERTYPE_IP:
898 isr = NETISR_IP;
899 break;
900
901 case ETHERTYPE_ARP:
902 if (ifp->if_flags & IFF_NOARP) {
903 /* Discard packet if ARP is disabled on interface */
904 m_freem(m);
905 return;
906 }
907 isr = NETISR_ARP;
908 break;
909 #endif
910 #ifdef INET6
911 case ETHERTYPE_IPV6:
912 isr = NETISR_IPV6;
913 break;
914 #endif
915 default:
916 goto discard;
917 }
918
919 /* Strip off Ethernet header. */
920 m_adj(m, ETHER_HDR_LEN);
921
922 netisr_dispatch(isr, m);
923 return;
924
925 discard:
926 /*
927 * Packet is to be discarded. If netgraph is present,
928 * hand the packet to it for last chance processing;
929 * otherwise dispose of it.
930 */
931 if (ifp->if_l2com != NULL) {
932 KASSERT(ng_ether_input_orphan_p != NULL,
933 ("ng_ether_input_orphan_p is NULL"));
934 (*ng_ether_input_orphan_p)(ifp, m);
935 return;
936 }
937 m_freem(m);
938 }
939
940 /*
941 * Convert Ethernet address to printable (loggable) representation.
942 * This routine is for compatibility; it's better to just use
943 *
944 * printf("%6D", <pointer to address>, ":");
945 *
946 * since there's no static buffer involved.
947 */
948 char *
ether_sprintf(const u_char * ap)949 ether_sprintf(const u_char *ap)
950 {
951 static char etherbuf[18];
952 snprintf(etherbuf, sizeof (etherbuf), "%6D", ap, ":");
953 return (etherbuf);
954 }
955
956 /*
957 * Perform common duties while attaching to interface list
958 */
959 void
ether_ifattach(struct ifnet * ifp,const u_int8_t * lla)960 ether_ifattach(struct ifnet *ifp, const u_int8_t *lla)
961 {
962 int i;
963 struct ifaddr *ifa;
964 struct sockaddr_dl *sdl;
965
966 ifp->if_addrlen = ETHER_ADDR_LEN;
967 ifp->if_hdrlen = ETHER_HDR_LEN;
968 ifp->if_mtu = ETHERMTU;
969 if_attach(ifp);
970 ifp->if_output = ether_output;
971 ifp->if_input = ether_input;
972 ifp->if_resolvemulti = ether_resolvemulti;
973 ifp->if_requestencap = ether_requestencap;
974 #ifdef VIMAGE
975 ifp->if_reassign = ether_reassign;
976 #endif
977 if (ifp->if_baudrate == 0)
978 ifp->if_baudrate = IF_Mbps(10); /* just a default */
979 ifp->if_broadcastaddr = etherbroadcastaddr;
980
981 ifa = ifp->if_addr;
982 KASSERT(ifa != NULL, ("%s: no lladdr!\n", __func__));
983 sdl = (struct sockaddr_dl *)ifa->ifa_addr;
984 sdl->sdl_type = IFT_ETHER;
985 sdl->sdl_alen = ifp->if_addrlen;
986 bcopy(lla, LLADDR(sdl), ifp->if_addrlen);
987
988 if (ifp->if_hw_addr != NULL)
989 bcopy(lla, ifp->if_hw_addr, ifp->if_addrlen);
990
991 bpfattach(ifp, DLT_EN10MB, ETHER_HDR_LEN);
992 if (ng_ether_attach_p != NULL)
993 (*ng_ether_attach_p)(ifp);
994
995 /* Announce Ethernet MAC address if non-zero. */
996 for (i = 0; i < ifp->if_addrlen; i++)
997 if (lla[i] != 0)
998 break;
999 if (i != ifp->if_addrlen)
1000 if_printf(ifp, "Ethernet address: %6D\n", lla, ":");
1001
1002 uuid_ether_add(LLADDR(sdl));
1003
1004 /* Add necessary bits are setup; announce it now. */
1005 EVENTHANDLER_INVOKE(ether_ifattach_event, ifp);
1006 if (IS_DEFAULT_VNET(curvnet))
1007 devctl_notify("ETHERNET", ifp->if_xname, "IFATTACH", NULL);
1008 }
1009
1010 /*
1011 * Perform common duties while detaching an Ethernet interface
1012 */
1013 void
ether_ifdetach(struct ifnet * ifp)1014 ether_ifdetach(struct ifnet *ifp)
1015 {
1016 struct sockaddr_dl *sdl;
1017
1018 sdl = (struct sockaddr_dl *)(ifp->if_addr->ifa_addr);
1019 uuid_ether_del(LLADDR(sdl));
1020
1021 if (ifp->if_l2com != NULL) {
1022 KASSERT(ng_ether_detach_p != NULL,
1023 ("ng_ether_detach_p is NULL"));
1024 (*ng_ether_detach_p)(ifp);
1025 }
1026
1027 bpfdetach(ifp);
1028 if_detach(ifp);
1029 }
1030
1031 #ifdef VIMAGE
1032 void
ether_reassign(struct ifnet * ifp,struct vnet * new_vnet,char * unused __unused)1033 ether_reassign(struct ifnet *ifp, struct vnet *new_vnet, char *unused __unused)
1034 {
1035
1036 if (ifp->if_l2com != NULL) {
1037 KASSERT(ng_ether_detach_p != NULL,
1038 ("ng_ether_detach_p is NULL"));
1039 (*ng_ether_detach_p)(ifp);
1040 }
1041
1042 if (ng_ether_attach_p != NULL) {
1043 CURVNET_SET_QUIET(new_vnet);
1044 (*ng_ether_attach_p)(ifp);
1045 CURVNET_RESTORE();
1046 }
1047 }
1048 #endif
1049
1050 SYSCTL_DECL(_net_link);
1051 SYSCTL_NODE(_net_link, IFT_ETHER, ether, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1052 "Ethernet");
1053
1054 #if 0
1055 /*
1056 * This is for reference. We have a table-driven version
1057 * of the little-endian crc32 generator, which is faster
1058 * than the double-loop.
1059 */
1060 uint32_t
1061 ether_crc32_le(const uint8_t *buf, size_t len)
1062 {
1063 size_t i;
1064 uint32_t crc;
1065 int bit;
1066 uint8_t data;
1067
1068 crc = 0xffffffff; /* initial value */
1069
1070 for (i = 0; i < len; i++) {
1071 for (data = *buf++, bit = 0; bit < 8; bit++, data >>= 1) {
1072 carry = (crc ^ data) & 1;
1073 crc >>= 1;
1074 if (carry)
1075 crc = (crc ^ ETHER_CRC_POLY_LE);
1076 }
1077 }
1078
1079 return (crc);
1080 }
1081 #else
1082 uint32_t
ether_crc32_le(const uint8_t * buf,size_t len)1083 ether_crc32_le(const uint8_t *buf, size_t len)
1084 {
1085 static const uint32_t crctab[] = {
1086 0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
1087 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
1088 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c,
1089 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c
1090 };
1091 size_t i;
1092 uint32_t crc;
1093
1094 crc = 0xffffffff; /* initial value */
1095
1096 for (i = 0; i < len; i++) {
1097 crc ^= buf[i];
1098 crc = (crc >> 4) ^ crctab[crc & 0xf];
1099 crc = (crc >> 4) ^ crctab[crc & 0xf];
1100 }
1101
1102 return (crc);
1103 }
1104 #endif
1105
1106 uint32_t
ether_crc32_be(const uint8_t * buf,size_t len)1107 ether_crc32_be(const uint8_t *buf, size_t len)
1108 {
1109 size_t i;
1110 uint32_t crc, carry;
1111 int bit;
1112 uint8_t data;
1113
1114 crc = 0xffffffff; /* initial value */
1115
1116 for (i = 0; i < len; i++) {
1117 for (data = *buf++, bit = 0; bit < 8; bit++, data >>= 1) {
1118 carry = ((crc & 0x80000000) ? 1 : 0) ^ (data & 0x01);
1119 crc <<= 1;
1120 if (carry)
1121 crc = (crc ^ ETHER_CRC_POLY_BE) | carry;
1122 }
1123 }
1124
1125 return (crc);
1126 }
1127
1128 int
ether_ioctl(struct ifnet * ifp,u_long command,caddr_t data)1129 ether_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
1130 {
1131 struct ifaddr *ifa = (struct ifaddr *) data;
1132 struct ifreq *ifr = (struct ifreq *) data;
1133 int error = 0;
1134
1135 switch (command) {
1136 case SIOCSIFADDR:
1137 ifp->if_flags |= IFF_UP;
1138
1139 switch (ifa->ifa_addr->sa_family) {
1140 #ifdef INET
1141 case AF_INET:
1142 ifp->if_init(ifp->if_softc); /* before arpwhohas */
1143 arp_ifinit(ifp, ifa);
1144 break;
1145 #endif
1146 default:
1147 ifp->if_init(ifp->if_softc);
1148 break;
1149 }
1150 break;
1151
1152 case SIOCGIFADDR:
1153 bcopy(IF_LLADDR(ifp), &ifr->ifr_addr.sa_data[0],
1154 ETHER_ADDR_LEN);
1155 break;
1156
1157 case SIOCSIFMTU:
1158 /*
1159 * Set the interface MTU.
1160 */
1161 if (ifr->ifr_mtu > ETHERMTU) {
1162 error = EINVAL;
1163 } else {
1164 ifp->if_mtu = ifr->ifr_mtu;
1165 }
1166 break;
1167
1168 case SIOCSLANPCP:
1169 error = priv_check(curthread, PRIV_NET_SETLANPCP);
1170 if (error != 0)
1171 break;
1172 if (ifr->ifr_lan_pcp > 7 &&
1173 ifr->ifr_lan_pcp != IFNET_PCP_NONE) {
1174 error = EINVAL;
1175 } else {
1176 ifp->if_pcp = ifr->ifr_lan_pcp;
1177 /* broadcast event about PCP change */
1178 EVENTHANDLER_INVOKE(ifnet_event, ifp, IFNET_EVENT_PCP);
1179 }
1180 break;
1181
1182 case SIOCGLANPCP:
1183 ifr->ifr_lan_pcp = ifp->if_pcp;
1184 break;
1185
1186 default:
1187 error = EINVAL; /* XXX netbsd has ENOTTY??? */
1188 break;
1189 }
1190 return (error);
1191 }
1192
1193 static int
ether_resolvemulti(struct ifnet * ifp,struct sockaddr ** llsa,struct sockaddr * sa)1194 ether_resolvemulti(struct ifnet *ifp, struct sockaddr **llsa,
1195 struct sockaddr *sa)
1196 {
1197 struct sockaddr_dl *sdl;
1198 #ifdef INET
1199 struct sockaddr_in *sin;
1200 #endif
1201 #ifdef INET6
1202 struct sockaddr_in6 *sin6;
1203 #endif
1204 u_char *e_addr;
1205
1206 switch(sa->sa_family) {
1207 case AF_LINK:
1208 /*
1209 * No mapping needed. Just check that it's a valid MC address.
1210 */
1211 sdl = (struct sockaddr_dl *)sa;
1212 e_addr = LLADDR(sdl);
1213 if (!ETHER_IS_MULTICAST(e_addr))
1214 return EADDRNOTAVAIL;
1215 *llsa = NULL;
1216 return 0;
1217
1218 #ifdef INET
1219 case AF_INET:
1220 sin = (struct sockaddr_in *)sa;
1221 if (!IN_MULTICAST(ntohl(sin->sin_addr.s_addr)))
1222 return EADDRNOTAVAIL;
1223 sdl = link_init_sdl(ifp, *llsa, IFT_ETHER);
1224 sdl->sdl_alen = ETHER_ADDR_LEN;
1225 e_addr = LLADDR(sdl);
1226 ETHER_MAP_IP_MULTICAST(&sin->sin_addr, e_addr);
1227 *llsa = (struct sockaddr *)sdl;
1228 return 0;
1229 #endif
1230 #ifdef INET6
1231 case AF_INET6:
1232 sin6 = (struct sockaddr_in6 *)sa;
1233 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1234 /*
1235 * An IP6 address of 0 means listen to all
1236 * of the Ethernet multicast address used for IP6.
1237 * (This is used for multicast routers.)
1238 */
1239 ifp->if_flags |= IFF_ALLMULTI;
1240 *llsa = NULL;
1241 return 0;
1242 }
1243 if (!IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr))
1244 return EADDRNOTAVAIL;
1245 sdl = link_init_sdl(ifp, *llsa, IFT_ETHER);
1246 sdl->sdl_alen = ETHER_ADDR_LEN;
1247 e_addr = LLADDR(sdl);
1248 ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, e_addr);
1249 *llsa = (struct sockaddr *)sdl;
1250 return 0;
1251 #endif
1252
1253 default:
1254 /*
1255 * Well, the text isn't quite right, but it's the name
1256 * that counts...
1257 */
1258 return EAFNOSUPPORT;
1259 }
1260 }
1261
1262 static moduledata_t ether_mod = {
1263 .name = "ether",
1264 };
1265
1266 void
ether_vlan_mtap(struct bpf_if * bp,struct mbuf * m,void * data,u_int dlen)1267 ether_vlan_mtap(struct bpf_if *bp, struct mbuf *m, void *data, u_int dlen)
1268 {
1269 struct ether_vlan_header vlan;
1270 struct mbuf mv, mb;
1271
1272 KASSERT((m->m_flags & M_VLANTAG) != 0,
1273 ("%s: vlan information not present", __func__));
1274 KASSERT(m->m_len >= sizeof(struct ether_header),
1275 ("%s: mbuf not large enough for header", __func__));
1276 bcopy(mtod(m, char *), &vlan, sizeof(struct ether_header));
1277 vlan.evl_proto = vlan.evl_encap_proto;
1278 vlan.evl_encap_proto = htons(ETHERTYPE_VLAN);
1279 vlan.evl_tag = htons(m->m_pkthdr.ether_vtag);
1280 m->m_len -= sizeof(struct ether_header);
1281 m->m_data += sizeof(struct ether_header);
1282 /*
1283 * If a data link has been supplied by the caller, then we will need to
1284 * re-create a stack allocated mbuf chain with the following structure:
1285 *
1286 * (1) mbuf #1 will contain the supplied data link
1287 * (2) mbuf #2 will contain the vlan header
1288 * (3) mbuf #3 will contain the original mbuf's packet data
1289 *
1290 * Otherwise, submit the packet and vlan header via bpf_mtap2().
1291 */
1292 if (data != NULL) {
1293 mv.m_next = m;
1294 mv.m_data = (caddr_t)&vlan;
1295 mv.m_len = sizeof(vlan);
1296 mb.m_next = &mv;
1297 mb.m_data = data;
1298 mb.m_len = dlen;
1299 bpf_mtap(bp, &mb);
1300 } else
1301 bpf_mtap2(bp, &vlan, sizeof(vlan), m);
1302 m->m_len += sizeof(struct ether_header);
1303 m->m_data -= sizeof(struct ether_header);
1304 }
1305
1306 struct mbuf *
ether_vlanencap_proto(struct mbuf * m,uint16_t tag,uint16_t proto)1307 ether_vlanencap_proto(struct mbuf *m, uint16_t tag, uint16_t proto)
1308 {
1309 struct ether_vlan_header *evl;
1310
1311 M_PREPEND(m, ETHER_VLAN_ENCAP_LEN, M_NOWAIT);
1312 if (m == NULL)
1313 return (NULL);
1314 /* M_PREPEND takes care of m_len, m_pkthdr.len for us */
1315
1316 if (m->m_len < sizeof(*evl)) {
1317 m = m_pullup(m, sizeof(*evl));
1318 if (m == NULL)
1319 return (NULL);
1320 }
1321
1322 /*
1323 * Transform the Ethernet header into an Ethernet header
1324 * with 802.1Q encapsulation.
1325 */
1326 evl = mtod(m, struct ether_vlan_header *);
1327 bcopy((char *)evl + ETHER_VLAN_ENCAP_LEN,
1328 (char *)evl, ETHER_HDR_LEN - ETHER_TYPE_LEN);
1329 evl->evl_encap_proto = htons(proto);
1330 evl->evl_tag = htons(tag);
1331 return (m);
1332 }
1333
1334 static SYSCTL_NODE(_net_link, IFT_L2VLAN, vlan, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1335 "IEEE 802.1Q VLAN");
1336 static SYSCTL_NODE(_net_link_vlan, PF_LINK, link,
1337 CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1338 "for consistency");
1339
1340 VNET_DEFINE_STATIC(int, soft_pad);
1341 #define V_soft_pad VNET(soft_pad)
1342 SYSCTL_INT(_net_link_vlan, OID_AUTO, soft_pad, CTLFLAG_RW | CTLFLAG_VNET,
1343 &VNET_NAME(soft_pad), 0,
1344 "pad short frames before tagging");
1345
1346 /*
1347 * For now, make preserving PCP via an mbuf tag optional, as it increases
1348 * per-packet memory allocations and frees. In the future, it would be
1349 * preferable to reuse ether_vtag for this, or similar.
1350 */
1351 int vlan_mtag_pcp = 0;
1352 SYSCTL_INT(_net_link_vlan, OID_AUTO, mtag_pcp, CTLFLAG_RW,
1353 &vlan_mtag_pcp, 0,
1354 "Retain VLAN PCP information as packets are passed up the stack");
1355
1356 static inline bool
ether_do_pcp(struct ifnet * ifp,struct mbuf * m)1357 ether_do_pcp(struct ifnet *ifp, struct mbuf *m)
1358 {
1359 if (ifp->if_type == IFT_L2VLAN)
1360 return (false);
1361 if (ifp->if_pcp != IFNET_PCP_NONE || (m->m_flags & M_VLANTAG) != 0)
1362 return (true);
1363 if (vlan_mtag_pcp &&
1364 m_tag_locate(m, MTAG_8021Q, MTAG_8021Q_PCP_OUT, NULL) != NULL)
1365 return (true);
1366 return (false);
1367 }
1368
1369 bool
ether_8021q_frame(struct mbuf ** mp,struct ifnet * ife,struct ifnet * p,const struct ether_8021q_tag * qtag)1370 ether_8021q_frame(struct mbuf **mp, struct ifnet *ife, struct ifnet *p,
1371 const struct ether_8021q_tag *qtag)
1372 {
1373 struct m_tag *mtag;
1374 int n;
1375 uint16_t tag;
1376 uint8_t pcp = qtag->pcp;
1377 static const char pad[8]; /* just zeros */
1378
1379 /*
1380 * Pad the frame to the minimum size allowed if told to.
1381 * This option is in accord with IEEE Std 802.1Q, 2003 Ed.,
1382 * paragraph C.4.4.3.b. It can help to work around buggy
1383 * bridges that violate paragraph C.4.4.3.a from the same
1384 * document, i.e., fail to pad short frames after untagging.
1385 * E.g., a tagged frame 66 bytes long (incl. FCS) is OK, but
1386 * untagging it will produce a 62-byte frame, which is a runt
1387 * and requires padding. There are VLAN-enabled network
1388 * devices that just discard such runts instead or mishandle
1389 * them somehow.
1390 */
1391 if (V_soft_pad && p->if_type == IFT_ETHER) {
1392 for (n = ETHERMIN + ETHER_HDR_LEN - (*mp)->m_pkthdr.len;
1393 n > 0; n -= sizeof(pad)) {
1394 if (!m_append(*mp, min(n, sizeof(pad)), pad))
1395 break;
1396 }
1397 if (n > 0) {
1398 m_freem(*mp);
1399 *mp = NULL;
1400 if_printf(ife, "cannot pad short frame");
1401 return (false);
1402 }
1403 }
1404
1405 /*
1406 * If PCP is set in mbuf, use it
1407 */
1408 if ((*mp)->m_flags & M_VLANTAG) {
1409 pcp = EVL_PRIOFTAG((*mp)->m_pkthdr.ether_vtag);
1410 }
1411
1412 /*
1413 * If underlying interface can do VLAN tag insertion itself,
1414 * just pass the packet along. However, we need some way to
1415 * tell the interface where the packet came from so that it
1416 * knows how to find the VLAN tag to use, so we attach a
1417 * packet tag that holds it.
1418 */
1419 if (vlan_mtag_pcp && (mtag = m_tag_locate(*mp, MTAG_8021Q,
1420 MTAG_8021Q_PCP_OUT, NULL)) != NULL)
1421 tag = EVL_MAKETAG(qtag->vid, *(uint8_t *)(mtag + 1), 0);
1422 else
1423 tag = EVL_MAKETAG(qtag->vid, pcp, 0);
1424 if ((p->if_capenable & IFCAP_VLAN_HWTAGGING) &&
1425 (qtag->proto == ETHERTYPE_VLAN)) {
1426 (*mp)->m_pkthdr.ether_vtag = tag;
1427 (*mp)->m_flags |= M_VLANTAG;
1428 } else {
1429 *mp = ether_vlanencap_proto(*mp, tag, qtag->proto);
1430 if (*mp == NULL) {
1431 if_printf(ife, "unable to prepend 802.1Q header");
1432 return (false);
1433 }
1434 (*mp)->m_flags &= ~M_VLANTAG;
1435 }
1436 return (true);
1437 }
1438
1439 /*
1440 * Allocate an address from the FreeBSD Foundation OUI. This uses a
1441 * cryptographic hash function on the containing jail's name, UUID and the
1442 * interface name to attempt to provide a unique but stable address.
1443 * Pseudo-interfaces which require a MAC address should use this function to
1444 * allocate non-locally-administered addresses.
1445 */
1446 void
ether_gen_addr_byname(const char * nameunit,struct ether_addr * hwaddr)1447 ether_gen_addr_byname(const char *nameunit, struct ether_addr *hwaddr)
1448 {
1449 SHA1_CTX ctx;
1450 char *buf;
1451 char uuid[HOSTUUIDLEN + 1];
1452 uint64_t addr;
1453 int i, sz;
1454 char digest[SHA1_RESULTLEN];
1455 char jailname[MAXHOSTNAMELEN];
1456
1457 getcredhostuuid(curthread->td_ucred, uuid, sizeof(uuid));
1458 if (strncmp(uuid, DEFAULT_HOSTUUID, sizeof(uuid)) == 0) {
1459 /* Fall back to a random mac address. */
1460 goto rando;
1461 }
1462
1463 /* If each (vnet) jail would also have a unique hostuuid this would not
1464 * be necessary. */
1465 getjailname(curthread->td_ucred, jailname, sizeof(jailname));
1466 sz = asprintf(&buf, M_TEMP, "%s-%s-%s", uuid, nameunit,
1467 jailname);
1468 if (sz < 0) {
1469 /* Fall back to a random mac address. */
1470 goto rando;
1471 }
1472
1473 SHA1Init(&ctx);
1474 SHA1Update(&ctx, buf, sz);
1475 SHA1Final(digest, &ctx);
1476 free(buf, M_TEMP);
1477
1478 addr = ((digest[0] << 16) | (digest[1] << 8) | digest[2]) &
1479 OUI_FREEBSD_GENERATED_MASK;
1480 addr = OUI_FREEBSD(addr);
1481 for (i = 0; i < ETHER_ADDR_LEN; ++i) {
1482 hwaddr->octet[i] = addr >> ((ETHER_ADDR_LEN - i - 1) * 8) &
1483 0xFF;
1484 }
1485
1486 return;
1487 rando:
1488 arc4rand(hwaddr, sizeof(*hwaddr), 0);
1489 /* Unicast */
1490 hwaddr->octet[0] &= 0xFE;
1491 /* Locally administered. */
1492 hwaddr->octet[0] |= 0x02;
1493 }
1494
1495 void
ether_gen_addr(struct ifnet * ifp,struct ether_addr * hwaddr)1496 ether_gen_addr(struct ifnet *ifp, struct ether_addr *hwaddr)
1497 {
1498 ether_gen_addr_byname(if_name(ifp), hwaddr);
1499 }
1500
1501 DECLARE_MODULE(ether, ether_mod, SI_SUB_INIT_IF, SI_ORDER_ANY);
1502 MODULE_VERSION(ether, 1);
1503