HAMMER Utilities: MFC work to date.
[dragonfly.git] / sys / netproto / ipx / ipx_outputfl.c
blobc9071aa8b70982a45bbe15dc48495c22a36aee2f
1 /*
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
8 * are met:
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
32 * SUCH DAMAGE.
34 * @(#)ipx_outputfl.c
36 * $FreeBSD: src/sys/netipx/ipx_outputfl.c,v 1.14.2.1 2000/05/01 01:10:24 bp Exp $
37 * $DragonFly: src/sys/netproto/ipx/ipx_outputfl.c,v 1.9 2008/05/14 11:59:24 sephe Exp $
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/mbuf.h>
43 #include <sys/socket.h>
45 #include <net/if.h>
46 #include <net/route.h>
48 #include "ipx.h"
49 #include "ipx_if.h"
50 #include "ipx_var.h"
52 static int ipx_copy_output = 0;
54 int
55 ipx_outputfl(struct mbuf *m0, struct route *ro, int flags)
57 struct ipx *ipx = mtod(m0, struct ipx *);
58 struct ifnet *ifp = NULL;
59 int error = 0;
60 struct sockaddr_ipx *dst;
61 struct route ipxroute;
64 * Route packet.
66 if (ro == NULL) {
67 ro = &ipxroute;
68 bzero((caddr_t)ro, sizeof(*ro));
70 dst = (struct sockaddr_ipx *)&ro->ro_dst;
71 if (ro->ro_rt == NULL) {
72 dst->sipx_family = AF_IPX;
73 dst->sipx_len = sizeof(*dst);
74 dst->sipx_addr = ipx->ipx_dna;
75 dst->sipx_addr.x_port = 0;
77 * If routing to interface only,
78 * short circuit routing lookup.
80 if (flags & IPX_ROUTETOIF) {
81 struct ipx_ifaddr *ia = ipx_iaonnetof(&ipx->ipx_dna);
83 if (ia == NULL) {
84 ipxstat.ipxs_noroute++;
85 error = ENETUNREACH;
86 goto bad;
88 ifp = ia->ia_ifp;
89 goto gotif;
91 rtalloc(ro);
92 } else if ((ro->ro_rt->rt_flags & RTF_UP) == 0) {
94 * The old route has gone away; try for a new one.
96 rtfree(ro->ro_rt);
97 ro->ro_rt = NULL;
98 rtalloc(ro);
100 if (ro->ro_rt == NULL || (ifp = ro->ro_rt->rt_ifp) == NULL) {
101 ipxstat.ipxs_noroute++;
102 error = ENETUNREACH;
103 goto bad;
105 ro->ro_rt->rt_use++;
106 if (ro->ro_rt->rt_flags & (RTF_GATEWAY|RTF_HOST))
107 dst = (struct sockaddr_ipx *)ro->ro_rt->rt_gateway;
108 gotif:
110 * Look for multicast addresses and
111 * and verify user is allowed to send
112 * such a packet.
114 if (dst->sipx_addr.x_host.c_host[0]&1) {
115 if ((ifp->if_flags & (IFF_BROADCAST | IFF_LOOPBACK)) == 0) {
116 error = EADDRNOTAVAIL;
117 goto bad;
119 if ((flags & IPX_ALLOWBROADCAST) == 0) {
120 error = EACCES;
121 goto bad;
123 m0->m_flags |= M_BCAST;
126 if (htons(ipx->ipx_len) <= ifp->if_mtu) {
127 ipxstat.ipxs_localout++;
128 if (ipx_copy_output) {
129 ipx_watch_output(m0, ifp);
131 error = ifp->if_output(ifp, m0, (struct sockaddr *)dst,
132 ro->ro_rt);
133 goto done;
134 } else {
135 ipxstat.ipxs_mtutoosmall++;
136 error = EMSGSIZE;
138 bad:
139 if (ipx_copy_output) {
140 ipx_watch_output(m0, ifp);
142 m_freem(m0);
143 done:
144 if (ro == &ipxroute && (flags & IPX_ROUTETOIF) == 0 &&
145 ro->ro_rt != NULL) {
146 RTFREE(ro->ro_rt);
147 ro->ro_rt = NULL;
149 return (error);
153 * This will broadcast the type 20 (Netbios) packet to all the interfaces
154 * that have ipx configured and isn't in the list yet.
157 ipx_output_type20(struct mbuf *m)
159 struct ipx *ipx;
160 union ipx_net *nbnet;
161 struct ipx_ifaddr *ia, *tia = NULL;
162 int error = 0;
163 struct mbuf *m1;
164 int i;
165 struct ifnet *ifp;
166 struct sockaddr_ipx dst;
169 * We have to get to the 32 bytes after the ipx header also, so
170 * that we can fill in the network address of the receiving
171 * interface.
173 if ((m->m_flags & M_EXT || m->m_len < (sizeof(struct ipx) + 32)) &&
174 (m = m_pullup(m, sizeof(struct ipx) + 32)) == NULL) {
175 ipxstat.ipxs_toosmall++;
176 return (0);
178 ipx = mtod(m, struct ipx *);
179 nbnet = (union ipx_net *)(ipx + 1);
181 if (ipx->ipx_tc >= 8)
182 goto bad;
184 * Now see if we have already seen this.
186 for (ia = ipx_ifaddr; ia != NULL; ia = ia->ia_next)
187 if(ia->ia_ifa.ifa_ifp == m->m_pkthdr.rcvif) {
188 if(tia == NULL)
189 tia = ia;
191 for (i=0;i<ipx->ipx_tc;i++,nbnet++)
192 if(ipx_neteqnn(ia->ia_addr.sipx_addr.x_net,
193 *nbnet))
194 goto bad;
197 * Don't route the packet if the interface where it come from
198 * does not have an IPX address.
200 if(tia == NULL)
201 goto bad;
204 * Add our receiving interface to the list.
206 nbnet = (union ipx_net *)(ipx + 1);
207 nbnet += ipx->ipx_tc;
208 *nbnet = tia->ia_addr.sipx_addr.x_net;
211 * Increment the hop count.
213 ipx->ipx_tc++;
214 ipxstat.ipxs_forward++;
217 * Send to all directly connected ifaces not in list and
218 * not to the one it came from.
220 m->m_flags &= ~M_BCAST;
221 bzero(&dst, sizeof(dst));
222 dst.sipx_family = AF_IPX;
223 dst.sipx_len = 12;
224 dst.sipx_addr.x_host = ipx_broadhost;
226 for (ia = ipx_ifaddr; ia != NULL; ia = ia->ia_next)
227 if(ia->ia_ifa.ifa_ifp != m->m_pkthdr.rcvif) {
228 nbnet = (union ipx_net *)(ipx + 1);
229 for (i=0;i<ipx->ipx_tc;i++,nbnet++)
230 if(ipx_neteqnn(ia->ia_addr.sipx_addr.x_net,
231 *nbnet))
232 goto skip_this;
235 * Insert the net address of the dest net and
236 * calculate the new checksum if needed.
238 ifp = ia->ia_ifa.ifa_ifp;
239 dst.sipx_addr.x_net = ia->ia_addr.sipx_addr.x_net;
240 ipx->ipx_dna.x_net = dst.sipx_addr.x_net;
241 if(ipx->ipx_sum != 0xffff)
242 ipx->ipx_sum = ipx_cksum(m, ntohs(ipx->ipx_len));
244 m1 = m_copym(m, 0, M_COPYALL, MB_DONTWAIT);
245 if(m1) {
246 error = ifp->if_output(ifp, m1,
247 (struct sockaddr *)&dst, NULL);
248 /* XXX ipxstat.ipxs_localout++; */
250 skip_this: ;
253 bad:
254 m_freem(m);
255 return (error);