1 /*
2  * BSS client mode implementation
3  * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
4  * 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 
14 #include <linux/delay.h>
15 #include <linux/if_ether.h>
16 #include <linux/skbuff.h>
17 #include <linux/if_arp.h>
18 #include <linux/etherdevice.h>
19 #include <linux/moduleparam.h>
20 #include <linux/rtnetlink.h>
21 #include <linux/pm_qos.h>
22 #include <linux/crc32.h>
23 #include <linux/slab.h>
24 #include <linux/export.h>
25 #include <net/mac80211.h>
26 #include <asm/unaligned.h>
27 
28 #include "ieee80211_i.h"
29 #include "driver-ops.h"
30 #include "rate.h"
31 #include "led.h"
32 
33 static int max_nullfunc_tries = 2;
34 module_param(max_nullfunc_tries, int, 0644);
35 MODULE_PARM_DESC(max_nullfunc_tries,
36 		 "Maximum nullfunc tx tries before disconnecting (reason 4).");
37 
38 static int max_probe_tries = 5;
39 module_param(max_probe_tries, int, 0644);
40 MODULE_PARM_DESC(max_probe_tries,
41 		 "Maximum probe tries before disconnecting (reason 4).");
42 
43 /*
44  * Beacon loss timeout is calculated as N frames times the
45  * advertised beacon interval.  This may need to be somewhat
46  * higher than what hardware might detect to account for
47  * delays in the host processing frames. But since we also
48  * probe on beacon miss before declaring the connection lost
49  * default to what we want.
50  */
51 #define IEEE80211_BEACON_LOSS_COUNT	7
52 
53 /*
54  * Time the connection can be idle before we probe
55  * it to see if we can still talk to the AP.
56  */
57 #define IEEE80211_CONNECTION_IDLE_TIME	(30 * HZ)
58 /*
59  * Time we wait for a probe response after sending
60  * a probe request because of beacon loss or for
61  * checking the connection still works.
62  */
63 static int probe_wait_ms = 500;
64 module_param(probe_wait_ms, int, 0644);
65 MODULE_PARM_DESC(probe_wait_ms,
66 		 "Maximum time(ms) to wait for probe response"
67 		 " before disconnecting (reason 4).");
68 
69 /*
70  * Weight given to the latest Beacon frame when calculating average signal
71  * strength for Beacon frames received in the current BSS. This must be
72  * between 1 and 15.
73  */
74 #define IEEE80211_SIGNAL_AVE_WEIGHT	3
75 
76 /*
77  * How many Beacon frames need to have been used in average signal strength
78  * before starting to indicate signal change events.
79  */
80 #define IEEE80211_SIGNAL_AVE_MIN_COUNT	4
81 
82 #define TMR_RUNNING_TIMER	0
83 #define TMR_RUNNING_CHANSW	1
84 
85 /*
86  * All cfg80211 functions have to be called outside a locked
87  * section so that they can acquire a lock themselves... This
88  * is much simpler than queuing up things in cfg80211, but we
89  * do need some indirection for that here.
90  */
91 enum rx_mgmt_action {
92 	/* no action required */
93 	RX_MGMT_NONE,
94 
95 	/* caller must call cfg80211_send_deauth() */
96 	RX_MGMT_CFG80211_DEAUTH,
97 
98 	/* caller must call cfg80211_send_disassoc() */
99 	RX_MGMT_CFG80211_DISASSOC,
100 };
101 
102 /* utils */
ASSERT_MGD_MTX(struct ieee80211_if_managed * ifmgd)103 static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
104 {
105 	lockdep_assert_held(&ifmgd->mtx);
106 }
107 
108 /*
109  * We can have multiple work items (and connection probing)
110  * scheduling this timer, but we need to take care to only
111  * reschedule it when it should fire _earlier_ than it was
112  * asked for before, or if it's not pending right now. This
113  * function ensures that. Note that it then is required to
114  * run this function for all timeouts after the first one
115  * has happened -- the work that runs from this timer will
116  * do that.
117  */
run_again(struct ieee80211_if_managed * ifmgd,unsigned long timeout)118 static void run_again(struct ieee80211_if_managed *ifmgd,
119 			     unsigned long timeout)
120 {
121 	ASSERT_MGD_MTX(ifmgd);
122 
123 	if (!timer_pending(&ifmgd->timer) ||
124 	    time_before(timeout, ifmgd->timer.expires))
125 		mod_timer(&ifmgd->timer, timeout);
126 }
127 
ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data * sdata)128 void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
129 {
130 	if (sdata->local->hw.flags & IEEE80211_HW_BEACON_FILTER)
131 		return;
132 
133 	mod_timer(&sdata->u.mgd.bcn_mon_timer,
134 		  round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
135 }
136 
ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data * sdata)137 void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
138 {
139 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
140 
141 	if (unlikely(!sdata->u.mgd.associated))
142 		return;
143 
144 	if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
145 		return;
146 
147 	mod_timer(&sdata->u.mgd.conn_mon_timer,
148 		  round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
149 
150 	ifmgd->probe_send_count = 0;
151 }
152 
ecw2cw(int ecw)153 static int ecw2cw(int ecw)
154 {
155 	return (1 << ecw) - 1;
156 }
157 
158 /*
159  * ieee80211_enable_ht should be called only after the operating band
160  * has been determined as ht configuration depends on the hw's
161  * HT abilities for a specific band.
162  */
ieee80211_enable_ht(struct ieee80211_sub_if_data * sdata,struct ieee80211_ht_info * hti,const u8 * bssid,u16 ap_ht_cap_flags,bool beacon_htcap_ie)163 static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
164 			       struct ieee80211_ht_info *hti,
165 			       const u8 *bssid, u16 ap_ht_cap_flags,
166 			       bool beacon_htcap_ie)
167 {
168 	struct ieee80211_local *local = sdata->local;
169 	struct ieee80211_supported_band *sband;
170 	struct sta_info *sta;
171 	u32 changed = 0;
172 	int hti_cfreq;
173 	u16 ht_opmode;
174 	bool enable_ht = true;
175 	enum nl80211_channel_type prev_chantype;
176 	enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
177 
178 	sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
179 
180 	prev_chantype = sdata->vif.bss_conf.channel_type;
181 
182 	/* HT is not supported */
183 	if (!sband->ht_cap.ht_supported)
184 		enable_ht = false;
185 
186 	if (enable_ht) {
187 		hti_cfreq = ieee80211_channel_to_frequency(hti->control_chan,
188 							   sband->band);
189 		/* check that channel matches the right operating channel */
190 		if (local->hw.conf.channel->center_freq != hti_cfreq) {
191 			/* Some APs mess this up, evidently.
192 			 * Netgear WNDR3700 sometimes reports 4 higher than
193 			 * the actual channel, for instance.
194 			 */
195 			printk(KERN_DEBUG
196 			       "%s: Wrong control channel in association"
197 			       " response: configured center-freq: %d"
198 			       " hti-cfreq: %d  hti->control_chan: %d"
199 			       " band: %d.  Disabling HT.\n",
200 			       sdata->name,
201 			       local->hw.conf.channel->center_freq,
202 			       hti_cfreq, hti->control_chan,
203 			       sband->band);
204 			enable_ht = false;
205 		}
206 	}
207 
208 	if (enable_ht) {
209 		channel_type = NL80211_CHAN_HT20;
210 
211 		if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
212 		    !ieee80111_cfg_override_disables_ht40(sdata) &&
213 		    (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
214 		    (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
215 			switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
216 			case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
217 				if (!(local->hw.conf.channel->flags &
218 				    IEEE80211_CHAN_NO_HT40PLUS))
219 					channel_type = NL80211_CHAN_HT40PLUS;
220 				break;
221 			case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
222 				if (!(local->hw.conf.channel->flags &
223 				    IEEE80211_CHAN_NO_HT40MINUS))
224 					channel_type = NL80211_CHAN_HT40MINUS;
225 				break;
226 			}
227 		}
228 	}
229 
230 	if (local->tmp_channel)
231 		local->tmp_channel_type = channel_type;
232 
233 	if (!ieee80211_set_channel_type(local, sdata, channel_type)) {
234 		/* can only fail due to HT40+/- mismatch */
235 		channel_type = NL80211_CHAN_HT20;
236 		WARN_ON(!ieee80211_set_channel_type(local, sdata, channel_type));
237 	}
238 
239 	if (beacon_htcap_ie && (prev_chantype != channel_type)) {
240 		/*
241 		 * Whenever the AP announces the HT mode change that can be
242 		 * 40MHz intolerant or etc., it would be safer to stop tx
243 		 * queues before doing hw config to avoid buffer overflow.
244 		 */
245 		ieee80211_stop_queues_by_reason(&sdata->local->hw,
246 				IEEE80211_QUEUE_STOP_REASON_CHTYPE_CHANGE);
247 
248 		/* flush out all packets */
249 		synchronize_net();
250 
251 		drv_flush(local, false);
252 	}
253 
254 	/* channel_type change automatically detected */
255 	ieee80211_hw_config(local, 0);
256 
257 	if (prev_chantype != channel_type) {
258 		rcu_read_lock();
259 		sta = sta_info_get(sdata, bssid);
260 		if (sta)
261 			rate_control_rate_update(local, sband, sta,
262 						 IEEE80211_RC_HT_CHANGED,
263 						 channel_type);
264 		rcu_read_unlock();
265 
266 		if (beacon_htcap_ie)
267 			ieee80211_wake_queues_by_reason(&sdata->local->hw,
268 				IEEE80211_QUEUE_STOP_REASON_CHTYPE_CHANGE);
269 	}
270 
271 	ht_opmode = le16_to_cpu(hti->operation_mode);
272 
273 	/* if bss configuration changed store the new one */
274 	if (sdata->ht_opmode_valid != enable_ht ||
275 	    sdata->vif.bss_conf.ht_operation_mode != ht_opmode ||
276 	    prev_chantype != channel_type) {
277 		changed |= BSS_CHANGED_HT;
278 		sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
279 		sdata->ht_opmode_valid = enable_ht;
280 	}
281 
282 	return changed;
283 }
284 
285 /* frame sending functions */
286 
ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data * sdata,const u8 * bssid,u16 stype,u16 reason,void * cookie,bool send_frame)287 static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
288 					   const u8 *bssid, u16 stype, u16 reason,
289 					   void *cookie, bool send_frame)
290 {
291 	struct ieee80211_local *local = sdata->local;
292 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
293 	struct sk_buff *skb;
294 	struct ieee80211_mgmt *mgmt;
295 
296 	skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
297 	if (!skb)
298 		return;
299 
300 	skb_reserve(skb, local->hw.extra_tx_headroom);
301 
302 	mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
303 	memset(mgmt, 0, 24);
304 	memcpy(mgmt->da, bssid, ETH_ALEN);
305 	memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
306 	memcpy(mgmt->bssid, bssid, ETH_ALEN);
307 	mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
308 	skb_put(skb, 2);
309 	/* u.deauth.reason_code == u.disassoc.reason_code */
310 	mgmt->u.deauth.reason_code = cpu_to_le16(reason);
311 
312 	if (stype == IEEE80211_STYPE_DEAUTH)
313 		if (cookie)
314 			__cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
315 		else
316 			cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
317 	else
318 		if (cookie)
319 			__cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
320 		else
321 			cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
322 	if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
323 		IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
324 
325 	if (send_frame)
326 		ieee80211_tx_skb(sdata, skb);
327 	else
328 		kfree_skb(skb);
329 }
330 
ieee80211_send_pspoll(struct ieee80211_local * local,struct ieee80211_sub_if_data * sdata)331 void ieee80211_send_pspoll(struct ieee80211_local *local,
332 			   struct ieee80211_sub_if_data *sdata)
333 {
334 	struct ieee80211_pspoll *pspoll;
335 	struct sk_buff *skb;
336 
337 	skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
338 	if (!skb)
339 		return;
340 
341 	pspoll = (struct ieee80211_pspoll *) skb->data;
342 	pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
343 
344 	IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
345 	ieee80211_tx_skb(sdata, skb);
346 }
347 
ieee80211_send_nullfunc(struct ieee80211_local * local,struct ieee80211_sub_if_data * sdata,int powersave)348 void ieee80211_send_nullfunc(struct ieee80211_local *local,
349 			     struct ieee80211_sub_if_data *sdata,
350 			     int powersave)
351 {
352 	struct sk_buff *skb;
353 	struct ieee80211_hdr_3addr *nullfunc;
354 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
355 
356 	skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
357 	if (!skb)
358 		return;
359 
360 	nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
361 	if (powersave)
362 		nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
363 
364 	IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
365 	if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
366 			    IEEE80211_STA_CONNECTION_POLL))
367 		IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
368 
369 	ieee80211_tx_skb(sdata, skb);
370 }
371 
ieee80211_send_4addr_nullfunc(struct ieee80211_local * local,struct ieee80211_sub_if_data * sdata)372 static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
373 					  struct ieee80211_sub_if_data *sdata)
374 {
375 	struct sk_buff *skb;
376 	struct ieee80211_hdr *nullfunc;
377 	__le16 fc;
378 
379 	if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
380 		return;
381 
382 	skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
383 	if (!skb)
384 		return;
385 
386 	skb_reserve(skb, local->hw.extra_tx_headroom);
387 
388 	nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
389 	memset(nullfunc, 0, 30);
390 	fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
391 			 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
392 	nullfunc->frame_control = fc;
393 	memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
394 	memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
395 	memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
396 	memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
397 
398 	IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
399 	ieee80211_tx_skb(sdata, skb);
400 }
401 
402 /* spectrum management related things */
ieee80211_chswitch_work(struct work_struct * work)403 static void ieee80211_chswitch_work(struct work_struct *work)
404 {
405 	struct ieee80211_sub_if_data *sdata =
406 		container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
407 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
408 
409 	if (!ieee80211_sdata_running(sdata))
410 		return;
411 
412 	mutex_lock(&ifmgd->mtx);
413 	if (!ifmgd->associated)
414 		goto out;
415 
416 	sdata->local->oper_channel = sdata->local->csa_channel;
417 	if (!sdata->local->ops->channel_switch) {
418 		/* call "hw_config" only if doing sw channel switch */
419 		ieee80211_hw_config(sdata->local,
420 			IEEE80211_CONF_CHANGE_CHANNEL);
421 	} else {
422 		/* update the device channel directly */
423 		sdata->local->hw.conf.channel = sdata->local->oper_channel;
424 	}
425 
426 	/* XXX: shouldn't really modify cfg80211-owned data! */
427 	ifmgd->associated->channel = sdata->local->oper_channel;
428 
429 	ieee80211_wake_queues_by_reason(&sdata->local->hw,
430 					IEEE80211_QUEUE_STOP_REASON_CSA);
431  out:
432 	ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
433 	mutex_unlock(&ifmgd->mtx);
434 }
435 
ieee80211_chswitch_done(struct ieee80211_vif * vif,bool success)436 void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
437 {
438 	struct ieee80211_sub_if_data *sdata;
439 	struct ieee80211_if_managed *ifmgd;
440 
441 	sdata = vif_to_sdata(vif);
442 	ifmgd = &sdata->u.mgd;
443 
444 	trace_api_chswitch_done(sdata, success);
445 	if (!success) {
446 		/*
447 		 * If the channel switch was not successful, stay
448 		 * around on the old channel. We currently lack
449 		 * good handling of this situation, possibly we
450 		 * should just drop the association.
451 		 */
452 		sdata->local->csa_channel = sdata->local->oper_channel;
453 	}
454 
455 	ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
456 }
457 EXPORT_SYMBOL(ieee80211_chswitch_done);
458 
ieee80211_chswitch_timer(unsigned long data)459 static void ieee80211_chswitch_timer(unsigned long data)
460 {
461 	struct ieee80211_sub_if_data *sdata =
462 		(struct ieee80211_sub_if_data *) data;
463 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
464 
465 	if (sdata->local->quiescing) {
466 		set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
467 		return;
468 	}
469 
470 	ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
471 }
472 
ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data * sdata,struct ieee80211_channel_sw_ie * sw_elem,struct ieee80211_bss * bss,u64 timestamp)473 void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
474 				      struct ieee80211_channel_sw_ie *sw_elem,
475 				      struct ieee80211_bss *bss,
476 				      u64 timestamp)
477 {
478 	struct cfg80211_bss *cbss =
479 		container_of((void *)bss, struct cfg80211_bss, priv);
480 	struct ieee80211_channel *new_ch;
481 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
482 	int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num,
483 						      cbss->channel->band);
484 
485 	ASSERT_MGD_MTX(ifmgd);
486 
487 	if (!ifmgd->associated)
488 		return;
489 
490 	if (sdata->local->scanning)
491 		return;
492 
493 	/* Disregard subsequent beacons if we are already running a timer
494 	   processing a CSA */
495 
496 	if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
497 		return;
498 
499 	new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
500 	if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
501 		return;
502 
503 	sdata->local->csa_channel = new_ch;
504 
505 	if (sdata->local->ops->channel_switch) {
506 		/* use driver's channel switch callback */
507 		struct ieee80211_channel_switch ch_switch;
508 		memset(&ch_switch, 0, sizeof(ch_switch));
509 		ch_switch.timestamp = timestamp;
510 		if (sw_elem->mode) {
511 			ch_switch.block_tx = true;
512 			ieee80211_stop_queues_by_reason(&sdata->local->hw,
513 					IEEE80211_QUEUE_STOP_REASON_CSA);
514 		}
515 		ch_switch.channel = new_ch;
516 		ch_switch.count = sw_elem->count;
517 		ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
518 		drv_channel_switch(sdata->local, &ch_switch);
519 		return;
520 	}
521 
522 	/* channel switch handled in software */
523 	if (sw_elem->count <= 1) {
524 		ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
525 	} else {
526 		if (sw_elem->mode)
527 			ieee80211_stop_queues_by_reason(&sdata->local->hw,
528 					IEEE80211_QUEUE_STOP_REASON_CSA);
529 		ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
530 		mod_timer(&ifmgd->chswitch_timer,
531 			  jiffies +
532 			  msecs_to_jiffies(sw_elem->count *
533 					   cbss->beacon_interval));
534 	}
535 }
536 
ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data * sdata,u16 capab_info,u8 * pwr_constr_elem,u8 pwr_constr_elem_len)537 static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
538 					u16 capab_info, u8 *pwr_constr_elem,
539 					u8 pwr_constr_elem_len)
540 {
541 	struct ieee80211_conf *conf = &sdata->local->hw.conf;
542 
543 	if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
544 		return;
545 
546 	/* Power constraint IE length should be 1 octet */
547 	if (pwr_constr_elem_len != 1)
548 		return;
549 
550 	if ((*pwr_constr_elem <= conf->channel->max_power) &&
551 	    (*pwr_constr_elem != sdata->local->power_constr_level)) {
552 		sdata->local->power_constr_level = *pwr_constr_elem;
553 		ieee80211_hw_config(sdata->local, 0);
554 	}
555 }
556 
ieee80211_enable_dyn_ps(struct ieee80211_vif * vif)557 void ieee80211_enable_dyn_ps(struct ieee80211_vif *vif)
558 {
559 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
560 	struct ieee80211_local *local = sdata->local;
561 	struct ieee80211_conf *conf = &local->hw.conf;
562 
563 	WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
564 		!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
565 		(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
566 
567 	local->disable_dynamic_ps = false;
568 	conf->dynamic_ps_timeout = local->dynamic_ps_user_timeout;
569 }
570 EXPORT_SYMBOL(ieee80211_enable_dyn_ps);
571 
ieee80211_disable_dyn_ps(struct ieee80211_vif * vif)572 void ieee80211_disable_dyn_ps(struct ieee80211_vif *vif)
573 {
574 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
575 	struct ieee80211_local *local = sdata->local;
576 	struct ieee80211_conf *conf = &local->hw.conf;
577 
578 	WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
579 		!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
580 		(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
581 
582 	local->disable_dynamic_ps = true;
583 	conf->dynamic_ps_timeout = 0;
584 	del_timer_sync(&local->dynamic_ps_timer);
585 	ieee80211_queue_work(&local->hw,
586 			     &local->dynamic_ps_enable_work);
587 }
588 EXPORT_SYMBOL(ieee80211_disable_dyn_ps);
589 
590 /* powersave */
ieee80211_enable_ps(struct ieee80211_local * local,struct ieee80211_sub_if_data * sdata)591 static void ieee80211_enable_ps(struct ieee80211_local *local,
592 				struct ieee80211_sub_if_data *sdata)
593 {
594 	struct ieee80211_conf *conf = &local->hw.conf;
595 
596 	/*
597 	 * If we are scanning right now then the parameters will
598 	 * take effect when scan finishes.
599 	 */
600 	if (local->scanning)
601 		return;
602 
603 	if (conf->dynamic_ps_timeout > 0 &&
604 	    !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
605 		mod_timer(&local->dynamic_ps_timer, jiffies +
606 			  msecs_to_jiffies(conf->dynamic_ps_timeout));
607 	} else {
608 		if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
609 			ieee80211_send_nullfunc(local, sdata, 1);
610 
611 		if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
612 		    (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
613 			return;
614 
615 		conf->flags |= IEEE80211_CONF_PS;
616 		ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
617 	}
618 }
619 
ieee80211_change_ps(struct ieee80211_local * local)620 static void ieee80211_change_ps(struct ieee80211_local *local)
621 {
622 	struct ieee80211_conf *conf = &local->hw.conf;
623 
624 	if (local->ps_sdata) {
625 		ieee80211_enable_ps(local, local->ps_sdata);
626 	} else if (conf->flags & IEEE80211_CONF_PS) {
627 		conf->flags &= ~IEEE80211_CONF_PS;
628 		ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
629 		del_timer_sync(&local->dynamic_ps_timer);
630 		cancel_work_sync(&local->dynamic_ps_enable_work);
631 	}
632 }
633 
ieee80211_powersave_allowed(struct ieee80211_sub_if_data * sdata)634 static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
635 {
636 	struct ieee80211_if_managed *mgd = &sdata->u.mgd;
637 	struct sta_info *sta = NULL;
638 	bool authorized = false;
639 
640 	if (!mgd->powersave)
641 		return false;
642 
643 	if (mgd->broken_ap)
644 		return false;
645 
646 	if (!mgd->associated)
647 		return false;
648 
649 	if (!mgd->associated->beacon_ies)
650 		return false;
651 
652 	if (mgd->flags & (IEEE80211_STA_BEACON_POLL |
653 			  IEEE80211_STA_CONNECTION_POLL))
654 		return false;
655 
656 	rcu_read_lock();
657 	sta = sta_info_get(sdata, mgd->bssid);
658 	if (sta)
659 		authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
660 	rcu_read_unlock();
661 
662 	return authorized;
663 }
664 
665 /* need to hold RTNL or interface lock */
ieee80211_recalc_ps(struct ieee80211_local * local,s32 latency)666 void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
667 {
668 	struct ieee80211_sub_if_data *sdata, *found = NULL;
669 	int count = 0;
670 	int timeout;
671 
672 	if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
673 		local->ps_sdata = NULL;
674 		return;
675 	}
676 
677 	if (!list_empty(&local->work_list)) {
678 		local->ps_sdata = NULL;
679 		goto change;
680 	}
681 
682 	list_for_each_entry(sdata, &local->interfaces, list) {
683 		if (!ieee80211_sdata_running(sdata))
684 			continue;
685 		if (sdata->vif.type == NL80211_IFTYPE_AP) {
686 			/* If an AP vif is found, then disable PS
687 			 * by setting the count to zero thereby setting
688 			 * ps_sdata to NULL.
689 			 */
690 			count = 0;
691 			break;
692 		}
693 		if (sdata->vif.type != NL80211_IFTYPE_STATION)
694 			continue;
695 		found = sdata;
696 		count++;
697 	}
698 
699 	if (count == 1 && ieee80211_powersave_allowed(found)) {
700 		struct ieee80211_conf *conf = &local->hw.conf;
701 		s32 beaconint_us;
702 
703 		if (latency < 0)
704 			latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
705 
706 		beaconint_us = ieee80211_tu_to_usec(
707 					found->vif.bss_conf.beacon_int);
708 
709 		timeout = local->dynamic_ps_forced_timeout;
710 		if (timeout < 0) {
711 			/*
712 			 * Go to full PSM if the user configures a very low
713 			 * latency requirement.
714 			 * The 2000 second value is there for compatibility
715 			 * until the PM_QOS_NETWORK_LATENCY is configured
716 			 * with real values.
717 			 */
718 			if (latency > (1900 * USEC_PER_MSEC) &&
719 			    latency != (2000 * USEC_PER_SEC))
720 				timeout = 0;
721 			else
722 				timeout = 100;
723 		}
724 		local->dynamic_ps_user_timeout = timeout;
725 		if (!local->disable_dynamic_ps)
726 			conf->dynamic_ps_timeout =
727 				local->dynamic_ps_user_timeout;
728 
729 		if (beaconint_us > latency) {
730 			local->ps_sdata = NULL;
731 		} else {
732 			struct ieee80211_bss *bss;
733 			int maxslp = 1;
734 			u8 dtimper;
735 
736 			bss = (void *)found->u.mgd.associated->priv;
737 			dtimper = bss->dtim_period;
738 
739 			/* If the TIM IE is invalid, pretend the value is 1 */
740 			if (!dtimper)
741 				dtimper = 1;
742 			else if (dtimper > 1)
743 				maxslp = min_t(int, dtimper,
744 						    latency / beaconint_us);
745 
746 			local->hw.conf.max_sleep_period = maxslp;
747 			local->hw.conf.ps_dtim_period = dtimper;
748 			local->ps_sdata = found;
749 		}
750 	} else {
751 		local->ps_sdata = NULL;
752 	}
753 
754  change:
755 	ieee80211_change_ps(local);
756 }
757 
ieee80211_dynamic_ps_disable_work(struct work_struct * work)758 void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
759 {
760 	struct ieee80211_local *local =
761 		container_of(work, struct ieee80211_local,
762 			     dynamic_ps_disable_work);
763 
764 	if (local->hw.conf.flags & IEEE80211_CONF_PS) {
765 		local->hw.conf.flags &= ~IEEE80211_CONF_PS;
766 		ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
767 	}
768 
769 	ieee80211_wake_queues_by_reason(&local->hw,
770 					IEEE80211_QUEUE_STOP_REASON_PS);
771 }
772 
ieee80211_dynamic_ps_enable_work(struct work_struct * work)773 void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
774 {
775 	struct ieee80211_local *local =
776 		container_of(work, struct ieee80211_local,
777 			     dynamic_ps_enable_work);
778 	struct ieee80211_sub_if_data *sdata = local->ps_sdata;
779 	struct ieee80211_if_managed *ifmgd;
780 	unsigned long flags;
781 	int q;
782 
783 	/* can only happen when PS was just disabled anyway */
784 	if (!sdata)
785 		return;
786 
787 	ifmgd = &sdata->u.mgd;
788 
789 	if (local->hw.conf.flags & IEEE80211_CONF_PS)
790 		return;
791 
792 	if (!local->disable_dynamic_ps &&
793 	    local->hw.conf.dynamic_ps_timeout > 0) {
794 		/* don't enter PS if TX frames are pending */
795 		if (drv_tx_frames_pending(local)) {
796 			mod_timer(&local->dynamic_ps_timer, jiffies +
797 				  msecs_to_jiffies(
798 				  local->hw.conf.dynamic_ps_timeout));
799 			return;
800 		}
801 
802 		/*
803 		 * transmission can be stopped by others which leads to
804 		 * dynamic_ps_timer expiry. Postpone the ps timer if it
805 		 * is not the actual idle state.
806 		 */
807 		spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
808 		for (q = 0; q < local->hw.queues; q++) {
809 			if (local->queue_stop_reasons[q]) {
810 				spin_unlock_irqrestore(&local->queue_stop_reason_lock,
811 						       flags);
812 				mod_timer(&local->dynamic_ps_timer, jiffies +
813 					  msecs_to_jiffies(
814 					  local->hw.conf.dynamic_ps_timeout));
815 				return;
816 			}
817 		}
818 		spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
819 	}
820 
821 	if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
822 	    !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
823 		netif_tx_stop_all_queues(sdata->dev);
824 
825 		if (drv_tx_frames_pending(local))
826 			mod_timer(&local->dynamic_ps_timer, jiffies +
827 				  msecs_to_jiffies(
828 				  local->hw.conf.dynamic_ps_timeout));
829 		else {
830 			ieee80211_send_nullfunc(local, sdata, 1);
831 			/* Flush to get the tx status of nullfunc frame */
832 			drv_flush(local, false);
833 		}
834 	}
835 
836 	if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
837 	      (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
838 	    (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
839 		ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
840 		local->hw.conf.flags |= IEEE80211_CONF_PS;
841 		ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
842 	}
843 
844 	if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
845 		netif_tx_wake_all_queues(sdata->dev);
846 }
847 
ieee80211_dynamic_ps_timer(unsigned long data)848 void ieee80211_dynamic_ps_timer(unsigned long data)
849 {
850 	struct ieee80211_local *local = (void *) data;
851 
852 	if (local->quiescing || local->suspended)
853 		return;
854 
855 	ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
856 }
857 
858 /* MLME */
ieee80211_sta_wmm_params(struct ieee80211_local * local,struct ieee80211_sub_if_data * sdata,u8 * wmm_param,size_t wmm_param_len)859 static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
860 				     struct ieee80211_sub_if_data *sdata,
861 				     u8 *wmm_param, size_t wmm_param_len)
862 {
863 	struct ieee80211_tx_queue_params params;
864 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
865 	size_t left;
866 	int count;
867 	u8 *pos, uapsd_queues = 0;
868 
869 	if (!local->ops->conf_tx)
870 		return;
871 
872 	if (local->hw.queues < 4)
873 		return;
874 
875 	if (!wmm_param)
876 		return;
877 
878 	if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
879 		return;
880 
881 	if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
882 		uapsd_queues = local->uapsd_queues;
883 
884 	count = wmm_param[6] & 0x0f;
885 	if (count == ifmgd->wmm_last_param_set)
886 		return;
887 	ifmgd->wmm_last_param_set = count;
888 
889 	pos = wmm_param + 8;
890 	left = wmm_param_len - 8;
891 
892 	memset(&params, 0, sizeof(params));
893 
894 	local->wmm_acm = 0;
895 	for (; left >= 4; left -= 4, pos += 4) {
896 		int aci = (pos[0] >> 5) & 0x03;
897 		int acm = (pos[0] >> 4) & 0x01;
898 		bool uapsd = false;
899 		int queue;
900 
901 		switch (aci) {
902 		case 1: /* AC_BK */
903 			queue = 3;
904 			if (acm)
905 				local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
906 			if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
907 				uapsd = true;
908 			break;
909 		case 2: /* AC_VI */
910 			queue = 1;
911 			if (acm)
912 				local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
913 			if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
914 				uapsd = true;
915 			break;
916 		case 3: /* AC_VO */
917 			queue = 0;
918 			if (acm)
919 				local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
920 			if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
921 				uapsd = true;
922 			break;
923 		case 0: /* AC_BE */
924 		default:
925 			queue = 2;
926 			if (acm)
927 				local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
928 			if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
929 				uapsd = true;
930 			break;
931 		}
932 
933 		params.aifs = pos[0] & 0x0f;
934 		params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
935 		params.cw_min = ecw2cw(pos[1] & 0x0f);
936 		params.txop = get_unaligned_le16(pos + 2);
937 		params.uapsd = uapsd;
938 
939 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
940 		wiphy_debug(local->hw.wiphy,
941 			    "WMM queue=%d aci=%d acm=%d aifs=%d "
942 			    "cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
943 			    queue, aci, acm,
944 			    params.aifs, params.cw_min, params.cw_max,
945 			    params.txop, params.uapsd);
946 #endif
947 		sdata->tx_conf[queue] = params;
948 		if (drv_conf_tx(local, sdata, queue, &params))
949 			wiphy_debug(local->hw.wiphy,
950 				    "failed to set TX queue parameters for queue %d\n",
951 				    queue);
952 	}
953 
954 	/* enable WMM or activate new settings */
955 	sdata->vif.bss_conf.qos = true;
956 	ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
957 }
958 
ieee80211_handle_bss_capability(struct ieee80211_sub_if_data * sdata,u16 capab,bool erp_valid,u8 erp)959 static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
960 					   u16 capab, bool erp_valid, u8 erp)
961 {
962 	struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
963 	u32 changed = 0;
964 	bool use_protection;
965 	bool use_short_preamble;
966 	bool use_short_slot;
967 
968 	if (erp_valid) {
969 		use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
970 		use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
971 	} else {
972 		use_protection = false;
973 		use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
974 	}
975 
976 	use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
977 	if (sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ)
978 		use_short_slot = true;
979 
980 	if (use_protection != bss_conf->use_cts_prot) {
981 		bss_conf->use_cts_prot = use_protection;
982 		changed |= BSS_CHANGED_ERP_CTS_PROT;
983 	}
984 
985 	if (use_short_preamble != bss_conf->use_short_preamble) {
986 		bss_conf->use_short_preamble = use_short_preamble;
987 		changed |= BSS_CHANGED_ERP_PREAMBLE;
988 	}
989 
990 	if (use_short_slot != bss_conf->use_short_slot) {
991 		bss_conf->use_short_slot = use_short_slot;
992 		changed |= BSS_CHANGED_ERP_SLOT;
993 	}
994 
995 	return changed;
996 }
997 
ieee80211_set_associated(struct ieee80211_sub_if_data * sdata,struct cfg80211_bss * cbss,u32 bss_info_changed)998 static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
999 				     struct cfg80211_bss *cbss,
1000 				     u32 bss_info_changed)
1001 {
1002 	struct ieee80211_bss *bss = (void *)cbss->priv;
1003 	struct ieee80211_local *local = sdata->local;
1004 	struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
1005 
1006 	bss_info_changed |= BSS_CHANGED_ASSOC;
1007 	/* set timing information */
1008 	bss_conf->beacon_int = cbss->beacon_interval;
1009 	bss_conf->timestamp = cbss->tsf;
1010 
1011 	bss_info_changed |= BSS_CHANGED_BEACON_INT;
1012 	bss_info_changed |= ieee80211_handle_bss_capability(sdata,
1013 		cbss->capability, bss->has_erp_value, bss->erp_value);
1014 
1015 	sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
1016 		IEEE80211_BEACON_LOSS_COUNT * bss_conf->beacon_int));
1017 
1018 	sdata->u.mgd.associated = cbss;
1019 	memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
1020 
1021 	sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1022 
1023 	/* just to be sure */
1024 	sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1025 				IEEE80211_STA_BEACON_POLL);
1026 
1027 	ieee80211_led_assoc(local, 1);
1028 
1029 	if (local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD)
1030 		bss_conf->dtim_period = bss->dtim_period;
1031 	else
1032 		bss_conf->dtim_period = 0;
1033 
1034 	bss_conf->assoc = 1;
1035 	/*
1036 	 * For now just always ask the driver to update the basic rateset
1037 	 * when we have associated, we aren't checking whether it actually
1038 	 * changed or not.
1039 	 */
1040 	bss_info_changed |= BSS_CHANGED_BASIC_RATES;
1041 
1042 	/* And the BSSID changed - we're associated now */
1043 	bss_info_changed |= BSS_CHANGED_BSSID;
1044 
1045 	/* Tell the driver to monitor connection quality (if supported) */
1046 	if ((local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI) &&
1047 	    bss_conf->cqm_rssi_thold)
1048 		bss_info_changed |= BSS_CHANGED_CQM;
1049 
1050 	/* Enable ARP filtering */
1051 	if (bss_conf->arp_filter_enabled != sdata->arp_filter_state) {
1052 		bss_conf->arp_filter_enabled = sdata->arp_filter_state;
1053 		bss_info_changed |= BSS_CHANGED_ARP_FILTER;
1054 	}
1055 
1056 	ieee80211_bss_info_change_notify(sdata, bss_info_changed);
1057 
1058 	mutex_lock(&local->iflist_mtx);
1059 	ieee80211_recalc_ps(local, -1);
1060 	ieee80211_recalc_smps(local);
1061 	mutex_unlock(&local->iflist_mtx);
1062 
1063 	netif_tx_start_all_queues(sdata->dev);
1064 	netif_carrier_on(sdata->dev);
1065 }
1066 
ieee80211_set_disassoc(struct ieee80211_sub_if_data * sdata,bool remove_sta,bool tx)1067 static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
1068 				   bool remove_sta, bool tx)
1069 {
1070 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1071 	struct ieee80211_local *local = sdata->local;
1072 	struct sta_info *sta;
1073 	u32 changed = 0, config_changed = 0;
1074 	u8 bssid[ETH_ALEN];
1075 
1076 	ASSERT_MGD_MTX(ifmgd);
1077 
1078 	if (WARN_ON(!ifmgd->associated))
1079 		return;
1080 
1081 	memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
1082 
1083 	ifmgd->associated = NULL;
1084 	memset(ifmgd->bssid, 0, ETH_ALEN);
1085 
1086 	/*
1087 	 * we need to commit the associated = NULL change because the
1088 	 * scan code uses that to determine whether this iface should
1089 	 * go to/wake up from powersave or not -- and could otherwise
1090 	 * wake the queues erroneously.
1091 	 */
1092 	smp_mb();
1093 
1094 	/*
1095 	 * Thus, we can only afterwards stop the queues -- to account
1096 	 * for the case where another CPU is finishing a scan at this
1097 	 * time -- we don't want the scan code to enable queues.
1098 	 */
1099 
1100 	netif_tx_stop_all_queues(sdata->dev);
1101 	netif_carrier_off(sdata->dev);
1102 
1103 	mutex_lock(&local->sta_mtx);
1104 	sta = sta_info_get(sdata, bssid);
1105 	if (sta) {
1106 		set_sta_flag(sta, WLAN_STA_BLOCK_BA);
1107 		ieee80211_sta_tear_down_BA_sessions(sta, tx);
1108 	}
1109 	mutex_unlock(&local->sta_mtx);
1110 
1111 	changed |= ieee80211_reset_erp_info(sdata);
1112 
1113 	ieee80211_led_assoc(local, 0);
1114 	changed |= BSS_CHANGED_ASSOC;
1115 	sdata->vif.bss_conf.assoc = false;
1116 
1117 	ieee80211_set_wmm_default(sdata);
1118 
1119 	/* channel(_type) changes are handled by ieee80211_hw_config */
1120 	WARN_ON(!ieee80211_set_channel_type(local, sdata, NL80211_CHAN_NO_HT));
1121 
1122 	/* on the next assoc, re-program HT parameters */
1123 	sdata->ht_opmode_valid = false;
1124 	memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1125 	memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
1126 
1127 	local->power_constr_level = 0;
1128 
1129 	del_timer_sync(&local->dynamic_ps_timer);
1130 	cancel_work_sync(&local->dynamic_ps_enable_work);
1131 
1132 	if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1133 		local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1134 		config_changed |= IEEE80211_CONF_CHANGE_PS;
1135 	}
1136 	local->ps_sdata = NULL;
1137 
1138 	ieee80211_hw_config(local, config_changed);
1139 
1140 	/* Disable ARP filtering */
1141 	if (sdata->vif.bss_conf.arp_filter_enabled) {
1142 		sdata->vif.bss_conf.arp_filter_enabled = false;
1143 		changed |= BSS_CHANGED_ARP_FILTER;
1144 	}
1145 
1146 	/* The BSSID (not really interesting) and HT changed */
1147 	changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
1148 	ieee80211_bss_info_change_notify(sdata, changed);
1149 
1150 	/* remove AP and TDLS peers */
1151 	if (remove_sta)
1152 		sta_info_flush(local, sdata);
1153 
1154 	del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1155 	del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1156 	del_timer_sync(&sdata->u.mgd.timer);
1157 	del_timer_sync(&sdata->u.mgd.chswitch_timer);
1158 }
1159 
ieee80211_sta_rx_notify(struct ieee80211_sub_if_data * sdata,struct ieee80211_hdr * hdr)1160 void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1161 			     struct ieee80211_hdr *hdr)
1162 {
1163 	/*
1164 	 * We can postpone the mgd.timer whenever receiving unicast frames
1165 	 * from AP because we know that the connection is working both ways
1166 	 * at that time. But multicast frames (and hence also beacons) must
1167 	 * be ignored here, because we need to trigger the timer during
1168 	 * data idle periods for sending the periodic probe request to the
1169 	 * AP we're connected to.
1170 	 */
1171 	if (is_multicast_ether_addr(hdr->addr1))
1172 		return;
1173 
1174 	ieee80211_sta_reset_conn_monitor(sdata);
1175 }
1176 
ieee80211_reset_ap_probe(struct ieee80211_sub_if_data * sdata)1177 static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1178 {
1179 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1180 
1181 	if (!(ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1182 			      IEEE80211_STA_CONNECTION_POLL)))
1183 	    return;
1184 
1185 	ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1186 			  IEEE80211_STA_BEACON_POLL);
1187 	mutex_lock(&sdata->local->iflist_mtx);
1188 	ieee80211_recalc_ps(sdata->local, -1);
1189 	mutex_unlock(&sdata->local->iflist_mtx);
1190 
1191 	if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
1192 		return;
1193 
1194 	/*
1195 	 * We've received a probe response, but are not sure whether
1196 	 * we have or will be receiving any beacons or data, so let's
1197 	 * schedule the timers again, just in case.
1198 	 */
1199 	ieee80211_sta_reset_beacon_monitor(sdata);
1200 
1201 	mod_timer(&ifmgd->conn_mon_timer,
1202 		  round_jiffies_up(jiffies +
1203 				   IEEE80211_CONNECTION_IDLE_TIME));
1204 }
1205 
ieee80211_sta_tx_notify(struct ieee80211_sub_if_data * sdata,struct ieee80211_hdr * hdr,bool ack)1206 void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
1207 			     struct ieee80211_hdr *hdr, bool ack)
1208 {
1209 	if (!ieee80211_is_data(hdr->frame_control))
1210 	    return;
1211 
1212 	if (ack)
1213 		ieee80211_sta_reset_conn_monitor(sdata);
1214 
1215 	if (ieee80211_is_nullfunc(hdr->frame_control) &&
1216 	    sdata->u.mgd.probe_send_count > 0) {
1217 		if (ack)
1218 			sdata->u.mgd.probe_send_count = 0;
1219 		else
1220 			sdata->u.mgd.nullfunc_failed = true;
1221 		ieee80211_queue_work(&sdata->local->hw, &sdata->work);
1222 	}
1223 }
1224 
ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data * sdata)1225 static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1226 {
1227 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1228 	const u8 *ssid;
1229 	u8 *dst = ifmgd->associated->bssid;
1230 	u8 unicast_limit = max(1, max_probe_tries - 3);
1231 
1232 	/*
1233 	 * Try sending broadcast probe requests for the last three
1234 	 * probe requests after the first ones failed since some
1235 	 * buggy APs only support broadcast probe requests.
1236 	 */
1237 	if (ifmgd->probe_send_count >= unicast_limit)
1238 		dst = NULL;
1239 
1240 	/*
1241 	 * When the hardware reports an accurate Tx ACK status, it's
1242 	 * better to send a nullfunc frame instead of a probe request,
1243 	 * as it will kick us off the AP quickly if we aren't associated
1244 	 * anymore. The timeout will be reset if the frame is ACKed by
1245 	 * the AP.
1246 	 */
1247 	if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1248 		ifmgd->nullfunc_failed = false;
1249 		ieee80211_send_nullfunc(sdata->local, sdata, 0);
1250 	} else {
1251 		ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
1252 		ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid[1], NULL, 0,
1253 					 (u32) -1, true, false);
1254 	}
1255 
1256 	ifmgd->probe_send_count++;
1257 	ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
1258 	run_again(ifmgd, ifmgd->probe_timeout);
1259 }
1260 
ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data * sdata,bool beacon)1261 static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1262 				   bool beacon)
1263 {
1264 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1265 	bool already = false;
1266 
1267 	if (!ieee80211_sdata_running(sdata))
1268 		return;
1269 
1270 	if (sdata->local->scanning)
1271 		return;
1272 
1273 	if (sdata->local->tmp_channel)
1274 		return;
1275 
1276 	mutex_lock(&ifmgd->mtx);
1277 
1278 	if (!ifmgd->associated)
1279 		goto out;
1280 
1281 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1282 	if (beacon && net_ratelimit())
1283 		printk(KERN_DEBUG "%s: detected beacon loss from AP "
1284 		       "- sending probe request\n", sdata->name);
1285 #endif
1286 
1287 	/*
1288 	 * The driver/our work has already reported this event or the
1289 	 * connection monitoring has kicked in and we have already sent
1290 	 * a probe request. Or maybe the AP died and the driver keeps
1291 	 * reporting until we disassociate...
1292 	 *
1293 	 * In either case we have to ignore the current call to this
1294 	 * function (except for setting the correct probe reason bit)
1295 	 * because otherwise we would reset the timer every time and
1296 	 * never check whether we received a probe response!
1297 	 */
1298 	if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1299 			    IEEE80211_STA_CONNECTION_POLL))
1300 		already = true;
1301 
1302 	if (beacon)
1303 		ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
1304 	else
1305 		ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1306 
1307 	if (already)
1308 		goto out;
1309 
1310 	mutex_lock(&sdata->local->iflist_mtx);
1311 	ieee80211_recalc_ps(sdata->local, -1);
1312 	mutex_unlock(&sdata->local->iflist_mtx);
1313 
1314 	ifmgd->probe_send_count = 0;
1315 	ieee80211_mgd_probe_ap_send(sdata);
1316  out:
1317 	mutex_unlock(&ifmgd->mtx);
1318 }
1319 
ieee80211_ap_probereq_get(struct ieee80211_hw * hw,struct ieee80211_vif * vif)1320 struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
1321 					  struct ieee80211_vif *vif)
1322 {
1323 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1324 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1325 	struct sk_buff *skb;
1326 	const u8 *ssid;
1327 
1328 	if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1329 		return NULL;
1330 
1331 	ASSERT_MGD_MTX(ifmgd);
1332 
1333 	if (!ifmgd->associated)
1334 		return NULL;
1335 
1336 	ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
1337 	skb = ieee80211_build_probe_req(sdata, ifmgd->associated->bssid,
1338 					(u32) -1, ssid + 2, ssid[1],
1339 					NULL, 0, true);
1340 
1341 	return skb;
1342 }
1343 EXPORT_SYMBOL(ieee80211_ap_probereq_get);
1344 
__ieee80211_connection_loss(struct ieee80211_sub_if_data * sdata)1345 static void __ieee80211_connection_loss(struct ieee80211_sub_if_data *sdata)
1346 {
1347 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1348 	struct ieee80211_local *local = sdata->local;
1349 	u8 bssid[ETH_ALEN];
1350 
1351 	mutex_lock(&ifmgd->mtx);
1352 	if (!ifmgd->associated) {
1353 		mutex_unlock(&ifmgd->mtx);
1354 		return;
1355 	}
1356 
1357 	memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
1358 
1359 	printk(KERN_DEBUG "%s: Connection to AP %pM lost.\n",
1360 	       sdata->name, bssid);
1361 
1362 	ieee80211_set_disassoc(sdata, true, true);
1363 	mutex_unlock(&ifmgd->mtx);
1364 
1365 	/*
1366 	 * must be outside lock due to cfg80211,
1367 	 * but that's not a problem.
1368 	 */
1369 	ieee80211_send_deauth_disassoc(sdata, bssid,
1370 				       IEEE80211_STYPE_DEAUTH,
1371 				       WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
1372 				       NULL, true);
1373 
1374 	mutex_lock(&local->mtx);
1375 	ieee80211_recalc_idle(local);
1376 	mutex_unlock(&local->mtx);
1377 }
1378 
ieee80211_beacon_connection_loss_work(struct work_struct * work)1379 void ieee80211_beacon_connection_loss_work(struct work_struct *work)
1380 {
1381 	struct ieee80211_sub_if_data *sdata =
1382 		container_of(work, struct ieee80211_sub_if_data,
1383 			     u.mgd.beacon_connection_loss_work);
1384 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1385 	struct sta_info *sta;
1386 
1387 	if (ifmgd->associated) {
1388 		rcu_read_lock();
1389 		sta = sta_info_get(sdata, ifmgd->bssid);
1390 		if (sta)
1391 			sta->beacon_loss_count++;
1392 		rcu_read_unlock();
1393 	}
1394 
1395 	if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
1396 		__ieee80211_connection_loss(sdata);
1397 	else
1398 		ieee80211_mgd_probe_ap(sdata, true);
1399 }
1400 
ieee80211_beacon_loss(struct ieee80211_vif * vif)1401 void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1402 {
1403 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1404 	struct ieee80211_hw *hw = &sdata->local->hw;
1405 
1406 	trace_api_beacon_loss(sdata);
1407 
1408 	WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR);
1409 	ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
1410 }
1411 EXPORT_SYMBOL(ieee80211_beacon_loss);
1412 
ieee80211_connection_loss(struct ieee80211_vif * vif)1413 void ieee80211_connection_loss(struct ieee80211_vif *vif)
1414 {
1415 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1416 	struct ieee80211_hw *hw = &sdata->local->hw;
1417 
1418 	trace_api_connection_loss(sdata);
1419 
1420 	WARN_ON(!(hw->flags & IEEE80211_HW_CONNECTION_MONITOR));
1421 	ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
1422 }
1423 EXPORT_SYMBOL(ieee80211_connection_loss);
1424 
1425 
1426 static enum rx_mgmt_action __must_check
ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data * sdata,struct ieee80211_mgmt * mgmt,size_t len)1427 ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
1428 			 struct ieee80211_mgmt *mgmt, size_t len)
1429 {
1430 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1431 	const u8 *bssid = NULL;
1432 	u16 reason_code;
1433 
1434 	if (len < 24 + 2)
1435 		return RX_MGMT_NONE;
1436 
1437 	ASSERT_MGD_MTX(ifmgd);
1438 
1439 	bssid = ifmgd->associated->bssid;
1440 
1441 	reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1442 
1443 	printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
1444 			sdata->name, bssid, reason_code);
1445 
1446 	ieee80211_set_disassoc(sdata, true, false);
1447 	mutex_lock(&sdata->local->mtx);
1448 	ieee80211_recalc_idle(sdata->local);
1449 	mutex_unlock(&sdata->local->mtx);
1450 
1451 	return RX_MGMT_CFG80211_DEAUTH;
1452 }
1453 
1454 
1455 static enum rx_mgmt_action __must_check
ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data * sdata,struct ieee80211_mgmt * mgmt,size_t len)1456 ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1457 			   struct ieee80211_mgmt *mgmt, size_t len)
1458 {
1459 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1460 	u16 reason_code;
1461 
1462 	if (len < 24 + 2)
1463 		return RX_MGMT_NONE;
1464 
1465 	ASSERT_MGD_MTX(ifmgd);
1466 
1467 	if (WARN_ON(!ifmgd->associated))
1468 		return RX_MGMT_NONE;
1469 
1470 	if (WARN_ON(memcmp(ifmgd->associated->bssid, mgmt->sa, ETH_ALEN)))
1471 		return RX_MGMT_NONE;
1472 
1473 	reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1474 
1475 	printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n",
1476 			sdata->name, mgmt->sa, reason_code);
1477 
1478 	ieee80211_set_disassoc(sdata, true, false);
1479 	mutex_lock(&sdata->local->mtx);
1480 	ieee80211_recalc_idle(sdata->local);
1481 	mutex_unlock(&sdata->local->mtx);
1482 	return RX_MGMT_CFG80211_DISASSOC;
1483 }
1484 
ieee80211_get_rates(struct ieee80211_supported_band * sband,u8 * supp_rates,unsigned int supp_rates_len,u32 * rates,u32 * basic_rates,bool * have_higher_than_11mbit,int * min_rate,int * min_rate_index)1485 static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
1486 				u8 *supp_rates, unsigned int supp_rates_len,
1487 				u32 *rates, u32 *basic_rates,
1488 				bool *have_higher_than_11mbit,
1489 				int *min_rate, int *min_rate_index)
1490 {
1491 	int i, j;
1492 
1493 	for (i = 0; i < supp_rates_len; i++) {
1494 		int rate = (supp_rates[i] & 0x7f) * 5;
1495 		bool is_basic = !!(supp_rates[i] & 0x80);
1496 
1497 		if (rate > 110)
1498 			*have_higher_than_11mbit = true;
1499 
1500 		/*
1501 		 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
1502 		 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
1503 		 *
1504 		 * Note: Even through the membership selector and the basic
1505 		 *	 rate flag share the same bit, they are not exactly
1506 		 *	 the same.
1507 		 */
1508 		if (!!(supp_rates[i] & 0x80) &&
1509 		    (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
1510 			continue;
1511 
1512 		for (j = 0; j < sband->n_bitrates; j++) {
1513 			if (sband->bitrates[j].bitrate == rate) {
1514 				*rates |= BIT(j);
1515 				if (is_basic)
1516 					*basic_rates |= BIT(j);
1517 				if (rate < *min_rate) {
1518 					*min_rate = rate;
1519 					*min_rate_index = j;
1520 				}
1521 				break;
1522 			}
1523 		}
1524 	}
1525 }
1526 
ieee80211_assoc_success(struct ieee80211_work * wk,struct ieee80211_mgmt * mgmt,size_t len)1527 static bool ieee80211_assoc_success(struct ieee80211_work *wk,
1528 				    struct ieee80211_mgmt *mgmt, size_t len)
1529 {
1530 	struct ieee80211_sub_if_data *sdata = wk->sdata;
1531 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1532 	struct ieee80211_local *local = sdata->local;
1533 	struct ieee80211_supported_band *sband;
1534 	struct sta_info *sta;
1535 	struct cfg80211_bss *cbss = wk->assoc.bss;
1536 	u8 *pos;
1537 	u32 rates, basic_rates;
1538 	u16 capab_info, aid;
1539 	struct ieee802_11_elems elems;
1540 	struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
1541 	u32 changed = 0;
1542 	int err;
1543 	bool have_higher_than_11mbit = false;
1544 	u16 ap_ht_cap_flags;
1545 	int min_rate = INT_MAX, min_rate_index = -1;
1546 
1547 	/* AssocResp and ReassocResp have identical structure */
1548 
1549 	aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
1550 	capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1551 
1552 	if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1553 		printk(KERN_DEBUG
1554 		       "%s: invalid AID value 0x%x; bits 15:14 not set\n",
1555 		       sdata->name, aid);
1556 	aid &= ~(BIT(15) | BIT(14));
1557 
1558 	ifmgd->broken_ap = false;
1559 
1560 	if (aid == 0 || aid > IEEE80211_MAX_AID) {
1561 		printk(KERN_DEBUG
1562 		       "%s: invalid AID value %d (out of range), turn off PS\n",
1563 		       sdata->name, aid);
1564 		aid = 0;
1565 		ifmgd->broken_ap = true;
1566 	}
1567 
1568 	pos = mgmt->u.assoc_resp.variable;
1569 	ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1570 
1571 	if (!elems.supp_rates) {
1572 		printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
1573 		       sdata->name);
1574 		return false;
1575 	}
1576 
1577 	ifmgd->aid = aid;
1578 
1579 	mutex_lock(&sdata->local->sta_mtx);
1580 	/*
1581 	 * station info was already allocated and inserted before
1582 	 * the association and should be available to us
1583 	 */
1584 	sta = sta_info_get_rx(sdata, cbss->bssid);
1585 	if (WARN_ON(!sta)) {
1586 		mutex_unlock(&sdata->local->sta_mtx);
1587 		return false;
1588 	}
1589 
1590 	sta_info_move_state(sta, IEEE80211_STA_AUTH);
1591 	sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1592 	if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
1593 		sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
1594 
1595 	rates = 0;
1596 	basic_rates = 0;
1597 	sband = local->hw.wiphy->bands[wk->chan->band];
1598 
1599 	ieee80211_get_rates(sband, elems.supp_rates, elems.supp_rates_len,
1600 			    &rates, &basic_rates, &have_higher_than_11mbit,
1601 			    &min_rate, &min_rate_index);
1602 
1603 	ieee80211_get_rates(sband, elems.ext_supp_rates,
1604 			    elems.ext_supp_rates_len, &rates, &basic_rates,
1605 			    &have_higher_than_11mbit,
1606 			    &min_rate, &min_rate_index);
1607 
1608 	/*
1609 	 * some buggy APs don't advertise basic_rates. use the lowest
1610 	 * supported rate instead.
1611 	 */
1612 	if (unlikely(!basic_rates) && min_rate_index >= 0) {
1613 		printk(KERN_DEBUG "%s: No basic rates in AssocResp. "
1614 		       "Using min supported rate instead.\n", sdata->name);
1615 		basic_rates = BIT(min_rate_index);
1616 	}
1617 
1618 	sta->sta.supp_rates[wk->chan->band] = rates;
1619 	sdata->vif.bss_conf.basic_rates = basic_rates;
1620 
1621 	/* cf. IEEE 802.11 9.2.12 */
1622 	if (wk->chan->band == IEEE80211_BAND_2GHZ &&
1623 	    have_higher_than_11mbit)
1624 		sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1625 	else
1626 		sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
1627 
1628 	if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
1629 		ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
1630 				elems.ht_cap_elem, &sta->sta.ht_cap);
1631 
1632 	ap_ht_cap_flags = sta->sta.ht_cap.cap;
1633 
1634 	rate_control_rate_init(sta);
1635 
1636 	if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
1637 		set_sta_flag(sta, WLAN_STA_MFP);
1638 
1639 	if (elems.wmm_param)
1640 		set_sta_flag(sta, WLAN_STA_WME);
1641 
1642 	/* sta_info_reinsert will also unlock the mutex lock */
1643 	err = sta_info_reinsert(sta);
1644 	sta = NULL;
1645 	if (err) {
1646 		printk(KERN_DEBUG "%s: failed to insert STA entry for"
1647 		       " the AP (error %d)\n", sdata->name, err);
1648 		return false;
1649 	}
1650 
1651 	/*
1652 	 * Always handle WMM once after association regardless
1653 	 * of the first value the AP uses. Setting -1 here has
1654 	 * that effect because the AP values is an unsigned
1655 	 * 4-bit value.
1656 	 */
1657 	ifmgd->wmm_last_param_set = -1;
1658 
1659 	if (elems.wmm_param)
1660 		ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
1661 					 elems.wmm_param_len);
1662 	else
1663 		ieee80211_set_wmm_default(sdata);
1664 
1665 	local->oper_channel = wk->chan;
1666 
1667 	if (elems.ht_info_elem && elems.wmm_param &&
1668 	    (sdata->local->hw.queues >= 4) &&
1669 	    !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
1670 		changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1671 					       cbss->bssid, ap_ht_cap_flags,
1672 					       false);
1673 
1674 	/* set AID and assoc capability,
1675 	 * ieee80211_set_associated() will tell the driver */
1676 	bss_conf->aid = aid;
1677 	bss_conf->assoc_capability = capab_info;
1678 	ieee80211_set_associated(sdata, cbss, changed);
1679 
1680 	/*
1681 	 * If we're using 4-addr mode, let the AP know that we're
1682 	 * doing so, so that it can create the STA VLAN on its side
1683 	 */
1684 	if (ifmgd->use_4addr)
1685 		ieee80211_send_4addr_nullfunc(local, sdata);
1686 
1687 	/*
1688 	 * Start timer to probe the connection to the AP now.
1689 	 * Also start the timer that will detect beacon loss.
1690 	 */
1691 	ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
1692 	ieee80211_sta_reset_beacon_monitor(sdata);
1693 
1694 	return true;
1695 }
1696 
1697 
ieee80211_rx_bss_info(struct ieee80211_sub_if_data * sdata,struct ieee80211_mgmt * mgmt,size_t len,struct ieee80211_rx_status * rx_status,struct ieee802_11_elems * elems,bool beacon)1698 static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
1699 				  struct ieee80211_mgmt *mgmt,
1700 				  size_t len,
1701 				  struct ieee80211_rx_status *rx_status,
1702 				  struct ieee802_11_elems *elems,
1703 				  bool beacon)
1704 {
1705 	struct ieee80211_local *local = sdata->local;
1706 	int freq;
1707 	struct ieee80211_bss *bss;
1708 	struct ieee80211_channel *channel;
1709 	bool need_ps = false;
1710 
1711 	if (sdata->u.mgd.associated) {
1712 		bss = (void *)sdata->u.mgd.associated->priv;
1713 		/* not previously set so we may need to recalc */
1714 		need_ps = !bss->dtim_period;
1715 	}
1716 
1717 	if (elems->ds_params && elems->ds_params_len == 1)
1718 		freq = ieee80211_channel_to_frequency(elems->ds_params[0],
1719 						      rx_status->band);
1720 	else
1721 		freq = rx_status->freq;
1722 
1723 	channel = ieee80211_get_channel(local->hw.wiphy, freq);
1724 
1725 	if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1726 		return;
1727 
1728 	bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
1729 					channel, beacon);
1730 	if (bss)
1731 		ieee80211_rx_bss_put(local, bss);
1732 
1733 	if (!sdata->u.mgd.associated)
1734 		return;
1735 
1736 	if (need_ps) {
1737 		mutex_lock(&local->iflist_mtx);
1738 		ieee80211_recalc_ps(local, -1);
1739 		mutex_unlock(&local->iflist_mtx);
1740 	}
1741 
1742 	if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
1743 	    (memcmp(mgmt->bssid, sdata->u.mgd.associated->bssid,
1744 							ETH_ALEN) == 0)) {
1745 		struct ieee80211_channel_sw_ie *sw_elem =
1746 			(struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
1747 		ieee80211_sta_process_chanswitch(sdata, sw_elem,
1748 						 bss, rx_status->mactime);
1749 	}
1750 }
1751 
1752 
ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data * sdata,struct sk_buff * skb)1753 static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
1754 					 struct sk_buff *skb)
1755 {
1756 	struct ieee80211_mgmt *mgmt = (void *)skb->data;
1757 	struct ieee80211_if_managed *ifmgd;
1758 	struct ieee80211_rx_status *rx_status = (void *) skb->cb;
1759 	size_t baselen, len = skb->len;
1760 	struct ieee802_11_elems elems;
1761 
1762 	ifmgd = &sdata->u.mgd;
1763 
1764 	ASSERT_MGD_MTX(ifmgd);
1765 
1766 	if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN))
1767 		return; /* ignore ProbeResp to foreign address */
1768 
1769 	baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1770 	if (baselen > len)
1771 		return;
1772 
1773 	ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1774 				&elems);
1775 
1776 	ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
1777 
1778 	if (ifmgd->associated &&
1779 	    memcmp(mgmt->bssid, ifmgd->associated->bssid, ETH_ALEN) == 0)
1780 		ieee80211_reset_ap_probe(sdata);
1781 }
1782 
1783 /*
1784  * This is the canonical list of information elements we care about,
1785  * the filter code also gives us all changes to the Microsoft OUI
1786  * (00:50:F2) vendor IE which is used for WMM which we need to track.
1787  *
1788  * We implement beacon filtering in software since that means we can
1789  * avoid processing the frame here and in cfg80211, and userspace
1790  * will not be able to tell whether the hardware supports it or not.
1791  *
1792  * XXX: This list needs to be dynamic -- userspace needs to be able to
1793  *	add items it requires. It also needs to be able to tell us to
1794  *	look out for other vendor IEs.
1795  */
1796 static const u64 care_about_ies =
1797 	(1ULL << WLAN_EID_COUNTRY) |
1798 	(1ULL << WLAN_EID_ERP_INFO) |
1799 	(1ULL << WLAN_EID_CHANNEL_SWITCH) |
1800 	(1ULL << WLAN_EID_PWR_CONSTRAINT) |
1801 	(1ULL << WLAN_EID_HT_CAPABILITY) |
1802 	(1ULL << WLAN_EID_HT_INFORMATION);
1803 
ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data * sdata,struct ieee80211_mgmt * mgmt,size_t len,struct ieee80211_rx_status * rx_status)1804 static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
1805 				     struct ieee80211_mgmt *mgmt,
1806 				     size_t len,
1807 				     struct ieee80211_rx_status *rx_status)
1808 {
1809 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1810 	struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
1811 	size_t baselen;
1812 	struct ieee802_11_elems elems;
1813 	struct ieee80211_local *local = sdata->local;
1814 	u32 changed = 0;
1815 	bool erp_valid, directed_tim = false;
1816 	u8 erp_value = 0;
1817 	u32 ncrc;
1818 	u8 *bssid;
1819 
1820 	ASSERT_MGD_MTX(ifmgd);
1821 
1822 	/* Process beacon from the current BSS */
1823 	baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1824 	if (baselen > len)
1825 		return;
1826 
1827 	if (rx_status->freq != local->hw.conf.channel->center_freq)
1828 		return;
1829 
1830 	/*
1831 	 * We might have received a number of frames, among them a
1832 	 * disassoc frame and a beacon...
1833 	 */
1834 	if (!ifmgd->associated)
1835 		return;
1836 
1837 	bssid = ifmgd->associated->bssid;
1838 
1839 	/*
1840 	 * And in theory even frames from a different AP we were just
1841 	 * associated to a split-second ago!
1842 	 */
1843 	if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0)
1844 		return;
1845 
1846 	/* Track average RSSI from the Beacon frames of the current AP */
1847 	ifmgd->last_beacon_signal = rx_status->signal;
1848 	if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
1849 		ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
1850 		ifmgd->ave_beacon_signal = rx_status->signal * 16;
1851 		ifmgd->last_cqm_event_signal = 0;
1852 		ifmgd->count_beacon_signal = 1;
1853 		ifmgd->last_ave_beacon_signal = 0;
1854 	} else {
1855 		ifmgd->ave_beacon_signal =
1856 			(IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
1857 			 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
1858 			 ifmgd->ave_beacon_signal) / 16;
1859 		ifmgd->count_beacon_signal++;
1860 	}
1861 
1862 	if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
1863 	    ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
1864 		int sig = ifmgd->ave_beacon_signal;
1865 		int last_sig = ifmgd->last_ave_beacon_signal;
1866 
1867 		/*
1868 		 * if signal crosses either of the boundaries, invoke callback
1869 		 * with appropriate parameters
1870 		 */
1871 		if (sig > ifmgd->rssi_max_thold &&
1872 		    (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
1873 			ifmgd->last_ave_beacon_signal = sig;
1874 			drv_rssi_callback(local, RSSI_EVENT_HIGH);
1875 		} else if (sig < ifmgd->rssi_min_thold &&
1876 			   (last_sig >= ifmgd->rssi_max_thold ||
1877 			   last_sig == 0)) {
1878 			ifmgd->last_ave_beacon_signal = sig;
1879 			drv_rssi_callback(local, RSSI_EVENT_LOW);
1880 		}
1881 	}
1882 
1883 	if (bss_conf->cqm_rssi_thold &&
1884 	    ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
1885 	    !(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
1886 		int sig = ifmgd->ave_beacon_signal / 16;
1887 		int last_event = ifmgd->last_cqm_event_signal;
1888 		int thold = bss_conf->cqm_rssi_thold;
1889 		int hyst = bss_conf->cqm_rssi_hyst;
1890 		if (sig < thold &&
1891 		    (last_event == 0 || sig < last_event - hyst)) {
1892 			ifmgd->last_cqm_event_signal = sig;
1893 			ieee80211_cqm_rssi_notify(
1894 				&sdata->vif,
1895 				NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
1896 				GFP_KERNEL);
1897 		} else if (sig > thold &&
1898 			   (last_event == 0 || sig > last_event + hyst)) {
1899 			ifmgd->last_cqm_event_signal = sig;
1900 			ieee80211_cqm_rssi_notify(
1901 				&sdata->vif,
1902 				NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
1903 				GFP_KERNEL);
1904 		}
1905 	}
1906 
1907 	if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
1908 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1909 		if (net_ratelimit()) {
1910 			printk(KERN_DEBUG "%s: cancelling probereq poll due "
1911 			       "to a received beacon\n", sdata->name);
1912 		}
1913 #endif
1914 		ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
1915 		mutex_lock(&local->iflist_mtx);
1916 		ieee80211_recalc_ps(local, -1);
1917 		mutex_unlock(&local->iflist_mtx);
1918 	}
1919 
1920 	/*
1921 	 * Push the beacon loss detection into the future since
1922 	 * we are processing a beacon from the AP just now.
1923 	 */
1924 	ieee80211_sta_reset_beacon_monitor(sdata);
1925 
1926 	ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
1927 	ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
1928 					  len - baselen, &elems,
1929 					  care_about_ies, ncrc);
1930 
1931 	if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1932 		directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
1933 						   ifmgd->aid);
1934 
1935 	if (ncrc != ifmgd->beacon_crc || !ifmgd->beacon_crc_valid) {
1936 		ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
1937 				      true);
1938 
1939 		ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
1940 					 elems.wmm_param_len);
1941 	}
1942 
1943 	if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
1944 		if (directed_tim) {
1945 			if (local->hw.conf.dynamic_ps_timeout > 0) {
1946 				local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1947 				ieee80211_hw_config(local,
1948 						    IEEE80211_CONF_CHANGE_PS);
1949 				ieee80211_send_nullfunc(local, sdata, 0);
1950 			} else {
1951 				local->pspolling = true;
1952 
1953 				/*
1954 				 * Here is assumed that the driver will be
1955 				 * able to send ps-poll frame and receive a
1956 				 * response even though power save mode is
1957 				 * enabled, but some drivers might require
1958 				 * to disable power save here. This needs
1959 				 * to be investigated.
1960 				 */
1961 				ieee80211_send_pspoll(local, sdata);
1962 			}
1963 		}
1964 	}
1965 
1966 	if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
1967 		return;
1968 	ifmgd->beacon_crc = ncrc;
1969 	ifmgd->beacon_crc_valid = true;
1970 
1971 	if (elems.erp_info && elems.erp_info_len >= 1) {
1972 		erp_valid = true;
1973 		erp_value = elems.erp_info[0];
1974 	} else {
1975 		erp_valid = false;
1976 	}
1977 	changed |= ieee80211_handle_bss_capability(sdata,
1978 			le16_to_cpu(mgmt->u.beacon.capab_info),
1979 			erp_valid, erp_value);
1980 
1981 
1982 	if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
1983 	    !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
1984 		struct sta_info *sta;
1985 		struct ieee80211_supported_band *sband;
1986 		u16 ap_ht_cap_flags;
1987 
1988 		rcu_read_lock();
1989 
1990 		sta = sta_info_get(sdata, bssid);
1991 		if (WARN_ON(!sta)) {
1992 			rcu_read_unlock();
1993 			return;
1994 		}
1995 
1996 		sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1997 
1998 		ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
1999 				elems.ht_cap_elem, &sta->sta.ht_cap);
2000 
2001 		ap_ht_cap_flags = sta->sta.ht_cap.cap;
2002 
2003 		rcu_read_unlock();
2004 
2005 		changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
2006 					       bssid, ap_ht_cap_flags, true);
2007 	}
2008 
2009 	/* Note: country IE parsing is done for us by cfg80211 */
2010 	if (elems.country_elem) {
2011 		/* TODO: IBSS also needs this */
2012 		if (elems.pwr_constr_elem)
2013 			ieee80211_handle_pwr_constr(sdata,
2014 				le16_to_cpu(mgmt->u.probe_resp.capab_info),
2015 				elems.pwr_constr_elem,
2016 				elems.pwr_constr_elem_len);
2017 	}
2018 
2019 	ieee80211_bss_info_change_notify(sdata, changed);
2020 }
2021 
ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data * sdata,struct sk_buff * skb)2022 void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
2023 				  struct sk_buff *skb)
2024 {
2025 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2026 	struct ieee80211_rx_status *rx_status;
2027 	struct ieee80211_mgmt *mgmt;
2028 	enum rx_mgmt_action rma = RX_MGMT_NONE;
2029 	u16 fc;
2030 
2031 	rx_status = (struct ieee80211_rx_status *) skb->cb;
2032 	mgmt = (struct ieee80211_mgmt *) skb->data;
2033 	fc = le16_to_cpu(mgmt->frame_control);
2034 
2035 	mutex_lock(&ifmgd->mtx);
2036 
2037 	if (ifmgd->associated &&
2038 	    memcmp(ifmgd->associated->bssid, mgmt->bssid, ETH_ALEN) == 0) {
2039 		switch (fc & IEEE80211_FCTL_STYPE) {
2040 		case IEEE80211_STYPE_BEACON:
2041 			ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
2042 						 rx_status);
2043 			break;
2044 		case IEEE80211_STYPE_PROBE_RESP:
2045 			ieee80211_rx_mgmt_probe_resp(sdata, skb);
2046 			break;
2047 		case IEEE80211_STYPE_DEAUTH:
2048 			rma = ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
2049 			break;
2050 		case IEEE80211_STYPE_DISASSOC:
2051 			rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
2052 			break;
2053 		case IEEE80211_STYPE_ACTION:
2054 			switch (mgmt->u.action.category) {
2055 			case WLAN_CATEGORY_SPECTRUM_MGMT:
2056 				ieee80211_sta_process_chanswitch(sdata,
2057 						&mgmt->u.action.u.chan_switch.sw_elem,
2058 						(void *)ifmgd->associated->priv,
2059 						rx_status->mactime);
2060 				break;
2061 			}
2062 		}
2063 		mutex_unlock(&ifmgd->mtx);
2064 
2065 		switch (rma) {
2066 		case RX_MGMT_NONE:
2067 			/* no action */
2068 			break;
2069 		case RX_MGMT_CFG80211_DEAUTH:
2070 			cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
2071 			break;
2072 		case RX_MGMT_CFG80211_DISASSOC:
2073 			cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
2074 			break;
2075 		default:
2076 			WARN(1, "unexpected: %d", rma);
2077 		}
2078 		return;
2079 	}
2080 
2081 	mutex_unlock(&ifmgd->mtx);
2082 
2083 	if (skb->len >= 24 + 2 /* mgmt + deauth reason */ &&
2084 	    (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_DEAUTH) {
2085 		struct ieee80211_local *local = sdata->local;
2086 		struct ieee80211_work *wk;
2087 
2088 		mutex_lock(&local->mtx);
2089 		list_for_each_entry(wk, &local->work_list, list) {
2090 			if (wk->sdata != sdata)
2091 				continue;
2092 
2093 			if (wk->type != IEEE80211_WORK_ASSOC &&
2094 			    wk->type != IEEE80211_WORK_ASSOC_BEACON_WAIT)
2095 				continue;
2096 
2097 			if (memcmp(mgmt->bssid, wk->filter_ta, ETH_ALEN))
2098 				continue;
2099 			if (memcmp(mgmt->sa, wk->filter_ta, ETH_ALEN))
2100 				continue;
2101 
2102 			/*
2103 			 * Printing the message only here means we can't
2104 			 * spuriously print it, but it also means that it
2105 			 * won't be printed when the frame comes in before
2106 			 * we even tried to associate or in similar cases.
2107 			 *
2108 			 * Ultimately, I suspect cfg80211 should print the
2109 			 * messages instead.
2110 			 */
2111 			printk(KERN_DEBUG
2112 			       "%s: deauthenticated from %pM (Reason: %u)\n",
2113 			       sdata->name, mgmt->bssid,
2114 			       le16_to_cpu(mgmt->u.deauth.reason_code));
2115 
2116 			list_del_rcu(&wk->list);
2117 			free_work(wk);
2118 			break;
2119 		}
2120 		mutex_unlock(&local->mtx);
2121 
2122 		cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
2123 	}
2124 }
2125 
ieee80211_sta_timer(unsigned long data)2126 static void ieee80211_sta_timer(unsigned long data)
2127 {
2128 	struct ieee80211_sub_if_data *sdata =
2129 		(struct ieee80211_sub_if_data *) data;
2130 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2131 	struct ieee80211_local *local = sdata->local;
2132 
2133 	if (local->quiescing) {
2134 		set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2135 		return;
2136 	}
2137 
2138 	ieee80211_queue_work(&local->hw, &sdata->work);
2139 }
2140 
ieee80211_sta_connection_lost(struct ieee80211_sub_if_data * sdata,u8 * bssid,u8 reason)2141 static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
2142 					  u8 *bssid, u8 reason)
2143 {
2144 	struct ieee80211_local *local = sdata->local;
2145 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2146 
2147 	ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
2148 			  IEEE80211_STA_BEACON_POLL);
2149 
2150 	ieee80211_set_disassoc(sdata, true, true);
2151 	mutex_unlock(&ifmgd->mtx);
2152 	/*
2153 	 * must be outside lock due to cfg80211,
2154 	 * but that's not a problem.
2155 	 */
2156 	ieee80211_send_deauth_disassoc(sdata, bssid,
2157 			IEEE80211_STYPE_DEAUTH, reason,
2158 			NULL, true);
2159 
2160 	mutex_lock(&local->mtx);
2161 	ieee80211_recalc_idle(local);
2162 	mutex_unlock(&local->mtx);
2163 
2164 	mutex_lock(&ifmgd->mtx);
2165 }
2166 
ieee80211_sta_work(struct ieee80211_sub_if_data * sdata)2167 void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
2168 {
2169 	struct ieee80211_local *local = sdata->local;
2170 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2171 
2172 	/* then process the rest of the work */
2173 	mutex_lock(&ifmgd->mtx);
2174 
2175 	if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2176 			    IEEE80211_STA_CONNECTION_POLL) &&
2177 	    ifmgd->associated) {
2178 		u8 bssid[ETH_ALEN];
2179 		int max_tries;
2180 
2181 		memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
2182 
2183 		if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2184 			max_tries = max_nullfunc_tries;
2185 		else
2186 			max_tries = max_probe_tries;
2187 
2188 		/* ACK received for nullfunc probing frame */
2189 		if (!ifmgd->probe_send_count)
2190 			ieee80211_reset_ap_probe(sdata);
2191 		else if (ifmgd->nullfunc_failed) {
2192 			if (ifmgd->probe_send_count < max_tries) {
2193 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2194 				wiphy_debug(local->hw.wiphy,
2195 					    "%s: No ack for nullfunc frame to"
2196 					    " AP %pM, try %d/%i\n",
2197 					    sdata->name, bssid,
2198 					    ifmgd->probe_send_count, max_tries);
2199 #endif
2200 				ieee80211_mgd_probe_ap_send(sdata);
2201 			} else {
2202 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2203 				wiphy_debug(local->hw.wiphy,
2204 					    "%s: No ack for nullfunc frame to"
2205 					    " AP %pM, disconnecting.\n",
2206 					    sdata->name, bssid);
2207 #endif
2208 				ieee80211_sta_connection_lost(sdata, bssid,
2209 					WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
2210 			}
2211 		} else if (time_is_after_jiffies(ifmgd->probe_timeout))
2212 			run_again(ifmgd, ifmgd->probe_timeout);
2213 		else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
2214 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2215 			wiphy_debug(local->hw.wiphy,
2216 				    "%s: Failed to send nullfunc to AP %pM"
2217 				    " after %dms, disconnecting.\n",
2218 				    sdata->name,
2219 				    bssid, probe_wait_ms);
2220 #endif
2221 			ieee80211_sta_connection_lost(sdata, bssid,
2222 				WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
2223 		} else if (ifmgd->probe_send_count < max_tries) {
2224 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2225 			wiphy_debug(local->hw.wiphy,
2226 				    "%s: No probe response from AP %pM"
2227 				    " after %dms, try %d/%i\n",
2228 				    sdata->name,
2229 				    bssid, probe_wait_ms,
2230 				    ifmgd->probe_send_count, max_tries);
2231 #endif
2232 			ieee80211_mgd_probe_ap_send(sdata);
2233 		} else {
2234 			/*
2235 			 * We actually lost the connection ... or did we?
2236 			 * Let's make sure!
2237 			 */
2238 			wiphy_debug(local->hw.wiphy,
2239 				    "%s: No probe response from AP %pM"
2240 				    " after %dms, disconnecting.\n",
2241 				    sdata->name,
2242 				    bssid, probe_wait_ms);
2243 
2244 			ieee80211_sta_connection_lost(sdata, bssid,
2245 				WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
2246 		}
2247 	}
2248 
2249 	mutex_unlock(&ifmgd->mtx);
2250 }
2251 
ieee80211_sta_bcn_mon_timer(unsigned long data)2252 static void ieee80211_sta_bcn_mon_timer(unsigned long data)
2253 {
2254 	struct ieee80211_sub_if_data *sdata =
2255 		(struct ieee80211_sub_if_data *) data;
2256 	struct ieee80211_local *local = sdata->local;
2257 
2258 	if (local->quiescing)
2259 		return;
2260 
2261 	ieee80211_queue_work(&sdata->local->hw,
2262 			     &sdata->u.mgd.beacon_connection_loss_work);
2263 }
2264 
ieee80211_sta_conn_mon_timer(unsigned long data)2265 static void ieee80211_sta_conn_mon_timer(unsigned long data)
2266 {
2267 	struct ieee80211_sub_if_data *sdata =
2268 		(struct ieee80211_sub_if_data *) data;
2269 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2270 	struct ieee80211_local *local = sdata->local;
2271 
2272 	if (local->quiescing)
2273 		return;
2274 
2275 	ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
2276 }
2277 
ieee80211_sta_monitor_work(struct work_struct * work)2278 static void ieee80211_sta_monitor_work(struct work_struct *work)
2279 {
2280 	struct ieee80211_sub_if_data *sdata =
2281 		container_of(work, struct ieee80211_sub_if_data,
2282 			     u.mgd.monitor_work);
2283 
2284 	ieee80211_mgd_probe_ap(sdata, false);
2285 }
2286 
ieee80211_restart_sta_timer(struct ieee80211_sub_if_data * sdata)2287 static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2288 {
2289 	if (sdata->vif.type == NL80211_IFTYPE_STATION) {
2290 		sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
2291 					IEEE80211_STA_CONNECTION_POLL);
2292 
2293 		/* let's probe the connection once */
2294 		ieee80211_queue_work(&sdata->local->hw,
2295 			   &sdata->u.mgd.monitor_work);
2296 		/* and do all the other regular work too */
2297 		ieee80211_queue_work(&sdata->local->hw, &sdata->work);
2298 	}
2299 }
2300 
2301 #ifdef CONFIG_PM
ieee80211_sta_quiesce(struct ieee80211_sub_if_data * sdata)2302 void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
2303 {
2304 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2305 
2306 	/*
2307 	 * we need to use atomic bitops for the running bits
2308 	 * only because both timers might fire at the same
2309 	 * time -- the code here is properly synchronised.
2310 	 */
2311 
2312 	cancel_work_sync(&ifmgd->request_smps_work);
2313 
2314 	cancel_work_sync(&ifmgd->monitor_work);
2315 	cancel_work_sync(&ifmgd->beacon_connection_loss_work);
2316 	if (del_timer_sync(&ifmgd->timer))
2317 		set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2318 
2319 	cancel_work_sync(&ifmgd->chswitch_work);
2320 	if (del_timer_sync(&ifmgd->chswitch_timer))
2321 		set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
2322 
2323 	/* these will just be re-established on connection */
2324 	del_timer_sync(&ifmgd->conn_mon_timer);
2325 	del_timer_sync(&ifmgd->bcn_mon_timer);
2326 }
2327 
ieee80211_sta_restart(struct ieee80211_sub_if_data * sdata)2328 void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
2329 {
2330 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2331 
2332 	if (!ifmgd->associated)
2333 		return;
2334 
2335 	if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
2336 		sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
2337 		mutex_lock(&ifmgd->mtx);
2338 		if (ifmgd->associated) {
2339 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2340 			wiphy_debug(sdata->local->hw.wiphy,
2341 				    "%s: driver requested disconnect after resume.\n",
2342 				    sdata->name);
2343 #endif
2344 			ieee80211_sta_connection_lost(sdata,
2345 				ifmgd->associated->bssid,
2346 				WLAN_REASON_UNSPECIFIED);
2347 			mutex_unlock(&ifmgd->mtx);
2348 			return;
2349 		}
2350 		mutex_unlock(&ifmgd->mtx);
2351 	}
2352 
2353 	if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
2354 		add_timer(&ifmgd->timer);
2355 	if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
2356 		add_timer(&ifmgd->chswitch_timer);
2357 	ieee80211_sta_reset_beacon_monitor(sdata);
2358 	ieee80211_restart_sta_timer(sdata);
2359 	ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.monitor_work);
2360 }
2361 #endif
2362 
2363 /* interface setup */
ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data * sdata)2364 void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2365 {
2366 	struct ieee80211_if_managed *ifmgd;
2367 
2368 	ifmgd = &sdata->u.mgd;
2369 	INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
2370 	INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
2371 	INIT_WORK(&ifmgd->beacon_connection_loss_work,
2372 		  ieee80211_beacon_connection_loss_work);
2373 	INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
2374 	setup_timer(&ifmgd->timer, ieee80211_sta_timer,
2375 		    (unsigned long) sdata);
2376 	setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
2377 		    (unsigned long) sdata);
2378 	setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
2379 		    (unsigned long) sdata);
2380 	setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
2381 		    (unsigned long) sdata);
2382 
2383 	ifmgd->flags = 0;
2384 	ifmgd->powersave = sdata->wdev.ps;
2385 
2386 	mutex_init(&ifmgd->mtx);
2387 
2388 	if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
2389 		ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
2390 	else
2391 		ifmgd->req_smps = IEEE80211_SMPS_OFF;
2392 }
2393 
2394 /* scan finished notification */
ieee80211_mlme_notify_scan_completed(struct ieee80211_local * local)2395 void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2396 {
2397 	struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2398 
2399 	/* Restart STA timers */
2400 	rcu_read_lock();
2401 	list_for_each_entry_rcu(sdata, &local->interfaces, list)
2402 		ieee80211_restart_sta_timer(sdata);
2403 	rcu_read_unlock();
2404 }
2405 
ieee80211_max_network_latency(struct notifier_block * nb,unsigned long data,void * dummy)2406 int ieee80211_max_network_latency(struct notifier_block *nb,
2407 				  unsigned long data, void *dummy)
2408 {
2409 	s32 latency_usec = (s32) data;
2410 	struct ieee80211_local *local =
2411 		container_of(nb, struct ieee80211_local,
2412 			     network_latency_notifier);
2413 
2414 	mutex_lock(&local->iflist_mtx);
2415 	ieee80211_recalc_ps(local, latency_usec);
2416 	mutex_unlock(&local->iflist_mtx);
2417 
2418 	return 0;
2419 }
2420 
2421 /* config hooks */
2422 static enum work_done_result
ieee80211_probe_auth_done(struct ieee80211_work * wk,struct sk_buff * skb)2423 ieee80211_probe_auth_done(struct ieee80211_work *wk,
2424 			  struct sk_buff *skb)
2425 {
2426 	struct ieee80211_local *local = wk->sdata->local;
2427 
2428 	if (!skb) {
2429 		cfg80211_send_auth_timeout(wk->sdata->dev, wk->filter_ta);
2430 		goto destroy;
2431 	}
2432 
2433 	if (wk->type == IEEE80211_WORK_AUTH) {
2434 		cfg80211_send_rx_auth(wk->sdata->dev, skb->data, skb->len);
2435 		goto destroy;
2436 	}
2437 
2438 	mutex_lock(&wk->sdata->u.mgd.mtx);
2439 	ieee80211_rx_mgmt_probe_resp(wk->sdata, skb);
2440 	mutex_unlock(&wk->sdata->u.mgd.mtx);
2441 
2442 	wk->type = IEEE80211_WORK_AUTH;
2443 	wk->probe_auth.tries = 0;
2444 	return WORK_DONE_REQUEUE;
2445  destroy:
2446 	if (wk->probe_auth.synced)
2447 		drv_finish_tx_sync(local, wk->sdata, wk->filter_ta,
2448 				   IEEE80211_TX_SYNC_AUTH);
2449 
2450 	return WORK_DONE_DESTROY;
2451 }
2452 
ieee80211_mgd_auth(struct ieee80211_sub_if_data * sdata,struct cfg80211_auth_request * req)2453 int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
2454 		       struct cfg80211_auth_request *req)
2455 {
2456 	const u8 *ssid;
2457 	struct ieee80211_work *wk;
2458 	u16 auth_alg;
2459 
2460 	if (req->local_state_change)
2461 		return 0; /* no need to update mac80211 state */
2462 
2463 	switch (req->auth_type) {
2464 	case NL80211_AUTHTYPE_OPEN_SYSTEM:
2465 		auth_alg = WLAN_AUTH_OPEN;
2466 		break;
2467 	case NL80211_AUTHTYPE_SHARED_KEY:
2468 		if (IS_ERR(sdata->local->wep_tx_tfm))
2469 			return -EOPNOTSUPP;
2470 		auth_alg = WLAN_AUTH_SHARED_KEY;
2471 		break;
2472 	case NL80211_AUTHTYPE_FT:
2473 		auth_alg = WLAN_AUTH_FT;
2474 		break;
2475 	case NL80211_AUTHTYPE_NETWORK_EAP:
2476 		auth_alg = WLAN_AUTH_LEAP;
2477 		break;
2478 	default:
2479 		return -EOPNOTSUPP;
2480 	}
2481 
2482 	wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
2483 	if (!wk)
2484 		return -ENOMEM;
2485 
2486 	memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN);
2487 
2488 	if (req->ie && req->ie_len) {
2489 		memcpy(wk->ie, req->ie, req->ie_len);
2490 		wk->ie_len = req->ie_len;
2491 	}
2492 
2493 	if (req->key && req->key_len) {
2494 		wk->probe_auth.key_len = req->key_len;
2495 		wk->probe_auth.key_idx = req->key_idx;
2496 		memcpy(wk->probe_auth.key, req->key, req->key_len);
2497 	}
2498 
2499 	ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
2500 	memcpy(wk->probe_auth.ssid, ssid + 2, ssid[1]);
2501 	wk->probe_auth.ssid_len = ssid[1];
2502 
2503 	wk->probe_auth.algorithm = auth_alg;
2504 	wk->probe_auth.privacy = req->bss->capability & WLAN_CAPABILITY_PRIVACY;
2505 
2506 	/* if we already have a probe, don't probe again */
2507 	if (req->bss->proberesp_ies)
2508 		wk->type = IEEE80211_WORK_AUTH;
2509 	else
2510 		wk->type = IEEE80211_WORK_DIRECT_PROBE;
2511 	wk->chan = req->bss->channel;
2512 	wk->chan_type = NL80211_CHAN_NO_HT;
2513 	wk->sdata = sdata;
2514 	wk->done = ieee80211_probe_auth_done;
2515 
2516 	ieee80211_add_work(wk);
2517 	return 0;
2518 }
2519 
2520 /* create and insert a dummy station entry */
ieee80211_pre_assoc(struct ieee80211_sub_if_data * sdata,u8 * bssid)2521 static int ieee80211_pre_assoc(struct ieee80211_sub_if_data *sdata,
2522 				u8 *bssid) {
2523 	struct sta_info *sta;
2524 	int err;
2525 
2526 	sta = sta_info_alloc(sdata, bssid, GFP_KERNEL);
2527 	if (!sta)
2528 		return -ENOMEM;
2529 
2530 	sta->dummy = true;
2531 
2532 	err = sta_info_insert(sta);
2533 	sta = NULL;
2534 	if (err) {
2535 		printk(KERN_DEBUG "%s: failed to insert Dummy STA entry for"
2536 		       " the AP (error %d)\n", sdata->name, err);
2537 		return err;
2538 	}
2539 
2540 	return 0;
2541 }
2542 
ieee80211_assoc_done(struct ieee80211_work * wk,struct sk_buff * skb)2543 static enum work_done_result ieee80211_assoc_done(struct ieee80211_work *wk,
2544 						  struct sk_buff *skb)
2545 {
2546 	struct ieee80211_local *local = wk->sdata->local;
2547 	struct ieee80211_mgmt *mgmt;
2548 	struct ieee80211_rx_status *rx_status;
2549 	struct ieee802_11_elems elems;
2550 	struct cfg80211_bss *cbss = wk->assoc.bss;
2551 	u16 status;
2552 
2553 	if (!skb) {
2554 		sta_info_destroy_addr(wk->sdata, cbss->bssid);
2555 		cfg80211_send_assoc_timeout(wk->sdata->dev, wk->filter_ta);
2556 		goto destroy;
2557 	}
2558 
2559 	if (wk->type == IEEE80211_WORK_ASSOC_BEACON_WAIT) {
2560 		mutex_lock(&wk->sdata->u.mgd.mtx);
2561 		rx_status = (void *) skb->cb;
2562 		ieee802_11_parse_elems(skb->data + 24 + 12, skb->len - 24 - 12, &elems);
2563 		ieee80211_rx_bss_info(wk->sdata, (void *)skb->data, skb->len, rx_status,
2564 				      &elems, true);
2565 		mutex_unlock(&wk->sdata->u.mgd.mtx);
2566 
2567 		wk->type = IEEE80211_WORK_ASSOC;
2568 		/* not really done yet */
2569 		return WORK_DONE_REQUEUE;
2570 	}
2571 
2572 	mgmt = (void *)skb->data;
2573 	status = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2574 
2575 	if (status == WLAN_STATUS_SUCCESS) {
2576 		if (wk->assoc.synced)
2577 			drv_finish_tx_sync(local, wk->sdata, wk->filter_ta,
2578 					   IEEE80211_TX_SYNC_ASSOC);
2579 
2580 		mutex_lock(&wk->sdata->u.mgd.mtx);
2581 		if (!ieee80211_assoc_success(wk, mgmt, skb->len)) {
2582 			mutex_unlock(&wk->sdata->u.mgd.mtx);
2583 			/* oops -- internal error -- send timeout for now */
2584 			sta_info_destroy_addr(wk->sdata, cbss->bssid);
2585 			cfg80211_send_assoc_timeout(wk->sdata->dev,
2586 						    wk->filter_ta);
2587 			return WORK_DONE_DESTROY;
2588 		}
2589 
2590 		mutex_unlock(&wk->sdata->u.mgd.mtx);
2591 	} else {
2592 		/* assoc failed - destroy the dummy station entry */
2593 		sta_info_destroy_addr(wk->sdata, cbss->bssid);
2594 	}
2595 
2596 	cfg80211_send_rx_assoc(wk->sdata->dev, skb->data, skb->len);
2597  destroy:
2598 	if (wk->assoc.synced)
2599 		drv_finish_tx_sync(local, wk->sdata, wk->filter_ta,
2600 				   IEEE80211_TX_SYNC_ASSOC);
2601 
2602 	return WORK_DONE_DESTROY;
2603 }
2604 
ieee80211_mgd_assoc(struct ieee80211_sub_if_data * sdata,struct cfg80211_assoc_request * req)2605 int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
2606 			struct cfg80211_assoc_request *req)
2607 {
2608 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2609 	struct ieee80211_bss *bss = (void *)req->bss->priv;
2610 	struct ieee80211_work *wk;
2611 	const u8 *ssid;
2612 	int i, err;
2613 
2614 	mutex_lock(&ifmgd->mtx);
2615 	if (ifmgd->associated) {
2616 		if (!req->prev_bssid ||
2617 		    memcmp(req->prev_bssid, ifmgd->associated->bssid,
2618 			   ETH_ALEN)) {
2619 			/*
2620 			 * We are already associated and the request was not a
2621 			 * reassociation request from the current BSS, so
2622 			 * reject it.
2623 			 */
2624 			mutex_unlock(&ifmgd->mtx);
2625 			return -EALREADY;
2626 		}
2627 
2628 		/* Trying to reassociate - clear previous association state */
2629 		ieee80211_set_disassoc(sdata, true, false);
2630 	}
2631 	mutex_unlock(&ifmgd->mtx);
2632 
2633 	wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
2634 	if (!wk)
2635 		return -ENOMEM;
2636 
2637 	/*
2638 	 * create a dummy station info entry in order
2639 	 * to start accepting incoming EAPOL packets from the station
2640 	 */
2641 	err = ieee80211_pre_assoc(sdata, req->bss->bssid);
2642 	if (err) {
2643 		kfree(wk);
2644 		return err;
2645 	}
2646 
2647 	ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
2648 	ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
2649 
2650 	ifmgd->beacon_crc_valid = false;
2651 
2652 	for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
2653 		if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
2654 		    req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
2655 		    req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
2656 			ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
2657 
2658 
2659 	if (req->flags & ASSOC_REQ_DISABLE_HT)
2660 		ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
2661 
2662 	memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
2663 	memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
2664 	       sizeof(ifmgd->ht_capa_mask));
2665 
2666 	if (req->ie && req->ie_len) {
2667 		memcpy(wk->ie, req->ie, req->ie_len);
2668 		wk->ie_len = req->ie_len;
2669 	} else
2670 		wk->ie_len = 0;
2671 
2672 	wk->assoc.bss = req->bss;
2673 
2674 	memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN);
2675 
2676 	/* new association always uses requested smps mode */
2677 	if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
2678 		if (ifmgd->powersave)
2679 			ifmgd->ap_smps = IEEE80211_SMPS_DYNAMIC;
2680 		else
2681 			ifmgd->ap_smps = IEEE80211_SMPS_OFF;
2682 	} else
2683 		ifmgd->ap_smps = ifmgd->req_smps;
2684 
2685 	wk->assoc.smps = ifmgd->ap_smps;
2686 	/*
2687 	 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
2688 	 * We still associate in non-HT mode (11a/b/g) if any one of these
2689 	 * ciphers is configured as pairwise.
2690 	 * We can set this to true for non-11n hardware, that'll be checked
2691 	 * separately along with the peer capabilities.
2692 	 */
2693 	wk->assoc.use_11n = !(ifmgd->flags & IEEE80211_STA_DISABLE_11N);
2694 	wk->assoc.capability = req->bss->capability;
2695 	wk->assoc.wmm_used = bss->wmm_used;
2696 	wk->assoc.supp_rates = bss->supp_rates;
2697 	wk->assoc.supp_rates_len = bss->supp_rates_len;
2698 	wk->assoc.ht_information_ie =
2699 		ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_INFORMATION);
2700 
2701 	if (bss->wmm_used && bss->uapsd_supported &&
2702 	    (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) {
2703 		wk->assoc.uapsd_used = true;
2704 		ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
2705 	} else {
2706 		wk->assoc.uapsd_used = false;
2707 		ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
2708 	}
2709 
2710 	ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
2711 	memcpy(wk->assoc.ssid, ssid + 2, ssid[1]);
2712 	wk->assoc.ssid_len = ssid[1];
2713 
2714 	if (req->prev_bssid)
2715 		memcpy(wk->assoc.prev_bssid, req->prev_bssid, ETH_ALEN);
2716 
2717 	wk->chan = req->bss->channel;
2718 	wk->chan_type = NL80211_CHAN_NO_HT;
2719 	wk->sdata = sdata;
2720 	wk->done = ieee80211_assoc_done;
2721 	if (!bss->dtim_period &&
2722 	    sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD)
2723 		wk->type = IEEE80211_WORK_ASSOC_BEACON_WAIT;
2724 	else
2725 		wk->type = IEEE80211_WORK_ASSOC;
2726 
2727 	if (req->use_mfp) {
2728 		ifmgd->mfp = IEEE80211_MFP_REQUIRED;
2729 		ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
2730 	} else {
2731 		ifmgd->mfp = IEEE80211_MFP_DISABLED;
2732 		ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
2733 	}
2734 
2735 	if (req->crypto.control_port)
2736 		ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
2737 	else
2738 		ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
2739 
2740 	sdata->control_port_protocol = req->crypto.control_port_ethertype;
2741 	sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
2742 
2743 	ieee80211_add_work(wk);
2744 	return 0;
2745 }
2746 
ieee80211_mgd_deauth(struct ieee80211_sub_if_data * sdata,struct cfg80211_deauth_request * req,void * cookie)2747 int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
2748 			 struct cfg80211_deauth_request *req,
2749 			 void *cookie)
2750 {
2751 	struct ieee80211_local *local = sdata->local;
2752 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2753 	u8 bssid[ETH_ALEN];
2754 	bool assoc_bss = false;
2755 
2756 	mutex_lock(&ifmgd->mtx);
2757 
2758 	memcpy(bssid, req->bss->bssid, ETH_ALEN);
2759 	if (ifmgd->associated == req->bss) {
2760 		ieee80211_set_disassoc(sdata, false, true);
2761 		mutex_unlock(&ifmgd->mtx);
2762 		assoc_bss = true;
2763 	} else {
2764 		bool not_auth_yet = false;
2765 		struct ieee80211_work *tmp, *wk = NULL;
2766 
2767 		mutex_unlock(&ifmgd->mtx);
2768 
2769 		mutex_lock(&local->mtx);
2770 		list_for_each_entry(tmp, &local->work_list, list) {
2771 			if (tmp->sdata != sdata)
2772 				continue;
2773 
2774 			if (tmp->type != IEEE80211_WORK_DIRECT_PROBE &&
2775 			    tmp->type != IEEE80211_WORK_AUTH &&
2776 			    tmp->type != IEEE80211_WORK_ASSOC &&
2777 			    tmp->type != IEEE80211_WORK_ASSOC_BEACON_WAIT)
2778 				continue;
2779 
2780 			if (memcmp(req->bss->bssid, tmp->filter_ta, ETH_ALEN))
2781 				continue;
2782 
2783 			not_auth_yet = tmp->type == IEEE80211_WORK_DIRECT_PROBE;
2784 			list_del_rcu(&tmp->list);
2785 			synchronize_rcu();
2786 			wk = tmp;
2787 			break;
2788 		}
2789 		mutex_unlock(&local->mtx);
2790 
2791 		if (wk && wk->type == IEEE80211_WORK_ASSOC) {
2792 			/* clean up dummy sta & TX sync */
2793 			sta_info_destroy_addr(wk->sdata, wk->filter_ta);
2794 			if (wk->assoc.synced)
2795 				drv_finish_tx_sync(local, wk->sdata,
2796 						   wk->filter_ta,
2797 						   IEEE80211_TX_SYNC_ASSOC);
2798 		} else if (wk && wk->type == IEEE80211_WORK_AUTH) {
2799 			if (wk->probe_auth.synced)
2800 				drv_finish_tx_sync(local, wk->sdata,
2801 						   wk->filter_ta,
2802 						   IEEE80211_TX_SYNC_AUTH);
2803 		}
2804 		kfree(wk);
2805 
2806 		/*
2807 		 * If somebody requests authentication and we haven't
2808 		 * sent out an auth frame yet there's no need to send
2809 		 * out a deauth frame either. If the state was PROBE,
2810 		 * then this is the case. If it's AUTH we have sent a
2811 		 * frame, and if it's IDLE we have completed the auth
2812 		 * process already.
2813 		 */
2814 		if (not_auth_yet) {
2815 			__cfg80211_auth_canceled(sdata->dev, bssid);
2816 			return 0;
2817 		}
2818 	}
2819 
2820 	printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n",
2821 	       sdata->name, bssid, req->reason_code);
2822 
2823 	ieee80211_send_deauth_disassoc(sdata, bssid, IEEE80211_STYPE_DEAUTH,
2824 				       req->reason_code, cookie,
2825 				       !req->local_state_change);
2826 	if (assoc_bss)
2827 		sta_info_flush(sdata->local, sdata);
2828 
2829 	mutex_lock(&sdata->local->mtx);
2830 	ieee80211_recalc_idle(sdata->local);
2831 	mutex_unlock(&sdata->local->mtx);
2832 
2833 	return 0;
2834 }
2835 
ieee80211_mgd_disassoc(struct ieee80211_sub_if_data * sdata,struct cfg80211_disassoc_request * req,void * cookie)2836 int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
2837 			   struct cfg80211_disassoc_request *req,
2838 			   void *cookie)
2839 {
2840 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2841 	u8 bssid[ETH_ALEN];
2842 
2843 	mutex_lock(&ifmgd->mtx);
2844 
2845 	/*
2846 	 * cfg80211 should catch this ... but it's racy since
2847 	 * we can receive a disassoc frame, process it, hand it
2848 	 * to cfg80211 while that's in a locked section already
2849 	 * trying to tell us that the user wants to disconnect.
2850 	 */
2851 	if (ifmgd->associated != req->bss) {
2852 		mutex_unlock(&ifmgd->mtx);
2853 		return -ENOLINK;
2854 	}
2855 
2856 	printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n",
2857 	       sdata->name, req->bss->bssid, req->reason_code);
2858 
2859 	memcpy(bssid, req->bss->bssid, ETH_ALEN);
2860 	ieee80211_set_disassoc(sdata, false, true);
2861 
2862 	mutex_unlock(&ifmgd->mtx);
2863 
2864 	ieee80211_send_deauth_disassoc(sdata, req->bss->bssid,
2865 			IEEE80211_STYPE_DISASSOC, req->reason_code,
2866 			cookie, !req->local_state_change);
2867 	sta_info_flush(sdata->local, sdata);
2868 
2869 	mutex_lock(&sdata->local->mtx);
2870 	ieee80211_recalc_idle(sdata->local);
2871 	mutex_unlock(&sdata->local->mtx);
2872 
2873 	return 0;
2874 }
2875 
ieee80211_cqm_rssi_notify(struct ieee80211_vif * vif,enum nl80211_cqm_rssi_threshold_event rssi_event,gfp_t gfp)2876 void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
2877 			       enum nl80211_cqm_rssi_threshold_event rssi_event,
2878 			       gfp_t gfp)
2879 {
2880 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2881 
2882 	trace_api_cqm_rssi_notify(sdata, rssi_event);
2883 
2884 	cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
2885 }
2886 EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);
2887 
ieee80211_get_operstate(struct ieee80211_vif * vif)2888 unsigned char ieee80211_get_operstate(struct ieee80211_vif *vif)
2889 {
2890 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2891 	return sdata->dev->operstate;
2892 }
2893 EXPORT_SYMBOL(ieee80211_get_operstate);
2894