]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/net/wireless/hostap/hostap_80211_rx.c
Merge master.kernel.org:/pub/scm/linux/kernel/git/sridhar/lksctp-2.6
[net-next-2.6.git] / drivers / net / wireless / hostap / hostap_80211_rx.c
1 #include <linux/etherdevice.h>
2
3 #include "hostap_80211.h"
4 #include "hostap.h"
5
6 void hostap_dump_rx_80211(const char *name, struct sk_buff *skb,
7                           struct hostap_80211_rx_status *rx_stats)
8 {
9         struct ieee80211_hdr_4addr *hdr;
10         u16 fc;
11
12         hdr = (struct ieee80211_hdr_4addr *) skb->data;
13
14         printk(KERN_DEBUG "%s: RX signal=%d noise=%d rate=%d len=%d "
15                "jiffies=%ld\n",
16                name, rx_stats->signal, rx_stats->noise, rx_stats->rate,
17                skb->len, jiffies);
18
19         if (skb->len < 2)
20                 return;
21
22         fc = le16_to_cpu(hdr->frame_ctl);
23         printk(KERN_DEBUG "   FC=0x%04x (type=%d:%d)%s%s",
24                fc, WLAN_FC_GET_TYPE(fc) >> 2, WLAN_FC_GET_STYPE(fc) >> 4,
25                fc & IEEE80211_FCTL_TODS ? " [ToDS]" : "",
26                fc & IEEE80211_FCTL_FROMDS ? " [FromDS]" : "");
27
28         if (skb->len < IEEE80211_DATA_HDR3_LEN) {
29                 printk("\n");
30                 return;
31         }
32
33         printk(" dur=0x%04x seq=0x%04x\n", le16_to_cpu(hdr->duration_id),
34                le16_to_cpu(hdr->seq_ctl));
35
36         printk(KERN_DEBUG "   A1=" MACSTR " A2=" MACSTR " A3=" MACSTR,
37                MAC2STR(hdr->addr1), MAC2STR(hdr->addr2), MAC2STR(hdr->addr3));
38         if (skb->len >= 30)
39                 printk(" A4=" MACSTR, MAC2STR(hdr->addr4));
40         printk("\n");
41 }
42
43
44 /* Send RX frame to netif with 802.11 (and possible prism) header.
45  * Called from hardware or software IRQ context. */
46 int prism2_rx_80211(struct net_device *dev, struct sk_buff *skb,
47                     struct hostap_80211_rx_status *rx_stats, int type)
48 {
49         struct hostap_interface *iface;
50         local_info_t *local;
51         int hdrlen, phdrlen, head_need, tail_need;
52         u16 fc;
53         int prism_header, ret;
54         struct ieee80211_hdr_4addr *hdr;
55
56         iface = netdev_priv(dev);
57         local = iface->local;
58         dev->last_rx = jiffies;
59
60         if (dev->type == ARPHRD_IEEE80211_PRISM) {
61                 if (local->monitor_type == PRISM2_MONITOR_PRISM) {
62                         prism_header = 1;
63                         phdrlen = sizeof(struct linux_wlan_ng_prism_hdr);
64                 } else { /* local->monitor_type == PRISM2_MONITOR_CAPHDR */
65                         prism_header = 2;
66                         phdrlen = sizeof(struct linux_wlan_ng_cap_hdr);
67                 }
68         } else {
69                 prism_header = 0;
70                 phdrlen = 0;
71         }
72
73         hdr = (struct ieee80211_hdr_4addr *) skb->data;
74         fc = le16_to_cpu(hdr->frame_ctl);
75
76         if (type == PRISM2_RX_MGMT && (fc & IEEE80211_FCTL_VERS)) {
77                 printk(KERN_DEBUG "%s: dropped management frame with header "
78                        "version %d\n", dev->name, fc & IEEE80211_FCTL_VERS);
79                 dev_kfree_skb_any(skb);
80                 return 0;
81         }
82
83         hdrlen = hostap_80211_get_hdrlen(fc);
84
85         /* check if there is enough room for extra data; if not, expand skb
86          * buffer to be large enough for the changes */
87         head_need = phdrlen;
88         tail_need = 0;
89 #ifdef PRISM2_ADD_BOGUS_CRC
90         tail_need += 4;
91 #endif /* PRISM2_ADD_BOGUS_CRC */
92
93         head_need -= skb_headroom(skb);
94         tail_need -= skb_tailroom(skb);
95
96         if (head_need > 0 || tail_need > 0) {
97                 if (pskb_expand_head(skb, head_need > 0 ? head_need : 0,
98                                      tail_need > 0 ? tail_need : 0,
99                                      GFP_ATOMIC)) {
100                         printk(KERN_DEBUG "%s: prism2_rx_80211 failed to "
101                                "reallocate skb buffer\n", dev->name);
102                         dev_kfree_skb_any(skb);
103                         return 0;
104                 }
105         }
106
107         /* We now have an skb with enough head and tail room, so just insert
108          * the extra data */
109
110 #ifdef PRISM2_ADD_BOGUS_CRC
111         memset(skb_put(skb, 4), 0xff, 4); /* Prism2 strips CRC */
112 #endif /* PRISM2_ADD_BOGUS_CRC */
113
114         if (prism_header == 1) {
115                 struct linux_wlan_ng_prism_hdr *hdr;
116                 hdr = (struct linux_wlan_ng_prism_hdr *)
117                         skb_push(skb, phdrlen);
118                 memset(hdr, 0, phdrlen);
119                 hdr->msgcode = LWNG_CAP_DID_BASE;
120                 hdr->msglen = sizeof(*hdr);
121                 memcpy(hdr->devname, dev->name, sizeof(hdr->devname));
122 #define LWNG_SETVAL(f,i,s,l,d) \
123 hdr->f.did = LWNG_CAP_DID_BASE | (i << 12); \
124 hdr->f.status = s; hdr->f.len = l; hdr->f.data = d
125                 LWNG_SETVAL(hosttime, 1, 0, 4, jiffies);
126                 LWNG_SETVAL(mactime, 2, 0, 4, rx_stats->mac_time);
127                 LWNG_SETVAL(channel, 3, 1 /* no value */, 4, 0);
128                 LWNG_SETVAL(rssi, 4, 1 /* no value */, 4, 0);
129                 LWNG_SETVAL(sq, 5, 1 /* no value */, 4, 0);
130                 LWNG_SETVAL(signal, 6, 0, 4, rx_stats->signal);
131                 LWNG_SETVAL(noise, 7, 0, 4, rx_stats->noise);
132                 LWNG_SETVAL(rate, 8, 0, 4, rx_stats->rate / 5);
133                 LWNG_SETVAL(istx, 9, 0, 4, 0);
134                 LWNG_SETVAL(frmlen, 10, 0, 4, skb->len - phdrlen);
135 #undef LWNG_SETVAL
136         } else if (prism_header == 2) {
137                 struct linux_wlan_ng_cap_hdr *hdr;
138                 hdr = (struct linux_wlan_ng_cap_hdr *)
139                         skb_push(skb, phdrlen);
140                 memset(hdr, 0, phdrlen);
141                 hdr->version    = htonl(LWNG_CAPHDR_VERSION);
142                 hdr->length     = htonl(phdrlen);
143                 hdr->mactime    = __cpu_to_be64(rx_stats->mac_time);
144                 hdr->hosttime   = __cpu_to_be64(jiffies);
145                 hdr->phytype    = htonl(4); /* dss_dot11_b */
146                 hdr->channel    = htonl(local->channel);
147                 hdr->datarate   = htonl(rx_stats->rate);
148                 hdr->antenna    = htonl(0); /* unknown */
149                 hdr->priority   = htonl(0); /* unknown */
150                 hdr->ssi_type   = htonl(3); /* raw */
151                 hdr->ssi_signal = htonl(rx_stats->signal);
152                 hdr->ssi_noise  = htonl(rx_stats->noise);
153                 hdr->preamble   = htonl(0); /* unknown */
154                 hdr->encoding   = htonl(1); /* cck */
155         }
156
157         ret = skb->len - phdrlen;
158         skb->dev = dev;
159         skb->mac.raw = skb->data;
160         skb_pull(skb, hdrlen);
161         if (prism_header)
162                 skb_pull(skb, phdrlen);
163         skb->pkt_type = PACKET_OTHERHOST;
164         skb->protocol = __constant_htons(ETH_P_802_2);
165         memset(skb->cb, 0, sizeof(skb->cb));
166         netif_rx(skb);
167
168         return ret;
169 }
170
171
172 /* Called only as a tasklet (software IRQ) */
173 static void monitor_rx(struct net_device *dev, struct sk_buff *skb,
174                        struct hostap_80211_rx_status *rx_stats)
175 {
176         struct net_device_stats *stats;
177         int len;
178
179         len = prism2_rx_80211(dev, skb, rx_stats, PRISM2_RX_MONITOR);
180         stats = hostap_get_stats(dev);
181         stats->rx_packets++;
182         stats->rx_bytes += len;
183 }
184
185
186 /* Called only as a tasklet (software IRQ) */
187 static struct prism2_frag_entry *
188 prism2_frag_cache_find(local_info_t *local, unsigned int seq,
189                        unsigned int frag, u8 *src, u8 *dst)
190 {
191         struct prism2_frag_entry *entry;
192         int i;
193
194         for (i = 0; i < PRISM2_FRAG_CACHE_LEN; i++) {
195                 entry = &local->frag_cache[i];
196                 if (entry->skb != NULL &&
197                     time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
198                         printk(KERN_DEBUG "%s: expiring fragment cache entry "
199                                "seq=%u last_frag=%u\n",
200                                local->dev->name, entry->seq, entry->last_frag);
201                         dev_kfree_skb(entry->skb);
202                         entry->skb = NULL;
203                 }
204
205                 if (entry->skb != NULL && entry->seq == seq &&
206                     (entry->last_frag + 1 == frag || frag == -1) &&
207                     memcmp(entry->src_addr, src, ETH_ALEN) == 0 &&
208                     memcmp(entry->dst_addr, dst, ETH_ALEN) == 0)
209                         return entry;
210         }
211
212         return NULL;
213 }
214
215
216 /* Called only as a tasklet (software IRQ) */
217 static struct sk_buff *
218 prism2_frag_cache_get(local_info_t *local, struct ieee80211_hdr_4addr *hdr)
219 {
220         struct sk_buff *skb = NULL;
221         u16 sc;
222         unsigned int frag, seq;
223         struct prism2_frag_entry *entry;
224
225         sc = le16_to_cpu(hdr->seq_ctl);
226         frag = WLAN_GET_SEQ_FRAG(sc);
227         seq = WLAN_GET_SEQ_SEQ(sc) >> 4;
228
229         if (frag == 0) {
230                 /* Reserve enough space to fit maximum frame length */
231                 skb = dev_alloc_skb(local->dev->mtu +
232                                     sizeof(struct ieee80211_hdr_4addr) +
233                                     8 /* LLC */ +
234                                     2 /* alignment */ +
235                                     8 /* WEP */ + ETH_ALEN /* WDS */);
236                 if (skb == NULL)
237                         return NULL;
238
239                 entry = &local->frag_cache[local->frag_next_idx];
240                 local->frag_next_idx++;
241                 if (local->frag_next_idx >= PRISM2_FRAG_CACHE_LEN)
242                         local->frag_next_idx = 0;
243
244                 if (entry->skb != NULL)
245                         dev_kfree_skb(entry->skb);
246
247                 entry->first_frag_time = jiffies;
248                 entry->seq = seq;
249                 entry->last_frag = frag;
250                 entry->skb = skb;
251                 memcpy(entry->src_addr, hdr->addr2, ETH_ALEN);
252                 memcpy(entry->dst_addr, hdr->addr1, ETH_ALEN);
253         } else {
254                 /* received a fragment of a frame for which the head fragment
255                  * should have already been received */
256                 entry = prism2_frag_cache_find(local, seq, frag, hdr->addr2,
257                                                hdr->addr1);
258                 if (entry != NULL) {
259                         entry->last_frag = frag;
260                         skb = entry->skb;
261                 }
262         }
263
264         return skb;
265 }
266
267
268 /* Called only as a tasklet (software IRQ) */
269 static int prism2_frag_cache_invalidate(local_info_t *local,
270                                         struct ieee80211_hdr_4addr *hdr)
271 {
272         u16 sc;
273         unsigned int seq;
274         struct prism2_frag_entry *entry;
275
276         sc = le16_to_cpu(hdr->seq_ctl);
277         seq = WLAN_GET_SEQ_SEQ(sc) >> 4;
278
279         entry = prism2_frag_cache_find(local, seq, -1, hdr->addr2, hdr->addr1);
280
281         if (entry == NULL) {
282                 printk(KERN_DEBUG "%s: could not invalidate fragment cache "
283                        "entry (seq=%u)\n",
284                        local->dev->name, seq);
285                 return -1;
286         }
287
288         entry->skb = NULL;
289         return 0;
290 }
291
292
293 static struct hostap_bss_info *__hostap_get_bss(local_info_t *local, u8 *bssid,
294                                                 u8 *ssid, size_t ssid_len)
295 {
296         struct list_head *ptr;
297         struct hostap_bss_info *bss;
298
299         list_for_each(ptr, &local->bss_list) {
300                 bss = list_entry(ptr, struct hostap_bss_info, list);
301                 if (memcmp(bss->bssid, bssid, ETH_ALEN) == 0 &&
302                     (ssid == NULL ||
303                      (ssid_len == bss->ssid_len &&
304                       memcmp(ssid, bss->ssid, ssid_len) == 0))) {
305                         list_move(&bss->list, &local->bss_list);
306                         return bss;
307                 }
308         }
309
310         return NULL;
311 }
312
313
314 static struct hostap_bss_info *__hostap_add_bss(local_info_t *local, u8 *bssid,
315                                                 u8 *ssid, size_t ssid_len)
316 {
317         struct hostap_bss_info *bss;
318
319         if (local->num_bss_info >= HOSTAP_MAX_BSS_COUNT) {
320                 bss = list_entry(local->bss_list.prev,
321                                  struct hostap_bss_info, list);
322                 list_del(&bss->list);
323                 local->num_bss_info--;
324         } else {
325                 bss = (struct hostap_bss_info *)
326                         kmalloc(sizeof(*bss), GFP_ATOMIC);
327                 if (bss == NULL)
328                         return NULL;
329         }
330
331         memset(bss, 0, sizeof(*bss));
332         memcpy(bss->bssid, bssid, ETH_ALEN);
333         memcpy(bss->ssid, ssid, ssid_len);
334         bss->ssid_len = ssid_len;
335         local->num_bss_info++;
336         list_add(&bss->list, &local->bss_list);
337         return bss;
338 }
339
340
341 static void __hostap_expire_bss(local_info_t *local)
342 {
343         struct hostap_bss_info *bss;
344
345         while (local->num_bss_info > 0) {
346                 bss = list_entry(local->bss_list.prev,
347                                  struct hostap_bss_info, list);
348                 if (!time_after(jiffies, bss->last_update + 60 * HZ))
349                         break;
350
351                 list_del(&bss->list);
352                 local->num_bss_info--;
353                 kfree(bss);
354         }
355 }
356
357
358 /* Both IEEE 802.11 Beacon and Probe Response frames have similar structure, so
359  * the same routine can be used to parse both of them. */
360 static void hostap_rx_sta_beacon(local_info_t *local, struct sk_buff *skb,
361                                  int stype)
362 {
363         struct hostap_ieee80211_mgmt *mgmt;
364         int left, chan = 0;
365         u8 *pos;
366         u8 *ssid = NULL, *wpa = NULL, *rsn = NULL;
367         size_t ssid_len = 0, wpa_len = 0, rsn_len = 0;
368         struct hostap_bss_info *bss;
369
370         if (skb->len < IEEE80211_MGMT_HDR_LEN + sizeof(mgmt->u.beacon))
371                 return;
372
373         mgmt = (struct hostap_ieee80211_mgmt *) skb->data;
374         pos = mgmt->u.beacon.variable;
375         left = skb->len - (pos - skb->data);
376
377         while (left >= 2) {
378                 if (2 + pos[1] > left)
379                         return; /* parse failed */
380                 switch (*pos) {
381                 case WLAN_EID_SSID:
382                         ssid = pos + 2;
383                         ssid_len = pos[1];
384                         break;
385                 case WLAN_EID_GENERIC:
386                         if (pos[1] >= 4 &&
387                             pos[2] == 0x00 && pos[3] == 0x50 &&
388                             pos[4] == 0xf2 && pos[5] == 1) {
389                                 wpa = pos;
390                                 wpa_len = pos[1] + 2;
391                         }
392                         break;
393                 case WLAN_EID_RSN:
394                         rsn = pos;
395                         rsn_len = pos[1] + 2;
396                         break;
397                 case WLAN_EID_DS_PARAMS:
398                         if (pos[1] >= 1)
399                                 chan = pos[2];
400                         break;
401                 }
402                 left -= 2 + pos[1];
403                 pos += 2 + pos[1];
404         }
405
406         if (wpa_len > MAX_WPA_IE_LEN)
407                 wpa_len = MAX_WPA_IE_LEN;
408         if (rsn_len > MAX_WPA_IE_LEN)
409                 rsn_len = MAX_WPA_IE_LEN;
410         if (ssid_len > sizeof(bss->ssid))
411                 ssid_len = sizeof(bss->ssid);
412
413         spin_lock(&local->lock);
414         bss = __hostap_get_bss(local, mgmt->bssid, ssid, ssid_len);
415         if (bss == NULL)
416                 bss = __hostap_add_bss(local, mgmt->bssid, ssid, ssid_len);
417         if (bss) {
418                 bss->last_update = jiffies;
419                 bss->count++;
420                 bss->capab_info = le16_to_cpu(mgmt->u.beacon.capab_info);
421                 if (wpa) {
422                         memcpy(bss->wpa_ie, wpa, wpa_len);
423                         bss->wpa_ie_len = wpa_len;
424                 } else
425                         bss->wpa_ie_len = 0;
426                 if (rsn) {
427                         memcpy(bss->rsn_ie, rsn, rsn_len);
428                         bss->rsn_ie_len = rsn_len;
429                 } else
430                         bss->rsn_ie_len = 0;
431                 bss->chan = chan;
432         }
433         __hostap_expire_bss(local);
434         spin_unlock(&local->lock);
435 }
436
437
438 static inline int
439 hostap_rx_frame_mgmt(local_info_t *local, struct sk_buff *skb,
440                      struct hostap_80211_rx_status *rx_stats, u16 type,
441                      u16 stype)
442 {
443         if (local->iw_mode == IW_MODE_MASTER) {
444                 hostap_update_sta_ps(local, (struct ieee80211_hdr_4addr *)
445                                      skb->data);
446         }
447
448         if (local->hostapd && type == IEEE80211_FTYPE_MGMT) {
449                 if (stype == IEEE80211_STYPE_BEACON &&
450                     local->iw_mode == IW_MODE_MASTER) {
451                         struct sk_buff *skb2;
452                         /* Process beacon frames also in kernel driver to
453                          * update STA(AP) table statistics */
454                         skb2 = skb_clone(skb, GFP_ATOMIC);
455                         if (skb2)
456                                 hostap_rx(skb2->dev, skb2, rx_stats);
457                 }
458
459                 /* send management frames to the user space daemon for
460                  * processing */
461                 local->apdevstats.rx_packets++;
462                 local->apdevstats.rx_bytes += skb->len;
463                 if (local->apdev == NULL)
464                         return -1;
465                 prism2_rx_80211(local->apdev, skb, rx_stats, PRISM2_RX_MGMT);
466                 return 0;
467         }
468
469         if (local->iw_mode == IW_MODE_MASTER) {
470                 if (type != IEEE80211_FTYPE_MGMT &&
471                     type != IEEE80211_FTYPE_CTL) {
472                         printk(KERN_DEBUG "%s: unknown management frame "
473                                "(type=0x%02x, stype=0x%02x) dropped\n",
474                                skb->dev->name, type >> 2, stype >> 4);
475                         return -1;
476                 }
477
478                 hostap_rx(skb->dev, skb, rx_stats);
479                 return 0;
480         } else if (type == IEEE80211_FTYPE_MGMT &&
481                    (stype == IEEE80211_STYPE_BEACON ||
482                     stype == IEEE80211_STYPE_PROBE_RESP)) {
483                 hostap_rx_sta_beacon(local, skb, stype);
484                 return -1;
485         } else if (type == IEEE80211_FTYPE_MGMT &&
486                    (stype == IEEE80211_STYPE_ASSOC_RESP ||
487                     stype == IEEE80211_STYPE_REASSOC_RESP)) {
488                 /* Ignore (Re)AssocResp silently since these are not currently
489                  * needed but are still received when WPA/RSN mode is enabled.
490                  */
491                 return -1;
492         } else {
493                 printk(KERN_DEBUG "%s: hostap_rx_frame_mgmt: dropped unhandled"
494                        " management frame in non-Host AP mode (type=%d:%d)\n",
495                        skb->dev->name, type >> 2, stype >> 4);
496                 return -1;
497         }
498 }
499
500
501 /* Called only as a tasklet (software IRQ) */
502 static inline struct net_device *prism2_rx_get_wds(local_info_t *local,
503                                                    u8 *addr)
504 {
505         struct hostap_interface *iface = NULL;
506         struct list_head *ptr;
507
508         read_lock_bh(&local->iface_lock);
509         list_for_each(ptr, &local->hostap_interfaces) {
510                 iface = list_entry(ptr, struct hostap_interface, list);
511                 if (iface->type == HOSTAP_INTERFACE_WDS &&
512                     memcmp(iface->u.wds.remote_addr, addr, ETH_ALEN) == 0)
513                         break;
514                 iface = NULL;
515         }
516         read_unlock_bh(&local->iface_lock);
517
518         return iface ? iface->dev : NULL;
519 }
520
521
522 static inline int
523 hostap_rx_frame_wds(local_info_t *local, struct ieee80211_hdr_4addr *hdr,
524                     u16 fc, struct net_device **wds)
525 {
526         /* FIX: is this really supposed to accept WDS frames only in Master
527          * mode? What about Repeater or Managed with WDS frames? */
528         if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) !=
529             (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS) &&
530             (local->iw_mode != IW_MODE_MASTER || !(fc & IEEE80211_FCTL_TODS)))
531                 return 0; /* not a WDS frame */
532
533         /* Possible WDS frame: either IEEE 802.11 compliant (if FromDS)
534          * or own non-standard frame with 4th address after payload */
535         if (memcmp(hdr->addr1, local->dev->dev_addr, ETH_ALEN) != 0 &&
536             (hdr->addr1[0] != 0xff || hdr->addr1[1] != 0xff ||
537              hdr->addr1[2] != 0xff || hdr->addr1[3] != 0xff ||
538              hdr->addr1[4] != 0xff || hdr->addr1[5] != 0xff)) {
539                 /* RA (or BSSID) is not ours - drop */
540                 PDEBUG(DEBUG_EXTRA, "%s: received WDS frame with "
541                        "not own or broadcast %s=" MACSTR "\n",
542                        local->dev->name,
543                        fc & IEEE80211_FCTL_FROMDS ? "RA" : "BSSID",
544                        MAC2STR(hdr->addr1));
545                 return -1;
546         }
547
548         /* check if the frame came from a registered WDS connection */
549         *wds = prism2_rx_get_wds(local, hdr->addr2);
550         if (*wds == NULL && fc & IEEE80211_FCTL_FROMDS &&
551             (local->iw_mode != IW_MODE_INFRA ||
552              !(local->wds_type & HOSTAP_WDS_AP_CLIENT) ||
553              memcmp(hdr->addr2, local->bssid, ETH_ALEN) != 0)) {
554                 /* require that WDS link has been registered with TA or the
555                  * frame is from current AP when using 'AP client mode' */
556                 PDEBUG(DEBUG_EXTRA, "%s: received WDS[4 addr] frame "
557                        "from unknown TA=" MACSTR "\n",
558                        local->dev->name, MAC2STR(hdr->addr2));
559                 if (local->ap && local->ap->autom_ap_wds)
560                         hostap_wds_link_oper(local, hdr->addr2, WDS_ADD);
561                 return -1;
562         }
563
564         if (*wds && !(fc & IEEE80211_FCTL_FROMDS) && local->ap &&
565             hostap_is_sta_assoc(local->ap, hdr->addr2)) {
566                 /* STA is actually associated with us even though it has a
567                  * registered WDS link. Assume it is in 'AP client' mode.
568                  * Since this is a 3-addr frame, assume it is not (bogus) WDS
569                  * frame and process it like any normal ToDS frame from
570                  * associated STA. */
571                 *wds = NULL;
572         }
573
574         return 0;
575 }
576
577
578 static int hostap_is_eapol_frame(local_info_t *local, struct sk_buff *skb)
579 {
580         struct net_device *dev = local->dev;
581         u16 fc, ethertype;
582         struct ieee80211_hdr_4addr *hdr;
583         u8 *pos;
584
585         if (skb->len < 24)
586                 return 0;
587
588         hdr = (struct ieee80211_hdr_4addr *) skb->data;
589         fc = le16_to_cpu(hdr->frame_ctl);
590
591         /* check that the frame is unicast frame to us */
592         if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
593             IEEE80211_FCTL_TODS &&
594             memcmp(hdr->addr1, dev->dev_addr, ETH_ALEN) == 0 &&
595             memcmp(hdr->addr3, dev->dev_addr, ETH_ALEN) == 0) {
596                 /* ToDS frame with own addr BSSID and DA */
597         } else if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
598                    IEEE80211_FCTL_FROMDS &&
599                    memcmp(hdr->addr1, dev->dev_addr, ETH_ALEN) == 0) {
600                 /* FromDS frame with own addr as DA */
601         } else
602                 return 0;
603
604         if (skb->len < 24 + 8)
605                 return 0;
606
607         /* check for port access entity Ethernet type */
608         pos = skb->data + 24;
609         ethertype = (pos[6] << 8) | pos[7];
610         if (ethertype == ETH_P_PAE)
611                 return 1;
612
613         return 0;
614 }
615
616
617 /* Called only as a tasklet (software IRQ) */
618 static inline int
619 hostap_rx_frame_decrypt(local_info_t *local, struct sk_buff *skb,
620                         struct ieee80211_crypt_data *crypt)
621 {
622         struct ieee80211_hdr_4addr *hdr;
623         int res, hdrlen;
624
625         if (crypt == NULL || crypt->ops->decrypt_mpdu == NULL)
626                 return 0;
627
628         hdr = (struct ieee80211_hdr_4addr *) skb->data;
629         hdrlen = hostap_80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
630
631         if (local->tkip_countermeasures &&
632             strcmp(crypt->ops->name, "TKIP") == 0) {
633                 if (net_ratelimit()) {
634                         printk(KERN_DEBUG "%s: TKIP countermeasures: dropped "
635                                "received packet from " MACSTR "\n",
636                                local->dev->name, MAC2STR(hdr->addr2));
637                 }
638                 return -1;
639         }
640
641         atomic_inc(&crypt->refcnt);
642         res = crypt->ops->decrypt_mpdu(skb, hdrlen, crypt->priv);
643         atomic_dec(&crypt->refcnt);
644         if (res < 0) {
645                 printk(KERN_DEBUG "%s: decryption failed (SA=" MACSTR
646                        ") res=%d\n",
647                        local->dev->name, MAC2STR(hdr->addr2), res);
648                 local->comm_tallies.rx_discards_wep_undecryptable++;
649                 return -1;
650         }
651
652         return res;
653 }
654
655
656 /* Called only as a tasklet (software IRQ) */
657 static inline int
658 hostap_rx_frame_decrypt_msdu(local_info_t *local, struct sk_buff *skb,
659                              int keyidx, struct ieee80211_crypt_data *crypt)
660 {
661         struct ieee80211_hdr_4addr *hdr;
662         int res, hdrlen;
663
664         if (crypt == NULL || crypt->ops->decrypt_msdu == NULL)
665                 return 0;
666
667         hdr = (struct ieee80211_hdr_4addr *) skb->data;
668         hdrlen = hostap_80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
669
670         atomic_inc(&crypt->refcnt);
671         res = crypt->ops->decrypt_msdu(skb, keyidx, hdrlen, crypt->priv);
672         atomic_dec(&crypt->refcnt);
673         if (res < 0) {
674                 printk(KERN_DEBUG "%s: MSDU decryption/MIC verification failed"
675                        " (SA=" MACSTR " keyidx=%d)\n",
676                        local->dev->name, MAC2STR(hdr->addr2), keyidx);
677                 return -1;
678         }
679
680         return 0;
681 }
682
683
684 /* All received frames are sent to this function. @skb contains the frame in
685  * IEEE 802.11 format, i.e., in the format it was sent over air.
686  * This function is called only as a tasklet (software IRQ). */
687 void hostap_80211_rx(struct net_device *dev, struct sk_buff *skb,
688                      struct hostap_80211_rx_status *rx_stats)
689 {
690         struct hostap_interface *iface;
691         local_info_t *local;
692         struct ieee80211_hdr_4addr *hdr;
693         size_t hdrlen;
694         u16 fc, type, stype, sc;
695         struct net_device *wds = NULL;
696         struct net_device_stats *stats;
697         unsigned int frag;
698         u8 *payload;
699         struct sk_buff *skb2 = NULL;
700         u16 ethertype;
701         int frame_authorized = 0;
702         int from_assoc_ap = 0;
703         u8 dst[ETH_ALEN];
704         u8 src[ETH_ALEN];
705         struct ieee80211_crypt_data *crypt = NULL;
706         void *sta = NULL;
707         int keyidx = 0;
708
709         iface = netdev_priv(dev);
710         local = iface->local;
711         iface->stats.rx_packets++;
712         iface->stats.rx_bytes += skb->len;
713
714         /* dev is the master radio device; change this to be the default
715          * virtual interface (this may be changed to WDS device below) */
716         dev = local->ddev;
717         iface = netdev_priv(dev);
718
719         hdr = (struct ieee80211_hdr_4addr *) skb->data;
720         stats = hostap_get_stats(dev);
721
722         if (skb->len < 10)
723                 goto rx_dropped;
724
725         fc = le16_to_cpu(hdr->frame_ctl);
726         type = WLAN_FC_GET_TYPE(fc);
727         stype = WLAN_FC_GET_STYPE(fc);
728         sc = le16_to_cpu(hdr->seq_ctl);
729         frag = WLAN_GET_SEQ_FRAG(sc);
730         hdrlen = hostap_80211_get_hdrlen(fc);
731
732         /* Put this code here so that we avoid duplicating it in all
733          * Rx paths. - Jean II */
734 #ifdef IW_WIRELESS_SPY          /* defined in iw_handler.h */
735         /* If spy monitoring on */
736         if (iface->spy_data.spy_number > 0) {
737                 struct iw_quality wstats;
738                 wstats.level = rx_stats->signal;
739                 wstats.noise = rx_stats->noise;
740                 wstats.updated = IW_QUAL_LEVEL_UPDATED | IW_QUAL_NOISE_UPDATED
741                         | IW_QUAL_QUAL_INVALID | IW_QUAL_DBM;
742                 /* Update spy records */
743                 wireless_spy_update(dev, hdr->addr2, &wstats);
744         }
745 #endif /* IW_WIRELESS_SPY */
746         hostap_update_rx_stats(local->ap, hdr, rx_stats);
747
748         if (local->iw_mode == IW_MODE_MONITOR) {
749                 monitor_rx(dev, skb, rx_stats);
750                 return;
751         }
752
753         if (local->host_decrypt) {
754                 int idx = 0;
755                 if (skb->len >= hdrlen + 3)
756                         idx = skb->data[hdrlen + 3] >> 6;
757                 crypt = local->crypt[idx];
758                 sta = NULL;
759
760                 /* Use station specific key to override default keys if the
761                  * receiver address is a unicast address ("individual RA"). If
762                  * bcrx_sta_key parameter is set, station specific key is used
763                  * even with broad/multicast targets (this is against IEEE
764                  * 802.11, but makes it easier to use different keys with
765                  * stations that do not support WEP key mapping). */
766
767                 if (!(hdr->addr1[0] & 0x01) || local->bcrx_sta_key)
768                         (void) hostap_handle_sta_crypto(local, hdr, &crypt,
769                                                         &sta);
770
771                 /* allow NULL decrypt to indicate an station specific override
772                  * for default encryption */
773                 if (crypt && (crypt->ops == NULL ||
774                               crypt->ops->decrypt_mpdu == NULL))
775                         crypt = NULL;
776
777                 if (!crypt && (fc & IEEE80211_FCTL_PROTECTED)) {
778 #if 0
779                         /* This seems to be triggered by some (multicast?)
780                          * frames from other than current BSS, so just drop the
781                          * frames silently instead of filling system log with
782                          * these reports. */
783                         printk(KERN_DEBUG "%s: WEP decryption failed (not set)"
784                                " (SA=" MACSTR ")\n",
785                                local->dev->name, MAC2STR(hdr->addr2));
786 #endif
787                         local->comm_tallies.rx_discards_wep_undecryptable++;
788                         goto rx_dropped;
789                 }
790         }
791
792         if (type != IEEE80211_FTYPE_DATA) {
793                 if (type == IEEE80211_FTYPE_MGMT &&
794                     stype == IEEE80211_STYPE_AUTH &&
795                     fc & IEEE80211_FCTL_PROTECTED && local->host_decrypt &&
796                     (keyidx = hostap_rx_frame_decrypt(local, skb, crypt)) < 0)
797                 {
798                         printk(KERN_DEBUG "%s: failed to decrypt mgmt::auth "
799                                "from " MACSTR "\n", dev->name,
800                                MAC2STR(hdr->addr2));
801                         /* TODO: could inform hostapd about this so that it
802                          * could send auth failure report */
803                         goto rx_dropped;
804                 }
805
806                 if (hostap_rx_frame_mgmt(local, skb, rx_stats, type, stype))
807                         goto rx_dropped;
808                 else
809                         goto rx_exit;
810         }
811
812         /* Data frame - extract src/dst addresses */
813         if (skb->len < IEEE80211_DATA_HDR3_LEN)
814                 goto rx_dropped;
815
816         switch (fc & (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
817         case IEEE80211_FCTL_FROMDS:
818                 memcpy(dst, hdr->addr1, ETH_ALEN);
819                 memcpy(src, hdr->addr3, ETH_ALEN);
820                 break;
821         case IEEE80211_FCTL_TODS:
822                 memcpy(dst, hdr->addr3, ETH_ALEN);
823                 memcpy(src, hdr->addr2, ETH_ALEN);
824                 break;
825         case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS:
826                 if (skb->len < IEEE80211_DATA_HDR4_LEN)
827                         goto rx_dropped;
828                 memcpy(dst, hdr->addr3, ETH_ALEN);
829                 memcpy(src, hdr->addr4, ETH_ALEN);
830                 break;
831         case 0:
832                 memcpy(dst, hdr->addr1, ETH_ALEN);
833                 memcpy(src, hdr->addr2, ETH_ALEN);
834                 break;
835         }
836
837         if (hostap_rx_frame_wds(local, hdr, fc, &wds))
838                 goto rx_dropped;
839         if (wds) {
840                 skb->dev = dev = wds;
841                 stats = hostap_get_stats(dev);
842         }
843
844         if (local->iw_mode == IW_MODE_MASTER && !wds &&
845             (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
846             IEEE80211_FCTL_FROMDS &&
847             local->stadev &&
848             memcmp(hdr->addr2, local->assoc_ap_addr, ETH_ALEN) == 0) {
849                 /* Frame from BSSID of the AP for which we are a client */
850                 skb->dev = dev = local->stadev;
851                 stats = hostap_get_stats(dev);
852                 from_assoc_ap = 1;
853         }
854
855         dev->last_rx = jiffies;
856
857         if ((local->iw_mode == IW_MODE_MASTER ||
858              local->iw_mode == IW_MODE_REPEAT) &&
859             !from_assoc_ap) {
860                 switch (hostap_handle_sta_rx(local, dev, skb, rx_stats,
861                                              wds != NULL)) {
862                 case AP_RX_CONTINUE_NOT_AUTHORIZED:
863                         frame_authorized = 0;
864                         break;
865                 case AP_RX_CONTINUE:
866                         frame_authorized = 1;
867                         break;
868                 case AP_RX_DROP:
869                         goto rx_dropped;
870                 case AP_RX_EXIT:
871                         goto rx_exit;
872                 }
873         }
874
875         /* Nullfunc frames may have PS-bit set, so they must be passed to
876          * hostap_handle_sta_rx() before being dropped here. */
877         if (stype != IEEE80211_STYPE_DATA &&
878             stype != IEEE80211_STYPE_DATA_CFACK &&
879             stype != IEEE80211_STYPE_DATA_CFPOLL &&
880             stype != IEEE80211_STYPE_DATA_CFACKPOLL) {
881                 if (stype != IEEE80211_STYPE_NULLFUNC)
882                         printk(KERN_DEBUG "%s: RX: dropped data frame "
883                                "with no data (type=0x%02x, subtype=0x%02x)\n",
884                                dev->name, type >> 2, stype >> 4);
885                 goto rx_dropped;
886         }
887
888         /* skb: hdr + (possibly fragmented, possibly encrypted) payload */
889
890         if (local->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
891             (keyidx = hostap_rx_frame_decrypt(local, skb, crypt)) < 0)
892                 goto rx_dropped;
893         hdr = (struct ieee80211_hdr_4addr *) skb->data;
894
895         /* skb: hdr + (possibly fragmented) plaintext payload */
896
897         if (local->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
898             (frag != 0 || (fc & IEEE80211_FCTL_MOREFRAGS))) {
899                 int flen;
900                 struct sk_buff *frag_skb =
901                         prism2_frag_cache_get(local, hdr);
902                 if (!frag_skb) {
903                         printk(KERN_DEBUG "%s: Rx cannot get skb from "
904                                "fragment cache (morefrag=%d seq=%u frag=%u)\n",
905                                dev->name, (fc & IEEE80211_FCTL_MOREFRAGS) != 0,
906                                WLAN_GET_SEQ_SEQ(sc) >> 4, frag);
907                         goto rx_dropped;
908                 }
909
910                 flen = skb->len;
911                 if (frag != 0)
912                         flen -= hdrlen;
913
914                 if (frag_skb->tail + flen > frag_skb->end) {
915                         printk(KERN_WARNING "%s: host decrypted and "
916                                "reassembled frame did not fit skb\n",
917                                dev->name);
918                         prism2_frag_cache_invalidate(local, hdr);
919                         goto rx_dropped;
920                 }
921
922                 if (frag == 0) {
923                         /* copy first fragment (including full headers) into
924                          * beginning of the fragment cache skb */
925                         memcpy(skb_put(frag_skb, flen), skb->data, flen);
926                 } else {
927                         /* append frame payload to the end of the fragment
928                          * cache skb */
929                         memcpy(skb_put(frag_skb, flen), skb->data + hdrlen,
930                                flen);
931                 }
932                 dev_kfree_skb(skb);
933                 skb = NULL;
934
935                 if (fc & IEEE80211_FCTL_MOREFRAGS) {
936                         /* more fragments expected - leave the skb in fragment
937                          * cache for now; it will be delivered to upper layers
938                          * after all fragments have been received */
939                         goto rx_exit;
940                 }
941
942                 /* this was the last fragment and the frame will be
943                  * delivered, so remove skb from fragment cache */
944                 skb = frag_skb;
945                 hdr = (struct ieee80211_hdr_4addr *) skb->data;
946                 prism2_frag_cache_invalidate(local, hdr);
947         }
948
949         /* skb: hdr + (possible reassembled) full MSDU payload; possibly still
950          * encrypted/authenticated */
951
952         if (local->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
953             hostap_rx_frame_decrypt_msdu(local, skb, keyidx, crypt))
954                 goto rx_dropped;
955
956         hdr = (struct ieee80211_hdr_4addr *) skb->data;
957         if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !local->open_wep) {
958                 if (local->ieee_802_1x &&
959                     hostap_is_eapol_frame(local, skb)) {
960                         /* pass unencrypted EAPOL frames even if encryption is
961                          * configured */
962                         PDEBUG(DEBUG_EXTRA2, "%s: RX: IEEE 802.1X - passing "
963                                "unencrypted EAPOL frame\n", local->dev->name);
964                 } else {
965                         printk(KERN_DEBUG "%s: encryption configured, but RX "
966                                "frame not encrypted (SA=" MACSTR ")\n",
967                                local->dev->name, MAC2STR(hdr->addr2));
968                         goto rx_dropped;
969                 }
970         }
971
972         if (local->drop_unencrypted && !(fc & IEEE80211_FCTL_PROTECTED) &&
973             !hostap_is_eapol_frame(local, skb)) {
974                 if (net_ratelimit()) {
975                         printk(KERN_DEBUG "%s: dropped unencrypted RX data "
976                                "frame from " MACSTR " (drop_unencrypted=1)\n",
977                                dev->name, MAC2STR(hdr->addr2));
978                 }
979                 goto rx_dropped;
980         }
981
982         /* skb: hdr + (possible reassembled) full plaintext payload */
983
984         payload = skb->data + hdrlen;
985         ethertype = (payload[6] << 8) | payload[7];
986
987         /* If IEEE 802.1X is used, check whether the port is authorized to send
988          * the received frame. */
989         if (local->ieee_802_1x && local->iw_mode == IW_MODE_MASTER) {
990                 if (ethertype == ETH_P_PAE) {
991                         PDEBUG(DEBUG_EXTRA2, "%s: RX: IEEE 802.1X frame\n",
992                                dev->name);
993                         if (local->hostapd && local->apdev) {
994                                 /* Send IEEE 802.1X frames to the user
995                                  * space daemon for processing */
996                                 prism2_rx_80211(local->apdev, skb, rx_stats,
997                                                 PRISM2_RX_MGMT);
998                                 local->apdevstats.rx_packets++;
999                                 local->apdevstats.rx_bytes += skb->len;
1000                                 goto rx_exit;
1001                         }
1002                 } else if (!frame_authorized) {
1003                         printk(KERN_DEBUG "%s: dropped frame from "
1004                                "unauthorized port (IEEE 802.1X): "
1005                                "ethertype=0x%04x\n",
1006                                dev->name, ethertype);
1007                         goto rx_dropped;
1008                 }
1009         }
1010
1011         /* convert hdr + possible LLC headers into Ethernet header */
1012         if (skb->len - hdrlen >= 8 &&
1013             ((memcmp(payload, rfc1042_header, 6) == 0 &&
1014               ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1015              memcmp(payload, bridge_tunnel_header, 6) == 0)) {
1016                 /* remove RFC1042 or Bridge-Tunnel encapsulation and
1017                  * replace EtherType */
1018                 skb_pull(skb, hdrlen + 6);
1019                 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
1020                 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
1021         } else {
1022                 u16 len;
1023                 /* Leave Ethernet header part of hdr and full payload */
1024                 skb_pull(skb, hdrlen);
1025                 len = htons(skb->len);
1026                 memcpy(skb_push(skb, 2), &len, 2);
1027                 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
1028                 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
1029         }
1030
1031         if (wds && ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
1032                     IEEE80211_FCTL_TODS) &&
1033             skb->len >= ETH_HLEN + ETH_ALEN) {
1034                 /* Non-standard frame: get addr4 from its bogus location after
1035                  * the payload */
1036                 memcpy(skb->data + ETH_ALEN,
1037                        skb->data + skb->len - ETH_ALEN, ETH_ALEN);
1038                 skb_trim(skb, skb->len - ETH_ALEN);
1039         }
1040
1041         stats->rx_packets++;
1042         stats->rx_bytes += skb->len;
1043
1044         if (local->iw_mode == IW_MODE_MASTER && !wds &&
1045             local->ap->bridge_packets) {
1046                 if (dst[0] & 0x01) {
1047                         /* copy multicast frame both to the higher layers and
1048                          * to the wireless media */
1049                         local->ap->bridged_multicast++;
1050                         skb2 = skb_clone(skb, GFP_ATOMIC);
1051                         if (skb2 == NULL)
1052                                 printk(KERN_DEBUG "%s: skb_clone failed for "
1053                                        "multicast frame\n", dev->name);
1054                 } else if (hostap_is_sta_authorized(local->ap, dst)) {
1055                         /* send frame directly to the associated STA using
1056                          * wireless media and not passing to higher layers */
1057                         local->ap->bridged_unicast++;
1058                         skb2 = skb;
1059                         skb = NULL;
1060                 }
1061         }
1062
1063         if (skb2 != NULL) {
1064                 /* send to wireless media */
1065                 skb2->protocol = __constant_htons(ETH_P_802_3);
1066                 skb2->mac.raw = skb2->nh.raw = skb2->data;
1067                 /* skb2->nh.raw = skb2->data + ETH_HLEN; */
1068                 skb2->dev = dev;
1069                 dev_queue_xmit(skb2);
1070         }
1071
1072         if (skb) {
1073                 skb->protocol = eth_type_trans(skb, dev);
1074                 memset(skb->cb, 0, sizeof(skb->cb));
1075                 skb->dev = dev;
1076                 netif_rx(skb);
1077         }
1078
1079  rx_exit:
1080         if (sta)
1081                 hostap_handle_sta_release(sta);
1082         return;
1083
1084  rx_dropped:
1085         dev_kfree_skb(skb);
1086
1087         stats->rx_dropped++;
1088         goto rx_exit;
1089 }
1090
1091
1092 EXPORT_SYMBOL(hostap_80211_rx);