ddp_input.c revision 1.32 1 1.32 thorpej /* $NetBSD: ddp_input.c,v 1.32 2022/09/03 01:48:22 thorpej Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * Copyright (c) 1990,1994 Regents of The University of Michigan.
5 1.1 christos * All Rights Reserved.
6 1.1 christos *
7 1.1 christos * Permission to use, copy, modify, and distribute this software and
8 1.1 christos * its documentation for any purpose and without fee is hereby granted,
9 1.1 christos * provided that the above copyright notice appears in all copies and
10 1.1 christos * that both that copyright notice and this permission notice appear
11 1.1 christos * in supporting documentation, and that the name of The University
12 1.1 christos * of Michigan not be used in advertising or publicity pertaining to
13 1.1 christos * distribution of the software without specific, written prior
14 1.1 christos * permission. This software is supplied as is without expressed or
15 1.1 christos * implied warranties of any kind.
16 1.1 christos *
17 1.1 christos * This product includes software developed by the University of
18 1.1 christos * California, Berkeley and its contributors.
19 1.1 christos *
20 1.1 christos * Research Systems Unix Group
21 1.1 christos * The University of Michigan
22 1.1 christos * c/o Wesley Craig
23 1.1 christos * 535 W. William Street
24 1.1 christos * Ann Arbor, Michigan
25 1.1 christos * +1-313-764-2278
26 1.1 christos * netatalk (at) umich.edu
27 1.1 christos */
28 1.6 lukem
29 1.6 lukem #include <sys/cdefs.h>
30 1.32 thorpej __KERNEL_RCSID(0, "$NetBSD: ddp_input.c,v 1.32 2022/09/03 01:48:22 thorpej Exp $");
31 1.30 rjs #include "opt_atalk.h"
32 1.1 christos
33 1.1 christos #include <sys/param.h>
34 1.1 christos #include <sys/systm.h>
35 1.1 christos #include <sys/kernel.h>
36 1.1 christos #include <net/netisr.h>
37 1.1 christos #include <sys/mbuf.h>
38 1.1 christos #include <sys/socket.h>
39 1.1 christos #include <sys/socketvar.h>
40 1.1 christos #include <sys/syslog.h>
41 1.1 christos #include <net/if.h>
42 1.1 christos #include <net/route.h>
43 1.1 christos #include <net/if_ether.h>
44 1.1 christos #include <netinet/in.h>
45 1.1 christos
46 1.1 christos #include <netatalk/at.h>
47 1.1 christos #include <netatalk/at_var.h>
48 1.1 christos #include <netatalk/ddp.h>
49 1.1 christos #include <netatalk/ddp_var.h>
50 1.18 thorpej #include <netatalk/ddp_private.h>
51 1.1 christos #include <netatalk/at_extern.h>
52 1.1 christos
53 1.1 christos int ddp_forward = 1;
54 1.1 christos int ddp_firewall = 0;
55 1.1 christos extern int ddp_cksum;
56 1.32 thorpej void ddp_input(struct mbuf *, struct ifnet *, struct elaphdr *, int);
57 1.32 thorpej
58 1.32 thorpej static struct at_ifaddr *
59 1.32 thorpej at_ifaddr_for_ifp(struct ifnet * const ifp, int phase_flag)
60 1.32 thorpej {
61 1.32 thorpej struct at_ifaddr *aa;
62 1.32 thorpej
63 1.32 thorpej TAILQ_FOREACH(aa, &at_ifaddr, aa_list) {
64 1.32 thorpej if (aa->aa_ifp == ifp &&
65 1.32 thorpej (aa->aa_flags & AFA_PHASE2) == phase_flag) {
66 1.32 thorpej return aa;
67 1.32 thorpej }
68 1.32 thorpej }
69 1.32 thorpej return NULL;
70 1.32 thorpej }
71 1.1 christos
72 1.1 christos void
73 1.32 thorpej atintr2(void *arg __unused)
74 1.1 christos {
75 1.32 thorpej struct mbuf *m;
76 1.1 christos
77 1.19 ad mutex_enter(softnet_lock);
78 1.32 thorpej while ((m = pktq_dequeue(at_pktq2)) != NULL) {
79 1.32 thorpej struct ifnet *ifp;
80 1.8 matt
81 1.9 jonathan m_claimm(m, &atalk_rx_mowner);
82 1.27 ozaki ifp = m_get_rcvif_NOMPSAFE(m);
83 1.32 thorpej if (at_ifaddr_for_ifp(ifp, AFA_PHASE2) == NULL) {
84 1.32 thorpej /* ifp not an appletalk interface */
85 1.1 christos m_freem(m);
86 1.1 christos continue;
87 1.1 christos }
88 1.26 plunky ddp_input(m, ifp, NULL, 2);
89 1.1 christos }
90 1.32 thorpej mutex_exit(softnet_lock);
91 1.32 thorpej }
92 1.1 christos
93 1.32 thorpej void
94 1.32 thorpej atintr1(void *arg __unused)
95 1.32 thorpej {
96 1.32 thorpej struct mbuf *m;
97 1.1 christos
98 1.32 thorpej mutex_enter(softnet_lock);
99 1.32 thorpej while ((m = pktq_dequeue(at_pktq1)) != NULL) {
100 1.32 thorpej struct ifnet *ifp;
101 1.32 thorpej struct elaphdr *elhp, elh;
102 1.8 matt
103 1.9 jonathan m_claimm(m, &atalk_rx_mowner);
104 1.27 ozaki ifp = m_get_rcvif_NOMPSAFE(m);
105 1.32 thorpej if (at_ifaddr_for_ifp(ifp, 0) == NULL) {
106 1.32 thorpej /* ifp not an appletalk interface */
107 1.1 christos m_freem(m);
108 1.1 christos continue;
109 1.1 christos }
110 1.1 christos if (m->m_len < SZ_ELAPHDR &&
111 1.1 christos ((m = m_pullup(m, SZ_ELAPHDR)) == 0)) {
112 1.18 thorpej DDP_STATINC(DDP_STAT_TOOSHORT);
113 1.1 christos continue;
114 1.1 christos }
115 1.1 christos elhp = mtod(m, struct elaphdr *);
116 1.1 christos m_adj(m, SZ_ELAPHDR);
117 1.1 christos
118 1.1 christos if (elhp->el_type == ELAP_DDPEXTEND) {
119 1.26 plunky ddp_input(m, ifp, NULL, 1);
120 1.1 christos } else {
121 1.25 tsutsui memcpy((void *) & elh, (void *) elhp, SZ_ELAPHDR);
122 1.1 christos ddp_input(m, ifp, &elh, 1);
123 1.1 christos }
124 1.1 christos }
125 1.19 ad mutex_exit(softnet_lock);
126 1.1 christos }
127 1.1 christos
128 1.1 christos struct route forwro;
129 1.1 christos
130 1.1 christos void
131 1.21 dsl ddp_input(struct mbuf *m, struct ifnet *ifp, struct elaphdr *elh, int phase)
132 1.1 christos {
133 1.16 dyoung struct rtentry *rt;
134 1.1 christos struct sockaddr_at from, to;
135 1.1 christos struct ddpshdr *dsh, ddps;
136 1.1 christos struct at_ifaddr *aa;
137 1.1 christos struct ddpehdr *deh = NULL, ddpe;
138 1.1 christos struct ddpcb *ddp;
139 1.1 christos int dlen, mlen;
140 1.1 christos u_short cksum = 0;
141 1.15 dyoung union {
142 1.15 dyoung struct sockaddr dst;
143 1.15 dyoung struct sockaddr_at dsta;
144 1.15 dyoung } u;
145 1.1 christos
146 1.23 cegger memset((void *) & from, 0, sizeof(struct sockaddr_at));
147 1.1 christos if (elh) {
148 1.18 thorpej DDP_STATINC(DDP_STAT_SHORT);
149 1.1 christos
150 1.1 christos if (m->m_len < sizeof(struct ddpshdr) &&
151 1.1 christos ((m = m_pullup(m, sizeof(struct ddpshdr))) == 0)) {
152 1.18 thorpej DDP_STATINC(DDP_STAT_TOOSHORT);
153 1.1 christos return;
154 1.1 christos }
155 1.1 christos dsh = mtod(m, struct ddpshdr *);
156 1.25 tsutsui memcpy((void *) & ddps, (void *) dsh, sizeof(struct ddpshdr));
157 1.1 christos ddps.dsh_bytes = ntohl(ddps.dsh_bytes);
158 1.1 christos dlen = ddps.dsh_len;
159 1.1 christos
160 1.1 christos to.sat_addr.s_net = ATADDR_ANYNET;
161 1.1 christos to.sat_addr.s_node = elh->el_dnode;
162 1.1 christos to.sat_port = ddps.dsh_dport;
163 1.1 christos from.sat_addr.s_net = ATADDR_ANYNET;
164 1.1 christos from.sat_addr.s_node = elh->el_snode;
165 1.1 christos from.sat_port = ddps.dsh_sport;
166 1.1 christos
167 1.1 christos for (aa = at_ifaddr.tqh_first; aa; aa = aa->aa_list.tqe_next) {
168 1.1 christos if (aa->aa_ifp == ifp &&
169 1.1 christos (aa->aa_flags & AFA_PHASE2) == 0 &&
170 1.1 christos (AA_SAT(aa)->sat_addr.s_node ==
171 1.1 christos to.sat_addr.s_node ||
172 1.1 christos to.sat_addr.s_node == ATADDR_BCAST))
173 1.1 christos break;
174 1.1 christos }
175 1.1 christos if (aa == NULL) {
176 1.1 christos m_freem(m);
177 1.1 christos return;
178 1.1 christos }
179 1.1 christos } else {
180 1.18 thorpej DDP_STATINC(DDP_STAT_LONG);
181 1.1 christos
182 1.1 christos if (m->m_len < sizeof(struct ddpehdr) &&
183 1.1 christos ((m = m_pullup(m, sizeof(struct ddpehdr))) == 0)) {
184 1.18 thorpej DDP_STATINC(DDP_STAT_TOOSHORT);
185 1.1 christos return;
186 1.1 christos }
187 1.1 christos deh = mtod(m, struct ddpehdr *);
188 1.25 tsutsui memcpy((void *) & ddpe, (void *) deh, sizeof(struct ddpehdr));
189 1.1 christos ddpe.deh_bytes = ntohl(ddpe.deh_bytes);
190 1.1 christos dlen = ddpe.deh_len;
191 1.1 christos
192 1.1 christos if ((cksum = ddpe.deh_sum) == 0) {
193 1.18 thorpej DDP_STATINC(DDP_STAT_NOSUM);
194 1.1 christos }
195 1.1 christos from.sat_addr.s_net = ddpe.deh_snet;
196 1.1 christos from.sat_addr.s_node = ddpe.deh_snode;
197 1.1 christos from.sat_port = ddpe.deh_sport;
198 1.1 christos to.sat_addr.s_net = ddpe.deh_dnet;
199 1.1 christos to.sat_addr.s_node = ddpe.deh_dnode;
200 1.1 christos to.sat_port = ddpe.deh_dport;
201 1.1 christos
202 1.1 christos if (to.sat_addr.s_net == ATADDR_ANYNET) {
203 1.1 christos for (aa = at_ifaddr.tqh_first; aa;
204 1.1 christos aa = aa->aa_list.tqe_next) {
205 1.1 christos if (phase == 1 && (aa->aa_flags & AFA_PHASE2))
206 1.1 christos continue;
207 1.1 christos
208 1.1 christos if (phase == 2 &&
209 1.1 christos (aa->aa_flags & AFA_PHASE2) == 0)
210 1.1 christos continue;
211 1.1 christos
212 1.1 christos if (aa->aa_ifp == ifp &&
213 1.1 christos (AA_SAT(aa)->sat_addr.s_node ==
214 1.1 christos to.sat_addr.s_node ||
215 1.1 christos to.sat_addr.s_node == ATADDR_BCAST ||
216 1.1 christos (ifp->if_flags & IFF_LOOPBACK)))
217 1.1 christos break;
218 1.1 christos }
219 1.1 christos } else {
220 1.1 christos for (aa = at_ifaddr.tqh_first; aa;
221 1.1 christos aa = aa->aa_list.tqe_next) {
222 1.1 christos if (to.sat_addr.s_net == aa->aa_firstnet &&
223 1.1 christos to.sat_addr.s_node == 0)
224 1.1 christos break;
225 1.1 christos
226 1.1 christos if ((ntohs(to.sat_addr.s_net) <
227 1.1 christos ntohs(aa->aa_firstnet) ||
228 1.1 christos ntohs(to.sat_addr.s_net) >
229 1.1 christos ntohs(aa->aa_lastnet)) &&
230 1.3 wrstuden (ntohs(to.sat_addr.s_net) < 0xff00 ||
231 1.3 wrstuden ntohs(to.sat_addr.s_net) > 0xfffe))
232 1.1 christos continue;
233 1.1 christos
234 1.1 christos if (to.sat_addr.s_node !=
235 1.1 christos AA_SAT(aa)->sat_addr.s_node &&
236 1.1 christos to.sat_addr.s_node != ATADDR_BCAST)
237 1.1 christos continue;
238 1.1 christos
239 1.1 christos break;
240 1.1 christos }
241 1.1 christos }
242 1.1 christos }
243 1.1 christos
244 1.1 christos /*
245 1.1 christos * Adjust the length, removing any padding that may have been added
246 1.1 christos * at a link layer. We do this before we attempt to forward a packet,
247 1.1 christos * possibly on a different media.
248 1.1 christos */
249 1.1 christos mlen = m->m_pkthdr.len;
250 1.1 christos if (mlen < dlen) {
251 1.18 thorpej DDP_STATINC(DDP_STAT_TOOSMALL);
252 1.1 christos m_freem(m);
253 1.1 christos return;
254 1.1 christos }
255 1.1 christos if (mlen > dlen) {
256 1.1 christos m_adj(m, dlen - mlen);
257 1.1 christos }
258 1.1 christos /*
259 1.1 christos * XXX Should we deliver broadcasts locally, also, or rely on the
260 1.1 christos * link layer to give us a copy? For the moment, the latter.
261 1.1 christos */
262 1.1 christos if (aa == NULL || (to.sat_addr.s_node == ATADDR_BCAST &&
263 1.1 christos aa->aa_ifp != ifp && (ifp->if_flags & IFF_LOOPBACK) == 0)) {
264 1.1 christos if (ddp_forward == 0) {
265 1.1 christos m_freem(m);
266 1.1 christos return;
267 1.1 christos }
268 1.15 dyoung sockaddr_at_init(&u.dsta, &to.sat_addr, 0);
269 1.17 dyoung rt = rtcache_lookup(&forwro, &u.dst);
270 1.15 dyoung #if 0 /* XXX The if-condition is always false. What was this
271 1.15 dyoung * actually trying to test?
272 1.15 dyoung */
273 1.1 christos if (to.sat_addr.s_net !=
274 1.13 dyoung satocsat(rtcache_getdst(&forwro))->sat_addr.s_net &&
275 1.1 christos ddpe.deh_hops == DDP_MAXHOPS) {
276 1.1 christos m_freem(m);
277 1.1 christos return;
278 1.1 christos }
279 1.15 dyoung #endif
280 1.17 dyoung if (ddp_firewall && (rt == NULL || rt->rt_ifp != ifp)) {
281 1.29 ozaki rtcache_unref(rt, &forwro);
282 1.1 christos m_freem(m);
283 1.1 christos return;
284 1.1 christos }
285 1.29 ozaki rtcache_unref(rt, &forwro);
286 1.1 christos ddpe.deh_hops++;
287 1.1 christos ddpe.deh_bytes = htonl(ddpe.deh_bytes);
288 1.25 tsutsui memcpy((void *) deh, (void *) & ddpe, sizeof(u_short));/*XXX*/
289 1.1 christos if (ddp_route(m, &forwro)) {
290 1.18 thorpej DDP_STATINC(DDP_STAT_CANTFORWARD);
291 1.1 christos } else {
292 1.18 thorpej DDP_STATINC(DDP_STAT_FORWARD);
293 1.1 christos }
294 1.1 christos return;
295 1.1 christos }
296 1.1 christos from.sat_len = sizeof(struct sockaddr_at);
297 1.1 christos from.sat_family = AF_APPLETALK;
298 1.1 christos
299 1.1 christos if (elh) {
300 1.1 christos m_adj(m, sizeof(struct ddpshdr));
301 1.1 christos } else {
302 1.1 christos if (ddp_cksum && cksum && cksum != at_cksum(m, sizeof(int))) {
303 1.18 thorpej DDP_STATINC(DDP_STAT_BADSUM);
304 1.1 christos m_freem(m);
305 1.1 christos return;
306 1.1 christos }
307 1.1 christos m_adj(m, sizeof(struct ddpehdr));
308 1.1 christos }
309 1.1 christos
310 1.1 christos if ((ddp = ddp_search(&from, &to, aa)) == NULL) {
311 1.1 christos m_freem(m);
312 1.1 christos return;
313 1.1 christos }
314 1.1 christos if (sbappendaddr(&ddp->ddp_socket->so_rcv, (struct sockaddr *) & from,
315 1.1 christos m, (struct mbuf *) 0) == 0) {
316 1.18 thorpej DDP_STATINC(DDP_STAT_NOSOCKSPACE);
317 1.31 roy soroverflow(ddp->ddp_socket);
318 1.1 christos m_freem(m);
319 1.1 christos return;
320 1.1 christos }
321 1.4 aidan #if IFA_STATS
322 1.4 aidan if (aa)
323 1.4 aidan aa->aa_ifa.ifa_data.ifad_inbytes += dlen;
324 1.4 aidan #endif
325 1.1 christos sorwakeup(ddp->ddp_socket);
326 1.1 christos }
327 1.1 christos
328 1.1 christos #if 0
329 1.1 christos
330 1.1 christos #define BPXLEN 48
331 1.1 christos #define BPALEN 16
332 1.1 christos #include <ctype.h>
333 1.1 christos
334 1.1 christos static void
335 1.21 dsl bprint(char *data, int len)
336 1.1 christos {
337 1.1 christos char xout[BPXLEN], aout[BPALEN];
338 1.1 christos int i = 0;
339 1.1 christos
340 1.23 cegger memset(xout, 0, BPXLEN);
341 1.23 cegger memset(aout, 0, BPALEN);
342 1.1 christos
343 1.1 christos for (;;) {
344 1.1 christos if (len < 1) {
345 1.1 christos if (i != 0) {
346 1.1 christos printf("%s\t%s\n", xout, aout);
347 1.1 christos }
348 1.1 christos printf("%s\n", "(end)");
349 1.1 christos break;
350 1.1 christos }
351 1.10 christos xout[(i * 3)] = hexdigits[(*data & 0xf0) >> 4];
352 1.10 christos xout[(i * 3) + 1] = hexdigits[*data & 0x0f];
353 1.1 christos
354 1.1 christos if ((u_char) * data < 0x7f && (u_char) * data > 0x20) {
355 1.1 christos aout[i] = *data;
356 1.1 christos } else {
357 1.1 christos aout[i] = '.';
358 1.1 christos }
359 1.1 christos
360 1.1 christos xout[(i * 3) + 2] = ' ';
361 1.1 christos
362 1.1 christos i++;
363 1.1 christos len--;
364 1.1 christos data++;
365 1.1 christos
366 1.1 christos if (i > BPALEN - 2) {
367 1.1 christos printf("%s\t%s\n", xout, aout);
368 1.23 cegger memset(xout, 0, BPXLEN);
369 1.23 cegger memset(aout, 0, BPALEN);
370 1.1 christos i = 0;
371 1.1 christos continue;
372 1.1 christos }
373 1.1 christos }
374 1.1 christos }
375 1.1 christos
376 1.1 christos static void
377 1.21 dsl m_printm(struct mbuf *m)
378 1.1 christos {
379 1.1 christos for (; m; m = m->m_next)
380 1.1 christos bprint(mtod(m, char *), m->m_len);
381 1.1 christos }
382 1.1 christos #endif
383