1 /*- 2 * Copyright (c) 2007-2009 Sam Leffler, Errno Consulting 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 */ 25 26 #include <sys/cdefs.h> 27 #ifdef __FreeBSD__ 28 __FBSDID("$FreeBSD$"); 29 #endif 30 31 /* 32 * IEEE 802.11 IBSS mode support. 33 */ 34 #include "opt_inet.h" 35 #include "opt_wlan.h" 36 37 #include <sys/param.h> 38 #include <sys/systm.h> 39 #include <sys/mbuf.h> 40 #include <sys/malloc.h> 41 #include <sys/kernel.h> 42 43 #include <sys/socket.h> 44 #include <sys/sockio.h> 45 #include <sys/endian.h> 46 #include <sys/errno.h> 47 #include <sys/proc.h> 48 #include <sys/sysctl.h> 49 50 #include <net/if.h> 51 #include <net/if_var.h> 52 #include <net/if_media.h> 53 #include <net/if_llc.h> 54 #include <net/ethernet.h> 55 56 #include <net/bpf.h> 57 58 #include <net80211/ieee80211_var.h> 59 #include <net80211/ieee80211_adhoc.h> 60 #include <net80211/ieee80211_input.h> 61 #ifdef IEEE80211_SUPPORT_SUPERG 62 #include <net80211/ieee80211_superg.h> 63 #endif 64 #ifdef IEEE80211_SUPPORT_TDMA 65 #include <net80211/ieee80211_tdma.h> 66 #endif 67 #include <net80211/ieee80211_sta.h> 68 69 #define IEEE80211_RATE2MBS(r) (((r) & IEEE80211_RATE_VAL) / 2) 70 71 static void adhoc_vattach(struct ieee80211vap *); 72 static int adhoc_newstate(struct ieee80211vap *, enum ieee80211_state, int); 73 static int adhoc_input(struct ieee80211_node *, struct mbuf *, 74 const struct ieee80211_rx_stats *, int, int); 75 static void adhoc_recv_mgmt(struct ieee80211_node *, struct mbuf *, 76 int subtype, const struct ieee80211_rx_stats *, int, int); 77 static void ahdemo_recv_mgmt(struct ieee80211_node *, struct mbuf *, 78 int subtype, const struct ieee80211_rx_stats *rxs, int, int); 79 static void adhoc_recv_ctl(struct ieee80211_node *, struct mbuf *, int subtype); 80 81 void 82 ieee80211_adhoc_attach(struct ieee80211com *ic) 83 { 84 ic->ic_vattach[IEEE80211_M_IBSS] = adhoc_vattach; 85 ic->ic_vattach[IEEE80211_M_AHDEMO] = adhoc_vattach; 86 } 87 88 void 89 ieee80211_adhoc_detach(struct ieee80211com *ic) 90 { 91 } 92 93 static void 94 adhoc_vdetach(struct ieee80211vap *vap) 95 { 96 } 97 98 static void 99 adhoc_vattach(struct ieee80211vap *vap) 100 { 101 vap->iv_newstate = adhoc_newstate; 102 vap->iv_input = adhoc_input; 103 if (vap->iv_opmode == IEEE80211_M_IBSS) 104 vap->iv_recv_mgmt = adhoc_recv_mgmt; 105 else 106 vap->iv_recv_mgmt = ahdemo_recv_mgmt; 107 vap->iv_recv_ctl = adhoc_recv_ctl; 108 vap->iv_opdetach = adhoc_vdetach; 109 #ifdef IEEE80211_SUPPORT_TDMA 110 /* 111 * Throw control to tdma support. Note we do this 112 * after setting up our callbacks so it can piggyback 113 * on top of us. 114 */ 115 if (vap->iv_caps & IEEE80211_C_TDMA) 116 ieee80211_tdma_vattach(vap); 117 #endif 118 } 119 120 static void 121 sta_leave(void *arg, struct ieee80211_node *ni) 122 { 123 struct ieee80211vap *vap = arg; 124 125 if (ni->ni_vap == vap && ni != vap->iv_bss) 126 ieee80211_node_leave(ni); 127 } 128 129 /* 130 * IEEE80211_M_IBSS+IEEE80211_M_AHDEMO vap state machine handler. 131 */ 132 static int 133 adhoc_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 134 { 135 struct ieee80211com *ic = vap->iv_ic; 136 struct ieee80211_node *ni; 137 enum ieee80211_state ostate; 138 139 IEEE80211_LOCK_ASSERT(vap->iv_ic); 140 141 ostate = vap->iv_state; 142 IEEE80211_DPRINTF(vap, IEEE80211_MSG_STATE, "%s: %s -> %s (%d)\n", 143 __func__, ieee80211_state_name[ostate], 144 ieee80211_state_name[nstate], arg); 145 vap->iv_state = nstate; /* state transition */ 146 if (ostate != IEEE80211_S_SCAN) 147 ieee80211_cancel_scan(vap); /* background scan */ 148 ni = vap->iv_bss; /* NB: no reference held */ 149 switch (nstate) { 150 case IEEE80211_S_INIT: 151 switch (ostate) { 152 case IEEE80211_S_SCAN: 153 ieee80211_cancel_scan(vap); 154 break; 155 default: 156 break; 157 } 158 if (ostate != IEEE80211_S_INIT) { 159 /* NB: optimize INIT -> INIT case */ 160 ieee80211_reset_bss(vap); 161 } 162 break; 163 case IEEE80211_S_SCAN: 164 switch (ostate) { 165 case IEEE80211_S_RUN: /* beacon miss */ 166 /* purge station table; entries are stale */ 167 ieee80211_iterate_nodes(&ic->ic_sta, sta_leave, vap); 168 /* fall thru... */ 169 case IEEE80211_S_INIT: 170 if (vap->iv_des_chan != IEEE80211_CHAN_ANYC && 171 !IEEE80211_IS_CHAN_RADAR(vap->iv_des_chan)) { 172 /* 173 * Already have a channel; bypass the 174 * scan and startup immediately. 175 */ 176 ieee80211_create_ibss(vap, 177 ieee80211_ht_adjust_channel(ic, 178 vap->iv_des_chan, vap->iv_flags_ht)); 179 break; 180 } 181 /* 182 * Initiate a scan. We can come here as a result 183 * of an IEEE80211_IOC_SCAN_REQ too in which case 184 * the vap will be marked with IEEE80211_FEXT_SCANREQ 185 * and the scan request parameters will be present 186 * in iv_scanreq. Otherwise we do the default. 187 */ 188 if (vap->iv_flags_ext & IEEE80211_FEXT_SCANREQ) { 189 ieee80211_check_scan(vap, 190 vap->iv_scanreq_flags, 191 vap->iv_scanreq_duration, 192 vap->iv_scanreq_mindwell, 193 vap->iv_scanreq_maxdwell, 194 vap->iv_scanreq_nssid, vap->iv_scanreq_ssid); 195 vap->iv_flags_ext &= ~IEEE80211_FEXT_SCANREQ; 196 } else 197 ieee80211_check_scan_current(vap); 198 break; 199 case IEEE80211_S_SCAN: 200 /* 201 * This can happen because of a change in state 202 * that requires a reset. Trigger a new scan 203 * unless we're in manual roaming mode in which 204 * case an application must issue an explicit request. 205 */ 206 if (vap->iv_roaming == IEEE80211_ROAMING_AUTO) 207 ieee80211_check_scan_current(vap); 208 break; 209 default: 210 goto invalid; 211 } 212 break; 213 case IEEE80211_S_RUN: 214 if (vap->iv_flags & IEEE80211_F_WPA) { 215 /* XXX validate prerequisites */ 216 } 217 switch (ostate) { 218 case IEEE80211_S_SCAN: 219 #ifdef IEEE80211_DEBUG 220 if (ieee80211_msg_debug(vap)) { 221 ieee80211_note(vap, 222 "synchronized with %s ssid ", 223 ether_sprintf(ni->ni_bssid)); 224 ieee80211_print_essid(vap->iv_bss->ni_essid, 225 ni->ni_esslen); 226 /* XXX MCS/HT */ 227 printf(" channel %d start %uMb\n", 228 ieee80211_chan2ieee(ic, ic->ic_curchan), 229 IEEE80211_RATE2MBS(ni->ni_txrate)); 230 } 231 #endif 232 break; 233 case IEEE80211_S_RUN: /* IBSS merge */ 234 break; 235 default: 236 goto invalid; 237 } 238 /* 239 * When 802.1x is not in use mark the port authorized 240 * at this point so traffic can flow. 241 */ 242 if (ni->ni_authmode != IEEE80211_AUTH_8021X) 243 ieee80211_node_authorize(ni); 244 /* 245 * Fake association when joining an existing bss. 246 */ 247 if (!IEEE80211_ADDR_EQ(ni->ni_macaddr, vap->iv_myaddr) && 248 ic->ic_newassoc != NULL) 249 ic->ic_newassoc(ni, ostate != IEEE80211_S_RUN); 250 break; 251 case IEEE80211_S_SLEEP: 252 vap->iv_sta_ps(vap, 0); 253 break; 254 default: 255 invalid: 256 IEEE80211_DPRINTF(vap, IEEE80211_MSG_STATE, 257 "%s: unexpected state transition %s -> %s\n", __func__, 258 ieee80211_state_name[ostate], ieee80211_state_name[nstate]); 259 break; 260 } 261 return 0; 262 } 263 264 /* 265 * Decide if a received management frame should be 266 * printed when debugging is enabled. This filters some 267 * of the less interesting frames that come frequently 268 * (e.g. beacons). 269 */ 270 static __inline int 271 doprint(struct ieee80211vap *vap, int subtype) 272 { 273 switch (subtype) { 274 case IEEE80211_FC0_SUBTYPE_BEACON: 275 return (vap->iv_ic->ic_flags & IEEE80211_F_SCAN); 276 case IEEE80211_FC0_SUBTYPE_PROBE_REQ: 277 return 1; 278 } 279 return 1; 280 } 281 282 /* 283 * Process a received frame. The node associated with the sender 284 * should be supplied. If nothing was found in the node table then 285 * the caller is assumed to supply a reference to iv_bss instead. 286 * The RSSI and a timestamp are also supplied. The RSSI data is used 287 * during AP scanning to select a AP to associate with; it can have 288 * any units so long as values have consistent units and higher values 289 * mean ``better signal''. The receive timestamp is currently not used 290 * by the 802.11 layer. 291 */ 292 static int 293 adhoc_input(struct ieee80211_node *ni, struct mbuf *m, 294 const struct ieee80211_rx_stats *rxs, int rssi, int nf) 295 { 296 struct ieee80211vap *vap = ni->ni_vap; 297 struct ieee80211com *ic = ni->ni_ic; 298 struct ifnet *ifp = vap->iv_ifp; 299 struct ieee80211_frame *wh; 300 struct ieee80211_key *key; 301 struct ether_header *eh; 302 int hdrspace, need_tap = 1; /* mbuf need to be tapped. */ 303 uint8_t dir, type, subtype, qos; 304 uint8_t *bssid; 305 306 if (m->m_flags & M_AMPDU_MPDU) { 307 /* 308 * Fastpath for A-MPDU reorder q resubmission. Frames 309 * w/ M_AMPDU_MPDU marked have already passed through 310 * here but were received out of order and been held on 311 * the reorder queue. When resubmitted they are marked 312 * with the M_AMPDU_MPDU flag and we can bypass most of 313 * the normal processing. 314 */ 315 wh = mtod(m, struct ieee80211_frame *); 316 type = IEEE80211_FC0_TYPE_DATA; 317 dir = wh->i_fc[1] & IEEE80211_FC1_DIR_MASK; 318 subtype = IEEE80211_FC0_SUBTYPE_QOS; 319 hdrspace = ieee80211_hdrspace(ic, wh); /* XXX optimize? */ 320 goto resubmit_ampdu; 321 } 322 323 KASSERT(ni != NULL, ("null node")); 324 ni->ni_inact = ni->ni_inact_reload; 325 326 type = -1; /* undefined */ 327 328 if (m->m_pkthdr.len < sizeof(struct ieee80211_frame_min)) { 329 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_ANY, 330 ni->ni_macaddr, NULL, 331 "too short (1): len %u", m->m_pkthdr.len); 332 vap->iv_stats.is_rx_tooshort++; 333 goto out; 334 } 335 /* 336 * Bit of a cheat here, we use a pointer for a 3-address 337 * frame format but don't reference fields past outside 338 * ieee80211_frame_min w/o first validating the data is 339 * present. 340 */ 341 wh = mtod(m, struct ieee80211_frame *); 342 343 if ((wh->i_fc[0] & IEEE80211_FC0_VERSION_MASK) != 344 IEEE80211_FC0_VERSION_0) { 345 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_ANY, 346 ni->ni_macaddr, NULL, "wrong version, fc %02x:%02x", 347 wh->i_fc[0], wh->i_fc[1]); 348 vap->iv_stats.is_rx_badversion++; 349 goto err; 350 } 351 352 dir = wh->i_fc[1] & IEEE80211_FC1_DIR_MASK; 353 type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK; 354 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; 355 if ((ic->ic_flags & IEEE80211_F_SCAN) == 0) { 356 if (dir != IEEE80211_FC1_DIR_NODS) 357 bssid = wh->i_addr1; 358 else if (type == IEEE80211_FC0_TYPE_CTL) 359 bssid = wh->i_addr1; 360 else { 361 if (m->m_pkthdr.len < sizeof(struct ieee80211_frame)) { 362 IEEE80211_DISCARD_MAC(vap, 363 IEEE80211_MSG_ANY, ni->ni_macaddr, 364 NULL, "too short (2): len %u", 365 m->m_pkthdr.len); 366 vap->iv_stats.is_rx_tooshort++; 367 goto out; 368 } 369 bssid = wh->i_addr3; 370 } 371 /* 372 * Validate the bssid. 373 */ 374 if (!(type == IEEE80211_FC0_TYPE_MGT && 375 (subtype == IEEE80211_FC0_SUBTYPE_BEACON || 376 subtype == IEEE80211_FC0_SUBTYPE_PROBE_RESP)) && 377 !IEEE80211_ADDR_EQ(bssid, vap->iv_bss->ni_bssid) && 378 !IEEE80211_ADDR_EQ(bssid, ifp->if_broadcastaddr)) { 379 /* not interested in */ 380 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT, 381 bssid, NULL, "%s", "not to bss"); 382 vap->iv_stats.is_rx_wrongbss++; 383 goto out; 384 } 385 /* 386 * Data frame, cons up a node when it doesn't 387 * exist. This should probably done after an ACL check. 388 */ 389 if (type == IEEE80211_FC0_TYPE_DATA && 390 ni == vap->iv_bss && 391 !IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_macaddr)) { 392 /* 393 * Beware of frames that come in too early; we 394 * can receive broadcast frames and creating sta 395 * entries will blow up because there is no bss 396 * channel yet. 397 */ 398 if (vap->iv_state != IEEE80211_S_RUN) { 399 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 400 wh, "data", "not in RUN state (%s)", 401 ieee80211_state_name[vap->iv_state]); 402 vap->iv_stats.is_rx_badstate++; 403 goto err; 404 } 405 /* 406 * Fake up a node for this newly 407 * discovered member of the IBSS. 408 */ 409 ni = ieee80211_fakeup_adhoc_node(vap, wh->i_addr2); 410 if (ni == NULL) { 411 /* NB: stat kept for alloc failure */ 412 goto err; 413 } 414 } 415 IEEE80211_RSSI_LPF(ni->ni_avgrssi, rssi); 416 ni->ni_noise = nf; 417 if (IEEE80211_HAS_SEQ(type, subtype) && 418 IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_macaddr)) { 419 uint8_t tid = ieee80211_gettid(wh); 420 if (IEEE80211_QOS_HAS_SEQ(wh) && 421 TID_TO_WME_AC(tid) >= WME_AC_VI) 422 ic->ic_wme.wme_hipri_traffic++; 423 if (! ieee80211_check_rxseq(ni, wh, bssid)) 424 goto out; 425 } 426 } 427 428 switch (type) { 429 case IEEE80211_FC0_TYPE_DATA: 430 hdrspace = ieee80211_hdrspace(ic, wh); 431 if (m->m_len < hdrspace && 432 (m = m_pullup(m, hdrspace)) == NULL) { 433 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_ANY, 434 ni->ni_macaddr, NULL, 435 "data too short: expecting %u", hdrspace); 436 vap->iv_stats.is_rx_tooshort++; 437 goto out; /* XXX */ 438 } 439 if (dir != IEEE80211_FC1_DIR_NODS) { 440 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 441 wh, "data", "incorrect dir 0x%x", dir); 442 vap->iv_stats.is_rx_wrongdir++; 443 goto out; 444 } 445 /* XXX no power-save support */ 446 447 /* 448 * Handle A-MPDU re-ordering. If the frame is to be 449 * processed directly then ieee80211_ampdu_reorder 450 * will return 0; otherwise it has consumed the mbuf 451 * and we should do nothing more with it. 452 */ 453 if ((m->m_flags & M_AMPDU) && 454 ieee80211_ampdu_reorder(ni, m) != 0) { 455 m = NULL; 456 goto out; 457 } 458 resubmit_ampdu: 459 460 /* 461 * Handle privacy requirements. Note that we 462 * must not be preempted from here until after 463 * we (potentially) call ieee80211_crypto_demic; 464 * otherwise we may violate assumptions in the 465 * crypto cipher modules used to do delayed update 466 * of replay sequence numbers. 467 */ 468 if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) { 469 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) { 470 /* 471 * Discard encrypted frames when privacy is off. 472 */ 473 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 474 wh, "WEP", "%s", "PRIVACY off"); 475 vap->iv_stats.is_rx_noprivacy++; 476 IEEE80211_NODE_STAT(ni, rx_noprivacy); 477 goto out; 478 } 479 key = ieee80211_crypto_decap(ni, m, hdrspace); 480 if (key == NULL) { 481 /* NB: stats+msgs handled in crypto_decap */ 482 IEEE80211_NODE_STAT(ni, rx_wepfail); 483 goto out; 484 } 485 wh = mtod(m, struct ieee80211_frame *); 486 wh->i_fc[1] &= ~IEEE80211_FC1_PROTECTED; 487 } else { 488 /* XXX M_WEP and IEEE80211_F_PRIVACY */ 489 key = NULL; 490 } 491 492 /* 493 * Save QoS bits for use below--before we strip the header. 494 */ 495 if (subtype == IEEE80211_FC0_SUBTYPE_QOS) { 496 qos = (dir == IEEE80211_FC1_DIR_DSTODS) ? 497 ((struct ieee80211_qosframe_addr4 *)wh)->i_qos[0] : 498 ((struct ieee80211_qosframe *)wh)->i_qos[0]; 499 } else 500 qos = 0; 501 502 /* 503 * Next up, any fragmentation. 504 */ 505 if (!IEEE80211_IS_MULTICAST(wh->i_addr1)) { 506 m = ieee80211_defrag(ni, m, hdrspace); 507 if (m == NULL) { 508 /* Fragment dropped or frame not complete yet */ 509 goto out; 510 } 511 } 512 wh = NULL; /* no longer valid, catch any uses */ 513 514 /* 515 * Next strip any MSDU crypto bits. 516 */ 517 if (key != NULL && !ieee80211_crypto_demic(vap, key, m, 0)) { 518 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT, 519 ni->ni_macaddr, "data", "%s", "demic error"); 520 vap->iv_stats.is_rx_demicfail++; 521 IEEE80211_NODE_STAT(ni, rx_demicfail); 522 goto out; 523 } 524 525 /* copy to listener after decrypt */ 526 if (ieee80211_radiotap_active_vap(vap)) 527 ieee80211_radiotap_rx(vap, m); 528 need_tap = 0; 529 530 /* 531 * Finally, strip the 802.11 header. 532 */ 533 m = ieee80211_decap(vap, m, hdrspace); 534 if (m == NULL) { 535 /* XXX mask bit to check for both */ 536 /* don't count Null data frames as errors */ 537 if (subtype == IEEE80211_FC0_SUBTYPE_NODATA || 538 subtype == IEEE80211_FC0_SUBTYPE_QOS_NULL) 539 goto out; 540 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT, 541 ni->ni_macaddr, "data", "%s", "decap error"); 542 vap->iv_stats.is_rx_decap++; 543 IEEE80211_NODE_STAT(ni, rx_decap); 544 goto err; 545 } 546 eh = mtod(m, struct ether_header *); 547 if (!ieee80211_node_is_authorized(ni)) { 548 /* 549 * Deny any non-PAE frames received prior to 550 * authorization. For open/shared-key 551 * authentication the port is mark authorized 552 * after authentication completes. For 802.1x 553 * the port is not marked authorized by the 554 * authenticator until the handshake has completed. 555 */ 556 if (eh->ether_type != htons(ETHERTYPE_PAE)) { 557 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT, 558 eh->ether_shost, "data", 559 "unauthorized port: ether type 0x%x len %u", 560 eh->ether_type, m->m_pkthdr.len); 561 vap->iv_stats.is_rx_unauth++; 562 IEEE80211_NODE_STAT(ni, rx_unauth); 563 goto err; 564 } 565 } else { 566 /* 567 * When denying unencrypted frames, discard 568 * any non-PAE frames received without encryption. 569 */ 570 if ((vap->iv_flags & IEEE80211_F_DROPUNENC) && 571 (key == NULL && (m->m_flags & M_WEP) == 0) && 572 eh->ether_type != htons(ETHERTYPE_PAE)) { 573 /* 574 * Drop unencrypted frames. 575 */ 576 vap->iv_stats.is_rx_unencrypted++; 577 IEEE80211_NODE_STAT(ni, rx_unencrypted); 578 goto out; 579 } 580 } 581 /* XXX require HT? */ 582 if (qos & IEEE80211_QOS_AMSDU) { 583 m = ieee80211_decap_amsdu(ni, m); 584 if (m == NULL) 585 return IEEE80211_FC0_TYPE_DATA; 586 } else { 587 #ifdef IEEE80211_SUPPORT_SUPERG 588 m = ieee80211_decap_fastframe(vap, ni, m); 589 if (m == NULL) 590 return IEEE80211_FC0_TYPE_DATA; 591 #endif 592 } 593 if (dir == IEEE80211_FC1_DIR_DSTODS && ni->ni_wdsvap != NULL) 594 ieee80211_deliver_data(ni->ni_wdsvap, ni, m); 595 else 596 ieee80211_deliver_data(vap, ni, m); 597 return IEEE80211_FC0_TYPE_DATA; 598 599 case IEEE80211_FC0_TYPE_MGT: 600 vap->iv_stats.is_rx_mgmt++; 601 IEEE80211_NODE_STAT(ni, rx_mgmt); 602 if (dir != IEEE80211_FC1_DIR_NODS) { 603 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 604 wh, "data", "incorrect dir 0x%x", dir); 605 vap->iv_stats.is_rx_wrongdir++; 606 goto err; 607 } 608 if (m->m_pkthdr.len < sizeof(struct ieee80211_frame)) { 609 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_ANY, 610 ni->ni_macaddr, "mgt", "too short: len %u", 611 m->m_pkthdr.len); 612 vap->iv_stats.is_rx_tooshort++; 613 goto out; 614 } 615 #ifdef IEEE80211_DEBUG 616 if ((ieee80211_msg_debug(vap) && doprint(vap, subtype)) || 617 ieee80211_msg_dumppkts(vap)) { 618 if_printf(ifp, "received %s from %s rssi %d\n", 619 ieee80211_mgt_subtype_name[subtype >> 620 IEEE80211_FC0_SUBTYPE_SHIFT], 621 ether_sprintf(wh->i_addr2), rssi); 622 } 623 #endif 624 if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) { 625 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 626 wh, NULL, "%s", "WEP set but not permitted"); 627 vap->iv_stats.is_rx_mgtdiscard++; /* XXX */ 628 goto out; 629 } 630 vap->iv_recv_mgmt(ni, m, subtype, rxs, rssi, nf); 631 goto out; 632 633 case IEEE80211_FC0_TYPE_CTL: 634 vap->iv_stats.is_rx_ctl++; 635 IEEE80211_NODE_STAT(ni, rx_ctrl); 636 vap->iv_recv_ctl(ni, m, subtype); 637 goto out; 638 639 default: 640 IEEE80211_DISCARD(vap, IEEE80211_MSG_ANY, 641 wh, "bad", "frame type 0x%x", type); 642 /* should not come here */ 643 break; 644 } 645 err: 646 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1); 647 out: 648 if (m != NULL) { 649 if (need_tap && ieee80211_radiotap_active_vap(vap)) 650 ieee80211_radiotap_rx(vap, m); 651 m_freem(m); 652 } 653 return type; 654 } 655 656 static int 657 is11bclient(const uint8_t *rates, const uint8_t *xrates) 658 { 659 static const uint32_t brates = (1<<2*1)|(1<<2*2)|(1<<11)|(1<<2*11); 660 int i; 661 662 /* NB: the 11b clients we care about will not have xrates */ 663 if (xrates != NULL || rates == NULL) 664 return 0; 665 for (i = 0; i < rates[1]; i++) { 666 int r = rates[2+i] & IEEE80211_RATE_VAL; 667 if (r > 2*11 || ((1<<r) & brates) == 0) 668 return 0; 669 } 670 return 1; 671 } 672 673 static void 674 adhoc_recv_mgmt(struct ieee80211_node *ni, struct mbuf *m0, 675 int subtype, const struct ieee80211_rx_stats *rxs, int rssi, int nf) 676 { 677 struct ieee80211vap *vap = ni->ni_vap; 678 struct ieee80211com *ic = ni->ni_ic; 679 struct ieee80211_channel *rxchan = ic->ic_curchan; 680 struct ieee80211_frame *wh; 681 uint8_t *frm, *efrm, *sfrm; 682 uint8_t *ssid, *rates, *xrates; 683 #if 0 684 int ht_state_change = 0; 685 #endif 686 687 wh = mtod(m0, struct ieee80211_frame *); 688 frm = (uint8_t *)&wh[1]; 689 efrm = mtod(m0, uint8_t *) + m0->m_len; 690 switch (subtype) { 691 case IEEE80211_FC0_SUBTYPE_PROBE_RESP: 692 case IEEE80211_FC0_SUBTYPE_BEACON: { 693 struct ieee80211_scanparams scan; 694 struct ieee80211_channel *c; 695 /* 696 * We process beacon/probe response 697 * frames to discover neighbors. 698 */ 699 if (rxs != NULL) { 700 c = ieee80211_lookup_channel_rxstatus(vap, rxs); 701 if (c != NULL) 702 rxchan = c; 703 } 704 if (ieee80211_parse_beacon(ni, m0, rxchan, &scan) != 0) 705 return; 706 /* 707 * Count frame now that we know it's to be processed. 708 */ 709 if (subtype == IEEE80211_FC0_SUBTYPE_BEACON) { 710 vap->iv_stats.is_rx_beacon++; /* XXX remove */ 711 IEEE80211_NODE_STAT(ni, rx_beacons); 712 } else 713 IEEE80211_NODE_STAT(ni, rx_proberesp); 714 /* 715 * If scanning, just pass information to the scan module. 716 */ 717 if (ic->ic_flags & IEEE80211_F_SCAN) { 718 if (ic->ic_flags_ext & IEEE80211_FEXT_PROBECHAN) { 719 /* 720 * Actively scanning a channel marked passive; 721 * send a probe request now that we know there 722 * is 802.11 traffic present. 723 * 724 * XXX check if the beacon we recv'd gives 725 * us what we need and suppress the probe req 726 */ 727 ieee80211_probe_curchan(vap, 1); 728 ic->ic_flags_ext &= ~IEEE80211_FEXT_PROBECHAN; 729 } 730 ieee80211_add_scan(vap, rxchan, &scan, wh, 731 subtype, rssi, nf); 732 return; 733 } 734 if (scan.capinfo & IEEE80211_CAPINFO_IBSS) { 735 if (!IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_macaddr)) { 736 /* 737 * Create a new entry in the neighbor table. 738 */ 739 ni = ieee80211_add_neighbor(vap, wh, &scan); 740 } else if (ni->ni_capinfo == 0) { 741 /* 742 * Update faked node created on transmit. 743 * Note this also updates the tsf. 744 */ 745 ieee80211_init_neighbor(ni, wh, &scan); 746 } else { 747 /* 748 * Record tsf for potential resync. 749 */ 750 memcpy(ni->ni_tstamp.data, scan.tstamp, 751 sizeof(ni->ni_tstamp)); 752 } 753 /* 754 * This isn't enabled yet - otherwise it would 755 * update the HT parameters and channel width 756 * from any node, which could lead to lots of 757 * strange behaviour if the 11n nodes aren't 758 * exactly configured to match. 759 */ 760 #if 0 761 if (scan.htcap != NULL && scan.htinfo != NULL && 762 (vap->iv_flags_ht & IEEE80211_FHT_HT)) { 763 if (ieee80211_ht_updateparams(ni, 764 scan.htcap, scan.htinfo)) 765 ht_state_change = 1; 766 } 767 #endif 768 if (ni != NULL) { 769 IEEE80211_RSSI_LPF(ni->ni_avgrssi, rssi); 770 ni->ni_noise = nf; 771 } 772 /* 773 * Same here - the channel width change should 774 * be applied to the specific peer node, not 775 * to the ic. Ie, the interface configuration 776 * should stay in its current channel width; 777 * but it should change the rate control and 778 * any queued frames for the given node only. 779 * 780 * Since there's no (current) way to inform 781 * the driver that a channel width change has 782 * occured for a single node, just stub this 783 * out. 784 */ 785 #if 0 786 if (ht_state_change) 787 ieee80211_update_chw(ic); 788 #endif 789 } 790 break; 791 } 792 793 case IEEE80211_FC0_SUBTYPE_PROBE_REQ: 794 if (vap->iv_state != IEEE80211_S_RUN) { 795 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 796 wh, NULL, "wrong state %s", 797 ieee80211_state_name[vap->iv_state]); 798 vap->iv_stats.is_rx_mgtdiscard++; 799 return; 800 } 801 if (IEEE80211_IS_MULTICAST(wh->i_addr2)) { 802 /* frame must be directed */ 803 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 804 wh, NULL, "%s", "not unicast"); 805 vap->iv_stats.is_rx_mgtdiscard++; /* XXX stat */ 806 return; 807 } 808 809 /* 810 * prreq frame format 811 * [tlv] ssid 812 * [tlv] supported rates 813 * [tlv] extended supported rates 814 */ 815 ssid = rates = xrates = NULL; 816 sfrm = frm; 817 while (efrm - frm > 1) { 818 IEEE80211_VERIFY_LENGTH(efrm - frm, frm[1] + 2, return); 819 switch (*frm) { 820 case IEEE80211_ELEMID_SSID: 821 ssid = frm; 822 break; 823 case IEEE80211_ELEMID_RATES: 824 rates = frm; 825 break; 826 case IEEE80211_ELEMID_XRATES: 827 xrates = frm; 828 break; 829 } 830 frm += frm[1] + 2; 831 } 832 IEEE80211_VERIFY_ELEMENT(rates, IEEE80211_RATE_MAXSIZE, return); 833 if (xrates != NULL) 834 IEEE80211_VERIFY_ELEMENT(xrates, 835 IEEE80211_RATE_MAXSIZE - rates[1], return); 836 IEEE80211_VERIFY_ELEMENT(ssid, IEEE80211_NWID_LEN, return); 837 IEEE80211_VERIFY_SSID(vap->iv_bss, ssid, return); 838 if ((vap->iv_flags & IEEE80211_F_HIDESSID) && ssid[1] == 0) { 839 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 840 wh, NULL, 841 "%s", "no ssid with ssid suppression enabled"); 842 vap->iv_stats.is_rx_ssidmismatch++; /*XXX*/ 843 return; 844 } 845 846 /* XXX find a better class or define it's own */ 847 IEEE80211_NOTE_MAC(vap, IEEE80211_MSG_INPUT, wh->i_addr2, 848 "%s", "recv probe req"); 849 /* 850 * Some legacy 11b clients cannot hack a complete 851 * probe response frame. When the request includes 852 * only a bare-bones rate set, communicate this to 853 * the transmit side. 854 */ 855 ieee80211_send_proberesp(vap, wh->i_addr2, 856 is11bclient(rates, xrates) ? IEEE80211_SEND_LEGACY_11B : 0); 857 break; 858 859 case IEEE80211_FC0_SUBTYPE_ACTION: 860 case IEEE80211_FC0_SUBTYPE_ACTION_NOACK: 861 if (ni == vap->iv_bss) { 862 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 863 wh, NULL, "%s", "unknown node"); 864 vap->iv_stats.is_rx_mgtdiscard++; 865 } else if (!IEEE80211_ADDR_EQ(vap->iv_myaddr, wh->i_addr1) && 866 !IEEE80211_IS_MULTICAST(wh->i_addr1)) { 867 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 868 wh, NULL, "%s", "not for us"); 869 vap->iv_stats.is_rx_mgtdiscard++; 870 } else if (vap->iv_state != IEEE80211_S_RUN) { 871 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 872 wh, NULL, "wrong state %s", 873 ieee80211_state_name[vap->iv_state]); 874 vap->iv_stats.is_rx_mgtdiscard++; 875 } else { 876 if (ieee80211_parse_action(ni, m0) == 0) 877 (void)ic->ic_recv_action(ni, wh, frm, efrm); 878 } 879 break; 880 881 case IEEE80211_FC0_SUBTYPE_ASSOC_REQ: 882 case IEEE80211_FC0_SUBTYPE_ASSOC_RESP: 883 case IEEE80211_FC0_SUBTYPE_REASSOC_REQ: 884 case IEEE80211_FC0_SUBTYPE_REASSOC_RESP: 885 case IEEE80211_FC0_SUBTYPE_TIMING_ADV: 886 case IEEE80211_FC0_SUBTYPE_ATIM: 887 case IEEE80211_FC0_SUBTYPE_DISASSOC: 888 case IEEE80211_FC0_SUBTYPE_AUTH: 889 case IEEE80211_FC0_SUBTYPE_DEAUTH: 890 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 891 wh, NULL, "%s", "not handled"); 892 vap->iv_stats.is_rx_mgtdiscard++; 893 break; 894 895 default: 896 IEEE80211_DISCARD(vap, IEEE80211_MSG_ANY, 897 wh, "mgt", "subtype 0x%x not handled", subtype); 898 vap->iv_stats.is_rx_badsubtype++; 899 break; 900 } 901 } 902 #undef IEEE80211_VERIFY_LENGTH 903 #undef IEEE80211_VERIFY_ELEMENT 904 905 static void 906 ahdemo_recv_mgmt(struct ieee80211_node *ni, struct mbuf *m0, 907 int subtype, const struct ieee80211_rx_stats *rxs, int rssi, int nf) 908 { 909 struct ieee80211vap *vap = ni->ni_vap; 910 struct ieee80211com *ic = ni->ni_ic; 911 struct ieee80211_frame *wh; 912 913 /* 914 * Process management frames when scanning; useful for doing 915 * a site-survey. 916 */ 917 if (ic->ic_flags & IEEE80211_F_SCAN) 918 adhoc_recv_mgmt(ni, m0, subtype, rxs, rssi, nf); 919 else { 920 wh = mtod(m0, struct ieee80211_frame *); 921 switch (subtype) { 922 case IEEE80211_FC0_SUBTYPE_ASSOC_REQ: 923 case IEEE80211_FC0_SUBTYPE_ASSOC_RESP: 924 case IEEE80211_FC0_SUBTYPE_REASSOC_REQ: 925 case IEEE80211_FC0_SUBTYPE_REASSOC_RESP: 926 case IEEE80211_FC0_SUBTYPE_PROBE_REQ: 927 case IEEE80211_FC0_SUBTYPE_PROBE_RESP: 928 case IEEE80211_FC0_SUBTYPE_TIMING_ADV: 929 case IEEE80211_FC0_SUBTYPE_BEACON: 930 case IEEE80211_FC0_SUBTYPE_ATIM: 931 case IEEE80211_FC0_SUBTYPE_DISASSOC: 932 case IEEE80211_FC0_SUBTYPE_AUTH: 933 case IEEE80211_FC0_SUBTYPE_DEAUTH: 934 case IEEE80211_FC0_SUBTYPE_ACTION: 935 case IEEE80211_FC0_SUBTYPE_ACTION_NOACK: 936 IEEE80211_DISCARD(vap, IEEE80211_MSG_INPUT, 937 wh, NULL, "%s", "not handled"); 938 vap->iv_stats.is_rx_mgtdiscard++; 939 break; 940 default: 941 IEEE80211_DISCARD(vap, IEEE80211_MSG_ANY, 942 wh, "mgt", "subtype 0x%x not handled", subtype); 943 vap->iv_stats.is_rx_badsubtype++; 944 break; 945 } 946 } 947 } 948 949 static void 950 adhoc_recv_ctl(struct ieee80211_node *ni, struct mbuf *m, int subtype) 951 { 952 953 switch (subtype) { 954 case IEEE80211_FC0_SUBTYPE_BAR: 955 ieee80211_recv_bar(ni, m); 956 break; 957 } 958 } 959