blob: 358226f63b81f5fe90af933b61bfa624e2f91e9f [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010019#include <linux/rtnetlink.h>
Johannes Berg10f644a2009-04-16 13:17:25 +020020#include <linux/pm_qos_params.h>
Johannes Bergd91f36d2009-04-16 13:17:26 +020021#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070023#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020024#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020025
Jiri Bencf0706e82007-05-05 11:45:53 -070026#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020027#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040028#include "rate.h"
29#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070030
Maxim Levitskya43abf22009-07-31 18:54:12 +030031#define IEEE80211_MAX_PROBE_TRIES 5
Johannes Bergb291ba12009-07-10 15:29:03 +020032
33/*
34 * beacon loss detection timeout
35 * XXX: should depend on beacon interval
36 */
37#define IEEE80211_BEACON_LOSS_TIME (2 * HZ)
38/*
39 * Time the connection can be idle before we probe
40 * it to see if we can still talk to the AP.
41 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030042#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020043/*
44 * Time we wait for a probe response after sending
45 * a probe request because of beacon loss or for
46 * checking the connection still works.
47 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030048#define IEEE80211_PROBE_WAIT (HZ / 2)
Jiri Bencf0706e82007-05-05 11:45:53 -070049
Jouni Malinen17e4ec12010-03-29 23:28:30 -070050/*
51 * Weight given to the latest Beacon frame when calculating average signal
52 * strength for Beacon frames received in the current BSS. This must be
53 * between 1 and 15.
54 */
55#define IEEE80211_SIGNAL_AVE_WEIGHT 3
56
Johannes Berg5bb644a2009-05-17 11:40:42 +020057#define TMR_RUNNING_TIMER 0
58#define TMR_RUNNING_CHANSW 1
59
Johannes Berg77fdaa12009-07-07 03:45:17 +020060/*
61 * All cfg80211 functions have to be called outside a locked
62 * section so that they can acquire a lock themselves... This
63 * is much simpler than queuing up things in cfg80211, but we
64 * do need some indirection for that here.
65 */
66enum rx_mgmt_action {
67 /* no action required */
68 RX_MGMT_NONE,
69
70 /* caller must call cfg80211_send_rx_auth() */
71 RX_MGMT_CFG80211_AUTH,
72
73 /* caller must call cfg80211_send_rx_assoc() */
74 RX_MGMT_CFG80211_ASSOC,
75
76 /* caller must call cfg80211_send_deauth() */
77 RX_MGMT_CFG80211_DEAUTH,
78
79 /* caller must call cfg80211_send_disassoc() */
80 RX_MGMT_CFG80211_DISASSOC,
81
Johannes Berg5d1ec852009-12-02 12:43:43 +010082 /* caller must tell cfg80211 about internal error */
83 RX_MGMT_CFG80211_ASSOC_ERROR,
Johannes Berg77fdaa12009-07-07 03:45:17 +020084};
85
Johannes Berg5484e232008-09-08 17:44:27 +020086/* utils */
Johannes Berg77fdaa12009-07-07 03:45:17 +020087static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
88{
89 WARN_ON(!mutex_is_locked(&ifmgd->mtx));
90}
91
Johannes Bergca386f32009-07-10 02:39:48 +020092/*
93 * We can have multiple work items (and connection probing)
94 * scheduling this timer, but we need to take care to only
95 * reschedule it when it should fire _earlier_ than it was
96 * asked for before, or if it's not pending right now. This
97 * function ensures that. Note that it then is required to
98 * run this function for all timeouts after the first one
99 * has happened -- the work that runs from this timer will
100 * do that.
101 */
102static void run_again(struct ieee80211_if_managed *ifmgd,
103 unsigned long timeout)
104{
105 ASSERT_MGD_MTX(ifmgd);
106
107 if (!timer_pending(&ifmgd->timer) ||
108 time_before(timeout, ifmgd->timer.expires))
109 mod_timer(&ifmgd->timer, timeout);
110}
111
Johannes Bergb291ba12009-07-10 15:29:03 +0200112static void mod_beacon_timer(struct ieee80211_sub_if_data *sdata)
113{
114 if (sdata->local->hw.flags & IEEE80211_HW_BEACON_FILTER)
115 return;
116
117 mod_timer(&sdata->u.mgd.bcn_mon_timer,
118 round_jiffies_up(jiffies + IEEE80211_BEACON_LOSS_TIME));
119}
120
Johannes Berg5484e232008-09-08 17:44:27 +0200121static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200122{
Johannes Berg5484e232008-09-08 17:44:27 +0200123 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200124}
125
Johannes Bergd5522e02009-03-30 13:23:35 +0200126/*
127 * ieee80211_enable_ht should be called only after the operating band
128 * has been determined as ht configuration depends on the hw's
129 * HT abilities for a specific band.
130 */
131static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
132 struct ieee80211_ht_info *hti,
Johannes Berg77fdaa12009-07-07 03:45:17 +0200133 const u8 *bssid, u16 ap_ht_cap_flags)
Johannes Bergd5522e02009-03-30 13:23:35 +0200134{
135 struct ieee80211_local *local = sdata->local;
136 struct ieee80211_supported_band *sband;
Johannes Bergd5522e02009-03-30 13:23:35 +0200137 struct sta_info *sta;
138 u32 changed = 0;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200139 u16 ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200140 bool enable_ht = true, ht_changed;
141 enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
142
143 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
144
Johannes Bergd5522e02009-03-30 13:23:35 +0200145 /* HT is not supported */
146 if (!sband->ht_cap.ht_supported)
147 enable_ht = false;
148
149 /* check that channel matches the right operating channel */
150 if (local->hw.conf.channel->center_freq !=
151 ieee80211_channel_to_frequency(hti->control_chan))
152 enable_ht = false;
153
154 if (enable_ht) {
155 channel_type = NL80211_CHAN_HT20;
156
157 if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
158 (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
159 (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
160 switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
161 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400162 if (!(local->hw.conf.channel->flags &
163 IEEE80211_CHAN_NO_HT40PLUS))
164 channel_type = NL80211_CHAN_HT40PLUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200165 break;
166 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400167 if (!(local->hw.conf.channel->flags &
168 IEEE80211_CHAN_NO_HT40MINUS))
169 channel_type = NL80211_CHAN_HT40MINUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200170 break;
171 }
172 }
173 }
174
175 ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
176 channel_type != local->hw.conf.channel_type;
177
Reinette Chatrefe6f2122010-04-19 10:46:31 -0700178 if (local->tmp_channel)
179 local->tmp_channel_type = channel_type;
Johannes Bergd5522e02009-03-30 13:23:35 +0200180 local->oper_channel_type = channel_type;
181
182 if (ht_changed) {
183 /* channel_type change automatically detected */
184 ieee80211_hw_config(local, 0);
185
186 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100187 sta = sta_info_get(sdata, bssid);
Johannes Bergd5522e02009-03-30 13:23:35 +0200188 if (sta)
189 rate_control_rate_update(local, sband, sta,
Sujith4fa00432010-03-01 14:42:57 +0530190 IEEE80211_RC_HT_CHANGED,
191 local->oper_channel_type);
Johannes Bergd5522e02009-03-30 13:23:35 +0200192 rcu_read_unlock();
Johannes Bergd5522e02009-03-30 13:23:35 +0200193 }
194
195 /* disable HT */
196 if (!enable_ht)
197 return 0;
198
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200199 ht_opmode = le16_to_cpu(hti->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200200
201 /* if bss configuration changed store the new one */
Johannes Berg413ad502009-05-08 21:21:06 +0200202 if (!sdata->ht_opmode_valid ||
203 sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
Johannes Bergd5522e02009-03-30 13:23:35 +0200204 changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200205 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Berg413ad502009-05-08 21:21:06 +0200206 sdata->ht_opmode_valid = true;
Johannes Bergd5522e02009-03-30 13:23:35 +0200207 }
208
209 return changed;
210}
211
Johannes Berg9c6bd792008-09-11 00:01:52 +0200212/* frame sending functions */
213
Johannes Bergef422bc2008-09-09 10:58:25 +0200214static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +0200215 const u8 *bssid, u16 stype, u16 reason,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300216 void *cookie, bool send_frame)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200217{
218 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100219 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200220 struct sk_buff *skb;
221 struct ieee80211_mgmt *mgmt;
222
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200223 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200224 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200225 printk(KERN_DEBUG "%s: failed to allocate buffer for "
Johannes Berg47846c92009-11-25 17:46:19 +0100226 "deauth/disassoc frame\n", sdata->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200227 return;
228 }
229 skb_reserve(skb, local->hw.extra_tx_headroom);
230
231 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
232 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200233 memcpy(mgmt->da, bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100234 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200235 memcpy(mgmt->bssid, bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200236 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200237 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200238 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200239 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
240
Jouni Malinen53b46b82009-03-27 20:53:56 +0200241 if (stype == IEEE80211_STYPE_DEAUTH)
Holger Schurigce470612009-10-13 13:28:13 +0200242 if (cookie)
243 __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
244 else
245 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Jouni Malinen53b46b82009-03-27 20:53:56 +0200246 else
Holger Schurigce470612009-10-13 13:28:13 +0200247 if (cookie)
248 __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
249 else
250 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg62ae67b2009-11-18 18:42:05 +0100251 if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
252 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300253
254 if (send_frame)
255 ieee80211_tx_skb(sdata, skb);
256 else
257 kfree_skb(skb);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200258}
259
Kalle Valo572e0012009-02-10 17:09:31 +0200260void ieee80211_send_pspoll(struct ieee80211_local *local,
261 struct ieee80211_sub_if_data *sdata)
262{
Kalle Valo572e0012009-02-10 17:09:31 +0200263 struct ieee80211_pspoll *pspoll;
264 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200265
Kalle Valod8cd1892010-01-05 20:16:26 +0200266 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
267 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200268 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200269
Kalle Valod8cd1892010-01-05 20:16:26 +0200270 pspoll = (struct ieee80211_pspoll *) skb->data;
271 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200272
Johannes Berg62ae67b2009-11-18 18:42:05 +0100273 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
274 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200275}
276
Johannes Berg965beda2009-04-16 13:17:24 +0200277void ieee80211_send_nullfunc(struct ieee80211_local *local,
278 struct ieee80211_sub_if_data *sdata,
279 int powersave)
280{
281 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200282 struct ieee80211_hdr_3addr *nullfunc;
Johannes Berg965beda2009-04-16 13:17:24 +0200283
Kalle Valod8cd1892010-01-05 20:16:26 +0200284 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
285 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200286 return;
287
Kalle Valod8cd1892010-01-05 20:16:26 +0200288 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200289 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200290 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200291
Johannes Berg62ae67b2009-11-18 18:42:05 +0100292 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
293 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200294}
295
Felix Fietkaud5242152010-01-08 18:06:26 +0100296static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
297 struct ieee80211_sub_if_data *sdata)
298{
299 struct sk_buff *skb;
300 struct ieee80211_hdr *nullfunc;
301 __le16 fc;
302
303 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
304 return;
305
306 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
307 if (!skb) {
308 printk(KERN_DEBUG "%s: failed to allocate buffer for 4addr "
309 "nullfunc frame\n", sdata->name);
310 return;
311 }
312 skb_reserve(skb, local->hw.extra_tx_headroom);
313
314 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
315 memset(nullfunc, 0, 30);
316 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
317 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
318 nullfunc->frame_control = fc;
319 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
320 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
321 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
322 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
323
324 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
325 ieee80211_tx_skb(sdata, skb);
326}
327
Johannes Bergcc32abd2009-05-15 11:52:31 +0200328/* spectrum management related things */
329static void ieee80211_chswitch_work(struct work_struct *work)
330{
331 struct ieee80211_sub_if_data *sdata =
332 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200333 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
334
Johannes Berg9607e6b2009-12-23 13:15:31 +0100335 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200336 return;
337
Johannes Berg77fdaa12009-07-07 03:45:17 +0200338 mutex_lock(&ifmgd->mtx);
339 if (!ifmgd->associated)
340 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200341
342 sdata->local->oper_channel = sdata->local->csa_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200343 ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200344
Johannes Berg77fdaa12009-07-07 03:45:17 +0200345 /* XXX: shouldn't really modify cfg80211-owned data! */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100346 ifmgd->associated->channel = sdata->local->oper_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200347
Johannes Bergcc32abd2009-05-15 11:52:31 +0200348 ieee80211_wake_queues_by_reason(&sdata->local->hw,
349 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200350 out:
351 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
352 mutex_unlock(&ifmgd->mtx);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200353}
354
355static void ieee80211_chswitch_timer(unsigned long data)
356{
357 struct ieee80211_sub_if_data *sdata =
358 (struct ieee80211_sub_if_data *) data;
359 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
360
Johannes Berg5bb644a2009-05-17 11:40:42 +0200361 if (sdata->local->quiescing) {
362 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
363 return;
364 }
365
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400366 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200367}
368
369void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
370 struct ieee80211_channel_sw_ie *sw_elem,
371 struct ieee80211_bss *bss)
372{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100373 struct cfg80211_bss *cbss =
374 container_of((void *)bss, struct cfg80211_bss, priv);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200375 struct ieee80211_channel *new_ch;
376 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
377 int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num);
378
Johannes Berg77fdaa12009-07-07 03:45:17 +0200379 ASSERT_MGD_MTX(ifmgd);
380
381 if (!ifmgd->associated)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200382 return;
383
Helmut Schaafbe9c422009-07-23 12:14:04 +0200384 if (sdata->local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200385 return;
386
387 /* Disregard subsequent beacons if we are already running a timer
388 processing a CSA */
389
390 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
391 return;
392
393 new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
394 if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
395 return;
396
397 sdata->local->csa_channel = new_ch;
398
399 if (sw_elem->count <= 1) {
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400400 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200401 } else {
402 ieee80211_stop_queues_by_reason(&sdata->local->hw,
403 IEEE80211_QUEUE_STOP_REASON_CSA);
404 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
405 mod_timer(&ifmgd->chswitch_timer,
406 jiffies +
407 msecs_to_jiffies(sw_elem->count *
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100408 cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +0200409 }
410}
411
412static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
413 u16 capab_info, u8 *pwr_constr_elem,
414 u8 pwr_constr_elem_len)
415{
416 struct ieee80211_conf *conf = &sdata->local->hw.conf;
417
418 if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
419 return;
420
421 /* Power constraint IE length should be 1 octet */
422 if (pwr_constr_elem_len != 1)
423 return;
424
425 if ((*pwr_constr_elem <= conf->channel->max_power) &&
426 (*pwr_constr_elem != sdata->local->power_constr_level)) {
427 sdata->local->power_constr_level = *pwr_constr_elem;
428 ieee80211_hw_config(sdata->local, 0);
429 }
430}
431
Johannes Berg965beda2009-04-16 13:17:24 +0200432/* powersave */
433static void ieee80211_enable_ps(struct ieee80211_local *local,
434 struct ieee80211_sub_if_data *sdata)
435{
436 struct ieee80211_conf *conf = &local->hw.conf;
437
Johannes Bergd5edaed2009-04-22 23:02:51 +0200438 /*
439 * If we are scanning right now then the parameters will
440 * take effect when scan finishes.
441 */
Helmut Schaafbe9c422009-07-23 12:14:04 +0200442 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +0200443 return;
444
Johannes Berg965beda2009-04-16 13:17:24 +0200445 if (conf->dynamic_ps_timeout > 0 &&
446 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
447 mod_timer(&local->dynamic_ps_timer, jiffies +
448 msecs_to_jiffies(conf->dynamic_ps_timeout));
449 } else {
450 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
451 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +0530452
Juuso Oikarinen2a130522010-03-09 14:25:02 +0200453 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
454 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
455 return;
456
457 conf->flags |= IEEE80211_CONF_PS;
458 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +0200459 }
460}
461
462static void ieee80211_change_ps(struct ieee80211_local *local)
463{
464 struct ieee80211_conf *conf = &local->hw.conf;
465
466 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +0200467 ieee80211_enable_ps(local, local->ps_sdata);
468 } else if (conf->flags & IEEE80211_CONF_PS) {
469 conf->flags &= ~IEEE80211_CONF_PS;
470 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
471 del_timer_sync(&local->dynamic_ps_timer);
472 cancel_work_sync(&local->dynamic_ps_enable_work);
473 }
474}
475
476/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +0200477void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +0200478{
479 struct ieee80211_sub_if_data *sdata, *found = NULL;
480 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +0300481 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +0200482
483 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
484 local->ps_sdata = NULL;
485 return;
486 }
487
Johannes Bergaf6b6372009-12-23 13:15:35 +0100488 if (!list_empty(&local->work_list)) {
489 local->ps_sdata = NULL;
490 goto change;
491 }
492
Johannes Berg965beda2009-04-16 13:17:24 +0200493 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +0100494 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +0200495 continue;
496 if (sdata->vif.type != NL80211_IFTYPE_STATION)
497 continue;
498 found = sdata;
499 count++;
500 }
501
Luis R. Rodriguez43f78532009-06-10 15:16:15 +0200502 if (count == 1 && found->u.mgd.powersave &&
Johannes Bergaf6b6372009-12-23 13:15:35 +0100503 found->u.mgd.associated &&
Johannes Berg56007a02010-01-26 14:19:52 +0100504 found->u.mgd.associated->beacon_ies &&
Johannes Bergb291ba12009-07-10 15:29:03 +0200505 !(found->u.mgd.flags & (IEEE80211_STA_BEACON_POLL |
506 IEEE80211_STA_CONNECTION_POLL))) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200507 s32 beaconint_us;
508
509 if (latency < 0)
510 latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY);
511
512 beaconint_us = ieee80211_tu_to_usec(
513 found->vif.bss_conf.beacon_int);
514
Juuso Oikarinen195e2942010-04-27 12:47:40 +0300515 timeout = local->hw.conf.dynamic_ps_forced_timeout;
516 if (timeout < 0) {
517 /*
518 * The 2 second value is there for compatibility until
519 * the PM_QOS_NETWORK_LATENCY is configured with real
520 * values.
521 */
522 if (latency == 2000000000)
523 timeout = 100;
524 else if (latency <= 50000)
525 timeout = 300;
526 else if (latency <= 100000)
527 timeout = 100;
528 else if (latency <= 500000)
529 timeout = 50;
530 else
531 timeout = 0;
532 }
533 local->hw.conf.dynamic_ps_timeout = timeout;
534
Johannes Berg04fe2032009-04-22 18:44:37 +0200535 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200536 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +0200537 } else {
Johannes Berg56007a02010-01-26 14:19:52 +0100538 struct ieee80211_bss *bss;
Johannes Berg04fe2032009-04-22 18:44:37 +0200539 int maxslp = 1;
Johannes Berg56007a02010-01-26 14:19:52 +0100540 u8 dtimper;
Johannes Berg04fe2032009-04-22 18:44:37 +0200541
Johannes Berg56007a02010-01-26 14:19:52 +0100542 bss = (void *)found->u.mgd.associated->priv;
543 dtimper = bss->dtim_period;
544
545 /* If the TIM IE is invalid, pretend the value is 1 */
546 if (!dtimper)
547 dtimper = 1;
548 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +0200549 maxslp = min_t(int, dtimper,
550 latency / beaconint_us);
551
Johannes Berg9ccebe62009-04-23 10:32:36 +0200552 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +0100553 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +0200554 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +0200555 }
Johannes Berg10f644a2009-04-16 13:17:25 +0200556 } else {
Johannes Berg965beda2009-04-16 13:17:24 +0200557 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +0200558 }
Johannes Berg965beda2009-04-16 13:17:24 +0200559
Johannes Bergaf6b6372009-12-23 13:15:35 +0100560 change:
Johannes Berg965beda2009-04-16 13:17:24 +0200561 ieee80211_change_ps(local);
562}
563
564void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
565{
566 struct ieee80211_local *local =
567 container_of(work, struct ieee80211_local,
568 dynamic_ps_disable_work);
569
570 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
571 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
572 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
573 }
574
575 ieee80211_wake_queues_by_reason(&local->hw,
576 IEEE80211_QUEUE_STOP_REASON_PS);
577}
578
579void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
580{
581 struct ieee80211_local *local =
582 container_of(work, struct ieee80211_local,
583 dynamic_ps_enable_work);
584 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Vivek Natarajan375177b2010-02-09 14:50:28 +0530585 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200586
587 /* can only happen when PS was just disabled anyway */
588 if (!sdata)
589 return;
590
591 if (local->hw.conf.flags & IEEE80211_CONF_PS)
592 return;
593
Vivek Natarajan375177b2010-02-09 14:50:28 +0530594 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
595 (!(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)))
Johannes Berg965beda2009-04-16 13:17:24 +0200596 ieee80211_send_nullfunc(local, sdata, 1);
597
Juuso Oikarinen2a130522010-03-09 14:25:02 +0200598 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
599 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +0530600 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
601 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
602 local->hw.conf.flags |= IEEE80211_CONF_PS;
603 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
604 }
Johannes Berg965beda2009-04-16 13:17:24 +0200605}
606
607void ieee80211_dynamic_ps_timer(unsigned long data)
608{
609 struct ieee80211_local *local = (void *) data;
610
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -0700611 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +0200612 return;
613
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400614 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +0200615}
616
Johannes Berg60f8b392008-09-08 17:44:22 +0200617/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200618static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg46900292009-02-15 12:44:28 +0100619 struct ieee80211_if_managed *ifmgd,
Jiri Bencf0706e82007-05-05 11:45:53 -0700620 u8 *wmm_param, size_t wmm_param_len)
621{
Jiri Bencf0706e82007-05-05 11:45:53 -0700622 struct ieee80211_tx_queue_params params;
623 size_t left;
624 int count;
Kalle Valoab133152010-01-12 10:42:31 +0200625 u8 *pos, uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700626
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +0200627 if (!local->ops->conf_tx)
628 return;
629
Johannes Bergaf6b6372009-12-23 13:15:35 +0100630 if (local->hw.queues < 4)
Johannes Berg3434fbd2008-05-03 00:59:37 +0200631 return;
632
633 if (!wmm_param)
634 return;
635
Jiri Bencf0706e82007-05-05 11:45:53 -0700636 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
637 return;
Kalle Valoab133152010-01-12 10:42:31 +0200638
639 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Kalle Valo50ae0cf2010-01-12 10:42:39 +0200640 uapsd_queues = local->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +0200641
Jiri Bencf0706e82007-05-05 11:45:53 -0700642 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +0100643 if (count == ifmgd->wmm_last_param_set)
Jiri Bencf0706e82007-05-05 11:45:53 -0700644 return;
Johannes Berg46900292009-02-15 12:44:28 +0100645 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700646
647 pos = wmm_param + 8;
648 left = wmm_param_len - 8;
649
650 memset(&params, 0, sizeof(params));
651
Jiri Bencf0706e82007-05-05 11:45:53 -0700652 local->wmm_acm = 0;
653 for (; left >= 4; left -= 4, pos += 4) {
654 int aci = (pos[0] >> 5) & 0x03;
655 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +0200656 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700657 int queue;
658
659 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200660 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +0200661 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200662 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200663 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +0200664 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
665 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700666 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200667 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +0200668 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200669 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200670 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +0200671 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
672 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700673 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200674 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +0200675 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200676 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200677 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +0200678 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
679 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700680 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200681 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -0700682 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200683 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200684 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200685 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +0200686 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
687 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700688 break;
689 }
690
691 params.aifs = pos[0] & 0x0f;
692 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
693 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200694 params.txop = get_unaligned_le16(pos + 2);
Kalle Valoab133152010-01-12 10:42:31 +0200695 params.uapsd = uapsd;
696
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200697#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e82007-05-05 11:45:53 -0700698 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Kalle Valoab133152010-01-12 10:42:31 +0200699 "cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
Johannes Berg0bffe402009-06-09 16:18:32 +0200700 wiphy_name(local->hw.wiphy), queue, aci, acm,
Kalle Valoab133152010-01-12 10:42:31 +0200701 params.aifs, params.cw_min, params.cw_max, params.txop,
702 params.uapsd);
Johannes Berg3330d7be2008-02-10 16:49:38 +0100703#endif
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +0200704 if (drv_conf_tx(local, queue, &params))
Jiri Bencf0706e82007-05-05 11:45:53 -0700705 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +0200706 "parameters for queue %d\n",
707 wiphy_name(local->hw.wiphy), queue);
Jiri Bencf0706e82007-05-05 11:45:53 -0700708 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +0200709
710 /* enable WMM or activate new settings */
711 local->hw.conf.flags |= IEEE80211_CONF_QOS;
712 drv_config(local, IEEE80211_CONF_CHANGE_QOS);
Jiri Bencf0706e82007-05-05 11:45:53 -0700713}
714
Johannes Berg7a5158e2008-10-08 10:59:33 +0200715static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
716 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200717{
Johannes Bergbda39332008-10-11 01:51:51 +0200718 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100719 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200720 bool use_protection;
721 bool use_short_preamble;
722 bool use_short_slot;
723
724 if (erp_valid) {
725 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
726 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
727 } else {
728 use_protection = false;
729 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
730 }
731
732 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Felix Fietkau43d35342010-01-15 03:00:48 +0100733 if (sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ)
734 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +0200735
Johannes Berg471b3ef2007-12-28 14:32:58 +0100736 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +0100737 bss_conf->use_cts_prot = use_protection;
738 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200739 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200740
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200741 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200742 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100743 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200744 }
Daniel Draked9430a32007-07-27 15:43:24 +0200745
Johannes Berg7a5158e2008-10-08 10:59:33 +0200746 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +0200747 bss_conf->use_short_slot = use_short_slot;
748 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400749 }
750
751 return changed;
752}
753
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200754static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100755 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +0200756 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -0700757{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100758 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100759 struct ieee80211_local *local = sdata->local;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400760
Johannes Bergae5eb022008-10-14 16:58:37 +0200761 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200762 /* set timing information */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100763 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
764 sdata->vif.bss_conf.timestamp = cbss->tsf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400765
Johannes Berg77fdaa12009-07-07 03:45:17 +0200766 bss_info_changed |= BSS_CHANGED_BEACON_INT;
767 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100768 cbss->capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700769
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100770 sdata->u.mgd.associated = cbss;
771 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +0100772
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700773 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
774
Johannes Bergb291ba12009-07-10 15:29:03 +0200775 /* just to be sure */
776 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
777 IEEE80211_STA_BEACON_POLL);
778
Johannes Berg01838262009-12-17 16:16:53 +0100779 /*
780 * Always handle WMM once after association regardless
781 * of the first value the AP uses. Setting -1 here has
782 * that effect because the AP values is an unsigned
783 * 4-bit value.
784 */
785 sdata->u.mgd.wmm_last_param_set = -1;
786
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200787 ieee80211_led_assoc(local, 1);
788
Johannes Bergbda39332008-10-11 01:51:51 +0200789 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200790 /*
791 * For now just always ask the driver to update the basic rateset
792 * when we have associated, we aren't checking whether it actually
793 * changed or not.
794 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200795 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
Johannes Berg9cef8732009-05-14 13:10:14 +0200796
797 /* And the BSSID changed - we're associated now */
798 bss_info_changed |= BSS_CHANGED_BSSID;
799
Juuso Oikarinena97c13c2010-03-23 09:02:34 +0200800 /* Tell the driver to monitor connection quality (if supported) */
801 if ((local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI) &&
802 sdata->vif.bss_conf.cqm_rssi_thold)
803 bss_info_changed |= BSS_CHANGED_CQM;
804
Johannes Bergae5eb022008-10-14 16:58:37 +0200805 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300806
Johannes Berg056508d2009-07-30 21:43:55 +0200807 mutex_lock(&local->iflist_mtx);
808 ieee80211_recalc_ps(local, -1);
Johannes Berg0f782312009-12-01 13:37:02 +0100809 ieee80211_recalc_smps(local, sdata);
Johannes Berg056508d2009-07-30 21:43:55 +0200810 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +0200811
John W. Linville8a5b33f2010-01-06 15:39:39 -0500812 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200813 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700814}
815
Jouni Malinene69e95d2010-03-29 23:29:31 -0700816static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
817 bool remove_sta)
Tomas Winkleraa458d12008-09-09 00:32:12 +0300818{
Johannes Berg46900292009-02-15 12:44:28 +0100819 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300820 struct ieee80211_local *local = sdata->local;
821 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200822 u32 changed = 0, config_changed = 0;
Johannes Bergb291ba12009-07-10 15:29:03 +0200823 u8 bssid[ETH_ALEN];
Tomas Winkleraa458d12008-09-09 00:32:12 +0300824
Johannes Berg77fdaa12009-07-07 03:45:17 +0200825 ASSERT_MGD_MTX(ifmgd);
826
Johannes Bergb291ba12009-07-10 15:29:03 +0200827 if (WARN_ON(!ifmgd->associated))
828 return;
829
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100830 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Johannes Bergb291ba12009-07-10 15:29:03 +0200831
Johannes Berg77fdaa12009-07-07 03:45:17 +0200832 ifmgd->associated = NULL;
833 memset(ifmgd->bssid, 0, ETH_ALEN);
834
835 /*
836 * we need to commit the associated = NULL change because the
837 * scan code uses that to determine whether this iface should
838 * go to/wake up from powersave or not -- and could otherwise
839 * wake the queues erroneously.
840 */
841 smp_mb();
842
843 /*
844 * Thus, we can only afterwards stop the queues -- to account
845 * for the case where another CPU is finishing a scan at this
846 * time -- we don't want the scan code to enable queues.
847 */
Tomas Winkleraa458d12008-09-09 00:32:12 +0300848
John W. Linville8a5b33f2010-01-06 15:39:39 -0500849 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300850 netif_carrier_off(sdata->dev);
851
Johannes Berg1fa6f4a2009-06-15 18:13:58 +0200852 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100853 sta = sta_info_get(sdata, bssid);
Sujith4cad6c72010-02-10 14:52:21 +0530854 if (sta) {
855 set_sta_flags(sta, WLAN_STA_DISASSOC);
Johannes Berg1fa6f4a2009-06-15 18:13:58 +0200856 ieee80211_sta_tear_down_BA_sessions(sta);
Sujith4cad6c72010-02-10 14:52:21 +0530857 }
Johannes Berg1fa6f4a2009-06-15 18:13:58 +0200858 rcu_read_unlock();
Tomas Winkleraa458d12008-09-09 00:32:12 +0300859
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200860 changed |= ieee80211_reset_erp_info(sdata);
861
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200862 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +0200863 changed |= BSS_CHANGED_ASSOC;
864 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200865
Johannes Bergaa837e12009-05-07 16:16:24 +0200866 ieee80211_set_wmm_default(sdata);
867
Johannes Berg47979382009-01-07 10:13:27 +0100868 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +0530869 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200870
Johannes Berg413ad502009-05-08 21:21:06 +0200871 /* on the next assoc, re-program HT parameters */
872 sdata->ht_opmode_valid = false;
873
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +0530874 local->power_constr_level = 0;
875
Kalle Valo520eb822008-12-18 23:35:27 +0200876 del_timer_sync(&local->dynamic_ps_timer);
877 cancel_work_sync(&local->dynamic_ps_enable_work);
878
Kalle Valoe0cb6862008-12-18 23:35:13 +0200879 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
880 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
881 config_changed |= IEEE80211_CONF_CHANGE_PS;
882 }
883
884 ieee80211_hw_config(local, config_changed);
Johannes Berg9cef8732009-05-14 13:10:14 +0200885
886 /* And the BSSID changed -- not very interesting here */
887 changed |= BSS_CHANGED_BSSID;
Johannes Bergae5eb022008-10-14 16:58:37 +0200888 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200889
Jouni Malinene69e95d2010-03-29 23:29:31 -0700890 if (remove_sta)
891 sta_info_destroy_addr(sdata, bssid);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300892}
Jiri Bencf0706e82007-05-05 11:45:53 -0700893
Kalle Valo3cf335d2009-03-22 21:57:06 +0200894void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
895 struct ieee80211_hdr *hdr)
896{
897 /*
898 * We can postpone the mgd.timer whenever receiving unicast frames
899 * from AP because we know that the connection is working both ways
900 * at that time. But multicast frames (and hence also beacons) must
901 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +0200902 * data idle periods for sending the periodic probe request to the
903 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +0200904 */
Johannes Bergb291ba12009-07-10 15:29:03 +0200905 if (is_multicast_ether_addr(hdr->addr1))
906 return;
907
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +0200908 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
909 return;
910
Johannes Bergb291ba12009-07-10 15:29:03 +0200911 mod_timer(&sdata->u.mgd.conn_mon_timer,
912 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Kalle Valo3cf335d2009-03-22 21:57:06 +0200913}
Jiri Bencf0706e82007-05-05 11:45:53 -0700914
Maxim Levitskya43abf22009-07-31 18:54:12 +0300915static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
916{
917 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
918 const u8 *ssid;
919
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100920 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
921 ieee80211_send_probe_req(sdata, ifmgd->associated->bssid,
Maxim Levitskya43abf22009-07-31 18:54:12 +0300922 ssid + 2, ssid[1], NULL, 0);
923
924 ifmgd->probe_send_count++;
925 ifmgd->probe_timeout = jiffies + IEEE80211_PROBE_WAIT;
926 run_again(ifmgd, ifmgd->probe_timeout);
927}
928
Johannes Bergb291ba12009-07-10 15:29:03 +0200929static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
930 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +0200931{
Kalle Valo04de8382009-03-22 21:57:35 +0200932 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +0200933 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +0200934
Johannes Berg9607e6b2009-12-23 13:15:31 +0100935 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +0200936 return;
937
Luis R. Rodriguez91a3bd72009-07-23 16:37:47 -0700938 if (sdata->local->scanning)
939 return;
940
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100941 if (sdata->local->tmp_channel)
942 return;
943
Johannes Berg77fdaa12009-07-07 03:45:17 +0200944 mutex_lock(&ifmgd->mtx);
945
946 if (!ifmgd->associated)
947 goto out;
948
Michael Buescha8604022009-04-15 14:41:22 -0400949#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergb291ba12009-07-10 15:29:03 +0200950 if (beacon && net_ratelimit())
951 printk(KERN_DEBUG "%s: detected beacon loss from AP "
Johannes Berg47846c92009-11-25 17:46:19 +0100952 "- sending probe request\n", sdata->name);
Michael Buescha8604022009-04-15 14:41:22 -0400953#endif
Kalle Valo04de8382009-03-22 21:57:35 +0200954
Johannes Bergb291ba12009-07-10 15:29:03 +0200955 /*
956 * The driver/our work has already reported this event or the
957 * connection monitoring has kicked in and we have already sent
958 * a probe request. Or maybe the AP died and the driver keeps
959 * reporting until we disassociate...
960 *
961 * In either case we have to ignore the current call to this
962 * function (except for setting the correct probe reason bit)
963 * because otherwise we would reset the timer every time and
964 * never check whether we received a probe response!
965 */
966 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
967 IEEE80211_STA_CONNECTION_POLL))
968 already = true;
969
970 if (beacon)
971 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
972 else
973 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
974
975 if (already)
976 goto out;
977
Johannes Berg4e751842009-06-10 15:16:52 +0200978 mutex_lock(&sdata->local->iflist_mtx);
979 ieee80211_recalc_ps(sdata->local, -1);
980 mutex_unlock(&sdata->local->iflist_mtx);
981
Maxim Levitskya43abf22009-07-31 18:54:12 +0300982 ifmgd->probe_send_count = 0;
983 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200984 out:
985 mutex_unlock(&ifmgd->mtx);
Kalle Valo04de8382009-03-22 21:57:35 +0200986}
987
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +0200988static void __ieee80211_connection_loss(struct ieee80211_sub_if_data *sdata)
989{
990 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
991 struct ieee80211_local *local = sdata->local;
992 u8 bssid[ETH_ALEN];
993
994 mutex_lock(&ifmgd->mtx);
995 if (!ifmgd->associated) {
996 mutex_unlock(&ifmgd->mtx);
997 return;
998 }
999
1000 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
1001
1002 printk(KERN_DEBUG "Connection to AP %pM lost.\n", bssid);
1003
Jouni Malinene69e95d2010-03-29 23:29:31 -07001004 ieee80211_set_disassoc(sdata, true);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001005 ieee80211_recalc_idle(local);
1006 mutex_unlock(&ifmgd->mtx);
1007 /*
1008 * must be outside lock due to cfg80211,
1009 * but that's not a problem.
1010 */
1011 ieee80211_send_deauth_disassoc(sdata, bssid,
1012 IEEE80211_STYPE_DEAUTH,
1013 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Jouni Malinend5cdfac2010-04-04 09:37:19 +03001014 NULL, true);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001015}
1016
1017void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02001018{
1019 struct ieee80211_sub_if_data *sdata =
1020 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001021 u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02001022
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001023 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
1024 __ieee80211_connection_loss(sdata);
1025 else
1026 ieee80211_mgd_probe_ap(sdata, true);
Johannes Bergb291ba12009-07-10 15:29:03 +02001027}
1028
Kalle Valo04de8382009-03-22 21:57:35 +02001029void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1030{
1031 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001032 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02001033
Johannes Bergb5878a22010-04-07 16:48:40 +02001034 trace_api_beacon_loss(sdata);
1035
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001036 WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR);
1037 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02001038}
1039EXPORT_SYMBOL(ieee80211_beacon_loss);
1040
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001041void ieee80211_connection_loss(struct ieee80211_vif *vif)
1042{
1043 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1044 struct ieee80211_hw *hw = &sdata->local->hw;
1045
Johannes Bergb5878a22010-04-07 16:48:40 +02001046 trace_api_connection_loss(sdata);
1047
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001048 WARN_ON(!(hw->flags & IEEE80211_HW_CONNECTION_MONITOR));
1049 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
1050}
1051EXPORT_SYMBOL(ieee80211_connection_loss);
1052
1053
Johannes Berg77fdaa12009-07-07 03:45:17 +02001054static enum rx_mgmt_action __must_check
1055ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001056 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001057{
Johannes Berg46900292009-02-15 12:44:28 +01001058 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001059 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001060 u16 reason_code;
1061
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001062 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001063 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001064
Johannes Berg77fdaa12009-07-07 03:45:17 +02001065 ASSERT_MGD_MTX(ifmgd);
1066
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001067 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001068
1069 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1070
Johannes Berg77fdaa12009-07-07 03:45:17 +02001071 printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001072 sdata->name, bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001073
Jouni Malinene69e95d2010-03-29 23:29:31 -07001074 ieee80211_set_disassoc(sdata, true);
Johannes Berg63f170e2009-12-23 13:15:33 +01001075 ieee80211_recalc_idle(sdata->local);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001076
1077 return RX_MGMT_CFG80211_DEAUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001078}
1079
1080
Johannes Berg77fdaa12009-07-07 03:45:17 +02001081static enum rx_mgmt_action __must_check
1082ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1083 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001084{
Johannes Berg46900292009-02-15 12:44:28 +01001085 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001086 u16 reason_code;
1087
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001088 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001089 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001090
Johannes Berg77fdaa12009-07-07 03:45:17 +02001091 ASSERT_MGD_MTX(ifmgd);
1092
1093 if (WARN_ON(!ifmgd->associated))
1094 return RX_MGMT_NONE;
1095
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001096 if (WARN_ON(memcmp(ifmgd->associated->bssid, mgmt->sa, ETH_ALEN)))
Johannes Berg77fdaa12009-07-07 03:45:17 +02001097 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001098
1099 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1100
Johannes Berg0ff71612009-09-26 14:45:41 +02001101 printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001102 sdata->name, mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001103
Jouni Malinene69e95d2010-03-29 23:29:31 -07001104 ieee80211_set_disassoc(sdata, true);
Johannes Bergbc83b682009-11-29 12:19:06 +01001105 ieee80211_recalc_idle(sdata->local);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001106 return RX_MGMT_CFG80211_DISASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001107}
1108
1109
Johannes Bergaf6b6372009-12-23 13:15:35 +01001110static bool ieee80211_assoc_success(struct ieee80211_work *wk,
1111 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001112{
Johannes Bergaf6b6372009-12-23 13:15:35 +01001113 struct ieee80211_sub_if_data *sdata = wk->sdata;
Johannes Berg46900292009-02-15 12:44:28 +01001114 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001115 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001116 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001117 struct sta_info *sta;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001118 struct cfg80211_bss *cbss = wk->assoc.bss;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001119 u8 *pos;
Johannes Berg881d9482009-01-21 15:13:48 +01001120 u32 rates, basic_rates;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001121 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001122 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001123 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Bergae5eb022008-10-14 16:58:37 +02001124 u32 changed = 0;
Johannes Berg5d1ec852009-12-02 12:43:43 +01001125 int i, j, err;
1126 bool have_higher_than_11mbit = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001127 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001128
Johannes Bergaf6b6372009-12-23 13:15:35 +01001129 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07001130
Jiri Bencf0706e82007-05-05 11:45:53 -07001131 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001132 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07001133
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001134 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1135 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Johannes Berg47846c92009-11-25 17:46:19 +01001136 "set\n", sdata->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001137 aid &= ~(BIT(15) | BIT(14));
1138
Johannes Bergaf6b6372009-12-23 13:15:35 +01001139 pos = mgmt->u.assoc_resp.variable;
1140 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1141
Jiri Bencf0706e82007-05-05 11:45:53 -07001142 if (!elems.supp_rates) {
1143 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001144 sdata->name);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001145 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001146 }
1147
Johannes Berg46900292009-02-15 12:44:28 +01001148 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001149
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001150 sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001151 if (!sta) {
Johannes Berg5d1ec852009-12-02 12:43:43 +01001152 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
1153 " the AP\n", sdata->name);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001154 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001155 }
1156
Johannes Berg5d1ec852009-12-02 12:43:43 +01001157 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC |
1158 WLAN_STA_ASSOC_AP);
1159 if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
1160 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
1161
Jiri Bencf0706e82007-05-05 11:45:53 -07001162 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001163 basic_rates = 0;
1164 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1165
Jiri Bencf0706e82007-05-05 11:45:53 -07001166 for (i = 0; i < elems.supp_rates_len; i++) {
1167 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001168 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001169
1170 if (rate > 110)
1171 have_higher_than_11mbit = true;
1172
1173 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001174 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001175 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001176 if (is_basic)
1177 basic_rates |= BIT(j);
1178 break;
1179 }
Johannes Berg8318d782008-01-24 19:38:38 +01001180 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001181 }
Johannes Berg8318d782008-01-24 19:38:38 +01001182
Jiri Bencf0706e82007-05-05 11:45:53 -07001183 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1184 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Johannes Berg7e0986c2009-04-19 13:22:11 +02001185 bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001186
1187 if (rate > 110)
1188 have_higher_than_11mbit = true;
1189
1190 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001191 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001192 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001193 if (is_basic)
1194 basic_rates |= BIT(j);
1195 break;
1196 }
Johannes Berg8318d782008-01-24 19:38:38 +01001197 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001198 }
Johannes Berg8318d782008-01-24 19:38:38 +01001199
Johannes Berg323ce792008-09-11 02:45:11 +02001200 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001201 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001202
1203 /* cf. IEEE 802.11 9.2.12 */
1204 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1205 have_higher_than_11mbit)
1206 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1207 else
1208 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001209
Johannes Bergab1faea2009-07-01 21:41:17 +02001210 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001211 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001212 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001213
1214 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001215
Johannes Berg4b7679a2008-09-18 18:14:18 +02001216 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001217
Johannes Berg46900292009-02-15 12:44:28 +01001218 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Jouni Malinen5394af42009-01-08 13:31:59 +02001219 set_sta_flags(sta, WLAN_STA_MFP);
1220
Johannes Bergddf4ac52008-10-22 11:41:38 +02001221 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001222 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001223
Johannes Berg5d1ec852009-12-02 12:43:43 +01001224 err = sta_info_insert(sta);
1225 sta = NULL;
1226 if (err) {
1227 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1228 " the AP (error %d)\n", sdata->name, err);
Johannes Berg90be5612010-01-08 19:01:07 +01001229 return false;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001230 }
1231
Johannes Bergddf4ac52008-10-22 11:41:38 +02001232 if (elems.wmm_param)
Johannes Berg46900292009-02-15 12:44:28 +01001233 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001234 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02001235 else
1236 ieee80211_set_wmm_default(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07001237
Johannes Berge4da8c32009-12-23 13:15:43 +01001238 local->oper_channel = wk->chan;
1239
Johannes Bergae5eb022008-10-14 16:58:37 +02001240 if (elems.ht_info_elem && elems.wmm_param &&
Johannes Bergaf6b6372009-12-23 13:15:35 +01001241 (sdata->local->hw.queues >= 4) &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001242 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001243 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001244 cbss->bssid, ap_ht_cap_flags);
Johannes Bergae5eb022008-10-14 16:58:37 +02001245
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001246 /* set AID and assoc capability,
1247 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001248 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001249 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001250 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001251
Kalle Valo15b7b062009-03-22 21:57:14 +02001252 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01001253 * If we're using 4-addr mode, let the AP know that we're
1254 * doing so, so that it can create the STA VLAN on its side
1255 */
1256 if (ifmgd->use_4addr)
1257 ieee80211_send_4addr_nullfunc(local, sdata);
1258
1259 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02001260 * Start timer to probe the connection to the AP now.
1261 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02001262 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001263 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
1264 mod_beacon_timer(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02001265
Johannes Bergaf6b6372009-12-23 13:15:35 +01001266 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001267}
1268
1269
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001270static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001271 struct ieee80211_mgmt *mgmt,
1272 size_t len,
1273 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001274 struct ieee802_11_elems *elems,
1275 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001276{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001277 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001278 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001279 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001280 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01001281 bool need_ps = false;
1282
1283 if (sdata->u.mgd.associated) {
1284 bss = (void *)sdata->u.mgd.associated->priv;
1285 /* not previously set so we may need to recalc */
1286 need_ps = !bss->dtim_period;
1287 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001288
Johannes Berg5bda6172008-09-08 11:05:10 +02001289 if (elems->ds_params && elems->ds_params_len == 1)
1290 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1291 else
1292 freq = rx_status->freq;
1293
1294 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1295
1296 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1297 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001298
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001299 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Johannes Berg2a519312009-02-10 21:25:55 +01001300 channel, beacon);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001301 if (bss)
1302 ieee80211_rx_bss_put(local, bss);
1303
1304 if (!sdata->u.mgd.associated)
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001305 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001306
Johannes Berg56007a02010-01-26 14:19:52 +01001307 if (need_ps) {
1308 mutex_lock(&local->iflist_mtx);
1309 ieee80211_recalc_ps(local, -1);
1310 mutex_unlock(&local->iflist_mtx);
1311 }
1312
Sujithc481ec92009-01-06 09:28:37 +05301313 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001314 (memcmp(mgmt->bssid, sdata->u.mgd.associated->bssid,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001315 ETH_ALEN) == 0)) {
Sujithc481ec92009-01-06 09:28:37 +05301316 struct ieee80211_channel_sw_ie *sw_elem =
1317 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001318 ieee80211_sta_process_chanswitch(sdata, sw_elem, bss);
Sujithc481ec92009-01-06 09:28:37 +05301319 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001320}
1321
1322
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001323static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01001324 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07001325{
Johannes Bergaf6b6372009-12-23 13:15:35 +01001326 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02001327 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001328 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
1329 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001330 struct ieee802_11_elems elems;
1331
Kalle Valo15b7b062009-03-22 21:57:14 +02001332 ifmgd = &sdata->u.mgd;
1333
Johannes Berg77fdaa12009-07-07 03:45:17 +02001334 ASSERT_MGD_MTX(ifmgd);
1335
Johannes Berg47846c92009-11-25 17:46:19 +01001336 if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001337 return; /* ignore ProbeResp to foreign address */
1338
Ester Kummerae6a44e2008-06-27 18:54:48 +03001339 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1340 if (baselen > len)
1341 return;
1342
1343 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1344 &elems);
1345
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001346 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001347
Johannes Berg77fdaa12009-07-07 03:45:17 +02001348 if (ifmgd->associated &&
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001349 memcmp(mgmt->bssid, ifmgd->associated->bssid, ETH_ALEN) == 0 &&
Johannes Bergb291ba12009-07-10 15:29:03 +02001350 ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1351 IEEE80211_STA_CONNECTION_POLL)) {
1352 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1353 IEEE80211_STA_BEACON_POLL);
Johannes Berg4e751842009-06-10 15:16:52 +02001354 mutex_lock(&sdata->local->iflist_mtx);
1355 ieee80211_recalc_ps(sdata->local, -1);
1356 mutex_unlock(&sdata->local->iflist_mtx);
Juuso Oikarinen7bdfcaa2010-04-20 13:15:56 +03001357
1358 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
1359 return;
1360
Johannes Bergb291ba12009-07-10 15:29:03 +02001361 /*
1362 * We've received a probe response, but are not sure whether
1363 * we have or will be receiving any beacons or data, so let's
1364 * schedule the timers again, just in case.
1365 */
1366 mod_beacon_timer(sdata);
Juuso Oikarinen7bdfcaa2010-04-20 13:15:56 +03001367
Johannes Bergb291ba12009-07-10 15:29:03 +02001368 mod_timer(&ifmgd->conn_mon_timer,
1369 round_jiffies_up(jiffies +
1370 IEEE80211_CONNECTION_IDLE_TIME));
Johannes Berg4e751842009-06-10 15:16:52 +02001371 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001372}
1373
Johannes Bergd91f36d2009-04-16 13:17:26 +02001374/*
1375 * This is the canonical list of information elements we care about,
1376 * the filter code also gives us all changes to the Microsoft OUI
1377 * (00:50:F2) vendor IE which is used for WMM which we need to track.
1378 *
1379 * We implement beacon filtering in software since that means we can
1380 * avoid processing the frame here and in cfg80211, and userspace
1381 * will not be able to tell whether the hardware supports it or not.
1382 *
1383 * XXX: This list needs to be dynamic -- userspace needs to be able to
1384 * add items it requires. It also needs to be able to tell us to
1385 * look out for other vendor IEs.
1386 */
1387static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02001388 (1ULL << WLAN_EID_COUNTRY) |
1389 (1ULL << WLAN_EID_ERP_INFO) |
1390 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
1391 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
1392 (1ULL << WLAN_EID_HT_CAPABILITY) |
1393 (1ULL << WLAN_EID_HT_INFORMATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001394
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001395static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001396 struct ieee80211_mgmt *mgmt,
1397 size_t len,
1398 struct ieee80211_rx_status *rx_status)
1399{
Johannes Bergd91f36d2009-04-16 13:17:26 +02001400 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001401 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001402 size_t baselen;
1403 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001404 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001405 u32 changed = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001406 bool erp_valid, directed_tim = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001407 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001408 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001409 u8 *bssid;
1410
1411 ASSERT_MGD_MTX(ifmgd);
Jiri Bencf0706e82007-05-05 11:45:53 -07001412
Ester Kummerae6a44e2008-06-27 18:54:48 +03001413 /* Process beacon from the current BSS */
1414 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1415 if (baselen > len)
1416 return;
1417
Johannes Bergd91f36d2009-04-16 13:17:26 +02001418 if (rx_status->freq != local->hw.conf.channel->center_freq)
Jiri Bencf0706e82007-05-05 11:45:53 -07001419 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001420
Johannes Bergb291ba12009-07-10 15:29:03 +02001421 /*
1422 * We might have received a number of frames, among them a
1423 * disassoc frame and a beacon...
1424 */
1425 if (!ifmgd->associated)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001426 return;
1427
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001428 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001429
Johannes Bergb291ba12009-07-10 15:29:03 +02001430 /*
1431 * And in theory even frames from a different AP we were just
1432 * associated to a split-second ago!
1433 */
1434 if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001435 return;
1436
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001437 /* Track average RSSI from the Beacon frames of the current AP */
1438 ifmgd->last_beacon_signal = rx_status->signal;
1439 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
1440 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
1441 ifmgd->ave_beacon_signal = rx_status->signal;
1442 ifmgd->last_cqm_event_signal = 0;
1443 } else {
1444 ifmgd->ave_beacon_signal =
1445 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
1446 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
1447 ifmgd->ave_beacon_signal) / 16;
1448 }
1449 if (bss_conf->cqm_rssi_thold &&
1450 !(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
1451 int sig = ifmgd->ave_beacon_signal / 16;
1452 int last_event = ifmgd->last_cqm_event_signal;
1453 int thold = bss_conf->cqm_rssi_thold;
1454 int hyst = bss_conf->cqm_rssi_hyst;
1455 if (sig < thold &&
1456 (last_event == 0 || sig < last_event - hyst)) {
1457 ifmgd->last_cqm_event_signal = sig;
1458 ieee80211_cqm_rssi_notify(
1459 &sdata->vif,
1460 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
1461 GFP_KERNEL);
1462 } else if (sig > thold &&
1463 (last_event == 0 || sig > last_event + hyst)) {
1464 ifmgd->last_cqm_event_signal = sig;
1465 ieee80211_cqm_rssi_notify(
1466 &sdata->vif,
1467 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
1468 GFP_KERNEL);
1469 }
1470 }
1471
Johannes Bergb291ba12009-07-10 15:29:03 +02001472 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Jouni Malinen92778182009-05-14 21:15:36 +03001473#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1474 if (net_ratelimit()) {
1475 printk(KERN_DEBUG "%s: cancelling probereq poll due "
Johannes Berg47846c92009-11-25 17:46:19 +01001476 "to a received beacon\n", sdata->name);
Jouni Malinen92778182009-05-14 21:15:36 +03001477 }
1478#endif
Johannes Bergb291ba12009-07-10 15:29:03 +02001479 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Johannes Berg4e751842009-06-10 15:16:52 +02001480 mutex_lock(&local->iflist_mtx);
1481 ieee80211_recalc_ps(local, -1);
1482 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03001483 }
1484
Johannes Bergb291ba12009-07-10 15:29:03 +02001485 /*
1486 * Push the beacon loss detection into the future since
1487 * we are processing a beacon from the AP just now.
1488 */
1489 mod_beacon_timer(sdata);
1490
Johannes Bergd91f36d2009-04-16 13:17:26 +02001491 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
1492 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
1493 len - baselen, &elems,
1494 care_about_ies, ncrc);
1495
1496 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Johannes Berge7ec86f2009-04-18 17:33:24 +02001497 directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
1498 ifmgd->aid);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001499
Jouni Malinen30196672009-05-19 17:01:43 +03001500 if (ncrc != ifmgd->beacon_crc) {
1501 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
1502 true);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001503
Jouni Malinen30196672009-05-19 17:01:43 +03001504 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1505 elems.wmm_param_len);
1506 }
Johannes Bergfe3fa822008-09-08 11:05:09 +02001507
Vivek Natarajan25c9c872009-03-02 20:20:30 +05301508 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Kalle Valo1fb36062009-02-10 17:09:24 +02001509 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02001510 if (local->hw.conf.dynamic_ps_timeout > 0) {
1511 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1512 ieee80211_hw_config(local,
1513 IEEE80211_CONF_CHANGE_PS);
1514 ieee80211_send_nullfunc(local, sdata, 0);
1515 } else {
1516 local->pspolling = true;
1517
1518 /*
1519 * Here is assumed that the driver will be
1520 * able to send ps-poll frame and receive a
1521 * response even though power save mode is
1522 * enabled, but some drivers might require
1523 * to disable power save here. This needs
1524 * to be investigated.
1525 */
1526 ieee80211_send_pspoll(local, sdata);
1527 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001528 }
1529 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001530
Jouni Malinen30196672009-05-19 17:01:43 +03001531 if (ncrc == ifmgd->beacon_crc)
1532 return;
1533 ifmgd->beacon_crc = ncrc;
1534
Johannes Berg7a5158e2008-10-08 10:59:33 +02001535 if (elems.erp_info && elems.erp_info_len >= 1) {
1536 erp_valid = true;
1537 erp_value = elems.erp_info[0];
1538 } else {
1539 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001540 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001541 changed |= ieee80211_handle_bss_capability(sdata,
1542 le16_to_cpu(mgmt->u.beacon.capab_info),
1543 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001544
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001545
Vasanthakumar Thiagarajan53d6f812009-02-11 22:18:49 +05301546 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001547 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001548 struct sta_info *sta;
1549 struct ieee80211_supported_band *sband;
1550 u16 ap_ht_cap_flags;
1551
1552 rcu_read_lock();
1553
Johannes Bergabe60632009-11-25 17:46:18 +01001554 sta = sta_info_get(sdata, bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001555 if (WARN_ON(!sta)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001556 rcu_read_unlock();
1557 return;
1558 }
1559
1560 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1561
1562 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1563 elems.ht_cap_elem, &sta->sta.ht_cap);
1564
1565 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1566
1567 rcu_read_unlock();
1568
1569 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001570 bssid, ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001571 }
1572
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07001573 /* Note: country IE parsing is done for us by cfg80211 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001574 if (elems.country_elem) {
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301575 /* TODO: IBSS also needs this */
1576 if (elems.pwr_constr_elem)
1577 ieee80211_handle_pwr_constr(sdata,
1578 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1579 elems.pwr_constr_elem,
1580 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001581 }
1582
Johannes Berg471b3ef2007-12-28 14:32:58 +01001583 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001584}
1585
Johannes Berg46900292009-02-15 12:44:28 +01001586ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
Johannes Bergf1d58c22009-06-17 13:13:00 +02001587 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07001588{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001589 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001590 struct ieee80211_mgmt *mgmt;
1591 u16 fc;
1592
1593 if (skb->len < 24)
Johannes Berg46900292009-02-15 12:44:28 +01001594 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001595
1596 mgmt = (struct ieee80211_mgmt *) skb->data;
1597 fc = le16_to_cpu(mgmt->frame_control);
1598
1599 switch (fc & IEEE80211_FCTL_STYPE) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001600 case IEEE80211_STYPE_PROBE_RESP:
1601 case IEEE80211_STYPE_BEACON:
Jiri Bencf0706e82007-05-05 11:45:53 -07001602 case IEEE80211_STYPE_DEAUTH:
1603 case IEEE80211_STYPE_DISASSOC:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001604 case IEEE80211_STYPE_ACTION:
Johannes Berg46900292009-02-15 12:44:28 +01001605 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001606 ieee80211_queue_work(&local->hw, &sdata->u.mgd.work);
Johannes Berg46900292009-02-15 12:44:28 +01001607 return RX_QUEUED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001608 }
1609
Johannes Berg46900292009-02-15 12:44:28 +01001610 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001611}
1612
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001613static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001614 struct sk_buff *skb)
1615{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001616 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001617 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001618 struct ieee80211_mgmt *mgmt;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001619 enum rx_mgmt_action rma = RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001620 u16 fc;
1621
Jiri Bencf0706e82007-05-05 11:45:53 -07001622 rx_status = (struct ieee80211_rx_status *) skb->cb;
1623 mgmt = (struct ieee80211_mgmt *) skb->data;
1624 fc = le16_to_cpu(mgmt->frame_control);
1625
Johannes Berg77fdaa12009-07-07 03:45:17 +02001626 mutex_lock(&ifmgd->mtx);
1627
1628 if (ifmgd->associated &&
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001629 memcmp(ifmgd->associated->bssid, mgmt->bssid, ETH_ALEN) == 0) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02001630 switch (fc & IEEE80211_FCTL_STYPE) {
1631 case IEEE80211_STYPE_BEACON:
1632 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1633 rx_status);
1634 break;
1635 case IEEE80211_STYPE_PROBE_RESP:
Johannes Bergaf6b6372009-12-23 13:15:35 +01001636 ieee80211_rx_mgmt_probe_resp(sdata, skb);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001637 break;
1638 case IEEE80211_STYPE_DEAUTH:
Johannes Berg63f170e2009-12-23 13:15:33 +01001639 rma = ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001640 break;
1641 case IEEE80211_STYPE_DISASSOC:
1642 rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1643 break;
1644 case IEEE80211_STYPE_ACTION:
Felix Fietkaud7907442010-01-07 20:23:53 +01001645 if (mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT)
1646 break;
1647
Johannes Berg77fdaa12009-07-07 03:45:17 +02001648 ieee80211_sta_process_chanswitch(sdata,
1649 &mgmt->u.action.u.chan_switch.sw_elem,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001650 (void *)ifmgd->associated->priv);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001651 break;
1652 }
1653 mutex_unlock(&ifmgd->mtx);
1654
1655 switch (rma) {
1656 case RX_MGMT_NONE:
1657 /* no action */
1658 break;
1659 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02001660 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001661 break;
1662 case RX_MGMT_CFG80211_DISASSOC:
Holger Schurigce470612009-10-13 13:28:13 +02001663 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001664 break;
1665 default:
1666 WARN(1, "unexpected: %d", rma);
1667 }
1668 goto out;
1669 }
1670
Johannes Berg77fdaa12009-07-07 03:45:17 +02001671 mutex_unlock(&ifmgd->mtx);
1672
Johannes Berg63f170e2009-12-23 13:15:33 +01001673 if (skb->len >= 24 + 2 /* mgmt + deauth reason */ &&
Johannes Bergaf6b6372009-12-23 13:15:35 +01001674 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_DEAUTH)
Holger Schurigce470612009-10-13 13:28:13 +02001675 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001676
1677 out:
Jiri Bencf0706e82007-05-05 11:45:53 -07001678 kfree_skb(skb);
1679}
1680
Johannes Berg9c6bd792008-09-11 00:01:52 +02001681static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07001682{
1683 struct ieee80211_sub_if_data *sdata =
1684 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01001685 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001686 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001687
Johannes Berg5bb644a2009-05-17 11:40:42 +02001688 if (local->quiescing) {
1689 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
1690 return;
1691 }
1692
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001693 ieee80211_queue_work(&local->hw, &ifmgd->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07001694}
1695
Johannes Berg9c6bd792008-09-11 00:01:52 +02001696static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02001697{
1698 struct ieee80211_sub_if_data *sdata =
Johannes Berg46900292009-02-15 12:44:28 +01001699 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
Johannes Berg60f8b392008-09-08 17:44:22 +02001700 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001701 struct ieee80211_if_managed *ifmgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02001702 struct sk_buff *skb;
1703
Johannes Berg9607e6b2009-12-23 13:15:31 +01001704 if (!ieee80211_sdata_running(sdata))
Johannes Berg60f8b392008-09-08 17:44:22 +02001705 return;
1706
Helmut Schaafbe9c422009-07-23 12:14:04 +02001707 if (local->scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02001708 return;
1709
Johannes Berg46900292009-02-15 12:44:28 +01001710 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg60f8b392008-09-08 17:44:22 +02001711 return;
Johannes Berg5bb644a2009-05-17 11:40:42 +02001712
1713 /*
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001714 * ieee80211_queue_work() should have picked up most cases,
1715 * here we'll pick the the rest.
Johannes Berg5bb644a2009-05-17 11:40:42 +02001716 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001717 if (WARN(local->suspended, "STA MLME work scheduled while "
1718 "going to suspend\n"))
Johannes Berg5bb644a2009-05-17 11:40:42 +02001719 return;
1720
Johannes Berg46900292009-02-15 12:44:28 +01001721 ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02001722
Johannes Berg77fdaa12009-07-07 03:45:17 +02001723 /* first process frames to avoid timing out while a frame is pending */
Johannes Berg46900292009-02-15 12:44:28 +01001724 while ((skb = skb_dequeue(&ifmgd->skb_queue)))
Johannes Berg60f8b392008-09-08 17:44:22 +02001725 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1726
Johannes Berg77fdaa12009-07-07 03:45:17 +02001727 /* then process the rest of the work */
1728 mutex_lock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02001729
Johannes Bergb291ba12009-07-10 15:29:03 +02001730 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1731 IEEE80211_STA_CONNECTION_POLL) &&
1732 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03001733 u8 bssid[ETH_ALEN];
1734
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001735 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Johannes Bergb291ba12009-07-10 15:29:03 +02001736 if (time_is_after_jiffies(ifmgd->probe_timeout))
1737 run_again(ifmgd, ifmgd->probe_timeout);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001738
1739 else if (ifmgd->probe_send_count < IEEE80211_MAX_PROBE_TRIES) {
1740#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1741 printk(KERN_DEBUG "No probe response from AP %pM"
1742 " after %dms, try %d\n", bssid,
1743 (1000 * IEEE80211_PROBE_WAIT)/HZ,
1744 ifmgd->probe_send_count);
1745#endif
1746 ieee80211_mgd_probe_ap_send(sdata);
1747 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02001748 /*
1749 * We actually lost the connection ... or did we?
1750 * Let's make sure!
1751 */
1752 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1753 IEEE80211_STA_BEACON_POLL);
Johannes Bergb291ba12009-07-10 15:29:03 +02001754 printk(KERN_DEBUG "No probe response from AP %pM"
1755 " after %dms, disconnecting.\n",
1756 bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ);
Jouni Malinene69e95d2010-03-29 23:29:31 -07001757 ieee80211_set_disassoc(sdata, true);
Johannes Bergbc83b682009-11-29 12:19:06 +01001758 ieee80211_recalc_idle(local);
Johannes Bergb291ba12009-07-10 15:29:03 +02001759 mutex_unlock(&ifmgd->mtx);
1760 /*
1761 * must be outside lock due to cfg80211,
1762 * but that's not a problem.
1763 */
1764 ieee80211_send_deauth_disassoc(sdata, bssid,
1765 IEEE80211_STYPE_DEAUTH,
1766 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Jouni Malinend5cdfac2010-04-04 09:37:19 +03001767 NULL, true);
Johannes Bergb291ba12009-07-10 15:29:03 +02001768 mutex_lock(&ifmgd->mtx);
1769 }
1770 }
1771
Johannes Berg77fdaa12009-07-07 03:45:17 +02001772 mutex_unlock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02001773}
Johannes Berg0a51b272008-09-08 17:44:25 +02001774
Johannes Bergb291ba12009-07-10 15:29:03 +02001775static void ieee80211_sta_bcn_mon_timer(unsigned long data)
1776{
1777 struct ieee80211_sub_if_data *sdata =
1778 (struct ieee80211_sub_if_data *) data;
1779 struct ieee80211_local *local = sdata->local;
1780
1781 if (local->quiescing)
1782 return;
1783
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001784 ieee80211_queue_work(&sdata->local->hw,
1785 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02001786}
1787
1788static void ieee80211_sta_conn_mon_timer(unsigned long data)
1789{
1790 struct ieee80211_sub_if_data *sdata =
1791 (struct ieee80211_sub_if_data *) data;
1792 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1793 struct ieee80211_local *local = sdata->local;
1794
1795 if (local->quiescing)
1796 return;
1797
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001798 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02001799}
1800
1801static void ieee80211_sta_monitor_work(struct work_struct *work)
1802{
1803 struct ieee80211_sub_if_data *sdata =
1804 container_of(work, struct ieee80211_sub_if_data,
1805 u.mgd.monitor_work);
1806
1807 ieee80211_mgd_probe_ap(sdata, false);
1808}
1809
Johannes Berga1678f82008-09-11 00:01:47 +02001810static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
1811{
Kalle Vaload935682009-04-19 08:47:19 +03001812 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Bergb291ba12009-07-10 15:29:03 +02001813 sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
1814 IEEE80211_STA_CONNECTION_POLL);
Kalle Vaload935682009-04-19 08:47:19 +03001815
Johannes Bergb291ba12009-07-10 15:29:03 +02001816 /* let's probe the connection once */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001817 ieee80211_queue_work(&sdata->local->hw,
Johannes Bergb291ba12009-07-10 15:29:03 +02001818 &sdata->u.mgd.monitor_work);
1819 /* and do all the other regular work too */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001820 ieee80211_queue_work(&sdata->local->hw,
Johannes Berg46900292009-02-15 12:44:28 +01001821 &sdata->u.mgd.work);
Kalle Vaload935682009-04-19 08:47:19 +03001822 }
Johannes Berga1678f82008-09-11 00:01:47 +02001823}
1824
Johannes Berg5bb644a2009-05-17 11:40:42 +02001825#ifdef CONFIG_PM
1826void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
1827{
1828 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1829
1830 /*
1831 * we need to use atomic bitops for the running bits
1832 * only because both timers might fire at the same
1833 * time -- the code here is properly synchronised.
1834 */
1835
1836 cancel_work_sync(&ifmgd->work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001837 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001838 if (del_timer_sync(&ifmgd->timer))
1839 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
1840
1841 cancel_work_sync(&ifmgd->chswitch_work);
1842 if (del_timer_sync(&ifmgd->chswitch_timer))
1843 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
Johannes Bergb291ba12009-07-10 15:29:03 +02001844
1845 cancel_work_sync(&ifmgd->monitor_work);
1846 /* these will just be re-established on connection */
1847 del_timer_sync(&ifmgd->conn_mon_timer);
1848 del_timer_sync(&ifmgd->bcn_mon_timer);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001849}
1850
1851void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
1852{
1853 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1854
1855 if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
1856 add_timer(&ifmgd->timer);
1857 if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
1858 add_timer(&ifmgd->chswitch_timer);
1859}
1860#endif
1861
Johannes Berg9c6bd792008-09-11 00:01:52 +02001862/* interface setup */
1863void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
1864{
Johannes Berg46900292009-02-15 12:44:28 +01001865 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001866
Johannes Berg46900292009-02-15 12:44:28 +01001867 ifmgd = &sdata->u.mgd;
1868 INIT_WORK(&ifmgd->work, ieee80211_sta_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02001869 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01001870 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001871 INIT_WORK(&ifmgd->beacon_connection_loss_work,
1872 ieee80211_beacon_connection_loss_work);
Johannes Berg46900292009-02-15 12:44:28 +01001873 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02001874 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001875 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
1876 (unsigned long) sdata);
1877 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
1878 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01001879 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05301880 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01001881 skb_queue_head_init(&ifmgd->skb_queue);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001882
Johannes Bergab1faea2009-07-01 21:41:17 +02001883 ifmgd->flags = 0;
Johannes Bergbbbdff92009-04-16 13:27:42 +02001884
Johannes Berg77fdaa12009-07-07 03:45:17 +02001885 mutex_init(&ifmgd->mtx);
Johannes Berg0f782312009-12-01 13:37:02 +01001886
1887 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
1888 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
1889 else
1890 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001891}
1892
1893/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02001894void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
1895{
1896 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02001897
1898 /* Restart STA timers */
1899 rcu_read_lock();
1900 list_for_each_entry_rcu(sdata, &local->interfaces, list)
1901 ieee80211_restart_sta_timer(sdata);
1902 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02001903}
Johannes Berg10f644a2009-04-16 13:17:25 +02001904
1905int ieee80211_max_network_latency(struct notifier_block *nb,
1906 unsigned long data, void *dummy)
1907{
1908 s32 latency_usec = (s32) data;
1909 struct ieee80211_local *local =
1910 container_of(nb, struct ieee80211_local,
1911 network_latency_notifier);
1912
1913 mutex_lock(&local->iflist_mtx);
1914 ieee80211_recalc_ps(local, latency_usec);
1915 mutex_unlock(&local->iflist_mtx);
1916
1917 return 0;
1918}
Johannes Berg77fdaa12009-07-07 03:45:17 +02001919
1920/* config hooks */
Johannes Bergaf6b6372009-12-23 13:15:35 +01001921static enum work_done_result
1922ieee80211_probe_auth_done(struct ieee80211_work *wk,
1923 struct sk_buff *skb)
1924{
1925 if (!skb) {
1926 cfg80211_send_auth_timeout(wk->sdata->dev, wk->filter_ta);
1927 return WORK_DONE_DESTROY;
1928 }
1929
1930 if (wk->type == IEEE80211_WORK_AUTH) {
1931 cfg80211_send_rx_auth(wk->sdata->dev, skb->data, skb->len);
1932 return WORK_DONE_DESTROY;
1933 }
1934
1935 mutex_lock(&wk->sdata->u.mgd.mtx);
1936 ieee80211_rx_mgmt_probe_resp(wk->sdata, skb);
1937 mutex_unlock(&wk->sdata->u.mgd.mtx);
1938
1939 wk->type = IEEE80211_WORK_AUTH;
1940 wk->probe_auth.tries = 0;
1941 return WORK_DONE_REQUEUE;
1942}
1943
Johannes Berg77fdaa12009-07-07 03:45:17 +02001944int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
1945 struct cfg80211_auth_request *req)
1946{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001947 const u8 *ssid;
Johannes Bergf679f652009-12-23 13:15:34 +01001948 struct ieee80211_work *wk;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001949 u16 auth_alg;
1950
Jouni Malinend5cdfac2010-04-04 09:37:19 +03001951 if (req->local_state_change)
1952 return 0; /* no need to update mac80211 state */
1953
Johannes Berg77fdaa12009-07-07 03:45:17 +02001954 switch (req->auth_type) {
1955 case NL80211_AUTHTYPE_OPEN_SYSTEM:
1956 auth_alg = WLAN_AUTH_OPEN;
1957 break;
1958 case NL80211_AUTHTYPE_SHARED_KEY:
1959 auth_alg = WLAN_AUTH_SHARED_KEY;
1960 break;
1961 case NL80211_AUTHTYPE_FT:
1962 auth_alg = WLAN_AUTH_FT;
1963 break;
1964 case NL80211_AUTHTYPE_NETWORK_EAP:
1965 auth_alg = WLAN_AUTH_LEAP;
1966 break;
1967 default:
1968 return -EOPNOTSUPP;
1969 }
1970
1971 wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
1972 if (!wk)
1973 return -ENOMEM;
1974
Joe Perches5e124bd2010-01-08 22:33:38 -08001975 memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001976
1977 if (req->ie && req->ie_len) {
1978 memcpy(wk->ie, req->ie, req->ie_len);
1979 wk->ie_len = req->ie_len;
1980 }
1981
Johannes Bergfffd0932009-07-08 14:22:54 +02001982 if (req->key && req->key_len) {
Johannes Bergaf6b6372009-12-23 13:15:35 +01001983 wk->probe_auth.key_len = req->key_len;
1984 wk->probe_auth.key_idx = req->key_idx;
1985 memcpy(wk->probe_auth.key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02001986 }
1987
Johannes Berg77fdaa12009-07-07 03:45:17 +02001988 ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001989 memcpy(wk->probe_auth.ssid, ssid + 2, ssid[1]);
1990 wk->probe_auth.ssid_len = ssid[1];
Johannes Berg77fdaa12009-07-07 03:45:17 +02001991
Johannes Bergaf6b6372009-12-23 13:15:35 +01001992 wk->probe_auth.algorithm = auth_alg;
1993 wk->probe_auth.privacy = req->bss->capability & WLAN_CAPABILITY_PRIVACY;
Johannes Bergf679f652009-12-23 13:15:34 +01001994
Johannes Berg070bb542010-02-03 13:57:46 +01001995 /* if we already have a probe, don't probe again */
1996 if (req->bss->proberesp_ies)
1997 wk->type = IEEE80211_WORK_AUTH;
1998 else
1999 wk->type = IEEE80211_WORK_DIRECT_PROBE;
Johannes Bergf679f652009-12-23 13:15:34 +01002000 wk->chan = req->bss->channel;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002001 wk->sdata = sdata;
2002 wk->done = ieee80211_probe_auth_done;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002003
Johannes Bergaf6b6372009-12-23 13:15:35 +01002004 ieee80211_add_work(wk);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002005 return 0;
2006}
2007
Johannes Bergaf6b6372009-12-23 13:15:35 +01002008static enum work_done_result ieee80211_assoc_done(struct ieee80211_work *wk,
2009 struct sk_buff *skb)
2010{
2011 struct ieee80211_mgmt *mgmt;
2012 u16 status;
2013
2014 if (!skb) {
2015 cfg80211_send_assoc_timeout(wk->sdata->dev, wk->filter_ta);
2016 return WORK_DONE_DESTROY;
2017 }
2018
2019 mgmt = (void *)skb->data;
2020 status = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2021
2022 if (status == WLAN_STATUS_SUCCESS) {
2023 mutex_lock(&wk->sdata->u.mgd.mtx);
2024 if (!ieee80211_assoc_success(wk, mgmt, skb->len)) {
2025 mutex_unlock(&wk->sdata->u.mgd.mtx);
2026 /* oops -- internal error -- send timeout for now */
2027 cfg80211_send_assoc_timeout(wk->sdata->dev,
2028 wk->filter_ta);
2029 return WORK_DONE_DESTROY;
2030 }
2031 mutex_unlock(&wk->sdata->u.mgd.mtx);
2032 }
2033
2034 cfg80211_send_rx_assoc(wk->sdata->dev, skb->data, skb->len);
2035 return WORK_DONE_DESTROY;
2036}
2037
Johannes Berg77fdaa12009-07-07 03:45:17 +02002038int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
2039 struct cfg80211_assoc_request *req)
2040{
2041 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002042 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Bergf679f652009-12-23 13:15:34 +01002043 struct ieee80211_work *wk;
Johannes Berg63f170e2009-12-23 13:15:33 +01002044 const u8 *ssid;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002045 int i;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002046
2047 mutex_lock(&ifmgd->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002048 if (ifmgd->associated) {
Jouni Malinen9c87ba62010-02-28 12:13:46 +02002049 if (!req->prev_bssid ||
2050 memcmp(req->prev_bssid, ifmgd->associated->bssid,
2051 ETH_ALEN)) {
2052 /*
2053 * We are already associated and the request was not a
2054 * reassociation request from the current BSS, so
2055 * reject it.
2056 */
2057 mutex_unlock(&ifmgd->mtx);
2058 return -EALREADY;
2059 }
2060
2061 /* Trying to reassociate - clear previous association state */
Jouni Malinene69e95d2010-03-29 23:29:31 -07002062 ieee80211_set_disassoc(sdata, true);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002063 }
2064 mutex_unlock(&ifmgd->mtx);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002065
Johannes Berg63f170e2009-12-23 13:15:33 +01002066 wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002067 if (!wk)
2068 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002069
Johannes Berg77fdaa12009-07-07 03:45:17 +02002070 ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
Vivek Natarajan375177b2010-02-09 14:50:28 +05302071 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002072
2073 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
2074 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
2075 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
2076 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
2077 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
2078
Johannes Berg77fdaa12009-07-07 03:45:17 +02002079
2080 if (req->ie && req->ie_len) {
2081 memcpy(wk->ie, req->ie, req->ie_len);
2082 wk->ie_len = req->ie_len;
2083 } else
2084 wk->ie_len = 0;
2085
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002086 wk->assoc.bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01002087
Johannes Bergaf6b6372009-12-23 13:15:35 +01002088 memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN);
Johannes Bergf679f652009-12-23 13:15:34 +01002089
Johannes Bergaf6b6372009-12-23 13:15:35 +01002090 /* new association always uses requested smps mode */
2091 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
2092 if (ifmgd->powersave)
2093 ifmgd->ap_smps = IEEE80211_SMPS_DYNAMIC;
2094 else
2095 ifmgd->ap_smps = IEEE80211_SMPS_OFF;
2096 } else
2097 ifmgd->ap_smps = ifmgd->req_smps;
2098
2099 wk->assoc.smps = ifmgd->ap_smps;
Johannes Berg77c81442009-12-23 13:15:37 +01002100 /*
2101 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
2102 * We still associate in non-HT mode (11a/b/g) if any one of these
2103 * ciphers is configured as pairwise.
2104 * We can set this to true for non-11n hardware, that'll be checked
2105 * separately along with the peer capabilities.
2106 */
Johannes Bergaf6b6372009-12-23 13:15:35 +01002107 wk->assoc.use_11n = !(ifmgd->flags & IEEE80211_STA_DISABLE_11N);
Johannes Bergf679f652009-12-23 13:15:34 +01002108 wk->assoc.capability = req->bss->capability;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002109 wk->assoc.wmm_used = bss->wmm_used;
2110 wk->assoc.supp_rates = bss->supp_rates;
2111 wk->assoc.supp_rates_len = bss->supp_rates_len;
Johannes Bergf679f652009-12-23 13:15:34 +01002112 wk->assoc.ht_information_ie =
2113 ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_INFORMATION);
Johannes Berg63f170e2009-12-23 13:15:33 +01002114
Kalle Valoab133152010-01-12 10:42:31 +02002115 if (bss->wmm_used && bss->uapsd_supported &&
2116 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) {
2117 wk->assoc.uapsd_used = true;
2118 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
2119 } else {
2120 wk->assoc.uapsd_used = false;
2121 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
2122 }
2123
Johannes Berg63f170e2009-12-23 13:15:33 +01002124 ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
Johannes Bergf679f652009-12-23 13:15:34 +01002125 memcpy(wk->assoc.ssid, ssid + 2, ssid[1]);
2126 wk->assoc.ssid_len = ssid[1];
Johannes Berg63f170e2009-12-23 13:15:33 +01002127
Johannes Berg77fdaa12009-07-07 03:45:17 +02002128 if (req->prev_bssid)
Johannes Bergf679f652009-12-23 13:15:34 +01002129 memcpy(wk->assoc.prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002130
Johannes Bergf679f652009-12-23 13:15:34 +01002131 wk->type = IEEE80211_WORK_ASSOC;
Johannes Bergf679f652009-12-23 13:15:34 +01002132 wk->chan = req->bss->channel;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002133 wk->sdata = sdata;
2134 wk->done = ieee80211_assoc_done;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002135
2136 if (req->use_mfp) {
2137 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
2138 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
2139 } else {
2140 ifmgd->mfp = IEEE80211_MFP_DISABLED;
2141 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
2142 }
2143
2144 if (req->crypto.control_port)
2145 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
2146 else
2147 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
2148
Johannes Bergaf6b6372009-12-23 13:15:35 +01002149 ieee80211_add_work(wk);
2150 return 0;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002151}
2152
2153int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002154 struct cfg80211_deauth_request *req,
2155 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002156{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002157 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002158 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergf679f652009-12-23 13:15:34 +01002159 struct ieee80211_work *wk;
Johannes Berg63f170e2009-12-23 13:15:33 +01002160 const u8 *bssid = req->bss->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002161
Johannes Berg77fdaa12009-07-07 03:45:17 +02002162 mutex_lock(&ifmgd->mtx);
2163
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002164 if (ifmgd->associated == req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002165 bssid = req->bss->bssid;
Jouni Malinene69e95d2010-03-29 23:29:31 -07002166 ieee80211_set_disassoc(sdata, true);
Johannes Berga58ce432009-11-19 12:45:42 +01002167 mutex_unlock(&ifmgd->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002168 } else {
2169 bool not_auth_yet = false;
Johannes Berga58ce432009-11-19 12:45:42 +01002170
Johannes Bergaf6b6372009-12-23 13:15:35 +01002171 mutex_unlock(&ifmgd->mtx);
2172
2173 mutex_lock(&local->work_mtx);
2174 list_for_each_entry(wk, &local->work_list, list) {
Johannes Berg29165e42010-02-06 15:20:13 +01002175 if (wk->sdata != sdata)
Johannes Bergaf6b6372009-12-23 13:15:35 +01002176 continue;
Johannes Berg29165e42010-02-06 15:20:13 +01002177
2178 if (wk->type != IEEE80211_WORK_DIRECT_PROBE &&
2179 wk->type != IEEE80211_WORK_AUTH)
2180 continue;
2181
Johannes Bergaf6b6372009-12-23 13:15:35 +01002182 if (memcmp(req->bss->bssid, wk->filter_ta, ETH_ALEN))
2183 continue;
Johannes Berg29165e42010-02-06 15:20:13 +01002184
2185 not_auth_yet = wk->type == IEEE80211_WORK_DIRECT_PROBE;
2186 list_del_rcu(&wk->list);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002187 free_work(wk);
2188 break;
2189 }
2190 mutex_unlock(&local->work_mtx);
2191
2192 /*
2193 * If somebody requests authentication and we haven't
2194 * sent out an auth frame yet there's no need to send
2195 * out a deauth frame either. If the state was PROBE,
2196 * then this is the case. If it's AUTH we have sent a
2197 * frame, and if it's IDLE we have completed the auth
2198 * process already.
2199 */
2200 if (not_auth_yet) {
2201 __cfg80211_auth_canceled(sdata->dev, bssid);
2202 return 0;
2203 }
2204 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002205
Johannes Berg0ff71612009-09-26 14:45:41 +02002206 printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01002207 sdata->name, bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02002208
Jouni Malinend5cdfac2010-04-04 09:37:19 +03002209 ieee80211_send_deauth_disassoc(sdata, bssid, IEEE80211_STYPE_DEAUTH,
2210 req->reason_code, cookie,
2211 !req->local_state_change);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002212
Johannes Bergbc83b682009-11-29 12:19:06 +01002213 ieee80211_recalc_idle(sdata->local);
2214
Johannes Berg77fdaa12009-07-07 03:45:17 +02002215 return 0;
2216}
2217
2218int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002219 struct cfg80211_disassoc_request *req,
2220 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002221{
2222 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07002223 u8 bssid[ETH_ALEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02002224
Johannes Berg77fdaa12009-07-07 03:45:17 +02002225 mutex_lock(&ifmgd->mtx);
2226
Johannes Berg8d8b2612009-07-25 11:58:36 +02002227 /*
2228 * cfg80211 should catch this ... but it's racy since
2229 * we can receive a disassoc frame, process it, hand it
2230 * to cfg80211 while that's in a locked section already
2231 * trying to tell us that the user wants to disconnect.
2232 */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002233 if (ifmgd->associated != req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002234 mutex_unlock(&ifmgd->mtx);
2235 return -ENOLINK;
2236 }
2237
Johannes Berg0ff71612009-09-26 14:45:41 +02002238 printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01002239 sdata->name, req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02002240
Jouni Malinene69e95d2010-03-29 23:29:31 -07002241 memcpy(bssid, req->bss->bssid, ETH_ALEN);
2242 ieee80211_set_disassoc(sdata, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002243
2244 mutex_unlock(&ifmgd->mtx);
2245
2246 ieee80211_send_deauth_disassoc(sdata, req->bss->bssid,
Johannes Berg667503d2009-07-07 03:56:11 +02002247 IEEE80211_STYPE_DISASSOC, req->reason_code,
Jouni Malinend5cdfac2010-04-04 09:37:19 +03002248 cookie, !req->local_state_change);
Jouni Malinene69e95d2010-03-29 23:29:31 -07002249 sta_info_destroy_addr(sdata, bssid);
Johannes Bergbc83b682009-11-29 12:19:06 +01002250
2251 ieee80211_recalc_idle(sdata->local);
2252
Johannes Berg77fdaa12009-07-07 03:45:17 +02002253 return 0;
2254}
Jouni Malinen026331c2010-02-15 12:53:10 +02002255
2256int ieee80211_mgd_action(struct ieee80211_sub_if_data *sdata,
2257 struct ieee80211_channel *chan,
2258 enum nl80211_channel_type channel_type,
2259 const u8 *buf, size_t len, u64 *cookie)
2260{
2261 struct ieee80211_local *local = sdata->local;
2262 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2263 struct sk_buff *skb;
2264
2265 /* Check that we are on the requested channel for transmission */
2266 if ((chan != local->tmp_channel ||
2267 channel_type != local->tmp_channel_type) &&
2268 (chan != local->oper_channel ||
2269 channel_type != local->oper_channel_type))
2270 return -EBUSY;
2271
2272 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
2273 if (!skb)
2274 return -ENOMEM;
2275 skb_reserve(skb, local->hw.extra_tx_headroom);
2276
2277 memcpy(skb_put(skb, len), buf, len);
2278
2279 if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
2280 IEEE80211_SKB_CB(skb)->flags |=
2281 IEEE80211_TX_INTFL_DONT_ENCRYPT;
2282 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_NL80211_FRAME_TX |
2283 IEEE80211_TX_CTL_REQ_TX_STATUS;
2284 skb->dev = sdata->dev;
2285 ieee80211_tx_skb(sdata, skb);
2286
2287 *cookie = (unsigned long) skb;
2288 return 0;
2289}
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002290
2291void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
2292 enum nl80211_cqm_rssi_threshold_event rssi_event,
2293 gfp_t gfp)
2294{
2295 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2296
Johannes Bergb5878a22010-04-07 16:48:40 +02002297 trace_api_cqm_rssi_notify(sdata, rssi_event);
2298
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002299 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
2300}
2301EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);