2 * Copyright (c) 1995, Mike Mitchell
3 * Copyright (c) 1984, 1985, 1986, 1987, 1993
4 * The Regents of the University of California. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by the University of
17 * California, Berkeley and its contributors.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * $FreeBSD: src/sys/netipx/ipx.c,v 1.17.2.3 2003/04/04 09:35:43 tjr Exp $
37 * $DragonFly: src/sys/netproto/ipx/ipx.c,v 1.14 2008/01/06 16:55:52 swildner Exp $
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/malloc.h>
43 #include <sys/sockio.h>
45 #include <sys/socket.h>
46 #include <sys/thread2.h>
49 #include <net/route.h>
55 struct ipx_ifaddr
*ipx_ifaddr
;
57 static void ipx_ifscrub(struct ifnet
*ifp
, struct ipx_ifaddr
*ia
);
58 static int ipx_ifinit(struct ifnet
*ifp
, struct ipx_ifaddr
*ia
,
59 struct sockaddr_ipx
*sipx
, int scrub
);
62 * Generic internet control operations (ioctl's).
65 ipx_control(struct socket
*so
, u_long cmd
, caddr_t data
,
66 struct ifnet
*ifp
, struct thread
*td
)
68 struct ifreq
*ifr
= (struct ifreq
*)data
;
69 struct ipx_aliasreq
*ifra
= (struct ipx_aliasreq
*)data
;
70 struct ipx_ifaddr
*ia
;
72 struct ipx_ifaddr
*oia
;
73 int dstIsNew
, hostIsNew
;
77 * Find address for this interface, if it exists.
80 return (EADDRNOTAVAIL
);
81 for (ia
= ipx_ifaddr
; ia
!= NULL
; ia
= ia
->ia_next
)
82 if (ia
->ia_ifp
== ifp
)
89 return (EADDRNOTAVAIL
);
90 *(struct sockaddr_ipx
*)&ifr
->ifr_addr
= ia
->ia_addr
;
95 return (EADDRNOTAVAIL
);
96 if ((ifp
->if_flags
& IFF_BROADCAST
) == 0)
98 *(struct sockaddr_ipx
*)&ifr
->ifr_dstaddr
= ia
->ia_broadaddr
;
103 return (EADDRNOTAVAIL
);
104 if ((ifp
->if_flags
& IFF_POINTOPOINT
) == 0)
106 *(struct sockaddr_ipx
*)&ifr
->ifr_dstaddr
= ia
->ia_dstaddr
;
110 if ((error
= suser(td
)) != 0)
116 if (ifra
->ifra_addr
.sipx_family
== AF_IPX
)
117 for (oia
= ia
; ia
!= NULL
; ia
= ia
->ia_next
) {
118 if (ia
->ia_ifp
== ifp
&&
119 ipx_neteq(ia
->ia_addr
.sipx_addr
,
120 ifra
->ifra_addr
.sipx_addr
))
123 if (cmd
== SIOCDIFADDR
&& ia
== NULL
)
124 return (EADDRNOTAVAIL
);
130 oia
= (struct ipx_ifaddr
*)
131 kmalloc(sizeof(*ia
), M_IFADDR
,
133 if ((ia
= ipx_ifaddr
) != NULL
) {
134 for ( ; ia
->ia_next
!= NULL
; ia
= ia
->ia_next
)
140 ifa
= (struct ifaddr
*)ia
;
141 TAILQ_INSERT_TAIL(&ifp
->if_addrhead
, ifa
, ifa_link
);
143 ifa
->ifa_addr
= (struct sockaddr
*)&ia
->ia_addr
;
145 ifa
->ifa_netmask
= (struct sockaddr
*)&ipx_netmask
;
147 ifa
->ifa_dstaddr
= (struct sockaddr
*)&ia
->ia_dstaddr
;
148 if (ifp
->if_flags
& IFF_BROADCAST
) {
149 ia
->ia_broadaddr
.sipx_family
= AF_IPX
;
150 ia
->ia_broadaddr
.sipx_len
= sizeof(ia
->ia_addr
);
151 ia
->ia_broadaddr
.sipx_addr
.x_host
= ipx_broadhost
;
159 if ((ifp
->if_flags
& IFF_POINTOPOINT
) == 0)
161 if (ia
->ia_flags
& IFA_ROUTE
) {
162 rtinit(&(ia
->ia_ifa
), (int)RTM_DELETE
, RTF_HOST
);
163 ia
->ia_flags
&= ~IFA_ROUTE
;
166 lwkt_serialize_enter(ifp
->if_serializer
);
167 error
= ifp
->if_ioctl(ifp
, SIOCSIFDSTADDR
,
168 (void *)ia
, td
->td_proc
->p_ucred
);
169 lwkt_serialize_exit(ifp
->if_serializer
);
173 *(struct sockaddr
*)&ia
->ia_dstaddr
= ifr
->ifr_dstaddr
;
177 return (ipx_ifinit(ifp
, ia
,
178 (struct sockaddr_ipx
*)&ifr
->ifr_addr
, 1));
181 ipx_ifscrub(ifp
, ia
);
182 ifa
= (struct ifaddr
*)ia
;
183 TAILQ_REMOVE(&ifp
->if_addrhead
, ifa
, ifa_link
);
185 if (oia
== (ia
= ipx_ifaddr
)) {
186 ipx_ifaddr
= ia
->ia_next
;
188 while (ia
->ia_next
&& (ia
->ia_next
!= oia
)) {
192 ia
->ia_next
= oia
->ia_next
;
194 kprintf("Didn't unlink ipxifadr from list\n");
196 IFAFREE((&oia
->ia_ifa
));
202 if (ia
->ia_addr
.sipx_family
== AF_IPX
) {
203 if (ifra
->ifra_addr
.sipx_len
== 0) {
204 ifra
->ifra_addr
= ia
->ia_addr
;
206 } else if (ipx_neteq(ifra
->ifra_addr
.sipx_addr
,
207 ia
->ia_addr
.sipx_addr
))
210 if ((ifp
->if_flags
& IFF_POINTOPOINT
) &&
211 (ifra
->ifra_dstaddr
.sipx_family
== AF_IPX
)) {
213 ipx_ifscrub(ifp
, ia
);
214 ia
->ia_dstaddr
= ifra
->ifra_dstaddr
;
217 if (ifra
->ifra_addr
.sipx_family
== AF_IPX
&&
218 (hostIsNew
|| dstIsNew
))
219 error
= ipx_ifinit(ifp
, ia
, &ifra
->ifra_addr
, 0);
223 if (ifp
->if_ioctl
== NULL
)
225 lwkt_serialize_enter(ifp
->if_serializer
);
226 error
= ifp
->if_ioctl(ifp
, cmd
, data
, td
->td_proc
->p_ucred
);
227 lwkt_serialize_exit(ifp
->if_serializer
);
233 * Delete any previous route for an old address.
236 ipx_ifscrub(struct ifnet
*ifp
, struct ipx_ifaddr
*ia
)
238 if (ia
->ia_flags
& IFA_ROUTE
) {
239 if (ifp
->if_flags
& IFF_POINTOPOINT
) {
240 rtinit(&(ia
->ia_ifa
), (int)RTM_DELETE
, RTF_HOST
);
242 rtinit(&(ia
->ia_ifa
), (int)RTM_DELETE
, 0);
243 ia
->ia_flags
&= ~IFA_ROUTE
;
247 * Initialize an interface's internet address
248 * and routing table entry.
251 ipx_ifinit(struct ifnet
*ifp
, struct ipx_ifaddr
*ia
,
252 struct sockaddr_ipx
*sipx
, int scrub
)
254 struct sockaddr_ipx oldaddr
;
258 * Set up new addresses.
260 oldaddr
= ia
->ia_addr
;
264 * The convention we shall adopt for naming is that
265 * a supplied address of zero means that "we don't care".
266 * Use the MAC address of the interface. If it is an
267 * interface without a MAC address, like a serial line, the
268 * address must be supplied.
270 * Give the interface a chance to initialize
271 * if this is its first address,
272 * and to validate the address if necessary.
274 lwkt_serialize_enter(ifp
->if_serializer
);
275 if (ifp
->if_ioctl
!= NULL
&&
276 (error
= ifp
->if_ioctl(ifp
, SIOCSIFADDR
, (void *)ia
,
277 (struct ucred
*)NULL
))) {
278 ia
->ia_addr
= oldaddr
;
279 lwkt_serialize_exit(ifp
->if_serializer
);
282 lwkt_serialize_exit(ifp
->if_serializer
);
283 ia
->ia_ifa
.ifa_metric
= ifp
->if_metric
;
285 * Add route for the network.
288 ia
->ia_ifa
.ifa_addr
= (struct sockaddr
*)&oldaddr
;
289 ipx_ifscrub(ifp
, ia
);
290 ia
->ia_ifa
.ifa_addr
= (struct sockaddr
*)&ia
->ia_addr
;
292 if (ifp
->if_flags
& IFF_POINTOPOINT
)
293 rtinit(&(ia
->ia_ifa
), (int)RTM_ADD
, RTF_HOST
|RTF_UP
);
295 ia
->ia_broadaddr
.sipx_addr
.x_net
= ia
->ia_addr
.sipx_addr
.x_net
;
296 rtinit(&(ia
->ia_ifa
), (int)RTM_ADD
, RTF_UP
);
298 ia
->ia_flags
|= IFA_ROUTE
;
303 * Return address info for specified internet network.
306 ipx_iaonnetof(struct ipx_addr
*dst
)
308 struct ipx_ifaddr
*ia
;
309 struct ipx_addr
*compare
;
311 struct ipx_ifaddr
*ia_maybe
= NULL
;
312 union ipx_net net
= dst
->x_net
;
314 for (ia
= ipx_ifaddr
; ia
!= NULL
; ia
= ia
->ia_next
) {
315 if ((ifp
= ia
->ia_ifp
) != NULL
) {
316 if (ifp
->if_flags
& IFF_POINTOPOINT
) {
317 compare
= &satoipx_addr(ia
->ia_dstaddr
);
318 if (ipx_hosteq(*dst
, *compare
))
320 if (ipx_neteqnn(net
, ia
->ia_addr
.sipx_addr
.x_net
))
323 if (ipx_neteqnn(net
, ia
->ia_addr
.sipx_addr
.x_net
))
333 ipx_printhost(struct ipx_addr
*addr
)
336 struct ipx_addr work
= *addr
;
338 char *net
= "", *host
= "";
339 char cport
[10], chost
[15], cnet
[15];
341 port
= ntohs(work
.x_port
);
343 if (ipx_nullnet(work
) && ipx_nullhost(work
)) {
346 kprintf("*.%x", port
);
353 if (ipx_wildnet(work
))
355 else if (ipx_nullnet(work
))
358 q
= work
.x_net
.c_net
;
359 ksnprintf(cnet
, sizeof(cnet
), "%x%x%x%x",
360 q
[0], q
[1], q
[2], q
[3]);
361 for (p
= cnet
; *p
== '0' && p
< cnet
+ 8; p
++)
366 if (ipx_wildhost(work
))
368 else if (ipx_nullhost(work
))
371 q
= work
.x_host
.c_host
;
372 ksnprintf(chost
, sizeof(chost
), "%x%x%x%x%x%x",
373 q
[0], q
[1], q
[2], q
[3], q
[4], q
[5]);
374 for (p
= chost
; *p
== '0' && p
< chost
+ 12; p
++)
380 if (strcmp(host
, "*") == 0) {
382 ksnprintf(cport
, sizeof(cport
), "%x", port
);
384 ksnprintf(cport
, sizeof(cport
), ".%x", port
);
388 kprintf("%s.%s%s", net
, host
, cport
);