1994-09-15 10:36:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1982, 1986, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1995-09-21 17:58:07 +00:00
|
|
|
* @(#)in_proto.c 8.2 (Berkeley) 2/9/95
|
1999-02-16 10:49:55 +00:00
|
|
|
* $Id: in_proto.c,v 1.47 1998/08/23 03:07:14 wollman Exp $
|
1994-09-15 10:36:56 +00:00
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1997-11-05 20:17:23 +00:00
|
|
|
#include "opt_ipdivert.h"
|
1997-12-15 20:31:25 +00:00
|
|
|
#include "opt_ipx.h"
|
1997-11-05 20:17:23 +00:00
|
|
|
|
1994-09-15 10:36:56 +00:00
|
|
|
#include <sys/param.h>
|
1995-05-11 00:13:26 +00:00
|
|
|
#include <sys/kernel.h>
|
1994-09-15 10:36:56 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/domain.h>
|
1995-11-20 12:28:21 +00:00
|
|
|
#include <sys/protosw.h>
|
1999-02-16 10:49:55 +00:00
|
|
|
#include <sys/queue.h>
|
1995-11-09 20:23:09 +00:00
|
|
|
#include <sys/sysctl.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1994-09-15 10:36:56 +00:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/route.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1994-09-15 10:36:56 +00:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <netinet/ip_var.h>
|
|
|
|
#include <netinet/ip_icmp.h>
|
|
|
|
#include <netinet/igmp_var.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <netinet/tcp_timer.h>
|
|
|
|
#include <netinet/tcp_var.h>
|
|
|
|
#include <netinet/udp.h>
|
|
|
|
#include <netinet/udp_var.h>
|
|
|
|
/*
|
|
|
|
* TCP/IP protocol family: IP, ICMP, UDP, TCP.
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1995-10-26 20:31:59 +00:00
|
|
|
#ifdef IPXIP
|
1995-12-02 19:38:06 +00:00
|
|
|
#include <netipx/ipx_ip.h>
|
1995-10-26 20:31:59 +00:00
|
|
|
#endif
|
|
|
|
|
1994-09-15 10:36:56 +00:00
|
|
|
#ifdef NSIP
|
1995-12-02 19:38:06 +00:00
|
|
|
#include <netns/ns.h>
|
|
|
|
#include <netns/ns_if.h>
|
1994-09-15 10:36:56 +00:00
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1994-09-15 10:36:56 +00:00
|
|
|
extern struct domain inetdomain;
|
1997-04-27 20:01:29 +00:00
|
|
|
static struct pr_usrreqs nousrreqs;
|
1994-09-06 22:42:31 +00:00
|
|
|
|
1994-09-15 10:36:56 +00:00
|
|
|
struct protosw inetsw[] = {
|
|
|
|
{ 0, &inetdomain, 0, 0,
|
1996-04-18 15:41:51 +00:00
|
|
|
0, 0, 0, 0,
|
1994-09-15 10:36:56 +00:00
|
|
|
0,
|
1997-04-27 20:01:29 +00:00
|
|
|
ip_init, 0, ip_slowtimo, ip_drain,
|
|
|
|
&nousrreqs
|
1994-09-15 10:36:56 +00:00
|
|
|
},
|
|
|
|
{ SOCK_DGRAM, &inetdomain, IPPROTO_UDP, PR_ATOMIC|PR_ADDR,
|
|
|
|
udp_input, 0, udp_ctlinput, ip_ctloutput,
|
1997-02-14 18:15:53 +00:00
|
|
|
0,
|
|
|
|
udp_init, 0, 0, 0,
|
|
|
|
&udp_usrreqs
|
1994-09-15 10:36:56 +00:00
|
|
|
},
|
1995-02-08 20:22:09 +00:00
|
|
|
{ SOCK_STREAM, &inetdomain, IPPROTO_TCP,
|
|
|
|
PR_CONNREQUIRED|PR_IMPLOPCL|PR_WANTRCVD,
|
1994-09-15 10:36:56 +00:00
|
|
|
tcp_input, 0, tcp_ctlinput, tcp_ctloutput,
|
1996-07-11 16:32:50 +00:00
|
|
|
0,
|
|
|
|
tcp_init, tcp_fasttimo, tcp_slowtimo, tcp_drain,
|
|
|
|
&tcp_usrreqs
|
1994-09-15 10:36:56 +00:00
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_RAW, PR_ATOMIC|PR_ADDR,
|
1997-02-13 19:46:45 +00:00
|
|
|
rip_input, 0, rip_ctlinput, rip_ctloutput,
|
1997-02-18 20:46:36 +00:00
|
|
|
0,
|
1994-09-15 10:36:56 +00:00
|
|
|
0, 0, 0, 0,
|
1997-02-18 20:46:36 +00:00
|
|
|
&rip_usrreqs
|
1994-09-15 10:36:56 +00:00
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_ICMP, PR_ATOMIC|PR_ADDR,
|
1996-05-08 04:34:03 +00:00
|
|
|
icmp_input, 0, 0, rip_ctloutput,
|
1997-02-18 20:46:36 +00:00
|
|
|
0,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
&rip_usrreqs
|
1994-09-15 10:36:56 +00:00
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IGMP, PR_ATOMIC|PR_ADDR,
|
1996-05-08 04:34:03 +00:00
|
|
|
igmp_input, 0, 0, rip_ctloutput,
|
1997-02-18 20:46:36 +00:00
|
|
|
0,
|
|
|
|
igmp_init, igmp_fasttimo, igmp_slowtimo, 0,
|
|
|
|
&rip_usrreqs
|
1994-09-15 10:36:56 +00:00
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_RSVP, PR_ATOMIC|PR_ADDR,
|
1996-05-08 04:34:03 +00:00
|
|
|
rsvp_input, 0, 0, rip_ctloutput,
|
1997-02-18 20:46:36 +00:00
|
|
|
0,
|
1994-09-15 10:36:56 +00:00
|
|
|
0, 0, 0, 0,
|
1997-02-18 20:46:36 +00:00
|
|
|
&rip_usrreqs
|
1994-09-15 10:36:56 +00:00
|
|
|
},
|
1995-06-26 16:11:51 +00:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IPIP, PR_ATOMIC|PR_ADDR,
|
1996-05-08 04:34:03 +00:00
|
|
|
ipip_input, 0, 0, rip_ctloutput,
|
1997-02-18 20:46:36 +00:00
|
|
|
0,
|
1994-09-15 10:36:56 +00:00
|
|
|
0, 0, 0, 0,
|
1997-02-18 20:46:36 +00:00
|
|
|
&rip_usrreqs
|
1994-09-15 10:36:56 +00:00
|
|
|
},
|
1996-07-10 19:44:30 +00:00
|
|
|
#ifdef IPDIVERT
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_DIVERT, PR_ATOMIC|PR_ADDR,
|
|
|
|
div_input, 0, 0, ip_ctloutput,
|
1997-05-25 06:09:23 +00:00
|
|
|
0,
|
1996-07-10 19:44:30 +00:00
|
|
|
div_init, 0, 0, 0,
|
1997-05-25 06:09:23 +00:00
|
|
|
&div_usrreqs,
|
1996-07-10 19:44:30 +00:00
|
|
|
},
|
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
#ifdef TPIP
|
|
|
|
{ SOCK_SEQPACKET,&inetdomain, IPPROTO_TP, PR_CONNREQUIRED|PR_WANTRCVD,
|
|
|
|
tpip_input, 0, tpip_ctlinput, tp_ctloutput,
|
|
|
|
tp_usrreq,
|
|
|
|
tp_init, 0, tp_slowtimo, tp_drain,
|
|
|
|
},
|
|
|
|
#endif
|
|
|
|
/* EON (ISO CLNL over IP) */
|
|
|
|
#ifdef EON
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_EON, 0,
|
|
|
|
eoninput, 0, eonctlinput, 0,
|
|
|
|
0,
|
|
|
|
eonprotoinit, 0, 0, 0,
|
|
|
|
},
|
|
|
|
#endif
|
1995-10-26 20:31:59 +00:00
|
|
|
#ifdef IPXIP
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IDP, PR_ATOMIC|PR_ADDR,
|
1996-05-08 04:34:03 +00:00
|
|
|
ipxip_input, 0, ipxip_ctlinput, 0,
|
1997-02-18 20:46:36 +00:00
|
|
|
0,
|
1995-10-26 20:31:59 +00:00
|
|
|
0, 0, 0, 0,
|
1997-02-18 20:46:36 +00:00
|
|
|
&rip_usrreqs
|
1995-10-26 20:31:59 +00:00
|
|
|
},
|
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
#ifdef NSIP
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IDP, PR_ATOMIC|PR_ADDR,
|
1996-06-20 17:52:32 +00:00
|
|
|
idpip_input, 0, nsip_ctlinput, 0,
|
1997-02-18 20:46:36 +00:00
|
|
|
0,
|
1994-05-24 10:09:53 +00:00
|
|
|
0, 0, 0, 0,
|
1997-02-18 20:46:36 +00:00
|
|
|
&rip_usrreqs
|
1994-05-24 10:09:53 +00:00
|
|
|
},
|
|
|
|
#endif
|
|
|
|
/* raw wildcard */
|
|
|
|
{ SOCK_RAW, &inetdomain, 0, PR_ATOMIC|PR_ADDR,
|
1996-05-08 04:34:03 +00:00
|
|
|
rip_input, 0, 0, rip_ctloutput,
|
1997-02-18 20:46:36 +00:00
|
|
|
0,
|
1994-05-24 10:09:53 +00:00
|
|
|
rip_init, 0, 0, 0,
|
1997-02-18 20:46:36 +00:00
|
|
|
&rip_usrreqs
|
1994-05-24 10:09:53 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
1997-09-16 11:44:05 +00:00
|
|
|
extern int in_inithead __P((void **, int));
|
1994-11-02 04:41:39 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
struct domain inetdomain =
|
1995-06-13 17:51:16 +00:00
|
|
|
{ AF_INET, "internet", 0, 0, 0,
|
1994-05-24 10:09:53 +00:00
|
|
|
inetsw, &inetsw[sizeof(inetsw)/sizeof(inetsw[0])], 0,
|
1994-11-02 04:41:39 +00:00
|
|
|
in_inithead, 32, sizeof(struct sockaddr_in)
|
|
|
|
};
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1995-05-11 00:13:26 +00:00
|
|
|
DOMAIN_SET(inet);
|
|
|
|
|
1995-12-20 21:53:53 +00:00
|
|
|
SYSCTL_NODE(_net, PF_INET, inet, CTLFLAG_RW, 0,
|
|
|
|
"Internet Family");
|
1995-11-09 20:23:09 +00:00
|
|
|
|
1995-12-20 21:53:53 +00:00
|
|
|
SYSCTL_NODE(_net_inet, IPPROTO_IP, ip, CTLFLAG_RW, 0, "IP");
|
|
|
|
SYSCTL_NODE(_net_inet, IPPROTO_ICMP, icmp, CTLFLAG_RW, 0, "ICMP");
|
|
|
|
SYSCTL_NODE(_net_inet, IPPROTO_UDP, udp, CTLFLAG_RW, 0, "UDP");
|
|
|
|
SYSCTL_NODE(_net_inet, IPPROTO_TCP, tcp, CTLFLAG_RW, 0, "TCP");
|
|
|
|
SYSCTL_NODE(_net_inet, IPPROTO_IGMP, igmp, CTLFLAG_RW, 0, "IGMP");
|
1997-02-18 20:46:36 +00:00
|
|
|
SYSCTL_NODE(_net_inet, IPPROTO_RAW, raw, CTLFLAG_RW, 0, "RAW");
|
1996-07-10 19:44:30 +00:00
|
|
|
#ifdef IPDIVERT
|
|
|
|
SYSCTL_NODE(_net_inet, IPPROTO_DIVERT, div, CTLFLAG_RW, 0, "DIVERT");
|
|
|
|
#endif
|
1995-11-09 20:23:09 +00:00
|
|
|
|