Home | History | Annotate | Line # | Download | only in netinet
in_pcb.c revision 1.39
      1  1.39      matt /*	$NetBSD: in_pcb.c,v 1.39 1997/10/14 00:52:49 matt Exp $	*/
      2  1.11       cgd 
      3   1.1       cgd /*
      4  1.10   mycroft  * Copyright (c) 1982, 1986, 1991, 1993
      5  1.10   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  *
     35  1.11       cgd  *	@(#)in_pcb.c	8.2 (Berkeley) 1/4/94
     36   1.1       cgd  */
     37   1.1       cgd 
     38   1.7   mycroft #include <sys/param.h>
     39   1.7   mycroft #include <sys/systm.h>
     40   1.7   mycroft #include <sys/malloc.h>
     41   1.7   mycroft #include <sys/mbuf.h>
     42   1.7   mycroft #include <sys/protosw.h>
     43   1.7   mycroft #include <sys/socket.h>
     44   1.7   mycroft #include <sys/socketvar.h>
     45   1.7   mycroft #include <sys/ioctl.h>
     46  1.10   mycroft #include <sys/errno.h>
     47  1.10   mycroft #include <sys/time.h>
     48  1.10   mycroft #include <sys/proc.h>
     49   1.1       cgd 
     50   1.7   mycroft #include <net/if.h>
     51   1.7   mycroft #include <net/route.h>
     52   1.1       cgd 
     53   1.7   mycroft #include <netinet/in.h>
     54   1.7   mycroft #include <netinet/in_systm.h>
     55   1.7   mycroft #include <netinet/ip.h>
     56   1.7   mycroft #include <netinet/in_pcb.h>
     57   1.7   mycroft #include <netinet/in_var.h>
     58   1.7   mycroft #include <netinet/ip_var.h>
     59   1.1       cgd 
     60   1.1       cgd struct	in_addr zeroin_addr;
     61   1.1       cgd 
     62  1.33   mycroft #define	INPCBHASH_BIND(table, laddr, lport) \
     63  1.33   mycroft 	&(table)->inpt_bindhashtbl[ \
     64  1.33   mycroft 	    ((ntohl((laddr).s_addr) + ntohs(lport))) & (table)->inpt_bindhash]
     65  1.33   mycroft #define	INPCBHASH_CONNECT(table, faddr, fport, laddr, lport) \
     66  1.33   mycroft 	&(table)->inpt_connecthashtbl[ \
     67  1.33   mycroft 	    ((ntohl((faddr).s_addr) + ntohs(fport)) + \
     68  1.33   mycroft 	     (ntohl((laddr).s_addr) + ntohs(lport))) & (table)->inpt_connecthash]
     69  1.33   mycroft 
     70  1.33   mycroft struct inpcb *
     71  1.33   mycroft 	in_pcblookup_port __P((struct inpcbtable *,
     72  1.33   mycroft 	    struct in_addr, u_int, int));
     73  1.24   mycroft 
     74  1.18   mycroft void
     75  1.33   mycroft in_pcbinit(table, bindhashsize, connecthashsize)
     76  1.18   mycroft 	struct inpcbtable *table;
     77  1.33   mycroft 	int bindhashsize, connecthashsize;
     78  1.18   mycroft {
     79  1.18   mycroft 
     80  1.21       cgd 	CIRCLEQ_INIT(&table->inpt_queue);
     81  1.33   mycroft 	table->inpt_bindhashtbl =
     82  1.33   mycroft 	    hashinit(bindhashsize, M_PCB, &table->inpt_bindhash);
     83  1.33   mycroft 	table->inpt_connecthashtbl =
     84  1.33   mycroft 	    hashinit(connecthashsize, M_PCB, &table->inpt_connecthash);
     85  1.36   mycroft 	table->inpt_lastport = IPPORT_RESERVED;
     86  1.18   mycroft }
     87  1.18   mycroft 
     88  1.10   mycroft int
     89  1.25  christos in_pcballoc(so, v)
     90   1.1       cgd 	struct socket *so;
     91  1.25  christos 	void *v;
     92   1.1       cgd {
     93  1.25  christos 	struct inpcbtable *table = v;
     94   1.1       cgd 	register struct inpcb *inp;
     95  1.24   mycroft 	int s;
     96   1.1       cgd 
     97  1.10   mycroft 	MALLOC(inp, struct inpcb *, sizeof(*inp), M_PCB, M_WAITOK);
     98  1.10   mycroft 	if (inp == NULL)
     99   1.1       cgd 		return (ENOBUFS);
    100  1.10   mycroft 	bzero((caddr_t)inp, sizeof(*inp));
    101  1.18   mycroft 	inp->inp_table = table;
    102   1.1       cgd 	inp->inp_socket = so;
    103  1.39      matt 	inp->inp_errormtu = -1;
    104  1.33   mycroft 	so->so_pcb = inp;
    105  1.24   mycroft 	s = splnet();
    106  1.21       cgd 	CIRCLEQ_INSERT_HEAD(&table->inpt_queue, inp, inp_queue);
    107  1.33   mycroft 	in_pcbstate(inp, INP_ATTACHED);
    108  1.24   mycroft 	splx(s);
    109   1.1       cgd 	return (0);
    110   1.1       cgd }
    111   1.8   mycroft 
    112  1.10   mycroft int
    113  1.28   mycroft in_pcbbind(v, nam, p)
    114  1.28   mycroft 	void *v;
    115   1.1       cgd 	struct mbuf *nam;
    116  1.28   mycroft 	struct proc *p;
    117   1.1       cgd {
    118  1.25  christos 	register struct inpcb *inp = v;
    119   1.1       cgd 	register struct socket *so = inp->inp_socket;
    120  1.18   mycroft 	register struct inpcbtable *table = inp->inp_table;
    121   1.1       cgd 	register struct sockaddr_in *sin;
    122  1.13       cgd 	u_int16_t lport = 0;
    123  1.10   mycroft 	int wild = 0, reuseport = (so->so_options & SO_REUSEPORT);
    124  1.10   mycroft 	int error;
    125   1.1       cgd 
    126  1.18   mycroft 	if (in_ifaddr.tqh_first == 0)
    127   1.1       cgd 		return (EADDRNOTAVAIL);
    128  1.32   mycroft 	if (inp->inp_lport || !in_nullhost(inp->inp_laddr))
    129   1.1       cgd 		return (EINVAL);
    130  1.10   mycroft 	if ((so->so_options & (SO_REUSEADDR|SO_REUSEPORT)) == 0 &&
    131   1.4   deraadt 	    ((so->so_proto->pr_flags & PR_CONNREQUIRED) == 0 ||
    132   1.4   deraadt 	     (so->so_options & SO_ACCEPTCONN) == 0))
    133   1.4   deraadt 		wild = INPLOOKUP_WILDCARD;
    134  1.28   mycroft 	if (nam == 0)
    135  1.28   mycroft 		goto noname;
    136  1.28   mycroft 	sin = mtod(nam, struct sockaddr_in *);
    137  1.28   mycroft 	if (nam->m_len != sizeof (*sin))
    138  1.28   mycroft 		return (EINVAL);
    139  1.10   mycroft #ifdef notdef
    140  1.28   mycroft 	/*
    141  1.28   mycroft 	 * We should check the family, but old programs
    142  1.28   mycroft 	 * incorrectly fail to initialize it.
    143  1.28   mycroft 	 */
    144  1.28   mycroft 	if (sin->sin_family != AF_INET)
    145  1.28   mycroft 		return (EAFNOSUPPORT);
    146  1.28   mycroft #endif
    147  1.28   mycroft 	lport = sin->sin_port;
    148  1.28   mycroft 	if (IN_MULTICAST(sin->sin_addr.s_addr)) {
    149  1.10   mycroft 		/*
    150  1.28   mycroft 		 * Treat SO_REUSEADDR as SO_REUSEPORT for multicast;
    151  1.28   mycroft 		 * allow complete duplication of binding if
    152  1.28   mycroft 		 * SO_REUSEPORT is set, or if SO_REUSEADDR is set
    153  1.28   mycroft 		 * and a multicast address is bound on both
    154  1.28   mycroft 		 * new and duplicated sockets.
    155  1.10   mycroft 		 */
    156  1.28   mycroft 		if (so->so_options & SO_REUSEADDR)
    157  1.28   mycroft 			reuseport = SO_REUSEADDR|SO_REUSEPORT;
    158  1.32   mycroft 	} else if (!in_nullhost(sin->sin_addr)) {
    159  1.28   mycroft 		sin->sin_port = 0;		/* yech... */
    160  1.28   mycroft 		if (ifa_ifwithaddr(sintosa(sin)) == 0)
    161  1.28   mycroft 			return (EADDRNOTAVAIL);
    162  1.28   mycroft 	}
    163  1.28   mycroft 	if (lport) {
    164  1.28   mycroft 		struct inpcb *t;
    165  1.31     perry #ifndef IPNOPRIVPORTS
    166  1.28   mycroft 		/* GROSS */
    167  1.28   mycroft 		if (ntohs(lport) < IPPORT_RESERVED &&
    168  1.28   mycroft 		    (p == 0 || (error = suser(p->p_ucred, &p->p_acflag))))
    169  1.28   mycroft 			return (EACCES);
    170  1.31     perry #endif
    171  1.33   mycroft 		t = in_pcblookup_port(table, sin->sin_addr, lport, wild);
    172  1.28   mycroft 		if (t && (reuseport & t->inp_socket->so_options) == 0)
    173  1.28   mycroft 			return (EADDRINUSE);
    174   1.1       cgd 	}
    175  1.28   mycroft 	inp->inp_laddr = sin->sin_addr;
    176  1.28   mycroft noname:
    177  1.36   mycroft 	if (lport == 0) {
    178  1.36   mycroft 		for (lport = table->inpt_lastport + 1;
    179  1.36   mycroft 		    lport < IPPORT_USERRESERVED; lport++)
    180  1.36   mycroft 			if (!in_pcblookup_port(table, inp->inp_laddr,
    181  1.36   mycroft 			    htons(lport), wild))
    182  1.36   mycroft 				goto found;
    183  1.36   mycroft 		for (lport = IPPORT_RESERVED;
    184  1.36   mycroft 		    lport <= table->inpt_lastport; lport++)
    185  1.36   mycroft 			if (!in_pcblookup_port(table, inp->inp_laddr,
    186  1.36   mycroft 			    htons(lport), wild))
    187  1.36   mycroft 				goto found;
    188  1.36   mycroft 		return (EAGAIN);
    189  1.36   mycroft 	found:
    190  1.36   mycroft 		table->inpt_lastport = lport;
    191  1.36   mycroft 		lport = htons(lport);
    192  1.36   mycroft 	}
    193   1.1       cgd 	inp->inp_lport = lport;
    194  1.33   mycroft 	in_pcbstate(inp, INP_BOUND);
    195   1.1       cgd 	return (0);
    196   1.1       cgd }
    197   1.1       cgd 
    198   1.1       cgd /*
    199   1.1       cgd  * Connect from a socket to a specified address.
    200   1.1       cgd  * Both address and port must be specified in argument sin.
    201   1.1       cgd  * If don't have a local address for this socket yet,
    202   1.1       cgd  * then pick one.
    203   1.1       cgd  */
    204  1.10   mycroft int
    205  1.25  christos in_pcbconnect(v, nam)
    206  1.25  christos 	register void *v;
    207   1.1       cgd 	struct mbuf *nam;
    208   1.1       cgd {
    209  1.25  christos 	register struct inpcb *inp = v;
    210   1.1       cgd 	struct in_ifaddr *ia;
    211  1.25  christos 	struct sockaddr_in *ifaddr = NULL;
    212   1.1       cgd 	register struct sockaddr_in *sin = mtod(nam, struct sockaddr_in *);
    213   1.1       cgd 
    214   1.1       cgd 	if (nam->m_len != sizeof (*sin))
    215   1.1       cgd 		return (EINVAL);
    216   1.1       cgd 	if (sin->sin_family != AF_INET)
    217   1.1       cgd 		return (EAFNOSUPPORT);
    218   1.1       cgd 	if (sin->sin_port == 0)
    219   1.1       cgd 		return (EADDRNOTAVAIL);
    220  1.18   mycroft 	if (in_ifaddr.tqh_first != 0) {
    221   1.1       cgd 		/*
    222   1.1       cgd 		 * If the destination address is INADDR_ANY,
    223   1.1       cgd 		 * use the primary local address.
    224   1.1       cgd 		 * If the supplied address is INADDR_BROADCAST,
    225   1.1       cgd 		 * and the primary interface supports broadcast,
    226   1.1       cgd 		 * choose the broadcast address for that interface.
    227   1.1       cgd 		 */
    228  1.32   mycroft 		if (in_nullhost(sin->sin_addr))
    229  1.18   mycroft 			sin->sin_addr = in_ifaddr.tqh_first->ia_addr.sin_addr;
    230  1.14   mycroft 		else if (sin->sin_addr.s_addr == INADDR_BROADCAST &&
    231  1.18   mycroft 		  (in_ifaddr.tqh_first->ia_ifp->if_flags & IFF_BROADCAST))
    232  1.18   mycroft 			sin->sin_addr = in_ifaddr.tqh_first->ia_broadaddr.sin_addr;
    233   1.1       cgd 	}
    234  1.32   mycroft 	/*
    235  1.32   mycroft 	 * If we haven't bound which network number to use as ours,
    236  1.32   mycroft 	 * we will use the number of the outgoing interface.
    237  1.32   mycroft 	 * This depends on having done a routing lookup, which
    238  1.32   mycroft 	 * we will probably have to do anyway, so we might
    239  1.32   mycroft 	 * as well do it now.  On the other hand if we are
    240  1.32   mycroft 	 * sending to multiple destinations we may have already
    241  1.32   mycroft 	 * done the lookup, so see if we can use the route
    242  1.32   mycroft 	 * from before.  In any case, we only
    243  1.32   mycroft 	 * chose a port number once, even if sending to multiple
    244  1.32   mycroft 	 * destinations.
    245  1.32   mycroft 	 */
    246  1.32   mycroft 	if (in_nullhost(inp->inp_laddr)) {
    247   1.1       cgd 		register struct route *ro;
    248   1.1       cgd 
    249   1.1       cgd 		ia = (struct in_ifaddr *)0;
    250  1.10   mycroft 		/*
    251   1.1       cgd 		 * If route is known or can be allocated now,
    252   1.1       cgd 		 * our src addr is taken from the i/f, else punt.
    253   1.1       cgd 		 */
    254   1.1       cgd 		ro = &inp->inp_route;
    255   1.1       cgd 		if (ro->ro_rt &&
    256  1.32   mycroft 		    (!in_hosteq(satosin(&ro->ro_dst)->sin_addr,
    257  1.32   mycroft 			sin->sin_addr) ||
    258   1.1       cgd 		    inp->inp_socket->so_options & SO_DONTROUTE)) {
    259   1.1       cgd 			RTFREE(ro->ro_rt);
    260   1.1       cgd 			ro->ro_rt = (struct rtentry *)0;
    261   1.1       cgd 		}
    262   1.1       cgd 		if ((inp->inp_socket->so_options & SO_DONTROUTE) == 0 && /*XXX*/
    263   1.1       cgd 		    (ro->ro_rt == (struct rtentry *)0 ||
    264   1.1       cgd 		    ro->ro_rt->rt_ifp == (struct ifnet *)0)) {
    265   1.1       cgd 			/* No route yet, so try to acquire one */
    266   1.1       cgd 			ro->ro_dst.sa_family = AF_INET;
    267   1.1       cgd 			ro->ro_dst.sa_len = sizeof(struct sockaddr_in);
    268  1.15   mycroft 			satosin(&ro->ro_dst)->sin_addr = sin->sin_addr;
    269   1.1       cgd 			rtalloc(ro);
    270   1.1       cgd 		}
    271   1.1       cgd 		/*
    272   1.1       cgd 		 * If we found a route, use the address
    273   1.1       cgd 		 * corresponding to the outgoing interface
    274   1.1       cgd 		 * unless it is the loopback (in case a route
    275   1.1       cgd 		 * to our address on another net goes to loopback).
    276   1.1       cgd 		 */
    277  1.10   mycroft 		if (ro->ro_rt && !(ro->ro_rt->rt_ifp->if_flags & IFF_LOOPBACK))
    278  1.10   mycroft 			ia = ifatoia(ro->ro_rt->rt_ifa);
    279   1.1       cgd 		if (ia == 0) {
    280  1.13       cgd 			u_int16_t fport = sin->sin_port;
    281   1.1       cgd 
    282   1.1       cgd 			sin->sin_port = 0;
    283  1.27       mrg 			ia = ifatoia(ifa_ifwithladdr(sintosa(sin)));
    284   1.1       cgd 			sin->sin_port = fport;
    285   1.1       cgd 			if (ia == 0)
    286  1.18   mycroft 				ia = in_ifaddr.tqh_first;
    287   1.1       cgd 			if (ia == 0)
    288   1.1       cgd 				return (EADDRNOTAVAIL);
    289   1.1       cgd 		}
    290   1.6   hpeyerl 		/*
    291   1.6   hpeyerl 		 * If the destination address is multicast and an outgoing
    292   1.6   hpeyerl 		 * interface has been set as a multicast option, use the
    293   1.6   hpeyerl 		 * address of that interface as our source address.
    294   1.6   hpeyerl 		 */
    295  1.14   mycroft 		if (IN_MULTICAST(sin->sin_addr.s_addr) &&
    296   1.6   hpeyerl 		    inp->inp_moptions != NULL) {
    297   1.6   hpeyerl 			struct ip_moptions *imo;
    298   1.6   hpeyerl 			struct ifnet *ifp;
    299   1.8   mycroft 
    300   1.6   hpeyerl 			imo = inp->inp_moptions;
    301   1.6   hpeyerl 			if (imo->imo_multicast_ifp != NULL) {
    302   1.6   hpeyerl 				ifp = imo->imo_multicast_ifp;
    303  1.18   mycroft 				for (ia = in_ifaddr.tqh_first; ia != 0;
    304  1.18   mycroft 				    ia = ia->ia_list.tqe_next)
    305   1.6   hpeyerl 					if (ia->ia_ifp == ifp)
    306   1.6   hpeyerl 						break;
    307   1.6   hpeyerl 				if (ia == 0)
    308   1.6   hpeyerl 					return (EADDRNOTAVAIL);
    309   1.6   hpeyerl 			}
    310   1.6   hpeyerl 		}
    311  1.15   mycroft 		ifaddr = satosin(&ia->ia_addr);
    312   1.1       cgd 	}
    313  1.33   mycroft 	if (in_pcblookup_connect(inp->inp_table, sin->sin_addr, sin->sin_port,
    314  1.32   mycroft 	    !in_nullhost(inp->inp_laddr) ? inp->inp_laddr : ifaddr->sin_addr,
    315  1.24   mycroft 	    inp->inp_lport) != 0)
    316   1.1       cgd 		return (EADDRINUSE);
    317  1.32   mycroft 	if (in_nullhost(inp->inp_laddr)) {
    318   1.1       cgd 		if (inp->inp_lport == 0)
    319  1.28   mycroft 			(void)in_pcbbind(inp, (struct mbuf *)0,
    320  1.28   mycroft 			    (struct proc *)0);
    321   1.1       cgd 		inp->inp_laddr = ifaddr->sin_addr;
    322   1.1       cgd 	}
    323   1.1       cgd 	inp->inp_faddr = sin->sin_addr;
    324   1.1       cgd 	inp->inp_fport = sin->sin_port;
    325  1.33   mycroft 	in_pcbstate(inp, INP_CONNECTED);
    326   1.1       cgd 	return (0);
    327   1.1       cgd }
    328   1.1       cgd 
    329  1.25  christos void
    330  1.25  christos in_pcbdisconnect(v)
    331  1.25  christos 	void *v;
    332   1.1       cgd {
    333  1.25  christos 	struct inpcb *inp = v;
    334   1.1       cgd 
    335  1.32   mycroft 	inp->inp_faddr = zeroin_addr;
    336   1.1       cgd 	inp->inp_fport = 0;
    337  1.33   mycroft 	in_pcbstate(inp, INP_BOUND);
    338   1.1       cgd 	if (inp->inp_socket->so_state & SS_NOFDREF)
    339   1.1       cgd 		in_pcbdetach(inp);
    340   1.1       cgd }
    341   1.1       cgd 
    342  1.25  christos void
    343  1.25  christos in_pcbdetach(v)
    344  1.25  christos 	void *v;
    345   1.1       cgd {
    346  1.25  christos 	struct inpcb *inp = v;
    347   1.1       cgd 	struct socket *so = inp->inp_socket;
    348  1.24   mycroft 	int s;
    349   1.1       cgd 
    350   1.1       cgd 	so->so_pcb = 0;
    351   1.1       cgd 	sofree(so);
    352   1.1       cgd 	if (inp->inp_options)
    353   1.1       cgd 		(void)m_free(inp->inp_options);
    354   1.1       cgd 	if (inp->inp_route.ro_rt)
    355   1.1       cgd 		rtfree(inp->inp_route.ro_rt);
    356   1.6   hpeyerl 	ip_freemoptions(inp->inp_moptions);
    357  1.24   mycroft 	s = splnet();
    358  1.33   mycroft 	in_pcbstate(inp, INP_ATTACHED);
    359  1.21       cgd 	CIRCLEQ_REMOVE(&inp->inp_table->inpt_queue, inp, inp_queue);
    360  1.24   mycroft 	splx(s);
    361  1.10   mycroft 	FREE(inp, M_PCB);
    362   1.1       cgd }
    363   1.1       cgd 
    364  1.25  christos void
    365   1.1       cgd in_setsockaddr(inp, nam)
    366   1.1       cgd 	register struct inpcb *inp;
    367   1.1       cgd 	struct mbuf *nam;
    368   1.1       cgd {
    369   1.1       cgd 	register struct sockaddr_in *sin;
    370  1.10   mycroft 
    371   1.1       cgd 	nam->m_len = sizeof (*sin);
    372   1.1       cgd 	sin = mtod(nam, struct sockaddr_in *);
    373   1.1       cgd 	bzero((caddr_t)sin, sizeof (*sin));
    374   1.1       cgd 	sin->sin_family = AF_INET;
    375   1.1       cgd 	sin->sin_len = sizeof(*sin);
    376   1.1       cgd 	sin->sin_port = inp->inp_lport;
    377   1.1       cgd 	sin->sin_addr = inp->inp_laddr;
    378   1.1       cgd }
    379   1.1       cgd 
    380  1.25  christos void
    381   1.1       cgd in_setpeeraddr(inp, nam)
    382   1.1       cgd 	struct inpcb *inp;
    383   1.1       cgd 	struct mbuf *nam;
    384   1.1       cgd {
    385   1.1       cgd 	register struct sockaddr_in *sin;
    386  1.10   mycroft 
    387   1.1       cgd 	nam->m_len = sizeof (*sin);
    388   1.1       cgd 	sin = mtod(nam, struct sockaddr_in *);
    389   1.1       cgd 	bzero((caddr_t)sin, sizeof (*sin));
    390   1.1       cgd 	sin->sin_family = AF_INET;
    391   1.1       cgd 	sin->sin_len = sizeof(*sin);
    392   1.1       cgd 	sin->sin_port = inp->inp_fport;
    393   1.1       cgd 	sin->sin_addr = inp->inp_faddr;
    394   1.1       cgd }
    395   1.1       cgd 
    396   1.1       cgd /*
    397   1.1       cgd  * Pass some notification to all connections of a protocol
    398   1.1       cgd  * associated with address dst.  The local address and/or port numbers
    399   1.1       cgd  * may be specified to limit the search.  The "usual action" will be
    400   1.1       cgd  * taken, depending on the ctlinput cmd.  The caller must filter any
    401   1.1       cgd  * cmds that are uninteresting (e.g., no error in the map).
    402   1.1       cgd  * Call the protocol specific routine (if any) to report
    403   1.1       cgd  * any errors for each matching socket.
    404   1.1       cgd  *
    405  1.22   mycroft  * Must be called at splsoftnet.
    406   1.1       cgd  */
    407  1.37   thorpej int
    408  1.32   mycroft in_pcbnotify(table, faddr, fport_arg, laddr, lport_arg, errno, notify)
    409  1.18   mycroft 	struct inpcbtable *table;
    410  1.32   mycroft 	struct in_addr faddr, laddr;
    411  1.10   mycroft 	u_int fport_arg, lport_arg;
    412  1.19   mycroft 	int errno;
    413  1.10   mycroft 	void (*notify) __P((struct inpcb *, int));
    414   1.1       cgd {
    415  1.33   mycroft 	struct inpcbhead *head;
    416  1.33   mycroft 	register struct inpcb *inp, *ninp;
    417  1.13       cgd 	u_int16_t fport = fport_arg, lport = lport_arg;
    418  1.37   thorpej 	int nmatch;
    419   1.1       cgd 
    420  1.33   mycroft 	if (in_nullhost(faddr) || notify == 0)
    421  1.37   thorpej 		return (0);
    422   1.1       cgd 
    423  1.37   thorpej 	nmatch = 0;
    424  1.33   mycroft 	head = INPCBHASH_CONNECT(table, faddr, fport, laddr, lport);
    425  1.33   mycroft 	for (inp = head->lh_first; inp != NULL; inp = ninp) {
    426  1.33   mycroft 		ninp = inp->inp_hash.le_next;
    427  1.33   mycroft 		if (in_hosteq(inp->inp_faddr, faddr) &&
    428  1.33   mycroft 		    inp->inp_fport == fport &&
    429  1.33   mycroft 		    inp->inp_lport == lport &&
    430  1.37   thorpej 		    in_hosteq(inp->inp_laddr, laddr)) {
    431  1.33   mycroft 			(*notify)(inp, errno);
    432  1.37   thorpej 			nmatch++;
    433  1.37   thorpej 		}
    434   1.1       cgd 	}
    435  1.37   thorpej 	return (nmatch);
    436  1.18   mycroft }
    437  1.18   mycroft 
    438  1.20   mycroft void
    439  1.32   mycroft in_pcbnotifyall(table, faddr, errno, notify)
    440  1.18   mycroft 	struct inpcbtable *table;
    441  1.32   mycroft 	struct in_addr faddr;
    442  1.19   mycroft 	int errno;
    443  1.18   mycroft 	void (*notify) __P((struct inpcb *, int));
    444  1.18   mycroft {
    445  1.33   mycroft 	register struct inpcb *inp, *ninp;
    446  1.18   mycroft 
    447  1.33   mycroft 	if (in_nullhost(faddr) || notify == 0)
    448  1.18   mycroft 		return;
    449  1.18   mycroft 
    450  1.21       cgd 	for (inp = table->inpt_queue.cqh_first;
    451  1.33   mycroft 	    inp != (struct inpcb *)&table->inpt_queue;
    452  1.33   mycroft 	    inp = ninp) {
    453  1.33   mycroft 		ninp = inp->inp_queue.cqe_next;
    454  1.33   mycroft 		if (in_hosteq(inp->inp_faddr, faddr))
    455  1.33   mycroft 			(*notify)(inp, errno);
    456   1.1       cgd 	}
    457   1.1       cgd }
    458   1.1       cgd 
    459   1.1       cgd /*
    460   1.1       cgd  * Check for alternatives when higher level complains
    461   1.1       cgd  * about service problems.  For now, invalidate cached
    462   1.1       cgd  * routing information.  If the route was created dynamically
    463   1.1       cgd  * (by a redirect), time to try a default gateway again.
    464   1.1       cgd  */
    465  1.25  christos void
    466   1.1       cgd in_losing(inp)
    467   1.1       cgd 	struct inpcb *inp;
    468   1.1       cgd {
    469   1.1       cgd 	register struct rtentry *rt;
    470  1.10   mycroft 	struct rt_addrinfo info;
    471   1.1       cgd 
    472   1.1       cgd 	if ((rt = inp->inp_route.ro_rt)) {
    473  1.10   mycroft 		inp->inp_route.ro_rt = 0;
    474  1.10   mycroft 		bzero((caddr_t)&info, sizeof(info));
    475  1.17   mycroft 		info.rti_info[RTAX_DST] = &inp->inp_route.ro_dst;
    476  1.10   mycroft 		info.rti_info[RTAX_GATEWAY] = rt->rt_gateway;
    477  1.10   mycroft 		info.rti_info[RTAX_NETMASK] = rt_mask(rt);
    478  1.10   mycroft 		rt_missmsg(RTM_LOSING, &info, rt->rt_flags, 0);
    479   1.1       cgd 		if (rt->rt_flags & RTF_DYNAMIC)
    480   1.1       cgd 			(void) rtrequest(RTM_DELETE, rt_key(rt),
    481  1.10   mycroft 				rt->rt_gateway, rt_mask(rt), rt->rt_flags,
    482   1.1       cgd 				(struct rtentry **)0);
    483  1.10   mycroft 		else
    484   1.1       cgd 		/*
    485   1.1       cgd 		 * A new route can be allocated
    486   1.1       cgd 		 * the next time output is attempted.
    487   1.1       cgd 		 */
    488  1.10   mycroft 			rtfree(rt);
    489   1.1       cgd 	}
    490   1.1       cgd }
    491   1.1       cgd 
    492   1.1       cgd /*
    493   1.1       cgd  * After a routing change, flush old routing
    494   1.1       cgd  * and allocate a (hopefully) better one.
    495   1.1       cgd  */
    496  1.10   mycroft void
    497  1.10   mycroft in_rtchange(inp, errno)
    498   1.1       cgd 	register struct inpcb *inp;
    499  1.10   mycroft 	int errno;
    500   1.1       cgd {
    501  1.32   mycroft 
    502   1.1       cgd 	if (inp->inp_route.ro_rt) {
    503   1.1       cgd 		rtfree(inp->inp_route.ro_rt);
    504   1.1       cgd 		inp->inp_route.ro_rt = 0;
    505   1.1       cgd 		/*
    506   1.1       cgd 		 * A new route can be allocated the next time
    507   1.1       cgd 		 * output is attempted.
    508   1.1       cgd 		 */
    509   1.1       cgd 	}
    510  1.32   mycroft 	/* SHOULD NOTIFY HIGHER-LEVEL PROTOCOLS */
    511   1.1       cgd }
    512   1.1       cgd 
    513   1.1       cgd struct inpcb *
    514  1.33   mycroft in_pcblookup_port(table, laddr, lport_arg, flags)
    515  1.18   mycroft 	struct inpcbtable *table;
    516  1.33   mycroft 	struct in_addr laddr;
    517  1.33   mycroft 	u_int lport_arg;
    518   1.1       cgd 	int flags;
    519   1.1       cgd {
    520   1.1       cgd 	register struct inpcb *inp, *match = 0;
    521   1.1       cgd 	int matchwild = 3, wildcard;
    522  1.33   mycroft 	u_int16_t lport = lport_arg;
    523   1.1       cgd 
    524  1.21       cgd 	for (inp = table->inpt_queue.cqh_first;
    525  1.21       cgd 	    inp != (struct inpcb *)&table->inpt_queue;
    526  1.21       cgd 	    inp = inp->inp_queue.cqe_next) {
    527   1.1       cgd 		if (inp->inp_lport != lport)
    528   1.1       cgd 			continue;
    529   1.1       cgd 		wildcard = 0;
    530  1.33   mycroft 		if (!in_nullhost(inp->inp_faddr))
    531  1.33   mycroft 			wildcard++;
    532  1.32   mycroft 		if (in_nullhost(inp->inp_laddr)) {
    533  1.32   mycroft 			if (!in_nullhost(laddr))
    534   1.1       cgd 				wildcard++;
    535   1.1       cgd 		} else {
    536  1.32   mycroft 			if (in_nullhost(laddr))
    537   1.1       cgd 				wildcard++;
    538  1.32   mycroft 			else {
    539  1.32   mycroft 				if (!in_hosteq(inp->inp_laddr, laddr))
    540  1.32   mycroft 					continue;
    541  1.32   mycroft 			}
    542   1.1       cgd 		}
    543   1.1       cgd 		if (wildcard && (flags & INPLOOKUP_WILDCARD) == 0)
    544   1.1       cgd 			continue;
    545   1.1       cgd 		if (wildcard < matchwild) {
    546   1.1       cgd 			match = inp;
    547   1.1       cgd 			matchwild = wildcard;
    548   1.1       cgd 			if (matchwild == 0)
    549   1.1       cgd 				break;
    550   1.1       cgd 		}
    551   1.1       cgd 	}
    552   1.1       cgd 	return (match);
    553  1.24   mycroft }
    554  1.24   mycroft 
    555  1.24   mycroft #ifdef DIAGNOSTIC
    556  1.24   mycroft int	in_pcbnotifymiss = 0;
    557  1.24   mycroft #endif
    558  1.24   mycroft 
    559  1.24   mycroft struct inpcb *
    560  1.33   mycroft in_pcblookup_connect(table, faddr, fport_arg, laddr, lport_arg)
    561  1.24   mycroft 	struct inpcbtable *table;
    562  1.24   mycroft 	struct in_addr faddr, laddr;
    563  1.24   mycroft 	u_int fport_arg, lport_arg;
    564  1.24   mycroft {
    565  1.24   mycroft 	struct inpcbhead *head;
    566  1.24   mycroft 	register struct inpcb *inp;
    567  1.24   mycroft 	u_int16_t fport = fport_arg, lport = lport_arg;
    568  1.24   mycroft 
    569  1.33   mycroft 	head = INPCBHASH_CONNECT(table, faddr, fport, laddr, lport);
    570  1.24   mycroft 	for (inp = head->lh_first; inp != NULL; inp = inp->inp_hash.le_next) {
    571  1.33   mycroft 		if (in_hosteq(inp->inp_faddr, faddr) &&
    572  1.33   mycroft 		    inp->inp_fport == fport &&
    573  1.33   mycroft 		    inp->inp_lport == lport &&
    574  1.33   mycroft 		    in_hosteq(inp->inp_laddr, laddr))
    575  1.33   mycroft 			goto out;
    576  1.24   mycroft 	}
    577  1.24   mycroft #ifdef DIAGNOSTIC
    578  1.33   mycroft 	if (in_pcbnotifymiss) {
    579  1.35  christos 		printf("in_pcblookup_connect: faddr=%08x fport=%d laddr=%08x lport=%d\n",
    580  1.24   mycroft 		    ntohl(faddr.s_addr), ntohs(fport),
    581  1.24   mycroft 		    ntohl(laddr.s_addr), ntohs(lport));
    582  1.24   mycroft 	}
    583  1.24   mycroft #endif
    584  1.33   mycroft 	return (0);
    585  1.33   mycroft 
    586  1.33   mycroft out:
    587  1.33   mycroft 	/* Move this PCB to the head of hash chain. */
    588  1.33   mycroft 	if (inp != head->lh_first) {
    589  1.33   mycroft 		LIST_REMOVE(inp, inp_hash);
    590  1.33   mycroft 		LIST_INSERT_HEAD(head, inp, inp_hash);
    591  1.33   mycroft 	}
    592  1.33   mycroft 	return (inp);
    593  1.33   mycroft }
    594  1.33   mycroft 
    595  1.33   mycroft struct inpcb *
    596  1.33   mycroft in_pcblookup_bind(table, laddr, lport_arg)
    597  1.33   mycroft 	struct inpcbtable *table;
    598  1.33   mycroft 	struct in_addr laddr;
    599  1.33   mycroft 	u_int lport_arg;
    600  1.33   mycroft {
    601  1.33   mycroft 	struct inpcbhead *head;
    602  1.33   mycroft 	register struct inpcb *inp;
    603  1.33   mycroft 	u_int16_t lport = lport_arg;
    604  1.33   mycroft 
    605  1.33   mycroft 	head = INPCBHASH_BIND(table, laddr, lport);
    606  1.33   mycroft 	for (inp = head->lh_first; inp != NULL; inp = inp->inp_hash.le_next) {
    607  1.33   mycroft 		if (inp->inp_lport == lport &&
    608  1.33   mycroft 		    in_hosteq(inp->inp_laddr, laddr))
    609  1.33   mycroft 			goto out;
    610  1.33   mycroft 	}
    611  1.33   mycroft 	head = INPCBHASH_BIND(table, zeroin_addr, lport);
    612  1.33   mycroft 	for (inp = head->lh_first; inp != NULL; inp = inp->inp_hash.le_next) {
    613  1.33   mycroft 		if (inp->inp_lport == lport &&
    614  1.33   mycroft 		    in_hosteq(inp->inp_laddr, zeroin_addr))
    615  1.33   mycroft 			goto out;
    616  1.33   mycroft 	}
    617  1.33   mycroft #ifdef DIAGNOSTIC
    618  1.33   mycroft 	if (in_pcbnotifymiss) {
    619  1.35  christos 		printf("in_pcblookup_bind: laddr=%08x lport=%d\n",
    620  1.33   mycroft 		    ntohl(laddr.s_addr), ntohs(lport));
    621  1.33   mycroft 	}
    622  1.33   mycroft #endif
    623  1.33   mycroft 	return (0);
    624  1.33   mycroft 
    625  1.33   mycroft out:
    626  1.33   mycroft 	/* Move this PCB to the head of hash chain. */
    627  1.33   mycroft 	if (inp != head->lh_first) {
    628  1.33   mycroft 		LIST_REMOVE(inp, inp_hash);
    629  1.33   mycroft 		LIST_INSERT_HEAD(head, inp, inp_hash);
    630  1.33   mycroft 	}
    631  1.24   mycroft 	return (inp);
    632  1.33   mycroft }
    633  1.33   mycroft 
    634  1.33   mycroft void
    635  1.33   mycroft in_pcbstate(inp, state)
    636  1.33   mycroft 	struct inpcb *inp;
    637  1.33   mycroft 	int state;
    638  1.33   mycroft {
    639  1.33   mycroft 
    640  1.33   mycroft 	if (inp->inp_state > INP_ATTACHED)
    641  1.33   mycroft 		LIST_REMOVE(inp, inp_hash);
    642  1.33   mycroft 
    643  1.33   mycroft 	switch (state) {
    644  1.33   mycroft 	case INP_BOUND:
    645  1.33   mycroft 		LIST_INSERT_HEAD(INPCBHASH_BIND(inp->inp_table,
    646  1.33   mycroft 		    inp->inp_laddr, inp->inp_lport), inp, inp_hash);
    647  1.33   mycroft 		break;
    648  1.33   mycroft 	case INP_CONNECTED:
    649  1.33   mycroft 		LIST_INSERT_HEAD(INPCBHASH_CONNECT(inp->inp_table,
    650  1.33   mycroft 		    inp->inp_faddr, inp->inp_fport,
    651  1.33   mycroft 		    inp->inp_laddr, inp->inp_lport), inp, inp_hash);
    652  1.33   mycroft 		break;
    653  1.33   mycroft 	}
    654  1.33   mycroft 
    655  1.33   mycroft 	inp->inp_state = state;
    656  1.38   thorpej }
    657  1.38   thorpej 
    658  1.38   thorpej struct rtentry *
    659  1.38   thorpej in_pcbrtentry(inp)
    660  1.38   thorpej 	struct inpcb *inp;
    661  1.38   thorpej {
    662  1.38   thorpej 	struct route *ro;
    663  1.38   thorpej 
    664  1.38   thorpej 	ro = &inp->inp_route;
    665  1.38   thorpej 
    666  1.38   thorpej 	if (ro->ro_rt == NULL) {
    667  1.38   thorpej 		/*
    668  1.38   thorpej 		 * No route yet, so try to acquire one.
    669  1.38   thorpej 		 */
    670  1.38   thorpej 		if (!in_nullhost(inp->inp_faddr)) {
    671  1.38   thorpej 			ro->ro_dst.sa_family = AF_INET;
    672  1.38   thorpej 			ro->ro_dst.sa_len = sizeof(ro->ro_dst);
    673  1.38   thorpej 			satosin(&ro->ro_dst)->sin_addr = inp->inp_faddr;
    674  1.38   thorpej 			rtalloc(ro);
    675  1.38   thorpej 		}
    676  1.38   thorpej 	}
    677  1.38   thorpej 	return (ro->ro_rt);
    678   1.1       cgd }
    679