2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#)in_proto.c 8.2 (Berkeley) 2/9/95
30 * $FreeBSD: src/sys/netinet/in_proto.c,v 1.53.2.7 2003/08/24 08:24:38 hsu Exp $
33 #include "opt_ipdivert.h"
34 #include "opt_mrouting.h"
35 #include "opt_ipsec.h"
36 #include "opt_inet6.h"
39 #include <sys/param.h>
40 #include <sys/kernel.h>
41 #include <sys/socket.h>
42 #include <sys/domain.h>
43 #include <sys/protosw.h>
44 #include <sys/queue.h>
45 #include <sys/sysctl.h>
48 #include <net/route.h>
50 #include <netinet/in.h>
51 #include <netinet/in_systm.h>
52 #include <netinet/in_pcb.h>
53 #include <netinet/ip.h>
54 #include <netinet/ip_var.h>
55 #include <netinet/ip_icmp.h>
56 #include <netinet/igmp_var.h>
58 #include <netinet/pim_var.h>
60 #include <netinet/tcp.h>
61 #include <netinet/tcp_timer.h>
62 #include <netinet/tcp_var.h>
63 #include <netinet/udp.h>
64 #include <netinet/udp_var.h>
65 #include <netinet/ip_encap.h>
67 #include <netinet/ip_divert.h>
71 * TCP/IP protocol family: IP, ICMP, UDP, TCP.
75 #include <netinet6/ipsec.h>
76 #include <netinet6/ah.h>
78 #include <netinet6/esp.h>
80 #include <netinet6/ipcomp.h>
84 #include <netproto/ipsec/ipsec.h>
85 #endif /* FAST_IPSEC */
87 #include <net/netisr.h> /* for cpu0_soport */
90 #include <netinet/ip_carp.h>
93 extern struct domain inetdomain
;
94 static struct pr_usrreqs nousrreqs
;
96 struct protosw inetsw
[] = {
99 .pr_domain
= &inetdomain
,
106 .pr_drain
= ip_drain
,
107 .pr_usrreqs
= &nousrreqs
110 .pr_type
= SOCK_DGRAM
,
111 .pr_domain
= &inetdomain
,
112 .pr_protocol
= IPPROTO_UDP
,
113 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_MPSAFE
|
114 PR_ASYNC_SEND
|PR_ASEND_HOLDTD
|PR_ACONN_HOLDTD
,
116 .pr_initport
= udp_initport
,
117 .pr_input
= udp_input
,
119 .pr_ctlinput
= udp_ctlinput
,
120 .pr_ctloutput
= udp_ctloutput
,
122 .pr_ctlport
= udp_ctlport
,
124 .pr_usrreqs
= &udp_usrreqs
127 .pr_type
= SOCK_STREAM
,
128 .pr_domain
= &inetdomain
,
129 .pr_protocol
= IPPROTO_TCP
,
130 .pr_flags
= PR_CONNREQUIRED
|PR_WANTRCVD
|PR_MPSAFE
|
131 PR_ASYNC_SEND
|PR_ASYNC_RCVD
|PR_ACONN_HOLDTD
,
133 .pr_initport
= tcp_initport
,
134 .pr_input
= tcp_input
,
136 .pr_ctlinput
= tcp_ctlinput
,
137 .pr_ctloutmsg
= tcp_ctloutmsg
,
138 .pr_ctloutput
= tcp_ctloutput
,
140 .pr_ctlport
= tcp_ctlport
,
142 .pr_drain
= tcp_drain
,
143 .pr_usrreqs
= &tcp_usrreqs
147 .pr_domain
= &inetdomain
,
148 .pr_protocol
= IPPROTO_RAW
,
149 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
151 .pr_input
= rip_input
,
153 .pr_ctlinput
= rip_ctlinput
,
154 .pr_ctloutput
= rip_ctloutput
,
156 .pr_ctlport
= cpu0_ctlport
,
157 .pr_usrreqs
= &rip_usrreqs
161 .pr_domain
= &inetdomain
,
162 .pr_protocol
= IPPROTO_ICMP
,
163 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_LASTHDR
|PR_MPSAFE
,
165 .pr_input
= icmp_input
,
168 .pr_ctloutput
= rip_ctloutput
,
170 .pr_usrreqs
= &rip_usrreqs
174 .pr_domain
= &inetdomain
,
175 .pr_protocol
= IPPROTO_IGMP
,
176 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_LASTHDR
|PR_MPSAFE
,
178 .pr_input
= igmp_input
,
181 .pr_ctloutput
= rip_ctloutput
,
183 .pr_init
= igmp_init
,
185 .pr_usrreqs
= &rip_usrreqs
189 .pr_domain
= &inetdomain
,
190 .pr_protocol
= IPPROTO_RSVP
,
191 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_LASTHDR
,
193 .pr_input
= rsvp_input
,
196 .pr_ctloutput
= rip_ctloutput
,
198 .pr_usrreqs
= &rip_usrreqs
203 .pr_domain
= &inetdomain
,
204 .pr_protocol
= IPPROTO_AH
,
205 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
207 .pr_input
= ah4_input
,
210 .pr_ctloutput
= NULL
,
213 .pr_usrreqs
= &nousrreqs
218 .pr_domain
= &inetdomain
,
219 .pr_protocol
= IPPROTO_ESP
,
220 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
222 .pr_input
= esp4_input
,
225 .pr_ctloutput
= NULL
,
228 .pr_usrreqs
= &nousrreqs
233 .pr_domain
= &inetdomain
,
234 .pr_protocol
= IPPROTO_IPCOMP
,
235 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
237 .pr_input
= ipcomp4_input
,
240 .pr_ctloutput
= NULL
,
243 .pr_usrreqs
= &nousrreqs
249 .pr_domain
= &inetdomain
,
250 .pr_protocol
= IPPROTO_AH
,
251 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
253 .pr_input
= ipsec4_common_input
,
256 .pr_ctloutput
= NULL
,
259 .pr_usrreqs
= &nousrreqs
263 .pr_domain
= &inetdomain
,
264 .pr_protocol
= IPPROTO_ESP
,
265 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
267 .pr_input
= ipsec4_common_input
,
270 .pr_ctloutput
= NULL
,
273 .pr_usrreqs
= &nousrreqs
277 .pr_domain
= &inetdomain
,
278 .pr_protocol
= IPPROTO_IPCOMP
,
279 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
281 .pr_input
= ipsec4_common_input
,
284 .pr_ctloutput
= NULL
,
287 .pr_usrreqs
= &nousrreqs
289 #endif /* FAST_IPSEC */
292 .pr_domain
= &inetdomain
,
293 .pr_protocol
= IPPROTO_IPV4
,
294 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_LASTHDR
,
295 .pr_input
= encap4_input
,
298 .pr_ctloutput
= rip_ctloutput
,
301 .pr_init
= encap_init
,
302 .pr_usrreqs
= &rip_usrreqs
306 .pr_domain
= &inetdomain
,
307 .pr_protocol
= IPPROTO_MOBILE
,
308 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_LASTHDR
,
310 .pr_input
= encap4_input
,
313 .pr_ctloutput
= rip_ctloutput
,
316 .pr_init
= encap_init
,
317 .pr_usrreqs
= &rip_usrreqs
321 .pr_domain
= &inetdomain
,
322 .pr_protocol
= IPPROTO_GRE
,
323 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_LASTHDR
,
325 .pr_input
= encap4_input
,
328 .pr_ctloutput
= rip_ctloutput
,
331 .pr_init
= encap_init
,
332 .pr_usrreqs
= &rip_usrreqs
337 .pr_domain
= &inetdomain
,
338 .pr_protocol
= IPPROTO_IPV6
,
339 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_LASTHDR
,
341 .pr_input
= encap4_input
,
344 .pr_ctloutput
= rip_ctloutput
,
347 .pr_init
= encap_init
,
348 .pr_usrreqs
= &rip_usrreqs
354 .pr_domain
= &inetdomain
,
355 .pr_protocol
= IPPROTO_DIVERT
,
356 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
358 .pr_input
= div_input
,
361 .pr_ctloutput
= ip_ctloutput
,
365 .pr_usrreqs
= &div_usrreqs
371 .pr_domain
= &inetdomain
,
372 .pr_protocol
= IPPROTO_PIM
,
373 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_LASTHDR
,
375 .pr_input
= pim_input
,
378 .pr_ctloutput
= rip_ctloutput
,
381 .pr_usrreqs
= &rip_usrreqs
387 .pr_domain
= &inetdomain
,
388 .pr_protocol
= IPPROTO_PFSYNC
,
389 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
391 .pr_input
= pfsync_input
,
394 .pr_ctloutput
= rip_ctloutput
,
397 .pr_usrreqs
= &rip_usrreqs
403 .pr_domain
= &inetdomain
,
405 .pr_flags
= PR_ATOMIC
|PR_ADDR
,
407 .pr_input
= rip_input
,
410 .pr_ctloutput
= rip_ctloutput
,
414 .pr_usrreqs
= &rip_usrreqs
419 .pr_domain
= &inetdomain
,
420 .pr_protocol
= IPPROTO_CARP
,
421 .pr_flags
= PR_ATOMIC
|PR_ADDR
|PR_MPSAFE
,
423 .pr_input
= carp_proto_input
,
424 .pr_output
= rip_output
,
425 .pr_ctlinput
= carp_proto_ctlinput
,
426 .pr_ctloutput
= rip_ctloutput
,
428 .pr_ctlport
= cpu0_ctlport
,
429 .pr_usrreqs
= &rip_usrreqs
435 inetdomain_init(void)
440 struct domain inetdomain
= {
441 .dom_family
= AF_INET
,
442 .dom_name
= "internet",
443 .dom_init
= inetdomain_init
,
444 .dom_externalize
= NULL
,
446 .dom_protosw
= inetsw
,
447 .dom_protoswNPROTOSW
= &inetsw
[NELEM(inetsw
)],
448 .dom_next
= SLIST_ENTRY_INITIALIZER
,
449 .dom_rtattach
= in_inithead
,
451 .dom_maxrtkey
= sizeof(struct sockaddr_in
),
452 .dom_ifattach
= NULL
,
458 SYSCTL_NODE(_net
, PF_INET
, inet
, CTLFLAG_RW
, 0,
461 SYSCTL_NODE(_net_inet
, IPPROTO_IP
, ip
, CTLFLAG_RW
, 0, "IP");
462 SYSCTL_NODE(_net_inet
, IPPROTO_ICMP
, icmp
, CTLFLAG_RW
, 0, "ICMP");
463 SYSCTL_NODE(_net_inet
, IPPROTO_UDP
, udp
, CTLFLAG_RW
, 0, "UDP");
464 SYSCTL_NODE(_net_inet
, IPPROTO_TCP
, tcp
, CTLFLAG_RW
, 0, "TCP");
465 SYSCTL_NODE(_net_inet
, IPPROTO_IGMP
, igmp
, CTLFLAG_RW
, 0, "IGMP");
467 /* XXX no protocol # to use, pick something "reserved" */
468 SYSCTL_NODE(_net_inet
, 253, ipsec
, CTLFLAG_RW
, 0, "IPSEC");
469 SYSCTL_NODE(_net_inet
, IPPROTO_AH
, ah
, CTLFLAG_RW
, 0, "AH");
470 SYSCTL_NODE(_net_inet
, IPPROTO_ESP
, esp
, CTLFLAG_RW
, 0, "ESP");
471 SYSCTL_NODE(_net_inet
, IPPROTO_IPCOMP
, ipcomp
, CTLFLAG_RW
, 0, "IPCOMP");
472 SYSCTL_NODE(_net_inet
, IPPROTO_IPIP
, ipip
, CTLFLAG_RW
, 0, "IPIP");
475 SYSCTL_NODE(_net_inet
, IPPROTO_AH
, ipsec
, CTLFLAG_RW
, 0, "IPSEC");
477 #endif /* !FAST_IPSEC */
478 SYSCTL_NODE(_net_inet
, IPPROTO_RAW
, raw
, CTLFLAG_RW
, 0, "RAW");
480 SYSCTL_NODE(_net_inet
, IPPROTO_DIVERT
, divert
, CTLFLAG_RW
, 0, "DIVERT");
483 SYSCTL_NODE(_net_inet
, IPPROTO_PIM
, pim
, CTLFLAG_RW
, 0, "PIM");
486 SYSCTL_NODE(_net_inet
, IPPROTO_CARP
, carp
, CTLFLAG_RW
, 0, "CARP");