in_proto.c revision 1.58 1 1.58 itojun /* $NetBSD: in_proto.c,v 1.58 2002/11/02 19:03:44 itojun Exp $ */
2 1.32 itojun
3 1.32 itojun /*
4 1.32 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 1.32 itojun * All rights reserved.
6 1.56 itojun *
7 1.32 itojun * Redistribution and use in source and binary forms, with or without
8 1.32 itojun * modification, are permitted provided that the following conditions
9 1.32 itojun * are met:
10 1.32 itojun * 1. Redistributions of source code must retain the above copyright
11 1.32 itojun * notice, this list of conditions and the following disclaimer.
12 1.32 itojun * 2. Redistributions in binary form must reproduce the above copyright
13 1.32 itojun * notice, this list of conditions and the following disclaimer in the
14 1.32 itojun * documentation and/or other materials provided with the distribution.
15 1.32 itojun * 3. Neither the name of the project nor the names of its contributors
16 1.32 itojun * may be used to endorse or promote products derived from this software
17 1.32 itojun * without specific prior written permission.
18 1.56 itojun *
19 1.32 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 1.32 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.32 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.32 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 1.32 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.32 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.32 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.32 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.32 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.32 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.32 itojun * SUCH DAMAGE.
30 1.32 itojun */
31 1.9 cgd
32 1.1 cgd /*
33 1.8 mycroft * Copyright (c) 1982, 1986, 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.18 thorpej * @(#)in_proto.c 8.2 (Berkeley) 2/9/95
65 1.1 cgd */
66 1.51 lukem
67 1.51 lukem #include <sys/cdefs.h>
68 1.58 itojun __KERNEL_RCSID(0, "$NetBSD: in_proto.c,v 1.58 2002/11/02 19:03:44 itojun Exp $");
69 1.19 scottr
70 1.19 scottr #include "opt_mrouting.h"
71 1.22 jonathan #include "opt_eon.h" /* ISO CLNL over IP */
72 1.22 jonathan #include "opt_iso.h" /* ISO TP tunneled over IP */
73 1.23 jonathan #include "opt_ns.h" /* NSIP: XNS tunneled over IP */
74 1.32 itojun #include "opt_inet.h"
75 1.33 thorpej #include "opt_ipsec.h"
76 1.1 cgd
77 1.5 mycroft #include <sys/param.h>
78 1.5 mycroft #include <sys/socket.h>
79 1.5 mycroft #include <sys/protosw.h>
80 1.5 mycroft #include <sys/domain.h>
81 1.5 mycroft #include <sys/mbuf.h>
82 1.1 cgd
83 1.8 mycroft #include <net/if.h>
84 1.8 mycroft #include <net/radix.h>
85 1.8 mycroft #include <net/route.h>
86 1.8 mycroft
87 1.5 mycroft #include <netinet/in.h>
88 1.5 mycroft #include <netinet/in_systm.h>
89 1.8 mycroft #include <netinet/ip.h>
90 1.8 mycroft #include <netinet/ip_var.h>
91 1.8 mycroft #include <netinet/ip_icmp.h>
92 1.8 mycroft #include <netinet/in_pcb.h>
93 1.32 itojun
94 1.32 itojun #ifdef INET6
95 1.32 itojun #ifndef INET
96 1.32 itojun #include <netinet/in.h>
97 1.32 itojun #endif
98 1.32 itojun #include <netinet/ip6.h>
99 1.32 itojun #endif
100 1.32 itojun
101 1.8 mycroft #include <netinet/igmp_var.h>
102 1.8 mycroft #include <netinet/tcp.h>
103 1.8 mycroft #include <netinet/tcp_fsm.h>
104 1.8 mycroft #include <netinet/tcp_seq.h>
105 1.8 mycroft #include <netinet/tcp_timer.h>
106 1.8 mycroft #include <netinet/tcp_var.h>
107 1.8 mycroft #include <netinet/tcpip.h>
108 1.8 mycroft #include <netinet/tcp_debug.h>
109 1.8 mycroft #include <netinet/udp.h>
110 1.8 mycroft #include <netinet/udp_var.h>
111 1.39 itojun #include <netinet/ip_encap.h>
112 1.1 cgd /*
113 1.1 cgd * TCP/IP protocol family: IP, ICMP, UDP, TCP.
114 1.1 cgd */
115 1.1 cgd
116 1.32 itojun #ifdef IPSEC
117 1.58 itojun #include <netinet6/ipsec.h>
118 1.32 itojun #include <netinet6/ah.h>
119 1.32 itojun #ifdef IPSEC_ESP
120 1.32 itojun #include <netinet6/esp.h>
121 1.32 itojun #endif
122 1.32 itojun #include <netinet6/ipcomp.h>
123 1.32 itojun #endif /* IPSEC */
124 1.32 itojun
125 1.1 cgd #ifdef NSIP
126 1.13 christos #include <netns/ns_var.h>
127 1.13 christos #include <netns/idp_var.h>
128 1.11 mycroft #endif /* NSIP */
129 1.1 cgd
130 1.1 cgd #ifdef TPIP
131 1.13 christos #include <netiso/tp_param.h>
132 1.13 christos #include <netiso/tp_var.h>
133 1.11 mycroft #endif /* TPIP */
134 1.1 cgd
135 1.1 cgd #ifdef EON
136 1.13 christos #include <netiso/eonvar.h>
137 1.8 mycroft #endif /* EON */
138 1.1 cgd
139 1.25 hwr #include "gre.h"
140 1.28 thorpej #if NGRE > 0
141 1.28 thorpej #include <netinet/ip_gre.h>
142 1.25 hwr #endif
143 1.25 hwr
144 1.1 cgd extern struct domain inetdomain;
145 1.1 cgd
146 1.1 cgd struct protosw inetsw[] = {
147 1.1 cgd { 0, &inetdomain, 0, 0,
148 1.1 cgd 0, ip_output, 0, 0,
149 1.1 cgd 0,
150 1.8 mycroft ip_init, 0, ip_slowtimo, ip_drain, ip_sysctl
151 1.1 cgd },
152 1.1 cgd { SOCK_DGRAM, &inetdomain, IPPROTO_UDP, PR_ATOMIC|PR_ADDR,
153 1.1 cgd udp_input, 0, udp_ctlinput, ip_ctloutput,
154 1.1 cgd udp_usrreq,
155 1.8 mycroft udp_init, 0, 0, 0, udp_sysctl
156 1.1 cgd },
157 1.48 thorpej { SOCK_STREAM, &inetdomain, IPPROTO_TCP, PR_CONNREQUIRED|PR_WANTRCVD|PR_LISTEN|PR_ABRTACPTDIS,
158 1.1 cgd tcp_input, 0, tcp_ctlinput, tcp_ctloutput,
159 1.1 cgd tcp_usrreq,
160 1.49 thorpej tcp_init, 0, tcp_slowtimo, tcp_drain, tcp_sysctl
161 1.1 cgd },
162 1.1 cgd { SOCK_RAW, &inetdomain, IPPROTO_RAW, PR_ATOMIC|PR_ADDR,
163 1.53 itojun rip_input, rip_output, rip_ctlinput, rip_ctloutput,
164 1.1 cgd rip_usrreq,
165 1.1 cgd 0, 0, 0, 0,
166 1.1 cgd },
167 1.47 itojun { SOCK_RAW, &inetdomain, IPPROTO_ICMP, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
168 1.53 itojun icmp_input, rip_output, rip_ctlinput, rip_ctloutput,
169 1.1 cgd rip_usrreq,
170 1.50 kml icmp_init, 0, 0, 0, icmp_sysctl
171 1.8 mycroft },
172 1.32 itojun #ifdef IPSEC
173 1.32 itojun { SOCK_RAW, &inetdomain, IPPROTO_AH, PR_ATOMIC|PR_ADDR,
174 1.44 thorpej ah4_input, 0, ah4_ctlinput, 0,
175 1.56 itojun 0,
176 1.32 itojun 0, 0, 0, 0, ipsec_sysctl
177 1.32 itojun },
178 1.32 itojun #ifdef IPSEC_ESP
179 1.32 itojun { SOCK_RAW, &inetdomain, IPPROTO_ESP, PR_ATOMIC|PR_ADDR,
180 1.44 thorpej esp4_input, 0, esp4_ctlinput, 0,
181 1.56 itojun 0,
182 1.32 itojun 0, 0, 0, 0, ipsec_sysctl
183 1.32 itojun },
184 1.32 itojun #endif
185 1.32 itojun { SOCK_RAW, &inetdomain, IPPROTO_IPCOMP, PR_ATOMIC|PR_ADDR,
186 1.32 itojun ipcomp4_input, 0, 0, 0,
187 1.56 itojun 0,
188 1.32 itojun 0, 0, 0, 0, ipsec_sysctl
189 1.32 itojun },
190 1.32 itojun #endif /* IPSEC */
191 1.47 itojun { SOCK_RAW, &inetdomain, IPPROTO_IPV4, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
192 1.53 itojun encap4_input, rip_output, rip_ctlinput, rip_ctloutput,
193 1.34 itojun rip_usrreq, /*XXX*/
194 1.39 itojun encap_init, 0, 0, 0,
195 1.32 itojun },
196 1.32 itojun #ifdef INET6
197 1.47 itojun { SOCK_RAW, &inetdomain, IPPROTO_IPV6, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
198 1.53 itojun encap4_input, rip_output, rip_ctlinput, rip_ctloutput,
199 1.34 itojun rip_usrreq, /*XXX*/
200 1.57 itojun encap_init, 0, 0, 0,
201 1.32 itojun },
202 1.32 itojun #endif /* INET6 */
203 1.25 hwr #if NGRE > 0
204 1.47 itojun { SOCK_RAW, &inetdomain, IPPROTO_GRE, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
205 1.53 itojun gre_input, rip_output, rip_ctlinput, rip_ctloutput,
206 1.26 hwr rip_usrreq,
207 1.26 hwr 0, 0, 0, 0,
208 1.26 hwr },
209 1.47 itojun { SOCK_RAW, &inetdomain, IPPROTO_MOBILE, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
210 1.53 itojun gre_mobile_input, rip_output, rip_ctlinput, rip_ctloutput,
211 1.26 hwr rip_usrreq,
212 1.25 hwr 0, 0, 0, 0,
213 1.25 hwr },
214 1.28 thorpej #endif /* NGRE > 0 */
215 1.47 itojun { SOCK_RAW, &inetdomain, IPPROTO_IGMP, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
216 1.53 itojun igmp_input, rip_output, rip_ctlinput, rip_ctloutput,
217 1.8 mycroft rip_usrreq,
218 1.10 mycroft igmp_init, igmp_fasttimo, igmp_slowtimo, 0,
219 1.1 cgd },
220 1.1 cgd #ifdef TPIP
221 1.48 thorpej { SOCK_SEQPACKET,&inetdomain, IPPROTO_TP, PR_CONNREQUIRED|PR_WANTRCVD|PR_LISTEN|PR_LASTHDR|PR_ABRTACPTDIS,
222 1.8 mycroft tpip_input, 0, tpip_ctlinput, tp_ctloutput,
223 1.1 cgd tp_usrreq,
224 1.1 cgd tp_init, 0, tp_slowtimo, tp_drain,
225 1.1 cgd },
226 1.11 mycroft #endif /* TPIP */
227 1.45 itojun #ifdef ISO
228 1.1 cgd /* EON (ISO CLNL over IP) */
229 1.1 cgd #ifdef EON
230 1.47 itojun { SOCK_RAW, &inetdomain, IPPROTO_EON, PR_LASTHDR,
231 1.45 itojun eoninput, 0, eonctlinput, 0,
232 1.1 cgd 0,
233 1.1 cgd eonprotoinit, 0, 0, 0,
234 1.4 hpeyerl },
235 1.45 itojun #else
236 1.47 itojun { SOCK_RAW, &inetdomain, IPPROTO_EON, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
237 1.53 itojun encap4_input, rip_output, rip_ctlinput, rip_ctloutput,
238 1.45 itojun rip_usrreq, /*XXX*/
239 1.54 itojun encap_init, 0, 0, 0,
240 1.45 itojun },
241 1.11 mycroft #endif /* EON */
242 1.45 itojun #endif /* ISO */
243 1.1 cgd #ifdef NSIP
244 1.47 itojun { SOCK_RAW, &inetdomain, IPPROTO_IDP, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
245 1.16 christos idpip_input, NULL, nsip_ctlinput, 0,
246 1.1 cgd rip_usrreq,
247 1.1 cgd 0, 0, 0, 0,
248 1.1 cgd },
249 1.11 mycroft #endif /* NSIP */
250 1.11 mycroft /* raw wildcard */
251 1.1 cgd { SOCK_RAW, &inetdomain, 0, PR_ATOMIC|PR_ADDR,
252 1.53 itojun rip_input, rip_output, rip_ctlinput, rip_ctloutput,
253 1.1 cgd rip_usrreq,
254 1.8 mycroft rip_init, 0, 0, 0,
255 1.1 cgd },
256 1.1 cgd };
257 1.1 cgd
258 1.1 cgd struct domain inetdomain =
259 1.56 itojun { PF_INET, "internet", 0, 0, 0,
260 1.8 mycroft inetsw, &inetsw[sizeof(inetsw)/sizeof(inetsw[0])], 0,
261 1.8 mycroft rn_inithead, 32, sizeof(struct sockaddr_in) };
262 1.38 darrenr
263 1.38 darrenr u_char ip_protox[IPPROTO_MAX];
264 1.36 thorpej
265 1.40 itojun int icmperrppslim = 100; /* 100pps */
266