1 /*- 2 * Copyright (c) 2001 Atsushi Onoe 3 * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting 4 * All rights reserved. 5 * 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. The name of the author may not be used to endorse or promote products 15 * derived from this software without specific prior written permission. 16 * 17 * Alternatively, this software may be distributed under the terms of the 18 * GNU General Public License ("GPL") version 2 as published by the Free 19 * Software Foundation. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 /* 37 * IEEE 802.11 generic handler 38 */ 39 40 #include <sys/param.h> 41 #include <sys/systm.h> 42 #include <sys/kernel.h> 43 44 #include <sys/socket.h> 45 46 #include <net/if.h> 47 #include <net/if_media.h> 48 #include <net/ethernet.h> 49 50 #include <net80211/ieee80211_var.h> 51 52 #include <net/bpf.h> 53 54 const char *ieee80211_phymode_name[] = { 55 "auto", /* IEEE80211_MODE_AUTO */ 56 "11a", /* IEEE80211_MODE_11A */ 57 "11b", /* IEEE80211_MODE_11B */ 58 "11g", /* IEEE80211_MODE_11G */ 59 "FH", /* IEEE80211_MODE_FH */ 60 "turboA", /* IEEE80211_MODE_TURBO_A */ 61 "turboG", /* IEEE80211_MODE_TURBO_G */ 62 }; 63 64 /* 65 * Default supported rates for 802.11 operation (in IEEE .5Mb units). 66 */ 67 #define B(r) ((r) | IEEE80211_RATE_BASIC) 68 static const struct ieee80211_rateset ieee80211_rateset_11a = 69 { 8, { B(12), 18, B(24), 36, B(48), 72, 96, 108 } }; 70 static const struct ieee80211_rateset ieee80211_rateset_half = 71 { 8, { B(6), 9, B(12), 18, B(24), 36, 48, 54 } }; 72 static const struct ieee80211_rateset ieee80211_rateset_quarter = 73 { 8, { B(3), 4, B(6), 9, B(12), 18, 24, 27 } }; 74 static const struct ieee80211_rateset ieee80211_rateset_11b = 75 { 4, { B(2), B(4), B(11), B(22) } }; 76 /* NB: OFDM rates are handled specially based on mode */ 77 static const struct ieee80211_rateset ieee80211_rateset_11g = 78 { 12, { B(2), B(4), B(11), B(22), 12, 18, 24, 36, 48, 72, 96, 108 } }; 79 #undef B 80 81 /* list of all instances */ 82 SLIST_HEAD(ieee80211_list, ieee80211com); 83 static struct ieee80211_list ieee80211_list = 84 SLIST_HEAD_INITIALIZER(ieee80211_list); 85 static u_int8_t ieee80211_vapmap[32]; /* enough for 256 */ 86 static struct mtx ieee80211_vap_mtx; 87 MTX_SYSINIT(ieee80211, &ieee80211_vap_mtx, "net80211 instances", MTX_DEF); 88 89 static void 90 ieee80211_add_vap(struct ieee80211com *ic) 91 { 92 #define N(a) (sizeof(a)/sizeof(a[0])) 93 int i; 94 u_int8_t b; 95 96 mtx_lock(&ieee80211_vap_mtx); 97 ic->ic_vap = 0; 98 for (i = 0; i < N(ieee80211_vapmap) && ieee80211_vapmap[i] == 0xff; i++) 99 ic->ic_vap += NBBY; 100 if (i == N(ieee80211_vapmap)) 101 panic("vap table full"); 102 for (b = ieee80211_vapmap[i]; b & 1; b >>= 1) 103 ic->ic_vap++; 104 setbit(ieee80211_vapmap, ic->ic_vap); 105 SLIST_INSERT_HEAD(&ieee80211_list, ic, ic_next); 106 mtx_unlock(&ieee80211_vap_mtx); 107 #undef N 108 } 109 110 static void 111 ieee80211_remove_vap(struct ieee80211com *ic) 112 { 113 mtx_lock(&ieee80211_vap_mtx); 114 SLIST_REMOVE(&ieee80211_list, ic, ieee80211com, ic_next); 115 KASSERT(ic->ic_vap < sizeof(ieee80211_vapmap)*NBBY, 116 ("invalid vap id %d", ic->ic_vap)); 117 KASSERT(isset(ieee80211_vapmap, ic->ic_vap), 118 ("vap id %d not allocated", ic->ic_vap)); 119 clrbit(ieee80211_vapmap, ic->ic_vap); 120 mtx_unlock(&ieee80211_vap_mtx); 121 } 122 123 /* 124 * Default reset method for use with the ioctl support. This 125 * method is invoked after any state change in the 802.11 126 * layer that should be propagated to the hardware but not 127 * require re-initialization of the 802.11 state machine (e.g 128 * rescanning for an ap). We always return ENETRESET which 129 * should cause the driver to re-initialize the device. Drivers 130 * can override this method to implement more optimized support. 131 */ 132 static int 133 ieee80211_default_reset(struct ifnet *ifp) 134 { 135 return ENETRESET; 136 } 137 138 /* 139 * Fill in 802.11 available channel set, mark 140 * all available channels as active, and pick 141 * a default channel if not already specified. 142 */ 143 static void 144 ieee80211_chan_init(struct ieee80211com *ic) 145 { 146 #define DEFAULTRATES(m, def) do { \ 147 if ((ic->ic_modecaps & (1<<m)) && ic->ic_sup_rates[m].rs_nrates == 0) \ 148 ic->ic_sup_rates[m] = def; \ 149 } while (0) 150 struct ifnet *ifp = ic->ic_ifp; 151 struct ieee80211_channel *c; 152 int i; 153 154 memset(ic->ic_chan_avail, 0, sizeof(ic->ic_chan_avail)); 155 ic->ic_modecaps = 1<<IEEE80211_MODE_AUTO; 156 for (i = 0; i <= IEEE80211_CHAN_MAX; i++) { 157 c = &ic->ic_channels[i]; 158 if (c->ic_flags) { 159 /* 160 * Verify driver passed us valid data. 161 */ 162 if (i != ieee80211_chan2ieee(ic, c)) { 163 if_printf(ifp, "bad channel ignored; " 164 "freq %u flags %x number %u\n", 165 c->ic_freq, c->ic_flags, i); 166 c->ic_flags = 0; /* NB: remove */ 167 continue; 168 } 169 setbit(ic->ic_chan_avail, i); 170 /* 171 * Identify mode capabilities. 172 */ 173 if (IEEE80211_IS_CHAN_A(c)) 174 ic->ic_modecaps |= 1<<IEEE80211_MODE_11A; 175 if (IEEE80211_IS_CHAN_B(c)) 176 ic->ic_modecaps |= 1<<IEEE80211_MODE_11B; 177 if (IEEE80211_IS_CHAN_ANYG(c)) 178 ic->ic_modecaps |= 1<<IEEE80211_MODE_11G; 179 if (IEEE80211_IS_CHAN_FHSS(c)) 180 ic->ic_modecaps |= 1<<IEEE80211_MODE_FH; 181 if (IEEE80211_IS_CHAN_T(c)) 182 ic->ic_modecaps |= 1<<IEEE80211_MODE_TURBO_A; 183 if (IEEE80211_IS_CHAN_108G(c)) 184 ic->ic_modecaps |= 1<<IEEE80211_MODE_TURBO_G; 185 if (ic->ic_curchan == NULL) { 186 /* arbitrarily pick the first channel */ 187 ic->ic_curchan = &ic->ic_channels[i]; 188 } 189 } 190 } 191 192 /* fillin well-known rate sets if driver has not specified */ 193 DEFAULTRATES(IEEE80211_MODE_11B, ieee80211_rateset_11b); 194 DEFAULTRATES(IEEE80211_MODE_11G, ieee80211_rateset_11g); 195 DEFAULTRATES(IEEE80211_MODE_11A, ieee80211_rateset_11a); 196 DEFAULTRATES(IEEE80211_MODE_TURBO_A, ieee80211_rateset_11a); 197 DEFAULTRATES(IEEE80211_MODE_TURBO_G, ieee80211_rateset_11g); 198 199 /* 200 * Set auto mode to reset active channel state and any desired channel. 201 */ 202 (void) ieee80211_setmode(ic, IEEE80211_MODE_AUTO); 203 #undef DEFAULTRATES 204 } 205 206 void 207 ieee80211_ifattach(struct ieee80211com *ic) 208 { 209 struct ifnet *ifp = ic->ic_ifp; 210 211 ether_ifattach(ifp, ic->ic_myaddr); 212 ifp->if_output = ieee80211_output; 213 214 bpfattach2(ifp, DLT_IEEE802_11, 215 sizeof(struct ieee80211_frame_addr4), &ic->ic_rawbpf); 216 217 ieee80211_crypto_attach(ic); 218 219 ic->ic_des_chan = IEEE80211_CHAN_ANYC; 220 /* 221 * Fill in 802.11 available channel set, mark all 222 * available channels as active, and pick a default 223 * channel if not already specified. 224 */ 225 ieee80211_chan_init(ic); 226 #if 0 227 /* 228 * Enable WME by default if we're capable. 229 */ 230 if (ic->ic_caps & IEEE80211_C_WME) 231 ic->ic_flags |= IEEE80211_F_WME; 232 #endif 233 if (ic->ic_caps & IEEE80211_C_BURST) 234 ic->ic_flags |= IEEE80211_F_BURST; 235 236 ic->ic_bintval = IEEE80211_BINTVAL_DEFAULT; 237 ic->ic_bmissthreshold = IEEE80211_HWBMISS_DEFAULT; 238 ic->ic_dtim_period = IEEE80211_DTIM_DEFAULT; 239 IEEE80211_BEACON_LOCK_INIT(ic, "beacon"); 240 241 ic->ic_lintval = ic->ic_bintval; 242 ic->ic_txpowlimit = IEEE80211_TXPOWER_MAX; 243 244 ieee80211_node_attach(ic); 245 ieee80211_proto_attach(ic); 246 247 ieee80211_add_vap(ic); 248 249 ieee80211_sysctl_attach(ic); /* NB: requires ic_vap */ 250 251 /* 252 * Install a default reset method for the ioctl support. 253 * The driver is expected to fill this in before calling us. 254 */ 255 if (ic->ic_reset == NULL) 256 ic->ic_reset = ieee80211_default_reset; 257 258 KASSERT(ifp->if_spare2 == NULL, ("oops, hosed")); 259 ifp->if_spare2 = ic; /* XXX temp backpointer */ 260 } 261 262 void 263 ieee80211_ifdetach(struct ieee80211com *ic) 264 { 265 struct ifnet *ifp = ic->ic_ifp; 266 267 ieee80211_remove_vap(ic); 268 269 ieee80211_sysctl_detach(ic); 270 /* NB: must be called before ieee80211_node_detach */ 271 ieee80211_proto_detach(ic); 272 ieee80211_crypto_detach(ic); 273 ieee80211_node_detach(ic); 274 ifmedia_removeall(&ic->ic_media); 275 276 IEEE80211_BEACON_LOCK_DESTROY(ic); 277 278 bpfdetach(ifp); 279 ether_ifdetach(ifp); 280 } 281 282 static __inline int 283 mapgsm(u_int freq, u_int flags) 284 { 285 freq *= 10; 286 if (flags & IEEE80211_CHAN_QUARTER) 287 freq += 5; 288 else if (flags & IEEE80211_CHAN_HALF) 289 freq += 10; 290 else 291 freq += 20; 292 /* NB: there is no 907/20 wide but leave room */ 293 return (freq - 906*10) / 5; 294 } 295 296 static __inline int 297 mappsb(u_int freq, u_int flags) 298 { 299 return 37 + ((freq * 10) + ((freq % 5) == 2 ? 5 : 0) - 49400) / 5; 300 } 301 302 /* 303 * Convert MHz frequency to IEEE channel number. 304 */ 305 int 306 ieee80211_mhz2ieee(u_int freq, u_int flags) 307 { 308 if (flags & IEEE80211_CHAN_GSM) 309 return mapgsm(freq, flags); 310 if (flags & IEEE80211_CHAN_2GHZ) { /* 2GHz band */ 311 if (freq == 2484) 312 return 14; 313 if (freq < 2484) 314 return ((int) freq - 2407) / 5; 315 else 316 return 15 + ((freq - 2512) / 20); 317 } else if (flags & IEEE80211_CHAN_5GHZ) { /* 5Ghz band */ 318 if (freq <= 5000) { 319 if (flags &(IEEE80211_CHAN_HALF|IEEE80211_CHAN_QUARTER)) 320 return mappsb(freq, flags); 321 return (freq - 4000) / 5; 322 } else 323 return (freq - 5000) / 5; 324 } else { /* either, guess */ 325 if (freq == 2484) 326 return 14; 327 if (freq < 2484) { 328 if (907 <= freq && freq <= 922) 329 return mapgsm(freq, flags); 330 return ((int) freq - 2407) / 5; 331 } 332 if (freq < 5000) { 333 if (flags &(IEEE80211_CHAN_HALF|IEEE80211_CHAN_QUARTER)) 334 return mappsb(freq, flags); 335 else if (freq > 4900) 336 return (freq - 4000) / 5; 337 else 338 return 15 + ((freq - 2512) / 20); 339 } 340 return (freq - 5000) / 5; 341 } 342 } 343 344 /* 345 * Convert channel to IEEE channel number. 346 */ 347 int 348 ieee80211_chan2ieee(struct ieee80211com *ic, const struct ieee80211_channel *c) 349 { 350 if (ic->ic_channels <= c && c <= &ic->ic_channels[IEEE80211_CHAN_MAX]) 351 return c - ic->ic_channels; 352 else if (c == IEEE80211_CHAN_ANYC) 353 return IEEE80211_CHAN_ANY; 354 else if (c != NULL) { 355 if_printf(ic->ic_ifp, "invalid channel freq %u flags %x\n", 356 c->ic_freq, c->ic_flags); 357 return 0; /* XXX */ 358 } else { 359 if_printf(ic->ic_ifp, "invalid channel (NULL)\n"); 360 return 0; /* XXX */ 361 } 362 } 363 364 /* 365 * Convert IEEE channel number to MHz frequency. 366 */ 367 u_int 368 ieee80211_ieee2mhz(u_int chan, u_int flags) 369 { 370 if (flags & IEEE80211_CHAN_GSM) 371 return 907 + 5 * (chan / 10); 372 if (flags & IEEE80211_CHAN_2GHZ) { /* 2GHz band */ 373 if (chan == 14) 374 return 2484; 375 if (chan < 14) 376 return 2407 + chan*5; 377 else 378 return 2512 + ((chan-15)*20); 379 } else if (flags & IEEE80211_CHAN_5GHZ) {/* 5Ghz band */ 380 if (flags & (IEEE80211_CHAN_HALF|IEEE80211_CHAN_QUARTER)) { 381 chan -= 37; 382 return 4940 + chan*5 + (chan % 5 ? 2 : 0); 383 } 384 return 5000 + (chan*5); 385 } else { /* either, guess */ 386 /* XXX can't distinguish PSB+GSM channels */ 387 if (chan == 14) 388 return 2484; 389 if (chan < 14) /* 0-13 */ 390 return 2407 + chan*5; 391 if (chan < 27) /* 15-26 */ 392 return 2512 + ((chan-15)*20); 393 return 5000 + (chan*5); 394 } 395 } 396 397 /* 398 * Setup the media data structures according to the channel and 399 * rate tables. This must be called by the driver after 400 * ieee80211_attach and before most anything else. 401 */ 402 void 403 ieee80211_media_init(struct ieee80211com *ic, 404 ifm_change_cb_t media_change, ifm_stat_cb_t media_stat) 405 { 406 #define ADD(_ic, _s, _o) \ 407 ifmedia_add(&(_ic)->ic_media, \ 408 IFM_MAKEWORD(IFM_IEEE80211, (_s), (_o), 0), 0, NULL) 409 struct ifnet *ifp = ic->ic_ifp; 410 struct ifmediareq imr; 411 int i, j, mode, rate, maxrate, mword, mopt, r; 412 struct ieee80211_rateset *rs; 413 struct ieee80211_rateset allrates; 414 415 /* NB: this works because the structure is initialized to zero */ 416 if (LIST_EMPTY(&ic->ic_media.ifm_list)) { 417 /* 418 * Do late attach work that must wait for any subclass 419 * (i.e. driver) work such as overriding methods. 420 */ 421 ieee80211_node_lateattach(ic); 422 } else { 423 /* 424 * We are re-initializing the channel list; clear 425 * the existing media state as the media routines 426 * don't suppress duplicates. 427 */ 428 ifmedia_removeall(&ic->ic_media); 429 ieee80211_chan_init(ic); 430 } 431 432 /* 433 * Fill in media characteristics. 434 */ 435 ifmedia_init(&ic->ic_media, 0, media_change, media_stat); 436 maxrate = 0; 437 memset(&allrates, 0, sizeof(allrates)); 438 for (mode = IEEE80211_MODE_AUTO; mode < IEEE80211_MODE_MAX; mode++) { 439 static const u_int mopts[] = { 440 IFM_AUTO, 441 IFM_IEEE80211_11A, 442 IFM_IEEE80211_11B, 443 IFM_IEEE80211_11G, 444 IFM_IEEE80211_FH, 445 IFM_IEEE80211_11A | IFM_IEEE80211_TURBO, 446 IFM_IEEE80211_11G | IFM_IEEE80211_TURBO, 447 }; 448 if ((ic->ic_modecaps & (1<<mode)) == 0) 449 continue; 450 mopt = mopts[mode]; 451 ADD(ic, IFM_AUTO, mopt); /* e.g. 11a auto */ 452 if (ic->ic_caps & IEEE80211_C_IBSS) 453 ADD(ic, IFM_AUTO, mopt | IFM_IEEE80211_ADHOC); 454 if (ic->ic_caps & IEEE80211_C_HOSTAP) 455 ADD(ic, IFM_AUTO, mopt | IFM_IEEE80211_HOSTAP); 456 if (ic->ic_caps & IEEE80211_C_AHDEMO) 457 ADD(ic, IFM_AUTO, mopt | IFM_IEEE80211_ADHOC | IFM_FLAG0); 458 if (ic->ic_caps & IEEE80211_C_MONITOR) 459 ADD(ic, IFM_AUTO, mopt | IFM_IEEE80211_MONITOR); 460 if (mode == IEEE80211_MODE_AUTO) 461 continue; 462 rs = &ic->ic_sup_rates[mode]; 463 for (i = 0; i < rs->rs_nrates; i++) { 464 rate = rs->rs_rates[i]; 465 mword = ieee80211_rate2media(ic, rate, mode); 466 if (mword == 0) 467 continue; 468 ADD(ic, mword, mopt); 469 if (ic->ic_caps & IEEE80211_C_IBSS) 470 ADD(ic, mword, mopt | IFM_IEEE80211_ADHOC); 471 if (ic->ic_caps & IEEE80211_C_HOSTAP) 472 ADD(ic, mword, mopt | IFM_IEEE80211_HOSTAP); 473 if (ic->ic_caps & IEEE80211_C_AHDEMO) 474 ADD(ic, mword, mopt | IFM_IEEE80211_ADHOC | IFM_FLAG0); 475 if (ic->ic_caps & IEEE80211_C_MONITOR) 476 ADD(ic, mword, mopt | IFM_IEEE80211_MONITOR); 477 /* 478 * Add rate to the collection of all rates. 479 */ 480 r = rate & IEEE80211_RATE_VAL; 481 for (j = 0; j < allrates.rs_nrates; j++) 482 if (allrates.rs_rates[j] == r) 483 break; 484 if (j == allrates.rs_nrates) { 485 /* unique, add to the set */ 486 allrates.rs_rates[j] = r; 487 allrates.rs_nrates++; 488 } 489 rate = (rate & IEEE80211_RATE_VAL) / 2; 490 if (rate > maxrate) 491 maxrate = rate; 492 } 493 } 494 for (i = 0; i < allrates.rs_nrates; i++) { 495 mword = ieee80211_rate2media(ic, allrates.rs_rates[i], 496 IEEE80211_MODE_AUTO); 497 if (mword == 0) 498 continue; 499 mword = IFM_SUBTYPE(mword); /* remove media options */ 500 ADD(ic, mword, 0); 501 if (ic->ic_caps & IEEE80211_C_IBSS) 502 ADD(ic, mword, IFM_IEEE80211_ADHOC); 503 if (ic->ic_caps & IEEE80211_C_HOSTAP) 504 ADD(ic, mword, IFM_IEEE80211_HOSTAP); 505 if (ic->ic_caps & IEEE80211_C_AHDEMO) 506 ADD(ic, mword, IFM_IEEE80211_ADHOC | IFM_FLAG0); 507 if (ic->ic_caps & IEEE80211_C_MONITOR) 508 ADD(ic, mword, IFM_IEEE80211_MONITOR); 509 } 510 ieee80211_media_status(ifp, &imr); 511 ifmedia_set(&ic->ic_media, imr.ifm_active); 512 513 if (maxrate) 514 ifp->if_baudrate = IF_Mbps(maxrate); 515 #undef ADD 516 } 517 518 const struct ieee80211_rateset * 519 ieee80211_get_suprates(struct ieee80211com *ic, const struct ieee80211_channel *c) 520 { 521 enum ieee80211_phymode mode = ieee80211_chan2mode(ic, c); 522 523 if (IEEE80211_IS_CHAN_HALF(c)) 524 return &ieee80211_rateset_half; 525 if (IEEE80211_IS_CHAN_QUARTER(c)) 526 return &ieee80211_rateset_quarter; 527 return &ic->ic_sup_rates[mode]; 528 } 529 530 void 531 ieee80211_announce(struct ieee80211com *ic) 532 { 533 struct ifnet *ifp = ic->ic_ifp; 534 int i, mode, rate, mword; 535 struct ieee80211_rateset *rs; 536 537 for (mode = IEEE80211_MODE_11A; mode < IEEE80211_MODE_MAX; mode++) { 538 if ((ic->ic_modecaps & (1<<mode)) == 0) 539 continue; 540 if_printf(ifp, "%s rates: ", ieee80211_phymode_name[mode]); 541 rs = &ic->ic_sup_rates[mode]; 542 for (i = 0; i < rs->rs_nrates; i++) { 543 rate = rs->rs_rates[i]; 544 mword = ieee80211_rate2media(ic, rate, mode); 545 if (mword == 0) 546 continue; 547 printf("%s%d%sMbps", (i != 0 ? " " : ""), 548 (rate & IEEE80211_RATE_VAL) / 2, 549 ((rate & 0x1) != 0 ? ".5" : "")); 550 } 551 printf("\n"); 552 } 553 } 554 555 static int 556 findrate(struct ieee80211com *ic, enum ieee80211_phymode mode, int rate) 557 { 558 #define IEEERATE(_ic,_m,_i) \ 559 ((_ic)->ic_sup_rates[_m].rs_rates[_i] & IEEE80211_RATE_VAL) 560 int i, nrates = ic->ic_sup_rates[mode].rs_nrates; 561 for (i = 0; i < nrates; i++) 562 if (IEEERATE(ic, mode, i) == rate) 563 return i; 564 return -1; 565 #undef IEEERATE 566 } 567 568 /* 569 * Find an instance by it's mac address. 570 */ 571 struct ieee80211com * 572 ieee80211_find_vap(const u_int8_t mac[IEEE80211_ADDR_LEN]) 573 { 574 struct ieee80211com *ic; 575 576 /* XXX lock */ 577 SLIST_FOREACH(ic, &ieee80211_list, ic_next) 578 if (IEEE80211_ADDR_EQ(mac, ic->ic_myaddr)) 579 return ic; 580 return NULL; 581 } 582 583 static struct ieee80211com * 584 ieee80211_find_instance(struct ifnet *ifp) 585 { 586 struct ieee80211com *ic; 587 588 /* XXX lock */ 589 /* XXX not right for multiple instances but works for now */ 590 SLIST_FOREACH(ic, &ieee80211_list, ic_next) 591 if (ic->ic_ifp == ifp) 592 return ic; 593 return NULL; 594 } 595 596 /* 597 * Handle a media change request. 598 */ 599 int 600 ieee80211_media_change(struct ifnet *ifp) 601 { 602 struct ieee80211com *ic; 603 struct ifmedia_entry *ime; 604 enum ieee80211_opmode newopmode; 605 enum ieee80211_phymode newphymode; 606 int i, j, newrate, error = 0; 607 608 ic = ieee80211_find_instance(ifp); 609 if (!ic) { 610 if_printf(ifp, "%s: no 802.11 instance!\n", __func__); 611 return EINVAL; 612 } 613 ime = ic->ic_media.ifm_cur; 614 /* 615 * First, identify the phy mode. 616 */ 617 switch (IFM_MODE(ime->ifm_media)) { 618 case IFM_IEEE80211_11A: 619 newphymode = IEEE80211_MODE_11A; 620 break; 621 case IFM_IEEE80211_11B: 622 newphymode = IEEE80211_MODE_11B; 623 break; 624 case IFM_IEEE80211_11G: 625 newphymode = IEEE80211_MODE_11G; 626 break; 627 case IFM_IEEE80211_FH: 628 newphymode = IEEE80211_MODE_FH; 629 break; 630 case IFM_AUTO: 631 newphymode = IEEE80211_MODE_AUTO; 632 break; 633 default: 634 return EINVAL; 635 } 636 /* 637 * Turbo mode is an ``option''. 638 * XXX does not apply to AUTO 639 */ 640 if (ime->ifm_media & IFM_IEEE80211_TURBO) { 641 if (newphymode == IEEE80211_MODE_11A) 642 newphymode = IEEE80211_MODE_TURBO_A; 643 else if (newphymode == IEEE80211_MODE_11G) 644 newphymode = IEEE80211_MODE_TURBO_G; 645 else 646 return EINVAL; 647 } 648 /* 649 * Validate requested mode is available. 650 */ 651 if ((ic->ic_modecaps & (1<<newphymode)) == 0) 652 return EINVAL; 653 654 /* 655 * Next, the fixed/variable rate. 656 */ 657 i = -1; 658 if (IFM_SUBTYPE(ime->ifm_media) != IFM_AUTO) { 659 /* 660 * Convert media subtype to rate. 661 */ 662 newrate = ieee80211_media2rate(ime->ifm_media); 663 if (newrate == 0) 664 return EINVAL; 665 /* 666 * Check the rate table for the specified/current phy. 667 */ 668 if (newphymode == IEEE80211_MODE_AUTO) { 669 /* 670 * In autoselect mode search for the rate. 671 */ 672 for (j = IEEE80211_MODE_11A; 673 j < IEEE80211_MODE_MAX; j++) { 674 if ((ic->ic_modecaps & (1<<j)) == 0) 675 continue; 676 i = findrate(ic, j, newrate); 677 if (i != -1) { 678 /* lock mode too */ 679 newphymode = j; 680 break; 681 } 682 } 683 } else { 684 i = findrate(ic, newphymode, newrate); 685 } 686 if (i == -1) /* mode/rate mismatch */ 687 return EINVAL; 688 } 689 /* NB: defer rate setting to later */ 690 691 /* 692 * Deduce new operating mode but don't install it just yet. 693 */ 694 if ((ime->ifm_media & (IFM_IEEE80211_ADHOC|IFM_FLAG0)) == 695 (IFM_IEEE80211_ADHOC|IFM_FLAG0)) 696 newopmode = IEEE80211_M_AHDEMO; 697 else if (ime->ifm_media & IFM_IEEE80211_HOSTAP) 698 newopmode = IEEE80211_M_HOSTAP; 699 else if (ime->ifm_media & IFM_IEEE80211_ADHOC) 700 newopmode = IEEE80211_M_IBSS; 701 else if (ime->ifm_media & IFM_IEEE80211_MONITOR) 702 newopmode = IEEE80211_M_MONITOR; 703 else 704 newopmode = IEEE80211_M_STA; 705 706 /* 707 * Autoselect doesn't make sense when operating as an AP. 708 * If no phy mode has been selected, pick one and lock it 709 * down so rate tables can be used in forming beacon frames 710 * and the like. 711 */ 712 if (newopmode == IEEE80211_M_HOSTAP && 713 newphymode == IEEE80211_MODE_AUTO) { 714 for (j = IEEE80211_MODE_11A; j < IEEE80211_MODE_MAX; j++) 715 if (ic->ic_modecaps & (1<<j)) { 716 newphymode = j; 717 break; 718 } 719 } 720 721 /* 722 * Handle phy mode change. 723 */ 724 if (ic->ic_curmode != newphymode) { /* change phy mode */ 725 error = ieee80211_setmode(ic, newphymode); 726 if (error != 0) 727 return error; 728 error = ENETRESET; 729 } 730 731 /* 732 * Committed to changes, install the rate setting. 733 */ 734 if (ic->ic_fixed_rate != i) { 735 ic->ic_fixed_rate = i; /* set fixed tx rate */ 736 error = ENETRESET; 737 } 738 739 /* 740 * Handle operating mode change. 741 */ 742 if (ic->ic_opmode != newopmode) { 743 ic->ic_opmode = newopmode; 744 switch (newopmode) { 745 case IEEE80211_M_AHDEMO: 746 case IEEE80211_M_HOSTAP: 747 case IEEE80211_M_STA: 748 case IEEE80211_M_MONITOR: 749 ic->ic_flags &= ~IEEE80211_F_IBSSON; 750 break; 751 case IEEE80211_M_IBSS: 752 ic->ic_flags |= IEEE80211_F_IBSSON; 753 break; 754 } 755 /* 756 * Yech, slot time may change depending on the 757 * operating mode so reset it to be sure everything 758 * is setup appropriately. 759 */ 760 ieee80211_reset_erp(ic); 761 ieee80211_wme_initparams(ic); /* after opmode change */ 762 error = ENETRESET; 763 } 764 #ifdef notdef 765 if (error == 0) 766 ifp->if_baudrate = ifmedia_baudrate(ime->ifm_media); 767 #endif 768 return error; 769 } 770 771 void 772 ieee80211_media_status(struct ifnet *ifp, struct ifmediareq *imr) 773 { 774 struct ieee80211com *ic; 775 const struct ieee80211_rateset *rs; 776 777 ic = ieee80211_find_instance(ifp); 778 if (!ic) { 779 if_printf(ifp, "%s: no 802.11 instance!\n", __func__); 780 return; 781 } 782 imr->ifm_status = IFM_AVALID; 783 imr->ifm_active = IFM_IEEE80211; 784 if (ic->ic_state == IEEE80211_S_RUN) 785 imr->ifm_status |= IFM_ACTIVE; 786 /* 787 * Calculate a current rate if possible. 788 */ 789 if (ic->ic_fixed_rate != IEEE80211_FIXED_RATE_NONE) { 790 /* 791 * A fixed rate is set, report that. 792 */ 793 rs = ieee80211_get_suprates(ic, ic->ic_curchan); 794 imr->ifm_active |= ieee80211_rate2media(ic, 795 rs->rs_rates[ic->ic_fixed_rate], ic->ic_curmode); 796 } else if (ic->ic_opmode == IEEE80211_M_STA) { 797 /* 798 * In station mode report the current transmit rate. 799 */ 800 rs = &ic->ic_bss->ni_rates; 801 imr->ifm_active |= ieee80211_rate2media(ic, 802 rs->rs_rates[ic->ic_bss->ni_txrate], ic->ic_curmode); 803 } else 804 imr->ifm_active |= IFM_AUTO; 805 switch (ic->ic_opmode) { 806 case IEEE80211_M_STA: 807 break; 808 case IEEE80211_M_IBSS: 809 imr->ifm_active |= IFM_IEEE80211_ADHOC; 810 break; 811 case IEEE80211_M_AHDEMO: 812 /* should not come here */ 813 break; 814 case IEEE80211_M_HOSTAP: 815 imr->ifm_active |= IFM_IEEE80211_HOSTAP; 816 break; 817 case IEEE80211_M_MONITOR: 818 imr->ifm_active |= IFM_IEEE80211_MONITOR; 819 break; 820 } 821 switch (ic->ic_curmode) { 822 case IEEE80211_MODE_11A: 823 imr->ifm_active |= IFM_IEEE80211_11A; 824 break; 825 case IEEE80211_MODE_11B: 826 imr->ifm_active |= IFM_IEEE80211_11B; 827 break; 828 case IEEE80211_MODE_11G: 829 imr->ifm_active |= IFM_IEEE80211_11G; 830 break; 831 case IEEE80211_MODE_FH: 832 imr->ifm_active |= IFM_IEEE80211_FH; 833 break; 834 case IEEE80211_MODE_TURBO_A: 835 imr->ifm_active |= IFM_IEEE80211_11A 836 | IFM_IEEE80211_TURBO; 837 break; 838 case IEEE80211_MODE_TURBO_G: 839 imr->ifm_active |= IFM_IEEE80211_11G 840 | IFM_IEEE80211_TURBO; 841 break; 842 } 843 } 844 845 void 846 ieee80211_watchdog(struct ieee80211com *ic) 847 { 848 struct ieee80211_node_table *nt; 849 int need_inact_timer = 0; 850 851 if (ic->ic_state != IEEE80211_S_INIT) { 852 if (ic->ic_mgt_timer && --ic->ic_mgt_timer == 0) 853 ieee80211_new_state(ic, IEEE80211_S_SCAN, 0); 854 nt = &ic->ic_scan; 855 if (nt->nt_inact_timer) { 856 if (--nt->nt_inact_timer == 0) 857 nt->nt_timeout(nt); 858 need_inact_timer += nt->nt_inact_timer; 859 } 860 nt = &ic->ic_sta; 861 if (nt->nt_inact_timer) { 862 if (--nt->nt_inact_timer == 0) 863 nt->nt_timeout(nt); 864 need_inact_timer += nt->nt_inact_timer; 865 } 866 } 867 if (ic->ic_mgt_timer != 0 || need_inact_timer) 868 ic->ic_ifp->if_timer = 1; 869 } 870 871 /* 872 * Set the current phy mode and recalculate the active channel 873 * set based on the available channels for this mode. Also 874 * select a new default/current channel if the current one is 875 * inappropriate for this mode. 876 */ 877 int 878 ieee80211_setmode(struct ieee80211com *ic, enum ieee80211_phymode mode) 879 { 880 #define N(a) (sizeof(a) / sizeof(a[0])) 881 static const u_int chanflags[] = { 882 0, /* IEEE80211_MODE_AUTO */ 883 IEEE80211_CHAN_A, /* IEEE80211_MODE_11A */ 884 IEEE80211_CHAN_B, /* IEEE80211_MODE_11B */ 885 IEEE80211_CHAN_PUREG, /* IEEE80211_MODE_11G */ 886 IEEE80211_CHAN_FHSS, /* IEEE80211_MODE_FH */ 887 IEEE80211_CHAN_T, /* IEEE80211_MODE_TURBO_A */ 888 IEEE80211_CHAN_108G, /* IEEE80211_MODE_TURBO_G */ 889 }; 890 struct ieee80211_channel *c; 891 u_int modeflags; 892 int i; 893 894 /* validate new mode */ 895 if ((ic->ic_modecaps & (1<<mode)) == 0) { 896 IEEE80211_DPRINTF(ic, IEEE80211_MSG_ANY, 897 "%s: mode %u not supported (caps 0x%x)\n", 898 __func__, mode, ic->ic_modecaps); 899 return EINVAL; 900 } 901 902 /* 903 * Verify at least one channel is present in the available 904 * channel list before committing to the new mode. 905 */ 906 KASSERT(mode < N(chanflags), ("Unexpected mode %u", mode)); 907 modeflags = chanflags[mode]; 908 for (i = 0; i <= IEEE80211_CHAN_MAX; i++) { 909 c = &ic->ic_channels[i]; 910 if (c->ic_flags == 0) 911 continue; 912 if (mode == IEEE80211_MODE_AUTO) { 913 /* ignore static turbo channels for autoselect */ 914 if (!IEEE80211_IS_CHAN_T(c)) 915 break; 916 } else { 917 if ((c->ic_flags & modeflags) == modeflags) 918 break; 919 } 920 } 921 if (i > IEEE80211_CHAN_MAX) { 922 IEEE80211_DPRINTF(ic, IEEE80211_MSG_ANY, 923 "%s: no channels found for mode %u\n", __func__, mode); 924 return EINVAL; 925 } 926 927 /* 928 * Calculate the active channel set. 929 */ 930 memset(ic->ic_chan_active, 0, sizeof(ic->ic_chan_active)); 931 for (i = 0; i <= IEEE80211_CHAN_MAX; i++) { 932 c = &ic->ic_channels[i]; 933 if (c->ic_flags == 0) 934 continue; 935 if (mode == IEEE80211_MODE_AUTO) { 936 /* take anything but static turbo channels */ 937 if (!IEEE80211_IS_CHAN_T(c)) 938 setbit(ic->ic_chan_active, i); 939 } else { 940 if ((c->ic_flags & modeflags) == modeflags) 941 setbit(ic->ic_chan_active, i); 942 } 943 } 944 /* 945 * If no current/default channel is setup or the current 946 * channel is wrong for the mode then pick the first 947 * available channel from the active list. This is likely 948 * not the right one. 949 */ 950 if (isclr(ic->ic_chan_active, ieee80211_chan2ieee(ic, ic->ic_curchan))) { 951 ic->ic_curchan = NULL; 952 for (i = 0; i <= IEEE80211_CHAN_MAX; i++) 953 if (isset(ic->ic_chan_active, i)) { 954 ic->ic_curchan = &ic->ic_channels[i]; 955 break; 956 } 957 KASSERT(ic->ic_curchan != NULL, ("no current channel")); 958 } 959 if (ic->ic_ibss_chan == NULL || 960 isclr(ic->ic_chan_active, ieee80211_chan2ieee(ic, ic->ic_ibss_chan))) 961 ic->ic_ibss_chan = ic->ic_curchan; 962 /* 963 * If the desired channel is set but no longer valid then reset it. 964 */ 965 if (ic->ic_des_chan != IEEE80211_CHAN_ANYC && 966 isclr(ic->ic_chan_active, ieee80211_chan2ieee(ic, ic->ic_des_chan))) 967 ic->ic_des_chan = IEEE80211_CHAN_ANYC; 968 969 /* 970 * Adjust basic rates in 11b/11g supported rate set. 971 * Note that if operating on a hal/quarter rate channel 972 * this is a noop as those rates sets are different 973 * and used instead. 974 */ 975 if (mode == IEEE80211_MODE_11G || mode == IEEE80211_MODE_11B) 976 ieee80211_set11gbasicrates(&ic->ic_sup_rates[mode], mode); 977 978 /* 979 * Setup an initial rate set according to the 980 * current/default channel selected above. This 981 * will be changed when scanning but must exist 982 * now so driver have a consistent state of ic_ibss_chan. 983 */ 984 if (ic->ic_bss != NULL) /* NB: can be called before lateattach */ 985 ic->ic_bss->ni_rates = ic->ic_sup_rates[mode]; 986 987 ic->ic_curmode = mode; 988 ieee80211_reset_erp(ic); /* reset ERP state */ 989 ieee80211_wme_initparams(ic); /* reset WME stat */ 990 991 return 0; 992 #undef N 993 } 994 995 /* 996 * Return the phy mode for with the specified channel so the 997 * caller can select a rate set. This is problematic for channels 998 * where multiple operating modes are possible (e.g. 11g+11b). 999 * In those cases we defer to the current operating mode when set. 1000 */ 1001 enum ieee80211_phymode 1002 ieee80211_chan2mode(struct ieee80211com *ic, const struct ieee80211_channel *chan) 1003 { 1004 if (IEEE80211_IS_CHAN_T(chan)) { 1005 return IEEE80211_MODE_TURBO_A; 1006 } else if (IEEE80211_IS_CHAN_5GHZ(chan)) { 1007 return IEEE80211_MODE_11A; 1008 } else if (IEEE80211_IS_CHAN_FHSS(chan)) 1009 return IEEE80211_MODE_FH; 1010 else if (chan->ic_flags & (IEEE80211_CHAN_OFDM|IEEE80211_CHAN_DYN)) { 1011 /* 1012 * This assumes all 11g channels are also usable 1013 * for 11b, which is currently true. 1014 */ 1015 if (ic->ic_curmode == IEEE80211_MODE_TURBO_G) 1016 return IEEE80211_MODE_TURBO_G; 1017 if (ic->ic_curmode == IEEE80211_MODE_11B) 1018 return IEEE80211_MODE_11B; 1019 return IEEE80211_MODE_11G; 1020 } else 1021 return IEEE80211_MODE_11B; 1022 } 1023 1024 /* 1025 * convert IEEE80211 rate value to ifmedia subtype. 1026 * ieee80211 rate is in unit of 0.5Mbps. 1027 */ 1028 int 1029 ieee80211_rate2media(struct ieee80211com *ic, int rate, enum ieee80211_phymode mode) 1030 { 1031 #define N(a) (sizeof(a) / sizeof(a[0])) 1032 static const struct { 1033 u_int m; /* rate + mode */ 1034 u_int r; /* if_media rate */ 1035 } rates[] = { 1036 { 2 | IFM_IEEE80211_FH, IFM_IEEE80211_FH1 }, 1037 { 4 | IFM_IEEE80211_FH, IFM_IEEE80211_FH2 }, 1038 { 2 | IFM_IEEE80211_11B, IFM_IEEE80211_DS1 }, 1039 { 4 | IFM_IEEE80211_11B, IFM_IEEE80211_DS2 }, 1040 { 11 | IFM_IEEE80211_11B, IFM_IEEE80211_DS5 }, 1041 { 22 | IFM_IEEE80211_11B, IFM_IEEE80211_DS11 }, 1042 { 44 | IFM_IEEE80211_11B, IFM_IEEE80211_DS22 }, 1043 { 12 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM6 }, 1044 { 18 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM9 }, 1045 { 24 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM12 }, 1046 { 36 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM18 }, 1047 { 48 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM24 }, 1048 { 72 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM36 }, 1049 { 96 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM48 }, 1050 { 108 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM54 }, 1051 { 2 | IFM_IEEE80211_11G, IFM_IEEE80211_DS1 }, 1052 { 4 | IFM_IEEE80211_11G, IFM_IEEE80211_DS2 }, 1053 { 11 | IFM_IEEE80211_11G, IFM_IEEE80211_DS5 }, 1054 { 22 | IFM_IEEE80211_11G, IFM_IEEE80211_DS11 }, 1055 { 12 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM6 }, 1056 { 18 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM9 }, 1057 { 24 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM12 }, 1058 { 36 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM18 }, 1059 { 48 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM24 }, 1060 { 72 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM36 }, 1061 { 96 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM48 }, 1062 { 108 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM54 }, 1063 { 6 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM3 }, 1064 { 9 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM4 }, 1065 { 54 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM27 }, 1066 /* NB: OFDM72 doesn't realy exist so we don't handle it */ 1067 }; 1068 u_int mask, i; 1069 1070 mask = rate & IEEE80211_RATE_VAL; 1071 switch (mode) { 1072 case IEEE80211_MODE_11A: 1073 case IEEE80211_MODE_TURBO_A: 1074 mask |= IFM_IEEE80211_11A; 1075 break; 1076 case IEEE80211_MODE_11B: 1077 mask |= IFM_IEEE80211_11B; 1078 break; 1079 case IEEE80211_MODE_FH: 1080 mask |= IFM_IEEE80211_FH; 1081 break; 1082 case IEEE80211_MODE_AUTO: 1083 /* NB: ic may be NULL for some drivers */ 1084 if (ic && ic->ic_phytype == IEEE80211_T_FH) { 1085 mask |= IFM_IEEE80211_FH; 1086 break; 1087 } 1088 /* NB: hack, 11g matches both 11b+11a rates */ 1089 /* fall thru... */ 1090 case IEEE80211_MODE_11G: 1091 case IEEE80211_MODE_TURBO_G: 1092 mask |= IFM_IEEE80211_11G; 1093 break; 1094 } 1095 for (i = 0; i < N(rates); i++) 1096 if (rates[i].m == mask) 1097 return rates[i].r; 1098 return IFM_AUTO; 1099 #undef N 1100 } 1101 1102 int 1103 ieee80211_media2rate(int mword) 1104 { 1105 #define N(a) (sizeof(a) / sizeof(a[0])) 1106 static const int ieeerates[] = { 1107 -1, /* IFM_AUTO */ 1108 0, /* IFM_MANUAL */ 1109 0, /* IFM_NONE */ 1110 2, /* IFM_IEEE80211_FH1 */ 1111 4, /* IFM_IEEE80211_FH2 */ 1112 2, /* IFM_IEEE80211_DS1 */ 1113 4, /* IFM_IEEE80211_DS2 */ 1114 11, /* IFM_IEEE80211_DS5 */ 1115 22, /* IFM_IEEE80211_DS11 */ 1116 44, /* IFM_IEEE80211_DS22 */ 1117 12, /* IFM_IEEE80211_OFDM6 */ 1118 18, /* IFM_IEEE80211_OFDM9 */ 1119 24, /* IFM_IEEE80211_OFDM12 */ 1120 36, /* IFM_IEEE80211_OFDM18 */ 1121 48, /* IFM_IEEE80211_OFDM24 */ 1122 72, /* IFM_IEEE80211_OFDM36 */ 1123 96, /* IFM_IEEE80211_OFDM48 */ 1124 108, /* IFM_IEEE80211_OFDM54 */ 1125 144, /* IFM_IEEE80211_OFDM72 */ 1126 0, /* IFM_IEEE80211_DS354k */ 1127 0, /* IFM_IEEE80211_DS512k */ 1128 6, /* IFM_IEEE80211_OFDM3 */ 1129 9, /* IFM_IEEE80211_OFDM4 */ 1130 54, /* IFM_IEEE80211_OFDM27 */ 1131 }; 1132 return IFM_SUBTYPE(mword) < N(ieeerates) ? 1133 ieeerates[IFM_SUBTYPE(mword)] : 0; 1134 #undef N 1135 } 1136