]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/in_proto.c
protosw: cleanup protocols that existed merely to provide pr_input
[FreeBSD/FreeBSD.git] / sys / netinet / in_proto.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1993
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  *      @(#)in_proto.c  8.2 (Berkeley) 2/9/95
32  */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 #include "opt_mrouting.h"
38 #include "opt_ipsec.h"
39 #include "opt_inet.h"
40 #include "opt_inet6.h"
41 #include "opt_sctp.h"
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/kernel.h>
46 #include <sys/malloc.h>
47 #include <sys/socket.h>
48 #include <sys/domain.h>
49 #include <sys/proc.h>
50 #include <sys/protosw.h>
51 #include <sys/queue.h>
52 #include <sys/sysctl.h>
53
54 /*
55  * While this file provides the domain and protocol switch tables for IPv4, it
56  * also provides the sysctl node declarations for net.inet.* often shared with
57  * IPv6 for common features or by upper layer protocols.  In case of no IPv4
58  * support compile out everything but these sysctl nodes.
59  */
60 #ifdef INET
61 #include <net/if.h>
62 #include <net/if_var.h>
63 #include <net/route.h>
64 #include <net/vnet.h>
65 #endif /* INET */
66
67 #if defined(INET) || defined(INET6)
68 #include <netinet/in.h>
69 #endif
70
71 #ifdef INET
72 #include <netinet/in_systm.h>
73 #include <netinet/in_var.h>
74 #include <netinet/ip.h>
75 #include <netinet/ip_var.h>
76 #include <netinet/ip_icmp.h>
77 #include <netinet/igmp_var.h>
78 #include <netinet/tcp.h>
79 #include <netinet/tcp_timer.h>
80 #include <netinet/tcp_var.h>
81 #include <netinet/udp.h>
82 #include <netinet/udp_var.h>
83 #include <netinet/ip_encap.h>
84
85 /*
86  * TCP/IP protocol family: IP, ICMP, UDP, TCP.
87  */
88
89 #ifdef SCTP
90 #include <netinet/in_pcb.h>
91 #include <netinet/sctp_pcb.h>
92 #include <netinet/sctp.h>
93 #include <netinet/sctp_var.h>
94 #endif
95
96 /* netinet/raw_ip.c */
97 extern struct protosw rip_protosw;
98 /* netinet/udp_usrreq.c */
99 extern struct protosw udp_protosw, udplite_protosw;
100
101 FEATURE(inet, "Internet Protocol version 4");
102
103 struct domain inetdomain = {
104         .dom_family =           AF_INET,
105         .dom_name =             "internet",
106         .dom_rtattach =         in_inithead,
107 #ifdef VIMAGE
108         .dom_rtdetach =         in_detachhead,
109 #endif
110         .dom_ifattach =         in_domifattach,
111         .dom_ifdetach =         in_domifdetach,
112         .dom_nprotosw =         14,
113         .dom_protosw = {
114                 &tcp_protosw,
115                 &udp_protosw,
116 #ifdef SCTP
117                 &sctp_seqpacket_protosw,
118                 &sctp_stream_protosw,
119 #else
120                 NULL, NULL,
121 #endif
122                 &udplite_protosw,
123                 &rip_protosw,
124                 /* Spacer 8 times for loadable protocols. XXXGL: why 8? */
125                 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
126         },
127 };
128
129 DOMAIN_SET(inet);
130 #endif /* INET */
131
132 SYSCTL_NODE(_net, PF_INET, inet, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
133     "Internet Family");
134
135 SYSCTL_NODE(_net_inet, IPPROTO_IP, ip, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
136     "IP");
137 SYSCTL_NODE(_net_inet, IPPROTO_ICMP, icmp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
138     "ICMP");
139 SYSCTL_NODE(_net_inet, IPPROTO_UDP, udp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
140     "UDP");
141 SYSCTL_NODE(_net_inet, IPPROTO_TCP, tcp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
142     "TCP");
143 #if defined(SCTP) || defined(SCTP_SUPPORT)
144 SYSCTL_NODE(_net_inet, IPPROTO_SCTP, sctp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
145     "SCTP");
146 #endif
147 SYSCTL_NODE(_net_inet, IPPROTO_IGMP, igmp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
148     "IGMP");
149 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
150 /* XXX no protocol # to use, pick something "reserved" */
151 SYSCTL_NODE(_net_inet, 253, ipsec, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
152     "IPSEC");
153 SYSCTL_NODE(_net_inet, IPPROTO_AH, ah, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
154     "AH");
155 SYSCTL_NODE(_net_inet, IPPROTO_ESP, esp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
156     "ESP");
157 SYSCTL_NODE(_net_inet, IPPROTO_IPCOMP, ipcomp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
158     "IPCOMP");
159 SYSCTL_NODE(_net_inet, IPPROTO_IPIP, ipip, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
160     "IPIP");
161 #endif /* IPSEC */
162 SYSCTL_NODE(_net_inet, IPPROTO_RAW, raw, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
163     "RAW");
164 SYSCTL_NODE(_net_inet, OID_AUTO, accf, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
165     "Accept filters");