]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netns/ns_pcb.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1984, 1985, 1986, 1987, 1993
24 * The Regents of the University of California. All rights reserved.
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
29 * 1. Redistributions of source code must retain the above copyright
30 * notice, this list of conditions and the following disclaimer.
31 * 2. Redistributions in binary form must reproduce the above copyright
32 * notice, this list of conditions and the following disclaimer in the
33 * documentation and/or other materials provided with the distribution.
34 * 3. All advertising materials mentioning features or use of this software
35 * must display the following acknowledgement:
36 * This product includes software developed by the University of
37 * California, Berkeley and its contributors.
38 * 4. Neither the name of the University nor the names of its contributors
39 * may be used to endorse or promote products derived from this software
40 * without specific prior written permission.
42 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * @(#)ns_pcb.c 8.1 (Berkeley) 6/10/93
57 #include <sys/param.h>
58 #include <sys/systm.h>
60 #include <sys/errno.h>
61 #include <sys/socket.h>
62 #include <sys/socketvar.h>
63 #include <sys/protosw.h>
66 #include <net/route.h>
69 #include <netns/ns_if.h>
70 #include <netns/ns_pcb.h>
72 struct ns_addr zerons_addr
;
79 register struct nspcb
*nsp
;
81 m
= m_getclr(M_DONTWAIT
, MT_PCB
);
84 nsp
= mtod(m
, struct nspcb
*);
87 so
->so_pcb
= (caddr_t
)nsp
;
92 register struct nspcb
*nsp
;
95 register struct sockaddr_ns
*sns
;
98 if (nsp
->nsp_lport
|| !ns_nullhost(nsp
->nsp_laddr
))
102 sns
= mtod(nam
, struct sockaddr_ns
*);
103 if (nam
->m_len
!= sizeof (*sns
))
105 if (!ns_nullhost(sns
->sns_addr
)) {
106 int tport
= sns
->sns_port
;
108 sns
->sns_port
= 0; /* yech... */
109 if (ifa_ifwithaddr((struct sockaddr
*)sns
) == 0)
110 return (EADDRNOTAVAIL
);
111 sns
->sns_port
= tport
;
113 lport
= sns
->sns_port
;
115 u_short aport
= ntohs(lport
);
117 if (aport
< NSPORT_RESERVED
&&
118 (nsp
->nsp_socket
->so_state
& SS_PRIV
) == 0)
120 if (ns_pcblookup(&zerons_addr
, lport
, 0))
123 nsp
->nsp_laddr
= sns
->sns_addr
;
127 if (nspcb
.nsp_lport
++ < NSPORT_RESERVED
)
128 nspcb
.nsp_lport
= NSPORT_RESERVED
;
129 lport
= htons(nspcb
.nsp_lport
);
130 } while (ns_pcblookup(&zerons_addr
, lport
, 0));
131 nsp
->nsp_lport
= lport
;
136 * Connect from a socket to a specified address.
137 * Both address and port must be specified in argument sns.
138 * If don't have a local address for this socket yet,
141 ns_pcbconnect(nsp
, nam
)
145 struct ns_ifaddr
*ia
;
146 register struct sockaddr_ns
*sns
= mtod(nam
, struct sockaddr_ns
*);
147 register struct ns_addr
*dst
;
148 register struct route
*ro
;
151 if (nam
->m_len
!= sizeof (*sns
))
153 if (sns
->sns_family
!= AF_NS
)
154 return (EAFNOSUPPORT
);
155 if (sns
->sns_port
==0 || ns_nullhost(sns
->sns_addr
))
156 return (EADDRNOTAVAIL
);
158 * If we haven't bound which network number to use as ours,
159 * we will use the number of the outgoing interface.
160 * This depends on having done a routing lookup, which
161 * we will probably have to do anyway, so we might
162 * as well do it now. On the other hand if we are
163 * sending to multiple destinations we may have already
164 * done the lookup, so see if we can use the route
165 * from before. In any case, we only
166 * chose a port number once, even if sending to multiple
169 ro
= &nsp
->nsp_route
;
170 dst
= &satons_addr(ro
->ro_dst
);
171 if (nsp
->nsp_socket
->so_options
& SO_DONTROUTE
)
173 if (!ns_neteq(nsp
->nsp_lastdst
, sns
->sns_addr
))
175 if (!ns_hosteq(nsp
->nsp_lastdst
, sns
->sns_addr
)) {
176 if (ro
->ro_rt
&& ! (ro
->ro_rt
->rt_flags
& RTF_HOST
)) {
177 /* can patch route to avoid rtalloc */
178 *dst
= sns
->sns_addr
;
183 ro
->ro_rt
= (struct rtentry
*)0;
184 nsp
->nsp_laddr
.x_net
= ns_zeronet
;
186 }/* else cached route is ok; do nothing */
187 nsp
->nsp_lastdst
= sns
->sns_addr
;
188 if ((nsp
->nsp_socket
->so_options
& SO_DONTROUTE
) == 0 && /*XXX*/
189 (ro
->ro_rt
== (struct rtentry
*)0 ||
190 ro
->ro_rt
->rt_ifp
== (struct ifnet
*)0)) {
191 /* No route yet, so try to acquire one */
192 ro
->ro_dst
.sa_family
= AF_NS
;
193 ro
->ro_dst
.sa_len
= sizeof(ro
->ro_dst
);
194 *dst
= sns
->sns_addr
;
198 if (ns_neteqnn(nsp
->nsp_laddr
.x_net
, ns_zeronet
)) {
200 * If route is known or can be allocated now,
201 * our src addr is taken from the i/f, else punt.
204 ia
= (struct ns_ifaddr
*)0;
206 * If we found a route, use the address
207 * corresponding to the outgoing interface
209 if (ro
->ro_rt
&& (ifp
= ro
->ro_rt
->rt_ifp
))
210 for (ia
= ns_ifaddr
; ia
; ia
= ia
->ia_next
)
211 if (ia
->ia_ifp
== ifp
)
214 u_short fport
= sns
->sns_addr
.x_port
;
215 sns
->sns_addr
.x_port
= 0;
216 ia
= (struct ns_ifaddr
*)
217 ifa_ifwithdstaddr((struct sockaddr
*)sns
);
218 sns
->sns_addr
.x_port
= fport
;
220 ia
= ns_iaonnetof(&sns
->sns_addr
);
224 return (EADDRNOTAVAIL
);
226 nsp
->nsp_laddr
.x_net
= satons_addr(ia
->ia_addr
).x_net
;
228 if (ns_pcblookup(&sns
->sns_addr
, nsp
->nsp_lport
, 0))
230 if (ns_nullhost(nsp
->nsp_laddr
)) {
231 if (nsp
->nsp_lport
== 0)
232 (void) ns_pcbbind(nsp
, (struct mbuf
*)0);
233 nsp
->nsp_laddr
.x_host
= ns_thishost
;
235 nsp
->nsp_faddr
= sns
->sns_addr
;
236 /* Includes nsp->nsp_fport = sns->sns_port; */
240 ns_pcbdisconnect(nsp
)
244 nsp
->nsp_faddr
= zerons_addr
;
245 if (nsp
->nsp_socket
->so_state
& SS_NOFDREF
)
252 struct socket
*so
= nsp
->nsp_socket
;
256 if (nsp
->nsp_route
.ro_rt
)
257 rtfree(nsp
->nsp_route
.ro_rt
);
259 (void) m_free(dtom(nsp
));
262 ns_setsockaddr(nsp
, nam
)
263 register struct nspcb
*nsp
;
266 register struct sockaddr_ns
*sns
= mtod(nam
, struct sockaddr_ns
*);
268 nam
->m_len
= sizeof (*sns
);
269 sns
= mtod(nam
, struct sockaddr_ns
*);
270 bzero((caddr_t
)sns
, sizeof (*sns
));
271 sns
->sns_len
= sizeof(*sns
);
272 sns
->sns_family
= AF_NS
;
273 sns
->sns_addr
= nsp
->nsp_laddr
;
276 ns_setpeeraddr(nsp
, nam
)
277 register struct nspcb
*nsp
;
280 register struct sockaddr_ns
*sns
= mtod(nam
, struct sockaddr_ns
*);
282 nam
->m_len
= sizeof (*sns
);
283 sns
= mtod(nam
, struct sockaddr_ns
*);
284 bzero((caddr_t
)sns
, sizeof (*sns
));
285 sns
->sns_len
= sizeof(*sns
);
286 sns
->sns_family
= AF_NS
;
287 sns
->sns_addr
= nsp
->nsp_faddr
;
291 * Pass some notification to all connections of a protocol
292 * associated with address dst. Call the
293 * protocol specific routine to handle each connection.
294 * Also pass an extra paramter via the nspcb. (which may in fact
295 * be a parameter list!)
297 ns_pcbnotify(dst
, errno
, notify
, param
)
298 register struct ns_addr
*dst
;
300 int errno
, (*notify
)();
302 register struct nspcb
*nsp
, *oinp
;
305 for (nsp
= (&nspcb
)->nsp_next
; nsp
!= (&nspcb
);) {
306 if (!ns_hosteq(*dst
,nsp
->nsp_faddr
)) {
311 if (nsp
->nsp_socket
== 0)
314 nsp
->nsp_socket
->so_error
= errno
;
317 oinp
->nsp_notify_param
= param
;
325 * After a routing change, flush old routing
326 * and allocate a (hopefully) better one.
331 if (nsp
->nsp_route
.ro_rt
) {
332 rtfree(nsp
->nsp_route
.ro_rt
);
333 nsp
->nsp_route
.ro_rt
= 0;
335 * A new route can be allocated the next time
336 * output is attempted.
339 /* SHOULD NOTIFY HIGHER-LEVEL PROTOCOLS */
344 ns_pcblookup(faddr
, lport
, wildp
)
345 struct ns_addr
*faddr
;
348 register struct nspcb
*nsp
, *match
= 0;
349 int matchwild
= 3, wildcard
;
352 fport
= faddr
->x_port
;
353 for (nsp
= (&nspcb
)->nsp_next
; nsp
!= (&nspcb
); nsp
= nsp
->nsp_next
) {
354 if (nsp
->nsp_lport
!= lport
)
357 if (ns_nullhost(nsp
->nsp_faddr
)) {
358 if (!ns_nullhost(*faddr
))
361 if (ns_nullhost(*faddr
))
364 if (!ns_hosteq(nsp
->nsp_faddr
, *faddr
))
366 if (nsp
->nsp_fport
!= fport
) {
367 if (nsp
->nsp_fport
!= 0)
374 if (wildcard
&& wildp
==0)
376 if (wildcard
< matchwild
) {
378 matchwild
= wildcard
;