2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1982, 1989, 1993
27 * The Regents of the University of California. All rights reserved.
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
32 * 1. Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in the
36 * documentation and/or other materials provided with the distribution.
37 * 3. All advertising materials mentioning features or use of this software
38 * must display the following acknowledgement:
39 * This product includes software developed by the University of
40 * California, Berkeley and its contributors.
41 * 4. Neither the name of the University nor the names of its contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
45 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 #include <sys/param.h>
62 #include <sys/systm.h>
63 #include <sys/kernel.h>
64 #include <sys/malloc.h>
66 #include <sys/socket.h>
67 #include <sys/sockio.h>
68 #include <sys/sysctl.h>
71 #include <net/netisr.h>
72 #include <net/route.h>
73 #include <net/if_llc.h>
74 #include <net/if_dl.h>
75 #include <net/if_types.h>
78 #include <netinet/in.h>
79 #include <netinet/in_var.h>
80 #include <netinet/if_ether.h>
81 #include <netinet/in_systm.h>
82 #include <netinet/ip.h>
85 #include <netinet6/nd6.h>
86 #include <netinet6/in6_ifattach.h>
91 #include <sys/socketvar.h>
97 extern struct ifqueue pkintrq
;
102 #include <net/bridge.h>
105 /* #include "vlan.h" */
107 #include <net/if_vlan_var.h>
108 #endif /* NVLAN > 0 */
110 static u_long lo_dlt
= 0;
111 static ivedonethis
= 0;
112 static u_char etherbroadcastaddr
[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
114 #define IFP2AC(IFP) ((struct arpcom *)IFP)
120 * Process a received Ethernet packet;
121 * the packet is in the mbuf chain m without
122 * the ether header, which is provided separately.
125 inet6_ether_input(m
, frame_header
, ifp
, dl_tag
, sync_ok
)
133 register struct ether_header
*eh
= (struct ether_header
*) frame_header
;
134 register struct ifqueue
*inq
=0;
137 u_int16_t ptype
= -1;
138 unsigned char buf
[18];
142 if ((ifp
->if_flags
& IFF_UP
) == 0) {
147 ifp
->if_lastchange
= time
;
149 if (eh
->ether_dhost
[0] & 1) {
150 if (bcmp((caddr_t
)etherbroadcastaddr
, (caddr_t
)eh
->ether_dhost
,
151 sizeof(etherbroadcastaddr
)) == 0)
152 m
->m_flags
|= M_BCAST
;
154 m
->m_flags
|= M_MCAST
;
156 if (m
->m_flags
& (M_BCAST
|M_MCAST
))
159 ether_type
= ntohs(eh
->ether_type
);
162 switch (ether_type
) {
165 schednetisr(NETISR_IPV6
);
195 inet6_ether_pre_output(ifp
, m0
, dst_netaddr
, route
, type
, edst
, dl_tag
)
198 struct sockaddr
*dst_netaddr
;
204 struct rtentry
*rt0
= (struct rtentry
*) route
;
206 register struct mbuf
*m
= *m0
;
207 register struct rtentry
*rt
;
208 register struct ether_header
*eh
;
209 int hlen
; /* link layer header lenght */
210 struct arpcom
*ac
= IFP2AC(ifp
);
214 if ((ifp
->if_flags
& (IFF_UP
|IFF_RUNNING
)) != (IFF_UP
|IFF_RUNNING
))
219 if ((rt
->rt_flags
& RTF_UP
) == 0) {
220 rt0
= rt
= rtalloc1(dst_netaddr
, 1, 0UL);
227 if (rt
->rt_flags
& RTF_GATEWAY
) {
228 if (rt
->rt_gwroute
== 0)
230 if (((rt
= rt
->rt_gwroute
)->rt_flags
& RTF_UP
) == 0) {
231 rtfree(rt
); rt
= rt0
;
232 lookup
: rt
->rt_gwroute
= rtalloc1(rt
->rt_gateway
, 1,
234 if ((rt
= rt
->rt_gwroute
) == 0)
235 return (EHOSTUNREACH
);
240 if (rt
->rt_flags
& RTF_REJECT
)
241 if (rt
->rt_rmx
.rmx_expire
== 0 ||
242 time_second
< rt
->rt_rmx
.rmx_expire
)
243 return (rt
== rt0
? EHOSTDOWN
: EHOSTUNREACH
);
246 hlen
= ETHER_HDR_LEN
;
249 * Tell ether_frameout it's ok to loop packet unless negated below.
251 m
->m_flags
|= M_LOOP
;
253 switch (dst_netaddr
->sa_family
) {
257 if (!nd6_storelladdr(&ac
->ac_if
, rt
, m
, dst_netaddr
, (u_char
*)edst
)) {
258 /* this must be impossible, so we bark */
259 printf("nd6_storelladdr failed\n");
260 return(EADDRNOTAVAIL
); /* dlil_output will free the mbuf */
262 *(u_short
*)type
= htons(ETHERTYPE_IPV6
);
266 printf("%s%d: can't handle af%d\n", ifp
->if_name
, ifp
->if_unit
,
267 dst_netaddr
->sa_family
);
269 /* dlil_output will free the mbuf */
278 ether_inet6_prmod_ioctl(dl_tag
, ifp
, command
, data
)
284 struct ifaddr
*ifa
= (struct ifaddr
*) data
;
285 struct ifreq
*ifr
= (struct ifreq
*) data
;
286 struct rslvmulti_req
*rsreq
= (struct rslvmulti_req
*) data
;
288 boolean_t funnel_state
;
289 struct arpcom
*ac
= (struct arpcom
*) ifp
;
290 struct sockaddr_dl
*sdl
;
291 struct sockaddr_in
*sin
;
292 struct sockaddr_in6
*sin6
;
298 case SIOCRSLVMULTI
: {
299 switch(rsreq
->sa
->sa_family
) {
302 sin6
= (struct sockaddr_in6
*)rsreq
->sa
;
303 if (IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
)) {
305 * An IP6 address of 0 means listen to all
306 * of the Ethernet multicast address used for IP6.
307 * (This is used for multicast routers.)
309 ifp
->if_flags
|= IFF_ALLMULTI
;
313 MALLOC(sdl
, struct sockaddr_dl
*, sizeof *sdl
, M_IFMADDR
,
315 sdl
->sdl_len
= sizeof *sdl
;
316 sdl
->sdl_family
= AF_LINK
;
317 sdl
->sdl_index
= ifp
->if_index
;
318 sdl
->sdl_type
= IFT_ETHER
;
320 sdl
->sdl_alen
= ETHER_ADDR_LEN
;
322 e_addr
= LLADDR(sdl
);
323 ETHER_MAP_IPV6_MULTICAST(&sin6
->sin6_addr
, e_addr
);
325 printf("ether_resolvemulti AF_INET6 Adding %x:%x:%x:%x:%x:%x\n",
326 e_addr
[0], e_addr
[1], e_addr
[2], e_addr
[3], e_addr
[4], e_addr
[5]);
328 *rsreq
->llsa
= (struct sockaddr
*)sdl
;
333 * Well, the text isn't quite right, but it's the name
341 if ((ifp
->if_flags
& IFF_RUNNING
) == 0) {
342 ifp
->if_flags
|= IFF_UP
;
343 dlil_ioctl(0, ifp
, SIOCSIFFLAGS
, (caddr_t
) 0);
352 sa
= (struct sockaddr
*) & ifr
->ifr_data
;
353 bcopy(IFP2AC(ifp
)->ac_enaddr
,
354 (caddr_t
) sa
->sa_data
, ETHER_ADDR_LEN
);
360 * IOKit IONetworkFamily will set the right MTU according to the driver
376 int ether_attach_inet6(struct ifnet
*ifp
, u_long
*dl_tag
)
378 struct dlil_proto_reg_str reg
;
379 struct dlil_demux_desc desc
;
380 u_short en_6native
=ETHERTYPE_IPV6
;
385 stat
= dlil_find_dltag(ifp
->if_family
, ifp
->if_unit
, PF_INET6
, dl_tag
);
389 TAILQ_INIT(®
.demux_desc_head
);
390 desc
.type
= DLIL_DESC_RAW
;
391 desc
.variants
.bitmask
.proto_id_length
= 0;
392 desc
.variants
.bitmask
.proto_id
= 0;
393 desc
.variants
.bitmask
.proto_id_mask
= 0;
394 desc
.native_type
= (char *) &en_6native
;
395 TAILQ_INSERT_TAIL(®
.demux_desc_head
, &desc
, next
);
396 reg
.interface_family
= ifp
->if_family
;
397 reg
.unit_number
= ifp
->if_unit
;
398 reg
.input
= inet6_ether_input
;
399 reg
.pre_output
= inet6_ether_pre_output
;
402 reg
.ioctl
= ether_inet6_prmod_ioctl
;
403 reg
.default_proto
= 0;
404 reg
.protocol_family
= PF_INET6
;
406 stat
= dlil_attach_protocol(®
, dl_tag
);
408 printf("WARNING: ether_attach_inet6 can't attach ip to interface\n");
414 int ether_detach_inet6(struct ifnet
*ifp
, u_long dl_tag
)
418 stat
= dlil_find_dltag(ifp
->if_family
, ifp
->if_unit
, PF_INET6
, &dl_tag
);
420 stat
= dlil_detach_protocol(dl_tag
);
422 printf("WARNING: ether_detach_inet6 can't detach ip6 from interface\n");