]> git.saurik.com Git - apple/xnu.git/blame - bsd/net/if_vlan.c
xnu-6153.11.26.tar.gz
[apple/xnu.git] / bsd / net / if_vlan.c
CommitLineData
1c79356b 1/*
cb323159 2 * Copyright (c) 2003-2019 Apple Inc. All rights reserved.
5d5c5d0d 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
0a7de745 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
0a7de745 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
0a7de745 17 *
2d21ac55
A
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
0a7de745 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/*
29 * Copyright 1998 Massachusetts Institute of Technology
30 *
31 * Permission to use, copy, modify, and distribute this software and
32 * its documentation for any purpose and without fee is hereby
33 * granted, provided that both the above copyright notice and this
34 * permission notice appear in all copies, that both the above
35 * copyright notice and this permission notice appear in all
36 * supporting documentation, and that the name of M.I.T. not be used
37 * in advertising or publicity pertaining to distribution of the
38 * software without specific, written prior permission. M.I.T. makes
39 * no representations about the suitability of this software for any
40 * purpose. It is provided "as is" without express or implied
41 * warranty.
0a7de745 42 *
1c79356b
A
43 * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS
44 * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
45 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
46 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
47 * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
50 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
51 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
52 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
53 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * SUCH DAMAGE.
55 *
4a249263 56 * $FreeBSD: src/sys/net/if_vlan.c,v 1.54 2003/10/31 18:32:08 brooks Exp $
1c79356b
A
57 */
58
59/*
60 * if_vlan.c - pseudo-device driver for IEEE 802.1Q virtual LANs.
61 * Might be extended some day to also handle IEEE 802.1p priority
62 * tagging. This is sort of sneaky in the implementation, since
63 * we need to pretend to be enough of an Ethernet implementation
64 * to make arp work. The way we do this is by telling everyone
65 * that we are an Ethernet, and then catch the packets that
4a249263 66 * ether_output() left on our output queue when it calls
1c79356b
A
67 * if_start(), rewrite them for use by the real outgoing interface,
68 * and ask it to send them.
1c79356b
A
69 */
70
1c79356b
A
71
72#include <sys/param.h>
73#include <sys/kernel.h>
4a249263 74#include <sys/malloc.h>
1c79356b 75#include <sys/mbuf.h>
4a249263 76#include <sys/queue.h>
1c79356b
A
77#include <sys/socket.h>
78#include <sys/sockio.h>
79#include <sys/sysctl.h>
80#include <sys/systm.h>
4a249263 81#include <sys/kern_event.h>
6d2010ae 82#include <sys/mcache.h>
1c79356b 83
1c79356b 84#include <net/bpf.h>
1c79356b
A
85#include <net/ethernet.h>
86#include <net/if.h>
87#include <net/if_arp.h>
88#include <net/if_dl.h>
91447636 89#include <net/if_ether.h>
1c79356b
A
90#include <net/if_types.h>
91#include <net/if_vlan_var.h>
91447636 92#include <libkern/OSAtomic.h>
1c79356b 93
4a249263
A
94#include <net/dlil.h>
95
2d21ac55
A
96#include <net/kpi_interface.h>
97#include <net/kpi_protocol.h>
98
91447636 99#include <kern/locks.h>
d9a64523 100#include <kern/zalloc.h>
91447636 101
4a249263 102#ifdef INET
1c79356b
A
103#include <netinet/in.h>
104#include <netinet/if_ether.h>
105#endif
106
4a249263 107#include <net/if_media.h>
91447636 108#include <net/multicast_list.h>
2d21ac55 109#include <net/ether_if_module.h>
4a249263 110
0a7de745 111#define VLANNAME "vlan"
4a249263 112
91447636 113/**
0a7de745
A
114** vlan locks
115**/
91447636
A
116static __inline__ lck_grp_t *
117my_lck_grp_alloc_init(const char * grp_name)
118{
0a7de745
A
119 lck_grp_t * grp;
120 lck_grp_attr_t * grp_attrs;
121
122 grp_attrs = lck_grp_attr_alloc_init();
123 grp = lck_grp_alloc_init(grp_name, grp_attrs);
124 lck_grp_attr_free(grp_attrs);
125 return grp;
91447636
A
126}
127
128static __inline__ lck_mtx_t *
129my_lck_mtx_alloc_init(lck_grp_t * lck_grp)
130{
0a7de745
A
131 lck_attr_t * lck_attrs;
132 lck_mtx_t * lck_mtx;
91447636 133
0a7de745
A
134 lck_attrs = lck_attr_alloc_init();
135 lck_mtx = lck_mtx_alloc_init(lck_grp, lck_attrs);
136 lck_attr_free(lck_attrs);
137 return lck_mtx;
91447636
A
138}
139
0a7de745 140static lck_mtx_t * vlan_lck_mtx;
91447636
A
141
142static __inline__ void
143vlan_lock_init(void)
144{
0a7de745 145 lck_grp_t * vlan_lck_grp;
91447636 146
0a7de745
A
147 vlan_lck_grp = my_lck_grp_alloc_init("if_vlan");
148 vlan_lck_mtx = my_lck_mtx_alloc_init(vlan_lck_grp);
91447636
A
149}
150
151static __inline__ void
152vlan_assert_lock_held(void)
153{
0a7de745
A
154 LCK_MTX_ASSERT(vlan_lck_mtx, LCK_MTX_ASSERT_OWNED);
155 return;
91447636
A
156}
157
158static __inline__ void
159vlan_assert_lock_not_held(void)
160{
0a7de745
A
161 LCK_MTX_ASSERT(vlan_lck_mtx, LCK_MTX_ASSERT_NOTOWNED);
162 return;
91447636 163}
4a249263 164
91447636
A
165static __inline__ void
166vlan_lock(void)
167{
0a7de745
A
168 lck_mtx_lock(vlan_lck_mtx);
169 return;
91447636
A
170}
171
172static __inline__ void
173vlan_unlock(void)
174{
0a7de745
A
175 lck_mtx_unlock(vlan_lck_mtx);
176 return;
91447636
A
177}
178
179/**
0a7de745
A
180** vlan structures, types
181**/
91447636
A
182struct vlan_parent;
183LIST_HEAD(vlan_parent_list, vlan_parent);
184struct ifvlan;
185LIST_HEAD(ifvlan_list, ifvlan);
186
0a7de745 187typedef LIST_ENTRY(vlan_parent)
6d2010ae 188vlan_parent_entry;
0a7de745 189typedef LIST_ENTRY(ifvlan)
6d2010ae
A
190ifvlan_entry;
191
0a7de745 192#define VLP_SIGNATURE 0xfaceface
91447636 193typedef struct vlan_parent {
0a7de745
A
194 vlan_parent_entry vlp_parent_list;/* list of parents */
195 struct ifnet * vlp_ifp; /* interface */
196 struct ifvlan_list vlp_vlan_list;/* list of VLAN's */
197#define VLPF_SUPPORTS_VLAN_MTU 0x00000001
198#define VLPF_CHANGE_IN_PROGRESS 0x00000002
199#define VLPF_DETACHING 0x00000004
200#define VLPF_LINK_EVENT_REQUIRED 0x00000008
201 u_int32_t vlp_flags;
202 u_int32_t vlp_event_code;
203 struct ifdevmtu vlp_devmtu;
204 int32_t vlp_retain_count;
205 u_int32_t vlp_signature;/* VLP_SIGNATURE */
91447636
A
206} vlan_parent, * vlan_parent_ref;
207
0a7de745 208#define IFV_SIGNATURE 0xbeefbeef
91447636 209struct ifvlan {
0a7de745
A
210 ifvlan_entry ifv_vlan_list;
211 char ifv_name[IFNAMSIZ];/* our unique id */
212 struct ifnet * ifv_ifp; /* our interface */
213 vlan_parent_ref ifv_vlp; /* parent information */
214 struct ifv_linkmib {
215 u_int16_t ifvm_encaplen;/* encapsulation length */
216 u_int16_t ifvm_mtufudge;/* MTU fudged by this much */
217 u_int16_t ifvm_proto; /* encapsulation ethertype */
218 u_int16_t ifvm_tag; /* tag to apply on packets leaving if */
219 } ifv_mib;
220 struct multicast_list ifv_multicast;
221#define IFVF_PROMISC 0x1 /* promiscuous mode enabled */
222#define IFVF_DETACHING 0x2 /* interface is detaching */
223#define IFVF_READY 0x4 /* interface is ready */
224 u_int32_t ifv_flags;
225 int32_t ifv_retain_count;
226 u_int32_t ifv_signature;/* IFV_SIGNATURE */
4a249263
A
227};
228
91447636
A
229typedef struct ifvlan * ifvlan_ref;
230
231typedef struct vlan_globals_s {
0a7de745
A
232 struct vlan_parent_list parent_list;
233 int verbose;
91447636 234} * vlan_globals_ref;
91447636 235
0a7de745
A
236static vlan_globals_ref g_vlan;
237
238#define ifv_tag ifv_mib.ifvm_tag
239#define ifv_encaplen ifv_mib.ifvm_encaplen
240#define ifv_mtufudge ifv_mib.ifvm_mtufudge
4a249263 241
6d2010ae
A
242static void
243vlan_parent_retain(vlan_parent_ref vlp);
244
245static void
246vlan_parent_release(vlan_parent_ref vlp);
91447636
A
247
248/**
0a7de745
A
249** vlan_parent_ref vlp_flags in-lines
250**/
91447636
A
251static __inline__ int
252vlan_parent_flags_supports_vlan_mtu(vlan_parent_ref vlp)
253{
0a7de745 254 return (vlp->vlp_flags & VLPF_SUPPORTS_VLAN_MTU) != 0;
91447636
A
255}
256
257static __inline__ void
258vlan_parent_flags_set_supports_vlan_mtu(vlan_parent_ref vlp)
259{
0a7de745
A
260 vlp->vlp_flags |= VLPF_SUPPORTS_VLAN_MTU;
261 return;
91447636
A
262}
263
91447636
A
264static __inline__ int
265vlan_parent_flags_change_in_progress(vlan_parent_ref vlp)
266{
0a7de745 267 return (vlp->vlp_flags & VLPF_CHANGE_IN_PROGRESS) != 0;
91447636
A
268}
269
270static __inline__ void
271vlan_parent_flags_set_change_in_progress(vlan_parent_ref vlp)
272{
0a7de745
A
273 vlp->vlp_flags |= VLPF_CHANGE_IN_PROGRESS;
274 return;
91447636
A
275}
276
277static __inline__ void
278vlan_parent_flags_clear_change_in_progress(vlan_parent_ref vlp)
279{
0a7de745
A
280 vlp->vlp_flags &= ~VLPF_CHANGE_IN_PROGRESS;
281 return;
91447636
A
282}
283
284static __inline__ int
285vlan_parent_flags_detaching(struct vlan_parent * vlp)
286{
0a7de745 287 return (vlp->vlp_flags & VLPF_DETACHING) != 0;
91447636
A
288}
289
290static __inline__ void
291vlan_parent_flags_set_detaching(struct vlan_parent * vlp)
292{
0a7de745
A
293 vlp->vlp_flags |= VLPF_DETACHING;
294 return;
91447636
A
295}
296
fe8ab488
A
297static __inline__ int
298vlan_parent_flags_link_event_required(vlan_parent_ref vlp)
299{
0a7de745 300 return (vlp->vlp_flags & VLPF_LINK_EVENT_REQUIRED) != 0;
fe8ab488
A
301}
302
303static __inline__ void
304vlan_parent_flags_set_link_event_required(vlan_parent_ref vlp)
305{
0a7de745
A
306 vlp->vlp_flags |= VLPF_LINK_EVENT_REQUIRED;
307 return;
fe8ab488
A
308}
309
310static __inline__ void
311vlan_parent_flags_clear_link_event_required(vlan_parent_ref vlp)
312{
0a7de745
A
313 vlp->vlp_flags &= ~VLPF_LINK_EVENT_REQUIRED;
314 return;
fe8ab488
A
315}
316
91447636
A
317
318/**
0a7de745
A
319** ifvlan_flags in-lines routines
320**/
91447636
A
321static __inline__ int
322ifvlan_flags_promisc(ifvlan_ref ifv)
323{
0a7de745 324 return (ifv->ifv_flags & IFVF_PROMISC) != 0;
91447636
A
325}
326
327static __inline__ void
328ifvlan_flags_set_promisc(ifvlan_ref ifv)
329{
0a7de745
A
330 ifv->ifv_flags |= IFVF_PROMISC;
331 return;
91447636
A
332}
333
334static __inline__ void
335ifvlan_flags_clear_promisc(ifvlan_ref ifv)
336{
0a7de745
A
337 ifv->ifv_flags &= ~IFVF_PROMISC;
338 return;
91447636
A
339}
340
341static __inline__ int
342ifvlan_flags_ready(ifvlan_ref ifv)
343{
0a7de745 344 return (ifv->ifv_flags & IFVF_READY) != 0;
91447636
A
345}
346
347static __inline__ void
348ifvlan_flags_set_ready(ifvlan_ref ifv)
349{
0a7de745
A
350 ifv->ifv_flags |= IFVF_READY;
351 return;
91447636
A
352}
353
91447636
A
354static __inline__ int
355ifvlan_flags_detaching(ifvlan_ref ifv)
356{
0a7de745 357 return (ifv->ifv_flags & IFVF_DETACHING) != 0;
91447636
A
358}
359
360static __inline__ void
361ifvlan_flags_set_detaching(ifvlan_ref ifv)
362{
0a7de745
A
363 ifv->ifv_flags |= IFVF_DETACHING;
364 return;
91447636 365}
4a249263
A
366
367#if 0
1c79356b 368SYSCTL_DECL(_net_link);
0a7de745
A
369SYSCTL_NODE(_net_link, IFT_L2VLAN, vlan, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "IEEE 802.1Q VLAN");
370SYSCTL_NODE(_net_link_vlan, PF_LINK, link, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "for consistency");
b0d623f7 371#endif
4a249263 372
0a7de745
A
373#define VLAN_UNITMAX IF_MAXUNIT
374#define VLAN_ZONE_MAX_ELEM MIN(IFNETS_MAX, VLAN_UNITMAX)
375#define M_VLAN M_DEVBUF
376
377static int vlan_clone_create(struct if_clone *, u_int32_t, void *);
378static int vlan_clone_destroy(struct ifnet *);
379static int vlan_input(ifnet_t ifp, protocol_family_t protocol,
380 mbuf_t m, char *frame_header);
381static int vlan_output(struct ifnet *ifp, struct mbuf *m);
382static int vlan_ioctl(ifnet_t ifp, u_long cmd, void * addr);
383static int vlan_attach_protocol(struct ifnet *ifp);
384static int vlan_detach_protocol(struct ifnet *ifp);
385static int vlan_setmulti(struct ifnet *ifp);
386static int vlan_unconfig(ifvlan_ref ifv, int need_to_wait);
387static int vlan_config(struct ifnet * ifp, struct ifnet * p, int tag);
388static void vlan_if_free(struct ifnet * ifp);
389static int vlan_remove(ifvlan_ref ifv, int need_to_wait);
4a249263
A
390
391static struct if_clone vlan_cloner = IF_CLONE_INITIALIZER(VLANNAME,
d9a64523
A
392 vlan_clone_create,
393 vlan_clone_destroy,
394 0,
395 VLAN_UNITMAX,
396 VLAN_ZONE_MAX_ELEM,
397 sizeof(struct ifvlan));
0a7de745
A
398static void interface_link_event(struct ifnet * ifp, u_int32_t event_code);
399static void vlan_parent_link_event(struct ifnet * p,
400 u_int32_t event_code);
6d2010ae 401
0a7de745 402static int ifvlan_new_mtu(ifvlan_ref ifv, int mtu);
6d2010ae
A
403
404/**
0a7de745
A
405** ifvlan_ref routines
406**/
6d2010ae
A
407static void
408ifvlan_retain(ifvlan_ref ifv)
409{
0a7de745
A
410 if (ifv->ifv_signature != IFV_SIGNATURE) {
411 panic("ifvlan_retain: bad signature\n");
412 }
413 if (ifv->ifv_retain_count == 0) {
414 panic("ifvlan_retain: retain count is 0\n");
415 }
416 OSIncrementAtomic(&ifv->ifv_retain_count);
6d2010ae
A
417}
418
419static void
420ifvlan_release(ifvlan_ref ifv)
421{
0a7de745
A
422 u_int32_t old_retain_count;
423
424 if (ifv->ifv_signature != IFV_SIGNATURE) {
425 panic("ifvlan_release: bad signature\n");
6d2010ae 426 }
0a7de745
A
427 old_retain_count = OSDecrementAtomic(&ifv->ifv_retain_count);
428 switch (old_retain_count) {
429 case 0:
430 panic("ifvlan_release: retain count is 0\n");
431 break;
432 case 1:
433 if (g_vlan->verbose) {
434 printf("ifvlan_release(%s)\n", ifv->ifv_name);
435 }
436 ifv->ifv_signature = 0;
437 if_clone_softc_deallocate(&vlan_cloner, ifv);
438 break;
439 default:
440 break;
441 }
442 return;
6d2010ae
A
443}
444
445static vlan_parent_ref
446ifvlan_get_vlan_parent_retained(ifvlan_ref ifv)
447{
0a7de745 448 vlan_parent_ref vlp = ifv->ifv_vlp;
6d2010ae 449
0a7de745
A
450 if (vlp == NULL || vlan_parent_flags_detaching(vlp)) {
451 return NULL;
452 }
453 vlan_parent_retain(vlp);
454 return vlp;
6d2010ae
A
455}
456
457/**
0a7de745
A
458** ifnet_* routines
459**/
6d2010ae
A
460
461static ifvlan_ref
462ifnet_get_ifvlan(struct ifnet * ifp)
463{
0a7de745 464 ifvlan_ref ifv;
6d2010ae 465
0a7de745
A
466 ifv = (ifvlan_ref)ifnet_softc(ifp);
467 return ifv;
6d2010ae
A
468}
469
470static ifvlan_ref
471ifnet_get_ifvlan_retained(struct ifnet * ifp)
472{
0a7de745 473 ifvlan_ref ifv;
6d2010ae 474
0a7de745
A
475 ifv = ifnet_get_ifvlan(ifp);
476 if (ifv == NULL) {
477 return NULL;
478 }
479 if (ifvlan_flags_detaching(ifv)) {
480 return NULL;
481 }
482 ifvlan_retain(ifv);
483 return ifv;
6d2010ae
A
484}
485
486static int
487ifnet_ifvlan_vlan_parent_ok(struct ifnet * ifp, ifvlan_ref ifv,
0a7de745
A
488 vlan_parent_ref vlp)
489{
490 ifvlan_ref check_ifv;
491
492 check_ifv = ifnet_get_ifvlan(ifp);
493 if (check_ifv != ifv || ifvlan_flags_detaching(ifv)) {
494 /* ifvlan_ref no longer valid */
495 return FALSE;
496 }
497 if (ifv->ifv_vlp != vlp) {
498 /* vlan_parent no longer valid */
499 return FALSE;
500 }
501 if (vlan_parent_flags_detaching(vlp)) {
502 /* parent is detaching */
503 return FALSE;
504 }
505 return TRUE;
6d2010ae
A
506}
507
508/**
0a7de745
A
509** vlan, etc. routines
510**/
91447636
A
511
512static int
513vlan_globals_init(void)
514{
0a7de745 515 vlan_globals_ref v;
91447636 516
0a7de745 517 vlan_assert_lock_not_held();
91447636 518
0a7de745
A
519 if (g_vlan != NULL) {
520 return 0;
521 }
522 v = _MALLOC(sizeof(*v), M_VLAN, M_WAITOK);
91447636 523 if (v != NULL) {
0a7de745
A
524 LIST_INIT(&v->parent_list);
525 v->verbose = 0;
526 }
527 vlan_lock();
528 if (g_vlan != NULL) {
529 vlan_unlock();
530 if (v != NULL) {
531 _FREE(v, M_VLAN);
532 }
533 return 0;
534 }
535 g_vlan = v;
536 vlan_unlock();
537 if (v == NULL) {
538 return ENOMEM;
91447636 539 }
0a7de745 540 return 0;
91447636
A
541}
542
543static int
544siocgifdevmtu(struct ifnet * ifp, struct ifdevmtu * ifdm_p)
545{
0a7de745
A
546 struct ifreq ifr;
547 int error;
91447636 548
0a7de745
A
549 bzero(&ifr, sizeof(ifr));
550 error = ifnet_ioctl(ifp, 0, SIOCGIFDEVMTU, &ifr);
551 if (error == 0) {
552 *ifdm_p = ifr.ifr_devmtu;
553 }
554 return error;
91447636 555}
4a249263 556
91447636
A
557static int
558siocsifaltmtu(struct ifnet * ifp, int mtu)
559{
0a7de745 560 struct ifreq ifr;
4a249263 561
0a7de745
A
562 bzero(&ifr, sizeof(ifr));
563 ifr.ifr_mtu = mtu;
564 return ifnet_ioctl(ifp, 0, SIOCSIFALTMTU, &ifr);
91447636 565}
4a249263 566
91447636 567/**
0a7de745
A
568** vlan_parent synchronization routines
569**/
6d2010ae 570static void
91447636
A
571vlan_parent_retain(vlan_parent_ref vlp)
572{
0a7de745
A
573 if (vlp->vlp_signature != VLP_SIGNATURE) {
574 panic("vlan_parent_retain: signature is bad\n");
575 }
576 if (vlp->vlp_retain_count == 0) {
577 panic("vlan_parent_retain: retain count is 0\n");
578 }
579 OSIncrementAtomic(&vlp->vlp_retain_count);
91447636
A
580}
581
6d2010ae 582static void
91447636
A
583vlan_parent_release(vlan_parent_ref vlp)
584{
0a7de745
A
585 u_int32_t old_retain_count;
586
587 if (vlp->vlp_signature != VLP_SIGNATURE) {
588 panic("vlan_parent_release: signature is bad\n");
589 }
590 old_retain_count = OSDecrementAtomic(&vlp->vlp_retain_count);
591 switch (old_retain_count) {
592 case 0:
593 panic("vlan_parent_release: retain count is 0\n");
594 break;
595 case 1:
596 if (g_vlan->verbose) {
597 struct ifnet * ifp = vlp->vlp_ifp;
598 printf("vlan_parent_release(%s%d)\n", ifnet_name(ifp),
599 ifnet_unit(ifp));
600 }
601 vlp->vlp_signature = 0;
602 FREE(vlp, M_VLAN);
603 break;
604 default:
605 break;
91447636 606 }
0a7de745 607 return;
91447636
A
608}
609
610/*
611 * Function: vlan_parent_wait
612 * Purpose:
613 * Allows a single thread to gain exclusive access to the vlan_parent
0a7de745 614 * data structure. Some operations take a long time to complete,
91447636
A
615 * and some have side-effects that we can't predict. Holding the
616 * vlan_lock() across such operations is not possible.
617 *
618 * Notes:
619 * Before calling, you must be holding the vlan_lock and have taken
620 * a reference on the vlan_parent_ref.
621 */
622static void
623vlan_parent_wait(vlan_parent_ref vlp, const char * msg)
624{
0a7de745 625 int waited = 0;
91447636 626
0a7de745
A
627 /* other add/remove/multicast-change in progress */
628 while (vlan_parent_flags_change_in_progress(vlp)) {
629 if (g_vlan->verbose) {
630 struct ifnet * ifp = vlp->vlp_ifp;
91447636 631
0a7de745
A
632 printf("%s%d: %s msleep\n", ifnet_name(ifp), ifnet_unit(ifp), msg);
633 }
634 waited = 1;
635 (void)msleep(vlp, vlan_lck_mtx, PZERO, msg, 0);
91447636 636 }
0a7de745
A
637 /* prevent other vlan parent remove/add from taking place */
638 vlan_parent_flags_set_change_in_progress(vlp);
639 if (g_vlan->verbose && waited) {
640 struct ifnet * ifp = vlp->vlp_ifp;
91447636 641
0a7de745
A
642 printf("%s%d: %s woke up\n", ifnet_name(ifp), ifnet_unit(ifp), msg);
643 }
644 return;
91447636
A
645}
646
647/*
648 * Function: vlan_parent_signal
649 * Purpose:
0a7de745 650 * Allows the thread that previously invoked vlan_parent_wait() to
91447636
A
651 * give up exclusive access to the vlan_parent data structure, and wake up
652 * any other threads waiting to access
653 * Notes:
654 * Before calling, you must be holding the vlan_lock and have taken
655 * a reference on the vlan_parent_ref.
656 */
657static void
658vlan_parent_signal(vlan_parent_ref vlp, const char * msg)
659{
0a7de745
A
660 struct ifnet * vlp_ifp = vlp->vlp_ifp;
661
662 if (vlan_parent_flags_link_event_required(vlp)) {
663 vlan_parent_flags_clear_link_event_required(vlp);
664 if (!vlan_parent_flags_detaching(vlp)) {
665 u_int32_t event_code = vlp->vlp_event_code;
666 ifvlan_ref ifv;
667
668 vlan_unlock();
669
670 /* we can safely walk the list unlocked */
671 LIST_FOREACH(ifv, &vlp->vlp_vlan_list, ifv_vlan_list) {
672 struct ifnet * ifp = ifv->ifv_ifp;
673
674 interface_link_event(ifp, event_code);
675 }
676 if (g_vlan->verbose) {
677 printf("%s%d: propagated link event to vlans\n",
678 ifnet_name(vlp_ifp), ifnet_unit(vlp_ifp));
679 }
680 vlan_lock();
681 }
682 }
683 vlan_parent_flags_clear_change_in_progress(vlp);
684 wakeup((caddr_t)vlp);
685 if (g_vlan->verbose) {
686 printf("%s%d: %s wakeup\n",
687 ifnet_name(vlp_ifp), ifnet_unit(vlp_ifp), msg);
688 }
689 return;
91447636
A
690}
691
1c79356b
A
692/*
693 * Program our multicast filter. What we're actually doing is
694 * programming the multicast filter of the parent. This has the
695 * side effect of causing the parent interface to receive multicast
696 * traffic that it doesn't really want, which ends up being discarded
697 * later by the upper protocol layers. Unfortunately, there's no way
698 * to avoid this: there really is only one physical interface.
699 */
4a249263 700static int
91447636 701vlan_setmulti(struct ifnet * ifp)
1c79356b 702{
0a7de745
A
703 int error = 0;
704 ifvlan_ref ifv;
705 struct ifnet * p;
706 vlan_parent_ref vlp = NULL;
707
708 vlan_lock();
709 ifv = ifnet_get_ifvlan_retained(ifp);
710 if (ifv == NULL) {
711 goto unlock_done;
712 }
713 vlp = ifvlan_get_vlan_parent_retained(ifv);
714 if (vlp == NULL) {
715 /* no parent, no need to program the multicast filter */
716 goto unlock_done;
717 }
718 vlan_parent_wait(vlp, "vlan_setmulti");
719
720 /* check again, things could have changed */
721 if (ifnet_ifvlan_vlan_parent_ok(ifp, ifv, vlp) == FALSE) {
722 goto signal_done;
723 }
724 p = vlp->vlp_ifp;
725 vlan_unlock();
726
727 /* update parent interface with our multicast addresses */
728 error = multicast_list_program(&ifv->ifv_multicast, ifp, p);
729
730 vlan_lock();
731
732signal_done:
733 vlan_parent_signal(vlp, "vlan_setmulti");
734
735unlock_done:
736 vlan_unlock();
737 if (ifv != NULL) {
738 ifvlan_release(ifv);
739 }
740 if (vlp != NULL) {
741 vlan_parent_release(vlp);
742 }
743 return error;
91447636 744}
4a249263 745
91447636 746/**
0a7de745
A
747** vlan_parent list manipulation/lookup routines
748**/
91447636
A
749static vlan_parent_ref
750parent_list_lookup(struct ifnet * p)
751{
0a7de745 752 vlan_parent_ref vlp;
4a249263 753
0a7de745
A
754 LIST_FOREACH(vlp, &g_vlan->parent_list, vlp_parent_list) {
755 if (vlp->vlp_ifp == p) {
756 return vlp;
757 }
91447636 758 }
0a7de745 759 return NULL;
91447636 760}
4a249263 761
91447636
A
762static ifvlan_ref
763vlan_parent_lookup_tag(vlan_parent_ref vlp, int tag)
4a249263 764{
0a7de745 765 ifvlan_ref ifv;
1c79356b 766
0a7de745
A
767 LIST_FOREACH(ifv, &vlp->vlp_vlan_list, ifv_vlan_list) {
768 if (tag == ifv->ifv_tag) {
769 return ifv;
770 }
1c79356b 771 }
0a7de745 772 return NULL;
4a249263 773}
1c79356b 774
0a7de745 775static ifvlan_ref
91447636 776vlan_lookup_parent_and_tag(struct ifnet * p, int tag)
4a249263 777{
0a7de745 778 vlan_parent_ref vlp;
4a249263 779
0a7de745
A
780 vlp = parent_list_lookup(p);
781 if (vlp != NULL) {
782 return vlan_parent_lookup_tag(vlp, tag);
783 }
784 return NULL;
1c79356b
A
785}
786
91447636
A
787static int
788vlan_parent_find_max_mtu(vlan_parent_ref vlp, ifvlan_ref exclude_ifv)
789{
0a7de745
A
790 int max_mtu = 0;
791 ifvlan_ref ifv;
91447636 792
0a7de745
A
793 LIST_FOREACH(ifv, &vlp->vlp_vlan_list, ifv_vlan_list) {
794 int req_mtu;
91447636 795
0a7de745
A
796 if (exclude_ifv == ifv) {
797 continue;
798 }
799 req_mtu = ifnet_mtu(ifv->ifv_ifp) + ifv->ifv_mtufudge;
800 if (req_mtu > max_mtu) {
801 max_mtu = req_mtu;
802 }
91447636 803 }
0a7de745 804 return max_mtu;
91447636
A
805}
806
807/*
808 * Function: vlan_parent_create
809 * Purpose:
810 * Create a vlan_parent structure to hold the VLAN's for the given
811 * interface. Add it to the list of VLAN parents.
812 */
813static int
814vlan_parent_create(struct ifnet * p, vlan_parent_ref * ret_vlp)
815{
0a7de745
A
816 int error;
817 vlan_parent_ref vlp;
818
819 *ret_vlp = NULL;
820 vlp = _MALLOC(sizeof(*vlp), M_VLAN, M_WAITOK | M_ZERO);
821 if (vlp == NULL) {
822 return ENOMEM;
823 }
824 error = siocgifdevmtu(p, &vlp->vlp_devmtu);
825 if (error != 0) {
826 printf("vlan_parent_create (%s%d): siocgifdevmtu failed, %d\n",
827 ifnet_name(p), ifnet_unit(p), error);
828 FREE(vlp, M_VLAN);
829 return error;
830 }
831 LIST_INIT(&vlp->vlp_vlan_list);
832 vlp->vlp_ifp = p;
833 vlp->vlp_retain_count = 1;
834 vlp->vlp_signature = VLP_SIGNATURE;
835 if (ifnet_offload(p)
836 & (IF_HWASSIST_VLAN_MTU | IF_HWASSIST_VLAN_TAGGING)) {
837 vlan_parent_flags_set_supports_vlan_mtu(vlp);
838 }
839 *ret_vlp = vlp;
840 return 0;
91447636
A
841}
842
843static void
6d2010ae 844vlan_parent_remove_all_vlans(struct ifnet * p)
91447636 845{
0a7de745
A
846 ifvlan_ref ifv;
847 int need_vlp_release = 0;
848 ifvlan_ref next;
849 vlan_parent_ref vlp;
91447636 850
0a7de745
A
851 vlan_lock();
852 vlp = parent_list_lookup(p);
853 if (vlp == NULL || vlan_parent_flags_detaching(vlp)) {
854 /* no VLAN's */
855 vlan_unlock();
856 return;
857 }
858 vlan_parent_flags_set_detaching(vlp);
859 vlan_parent_retain(vlp);
860 vlan_parent_wait(vlp, "vlan_parent_remove_all_vlans");
861 need_vlp_release++;
862
863 /* check again */
864 if (parent_list_lookup(p) != vlp) {
865 goto signal_done;
866 }
867
868 for (ifv = LIST_FIRST(&vlp->vlp_vlan_list); ifv != NULL; ifv = next) {
869 struct ifnet * ifp = ifv->ifv_ifp;
870 int removed;
871
872 next = LIST_NEXT(ifv, ifv_vlan_list);
873 removed = vlan_remove(ifv, FALSE);
874 if (removed) {
875 vlan_unlock();
876 ifnet_detach(ifp);
877 vlan_lock();
878 }
879 }
880
881 /* the vlan parent has no more VLAN's */
882 ifnet_set_eflags(p, 0, IFEF_VLAN); /* clear IFEF_VLAN */
883
884 LIST_REMOVE(vlp, vlp_parent_list);
885 need_vlp_release++; /* one for being in the list */
886 need_vlp_release++; /* final reference */
887
888signal_done:
889 vlan_parent_signal(vlp, "vlan_parent_remove_all_vlans");
91447636 890 vlan_unlock();
0a7de745
A
891
892 while (need_vlp_release--) {
893 vlan_parent_release(vlp);
894 }
6d2010ae 895 return;
91447636
A
896}
897
898static __inline__ int
899vlan_parent_no_vlans(vlan_parent_ref vlp)
900{
0a7de745 901 return LIST_EMPTY(&vlp->vlp_vlan_list);
91447636
A
902}
903
904static void
905vlan_parent_add_vlan(vlan_parent_ref vlp, ifvlan_ref ifv, int tag)
906{
0a7de745
A
907 LIST_INSERT_HEAD(&vlp->vlp_vlan_list, ifv, ifv_vlan_list);
908 ifv->ifv_vlp = vlp;
909 ifv->ifv_tag = tag;
910 return;
91447636
A
911}
912
913static void
914vlan_parent_remove_vlan(__unused vlan_parent_ref vlp, ifvlan_ref ifv)
915{
0a7de745
A
916 ifv->ifv_vlp = NULL;
917 LIST_REMOVE(ifv, ifv_vlan_list);
918 return;
91447636
A
919}
920
b0d623f7 921static int
4a249263
A
922vlan_clone_attach(void)
923{
0a7de745 924 int error;
b0d623f7 925
0a7de745
A
926 error = if_clone_attach(&vlan_cloner);
927 if (error != 0) {
928 return error;
929 }
930 vlan_lock_init();
931 return 0;
4a249263
A
932}
933
934static int
d1ecb069 935vlan_clone_create(struct if_clone *ifc, u_int32_t unit, __unused void *params)
4a249263 936{
0a7de745
A
937 int error;
938 ifvlan_ref ifv;
939 ifnet_t ifp;
940 struct ifnet_init_eparams vlan_init;
941
2d21ac55
A
942 error = vlan_globals_init();
943 if (error != 0) {
0a7de745 944 return error;
2d21ac55 945 }
d9a64523 946 ifv = if_clone_softc_allocate(&vlan_cloner);
0a7de745 947 if (ifv == NULL) {
b0d623f7 948 return ENOBUFS;
0a7de745 949 }
6d2010ae
A
950 ifv->ifv_retain_count = 1;
951 ifv->ifv_signature = IFV_SIGNATURE;
2d21ac55 952 multicast_list_init(&ifv->ifv_multicast);
0a7de745 953
2d21ac55 954 /* use the interface name as the unique id for ifp recycle */
6d2010ae
A
955 if ((unsigned int)
956 snprintf(ifv->ifv_name, sizeof(ifv->ifv_name), "%s%d",
0a7de745
A
957 ifc->ifc_name, unit) >= sizeof(ifv->ifv_name)) {
958 ifvlan_release(ifv);
959 return EINVAL;
2d21ac55 960 }
0a7de745 961
2d21ac55 962 bzero(&vlan_init, sizeof(vlan_init));
39236c6e 963 vlan_init.ver = IFNET_INIT_CURRENT_VERSION;
0a7de745 964 vlan_init.len = sizeof(vlan_init);
39236c6e 965 vlan_init.flags = IFNET_INIT_LEGACY;
2d21ac55
A
966 vlan_init.uniqueid = ifv->ifv_name;
967 vlan_init.uniqueid_len = strlen(ifv->ifv_name);
968 vlan_init.name = ifc->ifc_name;
969 vlan_init.unit = unit;
970 vlan_init.family = IFNET_FAMILY_VLAN;
971 vlan_init.type = IFT_L2VLAN;
972 vlan_init.output = vlan_output;
973 vlan_init.demux = ether_demux;
974 vlan_init.add_proto = ether_add_proto;
975 vlan_init.del_proto = ether_del_proto;
976 vlan_init.check_multi = ether_check_multi;
39236c6e 977 vlan_init.framer_extended = ether_frameout_extended;
2d21ac55
A
978 vlan_init.softc = ifv;
979 vlan_init.ioctl = vlan_ioctl;
5ba3f43e 980 vlan_init.set_bpf_tap = NULL;
2d21ac55
A
981 vlan_init.detach = vlan_if_free;
982 vlan_init.broadcast_addr = etherbroadcastaddr;
983 vlan_init.broadcast_len = ETHER_ADDR_LEN;
39236c6e 984 error = ifnet_allocate_extended(&vlan_init, &ifp);
0a7de745 985
2d21ac55 986 if (error) {
0a7de745
A
987 ifvlan_release(ifv);
988 return error;
2d21ac55 989 }
0a7de745 990
2d21ac55
A
991 ifnet_set_offload(ifp, 0);
992 ifnet_set_addrlen(ifp, ETHER_ADDR_LEN); /* XXX ethernet specific */
993 ifnet_set_baudrate(ifp, 0);
994 ifnet_set_hdrlen(ifp, ETHER_VLAN_ENCAP_LEN);
0a7de745 995
2d21ac55
A
996 error = ifnet_attach(ifp, NULL);
997 if (error) {
0a7de745
A
998 ifnet_release(ifp);
999 ifvlan_release(ifv);
1000 return error;
2d21ac55
A
1001 }
1002 ifv->ifv_ifp = ifp;
0a7de745 1003
2d21ac55
A
1004 /* attach as ethernet */
1005 bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header));
0a7de745 1006 return 0;
1c79356b 1007}
1c79356b 1008
6d2010ae
A
1009static int
1010vlan_remove(ifvlan_ref ifv, int need_to_wait)
1c79356b 1011{
0a7de745
A
1012 vlan_assert_lock_held();
1013 if (ifvlan_flags_detaching(ifv)) {
1014 return 0;
1015 }
1016 ifvlan_flags_set_detaching(ifv);
1017 vlan_unconfig(ifv, need_to_wait);
1018 return 1;
1c79356b
A
1019}
1020
1c79356b 1021
d1ecb069 1022static int
4a249263
A
1023vlan_clone_destroy(struct ifnet *ifp)
1024{
0a7de745 1025 ifvlan_ref ifv;
1c79356b 1026
0a7de745
A
1027 vlan_lock();
1028 ifv = ifnet_get_ifvlan_retained(ifp);
1029 if (ifv == NULL) {
1030 vlan_unlock();
1031 return 0;
1032 }
1033 if (vlan_remove(ifv, TRUE) == 0) {
1034 vlan_unlock();
1035 ifvlan_release(ifv);
1036 return 0;
1037 }
91447636 1038 vlan_unlock();
6d2010ae 1039 ifvlan_release(ifv);
0a7de745 1040 ifnet_detach(ifp);
d1ecb069 1041
0a7de745 1042 return 0;
1c79356b
A
1043}
1044
4a249263 1045static int
91447636 1046vlan_output(struct ifnet * ifp, struct mbuf * m)
4a249263 1047{
0a7de745
A
1048 struct ether_vlan_header * evl;
1049 int encaplen;
1050 ifvlan_ref ifv;
1051 struct ifnet * p;
1052 int soft_vlan;
1053 u_short tag;
1054 vlan_parent_ref vlp = NULL;
1055 int err;
cb323159 1056 struct flowadv adv = { .code = FADV_SUCCESS };
0a7de745
A
1057
1058 if (m == 0) {
1059 return 0;
1060 }
1061 if ((m->m_flags & M_PKTHDR) == 0) {
1062 m_freem_list(m);
1063 return 0;
1064 }
1065 vlan_lock();
1066 ifv = ifnet_get_ifvlan_retained(ifp);
1067 if (ifv == NULL || ifvlan_flags_ready(ifv) == 0) {
1068 goto unlock_done;
1069 }
1070 vlp = ifvlan_get_vlan_parent_retained(ifv);
1071 if (vlp == NULL) {
1072 goto unlock_done;
1073 }
1074 p = vlp->vlp_ifp;
1075 (void)ifnet_stat_increment_out(ifp, 1, m->m_pkthdr.len, 0);
1076 soft_vlan = (ifnet_offload(p) & IF_HWASSIST_VLAN_TAGGING) == 0;
1077 tag = ifv->ifv_tag;
1078 encaplen = ifv->ifv_encaplen;
1079 vlan_unlock();
1080
1081 ifvlan_release(ifv);
1082 vlan_parent_release(vlp);
1083
1084 bpf_tap_out(ifp, DLT_EN10MB, m, NULL, 0);
1085
1086 /* do not run parent's if_output() if the parent is not up */
1087 if ((ifnet_flags(p) & (IFF_UP | IFF_RUNNING)) != (IFF_UP | IFF_RUNNING)) {
1088 m_freem(m);
1089 atomic_add_64(&ifp->if_collisions, 1);
1090 return 0;
1091 }
1c79356b 1092 /*
0a7de745
A
1093 * If underlying interface can do VLAN tag insertion itself,
1094 * just pass the packet along. However, we need some way to
1095 * tell the interface where the packet came from so that it
1096 * knows how to find the VLAN tag to use. We use a field in
1097 * the mbuf header to store the VLAN tag, and a bit in the
1098 * csum_flags field to mark the field as valid.
1c79356b 1099 */
0a7de745
A
1100 if (soft_vlan == 0) {
1101 m->m_pkthdr.csum_flags |= CSUM_VLAN_TAG_VALID;
1102 m->m_pkthdr.vlan_tag = tag;
1103 } else {
1104 M_PREPEND(m, encaplen, M_DONTWAIT, 1);
1105 if (m == NULL) {
1106 printf("%s%d: unable to prepend VLAN header\n", ifnet_name(ifp),
1107 ifnet_unit(ifp));
1108 atomic_add_64(&ifp->if_oerrors, 1);
1109 return 0;
1110 }
1111 /* M_PREPEND takes care of m_len, m_pkthdr.len for us */
1112 if (m->m_len < (int)sizeof(*evl)) {
1113 m = m_pullup(m, sizeof(*evl));
1114 if (m == NULL) {
1115 printf("%s%d: unable to pullup VLAN header\n", ifnet_name(ifp),
1116 ifnet_unit(ifp));
1117 atomic_add_64(&ifp->if_oerrors, 1);
1118 return 0;
1119 }
1120 }
316670eb 1121
0a7de745
A
1122 /*
1123 * Transform the Ethernet header into an Ethernet header
1124 * with 802.1Q encapsulation.
1125 */
1126 bcopy(mtod(m, char *) + encaplen,
1127 mtod(m, char *), ETHER_HDR_LEN);
1128 evl = mtod(m, struct ether_vlan_header *);
1129 evl->evl_proto = evl->evl_encap_proto;
1130 evl->evl_encap_proto = htons(ETHERTYPE_VLAN);
1131 evl->evl_tag = htons(tag);
cb323159
A
1132
1133 /* adjust partial checksum offload offsets */
1134 if ((m->m_pkthdr.csum_flags & (CSUM_DATA_VALID |
1135 CSUM_PARTIAL)) == (CSUM_DATA_VALID | CSUM_PARTIAL)) {
1136 m->m_pkthdr.csum_tx_start += ETHER_VLAN_ENCAP_LEN;
1137 m->m_pkthdr.csum_tx_stuff += ETHER_VLAN_ENCAP_LEN;
1138 }
316670eb 1139 }
316670eb 1140
0a7de745 1141 err = dlil_output(p, PF_VLAN, m, NULL, NULL, 1, &adv);
6d2010ae 1142
0a7de745
A
1143 if (err == 0) {
1144 if (adv.code == FADV_FLOW_CONTROLLED) {
1145 err = EQFULL;
1146 } else if (adv.code == FADV_SUSPENDED) {
1147 err = EQSUSPENDED;
1148 }
1149 }
6d2010ae 1150
0a7de745
A
1151 return err;
1152
1153unlock_done:
1154 vlan_unlock();
1155 if (ifv != NULL) {
1156 ifvlan_release(ifv);
1157 }
1158 if (vlp != NULL) {
1159 vlan_parent_release(vlp);
1160 }
1161 m_freem_list(m);
1162 return 0;
1c79356b
A
1163}
1164
91447636 1165static int
2d21ac55 1166vlan_input(ifnet_t p, __unused protocol_family_t protocol,
0a7de745 1167 mbuf_t m, char *frame_header)
1c79356b 1168{
0a7de745
A
1169 struct ether_vlan_header * evl;
1170 struct ifnet * ifp = NULL;
1171 int soft_vlan = 0;
1172 u_int tag = 0;
1c79356b 1173
0a7de745
A
1174 if (m->m_pkthdr.csum_flags & CSUM_VLAN_TAG_VALID) {
1175 /*
1176 * Packet is tagged, m contains a normal
1177 * Ethernet frame; the tag is stored out-of-band.
1178 */
1179 m->m_pkthdr.csum_flags &= ~CSUM_VLAN_TAG_VALID;
1180 tag = EVL_VLANOFTAG(m->m_pkthdr.vlan_tag);
1181 m->m_pkthdr.vlan_tag = 0;
1182 } else {
1183 soft_vlan = 1;
1184 switch (ifnet_type(p)) {
1185 case IFT_ETHER:
cb323159 1186 case IFT_IEEE8023ADLAG:
0a7de745
A
1187 if (m->m_len < ETHER_VLAN_ENCAP_LEN) {
1188 m_freem(m);
1189 return 0;
1190 }
1191 evl = (struct ether_vlan_header *)(void *)frame_header;
1192 if (ntohs(evl->evl_proto) == ETHERTYPE_VLAN) {
1193 /* don't allow VLAN within VLAN */
1194 m_freem(m);
1195 return 0;
1196 }
1197 tag = EVL_VLANOFTAG(ntohs(evl->evl_tag));
1198
1199 /*
1200 * Restore the original ethertype. We'll remove
1201 * the encapsulation after we've found the vlan
1202 * interface corresponding to the tag.
1203 */
1204 evl->evl_encap_proto = evl->evl_proto;
1205 break;
1206 default:
1207 printf("vlan_demux: unsupported if type %u",
1208 ifnet_type(p));
1209 m_freem(m);
1210 return 0;
1211 }
4a249263 1212 }
0a7de745
A
1213 if (tag != 0) {
1214 ifvlan_ref ifv;
91447636 1215
0a7de745
A
1216 if ((ifnet_eflags(p) & IFEF_VLAN) == 0) {
1217 /* don't bother looking through the VLAN list */
1218 m_freem(m);
1219 return 0;
1220 }
1221 vlan_lock();
1222 ifv = vlan_lookup_parent_and_tag(p, tag);
1223 if (ifv != NULL) {
1224 ifp = ifv->ifv_ifp;
1225 }
1226 if (ifv == NULL
1227 || ifvlan_flags_ready(ifv) == 0
1228 || (ifnet_flags(ifp) & IFF_UP) == 0) {
1229 vlan_unlock();
1230 m_freem(m);
1231 return 0;
1232 }
1233 vlan_unlock();
91447636 1234 }
0a7de745
A
1235 if (soft_vlan) {
1236 /*
1237 * Packet had an in-line encapsulation header;
1238 * remove it. The original header has already
1239 * been fixed up above.
1240 */
1241 m->m_len -= ETHER_VLAN_ENCAP_LEN;
1242 m->m_data += ETHER_VLAN_ENCAP_LEN;
1243 m->m_pkthdr.len -= ETHER_VLAN_ENCAP_LEN;
1244 m->m_pkthdr.csum_flags = 0; /* can't trust hardware checksum */
4a249263 1245 }
0a7de745
A
1246 if (tag != 0) {
1247 m->m_pkthdr.rcvif = ifp;
1248 m->m_pkthdr.pkt_hdr = frame_header;
1249 (void)ifnet_stat_increment_in(ifp, 1,
1250 m->m_pkthdr.len + ETHER_HDR_LEN, 0);
1251 bpf_tap_in(ifp, DLT_EN10MB, m, frame_header, ETHER_HDR_LEN);
1252 /* We found a vlan interface, inject on that interface. */
1253 dlil_input_packet_list(ifp, m);
1254 } else {
1255 m->m_pkthdr.pkt_hdr = frame_header;
1256 /* Send priority-tagged packet up through the parent */
1257 dlil_input_packet_list(p, m);
4a249263 1258 }
0a7de745 1259 return 0;
1c79356b
A
1260}
1261
1262static int
91447636 1263vlan_config(struct ifnet * ifp, struct ifnet * p, int tag)
1c79356b 1264{
0a7de745
A
1265 int error;
1266 int first_vlan = FALSE;
1267 ifvlan_ref ifv = NULL;
1268 int ifv_added = FALSE;
1269 int need_vlp_release = 0;
1270 vlan_parent_ref new_vlp = NULL;
1271 ifnet_offload_t offload;
1272 u_int16_t parent_flags;
1273 vlan_parent_ref vlp = NULL;
1274
1275 /* pre-allocate space for vlan_parent, in case we're first */
1276 error = vlan_parent_create(p, &new_vlp);
1277 if (error != 0) {
1278 return error;
6d2010ae 1279 }
0a7de745
A
1280
1281 vlan_lock();
1282 ifv = ifnet_get_ifvlan_retained(ifp);
1283 if (ifv == NULL || ifv->ifv_vlp != NULL) {
1284 vlan_unlock();
1285 if (ifv != NULL) {
1286 ifvlan_release(ifv);
1287 }
1288 vlan_parent_release(new_vlp);
1289 return EBUSY;
1290 }
1291 vlp = parent_list_lookup(p);
1292 if (vlp != NULL) {
1293 vlan_parent_retain(vlp);
1294 need_vlp_release++;
1295 if (vlan_parent_lookup_tag(vlp, tag) != NULL) {
1296 /* already a VLAN with that tag on this interface */
1297 error = EADDRINUSE;
1298 goto unlock_done;
1299 }
1300 } else {
1301 /* one for being in the list */
1302 vlan_parent_retain(new_vlp);
1303
1304 /* we're the first VLAN on this interface */
1305 LIST_INSERT_HEAD(&g_vlan->parent_list, new_vlp, vlp_parent_list);
1306 vlp = new_vlp;
1307
1308 vlan_parent_retain(vlp);
1309 need_vlp_release++;
91447636 1310 }
6d2010ae 1311
0a7de745
A
1312 /* need to wait to ensure no one else is trying to add/remove */
1313 vlan_parent_wait(vlp, "vlan_config");
6d2010ae 1314
0a7de745
A
1315 if (ifnet_get_ifvlan(ifp) != ifv) {
1316 error = EINVAL;
1317 goto signal_done;
1318 }
1319
1320 /* check again because someone might have gotten in */
1321 if (parent_list_lookup(p) != vlp) {
1322 error = EBUSY;
1323 goto signal_done;
1324 }
1325
1326 if (vlan_parent_flags_detaching(vlp)
1327 || ifvlan_flags_detaching(ifv) || ifv->ifv_vlp != NULL) {
1328 error = EBUSY;
1329 goto signal_done;
1330 }
1331
1332 /* check again because someone might have gotten the tag */
1333 if (vlan_parent_lookup_tag(vlp, tag) != NULL) {
1334 /* already a VLAN with that tag on this interface */
1335 error = EADDRINUSE;
1336 goto signal_done;
4a249263 1337 }
1c79356b 1338
0a7de745
A
1339 if (vlan_parent_no_vlans(vlp)) {
1340 first_vlan = TRUE;
1341 }
1342 vlan_parent_add_vlan(vlp, ifv, tag);
1343 ifvlan_retain(ifv); /* parent references ifv */
1344 ifv_added = TRUE;
1345
1346 /* check whether bond interface is using parent interface */
1347 ifnet_lock_exclusive(p);
1348 if ((ifnet_eflags(p) & IFEF_BOND) != 0) {
1349 ifnet_lock_done(p);
1350 /* don't allow VLAN over interface that's already part of a bond */
1351 error = EBUSY;
1352 goto signal_done;
1353 }
1354 /* prevent BOND interface from using it */
1355 /* Can't use ifnet_set_eflags because that would take the lock */
1356 p->if_eflags |= IFEF_VLAN;
1357 ifnet_lock_done(p);
1358 vlan_unlock();
1359
91447636 1360 if (first_vlan) {
0a7de745
A
1361 /* attach our VLAN "protocol" to the interface */
1362 error = vlan_attach_protocol(p);
1363 if (error) {
1364 vlan_lock();
1365 goto signal_done;
1366 }
4a249263 1367 }
91447636 1368
0a7de745
A
1369 /* configure parent to receive our multicast addresses */
1370 error = multicast_list_program(&ifv->ifv_multicast, ifp, p);
1371 if (error != 0) {
1372 if (first_vlan) {
1373 (void)vlan_detach_protocol(p);
1374 }
1375 vlan_lock();
1376 goto signal_done;
1377 }
2d21ac55 1378
0a7de745
A
1379 /* set our ethernet address to that of the parent */
1380 ifnet_set_lladdr_and_type(ifp, IF_LLADDR(p), ETHER_ADDR_LEN, IFT_ETHER);
1381
1382 /* no failures past this point */
1383 vlan_lock();
1384
1385 ifv->ifv_encaplen = ETHER_VLAN_ENCAP_LEN;
1386 ifv->ifv_flags = 0;
1387 if (vlan_parent_flags_supports_vlan_mtu(vlp)) {
1388 ifv->ifv_mtufudge = 0;
1389 } else {
1390 /*
1391 * Fudge the MTU by the encapsulation size. This
1392 * makes us incompatible with strictly compliant
1393 * 802.1Q implementations, but allows us to use
1394 * the feature with other NetBSD implementations,
1395 * which might still be useful.
1396 */
1397 ifv->ifv_mtufudge = ifv->ifv_encaplen;
1398 }
1399 ifnet_set_mtu(ifp, ETHERMTU - ifv->ifv_mtufudge);
91447636 1400
1c79356b 1401 /*
0a7de745
A
1402 * Copy only a selected subset of flags from the parent.
1403 * Other flags are none of our business.
1c79356b 1404 */
0a7de745
A
1405 parent_flags = ifnet_flags(p)
1406 & (IFF_BROADCAST | IFF_MULTICAST | IFF_SIMPLEX);
1407 ifnet_set_flags(ifp, parent_flags,
1408 IFF_BROADCAST | IFF_MULTICAST | IFF_SIMPLEX);
1409
1410 /* use hwassist bits from parent interface, but exclude VLAN bits */
1411 offload = ifnet_offload(p) & ~(IFNET_VLAN_TAGGING | IFNET_VLAN_MTU);
1412 ifnet_set_offload(ifp, offload);
1413
1414 ifnet_set_flags(ifp, IFF_RUNNING, IFF_RUNNING);
1415 ifvlan_flags_set_ready(ifv);
1416 vlan_parent_signal(vlp, "vlan_config");
1417 vlan_unlock();
1418 if (new_vlp != vlp) {
1419 /* throw it away, it wasn't needed */
1420 vlan_parent_release(new_vlp);
1421 }
1422 if (ifv != NULL) {
1423 ifvlan_release(ifv);
6d2010ae 1424 }
0a7de745
A
1425 if (first_vlan) {
1426 /* mark the parent interface up */
1427 ifnet_set_flags(p, IFF_UP, IFF_UP);
1428 (void)ifnet_ioctl(p, 0, SIOCSIFFLAGS, (caddr_t)NULL);
1429 }
1430 return 0;
6d2010ae 1431
0a7de745
A
1432signal_done:
1433 vlan_assert_lock_held();
91447636 1434
6d2010ae 1435 if (ifv_added) {
0a7de745
A
1436 vlan_parent_remove_vlan(vlp, ifv);
1437 if (!vlan_parent_flags_detaching(vlp) && vlan_parent_no_vlans(vlp)) {
1438 /* the vlan parent has no more VLAN's */
1439 ifnet_set_eflags(p, 0, IFEF_VLAN);
1440 LIST_REMOVE(vlp, vlp_parent_list);
1441 /* release outside of the lock below */
1442 need_vlp_release++;
1443
1444 /* one for being in the list */
1445 need_vlp_release++;
1446 }
6d2010ae 1447 }
0a7de745
A
1448 vlan_parent_signal(vlp, "vlan_config");
1449
1450unlock_done:
1451 vlan_unlock();
1452
1453 while (need_vlp_release--) {
1454 vlan_parent_release(vlp);
1455 }
1456 if (new_vlp != vlp) {
1457 vlan_parent_release(new_vlp);
1458 }
1459 if (ifv != NULL) {
1460 if (ifv_added) {
1461 ifvlan_release(ifv);
1462 }
1463 ifvlan_release(ifv);
1464 }
1465 return error;
4a249263
A
1466}
1467
1468static void
1469vlan_link_event(struct ifnet * ifp, struct ifnet * p)
1470{
0a7de745 1471 struct ifmediareq ifmr;
4a249263 1472
0a7de745
A
1473 /* generate a link event based on the state of the underlying interface */
1474 bzero(&ifmr, sizeof(ifmr));
1475 snprintf(ifmr.ifm_name, sizeof(ifmr.ifm_name),
1476 "%s%d", ifnet_name(p), ifnet_unit(p));
1477 if (ifnet_ioctl(p, 0, SIOCGIFMEDIA, &ifmr) == 0
1478 && ifmr.ifm_count > 0 && ifmr.ifm_status & IFM_AVALID) {
1479 u_int32_t event;
1480
1481 event = (ifmr.ifm_status & IFM_ACTIVE)
1482 ? KEV_DL_LINK_ON : KEV_DL_LINK_OFF;
1483 interface_link_event(ifp, event);
1484 }
1485 return;
1c79356b
A
1486}
1487
1488static int
6d2010ae 1489vlan_unconfig(ifvlan_ref ifv, int need_to_wait)
1c79356b 1490{
0a7de745
A
1491 struct ifnet * ifp = ifv->ifv_ifp;
1492 int last_vlan = FALSE;
1493 int need_ifv_release = 0;
1494 int need_vlp_release = 0;
1495 struct ifnet * p;
1496 vlan_parent_ref vlp;
91447636 1497
0a7de745
A
1498 vlan_assert_lock_held();
1499 vlp = ifv->ifv_vlp;
1500 if (vlp == NULL) {
1501 return 0;
6d2010ae 1502 }
0a7de745
A
1503 if (need_to_wait) {
1504 need_vlp_release++;
1505 vlan_parent_retain(vlp);
1506 vlan_parent_wait(vlp, "vlan_unconfig");
1507
1508 /* check again because another thread could be in vlan_unconfig */
1509 if (ifv != ifnet_get_ifvlan(ifp)) {
1510 goto signal_done;
1511 }
1512 if (ifv->ifv_vlp != vlp) {
1513 /* vlan parent changed */
1514 goto signal_done;
1515 }
6d2010ae 1516 }
6d2010ae 1517
0a7de745
A
1518 /* ifv has a reference on vlp, need to remove it */
1519 need_vlp_release++;
1520 p = vlp->vlp_ifp;
91447636 1521
0a7de745
A
1522 /* remember whether we're the last VLAN on the parent */
1523 if (LIST_NEXT(LIST_FIRST(&vlp->vlp_vlan_list), ifv_vlan_list) == NULL) {
1524 if (g_vlan->verbose) {
1525 printf("vlan_unconfig: last vlan on %s%d\n",
1526 ifnet_name(p), ifnet_unit(p));
1527 }
1528 last_vlan = TRUE;
1c79356b 1529 }
91447636 1530
0a7de745
A
1531 /* back-out any effect our mtu might have had on the parent */
1532 (void)ifvlan_new_mtu(ifv, ETHERMTU - ifv->ifv_mtufudge);
91447636 1533
0a7de745 1534 vlan_unlock();
91447636 1535
0a7de745
A
1536 /* un-join multicast on parent interface */
1537 (void)multicast_list_remove(&ifv->ifv_multicast);
91447636 1538
0a7de745
A
1539 /* Clear our MAC address. */
1540 ifnet_set_lladdr_and_type(ifp, NULL, 0, IFT_L2VLAN);
2d21ac55 1541
0a7de745
A
1542 /* detach VLAN "protocol" */
1543 if (last_vlan) {
1544 (void)vlan_detach_protocol(p);
1545 }
91447636 1546
0a7de745 1547 vlan_lock();
91447636 1548
0a7de745
A
1549 /* return to the state we were in before SIFVLAN */
1550 ifnet_set_mtu(ifp, 0);
1551 ifnet_set_flags(ifp, 0,
1552 IFF_BROADCAST | IFF_MULTICAST | IFF_SIMPLEX | IFF_RUNNING);
1553 ifnet_set_offload(ifp, 0);
1554 ifv->ifv_mtufudge = 0;
1c79356b 1555
0a7de745
A
1556 /* Disconnect from parent. */
1557 vlan_parent_remove_vlan(vlp, ifv);
1558 ifv->ifv_flags = 0;
6d2010ae 1559
0a7de745
A
1560 /* vlan_parent has reference to ifv, remove it */
1561 need_ifv_release++;
6d2010ae 1562
0a7de745
A
1563 /* from this point on, no more referencing ifv */
1564 if (last_vlan && !vlan_parent_flags_detaching(vlp)) {
1565 /* the vlan parent has no more VLAN's */
1566 ifnet_set_eflags(p, 0, IFEF_VLAN);
1567 LIST_REMOVE(vlp, vlp_parent_list);
6d2010ae 1568
0a7de745
A
1569 /* one for being in the list */
1570 need_vlp_release++;
6d2010ae 1571
0a7de745
A
1572 /* release outside of the lock below */
1573 need_vlp_release++;
1574 }
1575
1576signal_done:
1577 if (need_to_wait) {
1578 vlan_parent_signal(vlp, "vlan_unconfig");
1579 }
1580 vlan_unlock();
1581 while (need_ifv_release--) {
1582 ifvlan_release(ifv);
1583 }
1584 while (need_vlp_release--) { /* references to vlp */
1585 vlan_parent_release(vlp);
1586 }
1587 vlan_lock();
1588 return 0;
1c79356b
A
1589}
1590
1591static int
91447636 1592vlan_set_promisc(struct ifnet * ifp)
4a249263 1593{
0a7de745
A
1594 int error = 0;
1595 ifvlan_ref ifv;
1596 vlan_parent_ref vlp;
1597
1598 vlan_lock();
1599 ifv = ifnet_get_ifvlan_retained(ifp);
1600 if (ifv == NULL) {
1601 error = EBUSY;
1602 goto done;
1603 }
1604
1605 vlp = ifv->ifv_vlp;
1606 if (vlp == NULL) {
1607 goto done;
1608 }
1609 if ((ifnet_flags(ifp) & IFF_PROMISC) != 0) {
1610 if (!ifvlan_flags_promisc(ifv)) {
1611 error = ifnet_set_promiscuous(vlp->vlp_ifp, 1);
1612 if (error == 0) {
1613 ifvlan_flags_set_promisc(ifv);
1614 }
1615 }
1616 } else {
1617 if (ifvlan_flags_promisc(ifv)) {
1618 error = ifnet_set_promiscuous(vlp->vlp_ifp, 0);
1619 if (error == 0) {
1620 ifvlan_flags_clear_promisc(ifv);
1621 }
1622 }
1623 }
1624done:
1625 vlan_unlock();
1626 if (ifv != NULL) {
1627 ifvlan_release(ifv);
1628 }
1629 return error;
91447636 1630}
1c79356b 1631
91447636 1632static int
6d2010ae 1633ifvlan_new_mtu(ifvlan_ref ifv, int mtu)
91447636 1634{
0a7de745
A
1635 struct ifdevmtu * devmtu_p;
1636 int error = 0;
1637 struct ifnet * ifp = ifv->ifv_ifp;
1638 int max_mtu;
1639 int new_mtu = 0;
1640 int req_mtu;
1641 vlan_parent_ref vlp;
1642
1643 vlan_assert_lock_held();
1644 vlp = ifv->ifv_vlp;
1645 devmtu_p = &vlp->vlp_devmtu;
1646 req_mtu = mtu + ifv->ifv_mtufudge;
1647 if (req_mtu > devmtu_p->ifdm_max || req_mtu < devmtu_p->ifdm_min) {
1648 return EINVAL;
1649 }
1650 max_mtu = vlan_parent_find_max_mtu(vlp, ifv);
1651 if (req_mtu > max_mtu) {
1652 new_mtu = req_mtu;
1653 } else if (max_mtu < devmtu_p->ifdm_current) {
1654 new_mtu = max_mtu;
1655 }
91447636 1656 if (new_mtu != 0) {
0a7de745
A
1657 struct ifnet * p = vlp->vlp_ifp;
1658 vlan_unlock();
1659 error = siocsifaltmtu(p, new_mtu);
1660 vlan_lock();
91447636 1661 }
0a7de745
A
1662 if (error == 0) {
1663 if (new_mtu != 0) {
1664 devmtu_p->ifdm_current = new_mtu;
1665 }
1666 ifnet_set_mtu(ifp, mtu);
1667 }
1668 return error;
4a249263
A
1669}
1670
1671static int
91447636 1672vlan_set_mtu(struct ifnet * ifp, int mtu)
4a249263 1673{
0a7de745
A
1674 int error = 0;
1675 ifvlan_ref ifv;
1676 vlan_parent_ref vlp;
4a249263 1677
0a7de745
A
1678 if (mtu < IF_MINMTU) {
1679 return EINVAL;
1680 }
91447636 1681 vlan_lock();
0a7de745
A
1682 ifv = ifnet_get_ifvlan_retained(ifp);
1683 if (ifv == NULL) {
1684 vlan_unlock();
1685 return EBUSY;
91447636 1686 }
0a7de745
A
1687 vlp = ifvlan_get_vlan_parent_retained(ifv);
1688 if (vlp == NULL) {
1689 vlan_unlock();
1690 ifvlan_release(ifv);
1691 if (mtu != 0) {
1692 return EINVAL;
1c79356b 1693 }
0a7de745 1694 return 0;
4a249263 1695 }
0a7de745 1696 vlan_parent_wait(vlp, "vlan_set_mtu");
4a249263 1697
0a7de745
A
1698 /* check again, something might have changed */
1699 if (ifnet_get_ifvlan(ifp) != ifv
1700 || ifvlan_flags_detaching(ifv)) {
1701 error = EBUSY;
1702 goto signal_done;
4a249263 1703 }
0a7de745
A
1704 if (ifv->ifv_vlp != vlp) {
1705 /* vlan parent changed */
1706 goto signal_done;
1707 }
1708 if (vlan_parent_flags_detaching(vlp)) {
1709 if (mtu != 0) {
1710 error = EINVAL;
1711 }
1712 goto signal_done;
4a249263 1713 }
0a7de745
A
1714 error = ifvlan_new_mtu(ifv, mtu);
1715
1716signal_done:
1717 vlan_parent_signal(vlp, "vlan_set_mtu");
91447636 1718 vlan_unlock();
0a7de745
A
1719 vlan_parent_release(vlp);
1720 ifvlan_release(ifv);
91447636 1721
0a7de745
A
1722 return error;
1723}
91447636 1724
0a7de745
A
1725static int
1726vlan_ioctl(ifnet_t ifp, u_long cmd, void * data)
1727{
1728 struct ifdevmtu * devmtu_p;
1729 int error = 0;
1730 struct ifaddr * ifa;
1731 struct ifmediareq *ifmr;
1732 struct ifreq * ifr;
1733 ifvlan_ref ifv;
1734 struct ifnet * p;
1735 u_short tag;
1736 user_addr_t user_addr;
1737 vlan_parent_ref vlp;
1738 struct vlanreq vlr;
1739
1740 if (ifnet_type(ifp) != IFT_L2VLAN) {
1741 return EOPNOTSUPP;
4a249263 1742 }
0a7de745
A
1743 ifr = (struct ifreq *)data;
1744 ifa = (struct ifaddr *)data;
1745
1746 switch (cmd) {
1747 case SIOCSIFADDR:
1748 ifnet_set_flags(ifp, IFF_UP, IFF_UP);
1749 break;
1750
1751 case SIOCGIFMEDIA32:
1752 case SIOCGIFMEDIA64:
1753 vlan_lock();
1754 ifv = (ifvlan_ref)ifnet_softc(ifp);
1755 if (ifv == NULL || ifvlan_flags_detaching(ifv)) {
1756 vlan_unlock();
1757 return ifv == NULL ? EOPNOTSUPP : EBUSY;
1758 }
1759 p = (ifv->ifv_vlp == NULL) ? NULL : ifv->ifv_vlp->vlp_ifp;
1760 vlan_unlock();
1761 ifmr = (struct ifmediareq *)data;
1762 user_addr = (cmd == SIOCGIFMEDIA64) ?
1763 ((struct ifmediareq64 *)ifmr)->ifmu_ulist :
1764 CAST_USER_ADDR_T(((struct ifmediareq32 *)ifmr)->ifmu_ulist);
1765 if (p != NULL) {
1766 struct ifmediareq p_ifmr;
1767
1768 bzero(&p_ifmr, sizeof(p_ifmr));
1769 error = ifnet_ioctl(p, 0, SIOCGIFMEDIA, &p_ifmr);
1770 if (error == 0) {
1771 ifmr->ifm_active = p_ifmr.ifm_active;
1772 ifmr->ifm_current = p_ifmr.ifm_current;
1773 ifmr->ifm_mask = p_ifmr.ifm_mask;
1774 ifmr->ifm_status = p_ifmr.ifm_status;
1775 ifmr->ifm_count = p_ifmr.ifm_count;
1776 /* Limit the result to the parent's current config. */
1777 if (ifmr->ifm_count >= 1 && user_addr != USER_ADDR_NULL) {
1778 ifmr->ifm_count = 1;
1779 error = copyout(&ifmr->ifm_current, user_addr,
1780 sizeof(int));
1781 }
1782 }
1783 } else {
1784 ifmr->ifm_active = ifmr->ifm_current = IFM_NONE;
1785 ifmr->ifm_mask = 0;
1786 ifmr->ifm_status = IFM_AVALID;
1787 ifmr->ifm_count = 1;
1788 if (user_addr != USER_ADDR_NULL) {
1789 error = copyout(&ifmr->ifm_current, user_addr, sizeof(int));
1790 }
1791 }
91447636 1792 break;
0a7de745
A
1793
1794 case SIOCSIFMEDIA:
1795 error = EOPNOTSUPP;
91447636 1796 break;
0a7de745
A
1797
1798 case SIOCGIFDEVMTU:
1799 vlan_lock();
1800 ifv = (ifvlan_ref)ifnet_softc(ifp);
1801 if (ifv == NULL || ifvlan_flags_detaching(ifv)) {
1802 vlan_unlock();
1803 return ifv == NULL ? EOPNOTSUPP : EBUSY;
1804 }
1805 vlp = ifv->ifv_vlp;
1806 if (vlp != NULL) {
1807 int min_mtu = vlp->vlp_devmtu.ifdm_min - ifv->ifv_mtufudge;
1808 devmtu_p = &ifr->ifr_devmtu;
1809 devmtu_p->ifdm_current = ifnet_mtu(ifp);
1810 devmtu_p->ifdm_min = max(min_mtu, IF_MINMTU);
1811 devmtu_p->ifdm_max = vlp->vlp_devmtu.ifdm_max - ifv->ifv_mtufudge;
1812 } else {
1813 devmtu_p = &ifr->ifr_devmtu;
1814 devmtu_p->ifdm_current = 0;
1815 devmtu_p->ifdm_min = 0;
1816 devmtu_p->ifdm_max = 0;
1817 }
1818 vlan_unlock();
5c9f4661 1819 break;
5c9f4661 1820
0a7de745
A
1821 case SIOCSIFMTU:
1822 error = vlan_set_mtu(ifp, ifr->ifr_mtu);
91447636 1823 break;
0a7de745
A
1824
1825 case SIOCSIFVLAN:
1826 user_addr = proc_is64bit(current_proc())
1827 ? ifr->ifr_data64 : CAST_USER_ADDR_T(ifr->ifr_data);
1828 error = copyin(user_addr, &vlr, sizeof(vlr));
1829 if (error) {
1830 break;
1831 }
1832 p = NULL;
1833 /* ensure nul termination */
1834 vlr.vlr_parent[IFNAMSIZ - 1] = '\0';
1835 if (vlr.vlr_parent[0] != '\0') {
1836 if (vlr.vlr_tag & ~EVL_VLID_MASK) {
1837 /*
1838 * Don't let the caller set up a VLAN tag with
1839 * anything except VLID bits.
1840 */
1841 error = EINVAL;
1842 break;
1843 }
1844 p = ifunit(vlr.vlr_parent);
1845 if (p == NULL) {
1846 error = ENXIO;
1847 break;
1848 }
1849 if (IFNET_IS_INTCOPROC(p)) {
1850 error = EINVAL;
1851 break;
1852 }
1853
1854 /* can't do VLAN over anything but ethernet or ethernet aggregate */
1855 if (ifnet_type(p) != IFT_ETHER
1856 && ifnet_type(p) != IFT_IEEE8023ADLAG) {
1857 error = EPROTONOSUPPORT;
1858 break;
1859 }
1860 error = vlan_config(ifp, p, vlr.vlr_tag);
1861 if (error) {
1862 break;
1863 }
1864
1865 /* Update promiscuous mode, if necessary. */
1866 (void)vlan_set_promisc(ifp);
1867
1868 /* generate a link event based on the state of the parent */
1869 vlan_link_event(ifp, p);
1870 } else {
1871 int need_link_event = FALSE;
1872
1873 vlan_lock();
1874 ifv = (ifvlan_ref)ifnet_softc(ifp);
1875 if (ifv == NULL || ifvlan_flags_detaching(ifv)) {
1876 vlan_unlock();
1877 error = (ifv == NULL ? EOPNOTSUPP : EBUSY);
1878 break;
1879 }
1880 need_link_event = vlan_remove(ifv, TRUE);
1881 vlan_unlock();
1882 if (need_link_event) {
1883 interface_link_event(ifp, KEV_DL_LINK_OFF);
1884 }
1885 }
91447636 1886 break;
0a7de745
A
1887
1888 case SIOCGIFVLAN:
1889 bzero(&vlr, sizeof vlr);
1890 vlan_lock();
1891 ifv = (ifvlan_ref)ifnet_softc(ifp);
1892 if (ifv == NULL || ifvlan_flags_detaching(ifv)) {
1893 vlan_unlock();
1894 return ifv == NULL ? EOPNOTSUPP : EBUSY;
1895 }
1896 p = (ifv->ifv_vlp == NULL) ? NULL : ifv->ifv_vlp->vlp_ifp;
1897 tag = ifv->ifv_tag;
91447636 1898 vlan_unlock();
0a7de745
A
1899 if (p != NULL) {
1900 snprintf(vlr.vlr_parent, sizeof(vlr.vlr_parent),
1901 "%s%d", ifnet_name(p), ifnet_unit(p));
1902 vlr.vlr_tag = tag;
1903 }
1904 user_addr = proc_is64bit(current_proc())
1905 ? ifr->ifr_data64 : CAST_USER_ADDR_T(ifr->ifr_data);
1906 error = copyout(&vlr, user_addr, sizeof(vlr));
91447636 1907 break;
4a249263 1908
0a7de745
A
1909 case SIOCSIFFLAGS:
1910 /*
1911 * For promiscuous mode, we enable promiscuous mode on
1912 * the parent if we need promiscuous on the VLAN interface.
1913 */
1914 error = vlan_set_promisc(ifp);
1915 break;
1916
1917 case SIOCADDMULTI:
1918 case SIOCDELMULTI:
1919 error = vlan_setmulti(ifp);
1920 break;
1921 default:
1922 error = EOPNOTSUPP;
1923 }
1924 return error;
4a249263
A
1925}
1926
0a7de745 1927static void
4a249263
A
1928vlan_if_free(struct ifnet * ifp)
1929{
0a7de745 1930 ifvlan_ref ifv;
4a249263 1931
0a7de745
A
1932 if (ifp == NULL) {
1933 return;
1934 }
1935 ifv = (ifvlan_ref)ifnet_softc(ifp);
1936 if (ifv == NULL) {
1937 return;
1938 }
1939 ifvlan_release(ifv);
1940 ifnet_release(ifp);
91447636 1941 return;
4a249263
A
1942}
1943
91447636 1944static void
0a7de745
A
1945vlan_event(struct ifnet * p, __unused protocol_family_t protocol,
1946 const struct kev_msg * event)
4a249263 1947{
0a7de745 1948 int event_code;
4a249263 1949
0a7de745
A
1950 /* Check if the interface we are attached to is being detached */
1951 if (event->vendor_code != KEV_VENDOR_APPLE
1952 || event->kev_class != KEV_NETWORK_CLASS
1953 || event->kev_subclass != KEV_DL_SUBCLASS) {
1954 return;
1955 }
1956 event_code = event->event_code;
1957 switch (event_code) {
1958 case KEV_DL_LINK_OFF:
1959 case KEV_DL_LINK_ON:
1960 vlan_parent_link_event(p, event_code);
1961 break;
1962 default:
1963 return;
1964 }
91447636 1965 return;
4a249263
A
1966}
1967
6d2010ae
A
1968static errno_t
1969vlan_detached(ifnet_t p, __unused protocol_family_t protocol)
1970{
0a7de745
A
1971 if (ifnet_is_attached(p, 0) == 0) {
1972 /* if the parent isn't attached, remove all VLANs */
1973 vlan_parent_remove_all_vlans(p);
1974 }
1975 return 0;
6d2010ae
A
1976}
1977
4a249263 1978static void
b0d623f7 1979interface_link_event(struct ifnet * ifp, u_int32_t event_code)
4a249263 1980{
0a7de745
A
1981 struct {
1982 struct kern_event_msg header;
1983 u_int32_t unit;
1984 char if_name[IFNAMSIZ];
1985 } event;
1986
1987 bzero(&event, sizeof(event));
1988 event.header.total_size = sizeof(event);
1989 event.header.vendor_code = KEV_VENDOR_APPLE;
1990 event.header.kev_class = KEV_NETWORK_CLASS;
1991 event.header.kev_subclass = KEV_DL_SUBCLASS;
1992 event.header.event_code = event_code;
1993 event.header.event_data[0] = ifnet_family(ifp);
1994 event.unit = (u_int32_t) ifnet_unit(ifp);
1995 strlcpy(event.if_name, ifnet_name(ifp), IFNAMSIZ);
1996 ifnet_event(ifp, &event.header);
1997 return;
4a249263
A
1998}
1999
2000static void
6d2010ae 2001vlan_parent_link_event(struct ifnet * p, u_int32_t event_code)
4a249263 2002{
0a7de745 2003 vlan_parent_ref vlp;
4a249263 2004
0a7de745
A
2005 vlan_lock();
2006 if ((ifnet_eflags(p) & IFEF_VLAN) == 0) {
2007 vlan_unlock();
2008 /* no VLAN's */
2009 return;
2010 }
2011 vlp = parent_list_lookup(p);
2012 if (vlp == NULL) {
2013 /* no VLAN's */
2014 vlan_unlock();
2015 return;
2016 }
2017 vlan_parent_flags_set_link_event_required(vlp);
2018 vlp->vlp_event_code = event_code;
2019 if (vlan_parent_flags_change_in_progress(vlp)) {
2020 /* don't block waiting to generate an event */
2021 vlan_unlock();
2022 return;
2023 }
2024 vlan_parent_retain(vlp);
2025 vlan_parent_wait(vlp, "vlan_parent_link_event");
2026 vlan_parent_signal(vlp, "vlan_parent_link_event");
fe8ab488 2027 vlan_unlock();
0a7de745 2028 vlan_parent_release(vlp);
fe8ab488 2029 return;
4a249263
A
2030}
2031
4a249263
A
2032/*
2033 * Function: vlan_attach_protocol
2034 * Purpose:
2035 * Attach a DLIL protocol to the interface, using the ETHERTYPE_VLAN
91447636 2036 * demux ether type.
4a249263 2037 *
91447636
A
2038 * The ethernet demux actually special cases VLAN to support hardware.
2039 * The demux here isn't used. The demux will return PF_VLAN for the
2040 * appropriate packets and our vlan_input function will be called.
4a249263
A
2041 */
2042static int
2043vlan_attach_protocol(struct ifnet *ifp)
2044{
0a7de745
A
2045 int error;
2046 struct ifnet_attach_proto_param reg;
2047
2048 bzero(&reg, sizeof(reg));
2049 reg.input = vlan_input;
2050 reg.event = vlan_event;
2051 reg.detached = vlan_detached;
2052 error = ifnet_attach_protocol(ifp, PF_VLAN, &reg);
2053 if (error) {
2054 printf("vlan_proto_attach(%s%d) ifnet_attach_protocol failed, %d\n",
2055 ifnet_name(ifp), ifnet_unit(ifp), error);
2056 }
2057 return error;
4a249263
A
2058}
2059
2060/*
2061 * Function: vlan_detach_protocol
2062 * Purpose:
2063 * Detach our DLIL protocol from an interface
2064 */
2065static int
2066vlan_detach_protocol(struct ifnet *ifp)
2067{
0a7de745
A
2068 int error;
2069
2070 error = ifnet_detach_protocol(ifp, PF_VLAN);
2071 if (error) {
2072 printf("vlan_proto_detach(%s%d) ifnet_detach_protocol failed, %d\n",
2073 ifnet_name(ifp), ifnet_unit(ifp), error);
2074 }
4a249263 2075
0a7de745 2076 return error;
4a249263
A
2077}
2078
2079/*
2080 * DLIL interface family functions
2d21ac55 2081 * We use the ethernet plumb functions, since that's all we support.
4a249263
A
2082 * If we wanted to handle multiple LAN types (tokenring, etc.), we'd
2083 * call the appropriate routines for that LAN type instead of hard-coding
2084 * ethernet.
2085 */
2d21ac55
A
2086static errno_t
2087vlan_attach_inet(struct ifnet *ifp, protocol_family_t protocol_family)
4a249263 2088{
0a7de745 2089 return ether_attach_inet(ifp, protocol_family);
4a249263
A
2090}
2091
2d21ac55
A
2092static void
2093vlan_detach_inet(struct ifnet *ifp, protocol_family_t protocol_family)
4a249263 2094{
0a7de745 2095 ether_detach_inet(ifp, protocol_family);
4a249263
A
2096}
2097
2d21ac55
A
2098#if INET6
2099static errno_t
2100vlan_attach_inet6(struct ifnet *ifp, protocol_family_t protocol_family)
4a249263 2101{
0a7de745 2102 return ether_attach_inet6(ifp, protocol_family);
4a249263
A
2103}
2104
2d21ac55
A
2105static void
2106vlan_detach_inet6(struct ifnet *ifp, protocol_family_t protocol_family)
4a249263 2107{
0a7de745 2108 ether_detach_inet6(ifp, protocol_family);
4a249263 2109}
2d21ac55 2110#endif /* INET6 */
4a249263 2111
4a249263 2112__private_extern__ int
91447636 2113vlan_family_init(void)
4a249263 2114{
0a7de745 2115 int error = 0;
2d21ac55 2116
0a7de745
A
2117 error = proto_register_plumber(PF_INET, IFNET_FAMILY_VLAN,
2118 vlan_attach_inet, vlan_detach_inet);
2119 if (error != 0) {
2120 printf("proto_register_plumber failed for AF_INET error=%d\n",
2121 error);
2122 goto done;
2123 }
2d21ac55 2124#if INET6
0a7de745
A
2125 error = proto_register_plumber(PF_INET6, IFNET_FAMILY_VLAN,
2126 vlan_attach_inet6, vlan_detach_inet6);
2127 if (error != 0) {
2128 printf("proto_register_plumber failed for AF_INET6 error=%d\n",
2129 error);
2130 goto done;
2131 }
2d21ac55 2132#endif
0a7de745
A
2133 error = vlan_clone_attach();
2134 if (error != 0) {
2135 printf("proto_register_plumber failed vlan_clone_attach error=%d\n",
2136 error);
2137 goto done;
2138 }
b0d623f7 2139
4a249263 2140
0a7de745
A
2141done:
2142 return error;
4a249263 2143}