xref: /freebsd/sys/netinet/in_proto.c (revision 29363fb446372cb3f10bc98664e9767c53fbb457)
1c398230bSWarner Losh /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
4df8bae1dSRodney W. Grimes  * Copyright (c) 1982, 1986, 1993
5df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
6df8bae1dSRodney W. Grimes  *
7df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
8df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
9df8bae1dSRodney W. Grimes  * are met:
10df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
12df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
13df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
14df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
16df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
17df8bae1dSRodney W. Grimes  *    without specific prior written permission.
18df8bae1dSRodney W. Grimes  *
19df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
30df8bae1dSRodney W. Grimes  */
31df8bae1dSRodney W. Grimes 
324b421e2dSMike Silbersack #include <sys/cdefs.h>
331e78ac21SJeffrey Hsu #include "opt_mrouting.h"
346a800098SYoshinobu Inoue #include "opt_ipsec.h"
35336d023bSBjoern A. Zeeb #include "opt_inet.h"
366a800098SYoshinobu Inoue #include "opt_inet6.h"
37f8829a4aSRandall Stewart #include "opt_sctp.h"
38fbd1372aSJoerg Wunsch 
39df8bae1dSRodney W. Grimes #include <sys/param.h>
40340c35deSJonathan Lemon #include <sys/systm.h>
41748e0b0aSGarrett Wollman #include <sys/kernel.h>
428ec07310SGleb Smirnoff #include <sys/malloc.h>
43df8bae1dSRodney W. Grimes #include <sys/socket.h>
44df8bae1dSRodney W. Grimes #include <sys/domain.h>
45385195c0SMarko Zec #include <sys/proc.h>
46dcc3cb75SPoul-Henning Kamp #include <sys/protosw.h>
47ce02431fSDoug Rabson #include <sys/queue.h>
4898163b98SPoul-Henning Kamp #include <sys/sysctl.h>
49df8bae1dSRodney W. Grimes 
50*77fe40cfSGleb Smirnoff #include <net/if.h>
51*77fe40cfSGleb Smirnoff #include <net/if_var.h>
5292e190f1SGleb Smirnoff #include <netinet/in.h>
53*77fe40cfSGleb Smirnoff #include <netinet/in_var.h>
5492e190f1SGleb Smirnoff 
55336d023bSBjoern A. Zeeb /*
56336d023bSBjoern A. Zeeb  * While this file provides the domain and protocol switch tables for IPv4, it
57336d023bSBjoern A. Zeeb  * also provides the sysctl node declarations for net.inet.* often shared with
58336d023bSBjoern A. Zeeb  * IPv6 for common features or by upper layer protocols.  In case of no IPv4
59336d023bSBjoern A. Zeeb  * support compile out everything but these sysctl nodes.
60336d023bSBjoern A. Zeeb  */
61336d023bSBjoern A. Zeeb #ifdef INET
62e7d02be1SGleb Smirnoff /* netinet/raw_ip.c */
6361f7427fSGleb Smirnoff extern struct protosw rip_protosw;
64e7d02be1SGleb Smirnoff /* netinet/udp_usrreq.c */
65e7d02be1SGleb Smirnoff extern struct protosw udp_protosw, udplite_protosw;
6692e190f1SGleb Smirnoff /* netinet/tcp_usrreq.c */
6792e190f1SGleb Smirnoff extern struct protosw tcp_protosw;
68*77fe40cfSGleb Smirnoff /* netinet/sctp_usrreq.c */
69*77fe40cfSGleb Smirnoff extern struct protosw sctp_seqpacket_protosw, sctp_stream_protosw;
70e7d02be1SGleb Smirnoff 
718d5a3ca7SBjoern A. Zeeb FEATURE(inet, "Internet Protocol version 4");
728d5a3ca7SBjoern A. Zeeb 
73303989a2SRuslan Ermilov struct domain inetdomain = {
74303989a2SRuslan Ermilov 	.dom_family =		AF_INET,
75303989a2SRuslan Ermilov 	.dom_name =		"internet",
76303989a2SRuslan Ermilov 	.dom_rtattach =		in_inithead,
77bc29160dSMarko Zec #ifdef VIMAGE
78bc29160dSMarko Zec 	.dom_rtdetach =		in_detachhead,
79bc29160dSMarko Zec #endif
806e6b3f7cSQing Li 	.dom_ifattach =		in_domifattach,
81e7d02be1SGleb Smirnoff 	.dom_ifdetach =		in_domifdetach,
8261f7427fSGleb Smirnoff 	.dom_nprotosw =		14,
83e7d02be1SGleb Smirnoff 	.dom_protosw = {
84e7d02be1SGleb Smirnoff 		&tcp_protosw,
85e7d02be1SGleb Smirnoff 		&udp_protosw,
86e7d02be1SGleb Smirnoff #ifdef SCTP
87e7d02be1SGleb Smirnoff 		&sctp_seqpacket_protosw,
88e7d02be1SGleb Smirnoff 		&sctp_stream_protosw,
89e7d02be1SGleb Smirnoff #else
90e7d02be1SGleb Smirnoff 		NULL, NULL,
91e7d02be1SGleb Smirnoff #endif
92e7d02be1SGleb Smirnoff 		&udplite_protosw,
93e7d02be1SGleb Smirnoff 		&rip_protosw,
94e7d02be1SGleb Smirnoff 		/* Spacer 8 times for loadable protocols. XXXGL: why 8? */
95e7d02be1SGleb Smirnoff 		NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
96e7d02be1SGleb Smirnoff 	},
975c2dae8eSGarrett Wollman };
98df8bae1dSRodney W. Grimes 
99644ca084SGleb Smirnoff DOMAIN_SET(inet);
100336d023bSBjoern A. Zeeb #endif /* INET */
101748e0b0aSGarrett Wollman 
1027029da5cSPawel Biernacki SYSCTL_NODE(_net, PF_INET, inet, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
103602d513cSGarrett Wollman     "Internet Family");
10498163b98SPoul-Henning Kamp 
1057029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_IP, ip, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1067029da5cSPawel Biernacki     "IP");
1077029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_ICMP, icmp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1087029da5cSPawel Biernacki     "ICMP");
1097029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_UDP, udp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1107029da5cSPawel Biernacki     "UDP");
1117029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_TCP, tcp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1127029da5cSPawel Biernacki     "TCP");
11395033af9SMark Johnston #if defined(SCTP) || defined(SCTP_SUPPORT)
1147029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_SCTP, sctp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1157029da5cSPawel Biernacki     "SCTP");
116f8829a4aSRandall Stewart #endif
1177029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_IGMP, igmp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1187029da5cSPawel Biernacki     "IGMP");
119fcf59617SAndrey V. Elsukov #if defined(IPSEC) || defined(IPSEC_SUPPORT)
120b9234fafSSam Leffler /* XXX no protocol # to use, pick something "reserved" */
1217029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, 253, ipsec, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1227029da5cSPawel Biernacki     "IPSEC");
1237029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_AH, ah, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1247029da5cSPawel Biernacki     "AH");
1257029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_ESP, esp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1267029da5cSPawel Biernacki     "ESP");
1277029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_IPCOMP, ipcomp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1287029da5cSPawel Biernacki     "IPCOMP");
1297029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_IPIP, ipip, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1307029da5cSPawel Biernacki     "IPIP");
131b2630c29SGeorge V. Neville-Neil #endif /* IPSEC */
1327029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_RAW, raw, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1337029da5cSPawel Biernacki     "RAW");
1347029da5cSPawel Biernacki SYSCTL_NODE(_net_inet, OID_AUTO, accf, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1351e0a021eSMarcel Moolenaar     "Accept filters");
136