2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
1995-10-26 20:31:59 +00:00
|
|
|
* Copyright (c) 1984, 1985, 1986, 1987, 1993
|
2006-03-24 13:58:23 +00:00
|
|
|
* The Regents of the University of California.
|
|
|
|
* Copyright (c) 2004-2006 Robert N. M. Watson
|
|
|
|
* All rights reserved.
|
1995-10-26 20:31:59 +00:00
|
|
|
*
|
2007-01-08 22:14:00 +00:00
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Copyright (c) 1995, Mike Mitchell
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
1995-10-26 20:31:59 +00:00
|
|
|
* 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-11-04 09:03:47 +00:00
|
|
|
* @(#)ipx_pcb.c
|
1995-10-26 20:31:59 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-11 05:37:42 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1995-10-26 20:31:59 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
1997-09-02 01:19:47 +00:00
|
|
|
#include <sys/malloc.h>
|
2006-11-06 13:42:10 +00:00
|
|
|
#include <sys/priv.h>
|
1995-10-26 20:31:59 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/socketvar.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/route.h>
|
|
|
|
|
|
|
|
#include <netipx/ipx.h>
|
|
|
|
#include <netipx/ipx_if.h>
|
|
|
|
#include <netipx/ipx_pcb.h>
|
1997-05-10 09:58:58 +00:00
|
|
|
#include <netipx/ipx_var.h>
|
1995-10-26 20:31:59 +00:00
|
|
|
|
1998-02-09 06:11:36 +00:00
|
|
|
static struct ipx_addr zeroipx_addr;
|
2005-01-02 15:13:59 +00:00
|
|
|
static u_short ipxpcb_lport_cache;
|
1995-10-26 20:31:59 +00:00
|
|
|
|
|
|
|
int
|
2007-05-11 10:38:34 +00:00
|
|
|
ipx_pcballoc(struct socket *so, struct ipxpcbhead *head, struct thread *td)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
2007-05-11 10:38:34 +00:00
|
|
|
struct ipxpcb *ipxp;
|
1995-10-26 20:31:59 +00:00
|
|
|
|
2006-03-24 13:58:23 +00:00
|
|
|
KASSERT(so->so_pcb == NULL, ("ipx_pcballoc: so_pcb != NULL"));
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_LIST_LOCK_ASSERT();
|
|
|
|
|
2008-10-23 15:53:51 +00:00
|
|
|
ipxp = malloc(sizeof *ipxp, M_PCB, M_NOWAIT | M_ZERO);
|
1997-08-16 19:16:27 +00:00
|
|
|
if (ipxp == NULL)
|
1995-10-26 20:31:59 +00:00
|
|
|
return (ENOBUFS);
|
Introduce a global mutex, ipxpcb_list_mtx, to protect the global
IPX PCB lists. Add macros to initialize, destroy, lock, unlock,
and assert the mutex. Initialize the mutex when IPX is started.
Add per-IPX PCB mutexes, ipxp_mtx in struct ipxpcb, to protect
per-PCB IPX/SPX state. Add macros to initialize, destroy, lock,
unlock, and assert the mutex. Initialize the mutex when a new
PCB is allocated; destroy it when the PCB is free'd.
MFC after: 2 weeks
2005-01-09 05:00:41 +00:00
|
|
|
IPX_LOCK_INIT(ipxp);
|
1995-10-26 20:31:59 +00:00
|
|
|
ipxp->ipxp_socket = so;
|
1999-08-28 18:21:55 +00:00
|
|
|
if (ipxcksum)
|
|
|
|
ipxp->ipxp_flags |= IPXP_CHECKSUM;
|
2004-12-30 17:49:40 +00:00
|
|
|
LIST_INSERT_HEAD(head, ipxp, ipxp_list);
|
1995-10-26 20:31:59 +00:00
|
|
|
so->so_pcb = (caddr_t)ipxp;
|
|
|
|
return (0);
|
|
|
|
}
|
2005-01-02 15:13:59 +00:00
|
|
|
|
1995-10-26 20:31:59 +00:00
|
|
|
int
|
2007-05-11 10:38:34 +00:00
|
|
|
ipx_pcbbind(struct ipxpcb *ipxp, struct sockaddr *nam, struct thread *td)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
2007-05-11 10:38:34 +00:00
|
|
|
struct sockaddr_ipx *sipx;
|
1995-10-26 20:31:59 +00:00
|
|
|
u_short lport = 0;
|
|
|
|
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_LIST_LOCK_ASSERT();
|
|
|
|
IPX_LOCK_ASSERT(ipxp);
|
|
|
|
|
1995-10-26 20:31:59 +00:00
|
|
|
if (ipxp->ipxp_lport || !ipx_nullhost(ipxp->ipxp_laddr))
|
|
|
|
return (EINVAL);
|
1997-05-10 09:58:58 +00:00
|
|
|
if (nam == NULL)
|
1995-10-26 20:31:59 +00:00
|
|
|
goto noname;
|
1997-08-16 19:16:27 +00:00
|
|
|
sipx = (struct sockaddr_ipx *)nam;
|
1995-10-26 20:31:59 +00:00
|
|
|
if (!ipx_nullhost(sipx->sipx_addr)) {
|
|
|
|
int tport = sipx->sipx_port;
|
|
|
|
|
|
|
|
sipx->sipx_port = 0; /* yech... */
|
2005-01-02 01:51:18 +00:00
|
|
|
if (ifa_ifwithaddr((struct sockaddr *)sipx) == NULL)
|
1995-10-26 20:31:59 +00:00
|
|
|
return (EADDRNOTAVAIL);
|
|
|
|
sipx->sipx_port = tport;
|
|
|
|
}
|
|
|
|
lport = sipx->sipx_port;
|
|
|
|
if (lport) {
|
|
|
|
u_short aport = ntohs(lport);
|
|
|
|
|
2006-11-06 13:42:10 +00:00
|
|
|
if (aport < IPXPORT_RESERVED && td != NULL &&
|
|
|
|
priv_check(td, PRIV_NETIPX_RESERVEDPORT))
|
|
|
|
return (EACCES);
|
1995-10-26 20:31:59 +00:00
|
|
|
if (ipx_pcblookup(&zeroipx_addr, lport, 0))
|
|
|
|
return (EADDRINUSE);
|
|
|
|
}
|
|
|
|
ipxp->ipxp_laddr = sipx->sipx_addr;
|
|
|
|
noname:
|
|
|
|
if (lport == 0)
|
|
|
|
do {
|
2004-12-30 17:54:53 +00:00
|
|
|
ipxpcb_lport_cache++;
|
|
|
|
if ((ipxpcb_lport_cache < IPXPORT_RESERVED) ||
|
|
|
|
(ipxpcb_lport_cache >= IPXPORT_WELLKNOWN))
|
|
|
|
ipxpcb_lport_cache = IPXPORT_RESERVED;
|
|
|
|
lport = htons(ipxpcb_lport_cache);
|
1995-10-26 20:31:59 +00:00
|
|
|
} while (ipx_pcblookup(&zeroipx_addr, lport, 0));
|
|
|
|
ipxp->ipxp_lport = lport;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Connect from a socket to a specified address.
|
|
|
|
* Both address and port must be specified in argument sipx.
|
|
|
|
* If don't have a local address for this socket yet,
|
|
|
|
* then pick one.
|
|
|
|
*/
|
|
|
|
int
|
2007-05-11 10:38:34 +00:00
|
|
|
ipx_pcbconnect(struct ipxpcb *ipxp, struct sockaddr *nam, struct thread *td)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
|
|
|
struct ipx_ifaddr *ia;
|
2007-05-11 10:38:34 +00:00
|
|
|
struct sockaddr_ipx *sipx = (struct sockaddr_ipx *)nam;
|
|
|
|
struct ipx_addr *dst;
|
|
|
|
struct route *ro;
|
1995-10-26 20:31:59 +00:00
|
|
|
struct ifnet *ifp;
|
|
|
|
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_LIST_LOCK_ASSERT();
|
|
|
|
IPX_LOCK_ASSERT(ipxp);
|
|
|
|
|
1997-05-10 09:58:58 +00:00
|
|
|
ia = NULL;
|
|
|
|
|
1995-10-26 20:31:59 +00:00
|
|
|
if (sipx->sipx_family != AF_IPX)
|
|
|
|
return (EAFNOSUPPORT);
|
1997-05-10 09:58:58 +00:00
|
|
|
if (sipx->sipx_port == 0 || ipx_nullhost(sipx->sipx_addr))
|
1995-10-26 20:31:59 +00:00
|
|
|
return (EADDRNOTAVAIL);
|
|
|
|
/*
|
|
|
|
* If we haven't bound which network number to use as ours,
|
|
|
|
* we will use the number of the outgoing interface.
|
|
|
|
* This depends on having done a routing lookup, which
|
|
|
|
* we will probably have to do anyway, so we might
|
|
|
|
* as well do it now. On the other hand if we are
|
|
|
|
* sending to multiple destinations we may have already
|
|
|
|
* done the lookup, so see if we can use the route
|
|
|
|
* from before. In any case, we only
|
|
|
|
* chose a port number once, even if sending to multiple
|
|
|
|
* destinations.
|
|
|
|
*/
|
|
|
|
ro = &ipxp->ipxp_route;
|
|
|
|
dst = &satoipx_addr(ro->ro_dst);
|
2002-05-31 11:52:35 +00:00
|
|
|
if (ipxp->ipxp_socket->so_options & SO_DONTROUTE)
|
1995-10-26 20:31:59 +00:00
|
|
|
goto flush;
|
|
|
|
if (!ipx_neteq(ipxp->ipxp_lastdst, sipx->sipx_addr))
|
|
|
|
goto flush;
|
|
|
|
if (!ipx_hosteq(ipxp->ipxp_lastdst, sipx->sipx_addr)) {
|
1997-05-10 09:58:58 +00:00
|
|
|
if (ro->ro_rt != NULL && !(ro->ro_rt->rt_flags & RTF_HOST)) {
|
1995-10-26 20:31:59 +00:00
|
|
|
/* can patch route to avoid rtalloc */
|
|
|
|
*dst = sipx->sipx_addr;
|
|
|
|
} else {
|
|
|
|
flush:
|
1997-05-10 09:58:58 +00:00
|
|
|
if (ro->ro_rt != NULL)
|
1995-10-26 20:31:59 +00:00
|
|
|
RTFREE(ro->ro_rt);
|
1997-05-10 09:58:58 +00:00
|
|
|
ro->ro_rt = NULL;
|
1995-10-26 20:31:59 +00:00
|
|
|
}
|
|
|
|
}/* else cached route is ok; do nothing */
|
|
|
|
ipxp->ipxp_lastdst = sipx->sipx_addr;
|
|
|
|
if ((ipxp->ipxp_socket->so_options & SO_DONTROUTE) == 0 && /*XXX*/
|
1997-05-10 09:58:58 +00:00
|
|
|
(ro->ro_rt == NULL || ro->ro_rt->rt_ifp == NULL)) {
|
1995-10-26 20:31:59 +00:00
|
|
|
/* No route yet, so try to acquire one */
|
|
|
|
ro->ro_dst.sa_family = AF_IPX;
|
|
|
|
ro->ro_dst.sa_len = sizeof(ro->ro_dst);
|
|
|
|
*dst = sipx->sipx_addr;
|
|
|
|
dst->x_port = 0;
|
2005-01-02 01:39:38 +00:00
|
|
|
rtalloc_ign(ro, 0);
|
2002-05-31 11:52:35 +00:00
|
|
|
}
|
1995-10-26 20:31:59 +00:00
|
|
|
if (ipx_neteqnn(ipxp->ipxp_laddr.x_net, ipx_zeronet)) {
|
2005-01-02 15:13:59 +00:00
|
|
|
/*
|
1995-10-26 20:31:59 +00:00
|
|
|
* If route is known or can be allocated now,
|
|
|
|
* our src addr is taken from the i/f, else punt.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we found a route, use the address
|
|
|
|
* corresponding to the outgoing interface
|
|
|
|
*/
|
1997-05-10 09:58:58 +00:00
|
|
|
if (ro->ro_rt != NULL && (ifp = ro->ro_rt->rt_ifp) != NULL)
|
|
|
|
for (ia = ipx_ifaddr; ia != NULL; ia = ia->ia_next)
|
1995-10-26 20:31:59 +00:00
|
|
|
if (ia->ia_ifp == ifp)
|
|
|
|
break;
|
1997-05-10 09:58:58 +00:00
|
|
|
if (ia == NULL) {
|
1995-10-26 20:31:59 +00:00
|
|
|
u_short fport = sipx->sipx_addr.x_port;
|
|
|
|
sipx->sipx_addr.x_port = 0;
|
|
|
|
ia = (struct ipx_ifaddr *)
|
|
|
|
ifa_ifwithdstaddr((struct sockaddr *)sipx);
|
|
|
|
sipx->sipx_addr.x_port = fport;
|
1997-05-10 09:58:58 +00:00
|
|
|
if (ia == NULL)
|
1995-10-26 20:31:59 +00:00
|
|
|
ia = ipx_iaonnetof(&sipx->sipx_addr);
|
1997-05-10 09:58:58 +00:00
|
|
|
if (ia == NULL)
|
1995-10-26 20:31:59 +00:00
|
|
|
ia = ipx_ifaddr;
|
1997-05-10 09:58:58 +00:00
|
|
|
if (ia == NULL)
|
1995-10-26 20:31:59 +00:00
|
|
|
return (EADDRNOTAVAIL);
|
|
|
|
}
|
|
|
|
ipxp->ipxp_laddr.x_net = satoipx_addr(ia->ia_addr).x_net;
|
|
|
|
}
|
|
|
|
if (ipx_nullhost(ipxp->ipxp_laddr)) {
|
2005-01-02 15:13:59 +00:00
|
|
|
/*
|
1997-05-10 09:58:58 +00:00
|
|
|
* If route is known or can be allocated now,
|
|
|
|
* our src addr is taken from the i/f, else punt.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we found a route, use the address
|
|
|
|
* corresponding to the outgoing interface
|
|
|
|
*/
|
|
|
|
if (ro->ro_rt != NULL && (ifp = ro->ro_rt->rt_ifp) != NULL)
|
|
|
|
for (ia = ipx_ifaddr; ia != NULL; ia = ia->ia_next)
|
|
|
|
if (ia->ia_ifp == ifp)
|
|
|
|
break;
|
|
|
|
if (ia == NULL) {
|
|
|
|
u_short fport = sipx->sipx_addr.x_port;
|
|
|
|
sipx->sipx_addr.x_port = 0;
|
|
|
|
ia = (struct ipx_ifaddr *)
|
|
|
|
ifa_ifwithdstaddr((struct sockaddr *)sipx);
|
|
|
|
sipx->sipx_addr.x_port = fport;
|
|
|
|
if (ia == NULL)
|
|
|
|
ia = ipx_iaonnetof(&sipx->sipx_addr);
|
|
|
|
if (ia == NULL)
|
|
|
|
ia = ipx_ifaddr;
|
|
|
|
if (ia == NULL)
|
|
|
|
return (EADDRNOTAVAIL);
|
|
|
|
}
|
|
|
|
ipxp->ipxp_laddr.x_host = satoipx_addr(ia->ia_addr).x_host;
|
1995-10-26 20:31:59 +00:00
|
|
|
}
|
1997-05-10 09:58:58 +00:00
|
|
|
if (ipx_pcblookup(&sipx->sipx_addr, ipxp->ipxp_lport, 0))
|
|
|
|
return (EADDRINUSE);
|
|
|
|
if (ipxp->ipxp_lport == 0)
|
2001-09-12 08:38:13 +00:00
|
|
|
ipx_pcbbind(ipxp, (struct sockaddr *)NULL, td);
|
1997-05-10 09:58:58 +00:00
|
|
|
|
|
|
|
/* XXX just leave it zero if we can't find a route */
|
|
|
|
|
1995-10-26 20:31:59 +00:00
|
|
|
ipxp->ipxp_faddr = sipx->sipx_addr;
|
|
|
|
/* Includes ipxp->ipxp_fport = sipx->sipx_port; */
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-05-11 10:38:34 +00:00
|
|
|
ipx_pcbdisconnect(struct ipxpcb *ipxp)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
|
|
|
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_LIST_LOCK_ASSERT();
|
|
|
|
IPX_LOCK_ASSERT(ipxp);
|
|
|
|
|
1995-10-26 20:31:59 +00:00
|
|
|
ipxp->ipxp_faddr = zeroipx_addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-05-11 10:38:34 +00:00
|
|
|
ipx_pcbdetach(struct ipxpcb *ipxp)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
|
|
|
struct socket *so = ipxp->ipxp_socket;
|
|
|
|
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_LIST_LOCK_ASSERT();
|
|
|
|
IPX_LOCK_ASSERT(ipxp);
|
|
|
|
|
2005-01-02 01:51:18 +00:00
|
|
|
so->so_pcb = NULL;
|
2006-03-25 17:28:42 +00:00
|
|
|
ipxp->ipxp_socket = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-05-11 10:38:34 +00:00
|
|
|
ipx_pcbfree(struct ipxpcb *ipxp)
|
2006-03-25 17:28:42 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
KASSERT(ipxp->ipxp_socket == NULL,
|
|
|
|
("ipx_pcbfree: ipxp_socket != NULL"));
|
|
|
|
IPX_LIST_LOCK_ASSERT();
|
|
|
|
IPX_LOCK_ASSERT(ipxp);
|
|
|
|
|
1997-05-10 09:58:58 +00:00
|
|
|
if (ipxp->ipxp_route.ro_rt != NULL)
|
2005-01-02 01:47:56 +00:00
|
|
|
RTFREE(ipxp->ipxp_route.ro_rt);
|
2004-12-30 17:49:40 +00:00
|
|
|
LIST_REMOVE(ipxp, ipxp_list);
|
Introduce a global mutex, ipxpcb_list_mtx, to protect the global
IPX PCB lists. Add macros to initialize, destroy, lock, unlock,
and assert the mutex. Initialize the mutex when IPX is started.
Add per-IPX PCB mutexes, ipxp_mtx in struct ipxpcb, to protect
per-PCB IPX/SPX state. Add macros to initialize, destroy, lock,
unlock, and assert the mutex. Initialize the mutex when a new
PCB is allocated; destroy it when the PCB is free'd.
MFC after: 2 weeks
2005-01-09 05:00:41 +00:00
|
|
|
IPX_LOCK_DESTROY(ipxp);
|
2008-10-23 15:53:51 +00:00
|
|
|
free(ipxp, M_PCB);
|
1995-10-26 20:31:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-05-11 10:38:34 +00:00
|
|
|
ipx_getsockaddr(struct ipxpcb *ipxp, struct sockaddr **nam)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr_ipx *sipx, ssipx;
|
2005-01-02 15:13:59 +00:00
|
|
|
|
1997-08-16 19:16:27 +00:00
|
|
|
sipx = &ssipx;
|
1997-05-10 09:58:58 +00:00
|
|
|
bzero((caddr_t)sipx, sizeof(*sipx));
|
1995-10-26 20:31:59 +00:00
|
|
|
sipx->sipx_len = sizeof(*sipx);
|
|
|
|
sipx->sipx_family = AF_IPX;
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_LOCK(ipxp);
|
1995-10-26 20:31:59 +00:00
|
|
|
sipx->sipx_addr = ipxp->ipxp_laddr;
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_UNLOCK(ipxp);
|
2005-01-09 04:47:42 +00:00
|
|
|
*nam = sodupsockaddr((struct sockaddr *)sipx, M_WAITOK);
|
1995-10-26 20:31:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-05-11 10:38:34 +00:00
|
|
|
ipx_getpeeraddr(struct ipxpcb *ipxp, struct sockaddr **nam)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
1997-08-16 19:16:27 +00:00
|
|
|
struct sockaddr_ipx *sipx, ssipx;
|
2005-01-09 05:10:43 +00:00
|
|
|
|
1997-08-16 19:16:27 +00:00
|
|
|
sipx = &ssipx;
|
2005-01-02 15:25:59 +00:00
|
|
|
bzero(sipx, sizeof(*sipx));
|
1995-10-26 20:31:59 +00:00
|
|
|
sipx->sipx_len = sizeof(*sipx);
|
|
|
|
sipx->sipx_family = AF_IPX;
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_LOCK(ipxp);
|
1995-10-26 20:31:59 +00:00
|
|
|
sipx->sipx_addr = ipxp->ipxp_faddr;
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_UNLOCK(ipxp);
|
2005-01-02 15:25:59 +00:00
|
|
|
*nam = sodupsockaddr((struct sockaddr *)sipx, M_WAITOK);
|
1995-10-26 20:31:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct ipxpcb *
|
2007-05-11 10:38:34 +00:00
|
|
|
ipx_pcblookup(struct ipx_addr *faddr, u_short lport, int wildp)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
2007-05-11 10:38:34 +00:00
|
|
|
struct ipxpcb *ipxp, *match = NULL;
|
1995-10-26 20:31:59 +00:00
|
|
|
int matchwild = 3, wildcard;
|
|
|
|
u_short fport;
|
|
|
|
|
2005-01-09 05:10:43 +00:00
|
|
|
IPX_LIST_LOCK_ASSERT();
|
|
|
|
|
1995-10-26 20:31:59 +00:00
|
|
|
fport = faddr->x_port;
|
2004-12-30 17:49:40 +00:00
|
|
|
LIST_FOREACH(ipxp, &ipxpcb_list, ipxp_list) {
|
1995-10-26 20:31:59 +00:00
|
|
|
if (ipxp->ipxp_lport != lport)
|
|
|
|
continue;
|
|
|
|
wildcard = 0;
|
|
|
|
if (ipx_nullhost(ipxp->ipxp_faddr)) {
|
|
|
|
if (!ipx_nullhost(*faddr))
|
|
|
|
wildcard++;
|
|
|
|
} else {
|
|
|
|
if (ipx_nullhost(*faddr))
|
|
|
|
wildcard++;
|
|
|
|
else {
|
|
|
|
if (!ipx_hosteq(ipxp->ipxp_faddr, *faddr))
|
|
|
|
continue;
|
|
|
|
if (ipxp->ipxp_fport != fport) {
|
|
|
|
if (ipxp->ipxp_fport != 0)
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
wildcard++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1997-05-10 09:58:58 +00:00
|
|
|
if (wildcard && wildp == 0)
|
1995-10-26 20:31:59 +00:00
|
|
|
continue;
|
|
|
|
if (wildcard < matchwild) {
|
|
|
|
match = ipxp;
|
|
|
|
matchwild = wildcard;
|
|
|
|
if (wildcard == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (match);
|
|
|
|
}
|