if_ethersubr.c revision 1.82 1 1.82 thorpej /* $NetBSD: if_ethersubr.c,v 1.82 2001/06/03 03:07:39 thorpej Exp $ */
2 1.44 itojun
3 1.44 itojun /*
4 1.44 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 1.44 itojun * All rights reserved.
6 1.44 itojun *
7 1.44 itojun * Redistribution and use in source and binary forms, with or without
8 1.44 itojun * modification, are permitted provided that the following conditions
9 1.44 itojun * are met:
10 1.44 itojun * 1. Redistributions of source code must retain the above copyright
11 1.44 itojun * notice, this list of conditions and the following disclaimer.
12 1.44 itojun * 2. Redistributions in binary form must reproduce the above copyright
13 1.44 itojun * notice, this list of conditions and the following disclaimer in the
14 1.44 itojun * documentation and/or other materials provided with the distribution.
15 1.44 itojun * 3. Neither the name of the project nor the names of its contributors
16 1.44 itojun * may be used to endorse or promote products derived from this software
17 1.44 itojun * without specific prior written permission.
18 1.44 itojun *
19 1.44 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 1.44 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.44 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.44 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 1.44 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.44 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.44 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.44 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.44 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.44 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.44 itojun * SUCH DAMAGE.
30 1.44 itojun */
31 1.9 cgd
32 1.1 cgd /*
33 1.8 mycroft * Copyright (c) 1982, 1989, 1993
34 1.8 mycroft * The Regents of the University of California. All rights reserved.
35 1.1 cgd *
36 1.1 cgd * Redistribution and use in source and binary forms, with or without
37 1.1 cgd * modification, are permitted provided that the following conditions
38 1.1 cgd * are met:
39 1.1 cgd * 1. Redistributions of source code must retain the above copyright
40 1.1 cgd * notice, this list of conditions and the following disclaimer.
41 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
42 1.1 cgd * notice, this list of conditions and the following disclaimer in the
43 1.1 cgd * documentation and/or other materials provided with the distribution.
44 1.1 cgd * 3. All advertising materials mentioning features or use of this software
45 1.1 cgd * must display the following acknowledgement:
46 1.1 cgd * This product includes software developed by the University of
47 1.1 cgd * California, Berkeley and its contributors.
48 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
49 1.1 cgd * may be used to endorse or promote products derived from this software
50 1.1 cgd * without specific prior written permission.
51 1.1 cgd *
52 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 1.1 cgd * SUCH DAMAGE.
63 1.1 cgd *
64 1.27 fvdl * @(#)if_ethersubr.c 8.2 (Berkeley) 4/4/96
65 1.1 cgd */
66 1.1 cgd
67 1.33 jonathan #include "opt_inet.h"
68 1.33 jonathan #include "opt_atalk.h"
69 1.34 jonathan #include "opt_ccitt.h"
70 1.35 jonathan #include "opt_llc.h"
71 1.36 jonathan #include "opt_iso.h"
72 1.37 jonathan #include "opt_ns.h"
73 1.30 matt #include "opt_gateway.h"
74 1.77 thorpej #include "opt_pfil_hooks.h"
75 1.59 thorpej #include "vlan.h"
76 1.81 martin #include "pppoe.h"
77 1.78 thorpej #include "bridge.h"
78 1.69 thorpej #include "bpfilter.h"
79 1.30 matt
80 1.4 mycroft #include <sys/param.h>
81 1.4 mycroft #include <sys/systm.h>
82 1.4 mycroft #include <sys/kernel.h>
83 1.81 martin #include <sys/callout.h>
84 1.4 mycroft #include <sys/malloc.h>
85 1.4 mycroft #include <sys/mbuf.h>
86 1.4 mycroft #include <sys/protosw.h>
87 1.4 mycroft #include <sys/socket.h>
88 1.4 mycroft #include <sys/ioctl.h>
89 1.4 mycroft #include <sys/errno.h>
90 1.4 mycroft #include <sys/syslog.h>
91 1.4 mycroft
92 1.8 mycroft #include <machine/cpu.h>
93 1.8 mycroft
94 1.4 mycroft #include <net/if.h>
95 1.4 mycroft #include <net/netisr.h>
96 1.4 mycroft #include <net/route.h>
97 1.4 mycroft #include <net/if_llc.h>
98 1.4 mycroft #include <net/if_dl.h>
99 1.8 mycroft #include <net/if_types.h>
100 1.1 cgd
101 1.69 thorpej #if NBPFILTER > 0
102 1.69 thorpej #include <net/bpf.h>
103 1.69 thorpej #endif
104 1.69 thorpej
105 1.22 is #include <net/if_ether.h>
106 1.59 thorpej #if NVLAN > 0
107 1.59 thorpej #include <net/if_vlanvar.h>
108 1.59 thorpej #endif
109 1.22 is
110 1.81 martin #if NPPPOE > 0
111 1.81 martin #include <net/if_pppoe.h>
112 1.81 martin #endif
113 1.81 martin
114 1.78 thorpej #if NBRIDGE > 0
115 1.78 thorpej #include <net/if_bridgevar.h>
116 1.78 thorpej #endif
117 1.78 thorpej
118 1.15 phil #include <netinet/in.h>
119 1.1 cgd #ifdef INET
120 1.4 mycroft #include <netinet/in_var.h>
121 1.1 cgd #endif
122 1.22 is #include <netinet/if_inarp.h>
123 1.1 cgd
124 1.44 itojun #ifdef INET6
125 1.44 itojun #ifndef INET
126 1.44 itojun #include <netinet/in.h>
127 1.44 itojun #endif
128 1.44 itojun #include <netinet6/in6_var.h>
129 1.44 itojun #include <netinet6/nd6.h>
130 1.44 itojun #endif
131 1.44 itojun
132 1.1 cgd #ifdef NS
133 1.4 mycroft #include <netns/ns.h>
134 1.4 mycroft #include <netns/ns_if.h>
135 1.1 cgd #endif
136 1.1 cgd
137 1.32 christos #ifdef IPX
138 1.32 christos #include <netipx/ipx.h>
139 1.32 christos #include <netipx/ipx_if.h>
140 1.32 christos #endif
141 1.32 christos
142 1.1 cgd #ifdef ISO
143 1.4 mycroft #include <netiso/argo_debug.h>
144 1.4 mycroft #include <netiso/iso.h>
145 1.4 mycroft #include <netiso/iso_var.h>
146 1.4 mycroft #include <netiso/iso_snpac.h>
147 1.1 cgd #endif
148 1.4 mycroft
149 1.8 mycroft #ifdef LLC
150 1.8 mycroft #include <netccitt/dll.h>
151 1.8 mycroft #include <netccitt/llc_var.h>
152 1.8 mycroft #endif
153 1.8 mycroft
154 1.8 mycroft #if defined(LLC) && defined(CCITT)
155 1.8 mycroft extern struct ifqueue pkintrq;
156 1.8 mycroft #endif
157 1.1 cgd
158 1.23 christos #ifdef NETATALK
159 1.23 christos #include <netatalk/at.h>
160 1.23 christos #include <netatalk/at_var.h>
161 1.23 christos #include <netatalk/at_extern.h>
162 1.23 christos
163 1.23 christos #define llc_snap_org_code llc_un.type_snap.org_code
164 1.23 christos #define llc_snap_ether_type llc_un.type_snap.ether_type
165 1.23 christos
166 1.23 christos extern u_char at_org_code[3];
167 1.23 christos extern u_char aarp_org_code[3];
168 1.23 christos #endif /* NETATALK */
169 1.23 christos
170 1.1 cgd u_char etherbroadcastaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
171 1.8 mycroft #define senderr(e) { error = (e); goto bad;}
172 1.1 cgd
173 1.22 is #define SIN(x) ((struct sockaddr_in *)x)
174 1.22 is
175 1.42 thorpej static int ether_output __P((struct ifnet *, struct mbuf *,
176 1.42 thorpej struct sockaddr *, struct rtentry *));
177 1.42 thorpej static void ether_input __P((struct ifnet *, struct mbuf *));
178 1.42 thorpej
179 1.1 cgd /*
180 1.1 cgd * Ethernet output routine.
181 1.1 cgd * Encapsulate a packet of type family for the local net.
182 1.22 is * Assumes that ifp is actually pointer to ethercom structure.
183 1.1 cgd */
184 1.42 thorpej static int
185 1.58 matt ether_output(struct ifnet *ifp, struct mbuf *m0, struct sockaddr *dst,
186 1.58 matt struct rtentry *rt0)
187 1.1 cgd {
188 1.49 matt u_int16_t etype = 0;
189 1.72 thorpej int s, len, error = 0, hdrcmplt = 0;
190 1.31 thorpej u_char esrc[6], edst[6];
191 1.29 mrg struct mbuf *m = m0;
192 1.29 mrg struct rtentry *rt;
193 1.1 cgd struct mbuf *mcopy = (struct mbuf *)0;
194 1.29 mrg struct ether_header *eh;
195 1.72 thorpej ALTQ_DECL(struct altq_pktattr pktattr;)
196 1.24 christos #ifdef INET
197 1.22 is struct arphdr *ah;
198 1.24 christos #endif /* INET */
199 1.23 christos #ifdef NETATALK
200 1.23 christos struct at_ifaddr *aa;
201 1.23 christos #endif /* NETATALK */
202 1.72 thorpej short mflags;
203 1.1 cgd
204 1.8 mycroft if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
205 1.8 mycroft senderr(ENETDOWN);
206 1.8 mycroft ifp->if_lastchange = time;
207 1.18 christos if ((rt = rt0) != NULL) {
208 1.8 mycroft if ((rt->rt_flags & RTF_UP) == 0) {
209 1.27 fvdl if ((rt0 = rt = rtalloc1(dst, 1)) != NULL) {
210 1.8 mycroft rt->rt_refcnt--;
211 1.27 fvdl if (rt->rt_ifp != ifp)
212 1.27 fvdl return (*rt->rt_ifp->if_output)
213 1.27 fvdl (ifp, m0, dst, rt);
214 1.27 fvdl } else
215 1.8 mycroft senderr(EHOSTUNREACH);
216 1.8 mycroft }
217 1.27 fvdl if ((rt->rt_flags & RTF_GATEWAY) && dst->sa_family != AF_NS) {
218 1.8 mycroft if (rt->rt_gwroute == 0)
219 1.8 mycroft goto lookup;
220 1.8 mycroft if (((rt = rt->rt_gwroute)->rt_flags & RTF_UP) == 0) {
221 1.8 mycroft rtfree(rt); rt = rt0;
222 1.8 mycroft lookup: rt->rt_gwroute = rtalloc1(rt->rt_gateway, 1);
223 1.8 mycroft if ((rt = rt->rt_gwroute) == 0)
224 1.8 mycroft senderr(EHOSTUNREACH);
225 1.27 fvdl /* the "G" test below also prevents rt == rt0 */
226 1.27 fvdl if ((rt->rt_flags & RTF_GATEWAY) ||
227 1.27 fvdl (rt->rt_ifp != ifp)) {
228 1.27 fvdl rt->rt_refcnt--;
229 1.27 fvdl rt0->rt_gwroute = 0;
230 1.27 fvdl senderr(EHOSTUNREACH);
231 1.27 fvdl }
232 1.8 mycroft }
233 1.8 mycroft }
234 1.8 mycroft if (rt->rt_flags & RTF_REJECT)
235 1.8 mycroft if (rt->rt_rmx.rmx_expire == 0 ||
236 1.8 mycroft time.tv_sec < rt->rt_rmx.rmx_expire)
237 1.8 mycroft senderr(rt == rt0 ? EHOSTDOWN : EHOSTUNREACH);
238 1.1 cgd }
239 1.72 thorpej
240 1.1 cgd switch (dst->sa_family) {
241 1.1 cgd
242 1.1 cgd #ifdef INET
243 1.1 cgd case AF_INET:
244 1.22 is if (m->m_flags & M_BCAST)
245 1.22 is bcopy((caddr_t)etherbroadcastaddr, (caddr_t)edst,
246 1.22 is sizeof(edst));
247 1.22 is
248 1.22 is else if (m->m_flags & M_MCAST) {
249 1.22 is ETHER_MAP_IP_MULTICAST(&SIN(dst)->sin_addr,
250 1.22 is (caddr_t)edst)
251 1.22 is
252 1.22 is } else if (!arpresolve(ifp, rt, m, dst, edst))
253 1.1 cgd return (0); /* if not yet resolved */
254 1.3 hpeyerl /* If broadcasting on a simplex interface, loopback a copy */
255 1.3 hpeyerl if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
256 1.1 cgd mcopy = m_copy(m, 0, (int)M_COPYALL);
257 1.17 mycroft etype = htons(ETHERTYPE_IP);
258 1.8 mycroft break;
259 1.22 is
260 1.22 is case AF_ARP:
261 1.22 is ah = mtod(m, struct arphdr *);
262 1.22 is if (m->m_flags & M_BCAST)
263 1.22 is bcopy((caddr_t)etherbroadcastaddr, (caddr_t)edst,
264 1.22 is sizeof(edst));
265 1.22 is else
266 1.22 is bcopy((caddr_t)ar_tha(ah),
267 1.22 is (caddr_t)edst, sizeof(edst));
268 1.22 is
269 1.22 is ah->ar_hrd = htons(ARPHRD_ETHER);
270 1.22 is
271 1.22 is switch(ntohs(ah->ar_op)) {
272 1.22 is case ARPOP_REVREQUEST:
273 1.22 is case ARPOP_REVREPLY:
274 1.22 is etype = htons(ETHERTYPE_REVARP);
275 1.22 is break;
276 1.22 is
277 1.22 is case ARPOP_REQUEST:
278 1.22 is case ARPOP_REPLY:
279 1.22 is default:
280 1.22 is etype = htons(ETHERTYPE_ARP);
281 1.22 is }
282 1.22 is
283 1.22 is break;
284 1.1 cgd #endif
285 1.44 itojun #ifdef INET6
286 1.44 itojun case AF_INET6:
287 1.51 itojun #ifdef OLDIP6OUTPUT
288 1.44 itojun if (!nd6_resolve(ifp, rt, m, dst, (u_char *)edst))
289 1.44 itojun return(0); /* if not yet resolves */
290 1.51 itojun #else
291 1.51 itojun if (!nd6_storelladdr(ifp, rt, m, dst, (u_char *)edst)){
292 1.67 itojun /* something bad happened */
293 1.51 itojun return(0);
294 1.51 itojun }
295 1.51 itojun #endif /* OLDIP6OUTPUT */
296 1.44 itojun etype = htons(ETHERTYPE_IPV6);
297 1.44 itojun break;
298 1.44 itojun #endif
299 1.23 christos #ifdef NETATALK
300 1.23 christos case AF_APPLETALK:
301 1.23 christos if (!aarpresolve(ifp, m, (struct sockaddr_at *)dst, edst)) {
302 1.23 christos #ifdef NETATALKDEBUG
303 1.23 christos printf("aarpresolv failed\n");
304 1.23 christos #endif /* NETATALKDEBUG */
305 1.23 christos return (0);
306 1.23 christos }
307 1.23 christos /*
308 1.23 christos * ifaddr is the first thing in at_ifaddr
309 1.23 christos */
310 1.23 christos aa = (struct at_ifaddr *) at_ifawithnet(
311 1.25 christos (struct sockaddr_at *)dst, ifp);
312 1.23 christos if (aa == NULL)
313 1.23 christos goto bad;
314 1.23 christos
315 1.23 christos /*
316 1.23 christos * In the phase 2 case, we need to prepend an mbuf for the
317 1.23 christos * llc header. Since we must preserve the value of m,
318 1.23 christos * which is passed to us by value, we m_copy() the first
319 1.23 christos * mbuf, and use it for our llc header.
320 1.23 christos */
321 1.23 christos if (aa->aa_flags & AFA_PHASE2) {
322 1.23 christos struct llc llc;
323 1.23 christos
324 1.43 bouyer M_PREPEND(m, sizeof(struct llc), M_DONTWAIT);
325 1.23 christos llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
326 1.23 christos llc.llc_control = LLC_UI;
327 1.23 christos bcopy(at_org_code, llc.llc_snap_org_code,
328 1.23 christos sizeof(llc.llc_snap_org_code));
329 1.38 kim llc.llc_snap_ether_type = htons(ETHERTYPE_ATALK);
330 1.23 christos bcopy(&llc, mtod(m, caddr_t), sizeof(struct llc));
331 1.23 christos } else {
332 1.38 kim etype = htons(ETHERTYPE_ATALK);
333 1.23 christos }
334 1.23 christos break;
335 1.23 christos #endif /* NETATALK */
336 1.1 cgd #ifdef NS
337 1.1 cgd case AF_NS:
338 1.17 mycroft etype = htons(ETHERTYPE_NS);
339 1.1 cgd bcopy((caddr_t)&(((struct sockaddr_ns *)dst)->sns_addr.x_host),
340 1.1 cgd (caddr_t)edst, sizeof (edst));
341 1.1 cgd if (!bcmp((caddr_t)edst, (caddr_t)&ns_thishost, sizeof(edst)))
342 1.1 cgd return (looutput(ifp, m, dst, rt));
343 1.3 hpeyerl /* If broadcasting on a simplex interface, loopback a copy */
344 1.3 hpeyerl if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
345 1.1 cgd mcopy = m_copy(m, 0, (int)M_COPYALL);
346 1.8 mycroft break;
347 1.1 cgd #endif
348 1.32 christos #ifdef IPX
349 1.32 christos case AF_IPX:
350 1.39 christos etype = htons(ETHERTYPE_IPX);
351 1.39 christos bcopy((caddr_t)&(((struct sockaddr_ipx *)dst)->sipx_addr.x_host),
352 1.32 christos (caddr_t)edst, sizeof (edst));
353 1.32 christos /* If broadcasting on a simplex interface, loopback a copy */
354 1.32 christos if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
355 1.32 christos mcopy = m_copy(m, 0, (int)M_COPYALL);
356 1.32 christos break;
357 1.32 christos #endif
358 1.1 cgd #ifdef ISO
359 1.1 cgd case AF_ISO: {
360 1.1 cgd int snpalen;
361 1.1 cgd struct llc *l;
362 1.29 mrg struct sockaddr_dl *sdl;
363 1.1 cgd
364 1.8 mycroft if (rt && (sdl = (struct sockaddr_dl *)rt->rt_gateway) &&
365 1.8 mycroft sdl->sdl_family == AF_LINK && sdl->sdl_alen > 0) {
366 1.8 mycroft bcopy(LLADDR(sdl), (caddr_t)edst, sizeof(edst));
367 1.18 christos } else {
368 1.18 christos error = iso_snparesolve(ifp, (struct sockaddr_iso *)dst,
369 1.18 christos (char *)edst, &snpalen);
370 1.18 christos if (error)
371 1.18 christos goto bad; /* Not Resolved */
372 1.18 christos }
373 1.3 hpeyerl /* If broadcasting on a simplex interface, loopback a copy */
374 1.8 mycroft if (*edst & 1)
375 1.8 mycroft m->m_flags |= (M_BCAST|M_MCAST);
376 1.3 hpeyerl if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX) &&
377 1.1 cgd (mcopy = m_copy(m, 0, (int)M_COPYALL))) {
378 1.1 cgd M_PREPEND(mcopy, sizeof (*eh), M_DONTWAIT);
379 1.1 cgd if (mcopy) {
380 1.1 cgd eh = mtod(mcopy, struct ether_header *);
381 1.1 cgd bcopy((caddr_t)edst,
382 1.1 cgd (caddr_t)eh->ether_dhost, sizeof (edst));
383 1.22 is bcopy(LLADDR(ifp->if_sadl),
384 1.1 cgd (caddr_t)eh->ether_shost, sizeof (edst));
385 1.1 cgd }
386 1.1 cgd }
387 1.1 cgd M_PREPEND(m, 3, M_DONTWAIT);
388 1.1 cgd if (m == NULL)
389 1.1 cgd return (0);
390 1.1 cgd l = mtod(m, struct llc *);
391 1.1 cgd l->llc_dsap = l->llc_ssap = LLC_ISO_LSAP;
392 1.1 cgd l->llc_control = LLC_UI;
393 1.18 christos #ifdef ARGO_DEBUG
394 1.18 christos if (argo_debug[D_ETHER]) {
395 1.1 cgd int i;
396 1.21 christos printf("unoutput: sending pkt to: ");
397 1.1 cgd for (i=0; i<6; i++)
398 1.21 christos printf("%x ", edst[i] & 0xff);
399 1.21 christos printf("\n");
400 1.18 christos }
401 1.18 christos #endif
402 1.8 mycroft } break;
403 1.8 mycroft #endif /* ISO */
404 1.8 mycroft #ifdef LLC
405 1.8 mycroft /* case AF_NSAP: */
406 1.8 mycroft case AF_CCITT: {
407 1.29 mrg struct sockaddr_dl *sdl =
408 1.8 mycroft (struct sockaddr_dl *) rt -> rt_gateway;
409 1.8 mycroft
410 1.8 mycroft if (sdl && sdl->sdl_family == AF_LINK
411 1.8 mycroft && sdl->sdl_alen > 0) {
412 1.8 mycroft bcopy(LLADDR(sdl), (char *)edst,
413 1.8 mycroft sizeof(edst));
414 1.8 mycroft } else goto bad; /* Not a link interface ? Funny ... */
415 1.8 mycroft if ((ifp->if_flags & IFF_SIMPLEX) && (*edst & 1) &&
416 1.8 mycroft (mcopy = m_copy(m, 0, (int)M_COPYALL))) {
417 1.8 mycroft M_PREPEND(mcopy, sizeof (*eh), M_DONTWAIT);
418 1.8 mycroft if (mcopy) {
419 1.8 mycroft eh = mtod(mcopy, struct ether_header *);
420 1.8 mycroft bcopy((caddr_t)edst,
421 1.8 mycroft (caddr_t)eh->ether_dhost, sizeof (edst));
422 1.22 is bcopy(LLADDR(ifp->if_sadl),
423 1.8 mycroft (caddr_t)eh->ether_shost, sizeof (edst));
424 1.8 mycroft }
425 1.3 hpeyerl }
426 1.8 mycroft #ifdef LLC_DEBUG
427 1.8 mycroft {
428 1.8 mycroft int i;
429 1.29 mrg struct llc *l = mtod(m, struct llc *);
430 1.8 mycroft
431 1.21 christos printf("ether_output: sending LLC2 pkt to: ");
432 1.8 mycroft for (i=0; i<6; i++)
433 1.21 christos printf("%x ", edst[i] & 0xff);
434 1.21 christos printf(" len 0x%x dsap 0x%x ssap 0x%x control 0x%x\n",
435 1.17 mycroft m->m_pkthdr.len, l->llc_dsap & 0xff, l->llc_ssap &0xff,
436 1.17 mycroft l->llc_control & 0xff);
437 1.8 mycroft
438 1.8 mycroft }
439 1.8 mycroft #endif /* LLC_DEBUG */
440 1.8 mycroft } break;
441 1.8 mycroft #endif /* LLC */
442 1.1 cgd
443 1.31 thorpej case pseudo_AF_HDRCMPLT:
444 1.31 thorpej hdrcmplt = 1;
445 1.31 thorpej eh = (struct ether_header *)dst->sa_data;
446 1.31 thorpej bcopy((caddr_t)eh->ether_shost, (caddr_t)esrc, sizeof (esrc));
447 1.31 thorpej /* FALLTHROUGH */
448 1.31 thorpej
449 1.1 cgd case AF_UNSPEC:
450 1.1 cgd eh = (struct ether_header *)dst->sa_data;
451 1.1 cgd bcopy((caddr_t)eh->ether_dhost, (caddr_t)edst, sizeof (edst));
452 1.8 mycroft /* AF_UNSPEC doesn't swap the byte order of the ether_type. */
453 1.17 mycroft etype = eh->ether_type;
454 1.8 mycroft break;
455 1.1 cgd
456 1.1 cgd default:
457 1.21 christos printf("%s: can't handle af%d\n", ifp->if_xname,
458 1.1 cgd dst->sa_family);
459 1.8 mycroft senderr(EAFNOSUPPORT);
460 1.1 cgd }
461 1.1 cgd
462 1.1 cgd if (mcopy)
463 1.1 cgd (void) looutput(ifp, mcopy, dst, rt);
464 1.16 mycroft
465 1.50 matt /* If no ether type is set, this must be a 802.2 formatted packet.
466 1.50 matt */
467 1.50 matt if (etype == 0)
468 1.50 matt etype = htons(m->m_pkthdr.len);
469 1.1 cgd /*
470 1.1 cgd * Add local net header. If no space in first mbuf,
471 1.1 cgd * allocate another.
472 1.1 cgd */
473 1.1 cgd M_PREPEND(m, sizeof (struct ether_header), M_DONTWAIT);
474 1.8 mycroft if (m == 0)
475 1.8 mycroft senderr(ENOBUFS);
476 1.1 cgd eh = mtod(m, struct ether_header *);
477 1.8 mycroft bcopy((caddr_t)&etype,(caddr_t)&eh->ether_type,
478 1.1 cgd sizeof(eh->ether_type));
479 1.1 cgd bcopy((caddr_t)edst, (caddr_t)eh->ether_dhost, sizeof (edst));
480 1.31 thorpej if (hdrcmplt)
481 1.31 thorpej bcopy((caddr_t)esrc, (caddr_t)eh->ether_shost,
482 1.31 thorpej sizeof(eh->ether_shost));
483 1.31 thorpej else
484 1.31 thorpej bcopy(LLADDR(ifp->if_sadl), (caddr_t)eh->ether_shost,
485 1.31 thorpej sizeof(eh->ether_shost));
486 1.77 thorpej
487 1.77 thorpej #ifdef PFIL_HOOKS
488 1.77 thorpej if ((error = pfil_run_hooks(&ifp->if_pfil, &m, ifp, PFIL_OUT)) != 0)
489 1.77 thorpej return (error);
490 1.77 thorpej if (m == NULL)
491 1.77 thorpej return (0);
492 1.77 thorpej #endif
493 1.77 thorpej
494 1.78 thorpej #if NBRIDGE > 0
495 1.78 thorpej /*
496 1.78 thorpej * Bridges require special output handling.
497 1.78 thorpej */
498 1.78 thorpej if (ifp->if_bridge)
499 1.78 thorpej return (bridge_output(ifp, m, NULL, NULL));
500 1.78 thorpej #endif
501 1.78 thorpej
502 1.77 thorpej #ifdef ALTQ
503 1.77 thorpej /*
504 1.77 thorpej * If ALTQ is enabled on the parent interface, do
505 1.77 thorpej * classification; the queueing discipline might not
506 1.77 thorpej * require classification, but might require the
507 1.77 thorpej * address family/header pointer in the pktattr.
508 1.77 thorpej */
509 1.77 thorpej if (ALTQ_IS_ENABLED(&ifp->if_snd))
510 1.77 thorpej altq_etherclassify(&ifp->if_snd, m, &pktattr);
511 1.77 thorpej #endif
512 1.77 thorpej
513 1.72 thorpej mflags = m->m_flags;
514 1.72 thorpej len = m->m_pkthdr.len;
515 1.79 thorpej s = splnet();
516 1.1 cgd /*
517 1.1 cgd * Queue message on interface, and start output if interface
518 1.1 cgd * not yet active.
519 1.1 cgd */
520 1.72 thorpej IFQ_ENQUEUE(&ifp->if_snd, m, &pktattr, error);
521 1.72 thorpej if (error) {
522 1.72 thorpej /* mbuf is already freed */
523 1.1 cgd splx(s);
524 1.72 thorpej return (error);
525 1.1 cgd }
526 1.72 thorpej ifp->if_obytes += len;
527 1.72 thorpej if (mflags & M_MCAST)
528 1.57 mycroft ifp->if_omcasts++;
529 1.1 cgd if ((ifp->if_flags & IFF_OACTIVE) == 0)
530 1.1 cgd (*ifp->if_start)(ifp);
531 1.1 cgd splx(s);
532 1.1 cgd return (error);
533 1.1 cgd
534 1.1 cgd bad:
535 1.1 cgd if (m)
536 1.1 cgd m_freem(m);
537 1.1 cgd return (error);
538 1.1 cgd }
539 1.76 thorpej
540 1.76 thorpej #ifdef ALTQ
541 1.76 thorpej /*
542 1.76 thorpej * This routine is a slight hack to allow a packet to be classified
543 1.76 thorpej * if the Ethernet headers are present. It will go away when ALTQ's
544 1.76 thorpej * classification engine understands link headers.
545 1.76 thorpej */
546 1.76 thorpej void
547 1.76 thorpej altq_etherclassify(struct ifaltq *ifq, struct mbuf *m,
548 1.76 thorpej struct altq_pktattr *pktattr)
549 1.76 thorpej {
550 1.76 thorpej struct ether_header *eh;
551 1.76 thorpej u_int16_t ether_type;
552 1.76 thorpej int hlen, af, hdrsize;
553 1.76 thorpej caddr_t hdr;
554 1.76 thorpej
555 1.76 thorpej hlen = ETHER_HDR_LEN;
556 1.76 thorpej eh = mtod(m, struct ether_header *);
557 1.76 thorpej
558 1.76 thorpej ether_type = htons(eh->ether_type);
559 1.76 thorpej
560 1.76 thorpej if (ether_type < ETHERMTU) {
561 1.76 thorpej /* LLC/SNAP */
562 1.76 thorpej struct llc *llc = (struct llc *)(eh + 1);
563 1.76 thorpej hlen += 8;
564 1.76 thorpej
565 1.76 thorpej if (m->m_len < hlen ||
566 1.76 thorpej llc->llc_dsap != LLC_SNAP_LSAP ||
567 1.76 thorpej llc->llc_ssap != LLC_SNAP_LSAP ||
568 1.76 thorpej llc->llc_control != LLC_UI) {
569 1.76 thorpej /* Not SNAP. */
570 1.76 thorpej goto bad;
571 1.76 thorpej }
572 1.76 thorpej
573 1.76 thorpej ether_type = htons(llc->llc_un.type_snap.ether_type);
574 1.76 thorpej }
575 1.76 thorpej
576 1.76 thorpej switch (ether_type) {
577 1.76 thorpej case ETHERTYPE_IP:
578 1.76 thorpej af = AF_INET;
579 1.76 thorpej hdrsize = 20; /* sizeof(struct ip) */
580 1.76 thorpej break;
581 1.76 thorpej
582 1.76 thorpej case ETHERTYPE_IPV6:
583 1.76 thorpej af = AF_INET6;
584 1.76 thorpej hdrsize = 40; /* sizeof(struct ip6_hdr) */
585 1.76 thorpej break;
586 1.76 thorpej
587 1.76 thorpej default:
588 1.76 thorpej af = AF_UNSPEC;
589 1.76 thorpej hdrsize = 0;
590 1.76 thorpej break;
591 1.76 thorpej }
592 1.76 thorpej
593 1.76 thorpej if (m->m_len < (hlen + hdrsize)) {
594 1.76 thorpej /*
595 1.76 thorpej * Ethernet and protocol header not in a single
596 1.76 thorpej * mbuf. We can't cope with this situation right
597 1.76 thorpej * now (but it shouldn't ever happen, really, anyhow).
598 1.76 thorpej * XXX Should use m_pulldown().
599 1.76 thorpej */
600 1.78 thorpej printf("altq_etherclassify: headers span multiple mbufs: "
601 1.78 thorpej "%d < %d\n", m->m_len, (hlen + hdrsize));
602 1.76 thorpej goto bad;
603 1.76 thorpej }
604 1.76 thorpej
605 1.76 thorpej m->m_data += hlen;
606 1.76 thorpej m->m_len -= hlen;
607 1.76 thorpej
608 1.76 thorpej hdr = mtod(m, caddr_t);
609 1.76 thorpej
610 1.76 thorpej if (ALTQ_NEEDS_CLASSIFY(ifq))
611 1.76 thorpej pktattr->pattr_class =
612 1.76 thorpej (*ifq->altq_classify)(ifq->altq_clfier, m, af);
613 1.76 thorpej pktattr->pattr_af = af;
614 1.76 thorpej pktattr->pattr_hdr = hdr;
615 1.76 thorpej
616 1.76 thorpej m->m_data -= hlen;
617 1.76 thorpej m->m_len += hlen;
618 1.76 thorpej
619 1.76 thorpej return;
620 1.76 thorpej
621 1.76 thorpej bad:
622 1.76 thorpej pktattr->pattr_class = NULL;
623 1.76 thorpej pktattr->pattr_hdr = NULL;
624 1.76 thorpej pktattr->pattr_af = AF_UNSPEC;
625 1.76 thorpej }
626 1.76 thorpej #endif /* ALTQ */
627 1.1 cgd
628 1.1 cgd /*
629 1.1 cgd * Process a received Ethernet packet;
630 1.42 thorpej * the packet is in the mbuf chain m with
631 1.42 thorpej * the ether header.
632 1.1 cgd */
633 1.42 thorpej static void
634 1.58 matt ether_input(struct ifnet *ifp, struct mbuf *m)
635 1.1 cgd {
636 1.29 mrg struct ifqueue *inq;
637 1.18 christos u_int16_t etype;
638 1.18 christos int s;
639 1.42 thorpej struct ether_header *eh;
640 1.70 bouyer struct mbuf *n;
641 1.23 christos #if defined (ISO) || defined (LLC) || defined(NETATALK)
642 1.29 mrg struct llc *l;
643 1.18 christos #endif
644 1.1 cgd
645 1.8 mycroft if ((ifp->if_flags & IFF_UP) == 0) {
646 1.8 mycroft m_freem(m);
647 1.8 mycroft return;
648 1.8 mycroft }
649 1.42 thorpej
650 1.42 thorpej eh = mtod(m, struct ether_header *);
651 1.63 thorpej etype = ntohs(eh->ether_type);
652 1.63 thorpej
653 1.63 thorpej /*
654 1.63 thorpej * Determine if the packet is within its size limits.
655 1.63 thorpej */
656 1.63 thorpej if (m->m_pkthdr.len > ETHER_MAX_FRAME(etype, m->m_flags & M_HASFCS)) {
657 1.68 matt printf("%s: discarding oversize frame (len=%d)\n",
658 1.68 matt ifp->if_xname, m->m_pkthdr.len);
659 1.63 thorpej m_freem(m);
660 1.63 thorpej return;
661 1.63 thorpej }
662 1.77 thorpej
663 1.79 thorpej /* If the CRC is still on the packet, trim it off. */
664 1.79 thorpej if (m->m_flags & M_HASFCS) {
665 1.79 thorpej m_adj(m, -ETHER_CRC_LEN);
666 1.79 thorpej m->m_flags &= ~M_HASFCS;
667 1.79 thorpej }
668 1.79 thorpej
669 1.1 cgd ifp->if_lastchange = time;
670 1.42 thorpej ifp->if_ibytes += m->m_pkthdr.len;
671 1.61 thorpej if (ETHER_IS_MULTICAST(eh->ether_dhost)) {
672 1.61 thorpej if (memcmp(etherbroadcastaddr,
673 1.61 thorpej eh->ether_dhost, ETHER_ADDR_LEN) == 0)
674 1.8 mycroft m->m_flags |= M_BCAST;
675 1.8 mycroft else
676 1.8 mycroft m->m_flags |= M_MCAST;
677 1.1 cgd ifp->if_imcasts++;
678 1.78 thorpej }
679 1.78 thorpej
680 1.78 thorpej #if NBRIDGE > 0
681 1.78 thorpej /*
682 1.78 thorpej * Tap the packet off here for a bridge. bridge_input()
683 1.78 thorpej * will return NULL if it has consumed the packet, otherwise
684 1.78 thorpej * it gets processed as normal. Note that bridge_input()
685 1.78 thorpej * will always return the original packet if we need to
686 1.78 thorpej * process it locally.
687 1.78 thorpej */
688 1.78 thorpej if (ifp->if_bridge) {
689 1.78 thorpej m = bridge_input(ifp, m);
690 1.78 thorpej if (m == NULL)
691 1.78 thorpej return;
692 1.78 thorpej
693 1.78 thorpej /*
694 1.78 thorpej * Bridge has determined that the packet is for us.
695 1.78 thorpej * Update our interface pointer -- we may have had
696 1.78 thorpej * to "bridge" the packet locally.
697 1.78 thorpej */
698 1.78 thorpej ifp = m->m_pkthdr.rcvif;
699 1.78 thorpej }
700 1.78 thorpej #endif /* NBRIDGE > 0 */
701 1.78 thorpej
702 1.78 thorpej /*
703 1.78 thorpej * XXX This comparison is redundant if we are a bridge
704 1.78 thorpej * XXX and processing the packet locally.
705 1.78 thorpej */
706 1.78 thorpej if ((m->m_flags & (M_BCAST|M_MCAST)) == 0 &&
707 1.78 thorpej (ifp->if_flags & IFF_PROMISC) != 0 &&
708 1.78 thorpej memcmp(LLADDR(ifp->if_sadl), eh->ether_dhost,
709 1.78 thorpej ETHER_ADDR_LEN) != 0) {
710 1.61 thorpej m_freem(m);
711 1.70 bouyer return;
712 1.70 bouyer }
713 1.78 thorpej
714 1.78 thorpej #ifdef PFIL_HOOKS
715 1.78 thorpej if (pfil_run_hooks(&ifp->if_pfil, &m, ifp, PFIL_IN) != 0)
716 1.78 thorpej return;
717 1.78 thorpej if (m == NULL)
718 1.78 thorpej return;
719 1.78 thorpej
720 1.78 thorpej eh = mtod(m, struct ether_header *);
721 1.78 thorpej etype = ntohs(eh->ether_type);
722 1.78 thorpej #endif
723 1.70 bouyer
724 1.70 bouyer /* Check if the mbuf has a VLAN tag */
725 1.70 bouyer n = m_aux_find(m, AF_LINK, ETHERTYPE_VLAN);
726 1.70 bouyer if (n) {
727 1.70 bouyer #if NVLAN > 0
728 1.70 bouyer /*
729 1.70 bouyer * vlan_input() will either recursively call ether_input()
730 1.70 bouyer * or drop the packet.
731 1.70 bouyer */
732 1.70 bouyer if (((struct ethercom *)ifp)->ec_nvlans != 0)
733 1.70 bouyer vlan_input(ifp, m);
734 1.70 bouyer else
735 1.70 bouyer #endif
736 1.70 bouyer m_freem(m);
737 1.61 thorpej return;
738 1.61 thorpej }
739 1.1 cgd
740 1.59 thorpej /*
741 1.59 thorpej * Handle protocols that expect to have the Ethernet header
742 1.59 thorpej * (and possibly FCS) intact.
743 1.59 thorpej */
744 1.59 thorpej switch (etype) {
745 1.59 thorpej #if NVLAN > 0
746 1.59 thorpej case ETHERTYPE_VLAN:
747 1.59 thorpej /*
748 1.59 thorpej * vlan_input() will either recursively call ether_input()
749 1.59 thorpej * or drop the packet.
750 1.59 thorpej */
751 1.63 thorpej if (((struct ethercom *)ifp)->ec_nvlans != 0)
752 1.63 thorpej vlan_input(ifp, m);
753 1.65 enami else
754 1.65 enami m_freem(m);
755 1.59 thorpej return;
756 1.59 thorpej #endif /* NVLAN > 0 */
757 1.81 martin #if NPPPOE > 0
758 1.81 martin case ETHERTYPE_PPPOEDISC:
759 1.81 martin case ETHERTYPE_PPPOE:
760 1.81 martin if (etype == ETHERTYPE_PPPOEDISC)
761 1.81 martin inq = &ppoediscinq;
762 1.81 martin else
763 1.81 martin inq = &ppoeinq;
764 1.81 martin s = splnet();
765 1.81 martin if (IF_QFULL(inq)) {
766 1.81 martin IF_DROP(inq);
767 1.81 martin m_freem(m);
768 1.81 martin } else
769 1.81 martin IF_ENQUEUE(inq, m);
770 1.81 martin splx(s);
771 1.81 martin #ifndef __HAVE_GENERIC_SOFT_INTERRUPTS
772 1.81 martin if (!callout_active(&pppoe_softintr))
773 1.81 martin callout_reset(&pppoe_softintr, 1, pppoe_softintr_handler, NULL);
774 1.81 martin #else
775 1.81 martin softintr_schedule(pppoe_softintr);
776 1.81 martin #endif
777 1.81 martin return;
778 1.81 martin #endif /* NPPPOE > 0 */
779 1.59 thorpej default:
780 1.80 marcus ; /* Nothing. */
781 1.59 thorpej }
782 1.42 thorpej
783 1.42 thorpej /* Strip off the Ethernet header. */
784 1.42 thorpej m_adj(m, sizeof(struct ether_header));
785 1.45 thorpej
786 1.45 thorpej /* If the CRC is still on the packet, trim it off. */
787 1.79 thorpej if (m->m_flags & M_HASFCS) {
788 1.45 thorpej m_adj(m, -ETHER_CRC_LEN);
789 1.79 thorpej m->m_flags &= ~M_HASFCS;
790 1.79 thorpej }
791 1.42 thorpej
792 1.5 deraadt switch (etype) {
793 1.1 cgd #ifdef INET
794 1.1 cgd case ETHERTYPE_IP:
795 1.30 matt #ifdef GATEWAY
796 1.30 matt if (ipflow_fastforward(m))
797 1.30 matt return;
798 1.30 matt #endif
799 1.1 cgd schednetisr(NETISR_IP);
800 1.1 cgd inq = &ipintrq;
801 1.1 cgd break;
802 1.1 cgd
803 1.1 cgd case ETHERTYPE_ARP:
804 1.8 mycroft schednetisr(NETISR_ARP);
805 1.8 mycroft inq = &arpintrq;
806 1.8 mycroft break;
807 1.7 glass
808 1.7 glass case ETHERTYPE_REVARP:
809 1.8 mycroft revarpinput(m); /* XXX queue? */
810 1.1 cgd return;
811 1.1 cgd #endif
812 1.44 itojun #ifdef INET6
813 1.44 itojun case ETHERTYPE_IPV6:
814 1.44 itojun schednetisr(NETISR_IPV6);
815 1.44 itojun inq = &ip6intrq;
816 1.44 itojun break;
817 1.44 itojun #endif
818 1.1 cgd #ifdef NS
819 1.1 cgd case ETHERTYPE_NS:
820 1.1 cgd schednetisr(NETISR_NS);
821 1.1 cgd inq = &nsintrq;
822 1.1 cgd break;
823 1.1 cgd
824 1.32 christos #endif
825 1.32 christos #ifdef IPX
826 1.32 christos case ETHERTYPE_IPX:
827 1.32 christos schednetisr(NETISR_IPX);
828 1.32 christos inq = &ipxintrq;
829 1.32 christos break;
830 1.1 cgd #endif
831 1.23 christos #ifdef NETATALK
832 1.38 kim case ETHERTYPE_ATALK:
833 1.23 christos schednetisr(NETISR_ATALK);
834 1.23 christos inq = &atintrq1;
835 1.23 christos break;
836 1.23 christos case ETHERTYPE_AARP:
837 1.23 christos /* probably this should be done with a NETISR as well */
838 1.23 christos aarpinput(ifp, m); /* XXX */
839 1.23 christos return;
840 1.23 christos #endif /* NETATALK */
841 1.1 cgd default:
842 1.23 christos #if defined (ISO) || defined (LLC) || defined (NETATALK)
843 1.11 mycroft if (etype > ETHERMTU)
844 1.1 cgd goto dropanyway;
845 1.1 cgd l = mtod(m, struct llc *);
846 1.8 mycroft switch (l->llc_dsap) {
847 1.23 christos #ifdef NETATALK
848 1.23 christos case LLC_SNAP_LSAP:
849 1.23 christos switch (l->llc_control) {
850 1.23 christos case LLC_UI:
851 1.23 christos if (l->llc_ssap != LLC_SNAP_LSAP) {
852 1.23 christos goto dropanyway;
853 1.23 christos }
854 1.23 christos
855 1.23 christos if (Bcmp(&(l->llc_snap_org_code)[0],
856 1.23 christos at_org_code, sizeof(at_org_code)) == 0 &&
857 1.23 christos ntohs(l->llc_snap_ether_type) ==
858 1.38 kim ETHERTYPE_ATALK) {
859 1.23 christos inq = &atintrq2;
860 1.23 christos m_adj(m, sizeof(struct llc));
861 1.23 christos schednetisr(NETISR_ATALK);
862 1.23 christos break;
863 1.23 christos }
864 1.23 christos
865 1.23 christos if (Bcmp(&(l->llc_snap_org_code)[0],
866 1.23 christos aarp_org_code,
867 1.23 christos sizeof(aarp_org_code)) == 0 &&
868 1.23 christos ntohs(l->llc_snap_ether_type) ==
869 1.23 christos ETHERTYPE_AARP) {
870 1.23 christos m_adj( m, sizeof(struct llc));
871 1.23 christos aarpinput(ifp, m); /* XXX */
872 1.23 christos return;
873 1.23 christos }
874 1.23 christos
875 1.23 christos default:
876 1.23 christos goto dropanyway;
877 1.23 christos }
878 1.23 christos break;
879 1.23 christos #endif /* NETATALK */
880 1.8 mycroft #ifdef ISO
881 1.8 mycroft case LLC_ISO_LSAP:
882 1.8 mycroft switch (l->llc_control) {
883 1.8 mycroft case LLC_UI:
884 1.8 mycroft /* LLC_UI_P forbidden in class 1 service */
885 1.8 mycroft if ((l->llc_dsap == LLC_ISO_LSAP) &&
886 1.8 mycroft (l->llc_ssap == LLC_ISO_LSAP)) {
887 1.8 mycroft /* LSAP for ISO */
888 1.11 mycroft if (m->m_pkthdr.len > etype)
889 1.11 mycroft m_adj(m, etype - m->m_pkthdr.len);
890 1.8 mycroft m->m_data += 3; /* XXX */
891 1.8 mycroft m->m_len -= 3; /* XXX */
892 1.8 mycroft m->m_pkthdr.len -= 3; /* XXX */
893 1.8 mycroft M_PREPEND(m, sizeof *eh, M_DONTWAIT);
894 1.8 mycroft if (m == 0)
895 1.8 mycroft return;
896 1.8 mycroft *mtod(m, struct ether_header *) = *eh;
897 1.18 christos #ifdef ARGO_DEBUG
898 1.18 christos if (argo_debug[D_ETHER])
899 1.21 christos printf("clnp packet");
900 1.18 christos #endif
901 1.8 mycroft schednetisr(NETISR_ISO);
902 1.8 mycroft inq = &clnlintrq;
903 1.8 mycroft break;
904 1.8 mycroft }
905 1.8 mycroft goto dropanyway;
906 1.8 mycroft
907 1.8 mycroft case LLC_XID:
908 1.8 mycroft case LLC_XID_P:
909 1.8 mycroft if(m->m_len < 6)
910 1.8 mycroft goto dropanyway;
911 1.8 mycroft l->llc_window = 0;
912 1.8 mycroft l->llc_fid = 9;
913 1.8 mycroft l->llc_class = 1;
914 1.8 mycroft l->llc_dsap = l->llc_ssap = 0;
915 1.8 mycroft /* Fall through to */
916 1.8 mycroft case LLC_TEST:
917 1.8 mycroft case LLC_TEST_P:
918 1.8 mycroft {
919 1.8 mycroft struct sockaddr sa;
920 1.29 mrg struct ether_header *eh2;
921 1.8 mycroft int i;
922 1.8 mycroft u_char c = l->llc_dsap;
923 1.8 mycroft
924 1.8 mycroft l->llc_dsap = l->llc_ssap;
925 1.8 mycroft l->llc_ssap = c;
926 1.8 mycroft if (m->m_flags & (M_BCAST | M_MCAST))
927 1.22 is bcopy(LLADDR(ifp->if_sadl),
928 1.8 mycroft (caddr_t)eh->ether_dhost, 6);
929 1.8 mycroft sa.sa_family = AF_UNSPEC;
930 1.8 mycroft sa.sa_len = sizeof(sa);
931 1.8 mycroft eh2 = (struct ether_header *)sa.sa_data;
932 1.8 mycroft for (i = 0; i < 6; i++) {
933 1.22 is eh2->ether_shost[i] = c =
934 1.22 is eh->ether_dhost[i];
935 1.8 mycroft eh2->ether_dhost[i] =
936 1.22 is eh->ether_dhost[i] =
937 1.22 is eh->ether_shost[i];
938 1.8 mycroft eh->ether_shost[i] = c;
939 1.8 mycroft }
940 1.8 mycroft ifp->if_output(ifp, m, &sa, NULL);
941 1.8 mycroft return;
942 1.8 mycroft }
943 1.8 mycroft default:
944 1.8 mycroft m_freem(m);
945 1.8 mycroft return;
946 1.8 mycroft }
947 1.8 mycroft break;
948 1.8 mycroft #endif /* ISO */
949 1.8 mycroft #ifdef LLC
950 1.8 mycroft case LLC_X25_LSAP:
951 1.8 mycroft {
952 1.11 mycroft if (m->m_pkthdr.len > etype)
953 1.11 mycroft m_adj(m, etype - m->m_pkthdr.len);
954 1.8 mycroft M_PREPEND(m, sizeof(struct sdl_hdr) , M_DONTWAIT);
955 1.1 cgd if (m == 0)
956 1.1 cgd return;
957 1.8 mycroft if ( !sdl_sethdrif(ifp, eh->ether_shost, LLC_X25_LSAP,
958 1.8 mycroft eh->ether_dhost, LLC_X25_LSAP, 6,
959 1.8 mycroft mtod(m, struct sdl_hdr *)))
960 1.8 mycroft panic("ETHER cons addr failure");
961 1.11 mycroft mtod(m, struct sdl_hdr *)->sdlhdr_len = etype;
962 1.8 mycroft #ifdef LLC_DEBUG
963 1.21 christos printf("llc packet\n");
964 1.8 mycroft #endif /* LLC_DEBUG */
965 1.8 mycroft schednetisr(NETISR_CCITT);
966 1.8 mycroft inq = &llcintrq;
967 1.1 cgd break;
968 1.1 cgd }
969 1.8 mycroft #endif /* LLC */
970 1.1 cgd dropanyway:
971 1.1 cgd default:
972 1.8 mycroft m_freem(m);
973 1.8 mycroft return;
974 1.8 mycroft }
975 1.23 christos #else /* ISO || LLC || NETATALK*/
976 1.1 cgd m_freem(m);
977 1.1 cgd return;
978 1.23 christos #endif /* ISO || LLC || NETATALK*/
979 1.1 cgd }
980 1.1 cgd
981 1.79 thorpej s = splnet();
982 1.1 cgd if (IF_QFULL(inq)) {
983 1.1 cgd IF_DROP(inq);
984 1.1 cgd m_freem(m);
985 1.1 cgd } else
986 1.1 cgd IF_ENQUEUE(inq, m);
987 1.1 cgd splx(s);
988 1.1 cgd }
989 1.1 cgd
990 1.1 cgd /*
991 1.1 cgd * Convert Ethernet address to printable (loggable) representation.
992 1.1 cgd */
993 1.1 cgd static char digits[] = "0123456789abcdef";
994 1.1 cgd char *
995 1.58 matt ether_sprintf(const u_char *ap)
996 1.1 cgd {
997 1.1 cgd static char etherbuf[18];
998 1.29 mrg char *cp = etherbuf;
999 1.29 mrg int i;
1000 1.1 cgd
1001 1.1 cgd for (i = 0; i < 6; i++) {
1002 1.1 cgd *cp++ = digits[*ap >> 4];
1003 1.1 cgd *cp++ = digits[*ap++ & 0xf];
1004 1.1 cgd *cp++ = ':';
1005 1.1 cgd }
1006 1.1 cgd *--cp = 0;
1007 1.1 cgd return (etherbuf);
1008 1.1 cgd }
1009 1.8 mycroft
1010 1.8 mycroft /*
1011 1.8 mycroft * Perform common duties while attaching to interface list
1012 1.8 mycroft */
1013 1.8 mycroft void
1014 1.58 matt ether_ifattach(struct ifnet *ifp, const u_int8_t *lla)
1015 1.8 mycroft {
1016 1.8 mycroft
1017 1.8 mycroft ifp->if_type = IFT_ETHER;
1018 1.75 thorpej ifp->if_addrlen = ETHER_ADDR_LEN;
1019 1.8 mycroft ifp->if_hdrlen = 14;
1020 1.73 thorpej ifp->if_dlt = DLT_EN10MB;
1021 1.8 mycroft ifp->if_mtu = ETHERMTU;
1022 1.12 mycroft ifp->if_output = ether_output;
1023 1.42 thorpej ifp->if_input = ether_input;
1024 1.54 thorpej if (ifp->if_baudrate == 0)
1025 1.54 thorpej ifp->if_baudrate = IF_Mbps(10); /* just a default */
1026 1.75 thorpej
1027 1.75 thorpej if_alloc_sadl(ifp);
1028 1.75 thorpej memcpy(LLADDR(ifp->if_sadl), lla, ifp->if_addrlen);
1029 1.75 thorpej
1030 1.22 is LIST_INIT(&((struct ethercom *)ifp)->ec_multiaddrs);
1031 1.26 is ifp->if_broadcastaddr = etherbroadcastaddr;
1032 1.69 thorpej #if NBPFILTER > 0
1033 1.71 thorpej bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header));
1034 1.69 thorpej #endif
1035 1.52 thorpej }
1036 1.52 thorpej
1037 1.52 thorpej void
1038 1.58 matt ether_ifdetach(struct ifnet *ifp)
1039 1.52 thorpej {
1040 1.63 thorpej struct ethercom *ec = (void *) ifp;
1041 1.63 thorpej struct ether_multi *enm;
1042 1.63 thorpej int s;
1043 1.69 thorpej
1044 1.69 thorpej #if NBPFILTER > 0
1045 1.69 thorpej bpfdetach(ifp);
1046 1.69 thorpej #endif
1047 1.64 thorpej
1048 1.64 thorpej #if NVLAN > 0
1049 1.64 thorpej if (ec->ec_nvlans)
1050 1.64 thorpej vlan_ifdetach(ifp);
1051 1.64 thorpej #endif
1052 1.63 thorpej
1053 1.79 thorpej s = splnet();
1054 1.63 thorpej while ((enm = LIST_FIRST(&ec->ec_multiaddrs)) != NULL) {
1055 1.63 thorpej LIST_REMOVE(enm, enm_list);
1056 1.63 thorpej free(enm, M_IFADDR);
1057 1.63 thorpej ec->ec_multicnt--;
1058 1.63 thorpej }
1059 1.63 thorpej splx(s);
1060 1.52 thorpej
1061 1.75 thorpej if_free_sadl(ifp);
1062 1.53 thorpej }
1063 1.53 thorpej
1064 1.56 thorpej #if 0
1065 1.56 thorpej /*
1066 1.56 thorpej * This is for reference. We have a table-driven version
1067 1.56 thorpej * of the little-endian crc32 generator, which is faster
1068 1.56 thorpej * than the double-loop.
1069 1.56 thorpej */
1070 1.53 thorpej u_int32_t
1071 1.58 matt ether_crc32_le(const u_int8_t *buf, size_t len)
1072 1.53 thorpej {
1073 1.53 thorpej u_int32_t c, crc, carry;
1074 1.53 thorpej size_t i, j;
1075 1.53 thorpej
1076 1.53 thorpej crc = 0xffffffffU; /* initial value */
1077 1.53 thorpej
1078 1.53 thorpej for (i = 0; i < len; i++) {
1079 1.53 thorpej c = buf[i];
1080 1.53 thorpej for (j = 0; j < 8; j++) {
1081 1.53 thorpej carry = ((crc & 0x01) ? 1 : 0) ^ (c & 0x01);
1082 1.53 thorpej crc >>= 1;
1083 1.53 thorpej c >>= 1;
1084 1.53 thorpej if (carry)
1085 1.56 thorpej crc = (crc ^ ETHER_CRC_POLY_LE);
1086 1.53 thorpej }
1087 1.53 thorpej }
1088 1.53 thorpej
1089 1.53 thorpej return (crc);
1090 1.53 thorpej }
1091 1.56 thorpej #else
1092 1.56 thorpej u_int32_t
1093 1.58 matt ether_crc32_le(const u_int8_t *buf, size_t len)
1094 1.56 thorpej {
1095 1.56 thorpej static const u_int32_t crctab[] = {
1096 1.56 thorpej 0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
1097 1.56 thorpej 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
1098 1.56 thorpej 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c,
1099 1.56 thorpej 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c
1100 1.56 thorpej };
1101 1.56 thorpej u_int32_t crc;
1102 1.56 thorpej int i;
1103 1.56 thorpej
1104 1.56 thorpej crc = 0xffffffffU; /* initial value */
1105 1.56 thorpej
1106 1.56 thorpej for (i = 0; i < len; i++) {
1107 1.56 thorpej crc ^= buf[i];
1108 1.56 thorpej crc = (crc >> 4) ^ crctab[crc & 0xf];
1109 1.56 thorpej crc = (crc >> 4) ^ crctab[crc & 0xf];
1110 1.56 thorpej }
1111 1.56 thorpej
1112 1.56 thorpej return (crc);
1113 1.56 thorpej }
1114 1.56 thorpej #endif
1115 1.53 thorpej
1116 1.53 thorpej u_int32_t
1117 1.58 matt ether_crc32_be(const u_int8_t *buf, size_t len)
1118 1.53 thorpej {
1119 1.53 thorpej u_int32_t c, crc, carry;
1120 1.53 thorpej size_t i, j;
1121 1.53 thorpej
1122 1.53 thorpej crc = 0xffffffffU; /* initial value */
1123 1.53 thorpej
1124 1.53 thorpej for (i = 0; i < len; i++) {
1125 1.53 thorpej c = buf[i];
1126 1.53 thorpej for (j = 0; j < 8; j++) {
1127 1.53 thorpej carry = ((crc & 0x80000000U) ? 1 : 0) ^ (c & 0x01);
1128 1.53 thorpej crc <<= 1;
1129 1.53 thorpej c >>= 1;
1130 1.53 thorpej if (carry)
1131 1.53 thorpej crc = (crc ^ ETHER_CRC_POLY_BE) | carry;
1132 1.53 thorpej }
1133 1.53 thorpej }
1134 1.53 thorpej
1135 1.53 thorpej return (crc);
1136 1.8 mycroft }
1137 1.8 mycroft
1138 1.48 is #ifdef INET
1139 1.3 hpeyerl u_char ether_ipmulticast_min[6] = { 0x01, 0x00, 0x5e, 0x00, 0x00, 0x00 };
1140 1.3 hpeyerl u_char ether_ipmulticast_max[6] = { 0x01, 0x00, 0x5e, 0x7f, 0xff, 0xff };
1141 1.48 is #endif
1142 1.44 itojun #ifdef INET6
1143 1.44 itojun u_char ether_ip6multicast_min[6] = { 0x33, 0x33, 0x00, 0x00, 0x00, 0x00 };
1144 1.44 itojun u_char ether_ip6multicast_max[6] = { 0x33, 0x33, 0xff, 0xff, 0xff, 0xff };
1145 1.44 itojun #endif
1146 1.60 enami
1147 1.3 hpeyerl /*
1148 1.60 enami * Convert a sockaddr into an Ethernet address or range of Ethernet
1149 1.60 enami * addresses.
1150 1.3 hpeyerl */
1151 1.3 hpeyerl int
1152 1.60 enami ether_multiaddr(struct sockaddr *sa, u_int8_t addrlo[ETHER_ADDR_LEN],
1153 1.60 enami u_int8_t addrhi[ETHER_ADDR_LEN])
1154 1.3 hpeyerl {
1155 1.24 christos #ifdef INET
1156 1.3 hpeyerl struct sockaddr_in *sin;
1157 1.24 christos #endif /* INET */
1158 1.44 itojun #ifdef INET6
1159 1.44 itojun struct sockaddr_in6 *sin6;
1160 1.44 itojun #endif /* INET6 */
1161 1.3 hpeyerl
1162 1.60 enami switch (sa->sa_family) {
1163 1.3 hpeyerl
1164 1.3 hpeyerl case AF_UNSPEC:
1165 1.60 enami bcopy(sa->sa_data, addrlo, ETHER_ADDR_LEN);
1166 1.60 enami bcopy(addrlo, addrhi, ETHER_ADDR_LEN);
1167 1.3 hpeyerl break;
1168 1.3 hpeyerl
1169 1.3 hpeyerl #ifdef INET
1170 1.3 hpeyerl case AF_INET:
1171 1.60 enami sin = satosin(sa);
1172 1.3 hpeyerl if (sin->sin_addr.s_addr == INADDR_ANY) {
1173 1.3 hpeyerl /*
1174 1.60 enami * An IP address of INADDR_ANY means listen to
1175 1.60 enami * or stop listening to all of the Ethernet
1176 1.60 enami * multicast addresses used for IP.
1177 1.3 hpeyerl * (This is for the sake of IP multicast routers.)
1178 1.3 hpeyerl */
1179 1.60 enami bcopy(ether_ipmulticast_min, addrlo, ETHER_ADDR_LEN);
1180 1.60 enami bcopy(ether_ipmulticast_max, addrhi, ETHER_ADDR_LEN);
1181 1.3 hpeyerl }
1182 1.3 hpeyerl else {
1183 1.3 hpeyerl ETHER_MAP_IP_MULTICAST(&sin->sin_addr, addrlo);
1184 1.60 enami bcopy(addrlo, addrhi, ETHER_ADDR_LEN);
1185 1.3 hpeyerl }
1186 1.3 hpeyerl break;
1187 1.3 hpeyerl #endif
1188 1.44 itojun #ifdef INET6
1189 1.44 itojun case AF_INET6:
1190 1.60 enami sin6 = satosin6(sa);
1191 1.47 itojun if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1192 1.44 itojun /*
1193 1.60 enami * An IP6 address of 0 means listen to or stop
1194 1.60 enami * listening to all of the Ethernet multicast
1195 1.60 enami * address used for IP6.
1196 1.44 itojun * (This is used for multicast routers.)
1197 1.44 itojun */
1198 1.44 itojun bcopy(ether_ip6multicast_min, addrlo, ETHER_ADDR_LEN);
1199 1.44 itojun bcopy(ether_ip6multicast_max, addrhi, ETHER_ADDR_LEN);
1200 1.44 itojun } else {
1201 1.44 itojun ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, addrlo);
1202 1.44 itojun bcopy(addrlo, addrhi, ETHER_ADDR_LEN);
1203 1.44 itojun }
1204 1.44 itojun break;
1205 1.44 itojun #endif
1206 1.3 hpeyerl
1207 1.3 hpeyerl default:
1208 1.60 enami return (EAFNOSUPPORT);
1209 1.60 enami }
1210 1.60 enami return (0);
1211 1.60 enami }
1212 1.60 enami
1213 1.60 enami /*
1214 1.60 enami * Add an Ethernet multicast address or range of addresses to the list for a
1215 1.60 enami * given interface.
1216 1.60 enami */
1217 1.60 enami int
1218 1.60 enami ether_addmulti(struct ifreq *ifr, struct ethercom *ec)
1219 1.60 enami {
1220 1.60 enami struct ether_multi *enm;
1221 1.60 enami u_char addrlo[ETHER_ADDR_LEN];
1222 1.60 enami u_char addrhi[ETHER_ADDR_LEN];
1223 1.79 thorpej int s = splnet(), error;
1224 1.60 enami
1225 1.60 enami error = ether_multiaddr(&ifr->ifr_addr, addrlo, addrhi);
1226 1.60 enami if (error != 0) {
1227 1.3 hpeyerl splx(s);
1228 1.60 enami return (error);
1229 1.3 hpeyerl }
1230 1.3 hpeyerl
1231 1.3 hpeyerl /*
1232 1.3 hpeyerl * Verify that we have valid Ethernet multicast addresses.
1233 1.3 hpeyerl */
1234 1.3 hpeyerl if ((addrlo[0] & 0x01) != 1 || (addrhi[0] & 0x01) != 1) {
1235 1.3 hpeyerl splx(s);
1236 1.3 hpeyerl return (EINVAL);
1237 1.3 hpeyerl }
1238 1.3 hpeyerl /*
1239 1.3 hpeyerl * See if the address range is already in the list.
1240 1.3 hpeyerl */
1241 1.22 is ETHER_LOOKUP_MULTI(addrlo, addrhi, ec, enm);
1242 1.3 hpeyerl if (enm != NULL) {
1243 1.3 hpeyerl /*
1244 1.3 hpeyerl * Found it; just increment the reference count.
1245 1.3 hpeyerl */
1246 1.3 hpeyerl ++enm->enm_refcount;
1247 1.3 hpeyerl splx(s);
1248 1.3 hpeyerl return (0);
1249 1.3 hpeyerl }
1250 1.3 hpeyerl /*
1251 1.3 hpeyerl * New address or range; malloc a new multicast record
1252 1.3 hpeyerl * and link it into the interface's multicast list.
1253 1.3 hpeyerl */
1254 1.3 hpeyerl enm = (struct ether_multi *)malloc(sizeof(*enm), M_IFMADDR, M_NOWAIT);
1255 1.3 hpeyerl if (enm == NULL) {
1256 1.3 hpeyerl splx(s);
1257 1.3 hpeyerl return (ENOBUFS);
1258 1.3 hpeyerl }
1259 1.3 hpeyerl bcopy(addrlo, enm->enm_addrlo, 6);
1260 1.3 hpeyerl bcopy(addrhi, enm->enm_addrhi, 6);
1261 1.22 is enm->enm_ec = ec;
1262 1.3 hpeyerl enm->enm_refcount = 1;
1263 1.22 is LIST_INSERT_HEAD(&ec->ec_multiaddrs, enm, enm_list);
1264 1.22 is ec->ec_multicnt++;
1265 1.3 hpeyerl splx(s);
1266 1.3 hpeyerl /*
1267 1.3 hpeyerl * Return ENETRESET to inform the driver that the list has changed
1268 1.3 hpeyerl * and its reception filter should be adjusted accordingly.
1269 1.3 hpeyerl */
1270 1.3 hpeyerl return (ENETRESET);
1271 1.3 hpeyerl }
1272 1.3 hpeyerl
1273 1.3 hpeyerl /*
1274 1.3 hpeyerl * Delete a multicast address record.
1275 1.3 hpeyerl */
1276 1.3 hpeyerl int
1277 1.58 matt ether_delmulti(struct ifreq *ifr, struct ethercom *ec)
1278 1.3 hpeyerl {
1279 1.29 mrg struct ether_multi *enm;
1280 1.60 enami u_char addrlo[ETHER_ADDR_LEN];
1281 1.60 enami u_char addrhi[ETHER_ADDR_LEN];
1282 1.79 thorpej int s = splnet(), error;
1283 1.3 hpeyerl
1284 1.60 enami error = ether_multiaddr(&ifr->ifr_addr, addrlo, addrhi);
1285 1.60 enami if (error != 0) {
1286 1.3 hpeyerl splx(s);
1287 1.60 enami return (error);
1288 1.3 hpeyerl }
1289 1.3 hpeyerl
1290 1.3 hpeyerl /*
1291 1.66 thorpej * Look ur the address in our list.
1292 1.3 hpeyerl */
1293 1.22 is ETHER_LOOKUP_MULTI(addrlo, addrhi, ec, enm);
1294 1.3 hpeyerl if (enm == NULL) {
1295 1.3 hpeyerl splx(s);
1296 1.3 hpeyerl return (ENXIO);
1297 1.3 hpeyerl }
1298 1.3 hpeyerl if (--enm->enm_refcount != 0) {
1299 1.3 hpeyerl /*
1300 1.3 hpeyerl * Still some claims to this record.
1301 1.3 hpeyerl */
1302 1.3 hpeyerl splx(s);
1303 1.3 hpeyerl return (0);
1304 1.3 hpeyerl }
1305 1.3 hpeyerl /*
1306 1.3 hpeyerl * No remaining claims to this record; unlink and free it.
1307 1.3 hpeyerl */
1308 1.13 mycroft LIST_REMOVE(enm, enm_list);
1309 1.3 hpeyerl free(enm, M_IFMADDR);
1310 1.22 is ec->ec_multicnt--;
1311 1.3 hpeyerl splx(s);
1312 1.3 hpeyerl /*
1313 1.3 hpeyerl * Return ENETRESET to inform the driver that the list has changed
1314 1.3 hpeyerl * and its reception filter should be adjusted accordingly.
1315 1.3 hpeyerl */
1316 1.3 hpeyerl return (ENETRESET);
1317 1.66 thorpej }
1318 1.66 thorpej
1319 1.66 thorpej /*
1320 1.66 thorpej * Common ioctls for Ethernet interfaces. Note, we must be
1321 1.66 thorpej * called at splnet().
1322 1.66 thorpej */
1323 1.66 thorpej int
1324 1.66 thorpej ether_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
1325 1.66 thorpej {
1326 1.66 thorpej struct ethercom *ec = (void *) ifp;
1327 1.66 thorpej struct ifreq *ifr = (struct ifreq *)data;
1328 1.66 thorpej struct ifaddr *ifa = (struct ifaddr *)data;
1329 1.66 thorpej int error = 0;
1330 1.66 thorpej
1331 1.66 thorpej switch (cmd) {
1332 1.66 thorpej case SIOCSIFADDR:
1333 1.66 thorpej ifp->if_flags |= IFF_UP;
1334 1.66 thorpej switch (ifa->ifa_addr->sa_family) {
1335 1.75 thorpej case AF_LINK:
1336 1.75 thorpej {
1337 1.75 thorpej struct sockaddr_dl *sdl =
1338 1.75 thorpej (struct sockaddr_dl *) ifa->ifa_addr;
1339 1.75 thorpej
1340 1.75 thorpej if (sdl->sdl_type != IFT_ETHER ||
1341 1.75 thorpej sdl->sdl_alen != ifp->if_addrlen) {
1342 1.75 thorpej error = EINVAL;
1343 1.75 thorpej break;
1344 1.75 thorpej }
1345 1.75 thorpej
1346 1.75 thorpej memcpy(LLADDR(ifp->if_sadl), LLADDR(sdl),
1347 1.75 thorpej ifp->if_addrlen);
1348 1.75 thorpej
1349 1.75 thorpej /* Set new address. */
1350 1.75 thorpej error = (*ifp->if_init)(ifp);
1351 1.75 thorpej break;
1352 1.75 thorpej }
1353 1.66 thorpej #ifdef INET
1354 1.66 thorpej case AF_INET:
1355 1.66 thorpej if ((error = (*ifp->if_init)(ifp)) != 0)
1356 1.66 thorpej break;
1357 1.66 thorpej arp_ifinit(ifp, ifa);
1358 1.66 thorpej break;
1359 1.66 thorpej #endif /* INET */
1360 1.66 thorpej #ifdef NS
1361 1.66 thorpej case AF_NS:
1362 1.66 thorpej {
1363 1.66 thorpej struct ns_addr *ina = &IA_SNS(ifa)->sns_addr;
1364 1.66 thorpej
1365 1.66 thorpej if (ns_nullhost(*ina))
1366 1.66 thorpej ina->x_host = *(union ns_host *)
1367 1.66 thorpej LLADDR(ifp->if_sadl);
1368 1.66 thorpej else
1369 1.66 thorpej memcpy(LLADDR(ifp->if_sadl),
1370 1.66 thorpej ina->x_host.c_host, ifp->if_addrlen);
1371 1.66 thorpej /* Set new address. */
1372 1.66 thorpej error = (*ifp->if_init)(ifp);
1373 1.66 thorpej break;
1374 1.66 thorpej }
1375 1.66 thorpej #endif /* NS */
1376 1.66 thorpej default:
1377 1.66 thorpej error = (*ifp->if_init)(ifp);
1378 1.66 thorpej break;
1379 1.66 thorpej }
1380 1.66 thorpej break;
1381 1.66 thorpej
1382 1.66 thorpej case SIOCGIFADDR:
1383 1.66 thorpej memcpy(((struct sockaddr *)&ifr->ifr_data)->sa_data,
1384 1.66 thorpej LLADDR(ifp->if_sadl), ETHER_ADDR_LEN);
1385 1.66 thorpej break;
1386 1.66 thorpej
1387 1.66 thorpej case SIOCSIFMTU:
1388 1.82 thorpej {
1389 1.82 thorpej int maxmtu;
1390 1.82 thorpej
1391 1.82 thorpej if (ec->ec_capabilities & ETHERCAP_JUMBO_MTU)
1392 1.82 thorpej maxmtu = ETHERMTU_JUMBO;
1393 1.82 thorpej else
1394 1.82 thorpej maxmtu = ETHERMTU;
1395 1.82 thorpej
1396 1.82 thorpej if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > maxmtu)
1397 1.66 thorpej error = EINVAL;
1398 1.66 thorpej else
1399 1.66 thorpej ifp->if_mtu = ifr->ifr_mtu;
1400 1.66 thorpej break;
1401 1.82 thorpej }
1402 1.66 thorpej
1403 1.66 thorpej case SIOCSIFFLAGS:
1404 1.66 thorpej if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) == IFF_RUNNING) {
1405 1.66 thorpej /*
1406 1.66 thorpej * If interface is marked down and it is running,
1407 1.66 thorpej * then stop and disable it.
1408 1.66 thorpej */
1409 1.66 thorpej (*ifp->if_stop)(ifp, 1);
1410 1.66 thorpej } else if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) == IFF_UP) {
1411 1.66 thorpej /*
1412 1.66 thorpej * If interface is marked up and it is stopped, then
1413 1.66 thorpej * start it.
1414 1.66 thorpej */
1415 1.66 thorpej error = (*ifp->if_init)(ifp);
1416 1.66 thorpej } else if ((ifp->if_flags & IFF_UP) != 0) {
1417 1.66 thorpej /*
1418 1.66 thorpej * Reset the interface to pick up changes in any other
1419 1.66 thorpej * flags that affect the hardware state.
1420 1.66 thorpej */
1421 1.66 thorpej error = (*ifp->if_init)(ifp);
1422 1.66 thorpej }
1423 1.66 thorpej break;
1424 1.66 thorpej
1425 1.66 thorpej case SIOCADDMULTI:
1426 1.74 augustss error = ether_addmulti(ifr, ec);
1427 1.74 augustss break;
1428 1.74 augustss
1429 1.66 thorpej case SIOCDELMULTI:
1430 1.74 augustss error = ether_delmulti(ifr, ec);
1431 1.66 thorpej break;
1432 1.66 thorpej
1433 1.66 thorpej default:
1434 1.66 thorpej error = ENOTTY;
1435 1.66 thorpej }
1436 1.66 thorpej
1437 1.66 thorpej return (error);
1438 1.3 hpeyerl }
1439