Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2002-2005, Instant802 Networks, Inc. |
| 3 | * Copyright 2005-2006, Devicescape Software, Inc. |
| 4 | * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz> |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 5 | * Copyright 2007-2010 Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
S.Çağlar Onur | ab46623 | 2008-02-14 17:36:47 +0200 | [diff] [blame] | 12 | #include <linux/jiffies.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 14 | #include <linux/kernel.h> |
| 15 | #include <linux/skbuff.h> |
| 16 | #include <linux/netdevice.h> |
| 17 | #include <linux/etherdevice.h> |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 18 | #include <linux/rcupdate.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 19 | #include <linux/export.h> |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 20 | #include <net/mac80211.h> |
| 21 | #include <net/ieee80211_radiotap.h> |
Johannes Berg | d26ad37 | 2012-02-20 11:38:41 +0100 | [diff] [blame] | 22 | #include <asm/unaligned.h> |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 23 | |
| 24 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 25 | #include "driver-ops.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 26 | #include "led.h" |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 27 | #include "mesh.h" |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 28 | #include "wep.h" |
| 29 | #include "wpa.h" |
| 30 | #include "tkip.h" |
| 31 | #include "wme.h" |
Johannes Berg | 1d8d3de | 2011-12-16 15:28:57 +0100 | [diff] [blame] | 32 | #include "rate.h" |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 33 | |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 34 | /* |
| 35 | * monitor mode reception |
| 36 | * |
| 37 | * This function cleans up the SKB, i.e. it removes all the stuff |
| 38 | * only useful for monitoring. |
| 39 | */ |
| 40 | static struct sk_buff *remove_monitor_info(struct ieee80211_local *local, |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 41 | struct sk_buff *skb) |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 42 | { |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 43 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
| 44 | |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 45 | if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS) { |
| 46 | if (likely(skb->len > FCS_LEN)) |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 47 | __pskb_trim(skb, skb->len - FCS_LEN); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 48 | else { |
| 49 | /* driver bug */ |
| 50 | WARN_ON(1); |
| 51 | dev_kfree_skb(skb); |
| 52 | skb = NULL; |
| 53 | } |
| 54 | } |
| 55 | |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 56 | if (status->vendor_radiotap_len) |
| 57 | __pskb_pull(skb, status->vendor_radiotap_len); |
| 58 | |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 59 | return skb; |
| 60 | } |
| 61 | |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 62 | static inline int should_drop_frame(struct sk_buff *skb, int present_fcs_len) |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 63 | { |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 64 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
Johannes Berg | 605f1a5 | 2012-11-22 10:20:58 +0100 | [diff] [blame^] | 65 | struct ieee80211_hdr *hdr; |
| 66 | |
| 67 | hdr = (void *)(skb->data + status->vendor_radiotap_len); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 68 | |
Johannes Berg | 4c29867 | 2012-07-05 11:34:31 +0200 | [diff] [blame] | 69 | if (status->flag & (RX_FLAG_FAILED_FCS_CRC | |
| 70 | RX_FLAG_FAILED_PLCP_CRC | |
| 71 | RX_FLAG_AMPDU_IS_ZEROLEN)) |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 72 | return 1; |
Johannes Berg | 605f1a5 | 2012-11-22 10:20:58 +0100 | [diff] [blame^] | 73 | if (unlikely(skb->len < 16 + present_fcs_len + |
| 74 | status->vendor_radiotap_len)) |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 75 | return 1; |
Harvey Harrison | 87228f5 | 2008-06-11 14:21:59 -0700 | [diff] [blame] | 76 | if (ieee80211_is_ctl(hdr->frame_control) && |
| 77 | !ieee80211_is_pspoll(hdr->frame_control) && |
| 78 | !ieee80211_is_back_req(hdr->frame_control)) |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 79 | return 1; |
| 80 | return 0; |
| 81 | } |
| 82 | |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 83 | static int |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 84 | ieee80211_rx_radiotap_space(struct ieee80211_local *local, |
| 85 | struct ieee80211_rx_status *status) |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 86 | { |
| 87 | int len; |
| 88 | |
| 89 | /* always present fields */ |
| 90 | len = sizeof(struct ieee80211_radiotap_header) + 9; |
| 91 | |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 92 | /* allocate extra bitmap */ |
| 93 | if (status->vendor_radiotap_len) |
| 94 | len += 4; |
| 95 | |
| 96 | if (ieee80211_have_rx_timestamp(status)) { |
| 97 | len = ALIGN(len, 8); |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 98 | len += 8; |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 99 | } |
Johannes Berg | 7fee537 | 2009-01-30 11:13:06 +0100 | [diff] [blame] | 100 | if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM) |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 101 | len += 1; |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 102 | |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 103 | /* padding for RX_FLAGS if necessary */ |
| 104 | len = ALIGN(len, 2); |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 105 | |
Johannes Berg | 6d744ba | 2011-01-27 14:13:17 +0100 | [diff] [blame] | 106 | if (status->flag & RX_FLAG_HT) /* HT info */ |
| 107 | len += 3; |
| 108 | |
Johannes Berg | 4c29867 | 2012-07-05 11:34:31 +0200 | [diff] [blame] | 109 | if (status->flag & RX_FLAG_AMPDU_DETAILS) { |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 110 | len = ALIGN(len, 4); |
Johannes Berg | 4c29867 | 2012-07-05 11:34:31 +0200 | [diff] [blame] | 111 | len += 8; |
| 112 | } |
| 113 | |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 114 | if (status->vendor_radiotap_len) { |
| 115 | if (WARN_ON_ONCE(status->vendor_radiotap_align == 0)) |
| 116 | status->vendor_radiotap_align = 1; |
| 117 | /* align standard part of vendor namespace */ |
| 118 | len = ALIGN(len, 2); |
| 119 | /* allocate standard part of vendor namespace */ |
| 120 | len += 6; |
| 121 | /* align vendor-defined part */ |
| 122 | len = ALIGN(len, status->vendor_radiotap_align); |
| 123 | /* vendor-defined part is already in skb */ |
| 124 | } |
| 125 | |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 126 | return len; |
| 127 | } |
| 128 | |
Johannes Berg | 00ea6de | 2012-09-05 15:54:51 +0200 | [diff] [blame] | 129 | /* |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 130 | * ieee80211_add_rx_radiotap_header - add radiotap header |
| 131 | * |
| 132 | * add a radiotap header containing all the fields which the hardware provided. |
| 133 | */ |
| 134 | static void |
| 135 | ieee80211_add_rx_radiotap_header(struct ieee80211_local *local, |
| 136 | struct sk_buff *skb, |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 137 | struct ieee80211_rate *rate, |
Felix Fietkau | 973ef21 | 2012-04-16 14:56:48 +0200 | [diff] [blame] | 138 | int rtap_len, bool has_fcs) |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 139 | { |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 140 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 141 | struct ieee80211_radiotap_header *rthdr; |
| 142 | unsigned char *pos; |
Johannes Berg | 6a86b9c | 2009-10-28 09:58:52 +0100 | [diff] [blame] | 143 | u16 rx_flags = 0; |
Thomas Pedersen | f4bda33 | 2012-11-13 10:46:27 -0800 | [diff] [blame] | 144 | int mpdulen; |
| 145 | |
| 146 | mpdulen = skb->len; |
| 147 | if (!(has_fcs && (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS))) |
| 148 | mpdulen += FCS_LEN; |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 149 | |
| 150 | rthdr = (struct ieee80211_radiotap_header *)skb_push(skb, rtap_len); |
| 151 | memset(rthdr, 0, rtap_len); |
| 152 | |
| 153 | /* radiotap header, set always present flags */ |
| 154 | rthdr->it_present = |
| 155 | cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) | |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 156 | (1 << IEEE80211_RADIOTAP_CHANNEL) | |
| 157 | (1 << IEEE80211_RADIOTAP_ANTENNA) | |
| 158 | (1 << IEEE80211_RADIOTAP_RX_FLAGS)); |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 159 | rthdr->it_len = cpu_to_le16(rtap_len + status->vendor_radiotap_len); |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 160 | |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 161 | pos = (unsigned char *)(rthdr + 1); |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 162 | |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 163 | if (status->vendor_radiotap_len) { |
| 164 | rthdr->it_present |= |
| 165 | cpu_to_le32(BIT(IEEE80211_RADIOTAP_VENDOR_NAMESPACE)) | |
| 166 | cpu_to_le32(BIT(IEEE80211_RADIOTAP_EXT)); |
| 167 | put_unaligned_le32(status->vendor_radiotap_bitmap, pos); |
| 168 | pos += 4; |
| 169 | } |
| 170 | |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 171 | /* the order of the following fields is important */ |
| 172 | |
| 173 | /* IEEE80211_RADIOTAP_TSFT */ |
Thomas Pedersen | f4bda33 | 2012-11-13 10:46:27 -0800 | [diff] [blame] | 174 | if (ieee80211_have_rx_timestamp(status)) { |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 175 | /* padding */ |
| 176 | while ((pos - (u8 *)rthdr) & 7) |
| 177 | *pos++ = 0; |
Thomas Pedersen | f4bda33 | 2012-11-13 10:46:27 -0800 | [diff] [blame] | 178 | put_unaligned_le64( |
| 179 | ieee80211_calculate_rx_timestamp(local, status, |
| 180 | mpdulen, 0), |
| 181 | pos); |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 182 | rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT); |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 183 | pos += 8; |
| 184 | } |
| 185 | |
| 186 | /* IEEE80211_RADIOTAP_FLAGS */ |
Felix Fietkau | 973ef21 | 2012-04-16 14:56:48 +0200 | [diff] [blame] | 187 | if (has_fcs && (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)) |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 188 | *pos |= IEEE80211_RADIOTAP_F_FCS; |
Johannes Berg | aae8983 | 2009-03-13 12:52:10 +0100 | [diff] [blame] | 189 | if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC)) |
| 190 | *pos |= IEEE80211_RADIOTAP_F_BADFCS; |
Bruno Randolf | b4f28bb | 2008-07-30 17:19:55 +0200 | [diff] [blame] | 191 | if (status->flag & RX_FLAG_SHORTPRE) |
| 192 | *pos |= IEEE80211_RADIOTAP_F_SHORTPRE; |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 193 | pos++; |
| 194 | |
| 195 | /* IEEE80211_RADIOTAP_RATE */ |
Johannes Berg | f8d1ccf | 2011-11-08 12:28:33 +0100 | [diff] [blame] | 196 | if (!rate || status->flag & RX_FLAG_HT) { |
Jouni Malinen | 0fb8ca4 | 2008-12-12 14:38:33 +0200 | [diff] [blame] | 197 | /* |
Johannes Berg | f8d1ccf | 2011-11-08 12:28:33 +0100 | [diff] [blame] | 198 | * Without rate information don't add it. If we have, |
Mohammed Shafi Shajakhan | 38f37be | 2011-02-07 10:10:04 +0530 | [diff] [blame] | 199 | * MCS information is a separate field in radiotap, |
Johannes Berg | 73b4809 | 2011-04-18 17:05:21 +0200 | [diff] [blame] | 200 | * added below. The byte here is needed as padding |
| 201 | * for the channel though, so initialise it to 0. |
Jouni Malinen | 0fb8ca4 | 2008-12-12 14:38:33 +0200 | [diff] [blame] | 202 | */ |
| 203 | *pos = 0; |
Jouni Malinen | 8d6f658 | 2008-12-15 10:37:50 +0200 | [diff] [blame] | 204 | } else { |
Jouni Malinen | ebe6c7b | 2009-01-10 11:47:33 +0200 | [diff] [blame] | 205 | rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_RATE); |
Jouni Malinen | 0fb8ca4 | 2008-12-12 14:38:33 +0200 | [diff] [blame] | 206 | *pos = rate->bitrate / 5; |
Jouni Malinen | 8d6f658 | 2008-12-15 10:37:50 +0200 | [diff] [blame] | 207 | } |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 208 | pos++; |
| 209 | |
| 210 | /* IEEE80211_RADIOTAP_CHANNEL */ |
Johannes Berg | 6a86b9c | 2009-10-28 09:58:52 +0100 | [diff] [blame] | 211 | put_unaligned_le16(status->freq, pos); |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 212 | pos += 2; |
| 213 | if (status->band == IEEE80211_BAND_5GHZ) |
Johannes Berg | 6a86b9c | 2009-10-28 09:58:52 +0100 | [diff] [blame] | 214 | put_unaligned_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ, |
| 215 | pos); |
Johannes Berg | 5f0b7de | 2009-11-16 13:58:21 +0100 | [diff] [blame] | 216 | else if (status->flag & RX_FLAG_HT) |
| 217 | put_unaligned_le16(IEEE80211_CHAN_DYN | IEEE80211_CHAN_2GHZ, |
| 218 | pos); |
Johannes Berg | f8d1ccf | 2011-11-08 12:28:33 +0100 | [diff] [blame] | 219 | else if (rate && rate->flags & IEEE80211_RATE_ERP_G) |
Johannes Berg | 6a86b9c | 2009-10-28 09:58:52 +0100 | [diff] [blame] | 220 | put_unaligned_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ, |
| 221 | pos); |
Johannes Berg | f8d1ccf | 2011-11-08 12:28:33 +0100 | [diff] [blame] | 222 | else if (rate) |
Johannes Berg | 6a86b9c | 2009-10-28 09:58:52 +0100 | [diff] [blame] | 223 | put_unaligned_le16(IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ, |
| 224 | pos); |
Johannes Berg | f8d1ccf | 2011-11-08 12:28:33 +0100 | [diff] [blame] | 225 | else |
| 226 | put_unaligned_le16(IEEE80211_CHAN_2GHZ, pos); |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 227 | pos += 2; |
| 228 | |
| 229 | /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */ |
Felix Fietkau | fe8431f | 2012-03-01 18:00:07 +0100 | [diff] [blame] | 230 | if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM && |
| 231 | !(status->flag & RX_FLAG_NO_SIGNAL_VAL)) { |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 232 | *pos = status->signal; |
| 233 | rthdr->it_present |= |
| 234 | cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL); |
| 235 | pos++; |
| 236 | } |
| 237 | |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 238 | /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */ |
| 239 | |
| 240 | /* IEEE80211_RADIOTAP_ANTENNA */ |
| 241 | *pos = status->antenna; |
| 242 | pos++; |
| 243 | |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 244 | /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */ |
| 245 | |
| 246 | /* IEEE80211_RADIOTAP_RX_FLAGS */ |
| 247 | /* ensure 2 byte alignment for the 2 byte field as required */ |
Johannes Berg | 6a86b9c | 2009-10-28 09:58:52 +0100 | [diff] [blame] | 248 | if ((pos - (u8 *)rthdr) & 1) |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 249 | *pos++ = 0; |
Johannes Berg | aae8983 | 2009-03-13 12:52:10 +0100 | [diff] [blame] | 250 | if (status->flag & RX_FLAG_FAILED_PLCP_CRC) |
Johannes Berg | 6a86b9c | 2009-10-28 09:58:52 +0100 | [diff] [blame] | 251 | rx_flags |= IEEE80211_RADIOTAP_F_RX_BADPLCP; |
| 252 | put_unaligned_le16(rx_flags, pos); |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 253 | pos += 2; |
Johannes Berg | 6d744ba | 2011-01-27 14:13:17 +0100 | [diff] [blame] | 254 | |
| 255 | if (status->flag & RX_FLAG_HT) { |
| 256 | rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_MCS); |
Johannes Berg | ac55d2f | 2012-05-10 09:09:10 +0200 | [diff] [blame] | 257 | *pos++ = local->hw.radiotap_mcs_details; |
Johannes Berg | 6d744ba | 2011-01-27 14:13:17 +0100 | [diff] [blame] | 258 | *pos = 0; |
| 259 | if (status->flag & RX_FLAG_SHORT_GI) |
| 260 | *pos |= IEEE80211_RADIOTAP_MCS_SGI; |
| 261 | if (status->flag & RX_FLAG_40MHZ) |
| 262 | *pos |= IEEE80211_RADIOTAP_MCS_BW_40; |
Johannes Berg | ac55d2f | 2012-05-10 09:09:10 +0200 | [diff] [blame] | 263 | if (status->flag & RX_FLAG_HT_GF) |
| 264 | *pos |= IEEE80211_RADIOTAP_MCS_FMT_GF; |
Johannes Berg | 6d744ba | 2011-01-27 14:13:17 +0100 | [diff] [blame] | 265 | pos++; |
| 266 | *pos++ = status->rate_idx; |
| 267 | } |
Johannes Berg | 4c29867 | 2012-07-05 11:34:31 +0200 | [diff] [blame] | 268 | |
| 269 | if (status->flag & RX_FLAG_AMPDU_DETAILS) { |
| 270 | u16 flags = 0; |
| 271 | |
| 272 | /* ensure 4 byte alignment */ |
| 273 | while ((pos - (u8 *)rthdr) & 3) |
| 274 | pos++; |
| 275 | rthdr->it_present |= |
| 276 | cpu_to_le32(1 << IEEE80211_RADIOTAP_AMPDU_STATUS); |
| 277 | put_unaligned_le32(status->ampdu_reference, pos); |
| 278 | pos += 4; |
| 279 | if (status->flag & RX_FLAG_AMPDU_REPORT_ZEROLEN) |
| 280 | flags |= IEEE80211_RADIOTAP_AMPDU_REPORT_ZEROLEN; |
| 281 | if (status->flag & RX_FLAG_AMPDU_IS_ZEROLEN) |
| 282 | flags |= IEEE80211_RADIOTAP_AMPDU_IS_ZEROLEN; |
| 283 | if (status->flag & RX_FLAG_AMPDU_LAST_KNOWN) |
| 284 | flags |= IEEE80211_RADIOTAP_AMPDU_LAST_KNOWN; |
| 285 | if (status->flag & RX_FLAG_AMPDU_IS_LAST) |
| 286 | flags |= IEEE80211_RADIOTAP_AMPDU_IS_LAST; |
| 287 | if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_ERROR) |
| 288 | flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_ERR; |
| 289 | if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN) |
| 290 | flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_KNOWN; |
| 291 | put_unaligned_le16(flags, pos); |
| 292 | pos += 2; |
| 293 | if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN) |
| 294 | *pos++ = status->ampdu_delimiter_crc; |
| 295 | else |
| 296 | *pos++ = 0; |
| 297 | *pos++ = 0; |
| 298 | } |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 299 | |
| 300 | if (status->vendor_radiotap_len) { |
| 301 | /* ensure 2 byte alignment for the vendor field as required */ |
| 302 | if ((pos - (u8 *)rthdr) & 1) |
| 303 | *pos++ = 0; |
| 304 | *pos++ = status->vendor_radiotap_oui[0]; |
| 305 | *pos++ = status->vendor_radiotap_oui[1]; |
| 306 | *pos++ = status->vendor_radiotap_oui[2]; |
| 307 | *pos++ = status->vendor_radiotap_subns; |
| 308 | put_unaligned_le16(status->vendor_radiotap_len, pos); |
| 309 | pos += 2; |
| 310 | /* align the actual payload as requested */ |
| 311 | while ((pos - (u8 *)rthdr) & (status->vendor_radiotap_align - 1)) |
| 312 | *pos++ = 0; |
| 313 | } |
Bruno Randolf | 601ae7f | 2008-05-08 19:22:43 +0200 | [diff] [blame] | 314 | } |
| 315 | |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 316 | /* |
| 317 | * This function copies a received frame to all monitor interfaces and |
| 318 | * returns a cleaned-up SKB that no longer includes the FCS nor the |
| 319 | * radiotap header the driver might have added. |
| 320 | */ |
| 321 | static struct sk_buff * |
| 322 | ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 323 | struct ieee80211_rate *rate) |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 324 | { |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 325 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(origskb); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 326 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 293702a | 2012-03-02 13:18:19 +0100 | [diff] [blame] | 327 | int needed_headroom; |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 328 | struct sk_buff *skb, *skb2; |
| 329 | struct net_device *prev_dev = NULL; |
| 330 | int present_fcs_len = 0; |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 331 | |
| 332 | /* |
| 333 | * First, we may need to make a copy of the skb because |
| 334 | * (1) we need to modify it for radiotap (if not present), and |
| 335 | * (2) the other RX handlers will modify the skb we got. |
| 336 | * |
| 337 | * We don't need to, of course, if we aren't going to return |
| 338 | * the SKB because it has a bad FCS/PLCP checksum. |
| 339 | */ |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 340 | |
| 341 | /* room for the radiotap header based on driver features */ |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 342 | needed_headroom = ieee80211_rx_radiotap_space(local, status); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 343 | |
| 344 | if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS) |
| 345 | present_fcs_len = FCS_LEN; |
| 346 | |
Johannes Berg | 605f1a5 | 2012-11-22 10:20:58 +0100 | [diff] [blame^] | 347 | /* ensure hdr->frame_control and vendor radiotap data are in skb head */ |
| 348 | if (!pskb_may_pull(origskb, 2 + status->vendor_radiotap_len)) { |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 349 | dev_kfree_skb(origskb); |
| 350 | return NULL; |
| 351 | } |
| 352 | |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 353 | if (!local->monitors) { |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 354 | if (should_drop_frame(origskb, present_fcs_len)) { |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 355 | dev_kfree_skb(origskb); |
| 356 | return NULL; |
| 357 | } |
| 358 | |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 359 | return remove_monitor_info(local, origskb); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 360 | } |
| 361 | |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 362 | if (should_drop_frame(origskb, present_fcs_len)) { |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 363 | /* only need to expand headroom if necessary */ |
| 364 | skb = origskb; |
| 365 | origskb = NULL; |
| 366 | |
| 367 | /* |
| 368 | * This shouldn't trigger often because most devices have an |
| 369 | * RX header they pull before we get here, and that should |
| 370 | * be big enough for our radiotap information. We should |
| 371 | * probably export the length to drivers so that we can have |
| 372 | * them allocate enough headroom to start with. |
| 373 | */ |
| 374 | if (skb_headroom(skb) < needed_headroom && |
Johannes Berg | c49e5ea | 2007-12-11 21:33:42 +0100 | [diff] [blame] | 375 | pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) { |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 376 | dev_kfree_skb(skb); |
| 377 | return NULL; |
| 378 | } |
| 379 | } else { |
| 380 | /* |
| 381 | * Need to make a copy and possibly remove radiotap header |
| 382 | * and FCS from the original. |
| 383 | */ |
| 384 | skb = skb_copy_expand(origskb, needed_headroom, 0, GFP_ATOMIC); |
| 385 | |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 386 | origskb = remove_monitor_info(local, origskb); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 387 | |
| 388 | if (!skb) |
| 389 | return origskb; |
| 390 | } |
| 391 | |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 392 | /* prepend radiotap information */ |
Felix Fietkau | 973ef21 | 2012-04-16 14:56:48 +0200 | [diff] [blame] | 393 | ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom, |
| 394 | true); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 395 | |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 396 | skb_reset_mac_header(skb); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 397 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 398 | skb->pkt_type = PACKET_OTHERHOST; |
| 399 | skb->protocol = htons(ETH_P_802_2); |
| 400 | |
| 401 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 402 | if (sdata->vif.type != NL80211_IFTYPE_MONITOR) |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 403 | continue; |
| 404 | |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 405 | if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) |
| 406 | continue; |
| 407 | |
Johannes Berg | 9607e6b | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 408 | if (!ieee80211_sdata_running(sdata)) |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 409 | continue; |
| 410 | |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 411 | if (prev_dev) { |
| 412 | skb2 = skb_clone(skb, GFP_ATOMIC); |
| 413 | if (skb2) { |
| 414 | skb2->dev = prev_dev; |
John W. Linville | 5548a8a | 2010-06-24 14:25:56 -0400 | [diff] [blame] | 415 | netif_receive_skb(skb2); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 416 | } |
| 417 | } |
| 418 | |
| 419 | prev_dev = sdata->dev; |
| 420 | sdata->dev->stats.rx_packets++; |
| 421 | sdata->dev->stats.rx_bytes += skb->len; |
| 422 | } |
| 423 | |
| 424 | if (prev_dev) { |
| 425 | skb->dev = prev_dev; |
John W. Linville | 5548a8a | 2010-06-24 14:25:56 -0400 | [diff] [blame] | 426 | netif_receive_skb(skb); |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 427 | } else |
| 428 | dev_kfree_skb(skb); |
| 429 | |
| 430 | return origskb; |
| 431 | } |
| 432 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 433 | static void ieee80211_parse_qos(struct ieee80211_rx_data *rx) |
Johannes Berg | 6e0d114 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 434 | { |
Harvey Harrison | 238f74a | 2008-07-02 11:05:34 -0700 | [diff] [blame] | 435 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 436 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 437 | int tid, seqno_idx, security_idx; |
Johannes Berg | 6e0d114 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 438 | |
| 439 | /* does the frame have a qos control field? */ |
Harvey Harrison | 238f74a | 2008-07-02 11:05:34 -0700 | [diff] [blame] | 440 | if (ieee80211_is_data_qos(hdr->frame_control)) { |
| 441 | u8 *qc = ieee80211_get_qos_ctl(hdr); |
Johannes Berg | 6e0d114 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 442 | /* frame has qos control */ |
Harvey Harrison | 238f74a | 2008-07-02 11:05:34 -0700 | [diff] [blame] | 443 | tid = *qc & IEEE80211_QOS_CTL_TID_MASK; |
Johannes Berg | 04b7dcf | 2011-06-22 10:06:59 +0200 | [diff] [blame] | 444 | if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT) |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 445 | status->rx_flags |= IEEE80211_RX_AMSDU; |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 446 | |
| 447 | seqno_idx = tid; |
| 448 | security_idx = tid; |
Johannes Berg | 6e0d114 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 449 | } else { |
Johannes Berg | 1411f9b | 2008-07-10 10:11:02 +0200 | [diff] [blame] | 450 | /* |
| 451 | * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"): |
| 452 | * |
| 453 | * Sequence numbers for management frames, QoS data |
| 454 | * frames with a broadcast/multicast address in the |
| 455 | * Address 1 field, and all non-QoS data frames sent |
| 456 | * by QoS STAs are assigned using an additional single |
| 457 | * modulo-4096 counter, [...] |
| 458 | * |
| 459 | * We also use that counter for non-QoS STAs. |
| 460 | */ |
Johannes Berg | 5a306f5 | 2012-11-14 23:22:21 +0100 | [diff] [blame] | 461 | seqno_idx = IEEE80211_NUM_TIDS; |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 462 | security_idx = 0; |
| 463 | if (ieee80211_is_mgmt(hdr->frame_control)) |
Johannes Berg | 5a306f5 | 2012-11-14 23:22:21 +0100 | [diff] [blame] | 464 | security_idx = IEEE80211_NUM_TIDS; |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 465 | tid = 0; |
Johannes Berg | 6e0d114 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 466 | } |
Johannes Berg | 52865dfd | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 467 | |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 468 | rx->seqno_idx = seqno_idx; |
| 469 | rx->security_idx = security_idx; |
Johannes Berg | 6e0d114 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 470 | /* Set skb->priority to 1d tag if highest order bit of TID is not set. |
| 471 | * For now, set skb->priority to 0 for other cases. */ |
| 472 | rx->skb->priority = (tid > 7) ? 0 : tid; |
Johannes Berg | 38f3714 | 2008-01-29 17:07:43 +0100 | [diff] [blame] | 473 | } |
Johannes Berg | 6e0d114 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 474 | |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 475 | /** |
| 476 | * DOC: Packet alignment |
| 477 | * |
| 478 | * Drivers always need to pass packets that are aligned to two-byte boundaries |
| 479 | * to the stack. |
| 480 | * |
| 481 | * Additionally, should, if possible, align the payload data in a way that |
| 482 | * guarantees that the contained IP header is aligned to a four-byte |
| 483 | * boundary. In the case of regular frames, this simply means aligning the |
| 484 | * payload to a four-byte boundary (because either the IP header is directly |
| 485 | * contained, or IV/RFC1042 headers that have a length divisible by four are |
Kalle Valo | 59d9cb0 | 2009-12-17 13:54:57 +0100 | [diff] [blame] | 486 | * in front of it). If the payload data is not properly aligned and the |
| 487 | * architecture doesn't support efficient unaligned operations, mac80211 |
| 488 | * will align the data. |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 489 | * |
| 490 | * With A-MSDU frames, however, the payload data address must yield two modulo |
| 491 | * four because there are 14-byte 802.3 headers within the A-MSDU frames that |
| 492 | * push the IP header further back to a multiple of four again. Thankfully, the |
| 493 | * specs were sane enough this time around to require padding each A-MSDU |
| 494 | * subframe to a length that is a multiple of four. |
| 495 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 496 | * Padding like Atheros hardware adds which is between the 802.11 header and |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 497 | * the payload is not supported, the driver is required to move the 802.11 |
| 498 | * header to be directly in front of the payload in that case. |
| 499 | */ |
| 500 | static void ieee80211_verify_alignment(struct ieee80211_rx_data *rx) |
Johannes Berg | 38f3714 | 2008-01-29 17:07:43 +0100 | [diff] [blame] | 501 | { |
Kalle Valo | 59d9cb0 | 2009-12-17 13:54:57 +0100 | [diff] [blame] | 502 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 503 | WARN_ONCE((unsigned long)rx->skb->data & 1, |
| 504 | "unaligned packet at 0x%p\n", rx->skb->data); |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 505 | #endif |
Johannes Berg | 6e0d114 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 506 | } |
| 507 | |
Ron Rindjunsky | 6368e4b | 2007-12-24 13:36:39 +0200 | [diff] [blame] | 508 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 509 | /* rx handlers */ |
| 510 | |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 511 | static int ieee80211_is_unicast_robust_mgmt_frame(struct sk_buff *skb) |
| 512 | { |
| 513 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 514 | |
| 515 | if (skb->len < 24 || is_multicast_ether_addr(hdr->addr1)) |
| 516 | return 0; |
| 517 | |
| 518 | return ieee80211_is_robust_mgmt_frame(hdr); |
| 519 | } |
| 520 | |
| 521 | |
| 522 | static int ieee80211_is_multicast_robust_mgmt_frame(struct sk_buff *skb) |
| 523 | { |
| 524 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 525 | |
| 526 | if (skb->len < 24 || !is_multicast_ether_addr(hdr->addr1)) |
| 527 | return 0; |
| 528 | |
| 529 | return ieee80211_is_robust_mgmt_frame(hdr); |
| 530 | } |
| 531 | |
| 532 | |
| 533 | /* Get the BIP key index from MMIE; return -1 if this is not a BIP frame */ |
| 534 | static int ieee80211_get_mmie_keyidx(struct sk_buff *skb) |
| 535 | { |
| 536 | struct ieee80211_mgmt *hdr = (struct ieee80211_mgmt *) skb->data; |
| 537 | struct ieee80211_mmie *mmie; |
| 538 | |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 539 | if (skb->len < 24 + sizeof(*mmie) || !is_multicast_ether_addr(hdr->da)) |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 540 | return -1; |
| 541 | |
| 542 | if (!ieee80211_is_robust_mgmt_frame((struct ieee80211_hdr *) hdr)) |
| 543 | return -1; /* not a robust management frame */ |
| 544 | |
| 545 | mmie = (struct ieee80211_mmie *) |
| 546 | (skb->data + skb->len - sizeof(*mmie)); |
| 547 | if (mmie->element_id != WLAN_EID_MMIE || |
| 548 | mmie->length != sizeof(*mmie) - 2) |
| 549 | return -1; |
| 550 | |
| 551 | return le16_to_cpu(mmie->key_id); |
| 552 | } |
| 553 | |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 554 | static ieee80211_rx_result ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx) |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 555 | { |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 556 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 557 | char *dev_addr = rx->sdata->vif.addr; |
Johannes Berg | d6d1a5a | 2008-02-25 16:24:38 +0100 | [diff] [blame] | 558 | |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 559 | if (ieee80211_is_data(hdr->frame_control)) { |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 560 | if (is_multicast_ether_addr(hdr->addr1)) { |
| 561 | if (ieee80211_has_tods(hdr->frame_control) || |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 562 | !ieee80211_has_fromds(hdr->frame_control)) |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 563 | return RX_DROP_MONITOR; |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 564 | if (ether_addr_equal(hdr->addr3, dev_addr)) |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 565 | return RX_DROP_MONITOR; |
| 566 | } else { |
| 567 | if (!ieee80211_has_a4(hdr->frame_control)) |
| 568 | return RX_DROP_MONITOR; |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 569 | if (ether_addr_equal(hdr->addr4, dev_addr)) |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 570 | return RX_DROP_MONITOR; |
| 571 | } |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | /* If there is not an established peer link and this is not a peer link |
| 575 | * establisment frame, beacon or probe, drop the frame. |
| 576 | */ |
| 577 | |
Javier Cardona | 57cf804 | 2011-05-13 10:45:43 -0700 | [diff] [blame] | 578 | if (!rx->sta || sta_plink_state(rx->sta) != NL80211_PLINK_ESTAB) { |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 579 | struct ieee80211_mgmt *mgmt; |
Johannes Berg | d6d1a5a | 2008-02-25 16:24:38 +0100 | [diff] [blame] | 580 | |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 581 | if (!ieee80211_is_mgmt(hdr->frame_control)) |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 582 | return RX_DROP_MONITOR; |
| 583 | |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 584 | if (ieee80211_is_action(hdr->frame_control)) { |
Javier Cardona | d3aaec8a | 2011-05-03 16:57:09 -0700 | [diff] [blame] | 585 | u8 category; |
Johannes Berg | 9b395bc | 2012-10-26 00:36:40 +0200 | [diff] [blame] | 586 | |
| 587 | /* make sure category field is present */ |
| 588 | if (rx->skb->len < IEEE80211_MIN_ACTION_SIZE) |
| 589 | return RX_DROP_MONITOR; |
| 590 | |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 591 | mgmt = (struct ieee80211_mgmt *)hdr; |
Javier Cardona | d3aaec8a | 2011-05-03 16:57:09 -0700 | [diff] [blame] | 592 | category = mgmt->u.action.category; |
| 593 | if (category != WLAN_CATEGORY_MESH_ACTION && |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 594 | category != WLAN_CATEGORY_SELF_PROTECTED) |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 595 | return RX_DROP_MONITOR; |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 596 | return RX_CONTINUE; |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 597 | } |
| 598 | |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 599 | if (ieee80211_is_probe_req(hdr->frame_control) || |
| 600 | ieee80211_is_probe_resp(hdr->frame_control) || |
Javier Cardona | 7183912 | 2011-04-07 15:08:31 -0700 | [diff] [blame] | 601 | ieee80211_is_beacon(hdr->frame_control) || |
| 602 | ieee80211_is_auth(hdr->frame_control)) |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 603 | return RX_CONTINUE; |
| 604 | |
| 605 | return RX_DROP_MONITOR; |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 606 | } |
| 607 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 608 | return RX_CONTINUE; |
| 609 | } |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 610 | |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 611 | #define SEQ_MODULO 0x1000 |
| 612 | #define SEQ_MASK 0xfff |
| 613 | |
| 614 | static inline int seq_less(u16 sq1, u16 sq2) |
| 615 | { |
| 616 | return ((sq1 - sq2) & SEQ_MASK) > (SEQ_MODULO >> 1); |
| 617 | } |
| 618 | |
| 619 | static inline u16 seq_inc(u16 sq) |
| 620 | { |
| 621 | return (sq + 1) & SEQ_MASK; |
| 622 | } |
| 623 | |
| 624 | static inline u16 seq_sub(u16 sq1, u16 sq2) |
| 625 | { |
| 626 | return (sq1 - sq2) & SEQ_MASK; |
| 627 | } |
| 628 | |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 629 | static void ieee80211_release_reorder_frame(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 630 | struct tid_ampdu_rx *tid_agg_rx, |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 631 | int index) |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 632 | { |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 633 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 634 | struct sk_buff *skb = tid_agg_rx->reorder_buf[index]; |
Christian Lamparter | 4cfda47 | 2010-12-27 23:21:26 +0100 | [diff] [blame] | 635 | struct ieee80211_rx_status *status; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 636 | |
Johannes Berg | dd31857 | 2010-11-29 11:09:16 +0100 | [diff] [blame] | 637 | lockdep_assert_held(&tid_agg_rx->reorder_lock); |
| 638 | |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 639 | if (!skb) |
| 640 | goto no_frame; |
| 641 | |
Christian Lamparter | 071d9ac | 2010-08-05 01:36:36 +0200 | [diff] [blame] | 642 | /* release the frame from the reorder ring buffer */ |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 643 | tid_agg_rx->stored_mpdu_num--; |
| 644 | tid_agg_rx->reorder_buf[index] = NULL; |
Christian Lamparter | 4cfda47 | 2010-12-27 23:21:26 +0100 | [diff] [blame] | 645 | status = IEEE80211_SKB_RXCB(skb); |
| 646 | status->rx_flags |= IEEE80211_RX_DEFERRED_RELEASE; |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 647 | skb_queue_tail(&local->rx_skb_queue, skb); |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 648 | |
| 649 | no_frame: |
| 650 | tid_agg_rx->head_seq_num = seq_inc(tid_agg_rx->head_seq_num); |
| 651 | } |
| 652 | |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 653 | static void ieee80211_release_reorder_frames(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 654 | struct tid_ampdu_rx *tid_agg_rx, |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 655 | u16 head_seq_num) |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 656 | { |
| 657 | int index; |
| 658 | |
Johannes Berg | dd31857 | 2010-11-29 11:09:16 +0100 | [diff] [blame] | 659 | lockdep_assert_held(&tid_agg_rx->reorder_lock); |
| 660 | |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 661 | while (seq_less(tid_agg_rx->head_seq_num, head_seq_num)) { |
| 662 | index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn) % |
| 663 | tid_agg_rx->buf_size; |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 664 | ieee80211_release_reorder_frame(sdata, tid_agg_rx, index); |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 665 | } |
| 666 | } |
| 667 | |
| 668 | /* |
| 669 | * Timeout (in jiffies) for skb's that are waiting in the RX reorder buffer. If |
| 670 | * the skb was added to the buffer longer than this time ago, the earlier |
| 671 | * frames that have not yet been received are assumed to be lost and the skb |
| 672 | * can be released for processing. This may also release other skb's from the |
| 673 | * reorder buffer if there are no additional gaps between the frames. |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 674 | * |
| 675 | * Callers must hold tid_agg_rx->reorder_lock. |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 676 | */ |
| 677 | #define HT_RX_REORDER_BUF_TIMEOUT (HZ / 10) |
| 678 | |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 679 | static void ieee80211_sta_reorder_release(struct ieee80211_sub_if_data *sdata, |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 680 | struct tid_ampdu_rx *tid_agg_rx) |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 681 | { |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 682 | int index, j; |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 683 | |
Johannes Berg | dd31857 | 2010-11-29 11:09:16 +0100 | [diff] [blame] | 684 | lockdep_assert_held(&tid_agg_rx->reorder_lock); |
| 685 | |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 686 | /* release the buffer until next missing frame */ |
| 687 | index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn) % |
| 688 | tid_agg_rx->buf_size; |
| 689 | if (!tid_agg_rx->reorder_buf[index] && |
Eliad Peller | 07ae2df | 2012-02-01 18:48:09 +0200 | [diff] [blame] | 690 | tid_agg_rx->stored_mpdu_num) { |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 691 | /* |
| 692 | * No buffers ready to be released, but check whether any |
| 693 | * frames in the reorder buffer have timed out. |
| 694 | */ |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 695 | int skipped = 1; |
| 696 | for (j = (index + 1) % tid_agg_rx->buf_size; j != index; |
| 697 | j = (j + 1) % tid_agg_rx->buf_size) { |
| 698 | if (!tid_agg_rx->reorder_buf[j]) { |
| 699 | skipped++; |
| 700 | continue; |
| 701 | } |
Daniel Halperin | 499fe9a | 2011-03-24 16:01:48 -0700 | [diff] [blame] | 702 | if (skipped && |
| 703 | !time_after(jiffies, tid_agg_rx->reorder_time[j] + |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 704 | HT_RX_REORDER_BUF_TIMEOUT)) |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 705 | goto set_release_timer; |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 706 | |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 707 | ht_dbg_ratelimited(sdata, |
| 708 | "release an RX reorder frame due to timeout on earlier frames\n"); |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 709 | ieee80211_release_reorder_frame(sdata, tid_agg_rx, j); |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 710 | |
| 711 | /* |
| 712 | * Increment the head seq# also for the skipped slots. |
| 713 | */ |
| 714 | tid_agg_rx->head_seq_num = |
| 715 | (tid_agg_rx->head_seq_num + skipped) & SEQ_MASK; |
| 716 | skipped = 0; |
| 717 | } |
| 718 | } else while (tid_agg_rx->reorder_buf[index]) { |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 719 | ieee80211_release_reorder_frame(sdata, tid_agg_rx, index); |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 720 | index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn) % |
| 721 | tid_agg_rx->buf_size; |
| 722 | } |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 723 | |
| 724 | if (tid_agg_rx->stored_mpdu_num) { |
| 725 | j = index = seq_sub(tid_agg_rx->head_seq_num, |
| 726 | tid_agg_rx->ssn) % tid_agg_rx->buf_size; |
| 727 | |
| 728 | for (; j != (index - 1) % tid_agg_rx->buf_size; |
| 729 | j = (j + 1) % tid_agg_rx->buf_size) { |
| 730 | if (tid_agg_rx->reorder_buf[j]) |
| 731 | break; |
| 732 | } |
| 733 | |
| 734 | set_release_timer: |
| 735 | |
| 736 | mod_timer(&tid_agg_rx->reorder_timer, |
Christian Lamparter | 334df73 | 2011-04-24 20:41:16 +0200 | [diff] [blame] | 737 | tid_agg_rx->reorder_time[j] + 1 + |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 738 | HT_RX_REORDER_BUF_TIMEOUT); |
| 739 | } else { |
| 740 | del_timer(&tid_agg_rx->reorder_timer); |
| 741 | } |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 742 | } |
| 743 | |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 744 | /* |
| 745 | * As this function belongs to the RX path it must be under |
| 746 | * rcu_read_lock protection. It returns false if the frame |
| 747 | * can be processed immediately, true if it was consumed. |
| 748 | */ |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 749 | static bool ieee80211_sta_manage_reorder_buf(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 750 | struct tid_ampdu_rx *tid_agg_rx, |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 751 | struct sk_buff *skb) |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 752 | { |
| 753 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 754 | u16 sc = le16_to_cpu(hdr->seq_ctrl); |
| 755 | u16 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4; |
| 756 | u16 head_seq_num, buf_size; |
| 757 | int index; |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 758 | bool ret = true; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 759 | |
Johannes Berg | dd31857 | 2010-11-29 11:09:16 +0100 | [diff] [blame] | 760 | spin_lock(&tid_agg_rx->reorder_lock); |
| 761 | |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 762 | buf_size = tid_agg_rx->buf_size; |
| 763 | head_seq_num = tid_agg_rx->head_seq_num; |
| 764 | |
| 765 | /* frame with out of date sequence number */ |
| 766 | if (seq_less(mpdu_seq_num, head_seq_num)) { |
| 767 | dev_kfree_skb(skb); |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 768 | goto out; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | /* |
| 772 | * If frame the sequence number exceeds our buffering window |
| 773 | * size release some previous frames to make room for this one. |
| 774 | */ |
| 775 | if (!seq_less(mpdu_seq_num, head_seq_num + buf_size)) { |
| 776 | head_seq_num = seq_inc(seq_sub(mpdu_seq_num, buf_size)); |
| 777 | /* release stored frames up to new head to stack */ |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 778 | ieee80211_release_reorder_frames(sdata, tid_agg_rx, |
| 779 | head_seq_num); |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | /* Now the new frame is always in the range of the reordering buffer */ |
| 783 | |
| 784 | index = seq_sub(mpdu_seq_num, tid_agg_rx->ssn) % tid_agg_rx->buf_size; |
| 785 | |
| 786 | /* check if we already stored this frame */ |
| 787 | if (tid_agg_rx->reorder_buf[index]) { |
| 788 | dev_kfree_skb(skb); |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 789 | goto out; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | /* |
| 793 | * If the current MPDU is in the right order and nothing else |
| 794 | * is stored we can process it directly, no need to buffer it. |
Johannes Berg | c835b21 | 2011-03-15 23:17:01 +0100 | [diff] [blame] | 795 | * If it is first but there's something stored, we may be able |
| 796 | * to release frames after this one. |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 797 | */ |
| 798 | if (mpdu_seq_num == tid_agg_rx->head_seq_num && |
| 799 | tid_agg_rx->stored_mpdu_num == 0) { |
| 800 | tid_agg_rx->head_seq_num = seq_inc(tid_agg_rx->head_seq_num); |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 801 | ret = false; |
| 802 | goto out; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | /* put the frame in the reordering buffer */ |
| 806 | tid_agg_rx->reorder_buf[index] = skb; |
| 807 | tid_agg_rx->reorder_time[index] = jiffies; |
| 808 | tid_agg_rx->stored_mpdu_num++; |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 809 | ieee80211_sta_reorder_release(sdata, tid_agg_rx); |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 810 | |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 811 | out: |
| 812 | spin_unlock(&tid_agg_rx->reorder_lock); |
| 813 | return ret; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 814 | } |
| 815 | |
| 816 | /* |
| 817 | * Reorder MPDUs from A-MPDUs, keeping them on a buffer. Returns |
| 818 | * true if the MPDU was buffered, false if it should be processed. |
| 819 | */ |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 820 | static void ieee80211_rx_reorder_ampdu(struct ieee80211_rx_data *rx) |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 821 | { |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 822 | struct sk_buff *skb = rx->skb; |
| 823 | struct ieee80211_local *local = rx->local; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 824 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Thomas Pedersen | 660c6a4 | 2011-11-03 21:11:12 -0700 | [diff] [blame] | 825 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 826 | struct sta_info *sta = rx->sta; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 827 | struct tid_ampdu_rx *tid_agg_rx; |
| 828 | u16 sc; |
Thomas Pedersen | 6cc00d5 | 2011-11-03 21:11:11 -0700 | [diff] [blame] | 829 | u8 tid, ack_policy; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 830 | |
| 831 | if (!ieee80211_is_data_qos(hdr->frame_control)) |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 832 | goto dont_reorder; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 833 | |
| 834 | /* |
| 835 | * filter the QoS data rx stream according to |
| 836 | * STA/TID and check if this STA/TID is on aggregation |
| 837 | */ |
| 838 | |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 839 | if (!sta) |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 840 | goto dont_reorder; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 841 | |
Thomas Pedersen | 6cc00d5 | 2011-11-03 21:11:11 -0700 | [diff] [blame] | 842 | ack_policy = *ieee80211_get_qos_ctl(hdr) & |
| 843 | IEEE80211_QOS_CTL_ACK_POLICY_MASK; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 844 | tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK; |
| 845 | |
Johannes Berg | a87f736 | 2010-06-10 10:21:38 +0200 | [diff] [blame] | 846 | tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]); |
| 847 | if (!tid_agg_rx) |
| 848 | goto dont_reorder; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 849 | |
| 850 | /* qos null data frames are excluded */ |
| 851 | if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC))) |
Johannes Berg | a87f736 | 2010-06-10 10:21:38 +0200 | [diff] [blame] | 852 | goto dont_reorder; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 853 | |
Thomas Pedersen | 6cc00d5 | 2011-11-03 21:11:11 -0700 | [diff] [blame] | 854 | /* not part of a BA session */ |
| 855 | if (ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK && |
| 856 | ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL) |
| 857 | goto dont_reorder; |
| 858 | |
Thomas Pedersen | 660c6a4 | 2011-11-03 21:11:12 -0700 | [diff] [blame] | 859 | /* not actually part of this BA session */ |
| 860 | if (!(status->rx_flags & IEEE80211_RX_RA_MATCH)) |
| 861 | goto dont_reorder; |
| 862 | |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 863 | /* new, potentially un-ordered, ampdu frame - process it */ |
| 864 | |
| 865 | /* reset session timer */ |
| 866 | if (tid_agg_rx->timeout) |
Felix Fietkau | 12d3952f | 2012-03-18 22:58:06 +0100 | [diff] [blame] | 867 | tid_agg_rx->last_rx = jiffies; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 868 | |
| 869 | /* if this mpdu is fragmented - terminate rx aggregation session */ |
| 870 | sc = le16_to_cpu(hdr->seq_ctrl); |
| 871 | if (sc & IEEE80211_SCTL_FRAG) { |
Johannes Berg | c1475ca | 2010-06-10 10:21:37 +0200 | [diff] [blame] | 872 | skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME; |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 873 | skb_queue_tail(&rx->sdata->skb_queue, skb); |
| 874 | ieee80211_queue_work(&local->hw, &rx->sdata->work); |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 875 | return; |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 876 | } |
| 877 | |
Johannes Berg | a87f736 | 2010-06-10 10:21:38 +0200 | [diff] [blame] | 878 | /* |
| 879 | * No locking needed -- we will only ever process one |
| 880 | * RX packet at a time, and thus own tid_agg_rx. All |
| 881 | * other code manipulating it needs to (and does) make |
| 882 | * sure that we cannot get to it any more before doing |
| 883 | * anything with it. |
| 884 | */ |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 885 | if (ieee80211_sta_manage_reorder_buf(rx->sdata, tid_agg_rx, skb)) |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 886 | return; |
| 887 | |
| 888 | dont_reorder: |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 889 | skb_queue_tail(&local->rx_skb_queue, skb); |
Johannes Berg | 1edfb1a | 2009-11-25 17:46:16 +0100 | [diff] [blame] | 890 | } |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 891 | |
Johannes Berg | 4946162 | 2008-06-30 15:10:45 +0200 | [diff] [blame] | 892 | static ieee80211_rx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 893 | ieee80211_rx_h_check(struct ieee80211_rx_data *rx) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 894 | { |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 895 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 896 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 897 | |
| 898 | /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */ |
| 899 | if (rx->sta && !is_multicast_ether_addr(hdr->addr1)) { |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 900 | if (unlikely(ieee80211_has_retry(hdr->frame_control) && |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 901 | rx->sta->last_seq_ctrl[rx->seqno_idx] == |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 902 | hdr->seq_ctrl)) { |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 903 | if (status->rx_flags & IEEE80211_RX_RA_MATCH) { |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 904 | rx->local->dot11FrameDuplicateCount++; |
| 905 | rx->sta->num_duplicates++; |
| 906 | } |
Felix Fietkau | b1f9331 | 2011-02-04 19:20:08 +0100 | [diff] [blame] | 907 | return RX_DROP_UNUSABLE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 908 | } else |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 909 | rx->sta->last_seq_ctrl[rx->seqno_idx] = hdr->seq_ctrl; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 910 | } |
| 911 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 912 | if (unlikely(rx->skb->len < 16)) { |
| 913 | I802_DEBUG_INC(rx->local->rx_handlers_drop_short); |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 914 | return RX_DROP_MONITOR; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 915 | } |
| 916 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 917 | /* Drop disallowed frame classes based on STA auth/assoc state; |
| 918 | * IEEE 802.11, Chap 5.5. |
| 919 | * |
Johannes Berg | ccd7b36 | 2008-09-11 00:01:56 +0200 | [diff] [blame] | 920 | * mac80211 filters only based on association state, i.e. it drops |
| 921 | * Class 3 frames from not associated stations. hostapd sends |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 922 | * deauth/disassoc frames when needed. In addition, hostapd is |
| 923 | * responsible for filtering on both auth and assoc states. |
| 924 | */ |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 925 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 926 | if (ieee80211_vif_is_mesh(&rx->sdata->vif)) |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 927 | return ieee80211_rx_mesh_check(rx); |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 928 | |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 929 | if (unlikely((ieee80211_is_data(hdr->frame_control) || |
| 930 | ieee80211_is_pspoll(hdr->frame_control)) && |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 931 | rx->sdata->vif.type != NL80211_IFTYPE_ADHOC && |
Bill Jordan | 1be7fe8 | 2010-10-01 11:20:41 -0400 | [diff] [blame] | 932 | rx->sdata->vif.type != NL80211_IFTYPE_WDS && |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 933 | (!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_ASSOC)))) { |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 934 | /* |
| 935 | * accept port control frames from the AP even when it's not |
| 936 | * yet marked ASSOC to prevent a race where we don't set the |
| 937 | * assoc bit quickly enough before it sends the first frame |
| 938 | */ |
| 939 | if (rx->sta && rx->sdata->vif.type == NL80211_IFTYPE_STATION && |
Guy Eilam | 2a33bee | 2011-08-17 15:18:15 +0300 | [diff] [blame] | 940 | ieee80211_is_data_present(hdr->frame_control)) { |
Johannes Berg | 6dbda2d | 2012-10-26 00:41:23 +0200 | [diff] [blame] | 941 | unsigned int hdrlen; |
| 942 | __be16 ethertype; |
Guy Eilam | 2a33bee | 2011-08-17 15:18:15 +0300 | [diff] [blame] | 943 | |
Johannes Berg | 6dbda2d | 2012-10-26 00:41:23 +0200 | [diff] [blame] | 944 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
| 945 | |
| 946 | if (rx->skb->len < hdrlen + 8) |
| 947 | return RX_DROP_MONITOR; |
| 948 | |
| 949 | skb_copy_bits(rx->skb, hdrlen + 6, ðertype, 2); |
| 950 | if (ethertype == rx->sdata->control_port_protocol) |
Guy Eilam | 2a33bee | 2011-08-17 15:18:15 +0300 | [diff] [blame] | 951 | return RX_CONTINUE; |
| 952 | } |
Johannes Berg | 21fc756 | 2011-11-04 11:18:13 +0100 | [diff] [blame] | 953 | |
| 954 | if (rx->sdata->vif.type == NL80211_IFTYPE_AP && |
| 955 | cfg80211_rx_spurious_frame(rx->sdata->dev, |
| 956 | hdr->addr2, |
| 957 | GFP_ATOMIC)) |
| 958 | return RX_DROP_UNUSABLE; |
| 959 | |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 960 | return RX_DROP_MONITOR; |
Guy Eilam | 2a33bee | 2011-08-17 15:18:15 +0300 | [diff] [blame] | 961 | } |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 962 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 963 | return RX_CONTINUE; |
Johannes Berg | 570bd53 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 964 | } |
| 965 | |
| 966 | |
Johannes Berg | 4946162 | 2008-06-30 15:10:45 +0200 | [diff] [blame] | 967 | static ieee80211_rx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 968 | ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx) |
Johannes Berg | 570bd53 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 969 | { |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 970 | struct sk_buff *skb = rx->skb; |
| 971 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
| 972 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 973 | int keyidx; |
| 974 | int hdrlen; |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 975 | ieee80211_rx_result result = RX_DROP_UNUSABLE; |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 976 | struct ieee80211_key *sta_ptk = NULL; |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 977 | int mmie_keyidx = -1; |
Johannes Berg | 761ab47 | 2010-05-28 14:24:19 +0200 | [diff] [blame] | 978 | __le16 fc; |
Johannes Berg | 570bd53 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 979 | |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 980 | /* |
| 981 | * Key selection 101 |
| 982 | * |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 983 | * There are four types of keys: |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 984 | * - GTK (group keys) |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 985 | * - IGTK (group keys for management frames) |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 986 | * - PTK (pairwise keys) |
| 987 | * - STK (station-to-station pairwise keys) |
| 988 | * |
| 989 | * When selecting a key, we have to distinguish between multicast |
| 990 | * (including broadcast) and unicast frames, the latter can only |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 991 | * use PTKs and STKs while the former always use GTKs and IGTKs. |
| 992 | * Unless, of course, actual WEP keys ("pre-RSNA") are used, then |
| 993 | * unicast frames can also use key indices like GTKs. Hence, if we |
| 994 | * don't have a PTK/STK we check the key index for a WEP key. |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 995 | * |
Johannes Berg | 8dc06a1 | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 996 | * Note that in a regular BSS, multicast frames are sent by the |
| 997 | * AP only, associated stations unicast the frame to the AP first |
| 998 | * which then multicasts it on their behalf. |
| 999 | * |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1000 | * There is also a slight problem in IBSS mode: GTKs are negotiated |
| 1001 | * with each station, that is something we don't currently handle. |
Johannes Berg | 8dc06a1 | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 1002 | * The spec seems to expect that one negotiates the same key with |
| 1003 | * every station but there's no such requirement; VLANs could be |
| 1004 | * possible. |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1005 | */ |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1006 | |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1007 | /* |
Johannes Berg | 1990af8 | 2007-09-26 17:53:15 +0200 | [diff] [blame] | 1008 | * No point in finding a key and decrypting if the frame is neither |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1009 | * addressed to us nor a multicast frame. |
| 1010 | */ |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 1011 | if (!(status->rx_flags & IEEE80211_RX_RA_MATCH)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1012 | return RX_CONTINUE; |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1013 | |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 1014 | /* start without a key */ |
| 1015 | rx->key = NULL; |
| 1016 | |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 1017 | if (rx->sta) |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 1018 | sta_ptk = rcu_dereference(rx->sta->ptk); |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 1019 | |
Johannes Berg | 761ab47 | 2010-05-28 14:24:19 +0200 | [diff] [blame] | 1020 | fc = hdr->frame_control; |
| 1021 | |
| 1022 | if (!ieee80211_has_protected(fc)) |
Jouni Malinen | 0c7c10c | 2009-05-08 12:34:10 +0300 | [diff] [blame] | 1023 | mmie_keyidx = ieee80211_get_mmie_keyidx(rx->skb); |
| 1024 | |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 1025 | if (!is_multicast_ether_addr(hdr->addr1) && sta_ptk) { |
| 1026 | rx->key = sta_ptk; |
Johannes Berg | dc1580d | 2010-08-10 09:46:40 +0200 | [diff] [blame] | 1027 | if ((status->flag & RX_FLAG_DECRYPTED) && |
| 1028 | (status->flag & RX_FLAG_IV_STRIPPED)) |
| 1029 | return RX_CONTINUE; |
Jouni Malinen | 0c7c10c | 2009-05-08 12:34:10 +0300 | [diff] [blame] | 1030 | /* Skip decryption if the frame is not protected. */ |
Johannes Berg | 761ab47 | 2010-05-28 14:24:19 +0200 | [diff] [blame] | 1031 | if (!ieee80211_has_protected(fc)) |
Jouni Malinen | 0c7c10c | 2009-05-08 12:34:10 +0300 | [diff] [blame] | 1032 | return RX_CONTINUE; |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 1033 | } else if (mmie_keyidx >= 0) { |
| 1034 | /* Broadcast/multicast robust management frame / BIP */ |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1035 | if ((status->flag & RX_FLAG_DECRYPTED) && |
| 1036 | (status->flag & RX_FLAG_IV_STRIPPED)) |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 1037 | return RX_CONTINUE; |
| 1038 | |
| 1039 | if (mmie_keyidx < NUM_DEFAULT_KEYS || |
| 1040 | mmie_keyidx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) |
| 1041 | return RX_DROP_MONITOR; /* unexpected BIP keyidx */ |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 1042 | if (rx->sta) |
| 1043 | rx->key = rcu_dereference(rx->sta->gtk[mmie_keyidx]); |
| 1044 | if (!rx->key) |
| 1045 | rx->key = rcu_dereference(rx->sdata->keys[mmie_keyidx]); |
Johannes Berg | 761ab47 | 2010-05-28 14:24:19 +0200 | [diff] [blame] | 1046 | } else if (!ieee80211_has_protected(fc)) { |
Jouni Malinen | 0c7c10c | 2009-05-08 12:34:10 +0300 | [diff] [blame] | 1047 | /* |
| 1048 | * The frame was not protected, so skip decryption. However, we |
| 1049 | * need to set rx->key if there is a key that could have been |
| 1050 | * used so that the frame may be dropped if encryption would |
| 1051 | * have been expected. |
| 1052 | */ |
| 1053 | struct ieee80211_key *key = NULL; |
Johannes Berg | 897bed8 | 2010-12-09 19:49:00 +0100 | [diff] [blame] | 1054 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
| 1055 | int i; |
| 1056 | |
Johannes Berg | 761ab47 | 2010-05-28 14:24:19 +0200 | [diff] [blame] | 1057 | if (ieee80211_is_mgmt(fc) && |
Jouni Malinen | 0c7c10c | 2009-05-08 12:34:10 +0300 | [diff] [blame] | 1058 | is_multicast_ether_addr(hdr->addr1) && |
| 1059 | (key = rcu_dereference(rx->sdata->default_mgmt_key))) |
| 1060 | rx->key = key; |
Johannes Berg | 897bed8 | 2010-12-09 19:49:00 +0100 | [diff] [blame] | 1061 | else { |
| 1062 | if (rx->sta) { |
| 1063 | for (i = 0; i < NUM_DEFAULT_KEYS; i++) { |
| 1064 | key = rcu_dereference(rx->sta->gtk[i]); |
| 1065 | if (key) |
| 1066 | break; |
| 1067 | } |
| 1068 | } |
| 1069 | if (!key) { |
| 1070 | for (i = 0; i < NUM_DEFAULT_KEYS; i++) { |
| 1071 | key = rcu_dereference(sdata->keys[i]); |
| 1072 | if (key) |
| 1073 | break; |
| 1074 | } |
| 1075 | } |
| 1076 | if (key) |
| 1077 | rx->key = key; |
| 1078 | } |
Jouni Malinen | 0c7c10c | 2009-05-08 12:34:10 +0300 | [diff] [blame] | 1079 | return RX_CONTINUE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1080 | } else { |
Zhu Yi | 39184b1 | 2010-04-08 15:35:10 +0800 | [diff] [blame] | 1081 | u8 keyid; |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1082 | /* |
| 1083 | * The device doesn't give us the IV so we won't be |
| 1084 | * able to look up the key. That's ok though, we |
| 1085 | * don't need to decrypt the frame, we just won't |
| 1086 | * be able to keep statistics accurate. |
| 1087 | * Except for key threshold notifications, should |
| 1088 | * we somehow allow the driver to tell us which key |
| 1089 | * the hardware used if this flag is set? |
| 1090 | */ |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1091 | if ((status->flag & RX_FLAG_DECRYPTED) && |
| 1092 | (status->flag & RX_FLAG_IV_STRIPPED)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1093 | return RX_CONTINUE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1094 | |
Johannes Berg | 761ab47 | 2010-05-28 14:24:19 +0200 | [diff] [blame] | 1095 | hdrlen = ieee80211_hdrlen(fc); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1096 | |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1097 | if (rx->skb->len < 8 + hdrlen) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 1098 | return RX_DROP_UNUSABLE; /* TODO: count this? */ |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1099 | |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1100 | /* |
| 1101 | * no need to call ieee80211_wep_get_keyidx, |
| 1102 | * it verifies a bunch of things we've done already |
| 1103 | */ |
Zhu Yi | 39184b1 | 2010-04-08 15:35:10 +0800 | [diff] [blame] | 1104 | skb_copy_bits(rx->skb, hdrlen + 3, &keyid, 1); |
| 1105 | keyidx = keyid >> 6; |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1106 | |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 1107 | /* check per-station GTK first, if multicast packet */ |
| 1108 | if (is_multicast_ether_addr(hdr->addr1) && rx->sta) |
| 1109 | rx->key = rcu_dereference(rx->sta->gtk[keyidx]); |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1110 | |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 1111 | /* if not found, try default key */ |
| 1112 | if (!rx->key) { |
| 1113 | rx->key = rcu_dereference(rx->sdata->keys[keyidx]); |
| 1114 | |
| 1115 | /* |
| 1116 | * RSNA-protected unicast frames should always be |
| 1117 | * sent with pairwise or station-to-station keys, |
| 1118 | * but for WEP we allow using a key index as well. |
| 1119 | */ |
| 1120 | if (rx->key && |
| 1121 | rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP40 && |
| 1122 | rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP104 && |
| 1123 | !is_multicast_ether_addr(hdr->addr1)) |
| 1124 | rx->key = NULL; |
| 1125 | } |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1126 | } |
| 1127 | |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1128 | if (rx->key) { |
Johannes Berg | 95acac6 | 2011-07-12 12:30:59 +0200 | [diff] [blame] | 1129 | if (unlikely(rx->key->flags & KEY_FLAG_TAINTED)) |
| 1130 | return RX_DROP_MONITOR; |
| 1131 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1132 | rx->key->tx_rx_count++; |
Johannes Berg | 011bfcc | 2007-09-17 01:29:25 -0400 | [diff] [blame] | 1133 | /* TODO: add threshold stuff again */ |
Johannes Berg | 1990af8 | 2007-09-26 17:53:15 +0200 | [diff] [blame] | 1134 | } else { |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 1135 | return RX_DROP_MONITOR; |
Johannes Berg | 70f0876 | 2007-09-26 17:53:14 +0200 | [diff] [blame] | 1136 | } |
| 1137 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1138 | switch (rx->key->conf.cipher) { |
| 1139 | case WLAN_CIPHER_SUITE_WEP40: |
| 1140 | case WLAN_CIPHER_SUITE_WEP104: |
Mattias Nissler | e2f036d | 2007-10-07 16:35:31 +0200 | [diff] [blame] | 1141 | result = ieee80211_crypto_wep_decrypt(rx); |
| 1142 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1143 | case WLAN_CIPHER_SUITE_TKIP: |
Mattias Nissler | e2f036d | 2007-10-07 16:35:31 +0200 | [diff] [blame] | 1144 | result = ieee80211_crypto_tkip_decrypt(rx); |
| 1145 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1146 | case WLAN_CIPHER_SUITE_CCMP: |
Mattias Nissler | e2f036d | 2007-10-07 16:35:31 +0200 | [diff] [blame] | 1147 | result = ieee80211_crypto_ccmp_decrypt(rx); |
| 1148 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1149 | case WLAN_CIPHER_SUITE_AES_CMAC: |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 1150 | result = ieee80211_crypto_aes_cmac_decrypt(rx); |
| 1151 | break; |
Johannes Berg | 3ffc2a9 | 2010-08-27 14:26:52 +0300 | [diff] [blame] | 1152 | default: |
| 1153 | /* |
| 1154 | * We can reach here only with HW-only algorithms |
| 1155 | * but why didn't it decrypt the frame?! |
| 1156 | */ |
| 1157 | return RX_DROP_UNUSABLE; |
Johannes Berg | 70f0876 | 2007-09-26 17:53:14 +0200 | [diff] [blame] | 1158 | } |
| 1159 | |
Johannes Berg | a828691 | 2012-03-12 13:49:14 +0100 | [diff] [blame] | 1160 | /* the hdr variable is invalid after the decrypt handlers */ |
| 1161 | |
Mattias Nissler | e2f036d | 2007-10-07 16:35:31 +0200 | [diff] [blame] | 1162 | /* either the frame has been decrypted or will be dropped */ |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1163 | status->flag |= RX_FLAG_DECRYPTED; |
Mattias Nissler | e2f036d | 2007-10-07 16:35:31 +0200 | [diff] [blame] | 1164 | |
| 1165 | return result; |
Johannes Berg | 70f0876 | 2007-09-26 17:53:14 +0200 | [diff] [blame] | 1166 | } |
| 1167 | |
Kalle Valo | 572e001 | 2009-02-10 17:09:31 +0200 | [diff] [blame] | 1168 | static ieee80211_rx_result debug_noinline |
| 1169 | ieee80211_rx_h_check_more_data(struct ieee80211_rx_data *rx) |
| 1170 | { |
| 1171 | struct ieee80211_local *local; |
| 1172 | struct ieee80211_hdr *hdr; |
| 1173 | struct sk_buff *skb; |
| 1174 | |
| 1175 | local = rx->local; |
| 1176 | skb = rx->skb; |
| 1177 | hdr = (struct ieee80211_hdr *) skb->data; |
| 1178 | |
| 1179 | if (!local->pspolling) |
| 1180 | return RX_CONTINUE; |
| 1181 | |
| 1182 | if (!ieee80211_has_fromds(hdr->frame_control)) |
| 1183 | /* this is not from AP */ |
| 1184 | return RX_CONTINUE; |
| 1185 | |
| 1186 | if (!ieee80211_is_data(hdr->frame_control)) |
| 1187 | return RX_CONTINUE; |
| 1188 | |
| 1189 | if (!ieee80211_has_moredata(hdr->frame_control)) { |
| 1190 | /* AP has no more frames buffered for us */ |
| 1191 | local->pspolling = false; |
| 1192 | return RX_CONTINUE; |
| 1193 | } |
| 1194 | |
| 1195 | /* more data bit is set, let's request a new frame from the AP */ |
| 1196 | ieee80211_send_pspoll(local, rx->sdata); |
| 1197 | |
| 1198 | return RX_CONTINUE; |
| 1199 | } |
| 1200 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1201 | static void sta_ps_start(struct sta_info *sta) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1202 | { |
Johannes Berg | 133b822 | 2008-09-16 14:18:59 +0200 | [diff] [blame] | 1203 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Christian Lamparter | 4571d3b | 2008-11-30 00:48:41 +0100 | [diff] [blame] | 1204 | struct ieee80211_local *local = sdata->local; |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1205 | struct ps_data *ps; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1206 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1207 | if (sta->sdata->vif.type == NL80211_IFTYPE_AP || |
| 1208 | sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 1209 | ps = &sdata->bss->ps; |
| 1210 | else |
| 1211 | return; |
| 1212 | |
| 1213 | atomic_inc(&ps->num_sta_ps); |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1214 | set_sta_flag(sta, WLAN_STA_PS_STA); |
Arik Nemtsov | d057e5a | 2011-01-31 22:29:13 +0200 | [diff] [blame] | 1215 | if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS)) |
| 1216 | drv_sta_notify(local, sdata, STA_NOTIFY_SLEEP, &sta->sta); |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 1217 | ps_dbg(sdata, "STA %pM aid %d enters power save mode\n", |
| 1218 | sta->sta.addr, sta->sta.aid); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1219 | } |
| 1220 | |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1221 | static void sta_ps_end(struct sta_info *sta) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1222 | { |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 1223 | ps_dbg(sta->sdata, "STA %pM aid %d exits power save mode\n", |
| 1224 | sta->sta.addr, sta->sta.aid); |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 1225 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1226 | if (test_sta_flag(sta, WLAN_STA_PS_DRIVER)) { |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 1227 | ps_dbg(sta->sdata, "STA %pM aid %d driver-ps-blocked\n", |
| 1228 | sta->sta.addr, sta->sta.aid); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1229 | return; |
| 1230 | } |
| 1231 | |
| 1232 | ieee80211_sta_ps_deliver_wakeup(sta); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1233 | } |
| 1234 | |
Arik Nemtsov | d057e5a | 2011-01-31 22:29:13 +0200 | [diff] [blame] | 1235 | int ieee80211_sta_ps_transition(struct ieee80211_sta *sta, bool start) |
| 1236 | { |
| 1237 | struct sta_info *sta_inf = container_of(sta, struct sta_info, sta); |
| 1238 | bool in_ps; |
| 1239 | |
| 1240 | WARN_ON(!(sta_inf->local->hw.flags & IEEE80211_HW_AP_LINK_PS)); |
| 1241 | |
| 1242 | /* Don't let the same PS state be set twice */ |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1243 | in_ps = test_sta_flag(sta_inf, WLAN_STA_PS_STA); |
Arik Nemtsov | d057e5a | 2011-01-31 22:29:13 +0200 | [diff] [blame] | 1244 | if ((start && in_ps) || (!start && !in_ps)) |
| 1245 | return -EINVAL; |
| 1246 | |
| 1247 | if (start) |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1248 | sta_ps_start(sta_inf); |
Arik Nemtsov | d057e5a | 2011-01-31 22:29:13 +0200 | [diff] [blame] | 1249 | else |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1250 | sta_ps_end(sta_inf); |
Arik Nemtsov | d057e5a | 2011-01-31 22:29:13 +0200 | [diff] [blame] | 1251 | |
| 1252 | return 0; |
| 1253 | } |
| 1254 | EXPORT_SYMBOL(ieee80211_sta_ps_transition); |
| 1255 | |
Johannes Berg | 4946162 | 2008-06-30 15:10:45 +0200 | [diff] [blame] | 1256 | static ieee80211_rx_result debug_noinline |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1257 | ieee80211_rx_h_uapsd_and_pspoll(struct ieee80211_rx_data *rx) |
| 1258 | { |
| 1259 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
| 1260 | struct ieee80211_hdr *hdr = (void *)rx->skb->data; |
| 1261 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
| 1262 | int tid, ac; |
| 1263 | |
| 1264 | if (!rx->sta || !(status->rx_flags & IEEE80211_RX_RA_MATCH)) |
| 1265 | return RX_CONTINUE; |
| 1266 | |
| 1267 | if (sdata->vif.type != NL80211_IFTYPE_AP && |
| 1268 | sdata->vif.type != NL80211_IFTYPE_AP_VLAN) |
| 1269 | return RX_CONTINUE; |
| 1270 | |
| 1271 | /* |
| 1272 | * The device handles station powersave, so don't do anything about |
| 1273 | * uAPSD and PS-Poll frames (the latter shouldn't even come up from |
| 1274 | * it to mac80211 since they're handled.) |
| 1275 | */ |
| 1276 | if (sdata->local->hw.flags & IEEE80211_HW_AP_LINK_PS) |
| 1277 | return RX_CONTINUE; |
| 1278 | |
| 1279 | /* |
| 1280 | * Don't do anything if the station isn't already asleep. In |
| 1281 | * the uAPSD case, the station will probably be marked asleep, |
| 1282 | * in the PS-Poll case the station must be confused ... |
| 1283 | */ |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1284 | if (!test_sta_flag(rx->sta, WLAN_STA_PS_STA)) |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1285 | return RX_CONTINUE; |
| 1286 | |
| 1287 | if (unlikely(ieee80211_is_pspoll(hdr->frame_control))) { |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1288 | if (!test_sta_flag(rx->sta, WLAN_STA_SP)) { |
| 1289 | if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER)) |
Johannes Berg | deeaee19 | 2011-09-29 16:04:35 +0200 | [diff] [blame] | 1290 | ieee80211_sta_ps_deliver_poll_response(rx->sta); |
| 1291 | else |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1292 | set_sta_flag(rx->sta, WLAN_STA_PSPOLL); |
Johannes Berg | deeaee19 | 2011-09-29 16:04:35 +0200 | [diff] [blame] | 1293 | } |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1294 | |
| 1295 | /* Free PS Poll skb here instead of returning RX_DROP that would |
| 1296 | * count as an dropped frame. */ |
| 1297 | dev_kfree_skb(rx->skb); |
| 1298 | |
| 1299 | return RX_QUEUED; |
| 1300 | } else if (!ieee80211_has_morefrags(hdr->frame_control) && |
| 1301 | !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) && |
| 1302 | ieee80211_has_pm(hdr->frame_control) && |
| 1303 | (ieee80211_is_data_qos(hdr->frame_control) || |
| 1304 | ieee80211_is_qos_nullfunc(hdr->frame_control))) { |
| 1305 | tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK; |
| 1306 | ac = ieee802_1d_to_ac[tid & 7]; |
| 1307 | |
| 1308 | /* |
| 1309 | * If this AC is not trigger-enabled do nothing. |
| 1310 | * |
| 1311 | * NB: This could/should check a separate bitmap of trigger- |
| 1312 | * enabled queues, but for now we only implement uAPSD w/o |
| 1313 | * TSPEC changes to the ACs, so they're always the same. |
| 1314 | */ |
| 1315 | if (!(rx->sta->sta.uapsd_queues & BIT(ac))) |
| 1316 | return RX_CONTINUE; |
| 1317 | |
| 1318 | /* if we are in a service period, do nothing */ |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1319 | if (test_sta_flag(rx->sta, WLAN_STA_SP)) |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1320 | return RX_CONTINUE; |
| 1321 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1322 | if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER)) |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1323 | ieee80211_sta_ps_deliver_uapsd(rx->sta); |
| 1324 | else |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1325 | set_sta_flag(rx->sta, WLAN_STA_UAPSD); |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1326 | } |
| 1327 | |
| 1328 | return RX_CONTINUE; |
| 1329 | } |
| 1330 | |
| 1331 | static ieee80211_rx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1332 | ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1333 | { |
| 1334 | struct sta_info *sta = rx->sta; |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1335 | struct sk_buff *skb = rx->skb; |
| 1336 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
| 1337 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1338 | |
| 1339 | if (!sta) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1340 | return RX_CONTINUE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1341 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1342 | /* |
| 1343 | * Update last_rx only for IBSS packets which are for the current |
| 1344 | * BSSID to avoid keeping the current IBSS network alive in cases |
| 1345 | * where other STAs start using different BSSID. |
| 1346 | */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1347 | if (rx->sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 1348 | u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1349 | NL80211_IFTYPE_ADHOC); |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 1350 | if (ether_addr_equal(bssid, rx->sdata->u.ibss.bssid)) { |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1351 | sta->last_rx = jiffies; |
Felix Fietkau | 3af6334 | 2011-02-27 22:08:01 +0100 | [diff] [blame] | 1352 | if (ieee80211_is_data(hdr->frame_control)) { |
| 1353 | sta->last_rx_rate_idx = status->rate_idx; |
| 1354 | sta->last_rx_rate_flag = status->flag; |
| 1355 | } |
| 1356 | } |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1357 | } else if (!is_multicast_ether_addr(hdr->addr1)) { |
| 1358 | /* |
Luis Carlos Cobo | 33b64eb | 2008-02-23 15:17:10 +0100 | [diff] [blame] | 1359 | * Mesh beacons will update last_rx when if they are found to |
| 1360 | * match the current local configuration when processed. |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1361 | */ |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1362 | sta->last_rx = jiffies; |
Felix Fietkau | 3af6334 | 2011-02-27 22:08:01 +0100 | [diff] [blame] | 1363 | if (ieee80211_is_data(hdr->frame_control)) { |
| 1364 | sta->last_rx_rate_idx = status->rate_idx; |
| 1365 | sta->last_rx_rate_flag = status->flag; |
| 1366 | } |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1367 | } |
| 1368 | |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 1369 | if (!(status->rx_flags & IEEE80211_RX_RA_MATCH)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1370 | return RX_CONTINUE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1371 | |
Kalle Valo | 3cf335d | 2009-03-22 21:57:06 +0200 | [diff] [blame] | 1372 | if (rx->sdata->vif.type == NL80211_IFTYPE_STATION) |
| 1373 | ieee80211_sta_rx_notify(rx->sdata, hdr); |
| 1374 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1375 | sta->rx_fragments++; |
| 1376 | sta->rx_bytes += rx->skb->len; |
Felix Fietkau | fe8431f | 2012-03-01 18:00:07 +0100 | [diff] [blame] | 1377 | if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) { |
| 1378 | sta->last_signal = status->signal; |
| 1379 | ewma_add(&sta->avg_signal, -status->signal); |
| 1380 | } |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1381 | |
Johannes Berg | 72eaa43 | 2008-11-26 15:02:58 +0100 | [diff] [blame] | 1382 | /* |
| 1383 | * Change STA power saving mode only at the end of a frame |
| 1384 | * exchange sequence. |
| 1385 | */ |
Arik Nemtsov | d057e5a | 2011-01-31 22:29:13 +0200 | [diff] [blame] | 1386 | if (!(sta->local->hw.flags & IEEE80211_HW_AP_LINK_PS) && |
| 1387 | !ieee80211_has_morefrags(hdr->frame_control) && |
Christian Lamparter | 4cfda47 | 2010-12-27 23:21:26 +0100 | [diff] [blame] | 1388 | !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) && |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1389 | (rx->sdata->vif.type == NL80211_IFTYPE_AP || |
| 1390 | rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)) { |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1391 | if (test_sta_flag(sta, WLAN_STA_PS_STA)) { |
Johannes Berg | 72eaa43 | 2008-11-26 15:02:58 +0100 | [diff] [blame] | 1392 | /* |
| 1393 | * Ignore doze->wake transitions that are |
| 1394 | * indicated by non-data frames, the standard |
| 1395 | * is unclear here, but for example going to |
| 1396 | * PS mode and then scanning would cause a |
| 1397 | * doze->wake transition for the probe request, |
| 1398 | * and that is clearly undesirable. |
| 1399 | */ |
| 1400 | if (ieee80211_is_data(hdr->frame_control) && |
| 1401 | !ieee80211_has_pm(hdr->frame_control)) |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1402 | sta_ps_end(sta); |
Johannes Berg | 72eaa43 | 2008-11-26 15:02:58 +0100 | [diff] [blame] | 1403 | } else { |
| 1404 | if (ieee80211_has_pm(hdr->frame_control)) |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1405 | sta_ps_start(sta); |
Johannes Berg | 72eaa43 | 2008-11-26 15:02:58 +0100 | [diff] [blame] | 1406 | } |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1407 | } |
| 1408 | |
Johannes Berg | 22403de | 2009-10-30 12:55:03 +0100 | [diff] [blame] | 1409 | /* |
| 1410 | * Drop (qos-)data::nullfunc frames silently, since they |
| 1411 | * are used only to control station power saving mode. |
| 1412 | */ |
| 1413 | if (ieee80211_is_nullfunc(hdr->frame_control) || |
| 1414 | ieee80211_is_qos_nullfunc(hdr->frame_control)) { |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1415 | I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc); |
Felix Fietkau | d524215 | 2010-01-08 18:06:26 +0100 | [diff] [blame] | 1416 | |
| 1417 | /* |
| 1418 | * If we receive a 4-addr nullfunc frame from a STA |
Johannes Berg | e7f4a94 | 2011-11-04 11:18:20 +0100 | [diff] [blame] | 1419 | * that was not moved to a 4-addr STA vlan yet send |
| 1420 | * the event to userspace and for older hostapd drop |
| 1421 | * the frame to the monitor interface. |
Felix Fietkau | d524215 | 2010-01-08 18:06:26 +0100 | [diff] [blame] | 1422 | */ |
| 1423 | if (ieee80211_has_a4(hdr->frame_control) && |
| 1424 | (rx->sdata->vif.type == NL80211_IFTYPE_AP || |
| 1425 | (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && |
Johannes Berg | e7f4a94 | 2011-11-04 11:18:20 +0100 | [diff] [blame] | 1426 | !rx->sdata->u.vlan.sta))) { |
| 1427 | if (!test_and_set_sta_flag(sta, WLAN_STA_4ADDR_EVENT)) |
| 1428 | cfg80211_rx_unexpected_4addr_frame( |
| 1429 | rx->sdata->dev, sta->sta.addr, |
| 1430 | GFP_ATOMIC); |
Felix Fietkau | d524215 | 2010-01-08 18:06:26 +0100 | [diff] [blame] | 1431 | return RX_DROP_MONITOR; |
Johannes Berg | e7f4a94 | 2011-11-04 11:18:20 +0100 | [diff] [blame] | 1432 | } |
Johannes Berg | 22403de | 2009-10-30 12:55:03 +0100 | [diff] [blame] | 1433 | /* |
| 1434 | * Update counter and free packet here to avoid |
| 1435 | * counting this as a dropped packed. |
| 1436 | */ |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1437 | sta->rx_packets++; |
| 1438 | dev_kfree_skb(rx->skb); |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1439 | return RX_QUEUED; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1440 | } |
| 1441 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1442 | return RX_CONTINUE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1443 | } /* ieee80211_rx_h_sta_process */ |
| 1444 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1445 | static inline struct ieee80211_fragment_entry * |
| 1446 | ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata, |
| 1447 | unsigned int frag, unsigned int seq, int rx_queue, |
| 1448 | struct sk_buff **skb) |
| 1449 | { |
| 1450 | struct ieee80211_fragment_entry *entry; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1451 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1452 | entry = &sdata->fragments[sdata->fragment_next++]; |
| 1453 | if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX) |
| 1454 | sdata->fragment_next = 0; |
| 1455 | |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 1456 | if (!skb_queue_empty(&entry->skb_list)) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1457 | __skb_queue_purge(&entry->skb_list); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1458 | |
| 1459 | __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */ |
| 1460 | *skb = NULL; |
| 1461 | entry->first_frag_time = jiffies; |
| 1462 | entry->seq = seq; |
| 1463 | entry->rx_queue = rx_queue; |
| 1464 | entry->last_frag = frag; |
| 1465 | entry->ccmp = 0; |
| 1466 | entry->extra_len = 0; |
| 1467 | |
| 1468 | return entry; |
| 1469 | } |
| 1470 | |
| 1471 | static inline struct ieee80211_fragment_entry * |
| 1472 | ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata, |
Harvey Harrison | b73d70a | 2008-07-15 18:44:12 -0700 | [diff] [blame] | 1473 | unsigned int frag, unsigned int seq, |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1474 | int rx_queue, struct ieee80211_hdr *hdr) |
| 1475 | { |
| 1476 | struct ieee80211_fragment_entry *entry; |
| 1477 | int i, idx; |
| 1478 | |
| 1479 | idx = sdata->fragment_next; |
| 1480 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) { |
| 1481 | struct ieee80211_hdr *f_hdr; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1482 | |
| 1483 | idx--; |
| 1484 | if (idx < 0) |
| 1485 | idx = IEEE80211_FRAGMENT_MAX - 1; |
| 1486 | |
| 1487 | entry = &sdata->fragments[idx]; |
| 1488 | if (skb_queue_empty(&entry->skb_list) || entry->seq != seq || |
| 1489 | entry->rx_queue != rx_queue || |
| 1490 | entry->last_frag + 1 != frag) |
| 1491 | continue; |
| 1492 | |
Harvey Harrison | b73d70a | 2008-07-15 18:44:12 -0700 | [diff] [blame] | 1493 | f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1494 | |
Harvey Harrison | b73d70a | 2008-07-15 18:44:12 -0700 | [diff] [blame] | 1495 | /* |
| 1496 | * Check ftype and addresses are equal, else check next fragment |
| 1497 | */ |
| 1498 | if (((hdr->frame_control ^ f_hdr->frame_control) & |
| 1499 | cpu_to_le16(IEEE80211_FCTL_FTYPE)) || |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 1500 | !ether_addr_equal(hdr->addr1, f_hdr->addr1) || |
| 1501 | !ether_addr_equal(hdr->addr2, f_hdr->addr2)) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1502 | continue; |
| 1503 | |
S.Çağlar Onur | ab46623 | 2008-02-14 17:36:47 +0200 | [diff] [blame] | 1504 | if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) { |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1505 | __skb_queue_purge(&entry->skb_list); |
| 1506 | continue; |
| 1507 | } |
| 1508 | return entry; |
| 1509 | } |
| 1510 | |
| 1511 | return NULL; |
| 1512 | } |
| 1513 | |
Johannes Berg | 4946162 | 2008-06-30 15:10:45 +0200 | [diff] [blame] | 1514 | static ieee80211_rx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1515 | ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1516 | { |
| 1517 | struct ieee80211_hdr *hdr; |
| 1518 | u16 sc; |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1519 | __le16 fc; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1520 | unsigned int frag, seq; |
| 1521 | struct ieee80211_fragment_entry *entry; |
| 1522 | struct sk_buff *skb; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 1523 | struct ieee80211_rx_status *status; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1524 | |
Harvey Harrison | b73d70a | 2008-07-15 18:44:12 -0700 | [diff] [blame] | 1525 | hdr = (struct ieee80211_hdr *)rx->skb->data; |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1526 | fc = hdr->frame_control; |
Javier Cardona | f7fbf70 | 2012-10-25 11:10:18 -0700 | [diff] [blame] | 1527 | |
| 1528 | if (ieee80211_is_ctl(fc)) |
| 1529 | return RX_CONTINUE; |
| 1530 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1531 | sc = le16_to_cpu(hdr->seq_ctrl); |
| 1532 | frag = sc & IEEE80211_SCTL_FRAG; |
| 1533 | |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1534 | if (likely((!ieee80211_has_morefrags(fc) && frag == 0) || |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1535 | is_multicast_ether_addr(hdr->addr1))) { |
| 1536 | /* not fragmented */ |
| 1537 | goto out; |
| 1538 | } |
| 1539 | I802_DEBUG_INC(rx->local->rx_handlers_fragments); |
| 1540 | |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 1541 | if (skb_linearize(rx->skb)) |
| 1542 | return RX_DROP_UNUSABLE; |
| 1543 | |
Abhijeet Kolekar | 058897a | 2010-05-11 11:22:11 -0700 | [diff] [blame] | 1544 | /* |
| 1545 | * skb_linearize() might change the skb->data and |
| 1546 | * previously cached variables (in this case, hdr) need to |
| 1547 | * be refreshed with the new data. |
| 1548 | */ |
| 1549 | hdr = (struct ieee80211_hdr *)rx->skb->data; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1550 | seq = (sc & IEEE80211_SCTL_SEQ) >> 4; |
| 1551 | |
| 1552 | if (frag == 0) { |
| 1553 | /* This is the first fragment of a new frame. */ |
| 1554 | entry = ieee80211_reassemble_add(rx->sdata, frag, seq, |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 1555 | rx->seqno_idx, &(rx->skb)); |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1556 | if (rx->key && rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP && |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1557 | ieee80211_has_protected(fc)) { |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 1558 | int queue = rx->security_idx; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1559 | /* Store CCMP PN so that we can verify that the next |
| 1560 | * fragment has a sequential PN value. */ |
| 1561 | entry->ccmp = 1; |
| 1562 | memcpy(entry->last_pn, |
Jouni Malinen | 9190252 | 2010-06-11 10:27:33 -0700 | [diff] [blame] | 1563 | rx->key->u.ccmp.rx_pn[queue], |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1564 | CCMP_PN_LEN); |
| 1565 | } |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1566 | return RX_QUEUED; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1567 | } |
| 1568 | |
| 1569 | /* This is a fragment for a frame that should already be pending in |
| 1570 | * fragment cache. Add this fragment to the end of the pending entry. |
| 1571 | */ |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 1572 | entry = ieee80211_reassemble_find(rx->sdata, frag, seq, |
| 1573 | rx->seqno_idx, hdr); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1574 | if (!entry) { |
| 1575 | I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag); |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 1576 | return RX_DROP_MONITOR; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1577 | } |
| 1578 | |
| 1579 | /* Verify that MPDUs within one MSDU have sequential PN values. |
| 1580 | * (IEEE 802.11i, 8.3.3.4.5) */ |
| 1581 | if (entry->ccmp) { |
| 1582 | int i; |
| 1583 | u8 pn[CCMP_PN_LEN], *rpn; |
Jouni Malinen | 9190252 | 2010-06-11 10:27:33 -0700 | [diff] [blame] | 1584 | int queue; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 1585 | if (!rx->key || rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 1586 | return RX_DROP_UNUSABLE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1587 | memcpy(pn, entry->last_pn, CCMP_PN_LEN); |
| 1588 | for (i = CCMP_PN_LEN - 1; i >= 0; i--) { |
| 1589 | pn[i]++; |
| 1590 | if (pn[i]) |
| 1591 | break; |
| 1592 | } |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 1593 | queue = rx->security_idx; |
Jouni Malinen | 9190252 | 2010-06-11 10:27:33 -0700 | [diff] [blame] | 1594 | rpn = rx->key->u.ccmp.rx_pn[queue]; |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1595 | if (memcmp(pn, rpn, CCMP_PN_LEN)) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 1596 | return RX_DROP_UNUSABLE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1597 | memcpy(entry->last_pn, pn, CCMP_PN_LEN); |
| 1598 | } |
| 1599 | |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1600 | skb_pull(rx->skb, ieee80211_hdrlen(fc)); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1601 | __skb_queue_tail(&entry->skb_list, rx->skb); |
| 1602 | entry->last_frag = frag; |
| 1603 | entry->extra_len += rx->skb->len; |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1604 | if (ieee80211_has_morefrags(fc)) { |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1605 | rx->skb = NULL; |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1606 | return RX_QUEUED; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1607 | } |
| 1608 | |
| 1609 | rx->skb = __skb_dequeue(&entry->skb_list); |
| 1610 | if (skb_tailroom(rx->skb) < entry->extra_len) { |
| 1611 | I802_DEBUG_INC(rx->local->rx_expand_skb_head2); |
| 1612 | if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len, |
| 1613 | GFP_ATOMIC))) { |
| 1614 | I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag); |
| 1615 | __skb_queue_purge(&entry->skb_list); |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 1616 | return RX_DROP_UNUSABLE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1617 | } |
| 1618 | } |
| 1619 | while ((skb = __skb_dequeue(&entry->skb_list))) { |
| 1620 | memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len); |
| 1621 | dev_kfree_skb(skb); |
| 1622 | } |
| 1623 | |
| 1624 | /* Complete frame has been reassembled - process it now */ |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 1625 | status = IEEE80211_SKB_RXCB(rx->skb); |
| 1626 | status->rx_flags |= IEEE80211_RX_FRAGMENTED; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1627 | |
| 1628 | out: |
| 1629 | if (rx->sta) |
| 1630 | rx->sta->rx_packets++; |
| 1631 | if (is_multicast_ether_addr(hdr->addr1)) |
| 1632 | rx->local->dot11MulticastReceivedFrameCount++; |
| 1633 | else |
| 1634 | ieee80211_led_rx(rx->local); |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1635 | return RX_CONTINUE; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1636 | } |
| 1637 | |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 1638 | static int ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1639 | { |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 1640 | if (unlikely(!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_AUTHORIZED))) |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1641 | return -EACCES; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1642 | |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1643 | return 0; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1644 | } |
| 1645 | |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 1646 | static int ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1647 | { |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1648 | struct sk_buff *skb = rx->skb; |
| 1649 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
| 1650 | |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1651 | /* |
Johannes Berg | 7848ba7 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 1652 | * Pass through unencrypted frames if the hardware has |
| 1653 | * decrypted them already. |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 1654 | */ |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1655 | if (status->flag & RX_FLAG_DECRYPTED) |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1656 | return 0; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1657 | |
| 1658 | /* Drop unencrypted frames if key is set. */ |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1659 | if (unlikely(!ieee80211_has_protected(fc) && |
| 1660 | !ieee80211_is_nullfunc(fc) && |
Jouni Malinen | f2ca3ea | 2009-05-08 12:36:03 +0300 | [diff] [blame] | 1661 | ieee80211_is_data(fc) && |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 1662 | (rx->key || rx->sdata->drop_unencrypted))) |
| 1663 | return -EACCES; |
Johannes Berg | bef5d1c | 2010-02-16 11:05:00 +0100 | [diff] [blame] | 1664 | |
| 1665 | return 0; |
| 1666 | } |
| 1667 | |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 1668 | static int ieee80211_drop_unencrypted_mgmt(struct ieee80211_rx_data *rx) |
Johannes Berg | bef5d1c | 2010-02-16 11:05:00 +0100 | [diff] [blame] | 1669 | { |
| 1670 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data; |
Jouni Malinen | e3efca0 | 2010-03-28 22:31:15 -0700 | [diff] [blame] | 1671 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
Johannes Berg | bef5d1c | 2010-02-16 11:05:00 +0100 | [diff] [blame] | 1672 | __le16 fc = hdr->frame_control; |
Johannes Berg | bef5d1c | 2010-02-16 11:05:00 +0100 | [diff] [blame] | 1673 | |
Jouni Malinen | e3efca0 | 2010-03-28 22:31:15 -0700 | [diff] [blame] | 1674 | /* |
| 1675 | * Pass through unencrypted frames if the hardware has |
| 1676 | * decrypted them already. |
| 1677 | */ |
| 1678 | if (status->flag & RX_FLAG_DECRYPTED) |
| 1679 | return 0; |
Johannes Berg | bef5d1c | 2010-02-16 11:05:00 +0100 | [diff] [blame] | 1680 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1681 | if (rx->sta && test_sta_flag(rx->sta, WLAN_STA_MFP)) { |
Jouni Malinen | d211e90 | 2010-03-28 22:29:52 -0700 | [diff] [blame] | 1682 | if (unlikely(!ieee80211_has_protected(fc) && |
| 1683 | ieee80211_is_unicast_robust_mgmt_frame(rx->skb) && |
Jouni Malinen | cf4e594 | 2010-12-16 00:52:40 +0200 | [diff] [blame] | 1684 | rx->key)) { |
| 1685 | if (ieee80211_is_deauth(fc)) |
| 1686 | cfg80211_send_unprot_deauth(rx->sdata->dev, |
| 1687 | rx->skb->data, |
| 1688 | rx->skb->len); |
| 1689 | else if (ieee80211_is_disassoc(fc)) |
| 1690 | cfg80211_send_unprot_disassoc(rx->sdata->dev, |
| 1691 | rx->skb->data, |
| 1692 | rx->skb->len); |
Jouni Malinen | f2ca3ea | 2009-05-08 12:36:03 +0300 | [diff] [blame] | 1693 | return -EACCES; |
Jouni Malinen | cf4e594 | 2010-12-16 00:52:40 +0200 | [diff] [blame] | 1694 | } |
Jouni Malinen | f2ca3ea | 2009-05-08 12:36:03 +0300 | [diff] [blame] | 1695 | /* BIP does not use Protected field, so need to check MMIE */ |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 1696 | if (unlikely(ieee80211_is_multicast_robust_mgmt_frame(rx->skb) && |
Jouni Malinen | cf4e594 | 2010-12-16 00:52:40 +0200 | [diff] [blame] | 1697 | ieee80211_get_mmie_keyidx(rx->skb) < 0)) { |
| 1698 | if (ieee80211_is_deauth(fc)) |
| 1699 | cfg80211_send_unprot_deauth(rx->sdata->dev, |
| 1700 | rx->skb->data, |
| 1701 | rx->skb->len); |
| 1702 | else if (ieee80211_is_disassoc(fc)) |
| 1703 | cfg80211_send_unprot_disassoc(rx->sdata->dev, |
| 1704 | rx->skb->data, |
| 1705 | rx->skb->len); |
Jouni Malinen | f2ca3ea | 2009-05-08 12:36:03 +0300 | [diff] [blame] | 1706 | return -EACCES; |
Jouni Malinen | cf4e594 | 2010-12-16 00:52:40 +0200 | [diff] [blame] | 1707 | } |
Jouni Malinen | f2ca3ea | 2009-05-08 12:36:03 +0300 | [diff] [blame] | 1708 | /* |
| 1709 | * When using MFP, Action frames are not allowed prior to |
| 1710 | * having configured keys. |
| 1711 | */ |
| 1712 | if (unlikely(ieee80211_is_action(fc) && !rx->key && |
| 1713 | ieee80211_is_robust_mgmt_frame( |
| 1714 | (struct ieee80211_hdr *) rx->skb->data))) |
| 1715 | return -EACCES; |
| 1716 | } |
Johannes Berg | b3fc9c6 | 2008-04-13 10:12:47 +0200 | [diff] [blame] | 1717 | |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1718 | return 0; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1719 | } |
| 1720 | |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1721 | static int |
Felix Fietkau | 4114fa2 | 2011-04-12 19:15:22 +0200 | [diff] [blame] | 1722 | __ieee80211_data_to_8023(struct ieee80211_rx_data *rx, bool *port_control) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1723 | { |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1724 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1725 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data; |
Felix Fietkau | fbb327c | 2011-01-18 15:48:48 +0100 | [diff] [blame] | 1726 | bool check_port_control = false; |
| 1727 | struct ethhdr *ehdr; |
| 1728 | int ret; |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1729 | |
Felix Fietkau | 4114fa2 | 2011-04-12 19:15:22 +0200 | [diff] [blame] | 1730 | *port_control = false; |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1731 | if (ieee80211_has_a4(hdr->frame_control) && |
| 1732 | sdata->vif.type == NL80211_IFTYPE_AP_VLAN && !sdata->u.vlan.sta) |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1733 | return -1; |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1734 | |
Felix Fietkau | fbb327c | 2011-01-18 15:48:48 +0100 | [diff] [blame] | 1735 | if (sdata->vif.type == NL80211_IFTYPE_STATION && |
| 1736 | !!sdata->u.mgd.use_4addr != !!ieee80211_has_a4(hdr->frame_control)) { |
| 1737 | |
| 1738 | if (!sdata->u.mgd.use_4addr) |
| 1739 | return -1; |
| 1740 | else |
| 1741 | check_port_control = true; |
| 1742 | } |
| 1743 | |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1744 | if (is_multicast_ether_addr(hdr->addr1) && |
Felix Fietkau | fbb327c | 2011-01-18 15:48:48 +0100 | [diff] [blame] | 1745 | sdata->vif.type == NL80211_IFTYPE_AP_VLAN && sdata->u.vlan.sta) |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1746 | return -1; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1747 | |
Felix Fietkau | fbb327c | 2011-01-18 15:48:48 +0100 | [diff] [blame] | 1748 | ret = ieee80211_data_to_8023(rx->skb, sdata->vif.addr, sdata->vif.type); |
Felix Fietkau | 4114fa2 | 2011-04-12 19:15:22 +0200 | [diff] [blame] | 1749 | if (ret < 0) |
Felix Fietkau | fbb327c | 2011-01-18 15:48:48 +0100 | [diff] [blame] | 1750 | return ret; |
| 1751 | |
| 1752 | ehdr = (struct ethhdr *) rx->skb->data; |
Felix Fietkau | 4114fa2 | 2011-04-12 19:15:22 +0200 | [diff] [blame] | 1753 | if (ehdr->h_proto == rx->sdata->control_port_protocol) |
| 1754 | *port_control = true; |
| 1755 | else if (check_port_control) |
Felix Fietkau | fbb327c | 2011-01-18 15:48:48 +0100 | [diff] [blame] | 1756 | return -1; |
| 1757 | |
| 1758 | return 0; |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1759 | } |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1760 | |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1761 | /* |
| 1762 | * requires that rx->skb is a frame with ethernet header |
| 1763 | */ |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1764 | static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc) |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1765 | { |
Senthil Balasubramanian | c97c23e | 2008-05-28 23:15:32 +0530 | [diff] [blame] | 1766 | static const u8 pae_group_addr[ETH_ALEN] __aligned(2) |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1767 | = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 }; |
| 1768 | struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data; |
| 1769 | |
| 1770 | /* |
| 1771 | * Allow EAPOL frames to us/the PAE group address regardless |
| 1772 | * of whether the frame was encrypted or not. |
| 1773 | */ |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 1774 | if (ehdr->h_proto == rx->sdata->control_port_protocol && |
Joe Perches | 3bc7945 | 2012-05-08 18:56:53 +0000 | [diff] [blame] | 1775 | (ether_addr_equal(ehdr->h_dest, rx->sdata->vif.addr) || |
| 1776 | ether_addr_equal(ehdr->h_dest, pae_group_addr))) |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1777 | return true; |
| 1778 | |
| 1779 | if (ieee80211_802_1x_port_control(rx) || |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1780 | ieee80211_drop_unencrypted(rx, fc)) |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1781 | return false; |
| 1782 | |
| 1783 | return true; |
| 1784 | } |
| 1785 | |
| 1786 | /* |
| 1787 | * requires that rx->skb is a frame with ethernet header |
| 1788 | */ |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1789 | static void |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1790 | ieee80211_deliver_skb(struct ieee80211_rx_data *rx) |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1791 | { |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1792 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
| 1793 | struct net_device *dev = sdata->dev; |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1794 | struct sk_buff *skb, *xmit_skb; |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1795 | struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data; |
| 1796 | struct sta_info *dsta; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 1797 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1798 | |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1799 | skb = rx->skb; |
| 1800 | xmit_skb = NULL; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1801 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1802 | if ((sdata->vif.type == NL80211_IFTYPE_AP || |
| 1803 | sdata->vif.type == NL80211_IFTYPE_AP_VLAN) && |
Johannes Berg | 213cd11 | 2008-09-11 00:01:54 +0200 | [diff] [blame] | 1804 | !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) && |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 1805 | (status->rx_flags & IEEE80211_RX_RA_MATCH) && |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1806 | (sdata->vif.type != NL80211_IFTYPE_AP_VLAN || !sdata->u.vlan.sta)) { |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1807 | if (is_multicast_ether_addr(ehdr->h_dest)) { |
| 1808 | /* |
| 1809 | * send multicast frames both to higher layers in |
| 1810 | * local net stack and back to the wireless medium |
| 1811 | */ |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1812 | xmit_skb = skb_copy(skb, GFP_ATOMIC); |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 1813 | if (!xmit_skb) |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 1814 | net_info_ratelimited("%s: failed to clone multicast frame\n", |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 1815 | dev->name); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1816 | } else { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 1817 | dsta = sta_info_get(sdata, skb->data); |
| 1818 | if (dsta) { |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1819 | /* |
| 1820 | * The destination station is associated to |
| 1821 | * this AP (in this VLAN), so send the frame |
| 1822 | * directly to it and do not pass it to local |
| 1823 | * net stack. |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1824 | */ |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1825 | xmit_skb = skb; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1826 | skb = NULL; |
| 1827 | } |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1828 | } |
| 1829 | } |
| 1830 | |
| 1831 | if (skb) { |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 1832 | int align __maybe_unused; |
| 1833 | |
Kalle Valo | 59d9cb0 | 2009-12-17 13:54:57 +0100 | [diff] [blame] | 1834 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 1835 | /* |
| 1836 | * 'align' will only take the values 0 or 2 here |
| 1837 | * since all frames are required to be aligned |
| 1838 | * to 2-byte boundaries when being passed to |
| 1839 | * mac80211. That also explains the __skb_push() |
| 1840 | * below. |
| 1841 | */ |
matthieu castet | dacb6f1 | 2009-06-04 22:16:18 +0200 | [diff] [blame] | 1842 | align = ((unsigned long)(skb->data + sizeof(struct ethhdr))) & 3; |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 1843 | if (align) { |
| 1844 | if (WARN_ON(skb_headroom(skb) < 3)) { |
| 1845 | dev_kfree_skb(skb); |
| 1846 | skb = NULL; |
| 1847 | } else { |
| 1848 | u8 *data = skb->data; |
Zhu Yi | 8ce0b58 | 2009-10-28 13:13:52 -0700 | [diff] [blame] | 1849 | size_t len = skb_headlen(skb); |
| 1850 | skb->data -= align; |
| 1851 | memmove(skb->data, data, len); |
| 1852 | skb_set_tail_pointer(skb, len); |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 1853 | } |
| 1854 | } |
| 1855 | #endif |
| 1856 | |
| 1857 | if (skb) { |
| 1858 | /* deliver to local stack */ |
| 1859 | skb->protocol = eth_type_trans(skb, dev); |
| 1860 | memset(skb->cb, 0, sizeof(skb->cb)); |
John W. Linville | 5548a8a | 2010-06-24 14:25:56 -0400 | [diff] [blame] | 1861 | netif_receive_skb(skb); |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 1862 | } |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1863 | } |
| 1864 | |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1865 | if (xmit_skb) { |
Helmut Schaa | aef6c92 | 2011-12-21 09:11:35 +0100 | [diff] [blame] | 1866 | /* |
| 1867 | * Send to wireless media and increase priority by 256 to |
| 1868 | * keep the received priority instead of reclassifying |
| 1869 | * the frame (see cfg80211_classify8021d). |
| 1870 | */ |
| 1871 | xmit_skb->priority += 256; |
YOSHIFUJI Hideaki | f831e90 | 2007-12-12 03:54:23 +0900 | [diff] [blame] | 1872 | xmit_skb->protocol = htons(ETH_P_802_3); |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1873 | skb_reset_network_header(xmit_skb); |
| 1874 | skb_reset_mac_header(xmit_skb); |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1875 | dev_queue_xmit(xmit_skb); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1876 | } |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 1877 | } |
| 1878 | |
Johannes Berg | 4946162 | 2008-06-30 15:10:45 +0200 | [diff] [blame] | 1879 | static ieee80211_rx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 1880 | ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx) |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1881 | { |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1882 | struct net_device *dev = rx->sdata->dev; |
Zhu Yi | eaf85ca | 2009-12-01 10:18:37 +0800 | [diff] [blame] | 1883 | struct sk_buff *skb = rx->skb; |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1884 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
| 1885 | __le16 fc = hdr->frame_control; |
Zhu Yi | eaf85ca | 2009-12-01 10:18:37 +0800 | [diff] [blame] | 1886 | struct sk_buff_head frame_list; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 1887 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1888 | |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1889 | if (unlikely(!ieee80211_is_data(fc))) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1890 | return RX_CONTINUE; |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1891 | |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1892 | if (unlikely(!ieee80211_is_data_present(fc))) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 1893 | return RX_DROP_MONITOR; |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1894 | |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 1895 | if (!(status->rx_flags & IEEE80211_RX_AMSDU)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1896 | return RX_CONTINUE; |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1897 | |
Zhu Yi | eaf85ca | 2009-12-01 10:18:37 +0800 | [diff] [blame] | 1898 | if (ieee80211_has_a4(hdr->frame_control) && |
| 1899 | rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && |
| 1900 | !rx->sdata->u.vlan.sta) |
| 1901 | return RX_DROP_UNUSABLE; |
| 1902 | |
| 1903 | if (is_multicast_ether_addr(hdr->addr1) && |
| 1904 | ((rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && |
| 1905 | rx->sdata->u.vlan.sta) || |
| 1906 | (rx->sdata->vif.type == NL80211_IFTYPE_STATION && |
| 1907 | rx->sdata->u.mgd.use_4addr))) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 1908 | return RX_DROP_UNUSABLE; |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1909 | |
| 1910 | skb->dev = dev; |
Zhu Yi | eaf85ca | 2009-12-01 10:18:37 +0800 | [diff] [blame] | 1911 | __skb_queue_head_init(&frame_list); |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1912 | |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 1913 | if (skb_linearize(skb)) |
| 1914 | return RX_DROP_UNUSABLE; |
| 1915 | |
Zhu Yi | eaf85ca | 2009-12-01 10:18:37 +0800 | [diff] [blame] | 1916 | ieee80211_amsdu_to_8023s(skb, &frame_list, dev->dev_addr, |
| 1917 | rx->sdata->vif.type, |
Yogesh Ashok Powar | 8b3beca | 2011-05-13 11:22:31 -0700 | [diff] [blame] | 1918 | rx->local->hw.extra_tx_headroom, true); |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1919 | |
Zhu Yi | eaf85ca | 2009-12-01 10:18:37 +0800 | [diff] [blame] | 1920 | while (!skb_queue_empty(&frame_list)) { |
| 1921 | rx->skb = __skb_dequeue(&frame_list); |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1922 | |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 1923 | if (!ieee80211_frame_allowed(rx, fc)) { |
Zhu Yi | eaf85ca | 2009-12-01 10:18:37 +0800 | [diff] [blame] | 1924 | dev_kfree_skb(rx->skb); |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 1925 | continue; |
| 1926 | } |
Zhu Yi | eaf85ca | 2009-12-01 10:18:37 +0800 | [diff] [blame] | 1927 | dev->stats.rx_packets++; |
| 1928 | dev->stats.rx_bytes += rx->skb->len; |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1929 | |
| 1930 | ieee80211_deliver_skb(rx); |
| 1931 | } |
| 1932 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 1933 | return RX_QUEUED; |
Ron Rindjunsky | fd4c7f2 | 2007-11-26 16:14:33 +0200 | [diff] [blame] | 1934 | } |
| 1935 | |
Ingo Molnar | bf94e17 | 2008-10-12 23:51:38 -0700 | [diff] [blame] | 1936 | #ifdef CONFIG_MAC80211_MESH |
Davide Pesavento | b0dee57 | 2008-09-27 17:29:12 +0200 | [diff] [blame] | 1937 | static ieee80211_rx_result |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 1938 | ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx) |
| 1939 | { |
Thomas Pedersen | 30789eb | 2011-11-24 17:15:26 -0800 | [diff] [blame] | 1940 | struct ieee80211_hdr *fwd_hdr, *hdr; |
| 1941 | struct ieee80211_tx_info *info; |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 1942 | struct ieee80211s_hdr *mesh_hdr; |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 1943 | struct sk_buff *skb = rx->skb, *fwd_skb; |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 1944 | struct ieee80211_local *local = rx->local; |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 1945 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 1946 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
Thomas Pedersen | 30789eb | 2011-11-24 17:15:26 -0800 | [diff] [blame] | 1947 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
Thomas Pedersen | 0cfda85 | 2011-11-24 17:15:25 -0800 | [diff] [blame] | 1948 | __le16 reason = cpu_to_le16(WLAN_REASON_MESH_PATH_NOFORWARD); |
Thomas Pedersen | 30789eb | 2011-11-24 17:15:26 -0800 | [diff] [blame] | 1949 | u16 q, hdrlen; |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 1950 | |
| 1951 | hdr = (struct ieee80211_hdr *) skb->data; |
| 1952 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
Johannes Berg | 9b395bc | 2012-10-26 00:36:40 +0200 | [diff] [blame] | 1953 | |
| 1954 | /* make sure fixed part of mesh header is there, also checks skb len */ |
| 1955 | if (!pskb_may_pull(rx->skb, hdrlen + 6)) |
| 1956 | return RX_DROP_MONITOR; |
| 1957 | |
| 1958 | mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen); |
| 1959 | |
| 1960 | /* make sure full mesh header is there, also checks skb len */ |
| 1961 | if (!pskb_may_pull(rx->skb, |
| 1962 | hdrlen + ieee80211_get_mesh_hdrlen(mesh_hdr))) |
| 1963 | return RX_DROP_MONITOR; |
| 1964 | |
| 1965 | /* reload pointers */ |
| 1966 | hdr = (struct ieee80211_hdr *) skb->data; |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 1967 | mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen); |
| 1968 | |
Thomas Pedersen | 2157fdd | 2011-09-01 12:32:14 -0700 | [diff] [blame] | 1969 | /* frame is in RMC, don't forward */ |
| 1970 | if (ieee80211_is_data(hdr->frame_control) && |
| 1971 | is_multicast_ether_addr(hdr->addr1) && |
| 1972 | mesh_rmc_check(hdr->addr3, mesh_hdr, rx->sdata)) |
| 1973 | return RX_DROP_MONITOR; |
| 1974 | |
Javier Cardona | 555cb71 | 2012-10-24 12:43:30 -0700 | [diff] [blame] | 1975 | if (!ieee80211_is_data(hdr->frame_control) || |
| 1976 | !(status->rx_flags & IEEE80211_RX_RA_MATCH)) |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 1977 | return RX_CONTINUE; |
| 1978 | |
| 1979 | if (!mesh_hdr->ttl) |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 1980 | return RX_DROP_MONITOR; |
| 1981 | |
Javier Cardona | 43b7b31 | 2009-10-15 18:10:51 -0700 | [diff] [blame] | 1982 | if (mesh_hdr->flags & MESH_FLAGS_AE) { |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1983 | struct mesh_path *mppath; |
Javier Cardona | 43b7b31 | 2009-10-15 18:10:51 -0700 | [diff] [blame] | 1984 | char *proxied_addr; |
| 1985 | char *mpp_addr; |
| 1986 | |
| 1987 | if (is_multicast_ether_addr(hdr->addr1)) { |
| 1988 | mpp_addr = hdr->addr3; |
| 1989 | proxied_addr = mesh_hdr->eaddr1; |
Johannes Berg | 9b395bc | 2012-10-26 00:36:40 +0200 | [diff] [blame] | 1990 | } else if (mesh_hdr->flags & MESH_FLAGS_AE_A5_A6) { |
| 1991 | /* has_a4 already checked in ieee80211_rx_mesh_check */ |
Javier Cardona | 43b7b31 | 2009-10-15 18:10:51 -0700 | [diff] [blame] | 1992 | mpp_addr = hdr->addr4; |
| 1993 | proxied_addr = mesh_hdr->eaddr2; |
Johannes Berg | 9b395bc | 2012-10-26 00:36:40 +0200 | [diff] [blame] | 1994 | } else { |
| 1995 | return RX_DROP_MONITOR; |
Javier Cardona | 43b7b31 | 2009-10-15 18:10:51 -0700 | [diff] [blame] | 1996 | } |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1997 | |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 1998 | rcu_read_lock(); |
Javier Cardona | 43b7b31 | 2009-10-15 18:10:51 -0700 | [diff] [blame] | 1999 | mppath = mpp_path_lookup(proxied_addr, sdata); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 2000 | if (!mppath) { |
Javier Cardona | 43b7b31 | 2009-10-15 18:10:51 -0700 | [diff] [blame] | 2001 | mpp_path_add(proxied_addr, mpp_addr, sdata); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 2002 | } else { |
| 2003 | spin_lock_bh(&mppath->state_lock); |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2004 | if (!ether_addr_equal(mppath->mpp, mpp_addr)) |
Javier Cardona | 43b7b31 | 2009-10-15 18:10:51 -0700 | [diff] [blame] | 2005 | memcpy(mppath->mpp, mpp_addr, ETH_ALEN); |
YanBo | 79617de | 2008-09-22 13:30:32 +0800 | [diff] [blame] | 2006 | spin_unlock_bh(&mppath->state_lock); |
| 2007 | } |
| 2008 | rcu_read_unlock(); |
| 2009 | } |
| 2010 | |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 2011 | /* Frame has reached destination. Don't forward */ |
| 2012 | if (!is_multicast_ether_addr(hdr->addr1) && |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2013 | ether_addr_equal(sdata->vif.addr, hdr->addr3)) |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 2014 | return RX_CONTINUE; |
| 2015 | |
Yoni Divinsky | 00e96de | 2012-06-20 15:39:13 +0300 | [diff] [blame] | 2016 | q = ieee80211_select_queue_80211(sdata, skb, hdr); |
Thomas Pedersen | d3c1597 | 2011-11-24 17:15:23 -0800 | [diff] [blame] | 2017 | if (ieee80211_queue_stopped(&local->hw, q)) { |
Thomas Pedersen | 30789eb | 2011-11-24 17:15:26 -0800 | [diff] [blame] | 2018 | IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_congestion); |
Thomas Pedersen | d3c1597 | 2011-11-24 17:15:23 -0800 | [diff] [blame] | 2019 | return RX_DROP_MONITOR; |
| 2020 | } |
| 2021 | skb_set_queue_mapping(skb, q); |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 2022 | |
Thomas Pedersen | 30789eb | 2011-11-24 17:15:26 -0800 | [diff] [blame] | 2023 | if (!--mesh_hdr->ttl) { |
| 2024 | IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_ttl); |
Javier Cardona | 2ac64cd | 2012-10-24 12:43:31 -0700 | [diff] [blame] | 2025 | goto out; |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 2026 | } |
| 2027 | |
Chun-Yeow Yeoh | d665508 | 2012-03-02 02:03:19 +0800 | [diff] [blame] | 2028 | if (!ifmsh->mshcfg.dot11MeshForwarding) |
| 2029 | goto out; |
| 2030 | |
Thomas Pedersen | 30789eb | 2011-11-24 17:15:26 -0800 | [diff] [blame] | 2031 | fwd_skb = skb_copy(skb, GFP_ATOMIC); |
| 2032 | if (!fwd_skb) { |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 2033 | net_info_ratelimited("%s: failed to clone mesh frame\n", |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 2034 | sdata->name); |
Thomas Pedersen | 30789eb | 2011-11-24 17:15:26 -0800 | [diff] [blame] | 2035 | goto out; |
| 2036 | } |
| 2037 | |
| 2038 | fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data; |
| 2039 | info = IEEE80211_SKB_CB(fwd_skb); |
| 2040 | memset(info, 0, sizeof(*info)); |
| 2041 | info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING; |
| 2042 | info->control.vif = &rx->sdata->vif; |
| 2043 | info->control.jiffies = jiffies; |
| 2044 | if (is_multicast_ether_addr(fwd_hdr->addr1)) { |
| 2045 | IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_mcast); |
| 2046 | memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN); |
| 2047 | } else if (!mesh_nexthop_lookup(fwd_skb, sdata)) { |
| 2048 | IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_unicast); |
| 2049 | } else { |
| 2050 | /* unable to resolve next hop */ |
| 2051 | mesh_path_error_tx(ifmsh->mshcfg.element_ttl, fwd_hdr->addr3, |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 2052 | 0, reason, fwd_hdr->addr2, sdata); |
Thomas Pedersen | 30789eb | 2011-11-24 17:15:26 -0800 | [diff] [blame] | 2053 | IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_no_route); |
Jesper Juhl | 74b8cc3 | 2012-01-14 21:52:17 +0100 | [diff] [blame] | 2054 | kfree_skb(fwd_skb); |
Thomas Pedersen | 30789eb | 2011-11-24 17:15:26 -0800 | [diff] [blame] | 2055 | return RX_DROP_MONITOR; |
| 2056 | } |
| 2057 | |
| 2058 | IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_frames); |
| 2059 | ieee80211_add_pending_skb(local, fwd_skb); |
Johannes Berg | b51aff0 | 2010-12-22 10:15:07 +0100 | [diff] [blame] | 2060 | out: |
Javier Cardona | 3c5772a | 2009-08-10 12:15:48 -0700 | [diff] [blame] | 2061 | if (is_multicast_ether_addr(hdr->addr1) || |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 2062 | sdata->dev->flags & IFF_PROMISC) |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 2063 | return RX_CONTINUE; |
| 2064 | else |
| 2065 | return RX_DROP_MONITOR; |
| 2066 | } |
Ingo Molnar | bf94e17 | 2008-10-12 23:51:38 -0700 | [diff] [blame] | 2067 | #endif |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 2068 | |
| 2069 | static ieee80211_rx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 2070 | ieee80211_rx_h_data(struct ieee80211_rx_data *rx) |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 2071 | { |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 2072 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
Vivek Natarajan | e15276a | 2010-02-08 17:47:01 +0530 | [diff] [blame] | 2073 | struct ieee80211_local *local = rx->local; |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 2074 | struct net_device *dev = sdata->dev; |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 2075 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data; |
| 2076 | __le16 fc = hdr->frame_control; |
Felix Fietkau | 4114fa2 | 2011-04-12 19:15:22 +0200 | [diff] [blame] | 2077 | bool port_control; |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2078 | int err; |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 2079 | |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 2080 | if (unlikely(!ieee80211_is_data(hdr->frame_control))) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 2081 | return RX_CONTINUE; |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 2082 | |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 2083 | if (unlikely(!ieee80211_is_data_present(hdr->frame_control))) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 2084 | return RX_DROP_MONITOR; |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 2085 | |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2086 | /* |
Johannes Berg | e7f4a94 | 2011-11-04 11:18:20 +0100 | [diff] [blame] | 2087 | * Send unexpected-4addr-frame event to hostapd. For older versions, |
| 2088 | * also drop the frame to cooked monitor interfaces. |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2089 | */ |
| 2090 | if (ieee80211_has_a4(hdr->frame_control) && |
Johannes Berg | e7f4a94 | 2011-11-04 11:18:20 +0100 | [diff] [blame] | 2091 | sdata->vif.type == NL80211_IFTYPE_AP) { |
| 2092 | if (rx->sta && |
| 2093 | !test_and_set_sta_flag(rx->sta, WLAN_STA_4ADDR_EVENT)) |
| 2094 | cfg80211_rx_unexpected_4addr_frame( |
| 2095 | rx->sdata->dev, rx->sta->sta.addr, GFP_ATOMIC); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2096 | return RX_DROP_MONITOR; |
Johannes Berg | e7f4a94 | 2011-11-04 11:18:20 +0100 | [diff] [blame] | 2097 | } |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 2098 | |
Felix Fietkau | 4114fa2 | 2011-04-12 19:15:22 +0200 | [diff] [blame] | 2099 | err = __ieee80211_data_to_8023(rx, &port_control); |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 2100 | if (unlikely(err)) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 2101 | return RX_DROP_UNUSABLE; |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 2102 | |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 2103 | if (!ieee80211_frame_allowed(rx, fc)) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 2104 | return RX_DROP_MONITOR; |
Johannes Berg | ce3edf6d0 | 2007-12-19 01:31:22 +0100 | [diff] [blame] | 2105 | |
Felix Fietkau | 4114fa2 | 2011-04-12 19:15:22 +0200 | [diff] [blame] | 2106 | if (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && |
| 2107 | unlikely(port_control) && sdata->bss) { |
| 2108 | sdata = container_of(sdata->bss, struct ieee80211_sub_if_data, |
| 2109 | u.ap); |
| 2110 | dev = sdata->dev; |
| 2111 | rx->sdata = sdata; |
| 2112 | } |
| 2113 | |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 2114 | rx->skb->dev = dev; |
| 2115 | |
| 2116 | dev->stats.rx_packets++; |
| 2117 | dev->stats.rx_bytes += rx->skb->len; |
| 2118 | |
Helmut Schaa | 08ca944e | 2010-11-30 12:19:34 +0100 | [diff] [blame] | 2119 | if (local->ps_sdata && local->hw.conf.dynamic_ps_timeout > 0 && |
Rajkumar Manoharan | 8c99f69 | 2011-02-02 22:57:53 +0530 | [diff] [blame] | 2120 | !is_multicast_ether_addr( |
| 2121 | ((struct ethhdr *)rx->skb->data)->h_dest) && |
| 2122 | (!local->scanning && |
| 2123 | !test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))) { |
Vivek Natarajan | e15276a | 2010-02-08 17:47:01 +0530 | [diff] [blame] | 2124 | mod_timer(&local->dynamic_ps_timer, jiffies + |
| 2125 | msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout)); |
| 2126 | } |
| 2127 | |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame] | 2128 | ieee80211_deliver_skb(rx); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2129 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 2130 | return RX_QUEUED; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2131 | } |
| 2132 | |
Johannes Berg | 4946162 | 2008-06-30 15:10:45 +0200 | [diff] [blame] | 2133 | static ieee80211_rx_result debug_noinline |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 2134 | ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx) |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2135 | { |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2136 | struct sk_buff *skb = rx->skb; |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 2137 | struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data; |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2138 | struct tid_ampdu_rx *tid_agg_rx; |
| 2139 | u16 start_seq_num; |
| 2140 | u16 tid; |
| 2141 | |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 2142 | if (likely(!ieee80211_is_ctl(bar->frame_control))) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 2143 | return RX_CONTINUE; |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2144 | |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 2145 | if (ieee80211_is_back_req(bar->frame_control)) { |
Johannes Berg | 8ae5977 | 2010-05-30 14:52:58 +0200 | [diff] [blame] | 2146 | struct { |
| 2147 | __le16 control, start_seq_num; |
| 2148 | } __packed bar_data; |
| 2149 | |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2150 | if (!rx->sta) |
Johannes Berg | a02ae75 | 2009-11-16 12:00:40 +0100 | [diff] [blame] | 2151 | return RX_DROP_MONITOR; |
Johannes Berg | 8ae5977 | 2010-05-30 14:52:58 +0200 | [diff] [blame] | 2152 | |
| 2153 | if (skb_copy_bits(skb, offsetof(struct ieee80211_bar, control), |
| 2154 | &bar_data, sizeof(bar_data))) |
| 2155 | return RX_DROP_MONITOR; |
| 2156 | |
Johannes Berg | 8ae5977 | 2010-05-30 14:52:58 +0200 | [diff] [blame] | 2157 | tid = le16_to_cpu(bar_data.control) >> 12; |
Johannes Berg | a87f736 | 2010-06-10 10:21:38 +0200 | [diff] [blame] | 2158 | |
| 2159 | tid_agg_rx = rcu_dereference(rx->sta->ampdu_mlme.tid_rx[tid]); |
| 2160 | if (!tid_agg_rx) |
Johannes Berg | a02ae75 | 2009-11-16 12:00:40 +0100 | [diff] [blame] | 2161 | return RX_DROP_MONITOR; |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2162 | |
Johannes Berg | 8ae5977 | 2010-05-30 14:52:58 +0200 | [diff] [blame] | 2163 | start_seq_num = le16_to_cpu(bar_data.start_seq_num) >> 4; |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2164 | |
| 2165 | /* reset session timer */ |
Johannes Berg | 20ad19d | 2009-02-10 21:25:45 +0100 | [diff] [blame] | 2166 | if (tid_agg_rx->timeout) |
| 2167 | mod_timer(&tid_agg_rx->session_timer, |
| 2168 | TU_TO_EXP_TIME(tid_agg_rx->timeout)); |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2169 | |
Johannes Berg | dd31857 | 2010-11-29 11:09:16 +0100 | [diff] [blame] | 2170 | spin_lock(&tid_agg_rx->reorder_lock); |
Johannes Berg | a02ae75 | 2009-11-16 12:00:40 +0100 | [diff] [blame] | 2171 | /* release stored frames up to start of BAR */ |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 2172 | ieee80211_release_reorder_frames(rx->sdata, tid_agg_rx, |
| 2173 | start_seq_num); |
Johannes Berg | dd31857 | 2010-11-29 11:09:16 +0100 | [diff] [blame] | 2174 | spin_unlock(&tid_agg_rx->reorder_lock); |
| 2175 | |
Johannes Berg | a02ae75 | 2009-11-16 12:00:40 +0100 | [diff] [blame] | 2176 | kfree_skb(skb); |
| 2177 | return RX_QUEUED; |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2178 | } |
| 2179 | |
Johannes Berg | 08daeca | 2010-05-30 14:53:43 +0200 | [diff] [blame] | 2180 | /* |
| 2181 | * After this point, we only want management frames, |
| 2182 | * so we can drop all remaining control frames to |
| 2183 | * cooked monitor interfaces. |
| 2184 | */ |
| 2185 | return RX_DROP_MONITOR; |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 2186 | } |
| 2187 | |
Jouni Malinen | f4f727a | 2009-01-10 11:46:53 +0200 | [diff] [blame] | 2188 | static void ieee80211_process_sa_query_req(struct ieee80211_sub_if_data *sdata, |
| 2189 | struct ieee80211_mgmt *mgmt, |
| 2190 | size_t len) |
Jouni Malinen | fea1473 | 2009-01-08 13:32:06 +0200 | [diff] [blame] | 2191 | { |
| 2192 | struct ieee80211_local *local = sdata->local; |
| 2193 | struct sk_buff *skb; |
| 2194 | struct ieee80211_mgmt *resp; |
| 2195 | |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2196 | if (!ether_addr_equal(mgmt->da, sdata->vif.addr)) { |
Jouni Malinen | fea1473 | 2009-01-08 13:32:06 +0200 | [diff] [blame] | 2197 | /* Not to own unicast address */ |
| 2198 | return; |
| 2199 | } |
| 2200 | |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2201 | if (!ether_addr_equal(mgmt->sa, sdata->u.mgd.bssid) || |
| 2202 | !ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid)) { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2203 | /* Not from the current AP or not associated yet. */ |
Jouni Malinen | fea1473 | 2009-01-08 13:32:06 +0200 | [diff] [blame] | 2204 | return; |
| 2205 | } |
| 2206 | |
| 2207 | if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) { |
| 2208 | /* Too short SA Query request frame */ |
| 2209 | return; |
| 2210 | } |
| 2211 | |
| 2212 | skb = dev_alloc_skb(sizeof(*resp) + local->hw.extra_tx_headroom); |
| 2213 | if (skb == NULL) |
| 2214 | return; |
| 2215 | |
| 2216 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 2217 | resp = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 2218 | memset(resp, 0, 24); |
| 2219 | memcpy(resp->da, mgmt->sa, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2220 | memcpy(resp->sa, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2221 | memcpy(resp->bssid, sdata->u.mgd.bssid, ETH_ALEN); |
Jouni Malinen | fea1473 | 2009-01-08 13:32:06 +0200 | [diff] [blame] | 2222 | resp->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 2223 | IEEE80211_STYPE_ACTION); |
| 2224 | skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query)); |
| 2225 | resp->u.action.category = WLAN_CATEGORY_SA_QUERY; |
| 2226 | resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE; |
| 2227 | memcpy(resp->u.action.u.sa_query.trans_id, |
| 2228 | mgmt->u.action.u.sa_query.trans_id, |
| 2229 | WLAN_SA_QUERY_TR_ID_LEN); |
| 2230 | |
Johannes Berg | 62ae67b | 2009-11-18 18:42:05 +0100 | [diff] [blame] | 2231 | ieee80211_tx_skb(sdata, skb); |
Jouni Malinen | fea1473 | 2009-01-08 13:32:06 +0200 | [diff] [blame] | 2232 | } |
| 2233 | |
Johannes Berg | 4946162 | 2008-06-30 15:10:45 +0200 | [diff] [blame] | 2234 | static ieee80211_rx_result debug_noinline |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2235 | ieee80211_rx_h_mgmt_check(struct ieee80211_rx_data *rx) |
| 2236 | { |
| 2237 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2238 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2239 | |
| 2240 | /* |
| 2241 | * From here on, look only at management frames. |
| 2242 | * Data and control frames are already handled, |
| 2243 | * and unknown (reserved) frames are useless. |
| 2244 | */ |
| 2245 | if (rx->skb->len < 24) |
| 2246 | return RX_DROP_MONITOR; |
| 2247 | |
| 2248 | if (!ieee80211_is_mgmt(mgmt->frame_control)) |
| 2249 | return RX_DROP_MONITOR; |
| 2250 | |
Johannes Berg | ee97192 | 2011-11-04 11:18:18 +0100 | [diff] [blame] | 2251 | if (rx->sdata->vif.type == NL80211_IFTYPE_AP && |
| 2252 | ieee80211_is_beacon(mgmt->frame_control) && |
| 2253 | !(rx->flags & IEEE80211_RX_BEACON_REPORTED)) { |
Johannes Berg | 804483e | 2012-03-05 22:18:41 +0100 | [diff] [blame] | 2254 | int sig = 0; |
| 2255 | |
| 2256 | if (rx->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) |
| 2257 | sig = status->signal; |
| 2258 | |
Johannes Berg | ee97192 | 2011-11-04 11:18:18 +0100 | [diff] [blame] | 2259 | cfg80211_report_obss_beacon(rx->local->hw.wiphy, |
| 2260 | rx->skb->data, rx->skb->len, |
Ben Greear | 37c73b5 | 2012-10-26 14:49:25 -0700 | [diff] [blame] | 2261 | status->freq, sig); |
Johannes Berg | ee97192 | 2011-11-04 11:18:18 +0100 | [diff] [blame] | 2262 | rx->flags |= IEEE80211_RX_BEACON_REPORTED; |
| 2263 | } |
| 2264 | |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2265 | if (!(status->rx_flags & IEEE80211_RX_RA_MATCH)) |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2266 | return RX_DROP_MONITOR; |
| 2267 | |
| 2268 | if (ieee80211_drop_unencrypted_mgmt(rx)) |
| 2269 | return RX_DROP_UNUSABLE; |
| 2270 | |
| 2271 | return RX_CONTINUE; |
| 2272 | } |
| 2273 | |
| 2274 | static ieee80211_rx_result debug_noinline |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2275 | ieee80211_rx_h_action(struct ieee80211_rx_data *rx) |
| 2276 | { |
| 2277 | struct ieee80211_local *local = rx->local; |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 2278 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2279 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2280 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2281 | int len = rx->skb->len; |
| 2282 | |
| 2283 | if (!ieee80211_is_action(mgmt->frame_control)) |
| 2284 | return RX_CONTINUE; |
| 2285 | |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 2286 | /* drop too small frames */ |
| 2287 | if (len < IEEE80211_MIN_ACTION_SIZE) |
| 2288 | return RX_DROP_UNUSABLE; |
| 2289 | |
| 2290 | if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2291 | return RX_DROP_UNUSABLE; |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2292 | |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2293 | if (!(status->rx_flags & IEEE80211_RX_RA_MATCH)) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2294 | return RX_DROP_UNUSABLE; |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2295 | |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2296 | switch (mgmt->u.action.category) { |
Johannes Berg | 1d8d3de | 2011-12-16 15:28:57 +0100 | [diff] [blame] | 2297 | case WLAN_CATEGORY_HT: |
| 2298 | /* reject HT action frames from stations not supporting HT */ |
| 2299 | if (!rx->sta->sta.ht_cap.ht_supported) |
| 2300 | goto invalid; |
| 2301 | |
| 2302 | if (sdata->vif.type != NL80211_IFTYPE_STATION && |
| 2303 | sdata->vif.type != NL80211_IFTYPE_MESH_POINT && |
| 2304 | sdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
| 2305 | sdata->vif.type != NL80211_IFTYPE_AP && |
| 2306 | sdata->vif.type != NL80211_IFTYPE_ADHOC) |
| 2307 | break; |
| 2308 | |
| 2309 | /* verify action & smps_control are present */ |
| 2310 | if (len < IEEE80211_MIN_ACTION_SIZE + 2) |
| 2311 | goto invalid; |
| 2312 | |
| 2313 | switch (mgmt->u.action.u.ht_smps.action) { |
| 2314 | case WLAN_HT_ACTION_SMPS: { |
| 2315 | struct ieee80211_supported_band *sband; |
| 2316 | u8 smps; |
| 2317 | |
| 2318 | /* convert to HT capability */ |
| 2319 | switch (mgmt->u.action.u.ht_smps.smps_control) { |
| 2320 | case WLAN_HT_SMPS_CONTROL_DISABLED: |
| 2321 | smps = WLAN_HT_CAP_SM_PS_DISABLED; |
| 2322 | break; |
| 2323 | case WLAN_HT_SMPS_CONTROL_STATIC: |
| 2324 | smps = WLAN_HT_CAP_SM_PS_STATIC; |
| 2325 | break; |
| 2326 | case WLAN_HT_SMPS_CONTROL_DYNAMIC: |
| 2327 | smps = WLAN_HT_CAP_SM_PS_DYNAMIC; |
| 2328 | break; |
| 2329 | default: |
| 2330 | goto invalid; |
| 2331 | } |
| 2332 | smps <<= IEEE80211_HT_CAP_SM_PS_SHIFT; |
| 2333 | |
| 2334 | /* if no change do nothing */ |
| 2335 | if ((rx->sta->sta.ht_cap.cap & |
| 2336 | IEEE80211_HT_CAP_SM_PS) == smps) |
| 2337 | goto handled; |
| 2338 | |
| 2339 | rx->sta->sta.ht_cap.cap &= ~IEEE80211_HT_CAP_SM_PS; |
| 2340 | rx->sta->sta.ht_cap.cap |= smps; |
| 2341 | |
| 2342 | sband = rx->local->hw.wiphy->bands[status->band]; |
| 2343 | |
Johannes Berg | 64f68e5 | 2012-03-28 10:58:37 +0200 | [diff] [blame] | 2344 | rate_control_rate_update(local, sband, rx->sta, |
| 2345 | IEEE80211_RC_SMPS_CHANGED); |
Johannes Berg | 1d8d3de | 2011-12-16 15:28:57 +0100 | [diff] [blame] | 2346 | goto handled; |
| 2347 | } |
| 2348 | default: |
| 2349 | goto invalid; |
| 2350 | } |
| 2351 | |
| 2352 | break; |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2353 | case WLAN_CATEGORY_BACK: |
Johannes Berg | 8abd3f9 | 2009-02-10 21:25:47 +0100 | [diff] [blame] | 2354 | if (sdata->vif.type != NL80211_IFTYPE_STATION && |
Thomas Pedersen | ae2772b | 2011-10-26 14:47:29 -0700 | [diff] [blame] | 2355 | sdata->vif.type != NL80211_IFTYPE_MESH_POINT && |
Johannes Berg | 8abd3f9 | 2009-02-10 21:25:47 +0100 | [diff] [blame] | 2356 | sdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
Alexander Simon | 13c40c5 | 2011-11-30 16:56:34 +0100 | [diff] [blame] | 2357 | sdata->vif.type != NL80211_IFTYPE_AP && |
| 2358 | sdata->vif.type != NL80211_IFTYPE_ADHOC) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2359 | break; |
Johannes Berg | 8abd3f9 | 2009-02-10 21:25:47 +0100 | [diff] [blame] | 2360 | |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 2361 | /* verify action_code is present */ |
| 2362 | if (len < IEEE80211_MIN_ACTION_SIZE + 1) |
| 2363 | break; |
| 2364 | |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2365 | switch (mgmt->u.action.u.addba_req.action_code) { |
| 2366 | case WLAN_ACTION_ADDBA_REQ: |
| 2367 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2368 | sizeof(mgmt->u.action.u.addba_req))) |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 2369 | goto invalid; |
| 2370 | break; |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2371 | case WLAN_ACTION_ADDBA_RESP: |
| 2372 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2373 | sizeof(mgmt->u.action.u.addba_resp))) |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 2374 | goto invalid; |
| 2375 | break; |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2376 | case WLAN_ACTION_DELBA: |
| 2377 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2378 | sizeof(mgmt->u.action.u.delba))) |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 2379 | goto invalid; |
| 2380 | break; |
| 2381 | default: |
| 2382 | goto invalid; |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2383 | } |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 2384 | |
Johannes Berg | 8b58ff8 | 2010-06-10 10:21:51 +0200 | [diff] [blame] | 2385 | goto queue; |
Johannes Berg | 39192c0 | 2008-09-09 14:49:03 +0200 | [diff] [blame] | 2386 | case WLAN_CATEGORY_SPECTRUM_MGMT: |
Johannes Berg | 4797c7b | 2012-07-26 14:31:19 +0200 | [diff] [blame] | 2387 | if (status->band != IEEE80211_BAND_5GHZ) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2388 | break; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2389 | |
| 2390 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2391 | break; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2392 | |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 2393 | /* verify action_code is present */ |
| 2394 | if (len < IEEE80211_MIN_ACTION_SIZE + 1) |
| 2395 | break; |
| 2396 | |
Johannes Berg | 39192c0 | 2008-09-09 14:49:03 +0200 | [diff] [blame] | 2397 | switch (mgmt->u.action.u.measurement.action_code) { |
| 2398 | case WLAN_ACTION_SPCT_MSR_REQ: |
| 2399 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2400 | sizeof(mgmt->u.action.u.measurement))) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2401 | break; |
Johannes Berg | 39192c0 | 2008-09-09 14:49:03 +0200 | [diff] [blame] | 2402 | ieee80211_process_measurement_req(sdata, mgmt, len); |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2403 | goto handled; |
Sujith | c481ec9 | 2009-01-06 09:28:37 +0530 | [diff] [blame] | 2404 | case WLAN_ACTION_SPCT_CHL_SWITCH: |
| 2405 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2406 | sizeof(mgmt->u.action.u.chan_switch))) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2407 | break; |
Sujith | c481ec9 | 2009-01-06 09:28:37 +0530 | [diff] [blame] | 2408 | |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 2409 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2410 | break; |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 2411 | |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2412 | if (!ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid)) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2413 | break; |
Sujith | c481ec9 | 2009-01-06 09:28:37 +0530 | [diff] [blame] | 2414 | |
Johannes Berg | 8b58ff8 | 2010-06-10 10:21:51 +0200 | [diff] [blame] | 2415 | goto queue; |
Johannes Berg | 39192c0 | 2008-09-09 14:49:03 +0200 | [diff] [blame] | 2416 | } |
| 2417 | break; |
Jouni Malinen | fea1473 | 2009-01-08 13:32:06 +0200 | [diff] [blame] | 2418 | case WLAN_CATEGORY_SA_QUERY: |
| 2419 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2420 | sizeof(mgmt->u.action.u.sa_query))) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2421 | break; |
| 2422 | |
Jouni Malinen | fea1473 | 2009-01-08 13:32:06 +0200 | [diff] [blame] | 2423 | switch (mgmt->u.action.u.sa_query.action) { |
| 2424 | case WLAN_ACTION_SA_QUERY_REQUEST: |
| 2425 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2426 | break; |
Jouni Malinen | fea1473 | 2009-01-08 13:32:06 +0200 | [diff] [blame] | 2427 | ieee80211_process_sa_query_req(sdata, mgmt, len); |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2428 | goto handled; |
Jouni Malinen | fea1473 | 2009-01-08 13:32:06 +0200 | [diff] [blame] | 2429 | } |
| 2430 | break; |
Thomas Pedersen | 8db0985 | 2011-08-12 20:01:00 -0700 | [diff] [blame] | 2431 | case WLAN_CATEGORY_SELF_PROTECTED: |
Johannes Berg | 9b395bc | 2012-10-26 00:36:40 +0200 | [diff] [blame] | 2432 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2433 | sizeof(mgmt->u.action.u.self_prot.action_code))) |
| 2434 | break; |
| 2435 | |
Thomas Pedersen | 8db0985 | 2011-08-12 20:01:00 -0700 | [diff] [blame] | 2436 | switch (mgmt->u.action.u.self_prot.action_code) { |
| 2437 | case WLAN_SP_MESH_PEERING_OPEN: |
| 2438 | case WLAN_SP_MESH_PEERING_CLOSE: |
| 2439 | case WLAN_SP_MESH_PEERING_CONFIRM: |
| 2440 | if (!ieee80211_vif_is_mesh(&sdata->vif)) |
| 2441 | goto invalid; |
| 2442 | if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE) |
| 2443 | /* userspace handles this frame */ |
| 2444 | break; |
| 2445 | goto queue; |
| 2446 | case WLAN_SP_MGK_INFORM: |
| 2447 | case WLAN_SP_MGK_ACK: |
| 2448 | if (!ieee80211_vif_is_mesh(&sdata->vif)) |
| 2449 | goto invalid; |
| 2450 | break; |
| 2451 | } |
| 2452 | break; |
Javier Cardona | d3aaec8a | 2011-05-03 16:57:09 -0700 | [diff] [blame] | 2453 | case WLAN_CATEGORY_MESH_ACTION: |
Johannes Berg | 9b395bc | 2012-10-26 00:36:40 +0200 | [diff] [blame] | 2454 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2455 | sizeof(mgmt->u.action.u.mesh_action.action_code))) |
| 2456 | break; |
| 2457 | |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2458 | if (!ieee80211_vif_is_mesh(&sdata->vif)) |
| 2459 | break; |
Thomas Pedersen | 25d49e4 | 2011-08-11 19:35:15 -0700 | [diff] [blame] | 2460 | if (mesh_action_is_path_sel(mgmt) && |
Johannes Berg | 1df332e | 2012-10-26 00:09:11 +0200 | [diff] [blame] | 2461 | !mesh_path_sel_is_hwmp(sdata)) |
Javier Cardona | c7108a7 | 2010-12-16 17:37:50 -0800 | [diff] [blame] | 2462 | break; |
| 2463 | goto queue; |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2464 | } |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 2465 | |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2466 | return RX_CONTINUE; |
| 2467 | |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 2468 | invalid: |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2469 | status->rx_flags |= IEEE80211_RX_MALFORMED_ACTION_FRM; |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2470 | /* will return in the next handlers */ |
| 2471 | return RX_CONTINUE; |
| 2472 | |
| 2473 | handled: |
| 2474 | if (rx->sta) |
| 2475 | rx->sta->rx_packets++; |
| 2476 | dev_kfree_skb(rx->skb); |
| 2477 | return RX_QUEUED; |
| 2478 | |
| 2479 | queue: |
| 2480 | rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME; |
| 2481 | skb_queue_tail(&sdata->skb_queue, rx->skb); |
| 2482 | ieee80211_queue_work(&local->hw, &sdata->work); |
| 2483 | if (rx->sta) |
| 2484 | rx->sta->rx_packets++; |
| 2485 | return RX_QUEUED; |
| 2486 | } |
| 2487 | |
| 2488 | static ieee80211_rx_result debug_noinline |
| 2489 | ieee80211_rx_h_userspace_mgmt(struct ieee80211_rx_data *rx) |
| 2490 | { |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2491 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
Johannes Berg | 804483e | 2012-03-05 22:18:41 +0100 | [diff] [blame] | 2492 | int sig = 0; |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2493 | |
| 2494 | /* skip known-bad action frames and return them in the next handler */ |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2495 | if (status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM) |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2496 | return RX_CONTINUE; |
Felix Fietkau | d790744 | 2010-01-07 20:23:53 +0100 | [diff] [blame] | 2497 | |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 2498 | /* |
| 2499 | * Getting here means the kernel doesn't know how to handle |
| 2500 | * it, but maybe userspace does ... include returned frames |
| 2501 | * so userspace can register for those to know whether ones |
| 2502 | * it transmitted were processed or returned. |
| 2503 | */ |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 2504 | |
Johannes Berg | 804483e | 2012-03-05 22:18:41 +0100 | [diff] [blame] | 2505 | if (rx->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) |
| 2506 | sig = status->signal; |
| 2507 | |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 2508 | if (cfg80211_rx_mgmt(&rx->sdata->wdev, status->freq, sig, |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2509 | rx->skb->data, rx->skb->len, |
| 2510 | GFP_ATOMIC)) { |
| 2511 | if (rx->sta) |
| 2512 | rx->sta->rx_packets++; |
| 2513 | dev_kfree_skb(rx->skb); |
| 2514 | return RX_QUEUED; |
| 2515 | } |
| 2516 | |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2517 | return RX_CONTINUE; |
| 2518 | } |
| 2519 | |
| 2520 | static ieee80211_rx_result debug_noinline |
| 2521 | ieee80211_rx_h_action_return(struct ieee80211_rx_data *rx) |
| 2522 | { |
| 2523 | struct ieee80211_local *local = rx->local; |
| 2524 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data; |
| 2525 | struct sk_buff *nskb; |
| 2526 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2527 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb); |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2528 | |
| 2529 | if (!ieee80211_is_action(mgmt->frame_control)) |
| 2530 | return RX_CONTINUE; |
| 2531 | |
| 2532 | /* |
| 2533 | * For AP mode, hostapd is responsible for handling any action |
| 2534 | * frames that we didn't handle, including returning unknown |
| 2535 | * ones. For all other modes we will return them to the sender, |
| 2536 | * setting the 0x80 bit in the action category, as required by |
Johannes Berg | 4b5ebcc | 2012-06-27 15:38:56 +0200 | [diff] [blame] | 2537 | * 802.11-2012 9.24.4. |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2538 | * Newer versions of hostapd shall also use the management frame |
| 2539 | * registration mechanisms, but older ones still use cooked |
| 2540 | * monitor interfaces so push all frames there. |
| 2541 | */ |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2542 | if (!(status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM) && |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2543 | (sdata->vif.type == NL80211_IFTYPE_AP || |
| 2544 | sdata->vif.type == NL80211_IFTYPE_AP_VLAN)) |
| 2545 | return RX_DROP_MONITOR; |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 2546 | |
Johannes Berg | 4b5ebcc | 2012-06-27 15:38:56 +0200 | [diff] [blame] | 2547 | if (is_multicast_ether_addr(mgmt->da)) |
| 2548 | return RX_DROP_MONITOR; |
| 2549 | |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2550 | /* do not return rejected action frames */ |
| 2551 | if (mgmt->u.action.category & 0x80) |
| 2552 | return RX_DROP_UNUSABLE; |
| 2553 | |
| 2554 | nskb = skb_copy_expand(rx->skb, local->hw.extra_tx_headroom, 0, |
| 2555 | GFP_ATOMIC); |
| 2556 | if (nskb) { |
John W. Linville | 292b4df | 2010-06-24 11:13:56 -0400 | [diff] [blame] | 2557 | struct ieee80211_mgmt *nmgmt = (void *)nskb->data; |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2558 | |
John W. Linville | 292b4df | 2010-06-24 11:13:56 -0400 | [diff] [blame] | 2559 | nmgmt->u.action.category |= 0x80; |
| 2560 | memcpy(nmgmt->da, nmgmt->sa, ETH_ALEN); |
| 2561 | memcpy(nmgmt->sa, rx->sdata->vif.addr, ETH_ALEN); |
Johannes Berg | 8404080 | 2010-02-15 12:46:39 +0200 | [diff] [blame] | 2562 | |
| 2563 | memset(nskb->cb, 0, sizeof(nskb->cb)); |
| 2564 | |
| 2565 | ieee80211_tx_skb(rx->sdata, nskb); |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2566 | } |
Johannes Berg | 39192c0 | 2008-09-09 14:49:03 +0200 | [diff] [blame] | 2567 | dev_kfree_skb(rx->skb); |
| 2568 | return RX_QUEUED; |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 2569 | } |
| 2570 | |
| 2571 | static ieee80211_rx_result debug_noinline |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 2572 | ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2573 | { |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 2574 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2575 | struct ieee80211_mgmt *mgmt = (void *)rx->skb->data; |
| 2576 | __le16 stype; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2577 | |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2578 | stype = mgmt->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE); |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 2579 | |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2580 | if (!ieee80211_vif_is_mesh(&sdata->vif) && |
| 2581 | sdata->vif.type != NL80211_IFTYPE_ADHOC && |
| 2582 | sdata->vif.type != NL80211_IFTYPE_STATION) |
| 2583 | return RX_DROP_MONITOR; |
Johannes Berg | f9d540e | 2007-09-28 14:02:09 +0200 | [diff] [blame] | 2584 | |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2585 | switch (stype) { |
Johannes Berg | 66e67e4 | 2012-01-20 13:55:27 +0100 | [diff] [blame] | 2586 | case cpu_to_le16(IEEE80211_STYPE_AUTH): |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2587 | case cpu_to_le16(IEEE80211_STYPE_BEACON): |
| 2588 | case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP): |
| 2589 | /* process for all: mesh, mlme, ibss */ |
| 2590 | break; |
Johannes Berg | 66e67e4 | 2012-01-20 13:55:27 +0100 | [diff] [blame] | 2591 | case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP): |
| 2592 | case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP): |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2593 | case cpu_to_le16(IEEE80211_STYPE_DEAUTH): |
| 2594 | case cpu_to_le16(IEEE80211_STYPE_DISASSOC): |
Christian Lamparter | 2c31333a | 2010-11-29 20:53:23 +0100 | [diff] [blame] | 2595 | if (is_multicast_ether_addr(mgmt->da) && |
| 2596 | !is_broadcast_ether_addr(mgmt->da)) |
| 2597 | return RX_DROP_MONITOR; |
| 2598 | |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2599 | /* process only for station */ |
| 2600 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 2601 | return RX_DROP_MONITOR; |
| 2602 | break; |
| 2603 | case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ): |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2604 | /* process only for ibss */ |
| 2605 | if (sdata->vif.type != NL80211_IFTYPE_ADHOC) |
| 2606 | return RX_DROP_MONITOR; |
| 2607 | break; |
| 2608 | default: |
| 2609 | return RX_DROP_MONITOR; |
| 2610 | } |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2611 | |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2612 | /* queue up frame and kick off work to process it */ |
Johannes Berg | c1475ca | 2010-06-10 10:21:37 +0200 | [diff] [blame] | 2613 | rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME; |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2614 | skb_queue_tail(&sdata->skb_queue, rx->skb); |
| 2615 | ieee80211_queue_work(&rx->local->hw, &sdata->work); |
Johannes Berg | 8b58ff8 | 2010-06-10 10:21:51 +0200 | [diff] [blame] | 2616 | if (rx->sta) |
| 2617 | rx->sta->rx_packets++; |
Johannes Berg | 77a121c | 2010-06-10 10:21:34 +0200 | [diff] [blame] | 2618 | |
| 2619 | return RX_QUEUED; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2620 | } |
| 2621 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 2622 | /* TODO: use IEEE80211_RX_FRAGMENTED */ |
Johannes Berg | 5f0b7de | 2009-11-16 13:58:21 +0100 | [diff] [blame] | 2623 | static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx, |
| 2624 | struct ieee80211_rate *rate) |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 2625 | { |
| 2626 | struct ieee80211_sub_if_data *sdata; |
| 2627 | struct ieee80211_local *local = rx->local; |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 2628 | struct sk_buff *skb = rx->skb, *skb2; |
| 2629 | struct net_device *prev_dev = NULL; |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 2630 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
Johannes Berg | 293702a | 2012-03-02 13:18:19 +0100 | [diff] [blame] | 2631 | int needed_headroom; |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 2632 | |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2633 | /* |
| 2634 | * If cooked monitor has been processed already, then |
| 2635 | * don't do it again. If not, set the flag. |
| 2636 | */ |
| 2637 | if (rx->flags & IEEE80211_RX_CMNTR) |
John W. Linville | 7c1e183 | 2010-09-24 15:52:49 -0400 | [diff] [blame] | 2638 | goto out_free_skb; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2639 | rx->flags |= IEEE80211_RX_CMNTR; |
John W. Linville | 7c1e183 | 2010-09-24 15:52:49 -0400 | [diff] [blame] | 2640 | |
Johannes Berg | 152c477 | 2011-10-21 10:22:22 +0200 | [diff] [blame] | 2641 | /* If there are no cooked monitor interfaces, just free the SKB */ |
| 2642 | if (!local->cooked_mntrs) |
| 2643 | goto out_free_skb; |
| 2644 | |
Johannes Berg | 293702a | 2012-03-02 13:18:19 +0100 | [diff] [blame] | 2645 | /* room for the radiotap header based on driver features */ |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 2646 | needed_headroom = ieee80211_rx_radiotap_space(local, status); |
Johannes Berg | 293702a | 2012-03-02 13:18:19 +0100 | [diff] [blame] | 2647 | |
| 2648 | if (skb_headroom(skb) < needed_headroom && |
| 2649 | pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 2650 | goto out_free_skb; |
| 2651 | |
Johannes Berg | 293702a | 2012-03-02 13:18:19 +0100 | [diff] [blame] | 2652 | /* prepend radiotap information */ |
Felix Fietkau | 973ef21 | 2012-04-16 14:56:48 +0200 | [diff] [blame] | 2653 | ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom, |
| 2654 | false); |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 2655 | |
| 2656 | skb_set_mac_header(skb, 0); |
| 2657 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 2658 | skb->pkt_type = PACKET_OTHERHOST; |
| 2659 | skb->protocol = htons(ETH_P_802_2); |
| 2660 | |
| 2661 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Johannes Berg | 9607e6b | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 2662 | if (!ieee80211_sdata_running(sdata)) |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 2663 | continue; |
| 2664 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2665 | if (sdata->vif.type != NL80211_IFTYPE_MONITOR || |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 2666 | !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)) |
| 2667 | continue; |
| 2668 | |
| 2669 | if (prev_dev) { |
| 2670 | skb2 = skb_clone(skb, GFP_ATOMIC); |
| 2671 | if (skb2) { |
| 2672 | skb2->dev = prev_dev; |
John W. Linville | 5548a8a | 2010-06-24 14:25:56 -0400 | [diff] [blame] | 2673 | netif_receive_skb(skb2); |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 2674 | } |
| 2675 | } |
| 2676 | |
| 2677 | prev_dev = sdata->dev; |
| 2678 | sdata->dev->stats.rx_packets++; |
| 2679 | sdata->dev->stats.rx_bytes += skb->len; |
| 2680 | } |
| 2681 | |
| 2682 | if (prev_dev) { |
| 2683 | skb->dev = prev_dev; |
John W. Linville | 5548a8a | 2010-06-24 14:25:56 -0400 | [diff] [blame] | 2684 | netif_receive_skb(skb); |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2685 | return; |
| 2686 | } |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 2687 | |
| 2688 | out_free_skb: |
| 2689 | dev_kfree_skb(skb); |
| 2690 | } |
| 2691 | |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2692 | static void ieee80211_rx_handlers_result(struct ieee80211_rx_data *rx, |
| 2693 | ieee80211_rx_result res) |
| 2694 | { |
| 2695 | switch (res) { |
| 2696 | case RX_DROP_MONITOR: |
| 2697 | I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop); |
| 2698 | if (rx->sta) |
| 2699 | rx->sta->rx_dropped++; |
| 2700 | /* fall through */ |
| 2701 | case RX_CONTINUE: { |
| 2702 | struct ieee80211_rate *rate = NULL; |
| 2703 | struct ieee80211_supported_band *sband; |
| 2704 | struct ieee80211_rx_status *status; |
| 2705 | |
| 2706 | status = IEEE80211_SKB_RXCB((rx->skb)); |
| 2707 | |
| 2708 | sband = rx->local->hw.wiphy->bands[status->band]; |
| 2709 | if (!(status->flag & RX_FLAG_HT)) |
| 2710 | rate = &sband->bitrates[status->rate_idx]; |
| 2711 | |
| 2712 | ieee80211_rx_cooked_monitor(rx, rate); |
| 2713 | break; |
| 2714 | } |
| 2715 | case RX_DROP_UNUSABLE: |
| 2716 | I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop); |
| 2717 | if (rx->sta) |
| 2718 | rx->sta->rx_dropped++; |
| 2719 | dev_kfree_skb(rx->skb); |
| 2720 | break; |
| 2721 | case RX_QUEUED: |
| 2722 | I802_DEBUG_INC(rx->sdata->local->rx_handlers_queued); |
| 2723 | break; |
| 2724 | } |
| 2725 | } |
| 2726 | |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 2727 | static void ieee80211_rx_handlers(struct ieee80211_rx_data *rx) |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2728 | { |
| 2729 | ieee80211_rx_result res = RX_DROP_MONITOR; |
| 2730 | struct sk_buff *skb; |
| 2731 | |
| 2732 | #define CALL_RXH(rxh) \ |
| 2733 | do { \ |
| 2734 | res = rxh(rx); \ |
| 2735 | if (res != RX_CONTINUE) \ |
| 2736 | goto rxh_next; \ |
| 2737 | } while (0); |
| 2738 | |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 2739 | spin_lock(&rx->local->rx_skb_queue.lock); |
| 2740 | if (rx->local->running_rx_handler) |
| 2741 | goto unlock; |
| 2742 | |
| 2743 | rx->local->running_rx_handler = true; |
| 2744 | |
| 2745 | while ((skb = __skb_dequeue(&rx->local->rx_skb_queue))) { |
| 2746 | spin_unlock(&rx->local->rx_skb_queue.lock); |
| 2747 | |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2748 | /* |
| 2749 | * all the other fields are valid across frames |
| 2750 | * that belong to an aMPDU since they are on the |
| 2751 | * same TID from the same station |
| 2752 | */ |
| 2753 | rx->skb = skb; |
| 2754 | |
| 2755 | CALL_RXH(ieee80211_rx_h_decrypt) |
| 2756 | CALL_RXH(ieee80211_rx_h_check_more_data) |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 2757 | CALL_RXH(ieee80211_rx_h_uapsd_and_pspoll) |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2758 | CALL_RXH(ieee80211_rx_h_sta_process) |
| 2759 | CALL_RXH(ieee80211_rx_h_defragment) |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2760 | CALL_RXH(ieee80211_rx_h_michael_mic_verify) |
| 2761 | /* must be after MMIC verify so header is counted in MPDU mic */ |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2762 | #ifdef CONFIG_MAC80211_MESH |
| 2763 | if (ieee80211_vif_is_mesh(&rx->sdata->vif)) |
| 2764 | CALL_RXH(ieee80211_rx_h_mesh_fwding); |
| 2765 | #endif |
Javier Cardona | 2154c81 | 2011-09-07 17:49:53 -0700 | [diff] [blame] | 2766 | CALL_RXH(ieee80211_rx_h_amsdu) |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2767 | CALL_RXH(ieee80211_rx_h_data) |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 2768 | CALL_RXH(ieee80211_rx_h_ctrl); |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2769 | CALL_RXH(ieee80211_rx_h_mgmt_check) |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2770 | CALL_RXH(ieee80211_rx_h_action) |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 2771 | CALL_RXH(ieee80211_rx_h_userspace_mgmt) |
| 2772 | CALL_RXH(ieee80211_rx_h_action_return) |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2773 | CALL_RXH(ieee80211_rx_h_mgmt) |
| 2774 | |
| 2775 | rxh_next: |
| 2776 | ieee80211_rx_handlers_result(rx, res); |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 2777 | spin_lock(&rx->local->rx_skb_queue.lock); |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2778 | #undef CALL_RXH |
| 2779 | } |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 2780 | |
| 2781 | rx->local->running_rx_handler = false; |
| 2782 | |
| 2783 | unlock: |
| 2784 | spin_unlock(&rx->local->rx_skb_queue.lock); |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2785 | } |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2786 | |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 2787 | static void ieee80211_invoke_rx_handlers(struct ieee80211_rx_data *rx) |
Johannes Berg | 5890529 | 2008-01-31 19:48:25 +0100 | [diff] [blame] | 2788 | { |
Johannes Berg | 5890529 | 2008-01-31 19:48:25 +0100 | [diff] [blame] | 2789 | ieee80211_rx_result res = RX_DROP_MONITOR; |
| 2790 | |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 2791 | #define CALL_RXH(rxh) \ |
| 2792 | do { \ |
| 2793 | res = rxh(rx); \ |
| 2794 | if (res != RX_CONTINUE) \ |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 2795 | goto rxh_next; \ |
Luis Carlos Cobo | e32f85f | 2008-08-05 19:34:52 +0200 | [diff] [blame] | 2796 | } while (0); |
Johannes Berg | 5890529 | 2008-01-31 19:48:25 +0100 | [diff] [blame] | 2797 | |
Johannes Berg | 4946162 | 2008-06-30 15:10:45 +0200 | [diff] [blame] | 2798 | CALL_RXH(ieee80211_rx_h_check) |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 2799 | |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 2800 | ieee80211_rx_reorder_ampdu(rx); |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 2801 | |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 2802 | ieee80211_rx_handlers(rx); |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2803 | return; |
Johannes Berg | 4946162 | 2008-06-30 15:10:45 +0200 | [diff] [blame] | 2804 | |
Johannes Berg | 2569a82 | 2009-11-25 17:46:17 +0100 | [diff] [blame] | 2805 | rxh_next: |
Christian Lamparter | aa0c863 | 2010-08-05 01:36:04 +0200 | [diff] [blame] | 2806 | ieee80211_rx_handlers_result(rx, res); |
| 2807 | |
| 2808 | #undef CALL_RXH |
Johannes Berg | 5890529 | 2008-01-31 19:48:25 +0100 | [diff] [blame] | 2809 | } |
| 2810 | |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 2811 | /* |
Johannes Berg | dd31857 | 2010-11-29 11:09:16 +0100 | [diff] [blame] | 2812 | * This function makes calls into the RX path, therefore |
| 2813 | * it has to be invoked under RCU read lock. |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 2814 | */ |
| 2815 | void ieee80211_release_reorder_timeout(struct sta_info *sta, int tid) |
| 2816 | { |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2817 | struct ieee80211_rx_data rx = { |
| 2818 | .sta = sta, |
| 2819 | .sdata = sta->sdata, |
| 2820 | .local = sta->local, |
Johannes Berg | 9e26297 | 2011-07-07 18:45:03 +0200 | [diff] [blame] | 2821 | /* This is OK -- must be QoS data frame */ |
| 2822 | .security_idx = tid, |
| 2823 | .seqno_idx = tid, |
Helmut Schaa | fcf8bd3 | 2011-04-01 15:46:05 +0200 | [diff] [blame] | 2824 | .flags = 0, |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2825 | }; |
Christian Lamparter | 2c15a0c | 2010-08-24 19:22:42 +0200 | [diff] [blame] | 2826 | struct tid_ampdu_rx *tid_agg_rx; |
| 2827 | |
| 2828 | tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]); |
| 2829 | if (!tid_agg_rx) |
| 2830 | return; |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 2831 | |
Christian Lamparter | 2c15a0c | 2010-08-24 19:22:42 +0200 | [diff] [blame] | 2832 | spin_lock(&tid_agg_rx->reorder_lock); |
Johannes Berg | d3b2fb5 | 2012-06-22 12:48:38 +0200 | [diff] [blame] | 2833 | ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx); |
Christian Lamparter | 2c15a0c | 2010-08-24 19:22:42 +0200 | [diff] [blame] | 2834 | spin_unlock(&tid_agg_rx->reorder_lock); |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 2835 | |
Christian Lamparter | 24a8fda | 2010-12-30 17:25:29 +0100 | [diff] [blame] | 2836 | ieee80211_rx_handlers(&rx); |
Christian Lamparter | 2bff8eb | 2010-08-05 01:36:41 +0200 | [diff] [blame] | 2837 | } |
| 2838 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2839 | /* main receive path */ |
| 2840 | |
Johannes Berg | 20b01f8 | 2010-09-24 11:21:05 +0200 | [diff] [blame] | 2841 | static int prepare_for_handlers(struct ieee80211_rx_data *rx, |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2842 | struct ieee80211_hdr *hdr) |
| 2843 | { |
Johannes Berg | 20b01f8 | 2010-09-24 11:21:05 +0200 | [diff] [blame] | 2844 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 2845 | struct sk_buff *skb = rx->skb; |
| 2846 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
| 2847 | u8 *bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type); |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2848 | int multicast = is_multicast_ether_addr(hdr->addr1); |
| 2849 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 2850 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2851 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 2852 | if (!bssid && !sdata->u.mgd.use_4addr) |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2853 | return 0; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2854 | if (!multicast && |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2855 | !ether_addr_equal(sdata->vif.addr, hdr->addr1)) { |
Felix Fietkau | 4f31233 | 2011-02-05 23:48:37 +0100 | [diff] [blame] | 2856 | if (!(sdata->dev->flags & IFF_PROMISC) || |
| 2857 | sdata->u.mgd.use_4addr) |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2858 | return 0; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2859 | status->rx_flags &= ~IEEE80211_RX_RA_MATCH; |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2860 | } |
| 2861 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2862 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2863 | if (!bssid) |
| 2864 | return 0; |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 2865 | if (ieee80211_is_beacon(hdr->frame_control)) { |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 2866 | return 1; |
Johannes Berg | d48b296 | 2012-07-06 22:19:27 +0200 | [diff] [blame] | 2867 | } else if (!ieee80211_bssid_match(bssid, sdata->u.ibss.bssid)) { |
| 2868 | return 0; |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2869 | } else if (!multicast && |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2870 | !ether_addr_equal(sdata->vif.addr, hdr->addr1)) { |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 2871 | if (!(sdata->dev->flags & IFF_PROMISC)) |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2872 | return 0; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2873 | status->rx_flags &= ~IEEE80211_RX_RA_MATCH; |
Jouni Malinen | 0fb8ca4 | 2008-12-12 14:38:33 +0200 | [diff] [blame] | 2874 | } else if (!rx->sta) { |
| 2875 | int rate_idx; |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 2876 | if (status->flag & RX_FLAG_HT) |
Jouni Malinen | 0fb8ca4 | 2008-12-12 14:38:33 +0200 | [diff] [blame] | 2877 | rate_idx = 0; /* TODO: HT rates */ |
| 2878 | else |
Johannes Berg | eb9fb5b8 | 2009-11-16 13:58:20 +0100 | [diff] [blame] | 2879 | rate_idx = status->rate_idx; |
Johannes Berg | 8bf11d8 | 2011-12-15 11:17:37 +0100 | [diff] [blame] | 2880 | ieee80211_ibss_rx_no_sta(sdata, bssid, hdr->addr2, |
| 2881 | BIT(rate_idx)); |
Jouni Malinen | 0fb8ca4 | 2008-12-12 14:38:33 +0200 | [diff] [blame] | 2882 | } |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2883 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2884 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 6032f93 | 2008-02-23 15:17:07 +0100 | [diff] [blame] | 2885 | if (!multicast && |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2886 | !ether_addr_equal(sdata->vif.addr, hdr->addr1)) { |
Johannes Berg | 6032f93 | 2008-02-23 15:17:07 +0100 | [diff] [blame] | 2887 | if (!(sdata->dev->flags & IFF_PROMISC)) |
| 2888 | return 0; |
| 2889 | |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2890 | status->rx_flags &= ~IEEE80211_RX_RA_MATCH; |
Johannes Berg | 6032f93 | 2008-02-23 15:17:07 +0100 | [diff] [blame] | 2891 | } |
| 2892 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2893 | case NL80211_IFTYPE_AP_VLAN: |
| 2894 | case NL80211_IFTYPE_AP: |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2895 | if (!bssid) { |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2896 | if (!ether_addr_equal(sdata->vif.addr, hdr->addr1)) |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2897 | return 0; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 2898 | } else if (!ieee80211_bssid_match(bssid, sdata->vif.addr)) { |
Johannes Berg | 3df6eae | 2011-12-06 10:39:40 +0100 | [diff] [blame] | 2899 | /* |
| 2900 | * Accept public action frames even when the |
| 2901 | * BSSID doesn't match, this is used for P2P |
| 2902 | * and location updates. Note that mac80211 |
| 2903 | * itself never looks at these frames. |
| 2904 | */ |
Johannes Berg | d48b296 | 2012-07-06 22:19:27 +0200 | [diff] [blame] | 2905 | if (ieee80211_is_public_action(hdr, skb->len)) |
Johannes Berg | 3df6eae | 2011-12-06 10:39:40 +0100 | [diff] [blame] | 2906 | return 1; |
Johannes Berg | d48b296 | 2012-07-06 22:19:27 +0200 | [diff] [blame] | 2907 | if (!ieee80211_is_beacon(hdr->frame_control)) |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2908 | return 0; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2909 | status->rx_flags &= ~IEEE80211_RX_RA_MATCH; |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2910 | } |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2911 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2912 | case NL80211_IFTYPE_WDS: |
Harvey Harrison | a7767f9 | 2008-07-02 16:30:51 -0700 | [diff] [blame] | 2913 | if (bssid || !ieee80211_is_data(hdr->frame_control)) |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2914 | return 0; |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 2915 | if (!ether_addr_equal(sdata->u.wds.remote_addr, hdr->addr2)) |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2916 | return 0; |
| 2917 | break; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 2918 | case NL80211_IFTYPE_P2P_DEVICE: |
| 2919 | if (!ieee80211_is_public_action(hdr, skb->len) && |
| 2920 | !ieee80211_is_probe_req(hdr->frame_control) && |
| 2921 | !ieee80211_is_probe_resp(hdr->frame_control) && |
| 2922 | !ieee80211_is_beacon(hdr->frame_control)) |
| 2923 | return 0; |
| 2924 | if (!ether_addr_equal(sdata->vif.addr, hdr->addr1)) |
| 2925 | status->rx_flags &= ~IEEE80211_RX_RA_MATCH; |
| 2926 | break; |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 2927 | default: |
Johannes Berg | fb1c1cd | 2007-09-26 15:19:43 +0200 | [diff] [blame] | 2928 | /* should never get here */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 2929 | WARN_ON_ONCE(1); |
Johannes Berg | fb1c1cd | 2007-09-26 15:19:43 +0200 | [diff] [blame] | 2930 | break; |
Johannes Berg | 23a24de | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2931 | } |
| 2932 | |
| 2933 | return 1; |
| 2934 | } |
| 2935 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2936 | /* |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 2937 | * This function returns whether or not the SKB |
| 2938 | * was destined for RX processing or not, which, |
| 2939 | * if consume is true, is equivalent to whether |
| 2940 | * or not the skb was consumed. |
| 2941 | */ |
| 2942 | static bool ieee80211_prepare_and_rx_handle(struct ieee80211_rx_data *rx, |
| 2943 | struct sk_buff *skb, bool consume) |
| 2944 | { |
| 2945 | struct ieee80211_local *local = rx->local; |
| 2946 | struct ieee80211_sub_if_data *sdata = rx->sdata; |
| 2947 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
| 2948 | struct ieee80211_hdr *hdr = (void *)skb->data; |
| 2949 | int prepares; |
| 2950 | |
| 2951 | rx->skb = skb; |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 2952 | status->rx_flags |= IEEE80211_RX_RA_MATCH; |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 2953 | prepares = prepare_for_handlers(rx, hdr); |
| 2954 | |
| 2955 | if (!prepares) |
| 2956 | return false; |
| 2957 | |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 2958 | if (!consume) { |
| 2959 | skb = skb_copy(skb, GFP_ATOMIC); |
| 2960 | if (!skb) { |
| 2961 | if (net_ratelimit()) |
| 2962 | wiphy_debug(local->hw.wiphy, |
Ben Greear | b305dae | 2011-01-08 10:30:54 -0800 | [diff] [blame] | 2963 | "failed to copy skb for %s\n", |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 2964 | sdata->name); |
| 2965 | return true; |
| 2966 | } |
| 2967 | |
| 2968 | rx->skb = skb; |
| 2969 | } |
| 2970 | |
| 2971 | ieee80211_invoke_rx_handlers(rx); |
| 2972 | return true; |
| 2973 | } |
| 2974 | |
| 2975 | /* |
Ron Rindjunsky | 6368e4b | 2007-12-24 13:36:39 +0200 | [diff] [blame] | 2976 | * This is the actual Rx frames handler. as it blongs to Rx path it must |
| 2977 | * be called with rcu_read_lock protection. |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2978 | */ |
Ron Rindjunsky | 71ebb4a | 2008-01-21 12:39:12 +0200 | [diff] [blame] | 2979 | static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw, |
Christian Lamparter | 071d9ac | 2010-08-05 01:36:36 +0200 | [diff] [blame] | 2980 | struct sk_buff *skb) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2981 | { |
| 2982 | struct ieee80211_local *local = hw_to_local(hw); |
| 2983 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2984 | struct ieee80211_hdr *hdr; |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 2985 | __le16 fc; |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 2986 | struct ieee80211_rx_data rx; |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 2987 | struct ieee80211_sub_if_data *prev; |
Ben Greear | 56af326 | 2010-09-23 10:22:24 -0700 | [diff] [blame] | 2988 | struct sta_info *sta, *tmp, *prev_sta; |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 2989 | int err = 0; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2990 | |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 2991 | fc = ((struct ieee80211_hdr *)skb->data)->frame_control; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2992 | memset(&rx, 0, sizeof(rx)); |
| 2993 | rx.skb = skb; |
| 2994 | rx.local = local; |
Johannes Berg | 72abd81 | 2007-09-17 01:29:22 -0400 | [diff] [blame] | 2995 | |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 2996 | if (ieee80211_is_data(fc) || ieee80211_is_mgmt(fc)) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2997 | local->dot11ReceivedFragmentCount++; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 2998 | |
Johannes Berg | 4a4f1a5 | 2012-10-26 00:33:36 +0200 | [diff] [blame] | 2999 | if (ieee80211_is_mgmt(fc)) { |
| 3000 | /* drop frame if too short for header */ |
| 3001 | if (skb->len < ieee80211_hdrlen(fc)) |
| 3002 | err = -ENOBUFS; |
| 3003 | else |
| 3004 | err = skb_linearize(skb); |
| 3005 | } else { |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 3006 | err = !pskb_may_pull(skb, ieee80211_hdrlen(fc)); |
Johannes Berg | 4a4f1a5 | 2012-10-26 00:33:36 +0200 | [diff] [blame] | 3007 | } |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 3008 | |
| 3009 | if (err) { |
| 3010 | dev_kfree_skb(skb); |
| 3011 | return; |
| 3012 | } |
| 3013 | |
| 3014 | hdr = (struct ieee80211_hdr *)skb->data; |
Johannes Berg | 38f3714 | 2008-01-29 17:07:43 +0100 | [diff] [blame] | 3015 | ieee80211_parse_qos(&rx); |
Johannes Berg | d1c3a37 | 2009-01-07 00:26:10 +0100 | [diff] [blame] | 3016 | ieee80211_verify_alignment(&rx); |
Johannes Berg | 38f3714 | 2008-01-29 17:07:43 +0100 | [diff] [blame] | 3017 | |
Johannes Berg | d48b296 | 2012-07-06 22:19:27 +0200 | [diff] [blame] | 3018 | if (unlikely(ieee80211_is_probe_resp(hdr->frame_control) || |
| 3019 | ieee80211_is_beacon(hdr->frame_control))) |
| 3020 | ieee80211_scan_rx(local, skb); |
| 3021 | |
Zhu Yi | e3cf8b3 | 2010-03-29 17:35:07 +0800 | [diff] [blame] | 3022 | if (ieee80211_is_data(fc)) { |
Ben Greear | 56af326 | 2010-09-23 10:22:24 -0700 | [diff] [blame] | 3023 | prev_sta = NULL; |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 3024 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 3025 | for_each_sta_info(local, hdr->addr2, sta, tmp) { |
Ben Greear | 56af326 | 2010-09-23 10:22:24 -0700 | [diff] [blame] | 3026 | if (!prev_sta) { |
| 3027 | prev_sta = sta; |
| 3028 | continue; |
| 3029 | } |
| 3030 | |
| 3031 | rx.sta = prev_sta; |
| 3032 | rx.sdata = prev_sta->sdata; |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 3033 | ieee80211_prepare_and_rx_handle(&rx, skb, false); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3034 | |
Ben Greear | 56af326 | 2010-09-23 10:22:24 -0700 | [diff] [blame] | 3035 | prev_sta = sta; |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 3036 | } |
Ben Greear | 56af326 | 2010-09-23 10:22:24 -0700 | [diff] [blame] | 3037 | |
| 3038 | if (prev_sta) { |
| 3039 | rx.sta = prev_sta; |
| 3040 | rx.sdata = prev_sta->sdata; |
| 3041 | |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 3042 | if (ieee80211_prepare_and_rx_handle(&rx, skb, true)) |
Ben Greear | 56af326 | 2010-09-23 10:22:24 -0700 | [diff] [blame] | 3043 | return; |
Senthil Balasubramanian | 8e26d5a | 2010-11-30 20:15:38 +0530 | [diff] [blame] | 3044 | goto out; |
Ben Greear | 56af326 | 2010-09-23 10:22:24 -0700 | [diff] [blame] | 3045 | } |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 3046 | } |
| 3047 | |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3048 | prev = NULL; |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 3049 | |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3050 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
| 3051 | if (!ieee80211_sdata_running(sdata)) |
| 3052 | continue; |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 3053 | |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3054 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR || |
| 3055 | sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 3056 | continue; |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 3057 | |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3058 | /* |
| 3059 | * frame is destined for this interface, but if it's |
| 3060 | * not also for the previous one we handle that after |
| 3061 | * the loop to avoid copying the SKB once too much |
| 3062 | */ |
Johannes Berg | b2e7771 | 2007-09-26 15:19:39 +0200 | [diff] [blame] | 3063 | |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3064 | if (!prev) { |
Johannes Berg | 340e11f | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3065 | prev = sdata; |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3066 | continue; |
Johannes Berg | 8e6f0032 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3067 | } |
Felix Fietkau | 4bb29f8 | 2010-01-22 00:36:39 +0100 | [diff] [blame] | 3068 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 3069 | rx.sta = sta_info_get_bss(prev, hdr->addr2); |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3070 | rx.sdata = prev; |
| 3071 | ieee80211_prepare_and_rx_handle(&rx, skb, false); |
Felix Fietkau | 4bb29f8 | 2010-01-22 00:36:39 +0100 | [diff] [blame] | 3072 | |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3073 | prev = sdata; |
| 3074 | } |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 3075 | |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3076 | if (prev) { |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 3077 | rx.sta = sta_info_get_bss(prev, hdr->addr2); |
Johannes Berg | 4b0dd98 | 2010-09-24 11:21:07 +0200 | [diff] [blame] | 3078 | rx.sdata = prev; |
| 3079 | |
| 3080 | if (ieee80211_prepare_and_rx_handle(&rx, skb, true)) |
| 3081 | return; |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3082 | } |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 3083 | |
Senthil Balasubramanian | 8e26d5a | 2010-11-30 20:15:38 +0530 | [diff] [blame] | 3084 | out: |
Johannes Berg | 4406c37 | 2010-09-24 11:21:06 +0200 | [diff] [blame] | 3085 | dev_kfree_skb(skb); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3086 | } |
Ron Rindjunsky | 6368e4b | 2007-12-24 13:36:39 +0200 | [diff] [blame] | 3087 | |
| 3088 | /* |
| 3089 | * This is the receive path handler. It is called by a low level driver when an |
| 3090 | * 802.11 MPDU is received from the hardware. |
| 3091 | */ |
John W. Linville | 103bf9f | 2009-08-20 16:34:15 -0400 | [diff] [blame] | 3092 | void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb) |
Ron Rindjunsky | 6368e4b | 2007-12-24 13:36:39 +0200 | [diff] [blame] | 3093 | { |
| 3094 | struct ieee80211_local *local = hw_to_local(hw); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3095 | struct ieee80211_rate *rate = NULL; |
| 3096 | struct ieee80211_supported_band *sband; |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 3097 | struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3098 | |
Johannes Berg | d20ef63 | 2009-10-11 15:10:40 +0200 | [diff] [blame] | 3099 | WARN_ON_ONCE(softirq_count() == 0); |
| 3100 | |
Johannes Berg | 444e380 | 2012-09-30 17:08:35 +0200 | [diff] [blame] | 3101 | if (WARN_ON(status->band >= IEEE80211_NUM_BANDS)) |
Johannes Berg | 77a980d | 2009-08-24 11:46:30 +0200 | [diff] [blame] | 3102 | goto drop; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3103 | |
| 3104 | sband = local->hw.wiphy->bands[status->band]; |
Johannes Berg | 77a980d | 2009-08-24 11:46:30 +0200 | [diff] [blame] | 3105 | if (WARN_ON(!sband)) |
| 3106 | goto drop; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3107 | |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 3108 | /* |
| 3109 | * If we're suspending, it is possible although not too likely |
| 3110 | * that we'd be receiving frames after having already partially |
| 3111 | * quiesced the stack. We can't process such frames then since |
| 3112 | * that might, for example, cause stations to be added or other |
| 3113 | * driver callbacks be invoked. |
| 3114 | */ |
Johannes Berg | 77a980d | 2009-08-24 11:46:30 +0200 | [diff] [blame] | 3115 | if (unlikely(local->quiescing || local->suspended)) |
| 3116 | goto drop; |
Johannes Berg | 89c3a8a | 2009-07-28 18:10:17 +0200 | [diff] [blame] | 3117 | |
Arik Nemtsov | 04800ad | 2012-06-06 11:25:02 +0300 | [diff] [blame] | 3118 | /* We might be during a HW reconfig, prevent Rx for the same reason */ |
| 3119 | if (unlikely(local->in_reconfig)) |
| 3120 | goto drop; |
| 3121 | |
Johannes Berg | ea77f12 | 2009-08-21 14:44:45 +0200 | [diff] [blame] | 3122 | /* |
| 3123 | * The same happens when we're not even started, |
| 3124 | * but that's worth a warning. |
| 3125 | */ |
Johannes Berg | 77a980d | 2009-08-24 11:46:30 +0200 | [diff] [blame] | 3126 | if (WARN_ON(!local->started)) |
| 3127 | goto drop; |
Johannes Berg | ea77f12 | 2009-08-21 14:44:45 +0200 | [diff] [blame] | 3128 | |
Johannes Berg | fc88518 | 2010-07-30 13:23:12 +0200 | [diff] [blame] | 3129 | if (likely(!(status->flag & RX_FLAG_FAILED_PLCP_CRC))) { |
Luis R. Rodriguez | e5d6eb8 | 2009-11-09 16:03:22 -0500 | [diff] [blame] | 3130 | /* |
Johannes Berg | fc88518 | 2010-07-30 13:23:12 +0200 | [diff] [blame] | 3131 | * Validate the rate, unless a PLCP error means that |
| 3132 | * we probably can't have a valid rate here anyway. |
Luis R. Rodriguez | e5d6eb8 | 2009-11-09 16:03:22 -0500 | [diff] [blame] | 3133 | */ |
Johannes Berg | fc88518 | 2010-07-30 13:23:12 +0200 | [diff] [blame] | 3134 | |
| 3135 | if (status->flag & RX_FLAG_HT) { |
| 3136 | /* |
| 3137 | * rate_idx is MCS index, which can be [0-76] |
| 3138 | * as documented on: |
| 3139 | * |
| 3140 | * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n |
| 3141 | * |
| 3142 | * Anything else would be some sort of driver or |
| 3143 | * hardware error. The driver should catch hardware |
| 3144 | * errors. |
| 3145 | */ |
Johannes Berg | 444e380 | 2012-09-30 17:08:35 +0200 | [diff] [blame] | 3146 | if (WARN(status->rate_idx > 76, |
Johannes Berg | fc88518 | 2010-07-30 13:23:12 +0200 | [diff] [blame] | 3147 | "Rate marked as an HT rate but passed " |
| 3148 | "status->rate_idx is not " |
| 3149 | "an MCS index [0-76]: %d (0x%02x)\n", |
| 3150 | status->rate_idx, |
| 3151 | status->rate_idx)) |
| 3152 | goto drop; |
| 3153 | } else { |
Johannes Berg | 444e380 | 2012-09-30 17:08:35 +0200 | [diff] [blame] | 3154 | if (WARN_ON(status->rate_idx >= sband->n_bitrates)) |
Johannes Berg | fc88518 | 2010-07-30 13:23:12 +0200 | [diff] [blame] | 3155 | goto drop; |
| 3156 | rate = &sband->bitrates[status->rate_idx]; |
| 3157 | } |
Jouni Malinen | 0fb8ca4 | 2008-12-12 14:38:33 +0200 | [diff] [blame] | 3158 | } |
Ron Rindjunsky | 6368e4b | 2007-12-24 13:36:39 +0200 | [diff] [blame] | 3159 | |
Johannes Berg | 554891e | 2010-09-24 12:38:25 +0200 | [diff] [blame] | 3160 | status->rx_flags = 0; |
| 3161 | |
Ron Rindjunsky | 6368e4b | 2007-12-24 13:36:39 +0200 | [diff] [blame] | 3162 | /* |
| 3163 | * key references and virtual interfaces are protected using RCU |
| 3164 | * and this requires that we are in a read-side RCU section during |
| 3165 | * receive processing |
| 3166 | */ |
| 3167 | rcu_read_lock(); |
| 3168 | |
| 3169 | /* |
| 3170 | * Frames with failed FCS/PLCP checksum are not returned, |
| 3171 | * all other frames are returned without radiotap header |
| 3172 | * if it was previously present. |
| 3173 | * Also, frames with less than 16 bytes are dropped. |
| 3174 | */ |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 3175 | skb = ieee80211_rx_monitor(local, skb, rate); |
Ron Rindjunsky | 6368e4b | 2007-12-24 13:36:39 +0200 | [diff] [blame] | 3176 | if (!skb) { |
| 3177 | rcu_read_unlock(); |
| 3178 | return; |
| 3179 | } |
| 3180 | |
Johannes Berg | e1e5406 | 2010-11-30 08:58:45 +0100 | [diff] [blame] | 3181 | ieee80211_tpt_led_trig_rx(local, |
| 3182 | ((struct ieee80211_hdr *)skb->data)->frame_control, |
| 3183 | skb->len); |
Christian Lamparter | 071d9ac | 2010-08-05 01:36:36 +0200 | [diff] [blame] | 3184 | __ieee80211_rx_handle_packet(hw, skb); |
Ron Rindjunsky | 6368e4b | 2007-12-24 13:36:39 +0200 | [diff] [blame] | 3185 | |
| 3186 | rcu_read_unlock(); |
Johannes Berg | 77a980d | 2009-08-24 11:46:30 +0200 | [diff] [blame] | 3187 | |
| 3188 | return; |
| 3189 | drop: |
| 3190 | kfree_skb(skb); |
Ron Rindjunsky | 6368e4b | 2007-12-24 13:36:39 +0200 | [diff] [blame] | 3191 | } |
John W. Linville | 103bf9f | 2009-08-20 16:34:15 -0400 | [diff] [blame] | 3192 | EXPORT_SYMBOL(ieee80211_rx); |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3193 | |
| 3194 | /* This is a version of the rx handler that can be called from hard irq |
| 3195 | * context. Post the skb on the queue and schedule the tasklet */ |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 3196 | void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb) |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3197 | { |
| 3198 | struct ieee80211_local *local = hw_to_local(hw); |
| 3199 | |
| 3200 | BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb)); |
| 3201 | |
Johannes Berg | 571ecf6 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 3202 | skb->pkt_type = IEEE80211_RX_MSG; |
| 3203 | skb_queue_tail(&local->skb_queue, skb); |
| 3204 | tasklet_schedule(&local->tasklet); |
| 3205 | } |
| 3206 | EXPORT_SYMBOL(ieee80211_rx_irqsafe); |