if_vlan.c revision 1.153 1 1.153 roy /* $NetBSD: if_vlan.c,v 1.153 2020/09/26 18:38:09 roy Exp $ */
2 1.1 thorpej
3 1.124 maxv /*
4 1.31 thorpej * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.11 thorpej * by Andrew Doran, and by Jason R. Thorpe of Zembu Labs, Inc.
9 1.1 thorpej *
10 1.1 thorpej * Redistribution and use in source and binary forms, with or without
11 1.1 thorpej * modification, are permitted provided that the following conditions
12 1.1 thorpej * are met:
13 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.1 thorpej * notice, this list of conditions and the following disclaimer.
15 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.1 thorpej * documentation and/or other materials provided with the distribution.
18 1.1 thorpej *
19 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
30 1.1 thorpej */
31 1.1 thorpej
32 1.1 thorpej /*
33 1.1 thorpej * Copyright 1998 Massachusetts Institute of Technology
34 1.1 thorpej *
35 1.1 thorpej * Permission to use, copy, modify, and distribute this software and
36 1.1 thorpej * its documentation for any purpose and without fee is hereby
37 1.1 thorpej * granted, provided that both the above copyright notice and this
38 1.1 thorpej * permission notice appear in all copies, that both the above
39 1.1 thorpej * copyright notice and this permission notice appear in all
40 1.1 thorpej * supporting documentation, and that the name of M.I.T. not be used
41 1.1 thorpej * in advertising or publicity pertaining to distribution of the
42 1.1 thorpej * software without specific, written prior permission. M.I.T. makes
43 1.1 thorpej * no representations about the suitability of this software for any
44 1.1 thorpej * purpose. It is provided "as is" without express or implied
45 1.1 thorpej * warranty.
46 1.44 perry *
47 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS
48 1.1 thorpej * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
49 1.1 thorpej * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
50 1.1 thorpej * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
51 1.1 thorpej * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
52 1.1 thorpej * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
53 1.1 thorpej * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
54 1.1 thorpej * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
55 1.1 thorpej * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
56 1.1 thorpej * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
57 1.1 thorpej * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 1.1 thorpej * SUCH DAMAGE.
59 1.1 thorpej *
60 1.1 thorpej * from FreeBSD: if_vlan.c,v 1.16 2000/03/26 15:21:40 charnier Exp
61 1.1 thorpej * via OpenBSD: if_vlan.c,v 1.4 2000/05/15 19:15:00 chris Exp
62 1.1 thorpej */
63 1.1 thorpej
64 1.1 thorpej /*
65 1.1 thorpej * if_vlan.c - pseudo-device driver for IEEE 802.1Q virtual LANs. Might be
66 1.1 thorpej * extended some day to also handle IEEE 802.1P priority tagging. This is
67 1.1 thorpej * sort of sneaky in the implementation, since we need to pretend to be
68 1.1 thorpej * enough of an Ethernet implementation to make ARP work. The way we do
69 1.1 thorpej * this is by telling everyone that we are an Ethernet interface, and then
70 1.1 thorpej * catch the packets that ether_output() left on our output queue when it
71 1.1 thorpej * calls if_start(), rewrite them for use by the real outgoing interface,
72 1.1 thorpej * and ask it to send them.
73 1.1 thorpej *
74 1.1 thorpej * TODO:
75 1.1 thorpej *
76 1.1 thorpej * - Need some way to notify vlan interfaces when the parent
77 1.1 thorpej * interface changes MTU.
78 1.1 thorpej */
79 1.33 lukem
80 1.33 lukem #include <sys/cdefs.h>
81 1.153 roy __KERNEL_RCSID(0, "$NetBSD: if_vlan.c,v 1.153 2020/09/26 18:38:09 roy Exp $");
82 1.1 thorpej
83 1.79 ozaki #ifdef _KERNEL_OPT
84 1.1 thorpej #include "opt_inet.h"
85 1.121 ozaki #include "opt_net_mpsafe.h"
86 1.79 ozaki #endif
87 1.1 thorpej
88 1.1 thorpej #include <sys/param.h>
89 1.98 knakahar #include <sys/systm.h>
90 1.1 thorpej #include <sys/kernel.h>
91 1.1 thorpej #include <sys/mbuf.h>
92 1.1 thorpej #include <sys/queue.h>
93 1.1 thorpej #include <sys/socket.h>
94 1.1 thorpej #include <sys/sockio.h>
95 1.1 thorpej #include <sys/systm.h>
96 1.1 thorpej #include <sys/proc.h>
97 1.48 elad #include <sys/kauth.h>
98 1.76 ozaki #include <sys/mutex.h>
99 1.98 knakahar #include <sys/kmem.h>
100 1.98 knakahar #include <sys/cpu.h>
101 1.98 knakahar #include <sys/pserialize.h>
102 1.98 knakahar #include <sys/psref.h>
103 1.98 knakahar #include <sys/pslist.h>
104 1.98 knakahar #include <sys/atomic.h>
105 1.91 christos #include <sys/device.h>
106 1.91 christos #include <sys/module.h>
107 1.1 thorpej
108 1.1 thorpej #include <net/bpf.h>
109 1.1 thorpej #include <net/if.h>
110 1.1 thorpej #include <net/if_dl.h>
111 1.1 thorpej #include <net/if_types.h>
112 1.1 thorpej #include <net/if_ether.h>
113 1.1 thorpej #include <net/if_vlanvar.h>
114 1.1 thorpej
115 1.1 thorpej #ifdef INET
116 1.1 thorpej #include <netinet/in.h>
117 1.1 thorpej #include <netinet/if_inarp.h>
118 1.1 thorpej #endif
119 1.74 ozaki #ifdef INET6
120 1.74 ozaki #include <netinet6/in6_ifattach.h>
121 1.97 ozaki #include <netinet6/in6_var.h>
122 1.148 yamaguch #include <netinet6/nd6.h>
123 1.74 ozaki #endif
124 1.1 thorpej
125 1.82 christos #include "ioconf.h"
126 1.82 christos
127 1.10 thorpej struct vlan_mc_entry {
128 1.10 thorpej LIST_ENTRY(vlan_mc_entry) mc_entries;
129 1.10 thorpej /*
130 1.10 thorpej * A key to identify this entry. The mc_addr below can't be
131 1.10 thorpej * used since multiple sockaddr may mapped into the same
132 1.10 thorpej * ether_multi (e.g., AF_UNSPEC).
133 1.10 thorpej */
134 1.141 msaitoh struct ether_multi *mc_enm;
135 1.10 thorpej struct sockaddr_storage mc_addr;
136 1.10 thorpej };
137 1.10 thorpej
138 1.98 knakahar struct ifvlan_linkmib {
139 1.98 knakahar struct ifvlan *ifvm_ifvlan;
140 1.98 knakahar const struct vlan_multisw *ifvm_msw;
141 1.98 knakahar int ifvm_encaplen; /* encapsulation length */
142 1.98 knakahar int ifvm_mtufudge; /* MTU fudged by this much */
143 1.98 knakahar int ifvm_mintu; /* min transmission unit */
144 1.98 knakahar uint16_t ifvm_proto; /* encapsulation ethertype */
145 1.98 knakahar uint16_t ifvm_tag; /* tag to apply on packets */
146 1.137 msaitoh struct ifnet *ifvm_p; /* parent interface of this vlan */
147 1.98 knakahar
148 1.98 knakahar struct psref_target ifvm_psref;
149 1.98 knakahar };
150 1.98 knakahar
151 1.10 thorpej struct ifvlan {
152 1.141 msaitoh struct ethercom ifv_ec;
153 1.98 knakahar struct ifvlan_linkmib *ifv_mib; /*
154 1.98 knakahar * reader must use vlan_getref_linkmib()
155 1.98 knakahar * instead of direct dereference
156 1.98 knakahar */
157 1.98 knakahar kmutex_t ifv_lock; /* writer lock for ifv_mib */
158 1.131 jmcneill pserialize_t ifv_psz;
159 1.98 knakahar
160 1.10 thorpej LIST_HEAD(__vlan_mchead, vlan_mc_entry) ifv_mc_listhead;
161 1.10 thorpej LIST_ENTRY(ifvlan) ifv_list;
162 1.98 knakahar struct pslist_entry ifv_hash;
163 1.17 thorpej int ifv_flags;
164 1.10 thorpej };
165 1.10 thorpej
166 1.17 thorpej #define IFVF_PROMISC 0x01 /* promiscuous mode enabled */
167 1.17 thorpej
168 1.10 thorpej #define ifv_if ifv_ec.ec_if
169 1.10 thorpej
170 1.10 thorpej #define ifv_msw ifv_mib.ifvm_msw
171 1.10 thorpej #define ifv_encaplen ifv_mib.ifvm_encaplen
172 1.10 thorpej #define ifv_mtufudge ifv_mib.ifvm_mtufudge
173 1.10 thorpej #define ifv_mintu ifv_mib.ifvm_mintu
174 1.10 thorpej #define ifv_tag ifv_mib.ifvm_tag
175 1.10 thorpej
176 1.10 thorpej struct vlan_multisw {
177 1.10 thorpej int (*vmsw_addmulti)(struct ifvlan *, struct ifreq *);
178 1.10 thorpej int (*vmsw_delmulti)(struct ifvlan *, struct ifreq *);
179 1.10 thorpej void (*vmsw_purgemulti)(struct ifvlan *);
180 1.10 thorpej };
181 1.10 thorpej
182 1.10 thorpej static int vlan_ether_addmulti(struct ifvlan *, struct ifreq *);
183 1.10 thorpej static int vlan_ether_delmulti(struct ifvlan *, struct ifreq *);
184 1.10 thorpej static void vlan_ether_purgemulti(struct ifvlan *);
185 1.10 thorpej
186 1.10 thorpej const struct vlan_multisw vlan_ether_multisw = {
187 1.123 maxv .vmsw_addmulti = vlan_ether_addmulti,
188 1.123 maxv .vmsw_delmulti = vlan_ether_delmulti,
189 1.123 maxv .vmsw_purgemulti = vlan_ether_purgemulti,
190 1.10 thorpej };
191 1.10 thorpej
192 1.1 thorpej static int vlan_clone_create(struct if_clone *, int);
193 1.42 peter static int vlan_clone_destroy(struct ifnet *);
194 1.137 msaitoh static int vlan_config(struct ifvlan *, struct ifnet *, uint16_t);
195 1.53 christos static int vlan_ioctl(struct ifnet *, u_long, void *);
196 1.1 thorpej static void vlan_start(struct ifnet *);
197 1.98 knakahar static int vlan_transmit(struct ifnet *, struct mbuf *);
198 1.11 thorpej static void vlan_unconfig(struct ifnet *);
199 1.137 msaitoh static int vlan_unconfig_locked(struct ifvlan *, struct ifvlan_linkmib *);
200 1.98 knakahar static void vlan_hash_init(void);
201 1.98 knakahar static int vlan_hash_fini(void);
202 1.110 msaitoh static int vlan_tag_hash(uint16_t, u_long);
203 1.98 knakahar static struct ifvlan_linkmib* vlan_getref_linkmib(struct ifvlan *,
204 1.98 knakahar struct psref *);
205 1.137 msaitoh static void vlan_putref_linkmib(struct ifvlan_linkmib *, struct psref *);
206 1.137 msaitoh static void vlan_linkmib_update(struct ifvlan *, struct ifvlan_linkmib *);
207 1.98 knakahar static struct ifvlan_linkmib* vlan_lookup_tag_psref(struct ifnet *,
208 1.98 knakahar uint16_t, struct psref *);
209 1.98 knakahar
210 1.98 knakahar static struct {
211 1.98 knakahar kmutex_t lock;
212 1.138 msaitoh LIST_HEAD(vlan_ifvlist, ifvlan) list;
213 1.98 knakahar } ifv_list __cacheline_aligned;
214 1.10 thorpej
215 1.1 thorpej
216 1.98 knakahar #if !defined(VLAN_TAG_HASH_SIZE)
217 1.98 knakahar #define VLAN_TAG_HASH_SIZE 32
218 1.98 knakahar #endif
219 1.98 knakahar static struct {
220 1.98 knakahar kmutex_t lock;
221 1.98 knakahar struct pslist_head *lists;
222 1.98 knakahar u_long mask;
223 1.98 knakahar } ifv_hash __cacheline_aligned = {
224 1.98 knakahar .lists = NULL,
225 1.98 knakahar .mask = 0,
226 1.98 knakahar };
227 1.98 knakahar
228 1.98 knakahar pserialize_t vlan_psz __read_mostly;
229 1.98 knakahar static struct psref_class *ifvm_psref_class __read_mostly;
230 1.76 ozaki
231 1.1 thorpej struct if_clone vlan_cloner =
232 1.1 thorpej IF_CLONE_INITIALIZER("vlan", vlan_clone_create, vlan_clone_destroy);
233 1.1 thorpej
234 1.38 scw /* Used to pad ethernet frames with < ETHER_MIN_LEN bytes */
235 1.38 scw static char vlan_zero_pad_buff[ETHER_MIN_LEN];
236 1.38 scw
237 1.109 ozaki static inline int
238 1.109 ozaki vlan_safe_ifpromisc(struct ifnet *ifp, int pswitch)
239 1.109 ozaki {
240 1.109 ozaki int e;
241 1.124 maxv
242 1.109 ozaki KERNEL_LOCK_UNLESS_NET_MPSAFE();
243 1.109 ozaki e = ifpromisc(ifp, pswitch);
244 1.109 ozaki KERNEL_UNLOCK_UNLESS_NET_MPSAFE();
245 1.124 maxv
246 1.109 ozaki return e;
247 1.109 ozaki }
248 1.109 ozaki
249 1.115 ozaki static inline int
250 1.115 ozaki vlan_safe_ifpromisc_locked(struct ifnet *ifp, int pswitch)
251 1.115 ozaki {
252 1.115 ozaki int e;
253 1.124 maxv
254 1.115 ozaki KERNEL_LOCK_UNLESS_NET_MPSAFE();
255 1.115 ozaki e = ifpromisc_locked(ifp, pswitch);
256 1.115 ozaki KERNEL_UNLOCK_UNLESS_NET_MPSAFE();
257 1.124 maxv
258 1.115 ozaki return e;
259 1.115 ozaki }
260 1.115 ozaki
261 1.1 thorpej void
262 1.52 christos vlanattach(int n)
263 1.1 thorpej {
264 1.1 thorpej
265 1.91 christos /*
266 1.91 christos * Nothing to do here, initialization is handled by the
267 1.124 maxv * module initialization code in vlaninit() below.
268 1.91 christos */
269 1.91 christos }
270 1.91 christos
271 1.91 christos static void
272 1.91 christos vlaninit(void)
273 1.91 christos {
274 1.98 knakahar mutex_init(&ifv_list.lock, MUTEX_DEFAULT, IPL_NONE);
275 1.98 knakahar LIST_INIT(&ifv_list.list);
276 1.91 christos
277 1.98 knakahar mutex_init(&ifv_hash.lock, MUTEX_DEFAULT, IPL_NONE);
278 1.98 knakahar vlan_psz = pserialize_create();
279 1.98 knakahar ifvm_psref_class = psref_class_create("vlanlinkmib", IPL_SOFTNET);
280 1.1 thorpej if_clone_attach(&vlan_cloner);
281 1.98 knakahar
282 1.98 knakahar vlan_hash_init();
283 1.149 pgoyette MODULE_HOOK_SET(if_vlan_vlan_input_hook, vlan_input);
284 1.1 thorpej }
285 1.1 thorpej
286 1.91 christos static int
287 1.91 christos vlandetach(void)
288 1.91 christos {
289 1.124 maxv bool is_empty;
290 1.124 maxv int error;
291 1.91 christos
292 1.98 knakahar mutex_enter(&ifv_list.lock);
293 1.124 maxv is_empty = LIST_EMPTY(&ifv_list.list);
294 1.124 maxv mutex_exit(&ifv_list.lock);
295 1.124 maxv
296 1.124 maxv if (!is_empty)
297 1.98 knakahar return EBUSY;
298 1.98 knakahar
299 1.98 knakahar error = vlan_hash_fini();
300 1.98 knakahar if (error != 0)
301 1.98 knakahar return error;
302 1.91 christos
303 1.98 knakahar if_clone_detach(&vlan_cloner);
304 1.98 knakahar psref_class_destroy(ifvm_psref_class);
305 1.98 knakahar pserialize_destroy(vlan_psz);
306 1.98 knakahar mutex_destroy(&ifv_hash.lock);
307 1.98 knakahar mutex_destroy(&ifv_list.lock);
308 1.91 christos
309 1.134 pgoyette MODULE_HOOK_UNSET(if_vlan_vlan_input_hook);
310 1.98 knakahar return 0;
311 1.91 christos }
312 1.91 christos
313 1.30 thorpej static void
314 1.30 thorpej vlan_reset_linkname(struct ifnet *ifp)
315 1.30 thorpej {
316 1.30 thorpej
317 1.30 thorpej /*
318 1.30 thorpej * We start out with a "802.1Q VLAN" type and zero-length
319 1.30 thorpej * addresses. When we attach to a parent interface, we
320 1.30 thorpej * inherit its type, address length, address, and data link
321 1.30 thorpej * type.
322 1.30 thorpej */
323 1.30 thorpej
324 1.30 thorpej ifp->if_type = IFT_L2VLAN;
325 1.30 thorpej ifp->if_addrlen = 0;
326 1.30 thorpej ifp->if_dlt = DLT_NULL;
327 1.30 thorpej if_alloc_sadl(ifp);
328 1.30 thorpej }
329 1.30 thorpej
330 1.1 thorpej static int
331 1.1 thorpej vlan_clone_create(struct if_clone *ifc, int unit)
332 1.1 thorpej {
333 1.1 thorpej struct ifvlan *ifv;
334 1.1 thorpej struct ifnet *ifp;
335 1.98 knakahar struct ifvlan_linkmib *mib;
336 1.105 msaitoh int rv;
337 1.1 thorpej
338 1.137 msaitoh ifv = malloc(sizeof(struct ifvlan), M_DEVBUF, M_WAITOK | M_ZERO);
339 1.98 knakahar mib = kmem_zalloc(sizeof(struct ifvlan_linkmib), KM_SLEEP);
340 1.14 enami ifp = &ifv->ifv_if;
341 1.5 enami LIST_INIT(&ifv->ifv_mc_listhead);
342 1.11 thorpej
343 1.98 knakahar mib->ifvm_ifvlan = ifv;
344 1.98 knakahar mib->ifvm_p = NULL;
345 1.98 knakahar psref_target_init(&mib->ifvm_psref, ifvm_psref_class);
346 1.98 knakahar
347 1.98 knakahar mutex_init(&ifv->ifv_lock, MUTEX_DEFAULT, IPL_NONE);
348 1.131 jmcneill ifv->ifv_psz = pserialize_create();
349 1.98 knakahar ifv->ifv_mib = mib;
350 1.98 knakahar
351 1.98 knakahar mutex_enter(&ifv_list.lock);
352 1.98 knakahar LIST_INSERT_HEAD(&ifv_list.list, ifv, ifv_list);
353 1.98 knakahar mutex_exit(&ifv_list.lock);
354 1.1 thorpej
355 1.59 christos if_initname(ifp, ifc->ifc_name, unit);
356 1.1 thorpej ifp->if_softc = ifv;
357 1.1 thorpej ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
358 1.121 ozaki #ifdef NET_MPSAFE
359 1.153 roy ifp->if_extflags = IFEF_MPSAFE;
360 1.121 ozaki #endif
361 1.1 thorpej ifp->if_start = vlan_start;
362 1.98 knakahar ifp->if_transmit = vlan_transmit;
363 1.1 thorpej ifp->if_ioctl = vlan_ioctl;
364 1.31 thorpej IFQ_SET_READY(&ifp->if_snd);
365 1.1 thorpej
366 1.105 msaitoh rv = if_initialize(ifp);
367 1.105 msaitoh if (rv != 0) {
368 1.105 msaitoh aprint_error("%s: if_initialize failed(%d)\n", ifp->if_xname,
369 1.105 msaitoh rv);
370 1.105 msaitoh goto fail;
371 1.105 msaitoh }
372 1.105 msaitoh
373 1.153 roy /*
374 1.153 roy * Set the link state to down.
375 1.153 roy * When the parent interface attaches we will use that link state.
376 1.153 roy * When the parent interface link state changes, so will ours.
377 1.153 roy */
378 1.153 roy ifp->if_link_state = LINK_STATE_DOWN;
379 1.153 roy
380 1.30 thorpej vlan_reset_linkname(ifp);
381 1.84 ozaki if_register(ifp);
382 1.105 msaitoh return 0;
383 1.105 msaitoh
384 1.105 msaitoh fail:
385 1.105 msaitoh mutex_enter(&ifv_list.lock);
386 1.105 msaitoh LIST_REMOVE(ifv, ifv_list);
387 1.105 msaitoh mutex_exit(&ifv_list.lock);
388 1.1 thorpej
389 1.105 msaitoh mutex_destroy(&ifv->ifv_lock);
390 1.105 msaitoh psref_target_destroy(&ifv->ifv_mib->ifvm_psref, ifvm_psref_class);
391 1.105 msaitoh kmem_free(ifv->ifv_mib, sizeof(struct ifvlan_linkmib));
392 1.105 msaitoh free(ifv, M_DEVBUF);
393 1.105 msaitoh
394 1.105 msaitoh return rv;
395 1.1 thorpej }
396 1.1 thorpej
397 1.42 peter static int
398 1.1 thorpej vlan_clone_destroy(struct ifnet *ifp)
399 1.1 thorpej {
400 1.11 thorpej struct ifvlan *ifv = ifp->if_softc;
401 1.1 thorpej
402 1.98 knakahar mutex_enter(&ifv_list.lock);
403 1.1 thorpej LIST_REMOVE(ifv, ifv_list);
404 1.98 knakahar mutex_exit(&ifv_list.lock);
405 1.98 knakahar
406 1.119 ozaki IFNET_LOCK(ifp);
407 1.1 thorpej vlan_unconfig(ifp);
408 1.119 ozaki IFNET_UNLOCK(ifp);
409 1.78 ozaki if_detach(ifp);
410 1.1 thorpej
411 1.98 knakahar psref_target_destroy(&ifv->ifv_mib->ifvm_psref, ifvm_psref_class);
412 1.98 knakahar kmem_free(ifv->ifv_mib, sizeof(struct ifvlan_linkmib));
413 1.133 knakahar pserialize_destroy(ifv->ifv_psz);
414 1.98 knakahar mutex_destroy(&ifv->ifv_lock);
415 1.1 thorpej free(ifv, M_DEVBUF);
416 1.42 peter
417 1.124 maxv return 0;
418 1.1 thorpej }
419 1.1 thorpej
420 1.11 thorpej /*
421 1.98 knakahar * Configure a VLAN interface.
422 1.11 thorpej */
423 1.1 thorpej static int
424 1.98 knakahar vlan_config(struct ifvlan *ifv, struct ifnet *p, uint16_t tag)
425 1.1 thorpej {
426 1.10 thorpej struct ifnet *ifp = &ifv->ifv_if;
427 1.98 knakahar struct ifvlan_linkmib *nmib = NULL;
428 1.98 knakahar struct ifvlan_linkmib *omib = NULL;
429 1.124 maxv struct ifvlan_linkmib *checkmib;
430 1.98 knakahar struct psref_target *nmib_psref = NULL;
431 1.124 maxv const uint16_t vid = EVL_VLANOFTAG(tag);
432 1.98 knakahar int error = 0;
433 1.98 knakahar int idx;
434 1.98 knakahar bool omib_cleanup = false;
435 1.101 msaitoh struct psref psref;
436 1.98 knakahar
437 1.112 msaitoh /* VLAN ID 0 and 4095 are reserved in the spec */
438 1.111 msaitoh if ((vid == 0) || (vid == 0xfff))
439 1.111 msaitoh return EINVAL;
440 1.111 msaitoh
441 1.98 knakahar nmib = kmem_alloc(sizeof(*nmib), KM_SLEEP);
442 1.98 knakahar mutex_enter(&ifv->ifv_lock);
443 1.98 knakahar omib = ifv->ifv_mib;
444 1.98 knakahar
445 1.98 knakahar if (omib->ifvm_p != NULL) {
446 1.98 knakahar error = EBUSY;
447 1.98 knakahar goto done;
448 1.98 knakahar }
449 1.98 knakahar
450 1.101 msaitoh /* Duplicate check */
451 1.108 msaitoh checkmib = vlan_lookup_tag_psref(p, vid, &psref);
452 1.101 msaitoh if (checkmib != NULL) {
453 1.101 msaitoh vlan_putref_linkmib(checkmib, &psref);
454 1.101 msaitoh error = EEXIST;
455 1.101 msaitoh goto done;
456 1.101 msaitoh }
457 1.101 msaitoh
458 1.98 knakahar *nmib = *omib;
459 1.98 knakahar nmib_psref = &nmib->ifvm_psref;
460 1.1 thorpej
461 1.98 knakahar psref_target_init(nmib_psref, ifvm_psref_class);
462 1.10 thorpej
463 1.10 thorpej switch (p->if_type) {
464 1.10 thorpej case IFT_ETHER:
465 1.10 thorpej {
466 1.124 maxv struct ethercom *ec = (void *)p;
467 1.141 msaitoh struct vlanid_list *vidmem;
468 1.141 msaitoh
469 1.98 knakahar nmib->ifvm_msw = &vlan_ether_multisw;
470 1.98 knakahar nmib->ifvm_encaplen = ETHER_VLAN_ENCAP_LEN;
471 1.98 knakahar nmib->ifvm_mintu = ETHERMIN;
472 1.10 thorpej
473 1.94 msaitoh if (ec->ec_nvlans++ == 0) {
474 1.119 ozaki IFNET_LOCK(p);
475 1.118 ozaki error = ether_enable_vlan_mtu(p);
476 1.119 ozaki IFNET_UNLOCK(p);
477 1.114 ozaki if (error >= 0) {
478 1.94 msaitoh if (error) {
479 1.94 msaitoh ec->ec_nvlans--;
480 1.98 knakahar goto done;
481 1.94 msaitoh }
482 1.98 knakahar nmib->ifvm_mtufudge = 0;
483 1.83 christos } else {
484 1.83 christos /*
485 1.83 christos * Fudge the MTU by the encapsulation size. This
486 1.83 christos * makes us incompatible with strictly compliant
487 1.83 christos * 802.1Q implementations, but allows us to use
488 1.83 christos * the feature with other NetBSD
489 1.83 christos * implementations, which might still be useful.
490 1.83 christos */
491 1.98 knakahar nmib->ifvm_mtufudge = nmib->ifvm_encaplen;
492 1.10 thorpej }
493 1.98 knakahar error = 0;
494 1.10 thorpej }
495 1.144 msaitoh /* Add a vid to the list */
496 1.144 msaitoh vidmem = kmem_alloc(sizeof(struct vlanid_list), KM_SLEEP);
497 1.144 msaitoh vidmem->vid = vid;
498 1.145 msaitoh ETHER_LOCK(ec);
499 1.144 msaitoh SIMPLEQ_INSERT_TAIL(&ec->ec_vids, vidmem, vid_list);
500 1.145 msaitoh ETHER_UNLOCK(ec);
501 1.144 msaitoh
502 1.144 msaitoh if (ec->ec_vlan_cb != NULL) {
503 1.144 msaitoh /*
504 1.144 msaitoh * Call ec_vlan_cb(). It will setup VLAN HW filter or
505 1.144 msaitoh * HW tagging function.
506 1.144 msaitoh */
507 1.144 msaitoh error = (*ec->ec_vlan_cb)(ec, vid, true);
508 1.144 msaitoh if (error) {
509 1.141 msaitoh ec->ec_nvlans--;
510 1.143 msaitoh if (ec->ec_nvlans == 0) {
511 1.143 msaitoh IFNET_LOCK(p);
512 1.141 msaitoh (void)ether_disable_vlan_mtu(p);
513 1.143 msaitoh IFNET_UNLOCK(p);
514 1.143 msaitoh }
515 1.141 msaitoh goto done;
516 1.141 msaitoh }
517 1.141 msaitoh }
518 1.10 thorpej /*
519 1.32 thorpej * If the parent interface can do hardware-assisted
520 1.32 thorpej * VLAN encapsulation, then propagate its hardware-
521 1.63 darran * assisted checksumming flags and tcp segmentation
522 1.63 darran * offload.
523 1.32 thorpej */
524 1.67 sborrill if (ec->ec_capabilities & ETHERCAP_VLAN_HWTAGGING) {
525 1.32 thorpej ifp->if_capabilities = p->if_capabilities &
526 1.65 darran (IFCAP_TSOv4 | IFCAP_TSOv6 |
527 1.137 msaitoh IFCAP_CSUM_IPv4_Tx | IFCAP_CSUM_IPv4_Rx |
528 1.137 msaitoh IFCAP_CSUM_TCPv4_Tx | IFCAP_CSUM_TCPv4_Rx |
529 1.137 msaitoh IFCAP_CSUM_UDPv4_Tx | IFCAP_CSUM_UDPv4_Rx |
530 1.137 msaitoh IFCAP_CSUM_TCPv6_Tx | IFCAP_CSUM_TCPv6_Rx |
531 1.137 msaitoh IFCAP_CSUM_UDPv6_Tx | IFCAP_CSUM_UDPv6_Rx);
532 1.124 maxv }
533 1.124 maxv
534 1.32 thorpej /*
535 1.10 thorpej * We inherit the parent's Ethernet address.
536 1.10 thorpej */
537 1.54 dyoung ether_ifattach(ifp, CLLADDR(p->if_sadl));
538 1.10 thorpej ifp->if_hdrlen = sizeof(struct ether_vlan_header); /* XXX? */
539 1.10 thorpej break;
540 1.10 thorpej }
541 1.10 thorpej
542 1.10 thorpej default:
543 1.98 knakahar error = EPROTONOSUPPORT;
544 1.98 knakahar goto done;
545 1.10 thorpej }
546 1.10 thorpej
547 1.98 knakahar nmib->ifvm_p = p;
548 1.108 msaitoh nmib->ifvm_tag = vid;
549 1.98 knakahar ifv->ifv_if.if_mtu = p->if_mtu - nmib->ifvm_mtufudge;
550 1.21 bouyer ifv->ifv_if.if_flags = p->if_flags &
551 1.23 bouyer (IFF_UP | IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
552 1.1 thorpej
553 1.1 thorpej /*
554 1.10 thorpej * Inherit the if_type from the parent. This allows us
555 1.10 thorpej * to participate in bridges of that type.
556 1.1 thorpej */
557 1.10 thorpej ifv->ifv_if.if_type = p->if_type;
558 1.10 thorpej
559 1.104 knakahar PSLIST_ENTRY_INIT(ifv, ifv_hash);
560 1.110 msaitoh idx = vlan_tag_hash(vid, ifv_hash.mask);
561 1.98 knakahar
562 1.98 knakahar mutex_enter(&ifv_hash.lock);
563 1.98 knakahar PSLIST_WRITER_INSERT_HEAD(&ifv_hash.lists[idx], ifv, ifv_hash);
564 1.98 knakahar mutex_exit(&ifv_hash.lock);
565 1.98 knakahar
566 1.98 knakahar vlan_linkmib_update(ifv, nmib);
567 1.98 knakahar nmib = NULL;
568 1.98 knakahar nmib_psref = NULL;
569 1.98 knakahar omib_cleanup = true;
570 1.98 knakahar
571 1.153 roy
572 1.153 roy /*
573 1.153 roy * We inherit the parents link state.
574 1.153 roy */
575 1.153 roy if_link_state_change(&ifv->ifv_if, p->if_link_state);
576 1.153 roy
577 1.98 knakahar done:
578 1.98 knakahar mutex_exit(&ifv->ifv_lock);
579 1.98 knakahar
580 1.98 knakahar if (nmib_psref)
581 1.98 knakahar psref_target_destroy(nmib_psref, ifvm_psref_class);
582 1.98 knakahar if (nmib)
583 1.98 knakahar kmem_free(nmib, sizeof(*nmib));
584 1.98 knakahar if (omib_cleanup)
585 1.98 knakahar kmem_free(omib, sizeof(*omib));
586 1.98 knakahar
587 1.98 knakahar return error;
588 1.1 thorpej }
589 1.1 thorpej
590 1.11 thorpej /*
591 1.98 knakahar * Unconfigure a VLAN interface.
592 1.11 thorpej */
593 1.11 thorpej static void
594 1.1 thorpej vlan_unconfig(struct ifnet *ifp)
595 1.1 thorpej {
596 1.10 thorpej struct ifvlan *ifv = ifp->if_softc;
597 1.98 knakahar struct ifvlan_linkmib *nmib = NULL;
598 1.98 knakahar int error;
599 1.98 knakahar
600 1.119 ozaki KASSERT(IFNET_LOCKED(ifp));
601 1.115 ozaki
602 1.98 knakahar nmib = kmem_alloc(sizeof(*nmib), KM_SLEEP);
603 1.98 knakahar
604 1.98 knakahar mutex_enter(&ifv->ifv_lock);
605 1.98 knakahar error = vlan_unconfig_locked(ifv, nmib);
606 1.98 knakahar mutex_exit(&ifv->ifv_lock);
607 1.98 knakahar
608 1.98 knakahar if (error)
609 1.98 knakahar kmem_free(nmib, sizeof(*nmib));
610 1.98 knakahar }
611 1.98 knakahar static int
612 1.98 knakahar vlan_unconfig_locked(struct ifvlan *ifv, struct ifvlan_linkmib *nmib)
613 1.98 knakahar {
614 1.77 ozaki struct ifnet *p;
615 1.98 knakahar struct ifnet *ifp = &ifv->ifv_if;
616 1.98 knakahar struct psref_target *nmib_psref = NULL;
617 1.98 knakahar struct ifvlan_linkmib *omib;
618 1.98 knakahar int error = 0;
619 1.98 knakahar
620 1.119 ozaki KASSERT(IFNET_LOCKED(ifp));
621 1.98 knakahar KASSERT(mutex_owned(&ifv->ifv_lock));
622 1.1 thorpej
623 1.137 msaitoh ifp->if_flags &= ~(IFF_UP | IFF_RUNNING);
624 1.116 ozaki
625 1.98 knakahar omib = ifv->ifv_mib;
626 1.98 knakahar p = omib->ifvm_p;
627 1.76 ozaki
628 1.77 ozaki if (p == NULL) {
629 1.98 knakahar error = -1;
630 1.98 knakahar goto done;
631 1.76 ozaki }
632 1.1 thorpej
633 1.98 knakahar *nmib = *omib;
634 1.98 knakahar nmib_psref = &nmib->ifvm_psref;
635 1.98 knakahar psref_target_init(nmib_psref, ifvm_psref_class);
636 1.98 knakahar
637 1.1 thorpej /*
638 1.137 msaitoh * Since the interface is being unconfigured, we need to empty the
639 1.1 thorpej * list of multicast groups that we may have joined while we were
640 1.1 thorpej * alive and remove them from the parent's list also.
641 1.1 thorpej */
642 1.98 knakahar (*nmib->ifvm_msw->vmsw_purgemulti)(ifv);
643 1.1 thorpej
644 1.1 thorpej /* Disconnect from parent. */
645 1.77 ozaki switch (p->if_type) {
646 1.10 thorpej case IFT_ETHER:
647 1.10 thorpej {
648 1.83 christos struct ethercom *ec = (void *)p;
649 1.146 msaitoh struct vlanid_list *vlanidp;
650 1.141 msaitoh uint16_t vid = EVL_VLANOFTAG(nmib->ifvm_tag);
651 1.141 msaitoh
652 1.145 msaitoh ETHER_LOCK(ec);
653 1.146 msaitoh SIMPLEQ_FOREACH(vlanidp, &ec->ec_vids, vid_list) {
654 1.141 msaitoh if (vlanidp->vid == vid) {
655 1.141 msaitoh SIMPLEQ_REMOVE(&ec->ec_vids, vlanidp,
656 1.141 msaitoh vlanid_list, vid_list);
657 1.146 msaitoh break;
658 1.141 msaitoh }
659 1.141 msaitoh }
660 1.145 msaitoh ETHER_UNLOCK(ec);
661 1.146 msaitoh if (vlanidp != NULL)
662 1.146 msaitoh kmem_free(vlanidp, sizeof(*vlanidp));
663 1.146 msaitoh
664 1.144 msaitoh if (ec->ec_vlan_cb != NULL) {
665 1.144 msaitoh /*
666 1.144 msaitoh * Call ec_vlan_cb(). It will setup VLAN HW filter or
667 1.144 msaitoh * HW tagging function.
668 1.144 msaitoh */
669 1.141 msaitoh (void)(*ec->ec_vlan_cb)(ec, vid, false);
670 1.144 msaitoh }
671 1.118 ozaki if (--ec->ec_nvlans == 0) {
672 1.119 ozaki IFNET_LOCK(p);
673 1.140 msaitoh (void)ether_disable_vlan_mtu(p);
674 1.119 ozaki IFNET_UNLOCK(p);
675 1.118 ozaki }
676 1.10 thorpej
677 1.126 ozaki /* XXX ether_ifdetach must not be called with IFNET_LOCK */
678 1.126 ozaki mutex_exit(&ifv->ifv_lock);
679 1.126 ozaki IFNET_UNLOCK(ifp);
680 1.10 thorpej ether_ifdetach(ifp);
681 1.126 ozaki IFNET_LOCK(ifp);
682 1.126 ozaki mutex_enter(&ifv->ifv_lock);
683 1.126 ozaki
684 1.132 knakahar /* if_free_sadl must be called with IFNET_LOCK */
685 1.132 knakahar if_free_sadl(ifp, 1);
686 1.132 knakahar
687 1.71 ozaki /* Restore vlan_ioctl overwritten by ether_ifdetach */
688 1.71 ozaki ifp->if_ioctl = vlan_ioctl;
689 1.30 thorpej vlan_reset_linkname(ifp);
690 1.10 thorpej break;
691 1.10 thorpej }
692 1.10 thorpej
693 1.10 thorpej default:
694 1.124 maxv panic("%s: impossible", __func__);
695 1.10 thorpej }
696 1.10 thorpej
697 1.98 knakahar nmib->ifvm_p = NULL;
698 1.10 thorpej ifv->ifv_if.if_mtu = 0;
699 1.17 thorpej ifv->ifv_flags = 0;
700 1.1 thorpej
701 1.98 knakahar mutex_enter(&ifv_hash.lock);
702 1.98 knakahar PSLIST_WRITER_REMOVE(ifv, ifv_hash);
703 1.98 knakahar pserialize_perform(vlan_psz);
704 1.98 knakahar mutex_exit(&ifv_hash.lock);
705 1.104 knakahar PSLIST_ENTRY_DESTROY(ifv, ifv_hash);
706 1.98 knakahar
707 1.98 knakahar vlan_linkmib_update(ifv, nmib);
708 1.98 knakahar
709 1.98 knakahar mutex_exit(&ifv->ifv_lock);
710 1.98 knakahar
711 1.98 knakahar nmib_psref = NULL;
712 1.98 knakahar kmem_free(omib, sizeof(*omib));
713 1.98 knakahar
714 1.74 ozaki #ifdef INET6
715 1.109 ozaki KERNEL_LOCK_UNLESS_NET_MPSAFE();
716 1.74 ozaki /* To delete v6 link local addresses */
717 1.97 ozaki if (in6_present)
718 1.97 ozaki in6_ifdetach(ifp);
719 1.109 ozaki KERNEL_UNLOCK_UNLESS_NET_MPSAFE();
720 1.74 ozaki #endif
721 1.98 knakahar
722 1.73 ozaki if ((ifp->if_flags & IFF_PROMISC) != 0)
723 1.115 ozaki vlan_safe_ifpromisc_locked(ifp, 0);
724 1.117 ozaki if_down_locked(ifp);
725 1.32 thorpej ifp->if_capabilities = 0;
726 1.98 knakahar mutex_enter(&ifv->ifv_lock);
727 1.98 knakahar done:
728 1.98 knakahar
729 1.98 knakahar if (nmib_psref)
730 1.98 knakahar psref_target_destroy(nmib_psref, ifvm_psref_class);
731 1.76 ozaki
732 1.98 knakahar return error;
733 1.98 knakahar }
734 1.98 knakahar
735 1.98 knakahar static void
736 1.98 knakahar vlan_hash_init(void)
737 1.98 knakahar {
738 1.98 knakahar
739 1.98 knakahar ifv_hash.lists = hashinit(VLAN_TAG_HASH_SIZE, HASH_PSLIST, true,
740 1.98 knakahar &ifv_hash.mask);
741 1.98 knakahar }
742 1.98 knakahar
743 1.98 knakahar static int
744 1.98 knakahar vlan_hash_fini(void)
745 1.98 knakahar {
746 1.98 knakahar int i;
747 1.98 knakahar
748 1.98 knakahar mutex_enter(&ifv_hash.lock);
749 1.98 knakahar
750 1.98 knakahar for (i = 0; i < ifv_hash.mask + 1; i++) {
751 1.98 knakahar if (PSLIST_WRITER_FIRST(&ifv_hash.lists[i], struct ifvlan,
752 1.98 knakahar ifv_hash) != NULL) {
753 1.98 knakahar mutex_exit(&ifv_hash.lock);
754 1.98 knakahar return EBUSY;
755 1.98 knakahar }
756 1.98 knakahar }
757 1.98 knakahar
758 1.98 knakahar for (i = 0; i < ifv_hash.mask + 1; i++)
759 1.98 knakahar PSLIST_DESTROY(&ifv_hash.lists[i]);
760 1.98 knakahar
761 1.98 knakahar mutex_exit(&ifv_hash.lock);
762 1.98 knakahar
763 1.98 knakahar hashdone(ifv_hash.lists, HASH_PSLIST, ifv_hash.mask);
764 1.98 knakahar
765 1.98 knakahar ifv_hash.lists = NULL;
766 1.98 knakahar ifv_hash.mask = 0;
767 1.98 knakahar
768 1.98 knakahar return 0;
769 1.98 knakahar }
770 1.98 knakahar
771 1.98 knakahar static int
772 1.110 msaitoh vlan_tag_hash(uint16_t tag, u_long mask)
773 1.98 knakahar {
774 1.98 knakahar uint32_t hash;
775 1.98 knakahar
776 1.98 knakahar hash = (tag >> 8) ^ tag;
777 1.98 knakahar hash = (hash >> 2) ^ hash;
778 1.98 knakahar
779 1.98 knakahar return hash & mask;
780 1.98 knakahar }
781 1.98 knakahar
782 1.98 knakahar static struct ifvlan_linkmib *
783 1.98 knakahar vlan_getref_linkmib(struct ifvlan *sc, struct psref *psref)
784 1.98 knakahar {
785 1.98 knakahar struct ifvlan_linkmib *mib;
786 1.98 knakahar int s;
787 1.98 knakahar
788 1.98 knakahar s = pserialize_read_enter();
789 1.151 riastrad mib = atomic_load_consume(&sc->ifv_mib);
790 1.98 knakahar if (mib == NULL) {
791 1.98 knakahar pserialize_read_exit(s);
792 1.98 knakahar return NULL;
793 1.98 knakahar }
794 1.98 knakahar psref_acquire(psref, &mib->ifvm_psref, ifvm_psref_class);
795 1.98 knakahar pserialize_read_exit(s);
796 1.98 knakahar
797 1.98 knakahar return mib;
798 1.98 knakahar }
799 1.98 knakahar
800 1.98 knakahar static void
801 1.98 knakahar vlan_putref_linkmib(struct ifvlan_linkmib *mib, struct psref *psref)
802 1.98 knakahar {
803 1.98 knakahar if (mib == NULL)
804 1.98 knakahar return;
805 1.98 knakahar psref_release(psref, &mib->ifvm_psref, ifvm_psref_class);
806 1.98 knakahar }
807 1.98 knakahar
808 1.98 knakahar static struct ifvlan_linkmib *
809 1.98 knakahar vlan_lookup_tag_psref(struct ifnet *ifp, uint16_t tag, struct psref *psref)
810 1.98 knakahar {
811 1.98 knakahar int idx;
812 1.98 knakahar int s;
813 1.98 knakahar struct ifvlan *sc;
814 1.98 knakahar
815 1.110 msaitoh idx = vlan_tag_hash(tag, ifv_hash.mask);
816 1.98 knakahar
817 1.98 knakahar s = pserialize_read_enter();
818 1.98 knakahar PSLIST_READER_FOREACH(sc, &ifv_hash.lists[idx], struct ifvlan,
819 1.98 knakahar ifv_hash) {
820 1.151 riastrad struct ifvlan_linkmib *mib = atomic_load_consume(&sc->ifv_mib);
821 1.98 knakahar if (mib == NULL)
822 1.98 knakahar continue;
823 1.98 knakahar if (mib->ifvm_tag != tag)
824 1.98 knakahar continue;
825 1.98 knakahar if (mib->ifvm_p != ifp)
826 1.98 knakahar continue;
827 1.98 knakahar
828 1.98 knakahar psref_acquire(psref, &mib->ifvm_psref, ifvm_psref_class);
829 1.98 knakahar pserialize_read_exit(s);
830 1.98 knakahar return mib;
831 1.98 knakahar }
832 1.98 knakahar pserialize_read_exit(s);
833 1.98 knakahar return NULL;
834 1.98 knakahar }
835 1.98 knakahar
836 1.98 knakahar static void
837 1.98 knakahar vlan_linkmib_update(struct ifvlan *ifv, struct ifvlan_linkmib *nmib)
838 1.98 knakahar {
839 1.98 knakahar struct ifvlan_linkmib *omib = ifv->ifv_mib;
840 1.98 knakahar
841 1.98 knakahar KASSERT(mutex_owned(&ifv->ifv_lock));
842 1.98 knakahar
843 1.151 riastrad atomic_store_release(&ifv->ifv_mib, nmib);
844 1.98 knakahar
845 1.131 jmcneill pserialize_perform(ifv->ifv_psz);
846 1.98 knakahar psref_target_destroy(&omib->ifvm_psref, ifvm_psref_class);
847 1.11 thorpej }
848 1.11 thorpej
849 1.11 thorpej /*
850 1.11 thorpej * Called when a parent interface is detaching; destroy any VLAN
851 1.11 thorpej * configuration for the parent interface.
852 1.11 thorpej */
853 1.11 thorpej void
854 1.11 thorpej vlan_ifdetach(struct ifnet *p)
855 1.11 thorpej {
856 1.11 thorpej struct ifvlan *ifv;
857 1.98 knakahar struct ifvlan_linkmib *mib, **nmibs;
858 1.98 knakahar struct psref psref;
859 1.98 knakahar int error;
860 1.98 knakahar int bound;
861 1.98 knakahar int i, cnt = 0;
862 1.98 knakahar
863 1.98 knakahar bound = curlwp_bind();
864 1.122 maxv
865 1.98 knakahar mutex_enter(&ifv_list.lock);
866 1.98 knakahar LIST_FOREACH(ifv, &ifv_list.list, ifv_list) {
867 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
868 1.98 knakahar if (mib == NULL)
869 1.98 knakahar continue;
870 1.98 knakahar
871 1.98 knakahar if (mib->ifvm_p == p)
872 1.98 knakahar cnt++;
873 1.98 knakahar
874 1.98 knakahar vlan_putref_linkmib(mib, &psref);
875 1.98 knakahar }
876 1.98 knakahar mutex_exit(&ifv_list.lock);
877 1.98 knakahar
878 1.122 maxv if (cnt == 0) {
879 1.122 maxv curlwp_bindx(bound);
880 1.122 maxv return;
881 1.122 maxv }
882 1.122 maxv
883 1.98 knakahar /*
884 1.98 knakahar * The value of "cnt" does not increase while ifv_list.lock
885 1.98 knakahar * and ifv->ifv_lock are released here, because the parent
886 1.98 knakahar * interface is detaching.
887 1.98 knakahar */
888 1.98 knakahar nmibs = kmem_alloc(sizeof(*nmibs) * cnt, KM_SLEEP);
889 1.122 maxv for (i = 0; i < cnt; i++) {
890 1.98 knakahar nmibs[i] = kmem_alloc(sizeof(*nmibs[i]), KM_SLEEP);
891 1.98 knakahar }
892 1.98 knakahar
893 1.98 knakahar mutex_enter(&ifv_list.lock);
894 1.98 knakahar
895 1.98 knakahar i = 0;
896 1.98 knakahar LIST_FOREACH(ifv, &ifv_list.list, ifv_list) {
897 1.115 ozaki struct ifnet *ifp = &ifv->ifv_if;
898 1.115 ozaki
899 1.124 maxv /* IFNET_LOCK must be held before ifv_lock. */
900 1.119 ozaki IFNET_LOCK(ifp);
901 1.98 knakahar mutex_enter(&ifv->ifv_lock);
902 1.124 maxv
903 1.124 maxv /* XXX ifv_mib = NULL? */
904 1.98 knakahar if (ifv->ifv_mib->ifvm_p == p) {
905 1.137 msaitoh KASSERTMSG(i < cnt,
906 1.137 msaitoh "no memory for unconfig, parent=%s", p->if_xname);
907 1.98 knakahar error = vlan_unconfig_locked(ifv, nmibs[i]);
908 1.98 knakahar if (!error) {
909 1.98 knakahar nmibs[i] = NULL;
910 1.98 knakahar i++;
911 1.98 knakahar }
912 1.98 knakahar
913 1.98 knakahar }
914 1.124 maxv
915 1.98 knakahar mutex_exit(&ifv->ifv_lock);
916 1.119 ozaki IFNET_UNLOCK(ifp);
917 1.98 knakahar }
918 1.11 thorpej
919 1.98 knakahar mutex_exit(&ifv_list.lock);
920 1.122 maxv
921 1.98 knakahar curlwp_bindx(bound);
922 1.11 thorpej
923 1.122 maxv for (i = 0; i < cnt; i++) {
924 1.98 knakahar if (nmibs[i])
925 1.98 knakahar kmem_free(nmibs[i], sizeof(*nmibs[i]));
926 1.11 thorpej }
927 1.11 thorpej
928 1.98 knakahar kmem_free(nmibs, sizeof(*nmibs) * cnt);
929 1.98 knakahar
930 1.98 knakahar return;
931 1.1 thorpej }
932 1.1 thorpej
933 1.1 thorpej static int
934 1.17 thorpej vlan_set_promisc(struct ifnet *ifp)
935 1.17 thorpej {
936 1.17 thorpej struct ifvlan *ifv = ifp->if_softc;
937 1.98 knakahar struct ifvlan_linkmib *mib;
938 1.98 knakahar struct psref psref;
939 1.20 enami int error = 0;
940 1.98 knakahar int bound;
941 1.98 knakahar
942 1.98 knakahar bound = curlwp_bind();
943 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
944 1.98 knakahar if (mib == NULL) {
945 1.98 knakahar curlwp_bindx(bound);
946 1.98 knakahar return EBUSY;
947 1.98 knakahar }
948 1.17 thorpej
949 1.17 thorpej if ((ifp->if_flags & IFF_PROMISC) != 0) {
950 1.17 thorpej if ((ifv->ifv_flags & IFVF_PROMISC) == 0) {
951 1.109 ozaki error = vlan_safe_ifpromisc(mib->ifvm_p, 1);
952 1.17 thorpej if (error == 0)
953 1.17 thorpej ifv->ifv_flags |= IFVF_PROMISC;
954 1.17 thorpej }
955 1.17 thorpej } else {
956 1.17 thorpej if ((ifv->ifv_flags & IFVF_PROMISC) != 0) {
957 1.109 ozaki error = vlan_safe_ifpromisc(mib->ifvm_p, 0);
958 1.17 thorpej if (error == 0)
959 1.17 thorpej ifv->ifv_flags &= ~IFVF_PROMISC;
960 1.17 thorpej }
961 1.17 thorpej }
962 1.98 knakahar vlan_putref_linkmib(mib, &psref);
963 1.98 knakahar curlwp_bindx(bound);
964 1.17 thorpej
965 1.124 maxv return error;
966 1.17 thorpej }
967 1.17 thorpej
968 1.17 thorpej static int
969 1.53 christos vlan_ioctl(struct ifnet *ifp, u_long cmd, void *data)
970 1.1 thorpej {
971 1.124 maxv struct lwp *l = curlwp;
972 1.11 thorpej struct ifvlan *ifv = ifp->if_softc;
973 1.11 thorpej struct ifaddr *ifa = (struct ifaddr *) data;
974 1.11 thorpej struct ifreq *ifr = (struct ifreq *) data;
975 1.1 thorpej struct ifnet *pr;
976 1.60 bouyer struct ifcapreq *ifcr;
977 1.1 thorpej struct vlanreq vlr;
978 1.98 knakahar struct ifvlan_linkmib *mib;
979 1.98 knakahar struct psref psref;
980 1.98 knakahar int error = 0;
981 1.98 knakahar int bound;
982 1.1 thorpej
983 1.1 thorpej switch (cmd) {
984 1.1 thorpej case SIOCSIFMTU:
985 1.98 knakahar bound = curlwp_bind();
986 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
987 1.98 knakahar if (mib == NULL) {
988 1.98 knakahar curlwp_bindx(bound);
989 1.98 knakahar error = EBUSY;
990 1.98 knakahar break;
991 1.98 knakahar }
992 1.98 knakahar
993 1.98 knakahar if (mib->ifvm_p == NULL) {
994 1.98 knakahar vlan_putref_linkmib(mib, &psref);
995 1.98 knakahar curlwp_bindx(bound);
996 1.56 dyoung error = EINVAL;
997 1.98 knakahar } else if (
998 1.98 knakahar ifr->ifr_mtu > (mib->ifvm_p->if_mtu - mib->ifvm_mtufudge) ||
999 1.98 knakahar ifr->ifr_mtu < (mib->ifvm_mintu - mib->ifvm_mtufudge)) {
1000 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1001 1.98 knakahar curlwp_bindx(bound);
1002 1.1 thorpej error = EINVAL;
1003 1.98 knakahar } else {
1004 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1005 1.98 knakahar curlwp_bindx(bound);
1006 1.98 knakahar
1007 1.98 knakahar error = ifioctl_common(ifp, cmd, data);
1008 1.98 knakahar if (error == ENETRESET)
1009 1.124 maxv error = 0;
1010 1.98 knakahar }
1011 1.98 knakahar
1012 1.1 thorpej break;
1013 1.1 thorpej
1014 1.1 thorpej case SIOCSETVLAN:
1015 1.51 elad if ((error = kauth_authorize_network(l->l_cred,
1016 1.51 elad KAUTH_NETWORK_INTERFACE,
1017 1.51 elad KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, (void *)cmd,
1018 1.51 elad NULL)) != 0)
1019 1.1 thorpej break;
1020 1.1 thorpej if ((error = copyin(ifr->ifr_data, &vlr, sizeof(vlr))) != 0)
1021 1.1 thorpej break;
1022 1.98 knakahar
1023 1.1 thorpej if (vlr.vlr_parent[0] == '\0') {
1024 1.98 knakahar bound = curlwp_bind();
1025 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
1026 1.98 knakahar if (mib == NULL) {
1027 1.98 knakahar curlwp_bindx(bound);
1028 1.98 knakahar error = EBUSY;
1029 1.98 knakahar break;
1030 1.98 knakahar }
1031 1.98 knakahar
1032 1.98 knakahar if (mib->ifvm_p != NULL &&
1033 1.73 ozaki (ifp->if_flags & IFF_PROMISC) != 0)
1034 1.109 ozaki error = vlan_safe_ifpromisc(mib->ifvm_p, 0);
1035 1.98 knakahar
1036 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1037 1.98 knakahar curlwp_bindx(bound);
1038 1.98 knakahar
1039 1.1 thorpej vlan_unconfig(ifp);
1040 1.1 thorpej break;
1041 1.1 thorpej }
1042 1.1 thorpej if (vlr.vlr_tag != EVL_VLANOFTAG(vlr.vlr_tag)) {
1043 1.1 thorpej error = EINVAL; /* check for valid tag */
1044 1.1 thorpej break;
1045 1.1 thorpej }
1046 1.110 msaitoh if ((pr = ifunit(vlr.vlr_parent)) == NULL) {
1047 1.1 thorpej error = ENOENT;
1048 1.1 thorpej break;
1049 1.1 thorpej }
1050 1.146 msaitoh
1051 1.98 knakahar error = vlan_config(ifv, pr, vlr.vlr_tag);
1052 1.140 msaitoh if (error != 0)
1053 1.1 thorpej break;
1054 1.17 thorpej
1055 1.17 thorpej /* Update promiscuous mode, if necessary. */
1056 1.17 thorpej vlan_set_promisc(ifp);
1057 1.116 ozaki
1058 1.116 ozaki ifp->if_flags |= IFF_RUNNING;
1059 1.1 thorpej break;
1060 1.1 thorpej
1061 1.1 thorpej case SIOCGETVLAN:
1062 1.1 thorpej memset(&vlr, 0, sizeof(vlr));
1063 1.98 knakahar bound = curlwp_bind();
1064 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
1065 1.98 knakahar if (mib == NULL) {
1066 1.98 knakahar curlwp_bindx(bound);
1067 1.98 knakahar error = EBUSY;
1068 1.98 knakahar break;
1069 1.98 knakahar }
1070 1.98 knakahar if (mib->ifvm_p != NULL) {
1071 1.1 thorpej snprintf(vlr.vlr_parent, sizeof(vlr.vlr_parent), "%s",
1072 1.98 knakahar mib->ifvm_p->if_xname);
1073 1.98 knakahar vlr.vlr_tag = mib->ifvm_tag;
1074 1.1 thorpej }
1075 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1076 1.98 knakahar curlwp_bindx(bound);
1077 1.1 thorpej error = copyout(&vlr, ifr->ifr_data, sizeof(vlr));
1078 1.1 thorpej break;
1079 1.1 thorpej
1080 1.1 thorpej case SIOCSIFFLAGS:
1081 1.61 dyoung if ((error = ifioctl_common(ifp, cmd, data)) != 0)
1082 1.61 dyoung break;
1083 1.1 thorpej /*
1084 1.17 thorpej * For promiscuous mode, we enable promiscuous mode on
1085 1.17 thorpej * the parent if we need promiscuous on the VLAN interface.
1086 1.1 thorpej */
1087 1.98 knakahar bound = curlwp_bind();
1088 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
1089 1.98 knakahar if (mib == NULL) {
1090 1.98 knakahar curlwp_bindx(bound);
1091 1.98 knakahar error = EBUSY;
1092 1.98 knakahar break;
1093 1.98 knakahar }
1094 1.98 knakahar
1095 1.98 knakahar if (mib->ifvm_p != NULL)
1096 1.17 thorpej error = vlan_set_promisc(ifp);
1097 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1098 1.98 knakahar curlwp_bindx(bound);
1099 1.1 thorpej break;
1100 1.1 thorpej
1101 1.1 thorpej case SIOCADDMULTI:
1102 1.98 knakahar mutex_enter(&ifv->ifv_lock);
1103 1.98 knakahar mib = ifv->ifv_mib;
1104 1.98 knakahar if (mib == NULL) {
1105 1.98 knakahar error = EBUSY;
1106 1.98 knakahar mutex_exit(&ifv->ifv_lock);
1107 1.98 knakahar break;
1108 1.98 knakahar }
1109 1.98 knakahar
1110 1.98 knakahar error = (mib->ifvm_p != NULL) ?
1111 1.98 knakahar (*mib->ifvm_msw->vmsw_addmulti)(ifv, ifr) : EINVAL;
1112 1.98 knakahar mib = NULL;
1113 1.98 knakahar mutex_exit(&ifv->ifv_lock);
1114 1.6 enami break;
1115 1.6 enami
1116 1.1 thorpej case SIOCDELMULTI:
1117 1.98 knakahar mutex_enter(&ifv->ifv_lock);
1118 1.98 knakahar mib = ifv->ifv_mib;
1119 1.98 knakahar if (mib == NULL) {
1120 1.98 knakahar error = EBUSY;
1121 1.98 knakahar mutex_exit(&ifv->ifv_lock);
1122 1.98 knakahar break;
1123 1.98 knakahar }
1124 1.98 knakahar error = (mib->ifvm_p != NULL) ?
1125 1.98 knakahar (*mib->ifvm_msw->vmsw_delmulti)(ifv, ifr) : EINVAL;
1126 1.98 knakahar mib = NULL;
1127 1.98 knakahar mutex_exit(&ifv->ifv_lock);
1128 1.1 thorpej break;
1129 1.1 thorpej
1130 1.60 bouyer case SIOCSIFCAP:
1131 1.60 bouyer ifcr = data;
1132 1.60 bouyer /* make sure caps are enabled on parent */
1133 1.98 knakahar bound = curlwp_bind();
1134 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
1135 1.98 knakahar if (mib == NULL) {
1136 1.98 knakahar curlwp_bindx(bound);
1137 1.98 knakahar error = EBUSY;
1138 1.98 knakahar break;
1139 1.98 knakahar }
1140 1.98 knakahar
1141 1.98 knakahar if (mib->ifvm_p == NULL) {
1142 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1143 1.98 knakahar curlwp_bindx(bound);
1144 1.92 joerg error = EINVAL;
1145 1.92 joerg break;
1146 1.92 joerg }
1147 1.98 knakahar if ((mib->ifvm_p->if_capenable & ifcr->ifcr_capenable) !=
1148 1.60 bouyer ifcr->ifcr_capenable) {
1149 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1150 1.98 knakahar curlwp_bindx(bound);
1151 1.60 bouyer error = EINVAL;
1152 1.60 bouyer break;
1153 1.60 bouyer }
1154 1.98 knakahar
1155 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1156 1.98 knakahar curlwp_bindx(bound);
1157 1.98 knakahar
1158 1.60 bouyer if ((error = ifioctl_common(ifp, cmd, data)) == ENETRESET)
1159 1.60 bouyer error = 0;
1160 1.60 bouyer break;
1161 1.68 dyoung case SIOCINITIFADDR:
1162 1.98 knakahar bound = curlwp_bind();
1163 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
1164 1.98 knakahar if (mib == NULL) {
1165 1.98 knakahar curlwp_bindx(bound);
1166 1.98 knakahar error = EBUSY;
1167 1.98 knakahar break;
1168 1.98 knakahar }
1169 1.98 knakahar
1170 1.98 knakahar if (mib->ifvm_p == NULL) {
1171 1.68 dyoung error = EINVAL;
1172 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1173 1.98 knakahar curlwp_bindx(bound);
1174 1.68 dyoung break;
1175 1.68 dyoung }
1176 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1177 1.98 knakahar curlwp_bindx(bound);
1178 1.68 dyoung
1179 1.68 dyoung ifp->if_flags |= IFF_UP;
1180 1.68 dyoung #ifdef INET
1181 1.68 dyoung if (ifa->ifa_addr->sa_family == AF_INET)
1182 1.68 dyoung arp_ifinit(ifp, ifa);
1183 1.68 dyoung #endif
1184 1.68 dyoung break;
1185 1.68 dyoung
1186 1.1 thorpej default:
1187 1.61 dyoung error = ether_ioctl(ifp, cmd, data);
1188 1.1 thorpej }
1189 1.11 thorpej
1190 1.124 maxv return error;
1191 1.1 thorpej }
1192 1.1 thorpej
1193 1.1 thorpej static int
1194 1.10 thorpej vlan_ether_addmulti(struct ifvlan *ifv, struct ifreq *ifr)
1195 1.1 thorpej {
1196 1.55 dyoung const struct sockaddr *sa = ifreq_getaddr(SIOCADDMULTI, ifr);
1197 1.1 thorpej struct vlan_mc_entry *mc;
1198 1.57 matt uint8_t addrlo[ETHER_ADDR_LEN], addrhi[ETHER_ADDR_LEN];
1199 1.98 knakahar struct ifvlan_linkmib *mib;
1200 1.1 thorpej int error;
1201 1.1 thorpej
1202 1.98 knakahar KASSERT(mutex_owned(&ifv->ifv_lock));
1203 1.98 knakahar
1204 1.55 dyoung if (sa->sa_len > sizeof(struct sockaddr_storage))
1205 1.124 maxv return EINVAL;
1206 1.5 enami
1207 1.55 dyoung error = ether_addmulti(sa, &ifv->ifv_ec);
1208 1.5 enami if (error != ENETRESET)
1209 1.124 maxv return error;
1210 1.1 thorpej
1211 1.5 enami /*
1212 1.124 maxv * This is a new multicast address. We have to tell parent
1213 1.5 enami * about it. Also, remember this multicast address so that
1214 1.124 maxv * we can delete it on unconfigure.
1215 1.5 enami */
1216 1.62 cegger mc = malloc(sizeof(struct vlan_mc_entry), M_DEVBUF, M_NOWAIT);
1217 1.5 enami if (mc == NULL) {
1218 1.5 enami error = ENOMEM;
1219 1.5 enami goto alloc_failed;
1220 1.1 thorpej }
1221 1.1 thorpej
1222 1.5 enami /*
1223 1.124 maxv * Since ether_addmulti() returned ENETRESET, the following two
1224 1.123 maxv * statements shouldn't fail. Here ifv_ec is implicitly protected
1225 1.123 maxv * by the ifv_lock lock.
1226 1.5 enami */
1227 1.123 maxv error = ether_multiaddr(sa, addrlo, addrhi);
1228 1.123 maxv KASSERT(error == 0);
1229 1.128 yamaguch
1230 1.128 yamaguch ETHER_LOCK(&ifv->ifv_ec);
1231 1.127 yamaguch mc->mc_enm = ether_lookup_multi(addrlo, addrhi, &ifv->ifv_ec);
1232 1.128 yamaguch ETHER_UNLOCK(&ifv->ifv_ec);
1233 1.128 yamaguch
1234 1.123 maxv KASSERT(mc->mc_enm != NULL);
1235 1.123 maxv
1236 1.55 dyoung memcpy(&mc->mc_addr, sa, sa->sa_len);
1237 1.5 enami LIST_INSERT_HEAD(&ifv->ifv_mc_listhead, mc, mc_entries);
1238 1.5 enami
1239 1.98 knakahar mib = ifv->ifv_mib;
1240 1.109 ozaki
1241 1.109 ozaki KERNEL_LOCK_UNLESS_IFP_MPSAFE(mib->ifvm_p);
1242 1.98 knakahar error = if_mcast_op(mib->ifvm_p, SIOCADDMULTI, sa);
1243 1.109 ozaki KERNEL_UNLOCK_UNLESS_IFP_MPSAFE(mib->ifvm_p);
1244 1.98 knakahar
1245 1.5 enami if (error != 0)
1246 1.5 enami goto ioctl_failed;
1247 1.124 maxv return error;
1248 1.5 enami
1249 1.124 maxv ioctl_failed:
1250 1.5 enami LIST_REMOVE(mc, mc_entries);
1251 1.62 cegger free(mc, M_DEVBUF);
1252 1.124 maxv
1253 1.124 maxv alloc_failed:
1254 1.55 dyoung (void)ether_delmulti(sa, &ifv->ifv_ec);
1255 1.124 maxv return error;
1256 1.5 enami }
1257 1.5 enami
1258 1.5 enami static int
1259 1.10 thorpej vlan_ether_delmulti(struct ifvlan *ifv, struct ifreq *ifr)
1260 1.5 enami {
1261 1.55 dyoung const struct sockaddr *sa = ifreq_getaddr(SIOCDELMULTI, ifr);
1262 1.5 enami struct ether_multi *enm;
1263 1.5 enami struct vlan_mc_entry *mc;
1264 1.98 knakahar struct ifvlan_linkmib *mib;
1265 1.57 matt uint8_t addrlo[ETHER_ADDR_LEN], addrhi[ETHER_ADDR_LEN];
1266 1.5 enami int error;
1267 1.5 enami
1268 1.98 knakahar KASSERT(mutex_owned(&ifv->ifv_lock));
1269 1.98 knakahar
1270 1.5 enami /*
1271 1.5 enami * Find a key to lookup vlan_mc_entry. We have to do this
1272 1.124 maxv * before calling ether_delmulti for obvious reasons.
1273 1.5 enami */
1274 1.55 dyoung if ((error = ether_multiaddr(sa, addrlo, addrhi)) != 0)
1275 1.124 maxv return error;
1276 1.128 yamaguch
1277 1.128 yamaguch ETHER_LOCK(&ifv->ifv_ec);
1278 1.127 yamaguch enm = ether_lookup_multi(addrlo, addrhi, &ifv->ifv_ec);
1279 1.128 yamaguch ETHER_UNLOCK(&ifv->ifv_ec);
1280 1.129 yamaguch if (enm == NULL)
1281 1.129 yamaguch return EINVAL;
1282 1.129 yamaguch
1283 1.129 yamaguch LIST_FOREACH(mc, &ifv->ifv_mc_listhead, mc_entries) {
1284 1.129 yamaguch if (mc->mc_enm == enm)
1285 1.129 yamaguch break;
1286 1.129 yamaguch }
1287 1.129 yamaguch
1288 1.129 yamaguch /* We woun't delete entries we didn't add */
1289 1.129 yamaguch if (mc == NULL)
1290 1.129 yamaguch return EINVAL;
1291 1.5 enami
1292 1.55 dyoung error = ether_delmulti(sa, &ifv->ifv_ec);
1293 1.5 enami if (error != ENETRESET)
1294 1.124 maxv return error;
1295 1.5 enami
1296 1.5 enami /* We no longer use this multicast address. Tell parent so. */
1297 1.98 knakahar mib = ifv->ifv_mib;
1298 1.98 knakahar error = if_mcast_op(mib->ifvm_p, SIOCDELMULTI, sa);
1299 1.98 knakahar
1300 1.5 enami if (error == 0) {
1301 1.5 enami /* And forget about this address. */
1302 1.129 yamaguch LIST_REMOVE(mc, mc_entries);
1303 1.129 yamaguch free(mc, M_DEVBUF);
1304 1.129 yamaguch } else {
1305 1.55 dyoung (void)ether_addmulti(sa, &ifv->ifv_ec);
1306 1.129 yamaguch }
1307 1.124 maxv
1308 1.124 maxv return error;
1309 1.5 enami }
1310 1.5 enami
1311 1.5 enami /*
1312 1.34 pooka * Delete any multicast address we have asked to add from parent
1313 1.5 enami * interface. Called when the vlan is being unconfigured.
1314 1.5 enami */
1315 1.5 enami static void
1316 1.10 thorpej vlan_ether_purgemulti(struct ifvlan *ifv)
1317 1.5 enami {
1318 1.5 enami struct vlan_mc_entry *mc;
1319 1.98 knakahar struct ifvlan_linkmib *mib;
1320 1.98 knakahar
1321 1.98 knakahar KASSERT(mutex_owned(&ifv->ifv_lock));
1322 1.98 knakahar mib = ifv->ifv_mib;
1323 1.98 knakahar if (mib == NULL) {
1324 1.98 knakahar return;
1325 1.98 knakahar }
1326 1.5 enami
1327 1.5 enami while ((mc = LIST_FIRST(&ifv->ifv_mc_listhead)) != NULL) {
1328 1.98 knakahar (void)if_mcast_op(mib->ifvm_p, SIOCDELMULTI,
1329 1.129 yamaguch sstocsa(&mc->mc_addr));
1330 1.5 enami LIST_REMOVE(mc, mc_entries);
1331 1.62 cegger free(mc, M_DEVBUF);
1332 1.1 thorpej }
1333 1.1 thorpej }
1334 1.1 thorpej
1335 1.1 thorpej static void
1336 1.1 thorpej vlan_start(struct ifnet *ifp)
1337 1.1 thorpej {
1338 1.14 enami struct ifvlan *ifv = ifp->if_softc;
1339 1.98 knakahar struct ifnet *p;
1340 1.98 knakahar struct ethercom *ec;
1341 1.1 thorpej struct mbuf *m;
1342 1.98 knakahar struct ifvlan_linkmib *mib;
1343 1.98 knakahar struct psref psref;
1344 1.31 thorpej int error;
1345 1.1 thorpej
1346 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
1347 1.98 knakahar if (mib == NULL)
1348 1.98 knakahar return;
1349 1.98 knakahar p = mib->ifvm_p;
1350 1.98 knakahar ec = (void *)mib->ifvm_p;
1351 1.98 knakahar
1352 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
1353 1.1 thorpej
1354 1.1 thorpej for (;;) {
1355 1.31 thorpej IFQ_DEQUEUE(&ifp->if_snd, m);
1356 1.1 thorpej if (m == NULL)
1357 1.1 thorpej break;
1358 1.1 thorpej
1359 1.31 thorpej #ifdef ALTQ
1360 1.31 thorpej /*
1361 1.124 maxv * KERNEL_LOCK is required for ALTQ even if NET_MPSAFE is
1362 1.124 maxv * defined.
1363 1.90 knakahar */
1364 1.90 knakahar KERNEL_LOCK(1, NULL);
1365 1.90 knakahar /*
1366 1.31 thorpej * If ALTQ is enabled on the parent interface, do
1367 1.31 thorpej * classification; the queueing discipline might
1368 1.31 thorpej * not require classification, but might require
1369 1.31 thorpej * the address family/header pointer in the pktattr.
1370 1.31 thorpej */
1371 1.31 thorpej if (ALTQ_IS_ENABLED(&p->if_snd)) {
1372 1.31 thorpej switch (p->if_type) {
1373 1.31 thorpej case IFT_ETHER:
1374 1.85 knakahar altq_etherclassify(&p->if_snd, m);
1375 1.31 thorpej break;
1376 1.31 thorpej default:
1377 1.124 maxv panic("%s: impossible (altq)", __func__);
1378 1.31 thorpej }
1379 1.31 thorpej }
1380 1.90 knakahar KERNEL_UNLOCK_ONE(NULL);
1381 1.31 thorpej #endif /* ALTQ */
1382 1.31 thorpej
1383 1.130 msaitoh bpf_mtap(ifp, m, BPF_D_OUT);
1384 1.1 thorpej /*
1385 1.24 bouyer * If the parent can insert the tag itself, just mark
1386 1.24 bouyer * the tag in the mbuf header.
1387 1.1 thorpej */
1388 1.142 msaitoh if (ec->ec_capenable & ETHERCAP_VLAN_HWTAGGING) {
1389 1.100 knakahar vlan_set_tag(m, mib->ifvm_tag);
1390 1.24 bouyer } else {
1391 1.24 bouyer /*
1392 1.34 pooka * insert the tag ourselves
1393 1.24 bouyer */
1394 1.98 knakahar M_PREPEND(m, mib->ifvm_encaplen, M_DONTWAIT);
1395 1.24 bouyer if (m == NULL) {
1396 1.24 bouyer printf("%s: unable to prepend encap header",
1397 1.98 knakahar p->if_xname);
1398 1.150 thorpej if_statinc(ifp, if_oerrors);
1399 1.10 thorpej continue;
1400 1.10 thorpej }
1401 1.10 thorpej
1402 1.24 bouyer switch (p->if_type) {
1403 1.24 bouyer case IFT_ETHER:
1404 1.24 bouyer {
1405 1.24 bouyer struct ether_vlan_header *evl;
1406 1.24 bouyer
1407 1.24 bouyer if (m->m_len < sizeof(struct ether_vlan_header))
1408 1.24 bouyer m = m_pullup(m,
1409 1.24 bouyer sizeof(struct ether_vlan_header));
1410 1.24 bouyer if (m == NULL) {
1411 1.24 bouyer printf("%s: unable to pullup encap "
1412 1.98 knakahar "header", p->if_xname);
1413 1.150 thorpej if_statinc(ifp, if_oerrors);
1414 1.24 bouyer continue;
1415 1.24 bouyer }
1416 1.24 bouyer
1417 1.24 bouyer /*
1418 1.24 bouyer * Transform the Ethernet header into an
1419 1.24 bouyer * Ethernet header with 802.1Q encapsulation.
1420 1.24 bouyer */
1421 1.53 christos memmove(mtod(m, void *),
1422 1.98 knakahar mtod(m, char *) + mib->ifvm_encaplen,
1423 1.24 bouyer sizeof(struct ether_header));
1424 1.24 bouyer evl = mtod(m, struct ether_vlan_header *);
1425 1.24 bouyer evl->evl_proto = evl->evl_encap_proto;
1426 1.24 bouyer evl->evl_encap_proto = htons(ETHERTYPE_VLAN);
1427 1.98 knakahar evl->evl_tag = htons(mib->ifvm_tag);
1428 1.38 scw
1429 1.38 scw /*
1430 1.38 scw * To cater for VLAN-aware layer 2 ethernet
1431 1.38 scw * switches which may need to strip the tag
1432 1.38 scw * before forwarding the packet, make sure
1433 1.38 scw * the packet+tag is at least 68 bytes long.
1434 1.38 scw * This is necessary because our parent will
1435 1.38 scw * only pad to 64 bytes (ETHER_MIN_LEN) and
1436 1.38 scw * some switches will not pad by themselves
1437 1.38 scw * after deleting a tag.
1438 1.38 scw */
1439 1.124 maxv const size_t min_data_len = ETHER_MIN_LEN -
1440 1.124 maxv ETHER_CRC_LEN + ETHER_VLAN_ENCAP_LEN;
1441 1.124 maxv if (m->m_pkthdr.len < min_data_len) {
1442 1.38 scw m_copyback(m, m->m_pkthdr.len,
1443 1.124 maxv min_data_len - m->m_pkthdr.len,
1444 1.38 scw vlan_zero_pad_buff);
1445 1.38 scw }
1446 1.24 bouyer break;
1447 1.24 bouyer }
1448 1.10 thorpej
1449 1.24 bouyer default:
1450 1.124 maxv panic("%s: impossible", __func__);
1451 1.24 bouyer }
1452 1.1 thorpej }
1453 1.1 thorpej
1454 1.96 ozaki if ((p->if_flags & IFF_RUNNING) == 0) {
1455 1.96 ozaki m_freem(m);
1456 1.96 ozaki continue;
1457 1.1 thorpej }
1458 1.31 thorpej
1459 1.96 ozaki error = if_transmit_lock(p, m);
1460 1.96 ozaki if (error) {
1461 1.96 ozaki /* mbuf is already freed */
1462 1.150 thorpej if_statinc(ifp, if_oerrors);
1463 1.96 ozaki continue;
1464 1.96 ozaki }
1465 1.150 thorpej if_statinc(ifp, if_opackets);
1466 1.1 thorpej }
1467 1.1 thorpej
1468 1.1 thorpej ifp->if_flags &= ~IFF_OACTIVE;
1469 1.98 knakahar
1470 1.98 knakahar /* Remove reference to mib before release */
1471 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1472 1.98 knakahar }
1473 1.98 knakahar
1474 1.98 knakahar static int
1475 1.98 knakahar vlan_transmit(struct ifnet *ifp, struct mbuf *m)
1476 1.98 knakahar {
1477 1.98 knakahar struct ifvlan *ifv = ifp->if_softc;
1478 1.98 knakahar struct ifnet *p;
1479 1.98 knakahar struct ethercom *ec;
1480 1.98 knakahar struct ifvlan_linkmib *mib;
1481 1.98 knakahar struct psref psref;
1482 1.98 knakahar int error;
1483 1.99 knakahar size_t pktlen = m->m_pkthdr.len;
1484 1.99 knakahar bool mcast = (m->m_flags & M_MCAST) != 0;
1485 1.98 knakahar
1486 1.98 knakahar mib = vlan_getref_linkmib(ifv, &psref);
1487 1.98 knakahar if (mib == NULL) {
1488 1.98 knakahar m_freem(m);
1489 1.98 knakahar return ENETDOWN;
1490 1.98 knakahar }
1491 1.98 knakahar
1492 1.98 knakahar p = mib->ifvm_p;
1493 1.98 knakahar ec = (void *)mib->ifvm_p;
1494 1.98 knakahar
1495 1.130 msaitoh bpf_mtap(ifp, m, BPF_D_OUT);
1496 1.113 jmcneill
1497 1.125 tih if ((error = pfil_run_hooks(ifp->if_pfil, &m, ifp, PFIL_OUT)) != 0)
1498 1.125 tih goto out;
1499 1.125 tih if (m == NULL)
1500 1.113 jmcneill goto out;
1501 1.113 jmcneill
1502 1.98 knakahar /*
1503 1.98 knakahar * If the parent can insert the tag itself, just mark
1504 1.98 knakahar * the tag in the mbuf header.
1505 1.98 knakahar */
1506 1.142 msaitoh if (ec->ec_capenable & ETHERCAP_VLAN_HWTAGGING) {
1507 1.100 knakahar vlan_set_tag(m, mib->ifvm_tag);
1508 1.98 knakahar } else {
1509 1.98 knakahar /*
1510 1.98 knakahar * insert the tag ourselves
1511 1.98 knakahar */
1512 1.98 knakahar M_PREPEND(m, mib->ifvm_encaplen, M_DONTWAIT);
1513 1.98 knakahar if (m == NULL) {
1514 1.98 knakahar printf("%s: unable to prepend encap header",
1515 1.98 knakahar p->if_xname);
1516 1.150 thorpej if_statinc(ifp, if_oerrors);
1517 1.98 knakahar error = ENOBUFS;
1518 1.98 knakahar goto out;
1519 1.98 knakahar }
1520 1.98 knakahar
1521 1.98 knakahar switch (p->if_type) {
1522 1.98 knakahar case IFT_ETHER:
1523 1.98 knakahar {
1524 1.98 knakahar struct ether_vlan_header *evl;
1525 1.98 knakahar
1526 1.98 knakahar if (m->m_len < sizeof(struct ether_vlan_header))
1527 1.98 knakahar m = m_pullup(m,
1528 1.98 knakahar sizeof(struct ether_vlan_header));
1529 1.98 knakahar if (m == NULL) {
1530 1.98 knakahar printf("%s: unable to pullup encap "
1531 1.98 knakahar "header", p->if_xname);
1532 1.150 thorpej if_statinc(ifp, if_oerrors);
1533 1.98 knakahar error = ENOBUFS;
1534 1.98 knakahar goto out;
1535 1.98 knakahar }
1536 1.98 knakahar
1537 1.98 knakahar /*
1538 1.98 knakahar * Transform the Ethernet header into an
1539 1.98 knakahar * Ethernet header with 802.1Q encapsulation.
1540 1.98 knakahar */
1541 1.98 knakahar memmove(mtod(m, void *),
1542 1.98 knakahar mtod(m, char *) + mib->ifvm_encaplen,
1543 1.98 knakahar sizeof(struct ether_header));
1544 1.98 knakahar evl = mtod(m, struct ether_vlan_header *);
1545 1.98 knakahar evl->evl_proto = evl->evl_encap_proto;
1546 1.98 knakahar evl->evl_encap_proto = htons(ETHERTYPE_VLAN);
1547 1.98 knakahar evl->evl_tag = htons(mib->ifvm_tag);
1548 1.98 knakahar
1549 1.98 knakahar /*
1550 1.98 knakahar * To cater for VLAN-aware layer 2 ethernet
1551 1.98 knakahar * switches which may need to strip the tag
1552 1.98 knakahar * before forwarding the packet, make sure
1553 1.98 knakahar * the packet+tag is at least 68 bytes long.
1554 1.98 knakahar * This is necessary because our parent will
1555 1.98 knakahar * only pad to 64 bytes (ETHER_MIN_LEN) and
1556 1.98 knakahar * some switches will not pad by themselves
1557 1.98 knakahar * after deleting a tag.
1558 1.98 knakahar */
1559 1.124 maxv const size_t min_data_len = ETHER_MIN_LEN -
1560 1.124 maxv ETHER_CRC_LEN + ETHER_VLAN_ENCAP_LEN;
1561 1.124 maxv if (m->m_pkthdr.len < min_data_len) {
1562 1.98 knakahar m_copyback(m, m->m_pkthdr.len,
1563 1.124 maxv min_data_len - m->m_pkthdr.len,
1564 1.98 knakahar vlan_zero_pad_buff);
1565 1.98 knakahar }
1566 1.98 knakahar break;
1567 1.98 knakahar }
1568 1.98 knakahar
1569 1.98 knakahar default:
1570 1.124 maxv panic("%s: impossible", __func__);
1571 1.98 knakahar }
1572 1.98 knakahar }
1573 1.98 knakahar
1574 1.98 knakahar if ((p->if_flags & IFF_RUNNING) == 0) {
1575 1.98 knakahar m_freem(m);
1576 1.98 knakahar error = ENETDOWN;
1577 1.98 knakahar goto out;
1578 1.98 knakahar }
1579 1.98 knakahar
1580 1.98 knakahar error = if_transmit_lock(p, m);
1581 1.150 thorpej net_stat_ref_t nsr = IF_STAT_GETREF(ifp);
1582 1.98 knakahar if (error) {
1583 1.98 knakahar /* mbuf is already freed */
1584 1.150 thorpej if_statinc_ref(nsr, if_oerrors);
1585 1.98 knakahar } else {
1586 1.150 thorpej if_statinc_ref(nsr, if_opackets);
1587 1.150 thorpej if_statadd_ref(nsr, if_obytes, pktlen);
1588 1.99 knakahar if (mcast)
1589 1.150 thorpej if_statinc_ref(nsr, if_omcasts);
1590 1.98 knakahar }
1591 1.150 thorpej IF_STAT_PUTREF(ifp);
1592 1.98 knakahar
1593 1.98 knakahar out:
1594 1.98 knakahar /* Remove reference to mib before release */
1595 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1596 1.98 knakahar return error;
1597 1.1 thorpej }
1598 1.1 thorpej
1599 1.1 thorpej /*
1600 1.1 thorpej * Given an Ethernet frame, find a valid vlan interface corresponding to the
1601 1.44 perry * given source interface and tag, then run the real packet through the
1602 1.40 simonb * parent's input routine.
1603 1.1 thorpej */
1604 1.1 thorpej void
1605 1.1 thorpej vlan_input(struct ifnet *ifp, struct mbuf *m)
1606 1.1 thorpej {
1607 1.1 thorpej struct ifvlan *ifv;
1608 1.108 msaitoh uint16_t vid;
1609 1.98 knakahar struct ifvlan_linkmib *mib;
1610 1.98 knakahar struct psref psref;
1611 1.100 knakahar bool have_vtag;
1612 1.24 bouyer
1613 1.100 knakahar have_vtag = vlan_has_tag(m);
1614 1.100 knakahar if (have_vtag) {
1615 1.108 msaitoh vid = EVL_VLANOFTAG(vlan_get_tag(m));
1616 1.100 knakahar m->m_flags &= ~M_VLANTAG;
1617 1.24 bouyer } else {
1618 1.124 maxv struct ether_vlan_header *evl;
1619 1.24 bouyer
1620 1.124 maxv if (ifp->if_type != IFT_ETHER) {
1621 1.124 maxv panic("%s: impossible", __func__);
1622 1.124 maxv }
1623 1.24 bouyer
1624 1.124 maxv if (m->m_len < sizeof(struct ether_vlan_header) &&
1625 1.124 maxv (m = m_pullup(m,
1626 1.124 maxv sizeof(struct ether_vlan_header))) == NULL) {
1627 1.124 maxv printf("%s: no memory for VLAN header, "
1628 1.124 maxv "dropping packet.\n", ifp->if_xname);
1629 1.124 maxv return;
1630 1.124 maxv }
1631 1.124 maxv evl = mtod(m, struct ether_vlan_header *);
1632 1.124 maxv KASSERT(ntohs(evl->evl_encap_proto) == ETHERTYPE_VLAN);
1633 1.1 thorpej
1634 1.124 maxv vid = EVL_VLANOFTAG(ntohs(evl->evl_tag));
1635 1.10 thorpej
1636 1.124 maxv /*
1637 1.124 maxv * Restore the original ethertype. We'll remove
1638 1.124 maxv * the encapsulation after we've found the vlan
1639 1.124 maxv * interface corresponding to the tag.
1640 1.124 maxv */
1641 1.124 maxv evl->evl_encap_proto = evl->evl_proto;
1642 1.43 christos }
1643 1.10 thorpej
1644 1.108 msaitoh mib = vlan_lookup_tag_psref(ifp, vid, &psref);
1645 1.98 knakahar if (mib == NULL) {
1646 1.98 knakahar m_freem(m);
1647 1.150 thorpej if_statinc(ifp, if_noproto);
1648 1.98 knakahar return;
1649 1.98 knakahar }
1650 1.124 maxv KASSERT(mib->ifvm_encaplen == ETHER_VLAN_ENCAP_LEN);
1651 1.1 thorpej
1652 1.98 knakahar ifv = mib->ifvm_ifvlan;
1653 1.137 msaitoh if ((ifv->ifv_if.if_flags & (IFF_UP | IFF_RUNNING)) !=
1654 1.137 msaitoh (IFF_UP | IFF_RUNNING)) {
1655 1.37 itojun m_freem(m);
1656 1.150 thorpej if_statinc(ifp, if_noproto);
1657 1.98 knakahar goto out;
1658 1.1 thorpej }
1659 1.43 christos
1660 1.43 christos /*
1661 1.43 christos * Now, remove the encapsulation header. The original
1662 1.43 christos * header has already been fixed up above.
1663 1.43 christos */
1664 1.100 knakahar if (!have_vtag) {
1665 1.98 knakahar memmove(mtod(m, char *) + mib->ifvm_encaplen,
1666 1.53 christos mtod(m, void *), sizeof(struct ether_header));
1667 1.98 knakahar m_adj(m, mib->ifvm_encaplen);
1668 1.43 christos }
1669 1.43 christos
1670 1.89 ozaki m_set_rcvif(m, &ifv->ifv_if);
1671 1.1 thorpej
1672 1.125 tih if (pfil_run_hooks(ifp->if_pfil, &m, ifp, PFIL_IN) != 0)
1673 1.125 tih goto out;
1674 1.125 tih if (m == NULL)
1675 1.113 jmcneill goto out;
1676 1.113 jmcneill
1677 1.72 ozaki m->m_flags &= ~M_PROMISC;
1678 1.84 ozaki if_input(&ifv->ifv_if, m);
1679 1.98 knakahar out:
1680 1.98 knakahar vlan_putref_linkmib(mib, &psref);
1681 1.1 thorpej }
1682 1.91 christos
1683 1.91 christos /*
1684 1.153 roy * If the parent link state changed, the vlan link state should change also.
1685 1.153 roy */
1686 1.153 roy void
1687 1.153 roy vlan_link_state_changed(struct ifnet *p, int link_state)
1688 1.153 roy {
1689 1.153 roy struct ifvlan *ifv;
1690 1.153 roy struct ifvlan_linkmib *mib;
1691 1.153 roy struct psref psref;
1692 1.153 roy struct ifnet *ifp;
1693 1.153 roy
1694 1.153 roy mutex_enter(&ifv_list.lock);
1695 1.153 roy
1696 1.153 roy LIST_FOREACH(ifv, &ifv_list.list, ifv_list) {
1697 1.153 roy mib = vlan_getref_linkmib(ifv, &psref);
1698 1.153 roy if (mib == NULL)
1699 1.153 roy continue;
1700 1.153 roy
1701 1.153 roy if (mib->ifvm_p == p) {
1702 1.153 roy ifp = &mib->ifvm_ifvlan->ifv_if;
1703 1.153 roy if_link_state_change(ifp, link_state);
1704 1.153 roy }
1705 1.153 roy
1706 1.153 roy vlan_putref_linkmib(mib, &psref);
1707 1.153 roy }
1708 1.153 roy
1709 1.153 roy mutex_exit(&ifv_list.lock);
1710 1.153 roy }
1711 1.153 roy
1712 1.153 roy /*
1713 1.91 christos * Module infrastructure
1714 1.91 christos */
1715 1.91 christos #include "if_module.h"
1716 1.91 christos
1717 1.135 pgoyette IF_MODULE(MODULE_CLASS_DRIVER, vlan, NULL)
1718