1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2007-2008 Sam Leffler, Errno Consulting
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 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28 /*
29 * IEEE 802.11 WDS mode support.
30 */
31 #include "opt_inet.h"
32 #include "opt_wlan.h"
33
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/mbuf.h>
37 #include <sys/malloc.h>
38 #include <sys/kernel.h>
39
40 #include <sys/socket.h>
41 #include <sys/sockio.h>
42 #include <sys/endian.h>
43 #include <sys/errno.h>
44 #include <sys/proc.h>
45 #include <sys/sysctl.h>
46
47 #include <net/if.h>
48 #include <net/if_var.h>
49 #include <net/if_media.h>
50 #include <net/if_llc.h>
51 #include <net/if_private.h>
52 #include <net/ethernet.h>
53
54 #include <net/bpf.h>
55
56 #include <net80211/ieee80211_var.h>
57 #include <net80211/ieee80211_wds.h>
58 #include <net80211/ieee80211_input.h>
59 #ifdef IEEE80211_SUPPORT_SUPERG
60 #include <net80211/ieee80211_superg.h>
61 #endif
62
63 static void wds_vattach(struct ieee80211vap *);
64 static int wds_newstate(struct ieee80211vap *, enum ieee80211_state, int);
65 static int wds_input(struct ieee80211_node *ni, struct mbuf *m,
66 const struct ieee80211_rx_stats *rxs, int, int);
67 static void wds_recv_mgmt(struct ieee80211_node *, struct mbuf *, int subtype,
68 const struct ieee80211_rx_stats *, int, int);
69
70 void
ieee80211_wds_attach(struct ieee80211com * ic)71 ieee80211_wds_attach(struct ieee80211com *ic)
72 {
73 ic->ic_vattach[IEEE80211_M_WDS] = wds_vattach;
74 }
75
76 void
ieee80211_wds_detach(struct ieee80211com * ic)77 ieee80211_wds_detach(struct ieee80211com *ic)
78 {
79 }
80
81 static void
wds_vdetach(struct ieee80211vap * vap)82 wds_vdetach(struct ieee80211vap *vap)
83 {
84 if (vap->iv_bss != NULL) {
85 /* XXX locking? */
86 if (vap->iv_bss->ni_wdsvap == vap)
87 vap->iv_bss->ni_wdsvap = NULL;
88 }
89 }
90
91 static void
wds_vattach(struct ieee80211vap * vap)92 wds_vattach(struct ieee80211vap *vap)
93 {
94 vap->iv_newstate = wds_newstate;
95 vap->iv_input = wds_input;
96 vap->iv_recv_mgmt = wds_recv_mgmt;
97 vap->iv_opdetach = wds_vdetach;
98 }
99
100 static void
wds_flush(struct ieee80211_node * ni)101 wds_flush(struct ieee80211_node *ni)
102 {
103 struct ieee80211com *ic = ni->ni_ic;
104 struct mbuf *m, *next;
105 int8_t rssi, nf;
106
107 m = ieee80211_ageq_remove(&ic->ic_stageq,
108 (void *)(uintptr_t) ieee80211_mac_hash(ic, ni->ni_macaddr));
109 if (m == NULL)
110 return;
111
112 IEEE80211_NOTE(ni->ni_vap, IEEE80211_MSG_WDS, ni,
113 "%s", "flush wds queue");
114 ic->ic_node_getsignal(ni, &rssi, &nf);
115 for (; m != NULL; m = next) {
116 next = m->m_nextpkt;
117 m->m_nextpkt = NULL;
118 ieee80211_input(ni, m, rssi, nf);
119 }
120 }
121
122 static int
ieee80211_create_wds(struct ieee80211vap * vap,struct ieee80211_channel * chan)123 ieee80211_create_wds(struct ieee80211vap *vap, struct ieee80211_channel *chan)
124 {
125 struct ieee80211com *ic = vap->iv_ic;
126 struct ieee80211_node_table *nt = &ic->ic_sta;
127 struct ieee80211_node *ni, *obss;
128
129 IEEE80211_DPRINTF(vap, IEEE80211_MSG_WDS,
130 "%s: creating link to %s on channel %u\n", __func__,
131 ether_sprintf(vap->iv_des_bssid), ieee80211_chan2ieee(ic, chan));
132
133 /* NB: vap create must specify the bssid for the link */
134 KASSERT(vap->iv_flags & IEEE80211_F_DESBSSID, ("no bssid"));
135 /* NB: we should only be called on RUN transition */
136 KASSERT(vap->iv_state == IEEE80211_S_RUN, ("!RUN state"));
137
138 if ((vap->iv_flags_ext & IEEE80211_FEXT_WDSLEGACY) == 0) {
139 /*
140 * Dynamic/non-legacy WDS. Reference the associated
141 * station specified by the desired bssid setup at vap
142 * create. Point ni_wdsvap at the WDS vap so 4-address
143 * frames received through the associated AP vap will
144 * be dispatched upward (e.g. to a bridge) as though
145 * they arrived on the WDS vap.
146 */
147 IEEE80211_NODE_LOCK(nt);
148 obss = NULL;
149 ni = ieee80211_find_node_locked(&ic->ic_sta, vap->iv_des_bssid);
150 if (ni == NULL) {
151 /*
152 * Node went away before we could hookup. This
153 * should be ok; no traffic will flow and a leave
154 * event will be dispatched that should cause
155 * the vap to be destroyed.
156 */
157 IEEE80211_DPRINTF(vap, IEEE80211_MSG_WDS,
158 "%s: station %s went away\n",
159 __func__, ether_sprintf(vap->iv_des_bssid));
160 /* XXX stat? */
161 } else if (ni->ni_wdsvap != NULL) {
162 /*
163 * Node already setup with a WDS vap; we cannot
164 * allow multiple references so disallow. If
165 * ni_wdsvap points at us that's ok; we should
166 * do nothing anyway.
167 */
168 /* XXX printf instead? */
169 IEEE80211_DPRINTF(vap, IEEE80211_MSG_WDS,
170 "%s: station %s in use with %s\n",
171 __func__, ether_sprintf(vap->iv_des_bssid),
172 ni->ni_wdsvap->iv_ifp->if_xname);
173 /* XXX stat? */
174 } else {
175 /*
176 * Committed to new node, setup state.
177 */
178 obss = vap->iv_update_bss(vap, ni);
179 ni->ni_wdsvap = vap;
180 }
181 IEEE80211_NODE_UNLOCK(nt);
182 if (obss != NULL) {
183 /* NB: deferred to avoid recursive lock */
184 ieee80211_free_node(obss);
185 }
186 } else {
187 /*
188 * Legacy WDS vap setup.
189 */
190 /*
191 * The far end does not associate so we just create
192 * create a new node and install it as the vap's
193 * bss node. We must simulate an association and
194 * authorize the port for traffic to flow.
195 * XXX check if node already in sta table?
196 */
197 ni = ieee80211_node_create_wds(vap, vap->iv_des_bssid, chan);
198 if (ni != NULL) {
199 obss = vap->iv_update_bss(vap, ieee80211_ref_node(ni));
200 ni->ni_flags |= IEEE80211_NODE_AREF;
201 if (obss != NULL)
202 ieee80211_free_node(obss);
203 /* give driver a chance to setup state like ni_txrate */
204 if (ic->ic_newassoc != NULL)
205 ic->ic_newassoc(ni, 1);
206 /* tell the authenticator about new station */
207 if (vap->iv_auth->ia_node_join != NULL)
208 vap->iv_auth->ia_node_join(ni);
209 if (ni->ni_authmode != IEEE80211_AUTH_8021X)
210 ieee80211_node_authorize(ni);
211
212 ieee80211_notify_node_join(ni, 1 /*newassoc*/);
213 /* XXX inject l2uf frame */
214 }
215 }
216
217 /*
218 * Flush any pending frames now that were setup.
219 */
220 if (ni != NULL)
221 wds_flush(ni);
222 return (ni == NULL ? ENOENT : 0);
223 }
224
225 /*
226 * Propagate multicast frames of an ap vap to all DWDS links.
227 * The caller is assumed to have verified this frame is multicast.
228 */
229 void
ieee80211_dwds_mcast(struct ieee80211vap * vap0,struct mbuf * m)230 ieee80211_dwds_mcast(struct ieee80211vap *vap0, struct mbuf *m)
231 {
232 struct ieee80211com *ic = vap0->iv_ic;
233 const struct ether_header *eh = mtod(m, const struct ether_header *);
234 struct ieee80211_node *ni;
235 struct ieee80211vap *vap;
236 struct ifnet *ifp;
237 struct mbuf *mcopy;
238 int err;
239
240 KASSERT(ETHER_IS_MULTICAST(eh->ether_dhost),
241 ("%s not mcast", ether_sprintf(eh->ether_dhost)));
242
243 /* XXX locking */
244 TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next) {
245 /* only DWDS vaps are interesting */
246 if (vap->iv_opmode != IEEE80211_M_WDS ||
247 (vap->iv_flags_ext & IEEE80211_FEXT_WDSLEGACY))
248 continue;
249 /* if it came in this interface, don't send it back out */
250 ifp = vap->iv_ifp;
251 if (ifp == m->m_pkthdr.rcvif)
252 continue;
253 /*
254 * Duplicate the frame and send it.
255 */
256 mcopy = m_copypacket(m, IEEE80211_M_NOWAIT);
257 if (mcopy == NULL) {
258 if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
259 /* XXX stat + msg */
260 continue;
261 }
262 ni = ieee80211_find_txnode(vap, eh->ether_dhost);
263 if (ni == NULL) {
264 /* NB: ieee80211_find_txnode does stat+msg */
265 if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
266 m_freem(mcopy);
267 continue;
268 }
269 /* calculate priority so drivers can find the tx queue */
270 if (ieee80211_classify(ni, mcopy)) {
271 IEEE80211_DISCARD_MAC(vap,
272 IEEE80211_MSG_OUTPUT | IEEE80211_MSG_WDS,
273 eh->ether_dhost, NULL,
274 "%s", "classification failure");
275 vap->iv_stats.is_tx_classify++;
276 if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
277 m_freem(mcopy);
278 ieee80211_free_node(ni);
279 continue;
280 }
281
282 BPF_MTAP(ifp, m); /* 802.3 tx */
283
284 /*
285 * Encapsulate the packet in prep for transmission.
286 */
287 IEEE80211_TX_LOCK(ic);
288 mcopy = ieee80211_encap(vap, ni, mcopy);
289 if (mcopy == NULL) {
290 /* NB: stat+msg handled in ieee80211_encap */
291 IEEE80211_TX_UNLOCK(ic);
292 ieee80211_free_node(ni);
293 continue;
294 }
295 mcopy->m_flags |= M_MCAST;
296 MPASS((mcopy->m_pkthdr.csum_flags & CSUM_SND_TAG) == 0);
297 mcopy->m_pkthdr.rcvif = (void *) ni;
298
299 err = ieee80211_parent_xmitpkt(ic, mcopy);
300 IEEE80211_TX_UNLOCK(ic);
301 if (!err) {
302 if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
303 if_inc_counter(ifp, IFCOUNTER_OMCASTS, 1);
304 if_inc_counter(ifp, IFCOUNTER_OBYTES,
305 m->m_pkthdr.len);
306 }
307 }
308 }
309
310 /*
311 * Handle DWDS discovery on receipt of a 4-address frame in
312 * ap mode. Queue the frame and post an event for someone
313 * to plumb the necessary WDS vap for this station. Frames
314 * received prior to the vap set running will then be reprocessed
315 * as if they were just received.
316 */
317 void
ieee80211_dwds_discover(struct ieee80211_node * ni,struct mbuf * m)318 ieee80211_dwds_discover(struct ieee80211_node *ni, struct mbuf *m)
319 {
320 struct ieee80211com *ic = ni->ni_ic;
321
322 /*
323 * Save the frame with an aging interval 4 times
324 * the listen interval specified by the station.
325 * Frames that sit around too long are reclaimed
326 * using this information.
327 * XXX handle overflow?
328 * XXX per/vap beacon interval?
329 */
330 MPASS((m->m_pkthdr.csum_flags & CSUM_SND_TAG) == 0);
331 m->m_pkthdr.rcvif = (void *)(uintptr_t)
332 ieee80211_mac_hash(ic, ni->ni_macaddr);
333 (void) ieee80211_ageq_append(&ic->ic_stageq, m,
334 ((ni->ni_intval * ic->ic_lintval) << 2) / 1024);
335 ieee80211_notify_wds_discover(ni);
336 }
337
338 /*
339 * IEEE80211_M_WDS vap state machine handler.
340 */
341 static int
wds_newstate(struct ieee80211vap * vap,enum ieee80211_state nstate,int arg)342 wds_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
343 {
344 struct ieee80211com *ic = vap->iv_ic;
345 enum ieee80211_state ostate;
346 int error;
347
348 IEEE80211_LOCK_ASSERT(ic);
349
350 ostate = vap->iv_state;
351 IEEE80211_DPRINTF(vap, IEEE80211_MSG_STATE, "%s: %s -> %s\n", __func__,
352 ieee80211_state_name[ostate], ieee80211_state_name[nstate]);
353 vap->iv_state = nstate; /* state transition */
354 callout_stop(&vap->iv_mgtsend); /* XXX callout_drain */
355 if (ostate != IEEE80211_S_SCAN)
356 ieee80211_cancel_scan(vap); /* background scan */
357 error = 0;
358 switch (nstate) {
359 case IEEE80211_S_INIT:
360 switch (ostate) {
361 case IEEE80211_S_SCAN:
362 ieee80211_cancel_scan(vap);
363 break;
364 default:
365 break;
366 }
367 if (ostate != IEEE80211_S_INIT) {
368 /* NB: optimize INIT -> INIT case */
369 ieee80211_reset_bss(vap);
370 }
371 break;
372 case IEEE80211_S_SCAN:
373 switch (ostate) {
374 case IEEE80211_S_INIT:
375 ieee80211_check_scan_current(vap);
376 break;
377 default:
378 break;
379 }
380 break;
381 case IEEE80211_S_RUN:
382 if (ostate == IEEE80211_S_INIT) {
383 /*
384 * Already have a channel; bypass the scan
385 * and startup immediately.
386 */
387 error = ieee80211_create_wds(vap, ic->ic_curchan);
388 }
389 break;
390 default:
391 break;
392 }
393 return error;
394 }
395
396 /*
397 * Process a received frame. The node associated with the sender
398 * should be supplied. If nothing was found in the node table then
399 * the caller is assumed to supply a reference to iv_bss instead.
400 * The RSSI and a timestamp are also supplied. The RSSI data is used
401 * during AP scanning to select a AP to associate with; it can have
402 * any units so long as values have consistent units and higher values
403 * mean ``better signal''. The receive timestamp is currently not used
404 * by the 802.11 layer.
405 */
406 static int
wds_input(struct ieee80211_node * ni,struct mbuf * m,const struct ieee80211_rx_stats * rxs,int rssi,int nf)407 wds_input(struct ieee80211_node *ni, struct mbuf *m,
408 const struct ieee80211_rx_stats *rxs, int rssi, int nf)
409 {
410 struct ieee80211vap *vap = ni->ni_vap;
411 struct ieee80211com *ic = ni->ni_ic;
412 struct ifnet *ifp = vap->iv_ifp;
413 struct ieee80211_frame *wh;
414 struct ieee80211_key *key;
415 struct ether_header *eh;
416 int hdrspace, need_tap = 1; /* mbuf need to be tapped. */
417 uint8_t dir, type, subtype, qos;
418 int is_hw_decrypted = 0;
419 int has_decrypted = 0;
420
421 /*
422 * Some devices do hardware decryption all the way through
423 * to pretending the frame wasn't encrypted in the first place.
424 * So, tag it appropriately so it isn't discarded inappropriately.
425 */
426 if ((rxs != NULL) && (rxs->c_pktflags & IEEE80211_RX_F_DECRYPTED))
427 is_hw_decrypted = 1;
428
429 if (m->m_flags & M_AMPDU_MPDU) {
430 /*
431 * Fastpath for A-MPDU reorder q resubmission. Frames
432 * w/ M_AMPDU_MPDU marked have already passed through
433 * here but were received out of order and been held on
434 * the reorder queue. When resubmitted they are marked
435 * with the M_AMPDU_MPDU flag and we can bypass most of
436 * the normal processing.
437 */
438 wh = mtod(m, struct ieee80211_frame *);
439 type = IEEE80211_FC0_TYPE_DATA;
440 dir = wh->i_fc[1] & IEEE80211_FC1_DIR_MASK;
441 subtype = IEEE80211_FC0_SUBTYPE_QOS_DATA;
442 hdrspace = ieee80211_hdrspace(ic, wh); /* XXX optimize? */
443 goto resubmit_ampdu;
444 }
445
446 KASSERT(ni != NULL, ("null node"));
447
448 type = -1; /* undefined */
449
450 if (m->m_pkthdr.len < sizeof(struct ieee80211_frame_min)) {
451 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_ANY,
452 ni->ni_macaddr, NULL,
453 "too short (1): len %u", m->m_pkthdr.len);
454 vap->iv_stats.is_rx_tooshort++;
455 goto out;
456 }
457 /*
458 * Bit of a cheat here, we use a pointer for a 3-address
459 * frame format but don't reference fields past outside
460 * ieee80211_frame_min w/o first validating the data is
461 * present.
462 */
463 wh = mtod(m, struct ieee80211_frame *);
464
465 if (!IEEE80211_IS_MULTICAST(wh->i_addr1))
466 ni->ni_inact = ni->ni_inact_reload;
467
468 if (!IEEE80211_IS_FC0_CHECK_VER(wh, IEEE80211_FC0_VERSION_0)) {
469 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_ANY,
470 ni->ni_macaddr, NULL, "wrong version, fc %02x:%02x",
471 wh->i_fc[0], wh->i_fc[1]);
472 vap->iv_stats.is_rx_badversion++;
473 goto err;
474 }
475
476 dir = wh->i_fc[1] & IEEE80211_FC1_DIR_MASK;
477 type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
478 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK;
479
480 /* NB: WDS vap's do not scan */
481 if (m->m_pkthdr.len < sizeof(struct ieee80211_frame_addr4)) {
482 IEEE80211_DISCARD_MAC(vap,
483 IEEE80211_MSG_ANY, ni->ni_macaddr, NULL,
484 "too short (3): len %u", m->m_pkthdr.len);
485 vap->iv_stats.is_rx_tooshort++;
486 goto out;
487 }
488 /* NB: the TA is implicitly verified by finding the wds peer node */
489 if (!IEEE80211_ADDR_EQ(wh->i_addr1, vap->iv_myaddr) &&
490 !IEEE80211_ADDR_EQ(wh->i_addr1, ifp->if_broadcastaddr)) {
491 /* not interested in */
492 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT,
493 wh->i_addr1, NULL, "%s", "not to bss");
494 vap->iv_stats.is_rx_wrongbss++;
495 goto out;
496 }
497 IEEE80211_RSSI_LPF(ni->ni_avgrssi, rssi);
498 ni->ni_noise = nf;
499 if (IEEE80211_HAS_SEQ(type, subtype)) {
500 uint8_t tid = ieee80211_gettid(wh);
501 if (IEEE80211_QOS_HAS_SEQ(wh) &&
502 TID_TO_WME_AC(tid) >= WME_AC_VI)
503 ic->ic_wme.wme_hipri_traffic++;
504 if (! ieee80211_check_rxseq(ni, wh, wh->i_addr1, rxs))
505 goto out;
506 }
507 switch (type) {
508 case IEEE80211_FC0_TYPE_DATA:
509 hdrspace = ieee80211_hdrspace(ic, wh);
510 if (m->m_len < hdrspace &&
511 (m = m_pullup(m, hdrspace)) == NULL) {
512 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_ANY,
513 ni->ni_macaddr, NULL,
514 "data too short: expecting %u", hdrspace);
515 vap->iv_stats.is_rx_tooshort++;
516 goto out; /* XXX */
517 }
518 if (dir != IEEE80211_FC1_DIR_DSTODS) {
519 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT,
520 wh, "data", "incorrect dir 0x%x", dir);
521 vap->iv_stats.is_rx_wrongdir++;
522 goto out;
523 }
524 /*
525 * Only legacy WDS traffic should take this path.
526 */
527 if ((vap->iv_flags_ext & IEEE80211_FEXT_WDSLEGACY) == 0) {
528 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT,
529 wh, "data", "%s", "not legacy wds");
530 vap->iv_stats.is_rx_wrongdir++;/*XXX*/
531 goto out;
532 }
533 /*
534 * Handle A-MPDU re-ordering. If the frame is to be
535 * processed directly then ieee80211_ampdu_reorder
536 * will return 0; otherwise it has consumed the mbuf
537 * and we should do nothing more with it.
538 */
539 if ((m->m_flags & M_AMPDU) &&
540 ieee80211_ampdu_reorder(ni, m, rxs) != 0) {
541 m = NULL;
542 goto out;
543 }
544 resubmit_ampdu:
545
546 /*
547 * Handle privacy requirements. Note that we
548 * must not be preempted from here until after
549 * we (potentially) call ieee80211_crypto_demic;
550 * otherwise we may violate assumptions in the
551 * crypto cipher modules used to do delayed update
552 * of replay sequence numbers.
553 */
554 if (is_hw_decrypted || IEEE80211_IS_PROTECTED(wh)) {
555 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) {
556 /*
557 * Discard encrypted frames when privacy is off.
558 */
559 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT,
560 wh, "WEP", "%s", "PRIVACY off");
561 vap->iv_stats.is_rx_noprivacy++;
562 IEEE80211_NODE_STAT(ni, rx_noprivacy);
563 goto out;
564 }
565 if (ieee80211_crypto_decap(ni, m, hdrspace, &key) == 0) {
566 /* NB: stats+msgs handled in crypto_decap */
567 IEEE80211_NODE_STAT(ni, rx_wepfail);
568 goto out;
569 }
570 wh = mtod(m, struct ieee80211_frame *);
571 wh->i_fc[1] &= ~IEEE80211_FC1_PROTECTED;
572 has_decrypted = 1;
573 } else {
574 /* XXX M_WEP and IEEE80211_F_PRIVACY */
575 key = NULL;
576 }
577
578 /*
579 * Save QoS bits for use below--before we strip the header.
580 */
581 if (subtype == IEEE80211_FC0_SUBTYPE_QOS_DATA)
582 qos = ieee80211_getqos(wh)[0];
583 else
584 qos = 0;
585
586 /*
587 * Next up, any fragmentation.
588 */
589 if (!IEEE80211_IS_MULTICAST(wh->i_addr1)) {
590 m = ieee80211_defrag(ni, m, hdrspace, has_decrypted);
591 if (m == NULL) {
592 /* Fragment dropped or frame not complete yet */
593 goto out;
594 }
595 }
596 wh = NULL; /* no longer valid, catch any uses */
597
598 /*
599 * Next strip any MSDU crypto bits.
600 */
601 if (!ieee80211_crypto_demic(vap, key, m, 0)) {
602 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT,
603 ni->ni_macaddr, "data", "%s", "demic error");
604 vap->iv_stats.is_rx_demicfail++;
605 IEEE80211_NODE_STAT(ni, rx_demicfail);
606 goto out;
607 }
608
609 /* copy to listener after decrypt */
610 if (ieee80211_radiotap_active_vap(vap))
611 ieee80211_radiotap_rx(vap, m);
612 need_tap = 0;
613
614 /*
615 * Finally, strip the 802.11 header.
616 */
617 m = ieee80211_decap(vap, m, hdrspace, qos);
618 if (m == NULL) {
619 /* XXX mask bit to check for both */
620 /* don't count Null data frames as errors */
621 if (subtype == IEEE80211_FC0_SUBTYPE_NODATA ||
622 subtype == IEEE80211_FC0_SUBTYPE_QOS_NULL)
623 goto out;
624 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT,
625 ni->ni_macaddr, "data", "%s", "decap error");
626 vap->iv_stats.is_rx_decap++;
627 IEEE80211_NODE_STAT(ni, rx_decap);
628 goto err;
629 }
630 if (!(qos & IEEE80211_QOS_AMSDU))
631 eh = mtod(m, struct ether_header *);
632 else
633 eh = NULL;
634 if (!ieee80211_node_is_authorized(ni)) {
635 /*
636 * Deny any non-PAE frames received prior to
637 * authorization. For open/shared-key
638 * authentication the port is mark authorized
639 * after authentication completes. For 802.1x
640 * the port is not marked authorized by the
641 * authenticator until the handshake has completed.
642 */
643 if (eh == NULL ||
644 eh->ether_type != htons(ETHERTYPE_PAE)) {
645 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT,
646 ni->ni_macaddr, "data", "unauthorized or "
647 "unknown port: ether type 0x%x len %u",
648 eh == NULL ? -1 : eh->ether_type,
649 m->m_pkthdr.len);
650 vap->iv_stats.is_rx_unauth++;
651 IEEE80211_NODE_STAT(ni, rx_unauth);
652 goto err;
653 }
654 } else {
655 /*
656 * When denying unencrypted frames, discard
657 * any non-PAE frames received without encryption.
658 */
659 if ((vap->iv_flags & IEEE80211_F_DROPUNENC) &&
660 ((has_decrypted == 0) && (m->m_flags & M_WEP) == 0) &&
661 (is_hw_decrypted == 0) &&
662 (eh == NULL ||
663 eh->ether_type != htons(ETHERTYPE_PAE))) {
664 /*
665 * Drop unencrypted frames.
666 */
667 vap->iv_stats.is_rx_unencrypted++;
668 IEEE80211_NODE_STAT(ni, rx_unencrypted);
669 goto out;
670 }
671 }
672 /* XXX require HT? */
673 if (qos & IEEE80211_QOS_AMSDU) {
674 m = ieee80211_decap_amsdu(ni, m);
675 if (m == NULL)
676 return IEEE80211_FC0_TYPE_DATA;
677 } else {
678 #ifdef IEEE80211_SUPPORT_SUPERG
679 m = ieee80211_decap_fastframe(vap, ni, m);
680 if (m == NULL)
681 return IEEE80211_FC0_TYPE_DATA;
682 #endif
683 }
684 ieee80211_deliver_data(vap, ni, m);
685 return IEEE80211_FC0_TYPE_DATA;
686
687 case IEEE80211_FC0_TYPE_MGT:
688 vap->iv_stats.is_rx_mgmt++;
689 IEEE80211_NODE_STAT(ni, rx_mgmt);
690 if (dir != IEEE80211_FC1_DIR_NODS) {
691 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT,
692 wh, "data", "incorrect dir 0x%x", dir);
693 vap->iv_stats.is_rx_wrongdir++;
694 goto err;
695 }
696 if (m->m_pkthdr.len < sizeof(struct ieee80211_frame)) {
697 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_ANY,
698 ni->ni_macaddr, "mgt", "too short: len %u",
699 m->m_pkthdr.len);
700 vap->iv_stats.is_rx_tooshort++;
701 goto out;
702 }
703 #ifdef IEEE80211_DEBUG
704 if (ieee80211_msg_debug(vap) || ieee80211_msg_dumppkts(vap)) {
705 if_printf(ifp, "received %s from %s rssi %d\n",
706 ieee80211_mgt_subtype_name(subtype),
707 ether_sprintf(wh->i_addr2), rssi);
708 }
709 #endif
710 if (IEEE80211_IS_PROTECTED(wh)) {
711 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT,
712 wh, NULL, "%s", "WEP set but not permitted");
713 vap->iv_stats.is_rx_mgtdiscard++; /* XXX */
714 goto out;
715 }
716 vap->iv_recv_mgmt(ni, m, subtype, rxs, rssi, nf);
717 goto out;
718
719 case IEEE80211_FC0_TYPE_CTL:
720 vap->iv_stats.is_rx_ctl++;
721 IEEE80211_NODE_STAT(ni, rx_ctrl);
722 goto out;
723
724 default:
725 IEEE80211_DISCARD(vap, IEEE80211_MSG_ANY,
726 wh, "bad", "frame type 0x%x", type);
727 /* should not come here */
728 break;
729 }
730 err:
731 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
732 out:
733 if (m != NULL) {
734 if (need_tap && ieee80211_radiotap_active_vap(vap))
735 ieee80211_radiotap_rx(vap, m);
736 m_freem(m);
737 }
738 return type;
739 }
740
741 static void
wds_recv_mgmt(struct ieee80211_node * ni,struct mbuf * m0,int subtype,const struct ieee80211_rx_stats * rxs,int rssi,int nf)742 wds_recv_mgmt(struct ieee80211_node *ni, struct mbuf *m0, int subtype,
743 const struct ieee80211_rx_stats *rxs, int rssi, int nf)
744 {
745 struct ieee80211vap *vap = ni->ni_vap;
746 struct ieee80211com *ic = ni->ni_ic;
747 struct ieee80211_frame *wh;
748 u_int8_t *frm, *efrm;
749
750 wh = mtod(m0, struct ieee80211_frame *);
751 frm = (u_int8_t *)&wh[1];
752 efrm = mtod(m0, u_int8_t *) + m0->m_len;
753 switch (subtype) {
754 case IEEE80211_FC0_SUBTYPE_ACTION:
755 case IEEE80211_FC0_SUBTYPE_ACTION_NOACK:
756 if (ni == vap->iv_bss) {
757 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT,
758 wh, NULL, "%s", "unknown node");
759 vap->iv_stats.is_rx_mgtdiscard++;
760 } else if (!IEEE80211_ADDR_EQ(vap->iv_myaddr, wh->i_addr1)) {
761 /* NB: not interested in multicast frames. */
762 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT,
763 wh, NULL, "%s", "not for us");
764 vap->iv_stats.is_rx_mgtdiscard++;
765 } else if (vap->iv_state != IEEE80211_S_RUN) {
766 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT,
767 wh, NULL, "wrong state %s",
768 ieee80211_state_name[vap->iv_state]);
769 vap->iv_stats.is_rx_mgtdiscard++;
770 } else {
771 if (ieee80211_parse_action(ni, m0) == 0)
772 (void)ic->ic_recv_action(ni, wh, frm, efrm);
773 }
774 break;
775
776 case IEEE80211_FC0_SUBTYPE_ASSOC_REQ:
777 case IEEE80211_FC0_SUBTYPE_ASSOC_RESP:
778 case IEEE80211_FC0_SUBTYPE_REASSOC_REQ:
779 case IEEE80211_FC0_SUBTYPE_REASSOC_RESP:
780 case IEEE80211_FC0_SUBTYPE_PROBE_REQ:
781 case IEEE80211_FC0_SUBTYPE_PROBE_RESP:
782 case IEEE80211_FC0_SUBTYPE_TIMING_ADV:
783 case IEEE80211_FC0_SUBTYPE_BEACON:
784 case IEEE80211_FC0_SUBTYPE_ATIM:
785 case IEEE80211_FC0_SUBTYPE_DISASSOC:
786 case IEEE80211_FC0_SUBTYPE_AUTH:
787 case IEEE80211_FC0_SUBTYPE_DEAUTH:
788 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT,
789 wh, NULL, "%s", "not handled");
790 vap->iv_stats.is_rx_mgtdiscard++;
791 break;
792
793 default:
794 IEEE80211_DISCARD(vap, IEEE80211_MSG_ANY,
795 wh, "mgt", "subtype 0x%x not handled", subtype);
796 vap->iv_stats.is_rx_badsubtype++;
797 break;
798 }
799 }
800