Home | History | Annotate | Line # | Download | only in netinet
in_proto.c revision 1.2
      1  1.1    cgd /*
      2  1.1    cgd  * Copyright (c) 1982, 1986 Regents of the University of California.
      3  1.1    cgd  * All rights reserved.
      4  1.1    cgd  *
      5  1.1    cgd  * Redistribution and use in source and binary forms, with or without
      6  1.1    cgd  * modification, are permitted provided that the following conditions
      7  1.1    cgd  * are met:
      8  1.1    cgd  * 1. Redistributions of source code must retain the above copyright
      9  1.1    cgd  *    notice, this list of conditions and the following disclaimer.
     10  1.1    cgd  * 2. Redistributions in binary form must reproduce the above copyright
     11  1.1    cgd  *    notice, this list of conditions and the following disclaimer in the
     12  1.1    cgd  *    documentation and/or other materials provided with the distribution.
     13  1.1    cgd  * 3. All advertising materials mentioning features or use of this software
     14  1.1    cgd  *    must display the following acknowledgement:
     15  1.1    cgd  *	This product includes software developed by the University of
     16  1.1    cgd  *	California, Berkeley and its contributors.
     17  1.1    cgd  * 4. Neither the name of the University nor the names of its contributors
     18  1.1    cgd  *    may be used to endorse or promote products derived from this software
     19  1.1    cgd  *    without specific prior written permission.
     20  1.1    cgd  *
     21  1.1    cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22  1.1    cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  1.1    cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1    cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25  1.1    cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  1.1    cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  1.1    cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  1.1    cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  1.1    cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  1.1    cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  1.1    cgd  * SUCH DAMAGE.
     32  1.1    cgd  *
     33  1.1    cgd  *	@(#)in_proto.c	7.5 (Berkeley) 6/28/90
     34  1.1    cgd  */
     35  1.1    cgd 
     36  1.1    cgd #include "param.h"
     37  1.1    cgd #include "socket.h"
     38  1.1    cgd #include "protosw.h"
     39  1.1    cgd #include "domain.h"
     40  1.1    cgd #include "mbuf.h"
     41  1.1    cgd 
     42  1.1    cgd #include "in.h"
     43  1.1    cgd #include "in_systm.h"
     44  1.1    cgd 
     45  1.1    cgd /*
     46  1.1    cgd  * TCP/IP protocol family: IP, ICMP, UDP, TCP.
     47  1.1    cgd  */
     48  1.1    cgd int	ip_output(),ip_ctloutput();
     49  1.1    cgd int	ip_init(),ip_slowtimo(),ip_drain();
     50  1.1    cgd int	icmp_input();
     51  1.1    cgd int	udp_input(),udp_ctlinput();
     52  1.1    cgd int	udp_usrreq();
     53  1.1    cgd int	udp_init();
     54  1.1    cgd int	tcp_input(),tcp_ctlinput();
     55  1.1    cgd int	tcp_usrreq(),tcp_ctloutput();
     56  1.1    cgd int	tcp_init(),tcp_fasttimo(),tcp_slowtimo(),tcp_drain();
     57  1.1    cgd int	rip_input(),rip_output(),rip_ctloutput(), rip_usrreq();
     58  1.1    cgd /*
     59  1.1    cgd  * IMP protocol family: raw interface.
     60  1.1    cgd  * Using the raw interface entry to get the timer routine
     61  1.1    cgd  * in is a kludge.
     62  1.1    cgd  */
     63  1.2  glass #ifdef IMP
     64  1.1    cgd int	rimp_output(), hostslowtimo();
     65  1.1    cgd #endif
     66  1.1    cgd 
     67  1.1    cgd #ifdef NSIP
     68  1.1    cgd int	idpip_input(), nsip_ctlinput();
     69  1.1    cgd #endif
     70  1.1    cgd 
     71  1.1    cgd #ifdef TPIP
     72  1.1    cgd int	tpip_input(), tpip_ctlinput(), tp_ctloutput(), tp_usrreq();
     73  1.1    cgd int	tp_init(), tp_slowtimo(), tp_drain();
     74  1.1    cgd #endif
     75  1.1    cgd 
     76  1.1    cgd #ifdef EON
     77  1.1    cgd int	eoninput(), eonctlinput(), eonprotoinit();
     78  1.1    cgd #endif EON
     79  1.1    cgd 
     80  1.1    cgd extern	struct domain inetdomain;
     81  1.1    cgd 
     82  1.1    cgd struct protosw inetsw[] = {
     83  1.1    cgd { 0,		&inetdomain,	0,		0,
     84  1.1    cgd   0,		ip_output,	0,		0,
     85  1.1    cgd   0,
     86  1.1    cgd   ip_init,	0,		ip_slowtimo,	ip_drain,
     87  1.1    cgd },
     88  1.1    cgd { SOCK_DGRAM,	&inetdomain,	IPPROTO_UDP,	PR_ATOMIC|PR_ADDR,
     89  1.1    cgd   udp_input,	0,		udp_ctlinput,	ip_ctloutput,
     90  1.1    cgd   udp_usrreq,
     91  1.1    cgd   udp_init,	0,		0,		0,
     92  1.1    cgd },
     93  1.1    cgd { SOCK_STREAM,	&inetdomain,	IPPROTO_TCP,	PR_CONNREQUIRED|PR_WANTRCVD,
     94  1.1    cgd   tcp_input,	0,		tcp_ctlinput,	tcp_ctloutput,
     95  1.1    cgd   tcp_usrreq,
     96  1.1    cgd   tcp_init,	tcp_fasttimo,	tcp_slowtimo,	tcp_drain,
     97  1.1    cgd },
     98  1.1    cgd { SOCK_RAW,	&inetdomain,	IPPROTO_RAW,	PR_ATOMIC|PR_ADDR,
     99  1.1    cgd   rip_input,	rip_output,	0,		rip_ctloutput,
    100  1.1    cgd   rip_usrreq,
    101  1.1    cgd   0,		0,		0,		0,
    102  1.1    cgd },
    103  1.1    cgd { SOCK_RAW,	&inetdomain,	IPPROTO_ICMP,	PR_ATOMIC|PR_ADDR,
    104  1.1    cgd   icmp_input,	rip_output,	0,		rip_ctloutput,
    105  1.1    cgd   rip_usrreq,
    106  1.1    cgd   0,		0,		0,		0,
    107  1.1    cgd },
    108  1.1    cgd #ifdef TPIP
    109  1.1    cgd { SOCK_SEQPACKET,&inetdomain,	IPPROTO_TP,	PR_CONNREQUIRED|PR_WANTRCVD,
    110  1.1    cgd   tpip_input,	0,		tpip_ctlinput,		tp_ctloutput,
    111  1.1    cgd   tp_usrreq,
    112  1.1    cgd   tp_init,	0,		tp_slowtimo,	tp_drain,
    113  1.1    cgd },
    114  1.1    cgd #endif
    115  1.1    cgd /* EON (ISO CLNL over IP) */
    116  1.1    cgd #ifdef EON
    117  1.1    cgd { SOCK_RAW,	&inetdomain,	IPPROTO_EON,	0,
    118  1.1    cgd   eoninput,	0,		eonctlinput,		0,
    119  1.1    cgd   0,
    120  1.1    cgd   eonprotoinit,	0,		0,		0,
    121  1.1    cgd },
    122  1.1    cgd #endif
    123  1.1    cgd #ifdef NSIP
    124  1.1    cgd { SOCK_RAW,	&inetdomain,	IPPROTO_IDP,	PR_ATOMIC|PR_ADDR,
    125  1.1    cgd   idpip_input,	rip_output,	nsip_ctlinput,	0,
    126  1.1    cgd   rip_usrreq,
    127  1.1    cgd   0,		0,		0,		0,
    128  1.1    cgd },
    129  1.1    cgd #endif
    130  1.1    cgd 	/* raw wildcard */
    131  1.1    cgd { SOCK_RAW,	&inetdomain,	0,		PR_ATOMIC|PR_ADDR,
    132  1.1    cgd   rip_input,	rip_output,	0,		rip_ctloutput,
    133  1.1    cgd   rip_usrreq,
    134  1.1    cgd   0,		0,		0,		0,
    135  1.1    cgd },
    136  1.1    cgd };
    137  1.1    cgd 
    138  1.1    cgd struct domain inetdomain =
    139  1.1    cgd     { AF_INET, "internet", 0, 0, 0,
    140  1.1    cgd       inetsw, &inetsw[sizeof(inetsw)/sizeof(inetsw[0])] };
    141  1.1    cgd 
    142  1.1    cgd #if NIMP > 0
    143  1.1    cgd extern	struct domain impdomain;
    144  1.1    cgd 
    145  1.1    cgd struct protosw impsw[] = {
    146  1.1    cgd { SOCK_RAW,	&impdomain,	0,		PR_ATOMIC|PR_ADDR,
    147  1.1    cgd   0,		rimp_output,	0,		0,
    148  1.1    cgd   rip_usrreq,
    149  1.1    cgd   0,		0,		hostslowtimo,	0,
    150  1.1    cgd },
    151  1.1    cgd };
    152  1.1    cgd 
    153  1.1    cgd struct domain impdomain =
    154  1.1    cgd     { AF_IMPLINK, "imp", 0, 0, 0,
    155  1.1    cgd       impsw, &impsw[sizeof (impsw)/sizeof(impsw[0])] };
    156  1.1    cgd #endif
    157  1.1    cgd 
    158