ipx_pcb.c revision 194608
1/*-
2 * Copyright (c) 1984, 1985, 1986, 1987, 1993
3 *	The Regents of the University of California.
4 * Copyright (c) 2004-2006 Robert N. M. Watson
5 * 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 * 4. 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 * Copyright (c) 1995, Mike Mitchell
32 * All rights reserved.
33 *
34 * Redistribution and use in source and binary forms, with or without
35 * modification, are permitted provided that the following conditions
36 * are met:
37 * 1. Redistributions of source code must retain the above copyright
38 *    notice, this list of conditions and the following disclaimer.
39 * 2. Redistributions in binary form must reproduce the above copyright
40 *    notice, this list of conditions and the following disclaimer in the
41 *    documentation and/or other materials provided with the distribution.
42 * 3. All advertising materials mentioning features or use of this software
43 *    must display the following acknowledgement:
44 *	This product includes software developed by the University of
45 *	California, Berkeley and its contributors.
46 * 4. Neither the name of the University nor the names of its contributors
47 *    may be used to endorse or promote products derived from this software
48 *    without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
51 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
54 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * SUCH DAMAGE.
61 *
62 *	@(#)ipx_pcb.c
63 */
64
65#include <sys/cdefs.h>
66__FBSDID("$FreeBSD: head/sys/netipx/ipx_pcb.c 194608 2009-06-21 21:04:12Z rwatson $");
67
68#include <sys/param.h>
69#include <sys/systm.h>
70#include <sys/malloc.h>
71#include <sys/priv.h>
72#include <sys/socket.h>
73#include <sys/socketvar.h>
74
75#include <net/if.h>
76#include <net/route.h>
77
78#include <netipx/ipx.h>
79#include <netipx/ipx_if.h>
80#include <netipx/ipx_pcb.h>
81#include <netipx/ipx_var.h>
82
83static struct	ipx_addr zeroipx_addr;
84static u_short	ipxpcb_lport_cache;
85
86int
87ipx_pcballoc(struct socket *so, struct ipxpcbhead *head, struct thread *td)
88{
89	struct ipxpcb *ipxp;
90
91	KASSERT(so->so_pcb == NULL, ("ipx_pcballoc: so_pcb != NULL"));
92	IPX_LIST_LOCK_ASSERT();
93
94	ipxp = malloc(sizeof *ipxp, M_PCB, M_NOWAIT | M_ZERO);
95	if (ipxp == NULL)
96		return (ENOBUFS);
97	IPX_LOCK_INIT(ipxp);
98	ipxp->ipxp_socket = so;
99	if (ipxcksum)
100		ipxp->ipxp_flags |= IPXP_CHECKSUM;
101	LIST_INSERT_HEAD(head, ipxp, ipxp_list);
102	so->so_pcb = (caddr_t)ipxp;
103	return (0);
104}
105
106int
107ipx_pcbbind(struct ipxpcb *ipxp, struct sockaddr *nam, struct thread *td)
108{
109	struct sockaddr_ipx *sipx;
110	u_short lport = 0;
111
112	IPX_LIST_LOCK_ASSERT();
113	IPX_LOCK_ASSERT(ipxp);
114
115	if (ipxp->ipxp_lport || !ipx_nullhost(ipxp->ipxp_laddr))
116		return (EINVAL);
117	if (nam == NULL)
118		goto noname;
119	sipx = (struct sockaddr_ipx *)nam;
120	if (!ipx_nullhost(sipx->sipx_addr)) {
121		int tport = sipx->sipx_port;
122
123		sipx->sipx_port = 0;		/* yech... */
124		if (ifa_ifwithaddr((struct sockaddr *)sipx) == NULL)
125			return (EADDRNOTAVAIL);
126		sipx->sipx_port = tport;
127	}
128	lport = sipx->sipx_port;
129	if (lport) {
130		u_short aport = ntohs(lport);
131
132		if (aport < IPXPORT_RESERVED && td != NULL &&
133		    priv_check(td, PRIV_NETIPX_RESERVEDPORT))
134			return (EACCES);
135		if (ipx_pcblookup(&zeroipx_addr, lport, 0))
136			return (EADDRINUSE);
137	}
138	ipxp->ipxp_laddr = sipx->sipx_addr;
139noname:
140	if (lport == 0)
141		do {
142			ipxpcb_lport_cache++;
143			if ((ipxpcb_lport_cache < IPXPORT_RESERVED) ||
144			    (ipxpcb_lport_cache >= IPXPORT_WELLKNOWN))
145				ipxpcb_lport_cache = IPXPORT_RESERVED;
146			lport = htons(ipxpcb_lport_cache);
147		} while (ipx_pcblookup(&zeroipx_addr, lport, 0));
148	ipxp->ipxp_lport = lport;
149	return (0);
150}
151
152/*
153 * Connect from a socket to a specified address.
154 * Both address and port must be specified in argument sipx.
155 * If don't have a local address for this socket yet,
156 * then pick one.
157 */
158int
159ipx_pcbconnect(struct ipxpcb *ipxp, struct sockaddr *nam, struct thread *td)
160{
161	struct ipx_ifaddr *ia;
162	struct sockaddr_ipx *sipx = (struct sockaddr_ipx *)nam;
163	struct ipx_addr *dst;
164	struct route *ro;
165	struct ifnet *ifp;
166
167	IPX_LIST_LOCK_ASSERT();
168	IPX_LOCK_ASSERT(ipxp);
169
170	ia = NULL;
171
172	if (sipx->sipx_family != AF_IPX)
173		return (EAFNOSUPPORT);
174	if (sipx->sipx_port == 0 || ipx_nullhost(sipx->sipx_addr))
175		return (EADDRNOTAVAIL);
176	/*
177	 * If we haven't bound which network number to use as ours,
178	 * we will use the number of the outgoing interface.
179	 * This depends on having done a routing lookup, which
180	 * we will probably have to do anyway, so we might
181	 * as well do it now.  On the other hand if we are
182	 * sending to multiple destinations we may have already
183	 * done the lookup, so see if we can use the route
184	 * from before.  In any case, we only
185	 * chose a port number once, even if sending to multiple
186	 * destinations.
187	 */
188	ro = &ipxp->ipxp_route;
189	dst = &satoipx_addr(ro->ro_dst);
190	if (ipxp->ipxp_socket->so_options & SO_DONTROUTE)
191		goto flush;
192	if (!ipx_neteq(ipxp->ipxp_lastdst, sipx->sipx_addr))
193		goto flush;
194	if (!ipx_hosteq(ipxp->ipxp_lastdst, sipx->sipx_addr)) {
195		if (ro->ro_rt != NULL && !(ro->ro_rt->rt_flags & RTF_HOST)) {
196			/* can patch route to avoid rtalloc */
197			*dst = sipx->sipx_addr;
198		} else {
199	flush:
200			if (ro->ro_rt != NULL)
201				RTFREE(ro->ro_rt);
202			ro->ro_rt = NULL;
203		}
204	}/* else cached route is ok; do nothing */
205	ipxp->ipxp_lastdst = sipx->sipx_addr;
206	if ((ipxp->ipxp_socket->so_options & SO_DONTROUTE) == 0 && /*XXX*/
207	    (ro->ro_rt == NULL || ro->ro_rt->rt_ifp == NULL)) {
208		    /* No route yet, so try to acquire one */
209		    ro->ro_dst.sa_family = AF_IPX;
210		    ro->ro_dst.sa_len = sizeof(ro->ro_dst);
211		    *dst = sipx->sipx_addr;
212		    dst->x_port = 0;
213		    rtalloc_ign(ro, 0);
214	}
215	if (ipx_neteqnn(ipxp->ipxp_laddr.x_net, ipx_zeronet)) {
216		/*
217		 * If route is known or can be allocated now,
218		 * our src addr is taken from the i/f, else punt.
219		 */
220
221		/*
222		 * If we found a route, use the address
223		 * corresponding to the outgoing interface
224		 */
225		if (ro->ro_rt != NULL && (ifp = ro->ro_rt->rt_ifp) != NULL) {
226			IPX_IFADDR_RLOCK();
227			for (ia = ipx_ifaddr; ia != NULL; ia = ia->ia_next)
228				if (ia->ia_ifp == ifp)
229					break;
230			IPX_IFADDR_RUNLOCK();
231		}
232		if (ia == NULL) {
233			u_short fport = sipx->sipx_addr.x_port;
234			sipx->sipx_addr.x_port = 0;
235			ia = (struct ipx_ifaddr *)
236				ifa_ifwithdstaddr((struct sockaddr *)sipx);
237			sipx->sipx_addr.x_port = fport;
238			if (ia == NULL)
239				ia = ipx_iaonnetof(&sipx->sipx_addr);
240			if (ia == NULL)
241				ia = ipx_ifaddr;
242			if (ia == NULL)
243				return (EADDRNOTAVAIL);
244		}
245		ipxp->ipxp_laddr.x_net = satoipx_addr(ia->ia_addr).x_net;
246	}
247	if (ipx_nullhost(ipxp->ipxp_laddr)) {
248		/*
249		 * If route is known or can be allocated now,
250		 * our src addr is taken from the i/f, else punt.
251		 */
252
253		/*
254		 * If we found a route, use the address
255		 * corresponding to the outgoing interface
256		 */
257		if (ro->ro_rt != NULL && (ifp = ro->ro_rt->rt_ifp) != NULL) {
258			IPX_IFADDR_RLOCK();
259			for (ia = ipx_ifaddr; ia != NULL; ia = ia->ia_next)
260				if (ia->ia_ifp == ifp)
261					break;
262			IPX_IFADDR_RUNLOCK();
263		}
264		if (ia == NULL) {
265			u_short fport = sipx->sipx_addr.x_port;
266			sipx->sipx_addr.x_port = 0;
267			ia = (struct ipx_ifaddr *)
268				ifa_ifwithdstaddr((struct sockaddr *)sipx);
269			sipx->sipx_addr.x_port = fport;
270			if (ia == NULL) {
271				IPX_IFADDR_RLOCK();
272				ia = ipx_iaonnetof(&sipx->sipx_addr);
273				IPX_IFADDR_RUNLOCK();
274			}
275			if (ia == NULL) {
276				IPX_IFADDR_RLOCK();
277				ia = ipx_ifaddr;
278				IPX_IFADDR_RUNLOCK();
279			}
280			if (ia == NULL)
281				return (EADDRNOTAVAIL);
282		}
283		ipxp->ipxp_laddr.x_host = satoipx_addr(ia->ia_addr).x_host;
284	}
285	if (ipx_pcblookup(&sipx->sipx_addr, ipxp->ipxp_lport, 0))
286		return (EADDRINUSE);
287	if (ipxp->ipxp_lport == 0)
288		ipx_pcbbind(ipxp, (struct sockaddr *)NULL, td);
289
290	/* XXX just leave it zero if we can't find a route */
291
292	ipxp->ipxp_faddr = sipx->sipx_addr;
293	/* Includes ipxp->ipxp_fport = sipx->sipx_port; */
294	return (0);
295}
296
297void
298ipx_pcbdisconnect(struct ipxpcb *ipxp)
299{
300
301	IPX_LIST_LOCK_ASSERT();
302	IPX_LOCK_ASSERT(ipxp);
303
304	ipxp->ipxp_faddr = zeroipx_addr;
305}
306
307void
308ipx_pcbdetach(struct ipxpcb *ipxp)
309{
310	struct socket *so = ipxp->ipxp_socket;
311
312	IPX_LIST_LOCK_ASSERT();
313	IPX_LOCK_ASSERT(ipxp);
314
315	so->so_pcb = NULL;
316	ipxp->ipxp_socket = NULL;
317}
318
319void
320ipx_pcbfree(struct ipxpcb *ipxp)
321{
322
323	KASSERT(ipxp->ipxp_socket == NULL,
324	    ("ipx_pcbfree: ipxp_socket != NULL"));
325	IPX_LIST_LOCK_ASSERT();
326	IPX_LOCK_ASSERT(ipxp);
327
328	if (ipxp->ipxp_route.ro_rt != NULL)
329		RTFREE(ipxp->ipxp_route.ro_rt);
330	LIST_REMOVE(ipxp, ipxp_list);
331	IPX_LOCK_DESTROY(ipxp);
332	free(ipxp, M_PCB);
333}
334
335void
336ipx_getsockaddr(struct ipxpcb *ipxp, struct sockaddr **nam)
337{
338	struct sockaddr_ipx *sipx, ssipx;
339
340	sipx = &ssipx;
341	bzero((caddr_t)sipx, sizeof(*sipx));
342	sipx->sipx_len = sizeof(*sipx);
343	sipx->sipx_family = AF_IPX;
344	IPX_LOCK(ipxp);
345	sipx->sipx_addr = ipxp->ipxp_laddr;
346	IPX_UNLOCK(ipxp);
347	*nam = sodupsockaddr((struct sockaddr *)sipx, M_WAITOK);
348}
349
350void
351ipx_getpeeraddr(struct ipxpcb *ipxp, struct sockaddr **nam)
352{
353	struct sockaddr_ipx *sipx, ssipx;
354
355	sipx = &ssipx;
356	bzero(sipx, sizeof(*sipx));
357	sipx->sipx_len = sizeof(*sipx);
358	sipx->sipx_family = AF_IPX;
359	IPX_LOCK(ipxp);
360	sipx->sipx_addr = ipxp->ipxp_faddr;
361	IPX_UNLOCK(ipxp);
362	*nam = sodupsockaddr((struct sockaddr *)sipx, M_WAITOK);
363}
364
365struct ipxpcb *
366ipx_pcblookup(struct ipx_addr *faddr, u_short lport, int wildp)
367{
368	struct ipxpcb *ipxp, *match = NULL;
369	int matchwild = 3, wildcard;
370	u_short fport;
371
372	IPX_LIST_LOCK_ASSERT();
373
374	fport = faddr->x_port;
375	LIST_FOREACH(ipxp, &ipxpcb_list, ipxp_list) {
376		if (ipxp->ipxp_lport != lport)
377			continue;
378		wildcard = 0;
379		if (ipx_nullhost(ipxp->ipxp_faddr)) {
380			if (!ipx_nullhost(*faddr))
381				wildcard++;
382		} else {
383			if (ipx_nullhost(*faddr))
384				wildcard++;
385			else {
386				if (!ipx_hosteq(ipxp->ipxp_faddr, *faddr))
387					continue;
388				if (ipxp->ipxp_fport != fport) {
389					if (ipxp->ipxp_fport != 0)
390						continue;
391					else
392						wildcard++;
393				}
394			}
395		}
396		if (wildcard && wildp == 0)
397			continue;
398		if (wildcard < matchwild) {
399			match = ipxp;
400			matchwild = wildcard;
401			if (wildcard == 0)
402				break;
403		}
404	}
405	return (match);
406}
407