Merge branch 'master' into net80211-update
[dragonfly.git] / sys / netproto / 802_11 / wlan / ieee80211.c
1 /*-
2  * Copyright (c) 2001 Atsushi Onoe
3  * Copyright (c) 2002-2009 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  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * $FreeBSD: head/sys/net80211/ieee80211.c 202612 2010-01-19 05:00:57Z thompsa $
27  * $DragonFly$
28  */
29
30 /*
31  * IEEE 802.11 generic handler
32  */
33 #include "opt_wlan.h"
34
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/kernel.h>
38
39 #include <sys/socket.h>
40
41 #include <net/if.h>
42 #include <net/if_dl.h>
43 #include <net/if_media.h>
44 #include <net/if_types.h>
45 #include <net/ifq_var.h>
46 #include <net/ethernet.h>
47 #include <net/route.h>
48
49 #include <netproto/802_11/ieee80211_var.h>
50 #include <netproto/802_11/ieee80211_regdomain.h>
51 #ifdef IEEE80211_SUPPORT_SUPERG
52 #include <netproto/802_11/ieee80211_superg.h>
53 #endif
54
55 #include <net/bpf.h>
56
57 const char *ieee80211_phymode_name[IEEE80211_MODE_MAX] = {
58         [IEEE80211_MODE_AUTO]     = "auto",
59         [IEEE80211_MODE_11A]      = "11a",
60         [IEEE80211_MODE_11B]      = "11b",
61         [IEEE80211_MODE_11G]      = "11g",
62         [IEEE80211_MODE_FH]       = "FH",
63         [IEEE80211_MODE_TURBO_A]  = "turboA",
64         [IEEE80211_MODE_TURBO_G]  = "turboG",
65         [IEEE80211_MODE_STURBO_A] = "sturboA",
66         [IEEE80211_MODE_HALF]     = "half",
67         [IEEE80211_MODE_QUARTER]  = "quarter",
68         [IEEE80211_MODE_11NA]     = "11na",
69         [IEEE80211_MODE_11NG]     = "11ng",
70 };
71 /* map ieee80211_opmode to the corresponding capability bit */
72 const int ieee80211_opcap[IEEE80211_OPMODE_MAX] = {
73         [IEEE80211_M_IBSS]      = IEEE80211_C_IBSS,
74         [IEEE80211_M_WDS]       = IEEE80211_C_WDS,
75         [IEEE80211_M_STA]       = IEEE80211_C_STA,
76         [IEEE80211_M_AHDEMO]    = IEEE80211_C_AHDEMO,
77         [IEEE80211_M_HOSTAP]    = IEEE80211_C_HOSTAP,
78         [IEEE80211_M_MONITOR]   = IEEE80211_C_MONITOR,
79 #ifdef IEEE80211_SUPPORT_MESH
80         [IEEE80211_M_MBSS]      = IEEE80211_C_MBSS,
81 #endif
82 };
83
84 static const uint8_t ieee80211broadcastaddr[IEEE80211_ADDR_LEN] =
85         { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
86
87 static  void ieee80211_syncflag_locked(struct ieee80211com *ic, int flag);
88 static  void ieee80211_syncflag_ht_locked(struct ieee80211com *ic, int flag);
89 static  void ieee80211_syncflag_ext_locked(struct ieee80211com *ic, int flag);
90 static  int ieee80211_media_setup(struct ieee80211com *ic,
91                 struct ifmedia *media, int caps, int addsta,
92                 ifm_change_cb_t media_change, ifm_stat_cb_t media_stat);
93 static  void ieee80211com_media_status(struct ifnet *, struct ifmediareq *);
94 static  int ieee80211com_media_change(struct ifnet *);
95 static  int media_status(enum ieee80211_opmode,
96                 const struct ieee80211_channel *);
97
98 MALLOC_DEFINE(M_80211_VAP, "80211vap", "802.11 vap state");
99
100 /*
101  * Default supported rates for 802.11 operation (in IEEE .5Mb units).
102  */
103 #define B(r)    ((r) | IEEE80211_RATE_BASIC)
104 static const struct ieee80211_rateset ieee80211_rateset_11a =
105         { 8, { B(12), 18, B(24), 36, B(48), 72, 96, 108 } };
106 static const struct ieee80211_rateset ieee80211_rateset_half =
107         { 8, { B(6), 9, B(12), 18, B(24), 36, 48, 54 } };
108 static const struct ieee80211_rateset ieee80211_rateset_quarter =
109         { 8, { B(3), 4, B(6), 9, B(12), 18, 24, 27 } };
110 static const struct ieee80211_rateset ieee80211_rateset_11b =
111         { 4, { B(2), B(4), B(11), B(22) } };
112 /* NB: OFDM rates are handled specially based on mode */
113 static const struct ieee80211_rateset ieee80211_rateset_11g =
114         { 12, { B(2), B(4), B(11), B(22), 12, 18, 24, 36, 48, 72, 96, 108 } };
115 #undef B
116
117 /*
118  * Fill in 802.11 available channel set, mark
119  * all available channels as active, and pick
120  * a default channel if not already specified.
121  */
122 static void
123 ieee80211_chan_init(struct ieee80211com *ic)
124 {
125 #define DEFAULTRATES(m, def) do { \
126         if (ic->ic_sup_rates[m].rs_nrates == 0) \
127                 ic->ic_sup_rates[m] = def; \
128 } while (0)
129         struct ieee80211_channel *c;
130         int i;
131
132         KASSERT(0 < ic->ic_nchans && ic->ic_nchans <= IEEE80211_CHAN_MAX,
133                 ("invalid number of channels specified: %u", ic->ic_nchans));
134         memset(ic->ic_chan_avail, 0, sizeof(ic->ic_chan_avail));
135         memset(ic->ic_modecaps, 0, sizeof(ic->ic_modecaps));
136         setbit(ic->ic_modecaps, IEEE80211_MODE_AUTO);
137         for (i = 0; i < ic->ic_nchans; i++) {
138                 c = &ic->ic_channels[i];
139                 KASSERT(c->ic_flags != 0, ("channel with no flags"));
140                 /*
141                  * Help drivers that work only with frequencies by filling
142                  * in IEEE channel #'s if not already calculated.  Note this
143                  * mimics similar work done in ieee80211_setregdomain when
144                  * changing regulatory state.
145                  */
146                 if (c->ic_ieee == 0)
147                         c->ic_ieee = ieee80211_mhz2ieee(c->ic_freq,c->ic_flags);
148                 if (IEEE80211_IS_CHAN_HT40(c) && c->ic_extieee == 0)
149                         c->ic_extieee = ieee80211_mhz2ieee(c->ic_freq +
150                             (IEEE80211_IS_CHAN_HT40U(c) ? 20 : -20),
151                             c->ic_flags);
152                 /* default max tx power to max regulatory */
153                 if (c->ic_maxpower == 0)
154                         c->ic_maxpower = 2*c->ic_maxregpower;
155                 setbit(ic->ic_chan_avail, c->ic_ieee);
156                 /*
157                  * Identify mode capabilities.
158                  */
159                 if (IEEE80211_IS_CHAN_A(c))
160                         setbit(ic->ic_modecaps, IEEE80211_MODE_11A);
161                 if (IEEE80211_IS_CHAN_B(c))
162                         setbit(ic->ic_modecaps, IEEE80211_MODE_11B);
163                 if (IEEE80211_IS_CHAN_ANYG(c))
164                         setbit(ic->ic_modecaps, IEEE80211_MODE_11G);
165                 if (IEEE80211_IS_CHAN_FHSS(c))
166                         setbit(ic->ic_modecaps, IEEE80211_MODE_FH);
167                 if (IEEE80211_IS_CHAN_108A(c))
168                         setbit(ic->ic_modecaps, IEEE80211_MODE_TURBO_A);
169                 if (IEEE80211_IS_CHAN_108G(c))
170                         setbit(ic->ic_modecaps, IEEE80211_MODE_TURBO_G);
171                 if (IEEE80211_IS_CHAN_ST(c))
172                         setbit(ic->ic_modecaps, IEEE80211_MODE_STURBO_A);
173                 if (IEEE80211_IS_CHAN_HALF(c))
174                         setbit(ic->ic_modecaps, IEEE80211_MODE_HALF);
175                 if (IEEE80211_IS_CHAN_QUARTER(c))
176                         setbit(ic->ic_modecaps, IEEE80211_MODE_QUARTER);
177                 if (IEEE80211_IS_CHAN_HTA(c))
178                         setbit(ic->ic_modecaps, IEEE80211_MODE_11NA);
179                 if (IEEE80211_IS_CHAN_HTG(c))
180                         setbit(ic->ic_modecaps, IEEE80211_MODE_11NG);
181         }
182         /* initialize candidate channels to all available */
183         memcpy(ic->ic_chan_active, ic->ic_chan_avail,
184                 sizeof(ic->ic_chan_avail));
185
186         /* sort channel table to allow lookup optimizations */
187         ieee80211_sort_channels(ic->ic_channels, ic->ic_nchans);
188
189         /* invalidate any previous state */
190         ic->ic_bsschan = IEEE80211_CHAN_ANYC;
191         ic->ic_prevchan = NULL;
192         ic->ic_csa_newchan = NULL;
193         /* arbitrarily pick the first channel */
194         ic->ic_curchan = &ic->ic_channels[0];
195         ic->ic_rt = ieee80211_get_ratetable(ic->ic_curchan);
196
197         /* fillin well-known rate sets if driver has not specified */
198         DEFAULTRATES(IEEE80211_MODE_11B,         ieee80211_rateset_11b);
199         DEFAULTRATES(IEEE80211_MODE_11G,         ieee80211_rateset_11g);
200         DEFAULTRATES(IEEE80211_MODE_11A,         ieee80211_rateset_11a);
201         DEFAULTRATES(IEEE80211_MODE_TURBO_A,     ieee80211_rateset_11a);
202         DEFAULTRATES(IEEE80211_MODE_TURBO_G,     ieee80211_rateset_11g);
203         DEFAULTRATES(IEEE80211_MODE_STURBO_A,    ieee80211_rateset_11a);
204         DEFAULTRATES(IEEE80211_MODE_HALF,        ieee80211_rateset_half);
205         DEFAULTRATES(IEEE80211_MODE_QUARTER,     ieee80211_rateset_quarter);
206         DEFAULTRATES(IEEE80211_MODE_11NA,        ieee80211_rateset_11a);
207         DEFAULTRATES(IEEE80211_MODE_11NG,        ieee80211_rateset_11g);
208
209         /*
210          * Set auto mode to reset active channel state and any desired channel.
211          */
212         (void) ieee80211_setmode(ic, IEEE80211_MODE_AUTO);
213 #undef DEFAULTRATES
214 }
215
216 static void
217 null_update_mcast(struct ifnet *ifp)
218 {
219         if_printf(ifp, "need multicast update callback\n");
220 }
221
222 static void
223 null_update_promisc(struct ifnet *ifp)
224 {
225         if_printf(ifp, "need promiscuous mode update callback\n");
226 }
227
228 static int
229 null_transmit(struct ifnet *ifp, struct mbuf *m)
230 {
231         m_freem(m);
232         ifp->if_oerrors++;
233         return EACCES;          /* XXX EIO/EPERM? */
234 }
235
236 static int
237 null_output(struct ifnet *ifp, struct mbuf *m,
238         struct sockaddr *dst, struct rtentry *ro)
239 {
240         if_printf(ifp, "discard raw packet\n");
241         return null_transmit(ifp, m);
242 }
243
244 static void
245 null_input(struct ifnet *ifp, struct mbuf *m)
246 {
247         if_printf(ifp, "if_input should not be called\n");
248         m_freem(m);
249 }
250
251 /*
252  * Attach/setup the common net80211 state.  Called by
253  * the driver on attach to prior to creating any vap's.
254  */
255 void
256 ieee80211_ifattach(struct ieee80211com *ic,
257         const uint8_t macaddr[IEEE80211_ADDR_LEN])
258 {
259         struct ifnet *ifp = ic->ic_ifp;
260         struct sockaddr_dl *sdl;
261         struct ifaddr *ifa;
262
263         KASSERT(ifp->if_type == IFT_IEEE80211, ("if_type %d", ifp->if_type));
264
265         IEEE80211_LOCK_INIT(ic, ifp->if_xname);
266         TAILQ_INIT(&ic->ic_vaps);
267
268         /* Create a taskqueue for all state changes */
269         ic->ic_tq = taskqueue_create("ic_taskq", M_WAITOK | M_ZERO,
270             taskqueue_thread_enqueue, &ic->ic_tq);
271         taskqueue_start_threads(&ic->ic_tq, 1, TDPRI_KERN_DAEMON, -1,
272             "%s taskq", ifp->if_xname);
273         /*
274          * Fill in 802.11 available channel set, mark all
275          * available channels as active, and pick a default
276          * channel if not already specified.
277          */
278         ieee80211_media_init(ic);
279
280         ic->ic_update_mcast = null_update_mcast;
281         ic->ic_update_promisc = null_update_promisc;
282
283         ic->ic_hash_key = karc4random();
284         ic->ic_bintval = IEEE80211_BINTVAL_DEFAULT;
285         ic->ic_lintval = ic->ic_bintval;
286         ic->ic_txpowlimit = IEEE80211_TXPOWER_MAX;
287
288         ieee80211_crypto_attach(ic);
289         ieee80211_node_attach(ic);
290         ieee80211_power_attach(ic);
291         ieee80211_proto_attach(ic);
292 #ifdef IEEE80211_SUPPORT_SUPERG
293         ieee80211_superg_attach(ic);
294 #endif
295         ieee80211_ht_attach(ic);
296         ieee80211_scan_attach(ic);
297         ieee80211_regdomain_attach(ic);
298         ieee80211_dfs_attach(ic);
299
300         ieee80211_sysctl_attach(ic);
301
302         ifp->if_addrlen = IEEE80211_ADDR_LEN;
303         ifp->if_hdrlen = 0;
304         if_attach(ifp, NULL);
305         ifp->if_mtu = IEEE80211_MTU_MAX;
306         ifp->if_broadcastaddr = ieee80211broadcastaddr;
307         ifp->if_output = null_output;
308         ifp->if_input = null_input;     /* just in case */
309         ifp->if_resolvemulti = NULL;    /* NB: callers check */
310
311         ifa = ifaddr_byindex(ifp->if_index);
312         KASSERT(ifa != NULL, ("%s: no lladdr!\n", __func__));
313         sdl = (struct sockaddr_dl *)ifa->ifa_addr;
314         sdl->sdl_type = IFT_ETHER;              /* XXX IFT_IEEE80211? */
315         sdl->sdl_alen = IEEE80211_ADDR_LEN;
316         IEEE80211_ADDR_COPY(LLADDR(sdl), macaddr);
317 //      IFAFREE(ifa);
318 }
319
320 /*
321  * Detach net80211 state on device detach.  Tear down
322  * all vap's and reclaim all common state prior to the
323  * device state going away.  Note we may call back into
324  * driver; it must be prepared for this.
325  */
326 void
327 ieee80211_ifdetach(struct ieee80211com *ic)
328 {
329         struct ifnet *ifp = ic->ic_ifp;
330         struct ieee80211vap *vap;
331
332         if_detach(ifp);
333
334         while ((vap = TAILQ_FIRST(&ic->ic_vaps)) != NULL)
335                 ieee80211_vap_destroy(vap);
336         ieee80211_waitfor_parent(ic);
337
338         ieee80211_sysctl_detach(ic);
339         ieee80211_dfs_detach(ic);
340         ieee80211_regdomain_detach(ic);
341         ieee80211_scan_detach(ic);
342 #ifdef IEEE80211_SUPPORT_SUPERG
343         ieee80211_superg_detach(ic);
344 #endif
345         ieee80211_ht_detach(ic);
346         /* NB: must be called before ieee80211_node_detach */
347         ieee80211_proto_detach(ic);
348         ieee80211_crypto_detach(ic);
349         ieee80211_power_detach(ic);
350         ieee80211_node_detach(ic);
351
352         ifmedia_removeall(&ic->ic_media);
353         taskqueue_free(ic->ic_tq);
354         IEEE80211_LOCK_DESTROY(ic);
355 }
356
357 /*
358  * Default reset method for use with the ioctl support.  This
359  * method is invoked after any state change in the 802.11
360  * layer that should be propagated to the hardware but not
361  * require re-initialization of the 802.11 state machine (e.g
362  * rescanning for an ap).  We always return ENETRESET which
363  * should cause the driver to re-initialize the device. Drivers
364  * can override this method to implement more optimized support.
365  */
366 static int
367 default_reset(struct ieee80211vap *vap, u_long cmd)
368 {
369         return ENETRESET;
370 }
371
372 /*
373  * Prepare a vap for use.  Drivers use this call to
374  * setup net80211 state in new vap's prior attaching
375  * them with ieee80211_vap_attach (below).
376  */
377 int
378 ieee80211_vap_setup(struct ieee80211com *ic, struct ieee80211vap *vap,
379         const char name[IFNAMSIZ], int unit, int opmode, int flags,
380         const uint8_t bssid[IEEE80211_ADDR_LEN],
381         const uint8_t macaddr[IEEE80211_ADDR_LEN])
382 {
383         struct ifnet *ifp;
384
385         ifp = if_alloc(IFT_IEEE80211);
386         if (ifp == NULL) {
387                 if_printf(ic->ic_ifp, "%s: unable to allocate ifnet\n",
388                     __func__);
389                 return ENOMEM;
390         }
391         if_initname(ifp, name, unit);
392         ifp->if_softc = vap;                    /* back pointer */
393         ifp->if_flags = IFF_SIMPLEX | IFF_BROADCAST | IFF_MULTICAST;
394         ifp->if_start = ieee80211_start;
395         ifp->if_ioctl = ieee80211_ioctl;
396         ifp->if_init = ieee80211_init;
397         /* NB: input+output filled in by ether_ifattach */
398         ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
399         ifq_set_ready(&ifp->if_snd);
400
401         vap->iv_ifp = ifp;
402         vap->iv_ic = ic;
403         vap->iv_flags = ic->ic_flags;           /* propagate common flags */
404         vap->iv_flags_ext = ic->ic_flags_ext;
405         vap->iv_flags_ven = ic->ic_flags_ven;
406         vap->iv_caps = ic->ic_caps &~ IEEE80211_C_OPMODE;
407         vap->iv_htcaps = ic->ic_htcaps;
408         vap->iv_opmode = opmode;
409         vap->iv_caps |= ieee80211_opcap[opmode];
410         switch (opmode) {
411         case IEEE80211_M_WDS:
412                 /*
413                  * WDS links must specify the bssid of the far end.
414                  * For legacy operation this is a static relationship.
415                  * For non-legacy operation the station must associate
416                  * and be authorized to pass traffic.  Plumbing the
417                  * vap to the proper node happens when the vap
418                  * transitions to RUN state.
419                  */
420                 IEEE80211_ADDR_COPY(vap->iv_des_bssid, bssid);
421                 vap->iv_flags |= IEEE80211_F_DESBSSID;
422                 if (flags & IEEE80211_CLONE_WDSLEGACY)
423                         vap->iv_flags_ext |= IEEE80211_FEXT_WDSLEGACY;
424                 break;
425 #ifdef IEEE80211_SUPPORT_TDMA
426         case IEEE80211_M_AHDEMO:
427                 if (flags & IEEE80211_CLONE_TDMA) {
428                         /* NB: checked before clone operation allowed */
429                         KASSERT(ic->ic_caps & IEEE80211_C_TDMA,
430                             ("not TDMA capable, ic_caps 0x%x", ic->ic_caps));
431                         /*
432                          * Propagate TDMA capability to mark vap; this
433                          * cannot be removed and is used to distinguish
434                          * regular ahdemo operation from ahdemo+tdma.
435                          */
436                         vap->iv_caps |= IEEE80211_C_TDMA;
437                 }
438                 break;
439 #endif
440         }
441         /* auto-enable s/w beacon miss support */
442         if (flags & IEEE80211_CLONE_NOBEACONS)
443                 vap->iv_flags_ext |= IEEE80211_FEXT_SWBMISS;
444         /* auto-generated or user supplied MAC address */
445         if (flags & (IEEE80211_CLONE_BSSID|IEEE80211_CLONE_MACADDR))
446                 vap->iv_flags_ext |= IEEE80211_FEXT_UNIQMAC;
447         /*
448          * Enable various functionality by default if we're
449          * capable; the driver can override us if it knows better.
450          */
451         if (vap->iv_caps & IEEE80211_C_WME)
452                 vap->iv_flags |= IEEE80211_F_WME;
453         if (vap->iv_caps & IEEE80211_C_BURST)
454                 vap->iv_flags |= IEEE80211_F_BURST;
455         /* NB: bg scanning only makes sense for station mode right now */
456         if (vap->iv_opmode == IEEE80211_M_STA &&
457             (vap->iv_caps & IEEE80211_C_BGSCAN))
458                 vap->iv_flags |= IEEE80211_F_BGSCAN;
459         vap->iv_flags |= IEEE80211_F_DOTH;      /* XXX no cap, just ena */
460         /* NB: DFS support only makes sense for ap mode right now */
461         if (vap->iv_opmode == IEEE80211_M_HOSTAP &&
462             (vap->iv_caps & IEEE80211_C_DFS))
463                 vap->iv_flags_ext |= IEEE80211_FEXT_DFS;
464
465         vap->iv_des_chan = IEEE80211_CHAN_ANYC;         /* any channel is ok */
466         vap->iv_bmissthreshold = IEEE80211_HWBMISS_DEFAULT;
467         vap->iv_dtim_period = IEEE80211_DTIM_DEFAULT;
468         /*
469          * Install a default reset method for the ioctl support;
470          * the driver can override this.
471          */
472         vap->iv_reset = default_reset;
473
474         IEEE80211_ADDR_COPY(vap->iv_myaddr, macaddr);
475
476         ieee80211_sysctl_vattach(vap);
477         ieee80211_crypto_vattach(vap);
478         ieee80211_node_vattach(vap);
479         ieee80211_power_vattach(vap);
480         ieee80211_proto_vattach(vap);
481 #ifdef IEEE80211_SUPPORT_SUPERG
482         ieee80211_superg_vattach(vap);
483 #endif
484         ieee80211_ht_vattach(vap);
485         ieee80211_scan_vattach(vap);
486         ieee80211_regdomain_vattach(vap);
487         ieee80211_radiotap_vattach(vap);
488
489         return 0;
490 }
491
492 /*
493  * Activate a vap.  State should have been prepared with a
494  * call to ieee80211_vap_setup and by the driver.  On return
495  * from this call the vap is ready for use.
496  */
497 int
498 ieee80211_vap_attach(struct ieee80211vap *vap,
499         ifm_change_cb_t media_change, ifm_stat_cb_t media_stat)
500 {
501         struct ifnet *ifp = vap->iv_ifp;
502         struct ieee80211com *ic = vap->iv_ic;
503         struct ifmediareq imr;
504         int maxrate;
505
506         IEEE80211_DPRINTF(vap, IEEE80211_MSG_STATE,
507             "%s: %s parent %s flags 0x%x flags_ext 0x%x\n",
508             __func__, ieee80211_opmode_name[vap->iv_opmode],
509             ic->ic_ifp->if_xname, vap->iv_flags, vap->iv_flags_ext);
510
511         /*
512          * Do late attach work that cannot happen until after
513          * the driver has had a chance to override defaults.
514          */
515         ieee80211_node_latevattach(vap);
516         ieee80211_power_latevattach(vap);
517
518         maxrate = ieee80211_media_setup(ic, &vap->iv_media, vap->iv_caps,
519             vap->iv_opmode == IEEE80211_M_STA, media_change, media_stat);
520         ieee80211_media_status(ifp, &imr);
521         /* NB: strip explicit mode; we're actually in autoselect */
522         ifmedia_set(&vap->iv_media,
523             imr.ifm_active &~ (IFM_MMASK | IFM_IEEE80211_TURBO));
524         if (maxrate)
525                 ifp->if_baudrate = IF_Mbps(maxrate);
526
527         ether_ifattach(ifp, vap->iv_myaddr, NULL);
528         if (vap->iv_opmode == IEEE80211_M_MONITOR) {
529                 /* NB: disallow transmit */
530 #ifdef __FreeBSD__
531                 ifp->if_transmit = null_transmit;
532 #endif
533                 ifp->if_output = null_output;
534         } else {
535                 /* hook output method setup by ether_ifattach */
536                 vap->iv_output = ifp->if_output;
537                 ifp->if_output = ieee80211_output;
538         }
539         /* NB: if_mtu set by ether_ifattach to ETHERMTU */
540
541         IEEE80211_LOCK(ic);
542         TAILQ_INSERT_TAIL(&ic->ic_vaps, vap, iv_next);
543         ieee80211_syncflag_locked(ic, IEEE80211_F_WME);
544 #ifdef IEEE80211_SUPPORT_SUPERG
545         ieee80211_syncflag_locked(ic, IEEE80211_F_TURBOP);
546 #endif
547         ieee80211_syncflag_locked(ic, IEEE80211_F_PCF);
548         ieee80211_syncflag_locked(ic, IEEE80211_F_BURST);
549         ieee80211_syncflag_ht_locked(ic, IEEE80211_FHT_HT);
550         ieee80211_syncflag_ht_locked(ic, IEEE80211_FHT_USEHT40);
551         ieee80211_syncifflag_locked(ic, IFF_PROMISC);
552         ieee80211_syncifflag_locked(ic, IFF_ALLMULTI);
553         IEEE80211_UNLOCK(ic);
554
555         return 1;
556 }
557
558 /* 
559  * Tear down vap state and reclaim the ifnet.
560  * The driver is assumed to have prepared for
561  * this; e.g. by turning off interrupts for the
562  * underlying device.
563  */
564 void
565 ieee80211_vap_detach(struct ieee80211vap *vap)
566 {
567         struct ieee80211com *ic = vap->iv_ic;
568         struct ifnet *ifp = vap->iv_ifp;
569
570         IEEE80211_DPRINTF(vap, IEEE80211_MSG_STATE, "%s: %s parent %s\n",
571             __func__, ieee80211_opmode_name[vap->iv_opmode],
572             ic->ic_ifp->if_xname);
573
574         /* NB: bpfdetach is called by ether_ifdetach and claims all taps */
575         ether_ifdetach(ifp);
576
577         ieee80211_stop(vap);
578
579         /*
580          * Flush any deferred vap tasks.
581          */
582         ieee80211_draintask(ic, &vap->iv_nstate_task);
583         ieee80211_draintask(ic, &vap->iv_swbmiss_task);
584
585 #ifdef __FreeBSD__
586         /* XXX band-aid until ifnet handles this for us */
587         taskqueue_drain(taskqueue_swi, &ifp->if_linktask);
588 #endif
589
590         IEEE80211_LOCK(ic);
591         KASSERT(vap->iv_state == IEEE80211_S_INIT , ("vap still running"));
592         TAILQ_REMOVE(&ic->ic_vaps, vap, iv_next);
593         ieee80211_syncflag_locked(ic, IEEE80211_F_WME);
594 #ifdef IEEE80211_SUPPORT_SUPERG
595         ieee80211_syncflag_locked(ic, IEEE80211_F_TURBOP);
596 #endif
597         ieee80211_syncflag_locked(ic, IEEE80211_F_PCF);
598         ieee80211_syncflag_locked(ic, IEEE80211_F_BURST);
599         ieee80211_syncflag_ht_locked(ic, IEEE80211_FHT_HT);
600         ieee80211_syncflag_ht_locked(ic, IEEE80211_FHT_USEHT40);
601         /* NB: this handles the bpfdetach done below */
602         ieee80211_syncflag_ext_locked(ic, IEEE80211_FEXT_BPF);
603         ieee80211_syncifflag_locked(ic, IFF_PROMISC);
604         ieee80211_syncifflag_locked(ic, IFF_ALLMULTI);
605         IEEE80211_UNLOCK(ic);
606
607         ifmedia_removeall(&vap->iv_media);
608
609         ieee80211_radiotap_vdetach(vap);
610         ieee80211_regdomain_vdetach(vap);
611         ieee80211_scan_vdetach(vap);
612 #ifdef IEEE80211_SUPPORT_SUPERG
613         ieee80211_superg_vdetach(vap);
614 #endif
615         ieee80211_ht_vdetach(vap);
616         /* NB: must be before ieee80211_node_vdetach */
617         ieee80211_proto_vdetach(vap);
618         ieee80211_crypto_vdetach(vap);
619         ieee80211_power_vdetach(vap);
620         ieee80211_node_vdetach(vap);
621         ieee80211_sysctl_vdetach(vap);
622
623         if_free(ifp);
624 }
625
626 /*
627  * Synchronize flag bit state in the parent ifnet structure
628  * according to the state of all vap ifnet's.  This is used,
629  * for example, to handle IFF_PROMISC and IFF_ALLMULTI.
630  */
631 void
632 ieee80211_syncifflag_locked(struct ieee80211com *ic, int flag)
633 {
634         struct ifnet *ifp = ic->ic_ifp;
635         struct ieee80211vap *vap;
636         int bit, oflags;
637
638         IEEE80211_LOCK_ASSERT(ic);
639
640         bit = 0;
641         TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
642                 if (vap->iv_ifp->if_flags & flag) {
643                         /*
644                          * XXX the bridge sets PROMISC but we don't want to
645                          * enable it on the device, discard here so all the
646                          * drivers don't need to special-case it
647                          */
648                         if (flag == IFF_PROMISC &&
649                             !(vap->iv_opmode == IEEE80211_M_MONITOR ||
650                               (vap->iv_opmode == IEEE80211_M_AHDEMO &&
651                                (vap->iv_caps & IEEE80211_C_TDMA) == 0)))
652                                 continue;
653                         bit = 1;
654                         break;
655                 }
656         oflags = ifp->if_flags;
657         if (bit)
658                 ifp->if_flags |= flag;
659         else
660                 ifp->if_flags &= ~flag;
661         if ((ifp->if_flags ^ oflags) & flag) {
662                 /* XXX should we return 1/0 and let caller do this? */
663                 if (ifp->if_flags & IFF_RUNNING) {
664                         if (flag == IFF_PROMISC)
665                                 ieee80211_runtask(ic, &ic->ic_promisc_task);
666                         else if (flag == IFF_ALLMULTI)
667                                 ieee80211_runtask(ic, &ic->ic_mcast_task);
668                 }
669         }
670 }
671
672 /*
673  * Synchronize flag bit state in the com structure
674  * according to the state of all vap's.  This is used,
675  * for example, to handle state changes via ioctls.
676  */
677 static void
678 ieee80211_syncflag_locked(struct ieee80211com *ic, int flag)
679 {
680         struct ieee80211vap *vap;
681         int bit;
682
683         IEEE80211_LOCK_ASSERT(ic);
684
685         bit = 0;
686         TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
687                 if (vap->iv_flags & flag) {
688                         bit = 1;
689                         break;
690                 }
691         if (bit)
692                 ic->ic_flags |= flag;
693         else
694                 ic->ic_flags &= ~flag;
695 }
696
697 void
698 ieee80211_syncflag(struct ieee80211vap *vap, int flag)
699 {
700         struct ieee80211com *ic = vap->iv_ic;
701
702         IEEE80211_LOCK(ic);
703         if (flag < 0) {
704                 flag = -flag;
705                 vap->iv_flags &= ~flag;
706         } else
707                 vap->iv_flags |= flag;
708         ieee80211_syncflag_locked(ic, flag);
709         IEEE80211_UNLOCK(ic);
710 }
711
712 /*
713  * Synchronize flags_ht bit state in the com structure
714  * according to the state of all vap's.  This is used,
715  * for example, to handle state changes via ioctls.
716  */
717 static void
718 ieee80211_syncflag_ht_locked(struct ieee80211com *ic, int flag)
719 {
720         struct ieee80211vap *vap;
721         int bit;
722
723         IEEE80211_LOCK_ASSERT(ic);
724
725         bit = 0;
726         TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
727                 if (vap->iv_flags_ht & flag) {
728                         bit = 1;
729                         break;
730                 }
731         if (bit)
732                 ic->ic_flags_ht |= flag;
733         else
734                 ic->ic_flags_ht &= ~flag;
735 }
736
737 void
738 ieee80211_syncflag_ht(struct ieee80211vap *vap, int flag)
739 {
740         struct ieee80211com *ic = vap->iv_ic;
741
742         IEEE80211_LOCK(ic);
743         if (flag < 0) {
744                 flag = -flag;
745                 vap->iv_flags_ht &= ~flag;
746         } else
747                 vap->iv_flags_ht |= flag;
748         ieee80211_syncflag_ht_locked(ic, flag);
749         IEEE80211_UNLOCK(ic);
750 }
751
752 /*
753  * Synchronize flags_ext bit state in the com structure
754  * according to the state of all vap's.  This is used,
755  * for example, to handle state changes via ioctls.
756  */
757 static void
758 ieee80211_syncflag_ext_locked(struct ieee80211com *ic, int flag)
759 {
760         struct ieee80211vap *vap;
761         int bit;
762
763         IEEE80211_LOCK_ASSERT(ic);
764
765         bit = 0;
766         TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
767                 if (vap->iv_flags_ext & flag) {
768                         bit = 1;
769                         break;
770                 }
771         if (bit)
772                 ic->ic_flags_ext |= flag;
773         else
774                 ic->ic_flags_ext &= ~flag;
775 }
776
777 void
778 ieee80211_syncflag_ext(struct ieee80211vap *vap, int flag)
779 {
780         struct ieee80211com *ic = vap->iv_ic;
781
782         IEEE80211_LOCK(ic);
783         if (flag < 0) {
784                 flag = -flag;
785                 vap->iv_flags_ext &= ~flag;
786         } else
787                 vap->iv_flags_ext |= flag;
788         ieee80211_syncflag_ext_locked(ic, flag);
789         IEEE80211_UNLOCK(ic);
790 }
791
792 static __inline int
793 mapgsm(u_int freq, u_int flags)
794 {
795         freq *= 10;
796         if (flags & IEEE80211_CHAN_QUARTER)
797                 freq += 5;
798         else if (flags & IEEE80211_CHAN_HALF)
799                 freq += 10;
800         else
801                 freq += 20;
802         /* NB: there is no 907/20 wide but leave room */
803         return (freq - 906*10) / 5;
804 }
805
806 static __inline int
807 mappsb(u_int freq, u_int flags)
808 {
809         return 37 + ((freq * 10) + ((freq % 5) == 2 ? 5 : 0) - 49400) / 5;
810 }
811
812 /*
813  * Convert MHz frequency to IEEE channel number.
814  */
815 int
816 ieee80211_mhz2ieee(u_int freq, u_int flags)
817 {
818 #define IS_FREQ_IN_PSB(_freq) ((_freq) > 4940 && (_freq) < 4990)
819         if (flags & IEEE80211_CHAN_GSM)
820                 return mapgsm(freq, flags);
821         if (flags & IEEE80211_CHAN_2GHZ) {      /* 2GHz band */
822                 if (freq == 2484)
823                         return 14;
824                 if (freq < 2484)
825                         return ((int) freq - 2407) / 5;
826                 else
827                         return 15 + ((freq - 2512) / 20);
828         } else if (flags & IEEE80211_CHAN_5GHZ) {       /* 5Ghz band */
829                 if (freq <= 5000) {
830                         /* XXX check regdomain? */
831                         if (IS_FREQ_IN_PSB(freq))
832                                 return mappsb(freq, flags);
833                         return (freq - 4000) / 5;
834                 } else
835                         return (freq - 5000) / 5;
836         } else {                                /* either, guess */
837                 if (freq == 2484)
838                         return 14;
839                 if (freq < 2484) {
840                         if (907 <= freq && freq <= 922)
841                                 return mapgsm(freq, flags);
842                         return ((int) freq - 2407) / 5;
843                 }
844                 if (freq < 5000) {
845                         if (IS_FREQ_IN_PSB(freq))
846                                 return mappsb(freq, flags);
847                         else if (freq > 4900)
848                                 return (freq - 4000) / 5;
849                         else
850                                 return 15 + ((freq - 2512) / 20);
851                 }
852                 return (freq - 5000) / 5;
853         }
854 #undef IS_FREQ_IN_PSB
855 }
856
857 /*
858  * Convert channel to IEEE channel number.
859  */
860 int
861 ieee80211_chan2ieee(struct ieee80211com *ic, const struct ieee80211_channel *c)
862 {
863         if (c == NULL) {
864                 if_printf(ic->ic_ifp, "invalid channel (NULL)\n");
865                 return 0;               /* XXX */
866         }
867         return (c == IEEE80211_CHAN_ANYC ?  IEEE80211_CHAN_ANY : c->ic_ieee);
868 }
869
870 /*
871  * Convert IEEE channel number to MHz frequency.
872  */
873 u_int
874 ieee80211_ieee2mhz(u_int chan, u_int flags)
875 {
876         if (flags & IEEE80211_CHAN_GSM)
877                 return 907 + 5 * (chan / 10);
878         if (flags & IEEE80211_CHAN_2GHZ) {      /* 2GHz band */
879                 if (chan == 14)
880                         return 2484;
881                 if (chan < 14)
882                         return 2407 + chan*5;
883                 else
884                         return 2512 + ((chan-15)*20);
885         } else if (flags & IEEE80211_CHAN_5GHZ) {/* 5Ghz band */
886                 if (flags & (IEEE80211_CHAN_HALF|IEEE80211_CHAN_QUARTER)) {
887                         chan -= 37;
888                         return 4940 + chan*5 + (chan % 5 ? 2 : 0);
889                 }
890                 return 5000 + (chan*5);
891         } else {                                /* either, guess */
892                 /* XXX can't distinguish PSB+GSM channels */
893                 if (chan == 14)
894                         return 2484;
895                 if (chan < 14)                  /* 0-13 */
896                         return 2407 + chan*5;
897                 if (chan < 27)                  /* 15-26 */
898                         return 2512 + ((chan-15)*20);
899                 return 5000 + (chan*5);
900         }
901 }
902
903 /*
904  * Locate a channel given a frequency+flags.  We cache
905  * the previous lookup to optimize switching between two
906  * channels--as happens with dynamic turbo.
907  */
908 struct ieee80211_channel *
909 ieee80211_find_channel(struct ieee80211com *ic, int freq, int flags)
910 {
911         struct ieee80211_channel *c;
912         int i;
913
914         flags &= IEEE80211_CHAN_ALLTURBO;
915         c = ic->ic_prevchan;
916         if (c != NULL && c->ic_freq == freq &&
917             (c->ic_flags & IEEE80211_CHAN_ALLTURBO) == flags)
918                 return c;
919         /* brute force search */
920         for (i = 0; i < ic->ic_nchans; i++) {
921                 c = &ic->ic_channels[i];
922                 if (c->ic_freq == freq &&
923                     (c->ic_flags & IEEE80211_CHAN_ALLTURBO) == flags)
924                         return c;
925         }
926         return NULL;
927 }
928
929 /*
930  * Locate a channel given a channel number+flags.  We cache
931  * the previous lookup to optimize switching between two
932  * channels--as happens with dynamic turbo.
933  */
934 struct ieee80211_channel *
935 ieee80211_find_channel_byieee(struct ieee80211com *ic, int ieee, int flags)
936 {
937         struct ieee80211_channel *c;
938         int i;
939
940         flags &= IEEE80211_CHAN_ALLTURBO;
941         c = ic->ic_prevchan;
942         if (c != NULL && c->ic_ieee == ieee &&
943             (c->ic_flags & IEEE80211_CHAN_ALLTURBO) == flags)
944                 return c;
945         /* brute force search */
946         for (i = 0; i < ic->ic_nchans; i++) {
947                 c = &ic->ic_channels[i];
948                 if (c->ic_ieee == ieee &&
949                     (c->ic_flags & IEEE80211_CHAN_ALLTURBO) == flags)
950                         return c;
951         }
952         return NULL;
953 }
954
955 static void
956 addmedia(struct ifmedia *media, int caps, int addsta, int mode, int mword)
957 {
958 #define ADD(_ic, _s, _o) \
959         ifmedia_add(media, \
960                 IFM_MAKEWORD(IFM_IEEE80211, (_s), (_o), 0), 0, NULL)
961         static const u_int mopts[IEEE80211_MODE_MAX] = { 
962             [IEEE80211_MODE_AUTO]       = IFM_AUTO,
963             [IEEE80211_MODE_11A]        = IFM_IEEE80211_11A,
964             [IEEE80211_MODE_11B]        = IFM_IEEE80211_11B,
965             [IEEE80211_MODE_11G]        = IFM_IEEE80211_11G,
966             [IEEE80211_MODE_FH]         = IFM_IEEE80211_FH,
967             [IEEE80211_MODE_TURBO_A]    = IFM_IEEE80211_11A|IFM_IEEE80211_TURBO,
968             [IEEE80211_MODE_TURBO_G]    = IFM_IEEE80211_11G|IFM_IEEE80211_TURBO,
969             [IEEE80211_MODE_STURBO_A]   = IFM_IEEE80211_11A|IFM_IEEE80211_TURBO,
970             [IEEE80211_MODE_HALF]       = IFM_IEEE80211_11A,    /* XXX */
971             [IEEE80211_MODE_QUARTER]    = IFM_IEEE80211_11A,    /* XXX */
972             [IEEE80211_MODE_11NA]       = IFM_IEEE80211_11NA,
973             [IEEE80211_MODE_11NG]       = IFM_IEEE80211_11NG,
974         };
975         u_int mopt;
976
977         mopt = mopts[mode];
978         if (addsta)
979                 ADD(ic, mword, mopt);   /* STA mode has no cap */
980         if (caps & IEEE80211_C_IBSS)
981                 ADD(media, mword, mopt | IFM_IEEE80211_ADHOC);
982         if (caps & IEEE80211_C_HOSTAP)
983                 ADD(media, mword, mopt | IFM_IEEE80211_HOSTAP);
984         if (caps & IEEE80211_C_AHDEMO)
985                 ADD(media, mword, mopt | IFM_IEEE80211_ADHOC | IFM_FLAG0);
986         if (caps & IEEE80211_C_MONITOR)
987                 ADD(media, mword, mopt | IFM_IEEE80211_MONITOR);
988         if (caps & IEEE80211_C_WDS)
989                 ADD(media, mword, mopt | IFM_IEEE80211_WDS);
990         if (caps & IEEE80211_C_MBSS)
991                 ADD(media, mword, mopt | IFM_IEEE80211_MBSS);
992 #undef ADD
993 }
994
995 /*
996  * Setup the media data structures according to the channel and
997  * rate tables.
998  */
999 static int
1000 ieee80211_media_setup(struct ieee80211com *ic,
1001         struct ifmedia *media, int caps, int addsta,
1002         ifm_change_cb_t media_change, ifm_stat_cb_t media_stat)
1003 {
1004         int i, j, mode, rate, maxrate, mword, r;
1005         const struct ieee80211_rateset *rs;
1006         struct ieee80211_rateset allrates;
1007
1008         /*
1009          * Fill in media characteristics.
1010          */
1011         ifmedia_init(media, 0, media_change, media_stat);
1012         maxrate = 0;
1013         /*
1014          * Add media for legacy operating modes.
1015          */
1016         memset(&allrates, 0, sizeof(allrates));
1017         for (mode = IEEE80211_MODE_AUTO; mode < IEEE80211_MODE_11NA; mode++) {
1018                 if (isclr(ic->ic_modecaps, mode))
1019                         continue;
1020                 addmedia(media, caps, addsta, mode, IFM_AUTO);
1021                 if (mode == IEEE80211_MODE_AUTO)
1022                         continue;
1023                 rs = &ic->ic_sup_rates[mode];
1024                 for (i = 0; i < rs->rs_nrates; i++) {
1025                         rate = rs->rs_rates[i];
1026                         mword = ieee80211_rate2media(ic, rate, mode);
1027                         if (mword == 0)
1028                                 continue;
1029                         addmedia(media, caps, addsta, mode, mword);
1030                         /*
1031                          * Add legacy rate to the collection of all rates.
1032                          */
1033                         r = rate & IEEE80211_RATE_VAL;
1034                         for (j = 0; j < allrates.rs_nrates; j++)
1035                                 if (allrates.rs_rates[j] == r)
1036                                         break;
1037                         if (j == allrates.rs_nrates) {
1038                                 /* unique, add to the set */
1039                                 allrates.rs_rates[j] = r;
1040                                 allrates.rs_nrates++;
1041                         }
1042                         rate = (rate & IEEE80211_RATE_VAL) / 2;
1043                         if (rate > maxrate)
1044                                 maxrate = rate;
1045                 }
1046         }
1047         for (i = 0; i < allrates.rs_nrates; i++) {
1048                 mword = ieee80211_rate2media(ic, allrates.rs_rates[i],
1049                                 IEEE80211_MODE_AUTO);
1050                 if (mword == 0)
1051                         continue;
1052                 /* NB: remove media options from mword */
1053                 addmedia(media, caps, addsta,
1054                     IEEE80211_MODE_AUTO, IFM_SUBTYPE(mword));
1055         }
1056         /*
1057          * Add HT/11n media.  Note that we do not have enough
1058          * bits in the media subtype to express the MCS so we
1059          * use a "placeholder" media subtype and any fixed MCS
1060          * must be specified with a different mechanism.
1061          */
1062         for (; mode <= IEEE80211_MODE_11NG; mode++) {
1063                 if (isclr(ic->ic_modecaps, mode))
1064                         continue;
1065                 addmedia(media, caps, addsta, mode, IFM_AUTO);
1066                 addmedia(media, caps, addsta, mode, IFM_IEEE80211_MCS);
1067         }
1068         if (isset(ic->ic_modecaps, IEEE80211_MODE_11NA) ||
1069             isset(ic->ic_modecaps, IEEE80211_MODE_11NG)) {
1070                 addmedia(media, caps, addsta,
1071                     IEEE80211_MODE_AUTO, IFM_IEEE80211_MCS);
1072                 /* XXX could walk htrates */
1073                 /* XXX known array size */
1074                 if (ieee80211_htrates[15].ht40_rate_400ns > maxrate)
1075                         maxrate = ieee80211_htrates[15].ht40_rate_400ns;
1076         }
1077         return maxrate;
1078 }
1079
1080 void
1081 ieee80211_media_init(struct ieee80211com *ic)
1082 {
1083         struct ifnet *ifp = ic->ic_ifp;
1084         int maxrate;
1085
1086         /* NB: this works because the structure is initialized to zero */
1087         if (!LIST_EMPTY(&ic->ic_media.ifm_list)) {
1088                 /*
1089                  * We are re-initializing the channel list; clear
1090                  * the existing media state as the media routines
1091                  * don't suppress duplicates.
1092                  */
1093                 ifmedia_removeall(&ic->ic_media);
1094         }
1095         ieee80211_chan_init(ic);
1096
1097         /*
1098          * Recalculate media settings in case new channel list changes
1099          * the set of available modes.
1100          */
1101         maxrate = ieee80211_media_setup(ic, &ic->ic_media, ic->ic_caps, 1,
1102                 ieee80211com_media_change, ieee80211com_media_status);
1103         /* NB: strip explicit mode; we're actually in autoselect */
1104         ifmedia_set(&ic->ic_media,
1105             media_status(ic->ic_opmode, ic->ic_curchan) &~
1106                 (IFM_MMASK | IFM_IEEE80211_TURBO));
1107         if (maxrate)
1108                 ifp->if_baudrate = IF_Mbps(maxrate);
1109
1110         /* XXX need to propagate new media settings to vap's */
1111 }
1112
1113 /* XXX inline or eliminate? */
1114 const struct ieee80211_rateset *
1115 ieee80211_get_suprates(struct ieee80211com *ic, const struct ieee80211_channel *c)
1116 {
1117         /* XXX does this work for 11ng basic rates? */
1118         return &ic->ic_sup_rates[ieee80211_chan2mode(c)];
1119 }
1120
1121 void
1122 ieee80211_announce(struct ieee80211com *ic)
1123 {
1124         struct ifnet *ifp = ic->ic_ifp;
1125         int i, mode, rate, mword;
1126         const struct ieee80211_rateset *rs;
1127
1128         /* NB: skip AUTO since it has no rates */
1129         for (mode = IEEE80211_MODE_AUTO+1; mode < IEEE80211_MODE_11NA; mode++) {
1130                 if (isclr(ic->ic_modecaps, mode))
1131                         continue;
1132                 if_printf(ifp, "%s rates: ", ieee80211_phymode_name[mode]);
1133                 rs = &ic->ic_sup_rates[mode];
1134                 for (i = 0; i < rs->rs_nrates; i++) {
1135                         mword = ieee80211_rate2media(ic, rs->rs_rates[i], mode);
1136                         if (mword == 0)
1137                                 continue;
1138                         rate = ieee80211_media2rate(mword);
1139                         kprintf("%s%d%sMbps", (i != 0 ? " " : ""),
1140                             rate / 2, ((rate & 0x1) != 0 ? ".5" : ""));
1141                 }
1142                 kprintf("\n");
1143         }
1144         ieee80211_ht_announce(ic);
1145 }
1146
1147 void
1148 ieee80211_announce_channels(struct ieee80211com *ic)
1149 {
1150         const struct ieee80211_channel *c;
1151         char type;
1152         int i, cw;
1153
1154         kprintf("Chan  Freq  CW  RegPwr  MinPwr  MaxPwr\n");
1155         for (i = 0; i < ic->ic_nchans; i++) {
1156                 c = &ic->ic_channels[i];
1157                 if (IEEE80211_IS_CHAN_ST(c))
1158                         type = 'S';
1159                 else if (IEEE80211_IS_CHAN_108A(c))
1160                         type = 'T';
1161                 else if (IEEE80211_IS_CHAN_108G(c))
1162                         type = 'G';
1163                 else if (IEEE80211_IS_CHAN_HT(c))
1164                         type = 'n';
1165                 else if (IEEE80211_IS_CHAN_A(c))
1166                         type = 'a';
1167                 else if (IEEE80211_IS_CHAN_ANYG(c))
1168                         type = 'g';
1169                 else if (IEEE80211_IS_CHAN_B(c))
1170                         type = 'b';
1171                 else
1172                         type = 'f';
1173                 if (IEEE80211_IS_CHAN_HT40(c) || IEEE80211_IS_CHAN_TURBO(c))
1174                         cw = 40;
1175                 else if (IEEE80211_IS_CHAN_HALF(c))
1176                         cw = 10;
1177                 else if (IEEE80211_IS_CHAN_QUARTER(c))
1178                         cw = 5;
1179                 else
1180                         cw = 20;
1181                 kprintf("%4d  %4d%c %2d%c %6d  %4d.%d  %4d.%d\n"
1182                         , c->ic_ieee, c->ic_freq, type
1183                         , cw
1184                         , IEEE80211_IS_CHAN_HT40U(c) ? '+' :
1185                           IEEE80211_IS_CHAN_HT40D(c) ? '-' : ' '
1186                         , c->ic_maxregpower
1187                         , c->ic_minpower / 2, c->ic_minpower & 1 ? 5 : 0
1188                         , c->ic_maxpower / 2, c->ic_maxpower & 1 ? 5 : 0
1189                 );
1190         }
1191 }
1192
1193 static int
1194 media2mode(const struct ifmedia_entry *ime, uint32_t flags, uint16_t *mode)
1195 {
1196         switch (IFM_MODE(ime->ifm_media)) {
1197         case IFM_IEEE80211_11A:
1198                 *mode = IEEE80211_MODE_11A;
1199                 break;
1200         case IFM_IEEE80211_11B:
1201                 *mode = IEEE80211_MODE_11B;
1202                 break;
1203         case IFM_IEEE80211_11G:
1204                 *mode = IEEE80211_MODE_11G;
1205                 break;
1206         case IFM_IEEE80211_FH:
1207                 *mode = IEEE80211_MODE_FH;
1208                 break;
1209         case IFM_IEEE80211_11NA:
1210                 *mode = IEEE80211_MODE_11NA;
1211                 break;
1212         case IFM_IEEE80211_11NG:
1213                 *mode = IEEE80211_MODE_11NG;
1214                 break;
1215         case IFM_AUTO:
1216                 *mode = IEEE80211_MODE_AUTO;
1217                 break;
1218         default:
1219                 return 0;
1220         }
1221         /*
1222          * Turbo mode is an ``option''.
1223          * XXX does not apply to AUTO
1224          */
1225         if (ime->ifm_media & IFM_IEEE80211_TURBO) {
1226                 if (*mode == IEEE80211_MODE_11A) {
1227                         if (flags & IEEE80211_F_TURBOP)
1228                                 *mode = IEEE80211_MODE_TURBO_A;
1229                         else
1230                                 *mode = IEEE80211_MODE_STURBO_A;
1231                 } else if (*mode == IEEE80211_MODE_11G)
1232                         *mode = IEEE80211_MODE_TURBO_G;
1233                 else
1234                         return 0;
1235         }
1236         /* XXX HT40 +/- */
1237         return 1;
1238 }
1239
1240 /*
1241  * Handle a media change request on the underlying interface.
1242  */
1243 int
1244 ieee80211com_media_change(struct ifnet *ifp)
1245 {
1246         return EINVAL;
1247 }
1248
1249 /*
1250  * Handle a media change request on the vap interface.
1251  */
1252 int
1253 ieee80211_media_change(struct ifnet *ifp)
1254 {
1255         struct ieee80211vap *vap = ifp->if_softc;
1256         struct ifmedia_entry *ime = vap->iv_media.ifm_cur;
1257         uint16_t newmode;
1258
1259         if (!media2mode(ime, vap->iv_flags, &newmode))
1260                 return EINVAL;
1261         if (vap->iv_des_mode != newmode) {
1262                 vap->iv_des_mode = newmode;
1263                 /* XXX kick state machine if up+running */
1264         }
1265         return 0;
1266 }
1267
1268 /*
1269  * Common code to calculate the media status word
1270  * from the operating mode and channel state.
1271  */
1272 static int
1273 media_status(enum ieee80211_opmode opmode, const struct ieee80211_channel *chan)
1274 {
1275         int status;
1276
1277         status = IFM_IEEE80211;
1278         switch (opmode) {
1279         case IEEE80211_M_STA:
1280                 break;
1281         case IEEE80211_M_IBSS:
1282                 status |= IFM_IEEE80211_ADHOC;
1283                 break;
1284         case IEEE80211_M_HOSTAP:
1285                 status |= IFM_IEEE80211_HOSTAP;
1286                 break;
1287         case IEEE80211_M_MONITOR:
1288                 status |= IFM_IEEE80211_MONITOR;
1289                 break;
1290         case IEEE80211_M_AHDEMO:
1291                 status |= IFM_IEEE80211_ADHOC | IFM_FLAG0;
1292                 break;
1293         case IEEE80211_M_WDS:
1294                 status |= IFM_IEEE80211_WDS;
1295                 break;
1296         case IEEE80211_M_MBSS:
1297                 status |= IFM_IEEE80211_MBSS;
1298                 break;
1299         }
1300         if (IEEE80211_IS_CHAN_HTA(chan)) {
1301                 status |= IFM_IEEE80211_11NA;
1302         } else if (IEEE80211_IS_CHAN_HTG(chan)) {
1303                 status |= IFM_IEEE80211_11NG;
1304         } else if (IEEE80211_IS_CHAN_A(chan)) {
1305                 status |= IFM_IEEE80211_11A;
1306         } else if (IEEE80211_IS_CHAN_B(chan)) {
1307                 status |= IFM_IEEE80211_11B;
1308         } else if (IEEE80211_IS_CHAN_ANYG(chan)) {
1309                 status |= IFM_IEEE80211_11G;
1310         } else if (IEEE80211_IS_CHAN_FHSS(chan)) {
1311                 status |= IFM_IEEE80211_FH;
1312         }
1313         /* XXX else complain? */
1314
1315         if (IEEE80211_IS_CHAN_TURBO(chan))
1316                 status |= IFM_IEEE80211_TURBO;
1317 #if 0
1318         if (IEEE80211_IS_CHAN_HT20(chan))
1319                 status |= IFM_IEEE80211_HT20;
1320         if (IEEE80211_IS_CHAN_HT40(chan))
1321                 status |= IFM_IEEE80211_HT40;
1322 #endif
1323         return status;
1324 }
1325
1326 static void
1327 ieee80211com_media_status(struct ifnet *ifp, struct ifmediareq *imr)
1328 {
1329         struct ieee80211com *ic = ifp->if_l2com;
1330         struct ieee80211vap *vap;
1331
1332         imr->ifm_status = IFM_AVALID;
1333         TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
1334                 if (vap->iv_ifp->if_flags & IFF_UP) {
1335                         imr->ifm_status |= IFM_ACTIVE;
1336                         break;
1337                 }
1338         imr->ifm_active = media_status(ic->ic_opmode, ic->ic_curchan);
1339         if (imr->ifm_status & IFM_ACTIVE)
1340                 imr->ifm_current = imr->ifm_active;
1341 }
1342
1343 void
1344 ieee80211_media_status(struct ifnet *ifp, struct ifmediareq *imr)
1345 {
1346         struct ieee80211vap *vap = ifp->if_softc;
1347         struct ieee80211com *ic = vap->iv_ic;
1348         enum ieee80211_phymode mode;
1349
1350         imr->ifm_status = IFM_AVALID;
1351         /*
1352          * NB: use the current channel's mode to lock down a xmit
1353          * rate only when running; otherwise we may have a mismatch
1354          * in which case the rate will not be convertible.
1355          */
1356         if (vap->iv_state == IEEE80211_S_RUN) {
1357                 imr->ifm_status |= IFM_ACTIVE;
1358                 mode = ieee80211_chan2mode(ic->ic_curchan);
1359         } else
1360                 mode = IEEE80211_MODE_AUTO;
1361         imr->ifm_active = media_status(vap->iv_opmode, ic->ic_curchan);
1362         /*
1363          * Calculate a current rate if possible.
1364          */
1365         if (vap->iv_txparms[mode].ucastrate != IEEE80211_FIXED_RATE_NONE) {
1366                 /*
1367                  * A fixed rate is set, report that.
1368                  */
1369                 imr->ifm_active |= ieee80211_rate2media(ic,
1370                         vap->iv_txparms[mode].ucastrate, mode);
1371         } else if (vap->iv_opmode == IEEE80211_M_STA) {
1372                 /*
1373                  * In station mode report the current transmit rate.
1374                  */
1375                 imr->ifm_active |= ieee80211_rate2media(ic,
1376                         vap->iv_bss->ni_txrate, mode);
1377         } else
1378                 imr->ifm_active |= IFM_AUTO;
1379         if (imr->ifm_status & IFM_ACTIVE)
1380                 imr->ifm_current = imr->ifm_active;
1381 }
1382
1383 /*
1384  * Set the current phy mode and recalculate the active channel
1385  * set based on the available channels for this mode.  Also
1386  * select a new default/current channel if the current one is
1387  * inappropriate for this mode.
1388  */
1389 int
1390 ieee80211_setmode(struct ieee80211com *ic, enum ieee80211_phymode mode)
1391 {
1392         /*
1393          * Adjust basic rates in 11b/11g supported rate set.
1394          * Note that if operating on a hal/quarter rate channel
1395          * this is a noop as those rates sets are different
1396          * and used instead.
1397          */
1398         if (mode == IEEE80211_MODE_11G || mode == IEEE80211_MODE_11B)
1399                 ieee80211_setbasicrates(&ic->ic_sup_rates[mode], mode);
1400
1401         ic->ic_curmode = mode;
1402         ieee80211_reset_erp(ic);        /* reset ERP state */
1403
1404         return 0;
1405 }
1406
1407 /*
1408  * Return the phy mode for with the specified channel.
1409  */
1410 enum ieee80211_phymode
1411 ieee80211_chan2mode(const struct ieee80211_channel *chan)
1412 {
1413
1414         if (IEEE80211_IS_CHAN_HTA(chan))
1415                 return IEEE80211_MODE_11NA;
1416         else if (IEEE80211_IS_CHAN_HTG(chan))
1417                 return IEEE80211_MODE_11NG;
1418         else if (IEEE80211_IS_CHAN_108G(chan))
1419                 return IEEE80211_MODE_TURBO_G;
1420         else if (IEEE80211_IS_CHAN_ST(chan))
1421                 return IEEE80211_MODE_STURBO_A;
1422         else if (IEEE80211_IS_CHAN_TURBO(chan))
1423                 return IEEE80211_MODE_TURBO_A;
1424         else if (IEEE80211_IS_CHAN_HALF(chan))
1425                 return IEEE80211_MODE_HALF;
1426         else if (IEEE80211_IS_CHAN_QUARTER(chan))
1427                 return IEEE80211_MODE_QUARTER;
1428         else if (IEEE80211_IS_CHAN_A(chan))
1429                 return IEEE80211_MODE_11A;
1430         else if (IEEE80211_IS_CHAN_ANYG(chan))
1431                 return IEEE80211_MODE_11G;
1432         else if (IEEE80211_IS_CHAN_B(chan))
1433                 return IEEE80211_MODE_11B;
1434         else if (IEEE80211_IS_CHAN_FHSS(chan))
1435                 return IEEE80211_MODE_FH;
1436
1437         /* NB: should not get here */
1438         kprintf("%s: cannot map channel to mode; freq %u flags 0x%x\n",
1439                 __func__, chan->ic_freq, chan->ic_flags);
1440         return IEEE80211_MODE_11B;
1441 }
1442
1443 struct ratemedia {
1444         u_int   match;  /* rate + mode */
1445         u_int   media;  /* if_media rate */
1446 };
1447
1448 static int
1449 findmedia(const struct ratemedia rates[], int n, u_int match)
1450 {
1451         int i;
1452
1453         for (i = 0; i < n; i++)
1454                 if (rates[i].match == match)
1455                         return rates[i].media;
1456         return IFM_AUTO;
1457 }
1458
1459 /*
1460  * Convert IEEE80211 rate value to ifmedia subtype.
1461  * Rate is either a legacy rate in units of 0.5Mbps
1462  * or an MCS index.
1463  */
1464 int
1465 ieee80211_rate2media(struct ieee80211com *ic, int rate, enum ieee80211_phymode mode)
1466 {
1467 #define N(a)    (sizeof(a) / sizeof(a[0]))
1468         static const struct ratemedia rates[] = {
1469                 {   2 | IFM_IEEE80211_FH, IFM_IEEE80211_FH1 },
1470                 {   4 | IFM_IEEE80211_FH, IFM_IEEE80211_FH2 },
1471                 {   2 | IFM_IEEE80211_11B, IFM_IEEE80211_DS1 },
1472                 {   4 | IFM_IEEE80211_11B, IFM_IEEE80211_DS2 },
1473                 {  11 | IFM_IEEE80211_11B, IFM_IEEE80211_DS5 },
1474                 {  22 | IFM_IEEE80211_11B, IFM_IEEE80211_DS11 },
1475                 {  44 | IFM_IEEE80211_11B, IFM_IEEE80211_DS22 },
1476                 {  12 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM6 },
1477                 {  18 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM9 },
1478                 {  24 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM12 },
1479                 {  36 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM18 },
1480                 {  48 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM24 },
1481                 {  72 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM36 },
1482                 {  96 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM48 },
1483                 { 108 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM54 },
1484                 {   2 | IFM_IEEE80211_11G, IFM_IEEE80211_DS1 },
1485                 {   4 | IFM_IEEE80211_11G, IFM_IEEE80211_DS2 },
1486                 {  11 | IFM_IEEE80211_11G, IFM_IEEE80211_DS5 },
1487                 {  22 | IFM_IEEE80211_11G, IFM_IEEE80211_DS11 },
1488                 {  12 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM6 },
1489                 {  18 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM9 },
1490                 {  24 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM12 },
1491                 {  36 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM18 },
1492                 {  48 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM24 },
1493                 {  72 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM36 },
1494                 {  96 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM48 },
1495                 { 108 | IFM_IEEE80211_11G, IFM_IEEE80211_OFDM54 },
1496                 {   6 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM3 },
1497                 {   9 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM4 },
1498                 {  54 | IFM_IEEE80211_11A, IFM_IEEE80211_OFDM27 },
1499                 /* NB: OFDM72 doesn't realy exist so we don't handle it */
1500         };
1501         static const struct ratemedia htrates[] = {
1502                 {   0, IFM_IEEE80211_MCS },
1503                 {   1, IFM_IEEE80211_MCS },
1504                 {   2, IFM_IEEE80211_MCS },
1505                 {   3, IFM_IEEE80211_MCS },
1506                 {   4, IFM_IEEE80211_MCS },
1507                 {   5, IFM_IEEE80211_MCS },
1508                 {   6, IFM_IEEE80211_MCS },
1509                 {   7, IFM_IEEE80211_MCS },
1510                 {   8, IFM_IEEE80211_MCS },
1511                 {   9, IFM_IEEE80211_MCS },
1512                 {  10, IFM_IEEE80211_MCS },
1513                 {  11, IFM_IEEE80211_MCS },
1514                 {  12, IFM_IEEE80211_MCS },
1515                 {  13, IFM_IEEE80211_MCS },
1516                 {  14, IFM_IEEE80211_MCS },
1517                 {  15, IFM_IEEE80211_MCS },
1518         };
1519         int m;
1520
1521         /*
1522          * Check 11n rates first for match as an MCS.
1523          */
1524         if (mode == IEEE80211_MODE_11NA) {
1525                 if (rate & IEEE80211_RATE_MCS) {
1526                         rate &= ~IEEE80211_RATE_MCS;
1527                         m = findmedia(htrates, N(htrates), rate);
1528                         if (m != IFM_AUTO)
1529                                 return m | IFM_IEEE80211_11NA;
1530                 }
1531         } else if (mode == IEEE80211_MODE_11NG) {
1532                 /* NB: 12 is ambiguous, it will be treated as an MCS */
1533                 if (rate & IEEE80211_RATE_MCS) {
1534                         rate &= ~IEEE80211_RATE_MCS;
1535                         m = findmedia(htrates, N(htrates), rate);
1536                         if (m != IFM_AUTO)
1537                                 return m | IFM_IEEE80211_11NG;
1538                 }
1539         }
1540         rate &= IEEE80211_RATE_VAL;
1541         switch (mode) {
1542         case IEEE80211_MODE_11A:
1543         case IEEE80211_MODE_HALF:               /* XXX good 'nuf */
1544         case IEEE80211_MODE_QUARTER:
1545         case IEEE80211_MODE_11NA:
1546         case IEEE80211_MODE_TURBO_A:
1547         case IEEE80211_MODE_STURBO_A:
1548                 return findmedia(rates, N(rates), rate | IFM_IEEE80211_11A);
1549         case IEEE80211_MODE_11B:
1550                 return findmedia(rates, N(rates), rate | IFM_IEEE80211_11B);
1551         case IEEE80211_MODE_FH:
1552                 return findmedia(rates, N(rates), rate | IFM_IEEE80211_FH);
1553         case IEEE80211_MODE_AUTO:
1554                 /* NB: ic may be NULL for some drivers */
1555                 if (ic != NULL && ic->ic_phytype == IEEE80211_T_FH)
1556                         return findmedia(rates, N(rates),
1557                             rate | IFM_IEEE80211_FH);
1558                 /* NB: hack, 11g matches both 11b+11a rates */
1559                 /* fall thru... */
1560         case IEEE80211_MODE_11G:
1561         case IEEE80211_MODE_11NG:
1562         case IEEE80211_MODE_TURBO_G:
1563                 return findmedia(rates, N(rates), rate | IFM_IEEE80211_11G);
1564         }
1565         return IFM_AUTO;
1566 #undef N
1567 }
1568
1569 int
1570 ieee80211_media2rate(int mword)
1571 {
1572 #define N(a)    (sizeof(a) / sizeof(a[0]))
1573         static const int ieeerates[] = {
1574                 -1,             /* IFM_AUTO */
1575                 0,              /* IFM_MANUAL */
1576                 0,              /* IFM_NONE */
1577                 2,              /* IFM_IEEE80211_FH1 */
1578                 4,              /* IFM_IEEE80211_FH2 */
1579                 2,              /* IFM_IEEE80211_DS1 */
1580                 4,              /* IFM_IEEE80211_DS2 */
1581                 11,             /* IFM_IEEE80211_DS5 */
1582                 22,             /* IFM_IEEE80211_DS11 */
1583                 44,             /* IFM_IEEE80211_DS22 */
1584                 12,             /* IFM_IEEE80211_OFDM6 */
1585                 18,             /* IFM_IEEE80211_OFDM9 */
1586                 24,             /* IFM_IEEE80211_OFDM12 */
1587                 36,             /* IFM_IEEE80211_OFDM18 */
1588                 48,             /* IFM_IEEE80211_OFDM24 */
1589                 72,             /* IFM_IEEE80211_OFDM36 */
1590                 96,             /* IFM_IEEE80211_OFDM48 */
1591                 108,            /* IFM_IEEE80211_OFDM54 */
1592                 144,            /* IFM_IEEE80211_OFDM72 */
1593                 0,              /* IFM_IEEE80211_DS354k */
1594                 0,              /* IFM_IEEE80211_DS512k */
1595                 6,              /* IFM_IEEE80211_OFDM3 */
1596                 9,              /* IFM_IEEE80211_OFDM4 */
1597                 54,             /* IFM_IEEE80211_OFDM27 */
1598                 -1,             /* IFM_IEEE80211_MCS */
1599         };
1600         return IFM_SUBTYPE(mword) < N(ieeerates) ?
1601                 ieeerates[IFM_SUBTYPE(mword)] : 0;
1602 #undef N
1603 }
1604
1605 /*
1606  * The following hash function is adapted from "Hash Functions" by Bob Jenkins
1607  * ("Algorithm Alley", Dr. Dobbs Journal, September 1997).
1608  */
1609 #define mix(a, b, c)                                                    \
1610 do {                                                                    \
1611         a -= b; a -= c; a ^= (c >> 13);                                 \
1612         b -= c; b -= a; b ^= (a << 8);                                  \
1613         c -= a; c -= b; c ^= (b >> 13);                                 \
1614         a -= b; a -= c; a ^= (c >> 12);                                 \
1615         b -= c; b -= a; b ^= (a << 16);                                 \
1616         c -= a; c -= b; c ^= (b >> 5);                                  \
1617         a -= b; a -= c; a ^= (c >> 3);                                  \
1618         b -= c; b -= a; b ^= (a << 10);                                 \
1619         c -= a; c -= b; c ^= (b >> 15);                                 \
1620 } while (/*CONSTCOND*/0)
1621
1622 uint32_t
1623 ieee80211_mac_hash(const struct ieee80211com *ic,
1624         const uint8_t addr[IEEE80211_ADDR_LEN])
1625 {
1626         uint32_t a = 0x9e3779b9, b = 0x9e3779b9, c = ic->ic_hash_key;
1627
1628         b += addr[5] << 8;
1629         b += addr[4];
1630         a += addr[3] << 24;
1631         a += addr[2] << 16;
1632         a += addr[1] << 8;
1633         a += addr[0];
1634
1635         mix(a, b, c);
1636
1637         return c;
1638 }
1639 #undef mix