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