in_proto.c revision 1.96 1 1.96 pooka /* $NetBSD: in_proto.c,v 1.96 2009/02/01 17:04:11 pooka 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.59 agc * 3. Neither the name of the University nor the names of its contributors
45 1.1 cgd * may be used to endorse or promote products derived from this software
46 1.1 cgd * without specific prior written permission.
47 1.1 cgd *
48 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 1.1 cgd * SUCH DAMAGE.
59 1.1 cgd *
60 1.18 thorpej * @(#)in_proto.c 8.2 (Berkeley) 2/9/95
61 1.1 cgd */
62 1.51 lukem
63 1.51 lukem #include <sys/cdefs.h>
64 1.96 pooka __KERNEL_RCSID(0, "$NetBSD: in_proto.c,v 1.96 2009/02/01 17:04:11 pooka Exp $");
65 1.19 scottr
66 1.19 scottr #include "opt_mrouting.h"
67 1.22 jonathan #include "opt_eon.h" /* ISO CLNL over IP */
68 1.22 jonathan #include "opt_iso.h" /* ISO TP tunneled over IP */
69 1.32 itojun #include "opt_inet.h"
70 1.33 thorpej #include "opt_ipsec.h"
71 1.65 manu #include "opt_pim.h"
72 1.1 cgd
73 1.5 mycroft #include <sys/param.h>
74 1.5 mycroft #include <sys/socket.h>
75 1.5 mycroft #include <sys/protosw.h>
76 1.5 mycroft #include <sys/domain.h>
77 1.5 mycroft #include <sys/mbuf.h>
78 1.1 cgd
79 1.8 mycroft #include <net/if.h>
80 1.8 mycroft #include <net/radix.h>
81 1.8 mycroft #include <net/route.h>
82 1.8 mycroft
83 1.5 mycroft #include <netinet/in.h>
84 1.5 mycroft #include <netinet/in_systm.h>
85 1.8 mycroft #include <netinet/ip.h>
86 1.8 mycroft #include <netinet/ip_var.h>
87 1.8 mycroft #include <netinet/ip_icmp.h>
88 1.78 dyoung #include <netinet/in_ifattach.h>
89 1.8 mycroft #include <netinet/in_pcb.h>
90 1.69 yamt #include <netinet/in_proto.h>
91 1.32 itojun
92 1.32 itojun #ifdef INET6
93 1.32 itojun #ifndef INET
94 1.32 itojun #include <netinet/in.h>
95 1.32 itojun #endif
96 1.32 itojun #include <netinet/ip6.h>
97 1.32 itojun #endif
98 1.32 itojun
99 1.8 mycroft #include <netinet/igmp_var.h>
100 1.65 manu #ifdef PIM
101 1.65 manu #include <netinet/pim_var.h>
102 1.65 manu #endif
103 1.8 mycroft #include <netinet/tcp.h>
104 1.8 mycroft #include <netinet/tcp_fsm.h>
105 1.8 mycroft #include <netinet/tcp_seq.h>
106 1.8 mycroft #include <netinet/tcp_timer.h>
107 1.8 mycroft #include <netinet/tcp_var.h>
108 1.8 mycroft #include <netinet/tcpip.h>
109 1.8 mycroft #include <netinet/tcp_debug.h>
110 1.8 mycroft #include <netinet/udp.h>
111 1.8 mycroft #include <netinet/udp_var.h>
112 1.39 itojun #include <netinet/ip_encap.h>
113 1.79 rpaulo
114 1.1 cgd /*
115 1.1 cgd * TCP/IP protocol family: IP, ICMP, UDP, TCP.
116 1.1 cgd */
117 1.1 cgd
118 1.32 itojun #ifdef IPSEC
119 1.58 itojun #include <netinet6/ipsec.h>
120 1.32 itojun #include <netinet6/ah.h>
121 1.32 itojun #ifdef IPSEC_ESP
122 1.32 itojun #include <netinet6/esp.h>
123 1.32 itojun #endif
124 1.32 itojun #include <netinet6/ipcomp.h>
125 1.32 itojun #endif /* IPSEC */
126 1.32 itojun
127 1.61 jonathan #ifdef FAST_IPSEC
128 1.61 jonathan #include <netipsec/ipsec.h>
129 1.61 jonathan #include <netipsec/key.h>
130 1.61 jonathan #endif /* FAST_IPSEC */
131 1.61 jonathan
132 1.1 cgd #ifdef TPIP
133 1.13 christos #include <netiso/tp_param.h>
134 1.13 christos #include <netiso/tp_var.h>
135 1.11 mycroft #endif /* TPIP */
136 1.1 cgd
137 1.1 cgd #ifdef EON
138 1.13 christos #include <netiso/eonvar.h>
139 1.8 mycroft #endif /* EON */
140 1.1 cgd
141 1.72 liamjfoy #include "carp.h"
142 1.72 liamjfoy #if NCARP > 0
143 1.72 liamjfoy #include <netinet/ip_carp.h>
144 1.72 liamjfoy #endif
145 1.72 liamjfoy
146 1.79 rpaulo #include "etherip.h"
147 1.79 rpaulo #if NETHERIP > 0
148 1.79 rpaulo #include <netinet/ip_etherip.h>
149 1.79 rpaulo #endif
150 1.67 kim
151 1.66 matt DOMAIN_DEFINE(inetdomain); /* forward declare and add to link set */
152 1.66 matt
153 1.94 ad /* Wrappers to acquire kernel_lock. */
154 1.94 ad
155 1.94 ad PR_WRAP_USRREQ(rip_usrreq)
156 1.94 ad PR_WRAP_USRREQ(udp_usrreq)
157 1.94 ad PR_WRAP_USRREQ(tcp_usrreq)
158 1.94 ad
159 1.94 ad #define rip_usrreq rip_usrreq_wrapper
160 1.94 ad #define udp_usrreq udp_usrreq_wrapper
161 1.94 ad #define tcp_usrreq tcp_usrreq_wrapper
162 1.94 ad
163 1.94 ad PR_WRAP_CTLINPUT(rip_ctlinput)
164 1.94 ad PR_WRAP_CTLINPUT(udp_ctlinput)
165 1.94 ad PR_WRAP_CTLINPUT(tcp_ctlinput)
166 1.94 ad
167 1.94 ad #define rip_ctlinput rip_ctlinput_wrapper
168 1.94 ad #define udp_ctlinput udp_ctlinput_wrapper
169 1.94 ad #define tcp_ctlinput tcp_ctlinput_wrapper
170 1.94 ad
171 1.94 ad PR_WRAP_CTLOUTPUT(rip_ctloutput)
172 1.94 ad PR_WRAP_CTLOUTPUT(udp_ctloutput)
173 1.94 ad PR_WRAP_CTLOUTPUT(tcp_ctloutput)
174 1.94 ad
175 1.94 ad #define rip_ctloutput rip_ctloutput_wrapper
176 1.94 ad #define udp_ctloutput udp_ctloutput_wrapper
177 1.94 ad #define tcp_ctloutput tcp_ctloutput_wrapper
178 1.94 ad
179 1.94 ad #if defined(IPSEC) || defined(FAST_IPSEC)
180 1.94 ad PR_WRAP_CTLINPUT(ah4_ctlinput)
181 1.94 ad
182 1.94 ad #define ah4_ctlinput ah4_ctlinput_wrapper
183 1.94 ad #endif
184 1.94 ad
185 1.94 ad #if defined(IPSEC_ESP) || defined(FAST_IPSEC)
186 1.94 ad PR_WRAP_CTLINPUT(esp4_ctlinput)
187 1.94 ad
188 1.94 ad #define esp4_ctlinput esp4_ctlinput_wrapper
189 1.94 ad #endif
190 1.94 ad
191 1.94 ad #ifdef TPIP
192 1.94 ad PR_WRAP_CTLOUTPUT(tp_ctloutput)
193 1.94 ad
194 1.94 ad #define tp_ctloutput tp_ctloutput_wrapper
195 1.94 ad
196 1.94 ad PR_WRAP_CTLINPUT(tpip_ctlinput)
197 1.94 ad
198 1.94 ad #define tpip_ctlinput tpip_ctlinput_wrapper
199 1.94 ad #endif
200 1.94 ad
201 1.94 ad #ifdef EON
202 1.94 ad PR_WRAP_CTLINPUT(eonctlinput)
203 1.94 ad
204 1.94 ad #define eonctlinput eonctlinput_wrapper
205 1.94 ad #endif
206 1.94 ad
207 1.63 matt const struct protosw inetsw[] = {
208 1.81 liamjfoy { .pr_domain = &inetdomain,
209 1.81 liamjfoy .pr_init = ip_init,
210 1.81 liamjfoy .pr_output = ip_output,
211 1.81 liamjfoy .pr_slowtimo = ip_slowtimo,
212 1.81 liamjfoy .pr_drain = ip_drain,
213 1.81 liamjfoy },
214 1.81 liamjfoy { .pr_type = SOCK_DGRAM,
215 1.81 liamjfoy .pr_domain = &inetdomain,
216 1.81 liamjfoy .pr_protocol = IPPROTO_UDP,
217 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_PURGEIF,
218 1.81 liamjfoy .pr_input = udp_input,
219 1.81 liamjfoy .pr_ctlinput = udp_ctlinput,
220 1.81 liamjfoy .pr_ctloutput = udp_ctloutput,
221 1.81 liamjfoy .pr_usrreq = udp_usrreq,
222 1.81 liamjfoy .pr_init = udp_init,
223 1.81 liamjfoy },
224 1.81 liamjfoy { .pr_type = SOCK_STREAM,
225 1.81 liamjfoy .pr_domain = &inetdomain,
226 1.81 liamjfoy .pr_protocol = IPPROTO_TCP,
227 1.81 liamjfoy .pr_flags = PR_CONNREQUIRED|PR_WANTRCVD|PR_LISTEN|PR_ABRTACPTDIS|PR_PURGEIF,
228 1.81 liamjfoy .pr_input = tcp_input,
229 1.81 liamjfoy .pr_ctlinput = tcp_ctlinput,
230 1.81 liamjfoy .pr_ctloutput = tcp_ctloutput,
231 1.81 liamjfoy .pr_usrreq = tcp_usrreq,
232 1.81 liamjfoy .pr_init = tcp_init,
233 1.81 liamjfoy .pr_slowtimo = tcp_slowtimo,
234 1.81 liamjfoy .pr_drain = tcp_drain,
235 1.81 liamjfoy },
236 1.81 liamjfoy { .pr_type = SOCK_RAW,
237 1.81 liamjfoy .pr_domain = &inetdomain,
238 1.81 liamjfoy .pr_protocol = IPPROTO_RAW,
239 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_PURGEIF,
240 1.81 liamjfoy .pr_input = rip_input,
241 1.81 liamjfoy .pr_output = rip_output,
242 1.81 liamjfoy .pr_ctlinput = rip_ctlinput,
243 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
244 1.81 liamjfoy .pr_usrreq = rip_usrreq,
245 1.81 liamjfoy },
246 1.81 liamjfoy { .pr_type = SOCK_RAW,
247 1.81 liamjfoy .pr_domain = &inetdomain,
248 1.81 liamjfoy .pr_protocol = IPPROTO_ICMP,
249 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
250 1.81 liamjfoy .pr_input = icmp_input,
251 1.81 liamjfoy .pr_output = rip_output,
252 1.81 liamjfoy .pr_ctlinput = rip_ctlinput,
253 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
254 1.81 liamjfoy .pr_usrreq = rip_usrreq,
255 1.81 liamjfoy .pr_init = icmp_init,
256 1.8 mycroft },
257 1.83 liamjfoy #ifdef GATEWAY
258 1.83 liamjfoy { .pr_domain = &inetdomain,
259 1.83 liamjfoy .pr_protocol = IPPROTO_IP,
260 1.83 liamjfoy .pr_slowtimo = ipflow_slowtimo,
261 1.96 pooka .pr_init = ipflow_poolinit,
262 1.83 liamjfoy },
263 1.83 liamjfoy #endif /* GATEWAY */
264 1.32 itojun #ifdef IPSEC
265 1.81 liamjfoy { .pr_type = SOCK_RAW,
266 1.81 liamjfoy .pr_domain = &inetdomain,
267 1.81 liamjfoy .pr_protocol = IPPROTO_AH,
268 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR,
269 1.81 liamjfoy .pr_input = ah4_input,
270 1.81 liamjfoy .pr_ctlinput = ah4_ctlinput,
271 1.93 thorpej .pr_init = ah4_init,
272 1.32 itojun },
273 1.32 itojun #ifdef IPSEC_ESP
274 1.81 liamjfoy { .pr_type = SOCK_RAW,
275 1.81 liamjfoy .pr_domain = &inetdomain,
276 1.81 liamjfoy .pr_protocol = IPPROTO_ESP,
277 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR,
278 1.81 liamjfoy .pr_input = esp4_input,
279 1.81 liamjfoy .pr_ctlinput = esp4_ctlinput,
280 1.93 thorpej .pr_init = esp4_init,
281 1.81 liamjfoy },
282 1.81 liamjfoy #endif /* IPSEC_ESP */
283 1.81 liamjfoy { .pr_type = SOCK_RAW,
284 1.82 liamjfoy .pr_domain = &inetdomain,
285 1.81 liamjfoy .pr_protocol = IPPROTO_IPCOMP,
286 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR,
287 1.81 liamjfoy .pr_input = ipcomp4_input,
288 1.93 thorpej .pr_init = ipcomp4_init,
289 1.32 itojun },
290 1.32 itojun #endif /* IPSEC */
291 1.61 jonathan #ifdef FAST_IPSEC
292 1.81 liamjfoy { .pr_type = SOCK_RAW,
293 1.81 liamjfoy .pr_domain = &inetdomain,
294 1.81 liamjfoy .pr_protocol = IPPROTO_AH,
295 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR,
296 1.81 liamjfoy .pr_input = ipsec4_common_input,
297 1.81 liamjfoy .pr_ctlinput = ah4_ctlinput,
298 1.81 liamjfoy },
299 1.81 liamjfoy { .pr_type = SOCK_RAW,
300 1.81 liamjfoy .pr_domain = &inetdomain,
301 1.81 liamjfoy .pr_protocol = IPPROTO_ESP,
302 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR,
303 1.81 liamjfoy .pr_input = ipsec4_common_input,
304 1.81 liamjfoy .pr_ctlinput = esp4_ctlinput,
305 1.81 liamjfoy },
306 1.81 liamjfoy { .pr_type = SOCK_RAW,
307 1.81 liamjfoy .pr_domain = &inetdomain,
308 1.81 liamjfoy .pr_protocol = IPPROTO_IPCOMP,
309 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR,
310 1.81 liamjfoy .pr_input = ipsec4_common_input,
311 1.61 jonathan },
312 1.61 jonathan #endif /* FAST_IPSEC */
313 1.81 liamjfoy { .pr_type = SOCK_RAW,
314 1.81 liamjfoy .pr_domain = &inetdomain,
315 1.81 liamjfoy .pr_protocol = IPPROTO_IPV4,
316 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
317 1.81 liamjfoy .pr_input = encap4_input,
318 1.81 liamjfoy .pr_output = rip_output,
319 1.81 liamjfoy .pr_ctlinput = rip_ctlinput,
320 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
321 1.81 liamjfoy .pr_usrreq = rip_usrreq,
322 1.81 liamjfoy .pr_init = encap_init,
323 1.32 itojun },
324 1.32 itojun #ifdef INET6
325 1.81 liamjfoy { .pr_type = SOCK_RAW,
326 1.81 liamjfoy .pr_domain = &inetdomain,
327 1.81 liamjfoy .pr_protocol = IPPROTO_IPV6,
328 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
329 1.81 liamjfoy .pr_input = encap4_input,
330 1.81 liamjfoy .pr_output = rip_output,
331 1.81 liamjfoy .pr_ctlinput = rip_ctlinput,
332 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
333 1.81 liamjfoy .pr_usrreq = rip_usrreq,
334 1.81 liamjfoy .pr_init = encap_init,
335 1.32 itojun },
336 1.32 itojun #endif /* INET6 */
337 1.79 rpaulo #if NETHERIP > 0
338 1.81 liamjfoy { .pr_type = SOCK_RAW,
339 1.81 liamjfoy .pr_domain = &inetdomain,
340 1.81 liamjfoy .pr_protocol = IPPROTO_ETHERIP,
341 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
342 1.81 liamjfoy .pr_input = ip_etherip_input,
343 1.81 liamjfoy .pr_output = rip_output,
344 1.81 liamjfoy .pr_ctlinput = rip_ctlinput,
345 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
346 1.81 liamjfoy .pr_usrreq = rip_usrreq,
347 1.67 kim },
348 1.81 liamjfoy #endif /* NETHERIP > 0 */
349 1.72 liamjfoy #if NCARP > 0
350 1.81 liamjfoy { .pr_type = SOCK_RAW,
351 1.81 liamjfoy .pr_domain = &inetdomain,
352 1.81 liamjfoy .pr_protocol = IPPROTO_CARP,
353 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR,
354 1.81 liamjfoy .pr_input = carp_proto_input,
355 1.81 liamjfoy .pr_output = rip_output,
356 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
357 1.81 liamjfoy .pr_usrreq = rip_usrreq,
358 1.72 liamjfoy },
359 1.81 liamjfoy #endif /* NCARP > 0 */
360 1.81 liamjfoy { .pr_type = SOCK_RAW,
361 1.81 liamjfoy .pr_domain = &inetdomain,
362 1.81 liamjfoy .pr_protocol = IPPROTO_IGMP,
363 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
364 1.81 liamjfoy .pr_input = igmp_input,
365 1.81 liamjfoy .pr_output = rip_output,
366 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
367 1.81 liamjfoy .pr_ctlinput = rip_ctlinput,
368 1.81 liamjfoy .pr_usrreq = rip_usrreq,
369 1.81 liamjfoy .pr_fasttimo = igmp_fasttimo,
370 1.81 liamjfoy .pr_slowtimo = igmp_slowtimo,
371 1.92 thorpej .pr_init = igmp_init,
372 1.1 cgd },
373 1.65 manu #ifdef PIM
374 1.81 liamjfoy { .pr_type = SOCK_RAW,
375 1.81 liamjfoy .pr_domain = &inetdomain,
376 1.81 liamjfoy .pr_protocol = IPPROTO_PIM,
377 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
378 1.81 liamjfoy .pr_input = pim_input,
379 1.81 liamjfoy .pr_output = rip_output,
380 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
381 1.81 liamjfoy .pr_ctlinput = rip_ctlinput,
382 1.81 liamjfoy .pr_usrreq = rip_usrreq,
383 1.65 manu },
384 1.65 manu #endif /* PIM */
385 1.1 cgd #ifdef TPIP
386 1.81 liamjfoy { .pr_type = SOCK_SEQPACKET,
387 1.81 liamjfoy .pr_domain = &inetdomain,
388 1.81 liamjfoy .pr_protocol = IPPROTO_TP,
389 1.81 liamjfoy .pr_flags = PR_CONNREQUIRED|PR_WANTRCVD|PR_LISTEN|PR_LASTHDR|PR_ABRTACPTDIS,
390 1.81 liamjfoy .pr_input = tpip_input,
391 1.81 liamjfoy .pr_ctloutput = tp_ctloutput,
392 1.81 liamjfoy .pr_ctlinput = tpip_ctlinput,
393 1.81 liamjfoy .pr_usrreq = tp_usrreq,
394 1.81 liamjfoy .pr_init = tp_init,
395 1.81 liamjfoy .pr_slowtimo = tp_slowtimo,
396 1.81 liamjfoy .pr_drain = tp_drain,
397 1.1 cgd },
398 1.11 mycroft #endif /* TPIP */
399 1.45 itojun #ifdef ISO
400 1.1 cgd /* EON (ISO CLNL over IP) */
401 1.1 cgd #ifdef EON
402 1.81 liamjfoy { .pr_type = SOCK_RAW,
403 1.81 liamjfoy .pr_domain = &inetdomain,
404 1.81 liamjfoy .pr_protocol = IPPROTO_EON,
405 1.81 liamjfoy .pr_flags = PR_LASTHDR,
406 1.81 liamjfoy .pr_input = eoninput,
407 1.81 liamjfoy .pr_ctlinput = eonctlinput,
408 1.81 liamjfoy .pr_init = eonprotoinit,
409 1.4 hpeyerl },
410 1.45 itojun #else
411 1.81 liamjfoy { .pr_type = SOCK_RAW,
412 1.81 liamjfoy .pr_domain = &inetdomain,
413 1.81 liamjfoy .pr_protocol = IPPROTO_EON,
414 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
415 1.81 liamjfoy .pr_input = encap4_input,
416 1.81 liamjfoy .pr_output = rip_output,
417 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
418 1.81 liamjfoy .pr_ctlinput = rip_ctlinput,
419 1.81 liamjfoy .pr_usrreq = rip_usrreq,
420 1.81 liamjfoy .pr_init = encap_init,
421 1.45 itojun },
422 1.11 mycroft #endif /* EON */
423 1.45 itojun #endif /* ISO */
424 1.11 mycroft /* raw wildcard */
425 1.81 liamjfoy { .pr_type = SOCK_RAW,
426 1.81 liamjfoy .pr_domain = &inetdomain,
427 1.81 liamjfoy .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
428 1.81 liamjfoy .pr_input = rip_input,
429 1.81 liamjfoy .pr_output = rip_output,
430 1.81 liamjfoy .pr_ctloutput = rip_ctloutput,
431 1.81 liamjfoy .pr_ctlinput = rip_ctlinput,
432 1.81 liamjfoy .pr_usrreq = rip_usrreq,
433 1.81 liamjfoy .pr_init = rip_init,
434 1.1 cgd },
435 1.1 cgd };
436 1.1 cgd
437 1.73 matt extern struct ifqueue ipintrq;
438 1.73 matt
439 1.89 dyoung const struct sockaddr_in in_any = {
440 1.89 dyoung .sin_len = sizeof(struct sockaddr_in)
441 1.89 dyoung , .sin_family = AF_INET
442 1.89 dyoung , .sin_port = 0
443 1.90 dyoung , .sin_addr = {.s_addr = 0 /* INADDR_ANY */}
444 1.89 dyoung };
445 1.89 dyoung
446 1.73 matt struct domain inetdomain = {
447 1.80 dyoung .dom_family = PF_INET, .dom_name = "internet", .dom_init = NULL,
448 1.80 dyoung .dom_externalize = NULL, .dom_dispose = NULL,
449 1.80 dyoung .dom_protosw = inetsw,
450 1.87 dyoung .dom_protoswNPROTOSW = &inetsw[__arraycount(inetsw)],
451 1.80 dyoung .dom_rtattach = rn_inithead,
452 1.95 pooka .dom_rtoffset = 32,
453 1.95 pooka .dom_maxrtkey = sizeof(struct ip_pack4),
454 1.78 dyoung #ifdef IPSELSRC
455 1.80 dyoung .dom_ifattach = in_domifattach,
456 1.80 dyoung .dom_ifdetach = in_domifdetach,
457 1.78 dyoung #else
458 1.80 dyoung .dom_ifattach = NULL,
459 1.80 dyoung .dom_ifdetach = NULL,
460 1.78 dyoung #endif
461 1.80 dyoung .dom_ifqueues = { &ipintrq, NULL },
462 1.80 dyoung .dom_link = { NULL },
463 1.80 dyoung .dom_mowner = MOWNER_INIT("",""),
464 1.86 dyoung .dom_sa_cmpofs = offsetof(struct sockaddr_in, sin_addr),
465 1.86 dyoung .dom_sa_cmplen = sizeof(struct in_addr),
466 1.89 dyoung .dom_sa_any = (const struct sockaddr *)&in_any,
467 1.89 dyoung .dom_sockaddr_const_addr = sockaddr_in_const_addr,
468 1.89 dyoung .dom_sockaddr_addr = sockaddr_in_addr,
469 1.84 dyoung .dom_rtcache = LIST_HEAD_INITIALIZER(inetdomain.dom_rtcache)
470 1.73 matt };
471 1.38 darrenr
472 1.38 darrenr u_char ip_protox[IPPROTO_MAX];
473 1.36 thorpej
474 1.40 itojun int icmperrppslim = 100; /* 100pps */
475 1.84 dyoung
476 1.89 dyoung static void
477 1.89 dyoung sockaddr_in_addrlen(const struct sockaddr *sa, socklen_t *slenp)
478 1.89 dyoung {
479 1.89 dyoung socklen_t slen;
480 1.89 dyoung
481 1.89 dyoung if (slenp == NULL)
482 1.89 dyoung return;
483 1.89 dyoung
484 1.89 dyoung slen = sockaddr_getlen(sa);
485 1.89 dyoung *slenp = (socklen_t)MIN(sizeof(struct in_addr),
486 1.89 dyoung slen - MIN(slen, offsetof(struct sockaddr_in, sin_addr)));
487 1.89 dyoung }
488 1.89 dyoung
489 1.89 dyoung const void *
490 1.89 dyoung sockaddr_in_const_addr(const struct sockaddr *sa, socklen_t *slenp)
491 1.89 dyoung {
492 1.89 dyoung const struct sockaddr_in *sin;
493 1.89 dyoung
494 1.89 dyoung sockaddr_in_addrlen(sa, slenp);
495 1.89 dyoung sin = (const struct sockaddr_in *)sa;
496 1.89 dyoung return &sin->sin_addr;
497 1.89 dyoung }
498 1.89 dyoung
499 1.89 dyoung void *
500 1.89 dyoung sockaddr_in_addr(struct sockaddr *sa, socklen_t *slenp)
501 1.89 dyoung {
502 1.89 dyoung struct sockaddr_in *sin;
503 1.89 dyoung
504 1.89 dyoung sockaddr_in_addrlen(sa, slenp);
505 1.89 dyoung sin = (struct sockaddr_in *)sa;
506 1.89 dyoung return &sin->sin_addr;
507 1.89 dyoung }
508 1.89 dyoung
509 1.84 dyoung int
510 1.84 dyoung sockaddr_in_cmp(const struct sockaddr *sa1, const struct sockaddr *sa2)
511 1.84 dyoung {
512 1.84 dyoung uint_fast8_t len;
513 1.84 dyoung const uint_fast8_t addrofs = offsetof(struct sockaddr_in, sin_addr),
514 1.84 dyoung addrend = addrofs + sizeof(struct in_addr);
515 1.84 dyoung int rc;
516 1.84 dyoung const struct sockaddr_in *sin1, *sin2;
517 1.84 dyoung
518 1.84 dyoung sin1 = satocsin(sa1);
519 1.84 dyoung sin2 = satocsin(sa2);
520 1.84 dyoung
521 1.84 dyoung len = MIN(addrend, MIN(sin1->sin_len, sin2->sin_len));
522 1.84 dyoung
523 1.84 dyoung if (len > addrofs &&
524 1.84 dyoung (rc = memcmp(&sin1->sin_addr, &sin2->sin_addr,
525 1.84 dyoung len - addrofs)) != 0)
526 1.84 dyoung return rc;
527 1.84 dyoung
528 1.84 dyoung return sin1->sin_len - sin2->sin_len;
529 1.84 dyoung }
530