Merge branch 'upstream' of git://git.infradead.org/users/pcmoore/audit
[deliverable/linux.git] / drivers / staging / rtl8192e / rtllib_softmac.c
CommitLineData
94a79942 1/* IEEE 802.11 SoftMAC layer
559a4c31 2 * Copyright (c) 2005 Andrea Merello <andrea.merello@gmail.com>
94a79942
LF
3 *
4 * Mostly extracted from the rtl8180-sa2400 driver for the
5 * in-kernel generic ieee802.11 stack.
6 *
7 * Few lines might be stolen from other part of the rtllib
8 * stack. Copyright who own it's copyright
9 *
10 * WPA code stolen from the ipw2200 driver.
11 * Copyright who own it's copyright.
12 *
13 * released under the GPL
14 */
15
16
17#include "rtllib.h"
94a79942
LF
18
19#include <linux/random.h>
20#include <linux/delay.h>
9d92ece8 21#include <linux/uaccess.h>
0c43e56c 22#include <linux/etherdevice.h>
acd442db 23#include <linux/ieee80211.h>
94a79942 24#include "dot11d.h"
94a79942 25
6957248f
MK
26static void rtllib_sta_wakeup(struct rtllib_device *ieee, short nl);
27
28
29static short rtllib_is_54g(struct rtllib_network *net)
94a79942 30{
9d92ece8 31 return (net->rates_ex_len > 0) || (net->rates_len > 4);
94a79942
LF
32}
33
cd017123 34/* returns the total length needed for placing the RATE MFIE
94a79942
LF
35 * tag and the EXTENDED RATE MFIE tag if needed.
36 * It encludes two bytes per tag for the tag itself and its len
37 */
ec0dc6be 38static unsigned int rtllib_MFIE_rate_len(struct rtllib_device *ieee)
94a79942
LF
39{
40 unsigned int rate_len = 0;
41
42 if (ieee->modulation & RTLLIB_CCK_MODULATION)
43 rate_len = RTLLIB_CCK_RATE_LEN + 2;
44
45 if (ieee->modulation & RTLLIB_OFDM_MODULATION)
46
47 rate_len += RTLLIB_OFDM_RATE_LEN + 2;
48
49 return rate_len;
50}
51
cd017123 52/* place the MFIE rate, tag to the memory (double) pointed.
94a79942
LF
53 * Then it updates the pointer so that
54 * it points after the new MFIE tag added.
55 */
ec0dc6be 56static void rtllib_MFIE_Brate(struct rtllib_device *ieee, u8 **tag_p)
94a79942
LF
57{
58 u8 *tag = *tag_p;
59
9d92ece8 60 if (ieee->modulation & RTLLIB_CCK_MODULATION) {
94a79942
LF
61 *tag++ = MFIE_TYPE_RATES;
62 *tag++ = 4;
63 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_1MB;
64 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_2MB;
65 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_5MB;
66 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_11MB;
67 }
68
9d92ece8 69 /* We may add an option for custom rates that specific HW
14b40d92
MK
70 * might support
71 */
94a79942
LF
72 *tag_p = tag;
73}
74
ec0dc6be 75static void rtllib_MFIE_Grate(struct rtllib_device *ieee, u8 **tag_p)
94a79942
LF
76{
77 u8 *tag = *tag_p;
78
9d92ece8 79 if (ieee->modulation & RTLLIB_OFDM_MODULATION) {
94a79942
LF
80 *tag++ = MFIE_TYPE_RATES_EX;
81 *tag++ = 8;
82 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_6MB;
83 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_9MB;
84 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_12MB;
85 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_18MB;
86 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_24MB;
87 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_36MB;
88 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_48MB;
89 *tag++ = RTLLIB_BASIC_RATE_MASK | RTLLIB_OFDM_RATE_54MB;
94a79942 90 }
9d92ece8 91 /* We may add an option for custom rates that specific HW might
14b40d92
MK
92 * support
93 */
94a79942
LF
94 *tag_p = tag;
95}
96
ec0dc6be 97static void rtllib_WMM_Info(struct rtllib_device *ieee, u8 **tag_p)
9d92ece8 98{
94a79942
LF
99 u8 *tag = *tag_p;
100
101 *tag++ = MFIE_TYPE_GENERIC;
102 *tag++ = 7;
103 *tag++ = 0x00;
104 *tag++ = 0x50;
105 *tag++ = 0xf2;
106 *tag++ = 0x02;
107 *tag++ = 0x00;
108 *tag++ = 0x01;
94a79942 109 *tag++ = MAX_SP_Len;
94a79942
LF
110 *tag_p = tag;
111}
112
6957248f 113static void rtllib_TURBO_Info(struct rtllib_device *ieee, u8 **tag_p)
9d92ece8 114{
94a79942
LF
115 u8 *tag = *tag_p;
116
9d92ece8
LF
117 *tag++ = MFIE_TYPE_GENERIC;
118 *tag++ = 7;
119 *tag++ = 0x00;
120 *tag++ = 0xe0;
121 *tag++ = 0x4c;
122 *tag++ = 0x01;
123 *tag++ = 0x02;
124 *tag++ = 0x11;
94a79942
LF
125 *tag++ = 0x00;
126
127 *tag_p = tag;
d69d2054 128 netdev_alert(ieee->dev, "This is enable turbo mode IE process\n");
94a79942
LF
129}
130
ec0dc6be 131static void enqueue_mgmt(struct rtllib_device *ieee, struct sk_buff *skb)
94a79942
LF
132{
133 int nh;
3a6b70c3 134
9d92ece8 135 nh = (ieee->mgmt_queue_head + 1) % MGMT_QUEUE_NUM;
94a79942 136
14b40d92 137/* if the queue is full but we have newer frames then
94a79942
LF
138 * just overwrites the oldest.
139 *
140 * if (nh == ieee->mgmt_queue_tail)
141 * return -1;
142 */
143 ieee->mgmt_queue_head = nh;
144 ieee->mgmt_queue_ring[nh] = skb;
145
146}
147
ec0dc6be 148static void init_mgmt_queue(struct rtllib_device *ieee)
94a79942
LF
149{
150 ieee->mgmt_queue_tail = ieee->mgmt_queue_head = 0;
151}
152
153
154u8
155MgntQuery_TxRateExcludeCCKRates(struct rtllib_device *ieee)
156{
157 u16 i;
158 u8 QueryRate = 0;
159 u8 BasicRate;
160
161
9d92ece8 162 for (i = 0; i < ieee->current_network.rates_len; i++) {
94a79942 163 BasicRate = ieee->current_network.rates[i]&0x7F;
9d92ece8
LF
164 if (!rtllib_is_cck_rate(BasicRate)) {
165 if (QueryRate == 0) {
94a79942 166 QueryRate = BasicRate;
9d92ece8 167 } else {
94a79942 168 if (BasicRate < QueryRate)
94a79942 169 QueryRate = BasicRate;
94a79942
LF
170 }
171 }
172 }
173
9d92ece8 174 if (QueryRate == 0) {
94a79942 175 QueryRate = 12;
d69d2054 176 netdev_info(ieee->dev, "No BasicRate found!!\n");
94a79942
LF
177 }
178 return QueryRate;
179}
180
d82f0029 181static u8 MgntQuery_MgntFrameTxRate(struct rtllib_device *ieee)
94a79942 182{
7796d93e 183 struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
94a79942
LF
184 u8 rate;
185
186 if (pHTInfo->IOTAction & HT_IOT_ACT_MGNT_USE_CCK_6M)
187 rate = 0x0c;
188 else
189 rate = ieee->basic_rate & 0x7f;
190
9d92ece8
LF
191 if (rate == 0) {
192 if (ieee->mode == IEEE_A ||
193 ieee->mode == IEEE_N_5G ||
194 (ieee->mode == IEEE_N_24G && !pHTInfo->bCurSuppCCK))
94a79942
LF
195 rate = 0x0c;
196 else
197 rate = 0x02;
198 }
199
200 return rate;
201}
202
94a79942
LF
203inline void softmac_mgmt_xmit(struct sk_buff *skb, struct rtllib_device *ieee)
204{
205 unsigned long flags;
206 short single = ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE;
9d92ece8 207 struct rtllib_hdr_3addr *header =
94a79942
LF
208 (struct rtllib_hdr_3addr *) skb->data;
209
3b83db43 210 struct cb_desc *tcb_desc = (struct cb_desc *)(skb->cb + 8);
3a6b70c3 211
94a79942
LF
212 spin_lock_irqsave(&ieee->lock, flags);
213
214 /* called with 2nd param 0, no mgmt lock required */
9d92ece8 215 rtllib_sta_wakeup(ieee, 0);
94a79942 216
f7df1918 217 if (le16_to_cpu(header->frame_ctl) == RTLLIB_STYPE_BEACON)
94a79942
LF
218 tcb_desc->queue_index = BEACON_QUEUE;
219 else
220 tcb_desc->queue_index = MGNT_QUEUE;
221
222 if (ieee->disable_mgnt_queue)
223 tcb_desc->queue_index = HIGH_QUEUE;
224
225 tcb_desc->data_rate = MgntQuery_MgntFrameTxRate(ieee);
226 tcb_desc->RATRIndex = 7;
227 tcb_desc->bTxDisableRateFallBack = 1;
228 tcb_desc->bTxUseDriverAssingedRate = 1;
229 if (single) {
9d92ece8
LF
230 if (ieee->queue_stop) {
231 enqueue_mgmt(ieee, skb);
232 } else {
94a79942
LF
233 header->seq_ctl = cpu_to_le16(ieee->seq_ctrl[0]<<4);
234
235 if (ieee->seq_ctrl[0] == 0xFFF)
236 ieee->seq_ctrl[0] = 0;
237 else
238 ieee->seq_ctrl[0]++;
239
240 /* avoid watchdog triggers */
9d92ece8
LF
241 ieee->softmac_data_hard_start_xmit(skb, ieee->dev,
242 ieee->basic_rate);
94a79942
LF
243 }
244
245 spin_unlock_irqrestore(&ieee->lock, flags);
9d92ece8 246 } else {
94a79942
LF
247 spin_unlock_irqrestore(&ieee->lock, flags);
248 spin_lock_irqsave(&ieee->mgmt_tx_lock, flags);
249
250 header->seq_ctl = cpu_to_le16(ieee->seq_ctrl[0] << 4);
251
252 if (ieee->seq_ctrl[0] == 0xFFF)
253 ieee->seq_ctrl[0] = 0;
254 else
255 ieee->seq_ctrl[0]++;
256
f2635894 257 /* check whether the managed packet queued greater than 5 */
35e33b04
MK
258 if (!ieee->check_nic_enough_desc(ieee->dev,
259 tcb_desc->queue_index) ||
260 skb_queue_len(&ieee->skb_waitQ[tcb_desc->queue_index]) ||
261 ieee->queue_stop) {
14b40d92
MK
262 /* insert the skb packet to the management queue
263 *
264 * as for the completion function, it does not need
94a79942 265 * to check it any more.
14b40d92 266 */
d69d2054 267 netdev_info(ieee->dev,
0822339b
MK
268 "%s():insert to waitqueue, queue_index:%d!\n",
269 __func__, tcb_desc->queue_index);
9d92ece8
LF
270 skb_queue_tail(&ieee->skb_waitQ[tcb_desc->queue_index],
271 skb);
94a79942 272 } else {
9d92ece8 273 ieee->softmac_hard_start_xmit(skb, ieee->dev);
94a79942
LF
274 }
275 spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags);
276 }
277}
278
279inline void softmac_ps_mgmt_xmit(struct sk_buff *skb,
280 struct rtllib_device *ieee)
281{
282 short single = ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE;
283 struct rtllib_hdr_3addr *header =
284 (struct rtllib_hdr_3addr *) skb->data;
9d92ece8 285 u16 fc, type, stype;
3b83db43 286 struct cb_desc *tcb_desc = (struct cb_desc *)(skb->cb + 8);
94a79942 287
1830a6d8 288 fc = le16_to_cpu(header->frame_ctl);
94a79942
LF
289 type = WLAN_FC_GET_TYPE(fc);
290 stype = WLAN_FC_GET_STYPE(fc);
291
292
293 if (stype != RTLLIB_STYPE_PSPOLL)
294 tcb_desc->queue_index = MGNT_QUEUE;
295 else
296 tcb_desc->queue_index = HIGH_QUEUE;
297
298 if (ieee->disable_mgnt_queue)
299 tcb_desc->queue_index = HIGH_QUEUE;
300
301
302 tcb_desc->data_rate = MgntQuery_MgntFrameTxRate(ieee);
303 tcb_desc->RATRIndex = 7;
304 tcb_desc->bTxDisableRateFallBack = 1;
305 tcb_desc->bTxUseDriverAssingedRate = 1;
306 if (single) {
307 if (type != RTLLIB_FTYPE_CTL) {
308 header->seq_ctl = cpu_to_le16(ieee->seq_ctrl[0] << 4);
309
310 if (ieee->seq_ctrl[0] == 0xFFF)
311 ieee->seq_ctrl[0] = 0;
312 else
313 ieee->seq_ctrl[0]++;
314
315 }
316 /* avoid watchdog triggers */
9d92ece8
LF
317 ieee->softmac_data_hard_start_xmit(skb, ieee->dev,
318 ieee->basic_rate);
94a79942
LF
319
320 } else {
321 if (type != RTLLIB_FTYPE_CTL) {
322 header->seq_ctl = cpu_to_le16(ieee->seq_ctrl[0] << 4);
323
324 if (ieee->seq_ctrl[0] == 0xFFF)
325 ieee->seq_ctrl[0] = 0;
326 else
327 ieee->seq_ctrl[0]++;
328 }
9d92ece8 329 ieee->softmac_hard_start_xmit(skb, ieee->dev);
94a79942
LF
330
331 }
332}
333
6d91857d 334static inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee)
94a79942 335{
9d92ece8 336 unsigned int len, rate_len;
94a79942
LF
337 u8 *tag;
338 struct sk_buff *skb;
339 struct rtllib_probe_request *req;
340
341 len = ieee->current_network.ssid_len;
342
343 rate_len = rtllib_MFIE_rate_len(ieee);
344
94a79942
LF
345 skb = dev_alloc_skb(sizeof(struct rtllib_probe_request) +
346 2 + len + rate_len + ieee->tx_headroom);
94a79942
LF
347
348 if (!skb)
349 return NULL;
350
94a79942
LF
351 skb_reserve(skb, ieee->tx_headroom);
352
9d92ece8
LF
353 req = (struct rtllib_probe_request *) skb_put(skb,
354 sizeof(struct rtllib_probe_request));
94a79942
LF
355 req->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_PROBE_REQ);
356 req->header.duration_id = 0;
357
358 memset(req->header.addr1, 0xff, ETH_ALEN);
b57ceb19 359 ether_addr_copy(req->header.addr2, ieee->dev->dev_addr);
94a79942
LF
360 memset(req->header.addr3, 0xff, ETH_ALEN);
361
9d92ece8 362 tag = (u8 *) skb_put(skb, len + 2 + rate_len);
94a79942
LF
363
364 *tag++ = MFIE_TYPE_SSID;
365 *tag++ = len;
366 memcpy(tag, ieee->current_network.ssid, len);
367 tag += len;
368
9d92ece8
LF
369 rtllib_MFIE_Brate(ieee, &tag);
370 rtllib_MFIE_Grate(ieee, &tag);
94a79942
LF
371
372 return skb;
373}
374
6957248f 375static struct sk_buff *rtllib_get_beacon_(struct rtllib_device *ieee);
94a79942 376
ec0dc6be 377static void rtllib_send_beacon(struct rtllib_device *ieee)
94a79942
LF
378{
379 struct sk_buff *skb;
3a6b70c3 380
94a79942
LF
381 if (!ieee->ieee_up)
382 return;
383 skb = rtllib_get_beacon_(ieee);
384
9d92ece8 385 if (skb) {
94a79942
LF
386 softmac_mgmt_xmit(skb, ieee);
387 ieee->softmac_stats.tx_beacons++;
388 }
389
9d92ece8
LF
390 if (ieee->beacon_txing && ieee->ieee_up)
391 mod_timer(&ieee->beacon_timer, jiffies +
8b9733c1 392 (msecs_to_jiffies(ieee->current_network.beacon_interval - 5)));
94a79942
LF
393}
394
395
ec0dc6be 396static void rtllib_send_beacon_cb(unsigned long _ieee)
94a79942
LF
397{
398 struct rtllib_device *ieee =
399 (struct rtllib_device *) _ieee;
400 unsigned long flags;
401
402 spin_lock_irqsave(&ieee->beacon_lock, flags);
403 rtllib_send_beacon(ieee);
404 spin_unlock_irqrestore(&ieee->beacon_lock, flags);
405}
406
14b40d92 407/* Enables network monitor mode, all rx packets will be received. */
9d92ece8
LF
408void rtllib_EnableNetMonitorMode(struct net_device *dev,
409 bool bInitState)
94a79942 410{
9d92ece8 411 struct rtllib_device *ieee = netdev_priv_rsl(dev);
94a79942 412
d69d2054 413 netdev_info(dev, "========>Enter Monitor Mode\n");
94a79942 414
9d92ece8 415 ieee->AllowAllDestAddrHandler(dev, true, !bInitState);
94a79942
LF
416}
417
418
14b40d92
MK
419/* Disables network monitor mode. Only packets destinated to
420 * us will be received.
94a79942 421 */
9d92ece8
LF
422void rtllib_DisableNetMonitorMode(struct net_device *dev,
423 bool bInitState)
94a79942 424{
9d92ece8 425 struct rtllib_device *ieee = netdev_priv_rsl(dev);
94a79942 426
d69d2054 427 netdev_info(dev, "========>Exit Monitor Mode\n");
94a79942 428
9d92ece8 429 ieee->AllowAllDestAddrHandler(dev, false, !bInitState);
94a79942
LF
430}
431
432
14b40d92 433/* Enables the specialized promiscuous mode required by Intel.
9d92ece8
LF
434 * In this mode, Intel intends to hear traffics from/to other STAs in the
435 * same BSS. Therefore we don't have to disable checking BSSID and we only need
436 * to allow all dest. BUT: if we enable checking BSSID then we can't recv
437 * packets from other STA.
94a79942 438 */
9d92ece8
LF
439void rtllib_EnableIntelPromiscuousMode(struct net_device *dev,
440 bool bInitState)
94a79942 441{
9d92ece8 442 bool bFilterOutNonAssociatedBSSID = false;
94a79942 443
9d92ece8 444 struct rtllib_device *ieee = netdev_priv_rsl(dev);
94a79942 445
d69d2054 446 netdev_info(dev, "========>Enter Intel Promiscuous Mode\n");
94a79942 447
9d92ece8
LF
448 ieee->AllowAllDestAddrHandler(dev, true, !bInitState);
449 ieee->SetHwRegHandler(dev, HW_VAR_CECHK_BSSID,
450 (u8 *)&bFilterOutNonAssociatedBSSID);
94a79942 451
9d92ece8 452 ieee->bNetPromiscuousMode = true;
94a79942 453}
3b28499c 454EXPORT_SYMBOL(rtllib_EnableIntelPromiscuousMode);
94a79942
LF
455
456
14b40d92
MK
457/* Disables the specialized promiscuous mode required by Intel.
458 * See MgntEnableIntelPromiscuousMode for detail.
94a79942 459 */
9d92ece8
LF
460void rtllib_DisableIntelPromiscuousMode(struct net_device *dev,
461 bool bInitState)
94a79942 462{
9d92ece8 463 bool bFilterOutNonAssociatedBSSID = true;
94a79942 464
9d92ece8 465 struct rtllib_device *ieee = netdev_priv_rsl(dev);
94a79942 466
d69d2054 467 netdev_info(dev, "========>Exit Intel Promiscuous Mode\n");
94a79942 468
9d92ece8
LF
469 ieee->AllowAllDestAddrHandler(dev, false, !bInitState);
470 ieee->SetHwRegHandler(dev, HW_VAR_CECHK_BSSID,
471 (u8 *)&bFilterOutNonAssociatedBSSID);
94a79942 472
9d92ece8 473 ieee->bNetPromiscuousMode = false;
94a79942 474}
3b28499c 475EXPORT_SYMBOL(rtllib_DisableIntelPromiscuousMode);
94a79942 476
ec0dc6be 477static void rtllib_send_probe(struct rtllib_device *ieee, u8 is_mesh)
94a79942
LF
478{
479 struct sk_buff *skb;
3a6b70c3 480
94a79942 481 skb = rtllib_probe_req(ieee);
9d92ece8 482 if (skb) {
94a79942
LF
483 softmac_mgmt_xmit(skb, ieee);
484 ieee->softmac_stats.tx_probe_rq++;
485 }
486}
487
488
6957248f 489static void rtllib_send_probe_requests(struct rtllib_device *ieee, u8 is_mesh)
94a79942
LF
490{
491 if (ieee->active_scan && (ieee->softmac_features &
492 IEEE_SOFTMAC_PROBERQ)) {
493 rtllib_send_probe(ieee, 0);
494 rtllib_send_probe(ieee, 0);
495 }
496}
497
6957248f 498static void rtllib_update_active_chan_map(struct rtllib_device *ieee)
94a79942 499{
9d92ece8
LF
500 memcpy(ieee->active_channel_map, GET_DOT11D_INFO(ieee)->channel_map,
501 MAX_CHANNEL_NUMBER+1);
94a79942
LF
502}
503
504/* this performs syncro scan blocking the caller until all channels
505 * in the allowed channel map has been checked.
506 */
6957248f 507static void rtllib_softmac_scan_syncro(struct rtllib_device *ieee, u8 is_mesh)
94a79942 508{
9d92ece8 509 union iwreq_data wrqu;
94a79942
LF
510 short ch = 0;
511
512 rtllib_update_active_chan_map(ieee);
513
514 ieee->be_scan_inprogress = true;
515
516 down(&ieee->scan_sem);
517
9d92ece8 518 while (1) {
94a79942
LF
519 do {
520 ch++;
521 if (ch > MAX_CHANNEL_NUMBER)
522 goto out; /* scan completed */
9d92ece8 523 } while (!ieee->active_channel_map[ch]);
94a79942 524
430fb250 525 /* this function can be called in two situations
94a79942
LF
526 * 1- We have switched to ad-hoc mode and we are
527 * performing a complete syncro scan before conclude
528 * there are no interesting cell and to create a
529 * new one. In this case the link state is
530 * RTLLIB_NOLINK until we found an interesting cell.
531 * If so the ieee8021_new_net, called by the RX path
532 * will set the state to RTLLIB_LINKED, so we stop
533 * scanning
534 * 2- We are linked and the root uses run iwlist scan.
535 * So we switch to RTLLIB_LINKED_SCANNING to remember
536 * that we are still logically linked (not interested in
537 * new network events, despite for updating the net list,
538 * but we are temporarly 'unlinked' as the driver shall
539 * not filter RX frames and the channel is changing.
cd017123 540 * So the only situation in which are interested is to check
94a79942
LF
541 * if the state become LINKED because of the #1 situation
542 */
543
544 if (ieee->state == RTLLIB_LINKED)
545 goto out;
9d92ece8 546 if (ieee->sync_scan_hurryup) {
d69d2054
MK
547 netdev_info(ieee->dev,
548 "============>sync_scan_hurryup out\n");
94a79942
LF
549 goto out;
550 }
551
552 ieee->set_chan(ieee->dev, ch);
553 if (ieee->active_channel_map[ch] == 1)
9d92ece8 554 rtllib_send_probe_requests(ieee, 0);
94a79942
LF
555
556 /* this prevent excessive time wait when we
557 * need to wait for a syncro scan to end..
558 */
559 msleep_interruptible_rsl(RTLLIB_SOFTMAC_SCAN_TIME);
560 }
561out:
562 ieee->actscanning = false;
563 ieee->sync_scan_hurryup = 0;
564
9d92ece8 565 if (ieee->state >= RTLLIB_LINKED) {
94a79942
LF
566 if (IS_DOT11D_ENABLE(ieee))
567 DOT11D_ScanComplete(ieee);
94a79942
LF
568 }
569 up(&ieee->scan_sem);
570
571 ieee->be_scan_inprogress = false;
572
94a79942 573 memset(&wrqu, 0, sizeof(wrqu));
9d92ece8 574 wireless_send_event(ieee->dev, SIOCGIWSCAN, &wrqu, NULL);
94a79942
LF
575}
576
ec0dc6be 577static void rtllib_softmac_scan_wq(void *data)
94a79942 578{
9d92ece8
LF
579 struct rtllib_device *ieee = container_of_dwork_rsl(data,
580 struct rtllib_device, softmac_scan_wq);
94a79942
LF
581 u8 last_channel = ieee->current_network.channel;
582
583 rtllib_update_active_chan_map(ieee);
584
585 if (!ieee->ieee_up)
586 return;
4bb01423 587 if (rtllib_act_scanning(ieee, true))
94a79942
LF
588 return;
589
590 down(&ieee->scan_sem);
591
9d92ece8 592 if (ieee->eRFPowerState == eRfOff) {
d69d2054
MK
593 netdev_info(ieee->dev,
594 "======>%s():rf state is eRfOff, return\n",
595 __func__);
94a79942
LF
596 goto out1;
597 }
598
9d92ece8 599 do {
94a79942 600 ieee->current_network.channel =
9d92ece8
LF
601 (ieee->current_network.channel + 1) %
602 MAX_CHANNEL_NUMBER;
603 if (ieee->scan_watch_dog++ > MAX_CHANNEL_NUMBER) {
94a79942
LF
604 if (!ieee->active_channel_map[ieee->current_network.channel])
605 ieee->current_network.channel = 6;
606 goto out; /* no good chans */
607 }
9d92ece8 608 } while (!ieee->active_channel_map[ieee->current_network.channel]);
94a79942 609
9d92ece8 610 if (ieee->scanning_continue == 0)
94a79942
LF
611 goto out;
612
613 ieee->set_chan(ieee->dev, ieee->current_network.channel);
614
615 if (ieee->active_channel_map[ieee->current_network.channel] == 1)
9d92ece8 616 rtllib_send_probe_requests(ieee, 0);
94a79942 617
9d92ece8 618 queue_delayed_work_rsl(ieee->wq, &ieee->softmac_scan_wq,
8b9733c1 619 msecs_to_jiffies(RTLLIB_SOFTMAC_SCAN_TIME));
94a79942
LF
620
621 up(&ieee->scan_sem);
622 return;
623
624out:
94a79942
LF
625 if (IS_DOT11D_ENABLE(ieee))
626 DOT11D_ScanComplete(ieee);
94a79942
LF
627 ieee->current_network.channel = last_channel;
628
629out1:
630 ieee->actscanning = false;
631 ieee->scan_watch_dog = 0;
632 ieee->scanning_continue = 0;
633 up(&ieee->scan_sem);
634}
635
636
637
ec0dc6be 638static void rtllib_beacons_start(struct rtllib_device *ieee)
94a79942
LF
639{
640 unsigned long flags;
3a6b70c3 641
9d92ece8 642 spin_lock_irqsave(&ieee->beacon_lock, flags);
94a79942
LF
643
644 ieee->beacon_txing = 1;
645 rtllib_send_beacon(ieee);
646
9d92ece8 647 spin_unlock_irqrestore(&ieee->beacon_lock, flags);
94a79942
LF
648}
649
ec0dc6be 650static void rtllib_beacons_stop(struct rtllib_device *ieee)
94a79942
LF
651{
652 unsigned long flags;
653
9d92ece8 654 spin_lock_irqsave(&ieee->beacon_lock, flags);
94a79942
LF
655
656 ieee->beacon_txing = 0;
657 del_timer_sync(&ieee->beacon_timer);
658
9d92ece8 659 spin_unlock_irqrestore(&ieee->beacon_lock, flags);
94a79942
LF
660
661}
662
663
664void rtllib_stop_send_beacons(struct rtllib_device *ieee)
665{
666 if (ieee->stop_send_beacons)
667 ieee->stop_send_beacons(ieee->dev);
668 if (ieee->softmac_features & IEEE_SOFTMAC_BEACONS)
669 rtllib_beacons_stop(ieee);
670}
3b28499c 671EXPORT_SYMBOL(rtllib_stop_send_beacons);
94a79942
LF
672
673
674void rtllib_start_send_beacons(struct rtllib_device *ieee)
675{
676 if (ieee->start_send_beacons)
677 ieee->start_send_beacons(ieee->dev);
678 if (ieee->softmac_features & IEEE_SOFTMAC_BEACONS)
679 rtllib_beacons_start(ieee);
680}
3b28499c 681EXPORT_SYMBOL(rtllib_start_send_beacons);
94a79942
LF
682
683
ec0dc6be 684static void rtllib_softmac_stop_scan(struct rtllib_device *ieee)
94a79942 685{
94a79942
LF
686 down(&ieee->scan_sem);
687 ieee->scan_watch_dog = 0;
cb762154 688 if (ieee->scanning_continue == 1) {
94a79942 689 ieee->scanning_continue = 0;
014e4c27 690 ieee->actscanning = false;
94a79942 691
94a79942 692 cancel_delayed_work(&ieee->softmac_scan_wq);
94a79942
LF
693 }
694
695 up(&ieee->scan_sem);
696}
697
698void rtllib_stop_scan(struct rtllib_device *ieee)
699{
9d92ece8 700 if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
94a79942 701 rtllib_softmac_stop_scan(ieee);
9d92ece8 702 } else {
94a79942
LF
703 if (ieee->rtllib_stop_hw_scan)
704 ieee->rtllib_stop_hw_scan(ieee->dev);
705 }
706}
3b28499c 707EXPORT_SYMBOL(rtllib_stop_scan);
94a79942
LF
708
709void rtllib_stop_scan_syncro(struct rtllib_device *ieee)
710{
9d92ece8 711 if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
fc00af0c 712 ieee->sync_scan_hurryup = 1;
9d92ece8 713 } else {
94a79942
LF
714 if (ieee->rtllib_stop_hw_scan)
715 ieee->rtllib_stop_hw_scan(ieee->dev);
716 }
717}
3b28499c 718EXPORT_SYMBOL(rtllib_stop_scan_syncro);
94a79942
LF
719
720bool rtllib_act_scanning(struct rtllib_device *ieee, bool sync_scan)
721{
9d92ece8
LF
722 if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
723 if (sync_scan)
94a79942 724 return ieee->be_scan_inprogress;
9d92ece8
LF
725 else
726 return ieee->actscanning || ieee->be_scan_inprogress;
727 } else {
94a79942
LF
728 return test_bit(STATUS_SCANNING, &ieee->status);
729 }
730}
3b28499c 731EXPORT_SYMBOL(rtllib_act_scanning);
94a79942
LF
732
733/* called with ieee->lock held */
ec0dc6be 734static void rtllib_start_scan(struct rtllib_device *ieee)
94a79942 735{
9d92ece8 736 RT_TRACE(COMP_DBG, "===>%s()\n", __func__);
94a79942 737 if (ieee->rtllib_ips_leave_wq != NULL)
9d92ece8 738 ieee->rtllib_ips_leave_wq(ieee->dev);
94a79942 739
9d92ece8 740 if (IS_DOT11D_ENABLE(ieee)) {
94a79942 741 if (IS_COUNTRY_IE_VALID(ieee))
94a79942 742 RESET_CIE_WATCHDOG(ieee);
94a79942 743 }
94a79942
LF
744 if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
745 if (ieee->scanning_continue == 0) {
746 ieee->actscanning = true;
747 ieee->scanning_continue = 1;
9d92ece8
LF
748 queue_delayed_work_rsl(ieee->wq,
749 &ieee->softmac_scan_wq, 0);
94a79942
LF
750 }
751 } else {
752 if (ieee->rtllib_start_hw_scan)
753 ieee->rtllib_start_hw_scan(ieee->dev);
754 }
94a79942
LF
755}
756
94a79942
LF
757/* called with wx_sem held */
758void rtllib_start_scan_syncro(struct rtllib_device *ieee, u8 is_mesh)
759{
9d92ece8 760 if (IS_DOT11D_ENABLE(ieee)) {
94a79942 761 if (IS_COUNTRY_IE_VALID(ieee))
94a79942 762 RESET_CIE_WATCHDOG(ieee);
94a79942 763 }
94a79942 764 ieee->sync_scan_hurryup = 0;
9d92ece8 765 if (ieee->softmac_features & IEEE_SOFTMAC_SCAN) {
94a79942 766 rtllib_softmac_scan_syncro(ieee, is_mesh);
9d92ece8 767 } else {
94a79942
LF
768 if (ieee->rtllib_start_hw_scan)
769 ieee->rtllib_start_hw_scan(ieee->dev);
770 }
94a79942 771}
3b28499c 772EXPORT_SYMBOL(rtllib_start_scan_syncro);
94a79942
LF
773
774inline struct sk_buff *rtllib_authentication_req(struct rtllib_network *beacon,
9d92ece8 775 struct rtllib_device *ieee, int challengelen, u8 *daddr)
94a79942
LF
776{
777 struct sk_buff *skb;
778 struct rtllib_authentication *auth;
779 int len = 0;
3a6b70c3 780
9d92ece8
LF
781 len = sizeof(struct rtllib_authentication) + challengelen +
782 ieee->tx_headroom + 4;
94a79942 783 skb = dev_alloc_skb(len);
94a79942 784
9d92ece8
LF
785 if (!skb)
786 return NULL;
94a79942 787
94a79942
LF
788 skb_reserve(skb, ieee->tx_headroom);
789
790 auth = (struct rtllib_authentication *)
791 skb_put(skb, sizeof(struct rtllib_authentication));
792
1830a6d8 793 auth->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_AUTH);
9d92ece8 794 if (challengelen)
7fe30a7d 795 auth->header.frame_ctl |= cpu_to_le16(RTLLIB_FCTL_WEP);
94a79942 796
1830a6d8 797 auth->header.duration_id = cpu_to_le16(0x013a);
b57ceb19
MK
798 ether_addr_copy(auth->header.addr1, beacon->bssid);
799 ether_addr_copy(auth->header.addr2, ieee->dev->dev_addr);
800 ether_addr_copy(auth->header.addr3, beacon->bssid);
94a79942
LF
801 if (ieee->auth_mode == 0)
802 auth->algorithm = WLAN_AUTH_OPEN;
803 else if (ieee->auth_mode == 1)
1830a6d8 804 auth->algorithm = cpu_to_le16(WLAN_AUTH_SHARED_KEY);
94a79942
LF
805 else if (ieee->auth_mode == 2)
806 auth->algorithm = WLAN_AUTH_OPEN;
807 auth->transaction = cpu_to_le16(ieee->associate_seq);
808 ieee->associate_seq++;
809
810 auth->status = cpu_to_le16(WLAN_STATUS_SUCCESS);
811
812 return skb;
94a79942
LF
813}
814
c7ddc288
MK
815static struct sk_buff *rtllib_probe_resp(struct rtllib_device *ieee,
816 const u8 *dest)
94a79942
LF
817{
818 u8 *tag;
819 int beacon_size;
820 struct rtllib_probe_response *beacon_buf;
821 struct sk_buff *skb = NULL;
822 int encrypt;
9d92ece8 823 int atim_len, erp_len;
32c44cb5 824 struct lib80211_crypt_data *crypt;
94a79942
LF
825
826 char *ssid = ieee->current_network.ssid;
827 int ssid_len = ieee->current_network.ssid_len;
828 int rate_len = ieee->current_network.rates_len+2;
829 int rate_ex_len = ieee->current_network.rates_ex_len;
830 int wpa_ie_len = ieee->wpa_ie_len;
831 u8 erpinfo_content = 0;
832
9d92ece8 833 u8 *tmp_ht_cap_buf = NULL;
94a79942 834 u8 tmp_ht_cap_len = 0;
9d92ece8 835 u8 *tmp_ht_info_buf = NULL;
94a79942 836 u8 tmp_ht_info_len = 0;
7796d93e 837 struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
9d92ece8 838 u8 *tmp_generic_ie_buf = NULL;
94a79942
LF
839 u8 tmp_generic_ie_len = 0;
840
841 if (rate_ex_len > 0)
9d92ece8 842 rate_ex_len += 2;
94a79942
LF
843
844 if (ieee->current_network.capability & WLAN_CAPABILITY_IBSS)
845 atim_len = 4;
846 else
847 atim_len = 0;
848
9d92ece8
LF
849 if ((ieee->current_network.mode == IEEE_G) ||
850 (ieee->current_network.mode == IEEE_N_24G &&
851 ieee->pHTInfo->bCurSuppCCK)) {
94a79942
LF
852 erp_len = 3;
853 erpinfo_content = 0;
854 if (ieee->current_network.buseprotection)
855 erpinfo_content |= ERP_UseProtection;
9d92ece8 856 } else
94a79942
LF
857 erp_len = 0;
858
0ddcf5fd 859 crypt = ieee->crypt_info.crypt[ieee->crypt_info.tx_keyidx];
94a79942 860 encrypt = ieee->host_encrypt && crypt && crypt->ops &&
4c29207a 861 ((strcmp(crypt->ops->name, "R-WEP") == 0 || wpa_ie_len));
9d92ece8
LF
862 if (ieee->pHTInfo->bCurrentHTSupport) {
863 tmp_ht_cap_buf = (u8 *) &(ieee->pHTInfo->SelfHTCap);
94a79942 864 tmp_ht_cap_len = sizeof(ieee->pHTInfo->SelfHTCap);
9d92ece8 865 tmp_ht_info_buf = (u8 *) &(ieee->pHTInfo->SelfHTInfo);
94a79942 866 tmp_ht_info_len = sizeof(ieee->pHTInfo->SelfHTInfo);
9d92ece8
LF
867 HTConstructCapabilityElement(ieee, tmp_ht_cap_buf,
868 &tmp_ht_cap_len, encrypt, false);
869 HTConstructInfoElement(ieee, tmp_ht_info_buf, &tmp_ht_info_len,
870 encrypt);
94a79942 871
9d92ece8 872 if (pHTInfo->bRegRT2RTAggregation) {
94a79942 873 tmp_generic_ie_buf = ieee->pHTInfo->szRT2RTAggBuffer;
9d92ece8
LF
874 tmp_generic_ie_len =
875 sizeof(ieee->pHTInfo->szRT2RTAggBuffer);
876 HTConstructRT2RTAggElement(ieee, tmp_generic_ie_buf,
877 &tmp_generic_ie_len);
94a79942
LF
878 }
879 }
880
881 beacon_size = sizeof(struct rtllib_probe_response)+2+
9d92ece8
LF
882 ssid_len + 3 + rate_len + rate_ex_len + atim_len + erp_len
883 + wpa_ie_len + ieee->tx_headroom;
94a79942 884 skb = dev_alloc_skb(beacon_size);
94a79942
LF
885 if (!skb)
886 return NULL;
887
94a79942
LF
888 skb_reserve(skb, ieee->tx_headroom);
889
9d92ece8
LF
890 beacon_buf = (struct rtllib_probe_response *) skb_put(skb,
891 (beacon_size - ieee->tx_headroom));
b57ceb19
MK
892 ether_addr_copy(beacon_buf->header.addr1, dest);
893 ether_addr_copy(beacon_buf->header.addr2, ieee->dev->dev_addr);
894 ether_addr_copy(beacon_buf->header.addr3, ieee->current_network.bssid);
94a79942
LF
895
896 beacon_buf->header.duration_id = 0;
897 beacon_buf->beacon_interval =
898 cpu_to_le16(ieee->current_network.beacon_interval);
899 beacon_buf->capability =
9d92ece8
LF
900 cpu_to_le16(ieee->current_network.capability &
901 WLAN_CAPABILITY_IBSS);
94a79942 902 beacon_buf->capability |=
9d92ece8
LF
903 cpu_to_le16(ieee->current_network.capability &
904 WLAN_CAPABILITY_SHORT_PREAMBLE);
94a79942 905
9d92ece8
LF
906 if (ieee->short_slot && (ieee->current_network.capability &
907 WLAN_CAPABILITY_SHORT_SLOT_TIME))
7fe30a7d
RK
908 beacon_buf->capability |=
909 cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
94a79942 910
0ddcf5fd 911 crypt = ieee->crypt_info.crypt[ieee->crypt_info.tx_keyidx];
94a79942
LF
912 if (encrypt)
913 beacon_buf->capability |= cpu_to_le16(WLAN_CAPABILITY_PRIVACY);
914
915
916 beacon_buf->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_PROBE_RESP);
917 beacon_buf->info_element[0].id = MFIE_TYPE_SSID;
918 beacon_buf->info_element[0].len = ssid_len;
919
9d92ece8 920 tag = (u8 *) beacon_buf->info_element[0].data;
94a79942
LF
921
922 memcpy(tag, ssid, ssid_len);
923
924 tag += ssid_len;
925
926 *(tag++) = MFIE_TYPE_RATES;
927 *(tag++) = rate_len-2;
9d92ece8
LF
928 memcpy(tag, ieee->current_network.rates, rate_len-2);
929 tag += rate_len-2;
94a79942
LF
930
931 *(tag++) = MFIE_TYPE_DS_SET;
932 *(tag++) = 1;
933 *(tag++) = ieee->current_network.channel;
934
9d92ece8
LF
935 if (atim_len) {
936 u16 val16;
94a79942
LF
937 *(tag++) = MFIE_TYPE_IBSS_SET;
938 *(tag++) = 2;
1830a6d8 939 val16 = ieee->current_network.atim_window;
94a79942 940 memcpy((u8 *)tag, (u8 *)&val16, 2);
9d92ece8 941 tag += 2;
94a79942
LF
942 }
943
9d92ece8 944 if (erp_len) {
94a79942
LF
945 *(tag++) = MFIE_TYPE_ERP;
946 *(tag++) = 1;
947 *(tag++) = erpinfo_content;
948 }
9d92ece8 949 if (rate_ex_len) {
94a79942
LF
950 *(tag++) = MFIE_TYPE_RATES_EX;
951 *(tag++) = rate_ex_len-2;
9d92ece8
LF
952 memcpy(tag, ieee->current_network.rates_ex, rate_ex_len-2);
953 tag += rate_ex_len-2;
94a79942
LF
954 }
955
9d92ece8 956 if (wpa_ie_len) {
94a79942 957 if (ieee->iw_mode == IW_MODE_ADHOC)
94a79942 958 memcpy(&ieee->wpa_ie[14], &ieee->wpa_ie[8], 4);
94a79942
LF
959 memcpy(tag, ieee->wpa_ie, ieee->wpa_ie_len);
960 tag += ieee->wpa_ie_len;
961 }
94a79942
LF
962 return skb;
963}
964
ec0dc6be 965static struct sk_buff *rtllib_assoc_resp(struct rtllib_device *ieee, u8 *dest)
94a79942
LF
966{
967 struct sk_buff *skb;
9d92ece8 968 u8 *tag;
94a79942 969
32c44cb5 970 struct lib80211_crypt_data *crypt;
94a79942
LF
971 struct rtllib_assoc_response_frame *assoc;
972 short encrypt;
973
974 unsigned int rate_len = rtllib_MFIE_rate_len(ieee);
9d92ece8
LF
975 int len = sizeof(struct rtllib_assoc_response_frame) + rate_len +
976 ieee->tx_headroom;
94a79942 977
94a79942 978 skb = dev_alloc_skb(len);
94a79942
LF
979
980 if (!skb)
981 return NULL;
982
94a79942
LF
983 skb_reserve(skb, ieee->tx_headroom);
984
985 assoc = (struct rtllib_assoc_response_frame *)
9d92ece8 986 skb_put(skb, sizeof(struct rtllib_assoc_response_frame));
94a79942
LF
987
988 assoc->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_ASSOC_RESP);
b57ceb19
MK
989 ether_addr_copy(assoc->header.addr1, dest);
990 ether_addr_copy(assoc->header.addr3, ieee->dev->dev_addr);
991 ether_addr_copy(assoc->header.addr2, ieee->dev->dev_addr);
94a79942
LF
992 assoc->capability = cpu_to_le16(ieee->iw_mode == IW_MODE_MASTER ?
993 WLAN_CAPABILITY_ESS : WLAN_CAPABILITY_IBSS);
994
995
996 if (ieee->short_slot)
9d92ece8
LF
997 assoc->capability |=
998 cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
94a79942
LF
999
1000 if (ieee->host_encrypt)
0ddcf5fd 1001 crypt = ieee->crypt_info.crypt[ieee->crypt_info.tx_keyidx];
94a79942
LF
1002 else
1003 crypt = NULL;
1004
9d92ece8 1005 encrypt = (crypt && crypt->ops);
94a79942
LF
1006
1007 if (encrypt)
1008 assoc->capability |= cpu_to_le16(WLAN_CAPABILITY_PRIVACY);
1009
1010 assoc->status = 0;
1011 assoc->aid = cpu_to_le16(ieee->assoc_id);
1012 if (ieee->assoc_id == 0x2007)
9d92ece8 1013 ieee->assoc_id = 0;
94a79942
LF
1014 else
1015 ieee->assoc_id++;
1016
9d92ece8 1017 tag = (u8 *) skb_put(skb, rate_len);
94a79942
LF
1018 rtllib_MFIE_Brate(ieee, &tag);
1019 rtllib_MFIE_Grate(ieee, &tag);
1020
1021 return skb;
1022}
1023
ec0dc6be 1024static struct sk_buff *rtllib_auth_resp(struct rtllib_device *ieee, int status,
9d92ece8 1025 u8 *dest)
94a79942
LF
1026{
1027 struct sk_buff *skb = NULL;
1028 struct rtllib_authentication *auth;
9d92ece8 1029 int len = ieee->tx_headroom + sizeof(struct rtllib_authentication) + 1;
3a6b70c3 1030
94a79942 1031 skb = dev_alloc_skb(len);
94a79942
LF
1032 if (!skb)
1033 return NULL;
1034
1035 skb->len = sizeof(struct rtllib_authentication);
1036
94a79942
LF
1037 skb_reserve(skb, ieee->tx_headroom);
1038
1039 auth = (struct rtllib_authentication *)
1040 skb_put(skb, sizeof(struct rtllib_authentication));
1041
1042 auth->status = cpu_to_le16(status);
1043 auth->transaction = cpu_to_le16(2);
1044 auth->algorithm = cpu_to_le16(WLAN_AUTH_OPEN);
1045
b57ceb19
MK
1046 ether_addr_copy(auth->header.addr3, ieee->dev->dev_addr);
1047 ether_addr_copy(auth->header.addr2, ieee->dev->dev_addr);
1048 ether_addr_copy(auth->header.addr1, dest);
94a79942
LF
1049 auth->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_AUTH);
1050 return skb;
1051
1052
1053}
1054
ec0dc6be 1055static struct sk_buff *rtllib_null_func(struct rtllib_device *ieee, short pwr)
94a79942
LF
1056{
1057 struct sk_buff *skb;
9d92ece8 1058 struct rtllib_hdr_3addr *hdr;
94a79942 1059
94a79942 1060 skb = dev_alloc_skb(sizeof(struct rtllib_hdr_3addr)+ieee->tx_headroom);
94a79942
LF
1061 if (!skb)
1062 return NULL;
1063
94a79942
LF
1064 skb_reserve(skb, ieee->tx_headroom);
1065
9d92ece8
LF
1066 hdr = (struct rtllib_hdr_3addr *)skb_put(skb,
1067 sizeof(struct rtllib_hdr_3addr));
94a79942 1068
b57ceb19
MK
1069 ether_addr_copy(hdr->addr1, ieee->current_network.bssid);
1070 ether_addr_copy(hdr->addr2, ieee->dev->dev_addr);
1071 ether_addr_copy(hdr->addr3, ieee->current_network.bssid);
94a79942
LF
1072
1073 hdr->frame_ctl = cpu_to_le16(RTLLIB_FTYPE_DATA |
1074 RTLLIB_STYPE_NULLFUNC | RTLLIB_FCTL_TODS |
9d92ece8 1075 (pwr ? RTLLIB_FCTL_PM : 0));
94a79942
LF
1076
1077 return skb;
1078
1079
1080}
1081
ec0dc6be 1082static struct sk_buff *rtllib_pspoll_func(struct rtllib_device *ieee)
94a79942
LF
1083{
1084 struct sk_buff *skb;
9d92ece8 1085 struct rtllib_pspoll_hdr *hdr;
94a79942 1086
94a79942 1087 skb = dev_alloc_skb(sizeof(struct rtllib_pspoll_hdr)+ieee->tx_headroom);
94a79942
LF
1088 if (!skb)
1089 return NULL;
1090
94a79942
LF
1091 skb_reserve(skb, ieee->tx_headroom);
1092
9d92ece8
LF
1093 hdr = (struct rtllib_pspoll_hdr *)skb_put(skb,
1094 sizeof(struct rtllib_pspoll_hdr));
94a79942 1095
b57ceb19
MK
1096 ether_addr_copy(hdr->bssid, ieee->current_network.bssid);
1097 ether_addr_copy(hdr->ta, ieee->dev->dev_addr);
94a79942
LF
1098
1099 hdr->aid = cpu_to_le16(ieee->assoc_id | 0xc000);
9d92ece8
LF
1100 hdr->frame_ctl = cpu_to_le16(RTLLIB_FTYPE_CTL | RTLLIB_STYPE_PSPOLL |
1101 RTLLIB_FCTL_PM);
94a79942
LF
1102
1103 return skb;
1104
1105}
1106
ec0dc6be 1107static void rtllib_resp_to_assoc_rq(struct rtllib_device *ieee, u8 *dest)
94a79942
LF
1108{
1109 struct sk_buff *buf = rtllib_assoc_resp(ieee, dest);
1110
1111 if (buf)
1112 softmac_mgmt_xmit(buf, ieee);
1113}
1114
1115
ec0dc6be 1116static void rtllib_resp_to_auth(struct rtllib_device *ieee, int s, u8 *dest)
94a79942
LF
1117{
1118 struct sk_buff *buf = rtllib_auth_resp(ieee, s, dest);
1119
1120 if (buf)
1121 softmac_mgmt_xmit(buf, ieee);
1122}
1123
1124
ec0dc6be 1125static void rtllib_resp_to_probe(struct rtllib_device *ieee, u8 *dest)
94a79942 1126{
94a79942 1127 struct sk_buff *buf = rtllib_probe_resp(ieee, dest);
3a6b70c3 1128
94a79942
LF
1129 if (buf)
1130 softmac_mgmt_xmit(buf, ieee);
1131}
1132
1133
1134inline int SecIsInPMKIDList(struct rtllib_device *ieee, u8 *bssid)
1135{
1136 int i = 0;
1137
9d92ece8
LF
1138 do {
1139 if ((ieee->PMKIDList[i].bUsed) &&
1140 (memcmp(ieee->PMKIDList[i].Bssid, bssid, ETH_ALEN) == 0))
94a79942 1141 break;
92db2a27 1142 i++;
94a79942
LF
1143 } while (i < NUM_PMKID_CACHE);
1144
1145 if (i == NUM_PMKID_CACHE)
94a79942 1146 i = -1;
9d92ece8 1147 return i;
94a79942
LF
1148}
1149
9d92ece8
LF
1150inline struct sk_buff *rtllib_association_req(struct rtllib_network *beacon,
1151 struct rtllib_device *ieee)
94a79942
LF
1152{
1153 struct sk_buff *skb;
94a79942
LF
1154 struct rtllib_assoc_request_frame *hdr;
1155 u8 *tag, *ies;
1156 int i;
9d92ece8
LF
1157 u8 *ht_cap_buf = NULL;
1158 u8 ht_cap_len = 0;
1159 u8 *realtek_ie_buf = NULL;
1160 u8 realtek_ie_len = 0;
1161 int wpa_ie_len = ieee->wpa_ie_len;
94a79942 1162 int wps_ie_len = ieee->wps_ie_len;
9d92ece8
LF
1163 unsigned int ckip_ie_len = 0;
1164 unsigned int ccxrm_ie_len = 0;
1165 unsigned int cxvernum_ie_len = 0;
32c44cb5 1166 struct lib80211_crypt_data *crypt;
94a79942
LF
1167 int encrypt;
1168 int PMKCacheIdx;
1169
9d92ece8
LF
1170 unsigned int rate_len = (beacon->rates_len ?
1171 (beacon->rates_len + 2) : 0) +
1172 (beacon->rates_ex_len ? (beacon->rates_ex_len) +
1173 2 : 0);
94a79942 1174
9d92ece8
LF
1175 unsigned int wmm_info_len = beacon->qos_data.supported ? 9 : 0;
1176 unsigned int turbo_info_len = beacon->Turbo_Enable ? 9 : 0;
94a79942
LF
1177
1178 int len = 0;
3a6b70c3 1179
0ddcf5fd 1180 crypt = ieee->crypt_info.crypt[ieee->crypt_info.tx_keyidx];
9d92ece8
LF
1181 if (crypt != NULL)
1182 encrypt = ieee->host_encrypt && crypt && crypt->ops &&
4c29207a 1183 ((strcmp(crypt->ops->name, "R-WEP") == 0 ||
9d92ece8
LF
1184 wpa_ie_len));
1185 else
94a79942 1186 encrypt = 0;
94a79942 1187
9d92ece8
LF
1188 if ((ieee->rtllib_ap_sec_type &&
1189 (ieee->rtllib_ap_sec_type(ieee) & SEC_ALG_TKIP)) ||
4bb01423 1190 ieee->bForcedBgMode) {
94a79942
LF
1191 ieee->pHTInfo->bEnableHT = 0;
1192 ieee->mode = WIRELESS_MODE_G;
1193 }
1194
9d92ece8
LF
1195 if (ieee->pHTInfo->bCurrentHTSupport && ieee->pHTInfo->bEnableHT) {
1196 ht_cap_buf = (u8 *)&(ieee->pHTInfo->SelfHTCap);
94a79942 1197 ht_cap_len = sizeof(ieee->pHTInfo->SelfHTCap);
9d92ece8
LF
1198 HTConstructCapabilityElement(ieee, ht_cap_buf, &ht_cap_len,
1199 encrypt, true);
94a79942
LF
1200 if (ieee->pHTInfo->bCurrentRT2RTAggregation) {
1201 realtek_ie_buf = ieee->pHTInfo->szRT2RTAggBuffer;
9d92ece8
LF
1202 realtek_ie_len =
1203 sizeof(ieee->pHTInfo->szRT2RTAggBuffer);
1204 HTConstructRT2RTAggElement(ieee, realtek_ie_buf,
1205 &realtek_ie_len);
94a79942
LF
1206 }
1207 }
1208
1209 if (beacon->bCkipSupported)
94a79942 1210 ckip_ie_len = 30+2;
94a79942 1211 if (beacon->bCcxRmEnable)
94a79942 1212 ccxrm_ie_len = 6+2;
9d92ece8 1213 if (beacon->BssCcxVerNumber >= 2)
94a79942 1214 cxvernum_ie_len = 5+2;
94a79942
LF
1215
1216 PMKCacheIdx = SecIsInPMKIDList(ieee, ieee->current_network.bssid);
9d92ece8 1217 if (PMKCacheIdx >= 0) {
94a79942 1218 wpa_ie_len += 18;
d69d2054
MK
1219 netdev_info(ieee->dev, "[PMK cache]: WPA2 IE length: %x\n",
1220 wpa_ie_len);
94a79942 1221 }
9d92ece8 1222 len = sizeof(struct rtllib_assoc_request_frame) + 2
94a79942
LF
1223 + beacon->ssid_len
1224 + rate_len
1225 + wpa_ie_len
1226 + wps_ie_len
1227 + wmm_info_len
1228 + turbo_info_len
9d92ece8 1229 + ht_cap_len
94a79942
LF
1230 + realtek_ie_len
1231 + ckip_ie_len
1232 + ccxrm_ie_len
1233 + cxvernum_ie_len
1234 + ieee->tx_headroom;
1235
94a79942 1236 skb = dev_alloc_skb(len);
94a79942
LF
1237
1238 if (!skb)
1239 return NULL;
1240
94a79942
LF
1241 skb_reserve(skb, ieee->tx_headroom);
1242
1243 hdr = (struct rtllib_assoc_request_frame *)
9d92ece8 1244 skb_put(skb, sizeof(struct rtllib_assoc_request_frame) + 2);
94a79942
LF
1245
1246
fa70ae09 1247 hdr->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_ASSOC_REQ);
1830a6d8 1248 hdr->header.duration_id = cpu_to_le16(37);
b57ceb19
MK
1249 ether_addr_copy(hdr->header.addr1, beacon->bssid);
1250 ether_addr_copy(hdr->header.addr2, ieee->dev->dev_addr);
1251 ether_addr_copy(hdr->header.addr3, beacon->bssid);
94a79942 1252
b57ceb19 1253 ether_addr_copy(ieee->ap_mac_addr, beacon->bssid);
94a79942
LF
1254
1255 hdr->capability = cpu_to_le16(WLAN_CAPABILITY_ESS);
9d92ece8 1256 if (beacon->capability & WLAN_CAPABILITY_PRIVACY)
94a79942
LF
1257 hdr->capability |= cpu_to_le16(WLAN_CAPABILITY_PRIVACY);
1258
1259 if (beacon->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
1260 hdr->capability |= cpu_to_le16(WLAN_CAPABILITY_SHORT_PREAMBLE);
1261
9d92ece8
LF
1262 if (ieee->short_slot &&
1263 (beacon->capability&WLAN_CAPABILITY_SHORT_SLOT_TIME))
94a79942
LF
1264 hdr->capability |= cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
1265
1266
1830a6d8 1267 hdr->listen_interval = cpu_to_le16(beacon->listen_interval);
94a79942
LF
1268
1269 hdr->info_element[0].id = MFIE_TYPE_SSID;
1270
1271 hdr->info_element[0].len = beacon->ssid_len;
1272 tag = skb_put(skb, beacon->ssid_len);
1273 memcpy(tag, beacon->ssid, beacon->ssid_len);
1274
1275 tag = skb_put(skb, rate_len);
1276
9d92ece8 1277 if (beacon->rates_len) {
94a79942
LF
1278 *tag++ = MFIE_TYPE_RATES;
1279 *tag++ = beacon->rates_len;
9d92ece8 1280 for (i = 0; i < beacon->rates_len; i++)
94a79942 1281 *tag++ = beacon->rates[i];
94a79942
LF
1282 }
1283
9d92ece8 1284 if (beacon->rates_ex_len) {
94a79942
LF
1285 *tag++ = MFIE_TYPE_RATES_EX;
1286 *tag++ = beacon->rates_ex_len;
9d92ece8 1287 for (i = 0; i < beacon->rates_ex_len; i++)
94a79942 1288 *tag++ = beacon->rates_ex[i];
94a79942
LF
1289 }
1290
9d92ece8 1291 if (beacon->bCkipSupported) {
16fc54ee 1292 static const u8 AironetIeOui[] = {0x00, 0x01, 0x66};
94a79942 1293 u8 CcxAironetBuf[30];
8310b6c0 1294 struct octet_string osCcxAironetIE;
94a79942 1295
9d92ece8 1296 memset(CcxAironetBuf, 0, 30);
94a79942
LF
1297 osCcxAironetIE.Octet = CcxAironetBuf;
1298 osCcxAironetIE.Length = sizeof(CcxAironetBuf);
9d92ece8
LF
1299 memcpy(osCcxAironetIE.Octet, AironetIeOui,
1300 sizeof(AironetIeOui));
94a79942 1301
9d92ece8
LF
1302 osCcxAironetIE.Octet[IE_CISCO_FLAG_POSITION] |=
1303 (SUPPORT_CKIP_PK|SUPPORT_CKIP_MIC);
94a79942
LF
1304 tag = skb_put(skb, ckip_ie_len);
1305 *tag++ = MFIE_TYPE_AIRONET;
1306 *tag++ = osCcxAironetIE.Length;
9d92ece8 1307 memcpy(tag, osCcxAironetIE.Octet, osCcxAironetIE.Length);
94a79942
LF
1308 tag += osCcxAironetIE.Length;
1309 }
1310
9d92ece8 1311 if (beacon->bCcxRmEnable) {
16fc54ee
BW
1312 static const u8 CcxRmCapBuf[] = {0x00, 0x40, 0x96, 0x01, 0x01,
1313 0x00};
8310b6c0 1314 struct octet_string osCcxRmCap;
94a79942 1315
16fc54ee 1316 osCcxRmCap.Octet = (u8 *) CcxRmCapBuf;
94a79942 1317 osCcxRmCap.Length = sizeof(CcxRmCapBuf);
9d92ece8 1318 tag = skb_put(skb, ccxrm_ie_len);
94a79942
LF
1319 *tag++ = MFIE_TYPE_GENERIC;
1320 *tag++ = osCcxRmCap.Length;
9d92ece8 1321 memcpy(tag, osCcxRmCap.Octet, osCcxRmCap.Length);
94a79942
LF
1322 tag += osCcxRmCap.Length;
1323 }
1324
9d92ece8
LF
1325 if (beacon->BssCcxVerNumber >= 2) {
1326 u8 CcxVerNumBuf[] = {0x00, 0x40, 0x96, 0x03, 0x00};
8310b6c0 1327 struct octet_string osCcxVerNum;
3a6b70c3 1328
94a79942
LF
1329 CcxVerNumBuf[4] = beacon->BssCcxVerNumber;
1330 osCcxVerNum.Octet = CcxVerNumBuf;
1331 osCcxVerNum.Length = sizeof(CcxVerNumBuf);
9d92ece8 1332 tag = skb_put(skb, cxvernum_ie_len);
94a79942
LF
1333 *tag++ = MFIE_TYPE_GENERIC;
1334 *tag++ = osCcxVerNum.Length;
9d92ece8 1335 memcpy(tag, osCcxVerNum.Octet, osCcxVerNum.Length);
94a79942
LF
1336 tag += osCcxVerNum.Length;
1337 }
9d92ece8
LF
1338 if (ieee->pHTInfo->bCurrentHTSupport && ieee->pHTInfo->bEnableHT) {
1339 if (ieee->pHTInfo->ePeerHTSpecVer != HT_SPEC_VER_EWC) {
94a79942
LF
1340 tag = skb_put(skb, ht_cap_len);
1341 *tag++ = MFIE_TYPE_HT_CAP;
1342 *tag++ = ht_cap_len - 2;
9d92ece8
LF
1343 memcpy(tag, ht_cap_buf, ht_cap_len - 2);
1344 tag += ht_cap_len - 2;
94a79942
LF
1345 }
1346 }
1347
9d92ece8 1348 if (wpa_ie_len) {
94a79942
LF
1349 tag = skb_put(skb, ieee->wpa_ie_len);
1350 memcpy(tag, ieee->wpa_ie, ieee->wpa_ie_len);
1351
9d92ece8 1352 if (PMKCacheIdx >= 0) {
94a79942
LF
1353 tag = skb_put(skb, 18);
1354 *tag = 1;
1355 *(tag + 1) = 0;
9d92ece8
LF
1356 memcpy((tag + 2), &ieee->PMKIDList[PMKCacheIdx].PMKID,
1357 16);
94a79942
LF
1358 }
1359 }
1360 if (wmm_info_len) {
9d92ece8 1361 tag = skb_put(skb, wmm_info_len);
94a79942
LF
1362 rtllib_WMM_Info(ieee, &tag);
1363 }
1364
1365 if (wps_ie_len && ieee->wps_ie) {
1366 tag = skb_put(skb, wps_ie_len);
1367 memcpy(tag, ieee->wps_ie, wps_ie_len);
1368 }
1369
9d92ece8
LF
1370 tag = skb_put(skb, turbo_info_len);
1371 if (turbo_info_len)
1372 rtllib_TURBO_Info(ieee, &tag);
94a79942 1373
9d92ece8
LF
1374 if (ieee->pHTInfo->bCurrentHTSupport && ieee->pHTInfo->bEnableHT) {
1375 if (ieee->pHTInfo->ePeerHTSpecVer == HT_SPEC_VER_EWC) {
94a79942
LF
1376 tag = skb_put(skb, ht_cap_len);
1377 *tag++ = MFIE_TYPE_GENERIC;
1378 *tag++ = ht_cap_len - 2;
9d92ece8
LF
1379 memcpy(tag, ht_cap_buf, ht_cap_len - 2);
1380 tag += ht_cap_len - 2;
94a79942
LF
1381 }
1382
9d92ece8 1383 if (ieee->pHTInfo->bCurrentRT2RTAggregation) {
94a79942
LF
1384 tag = skb_put(skb, realtek_ie_len);
1385 *tag++ = MFIE_TYPE_GENERIC;
1386 *tag++ = realtek_ie_len - 2;
9d92ece8 1387 memcpy(tag, realtek_ie_buf, realtek_ie_len - 2);
94a79942
LF
1388 }
1389 }
1390
9d92ece8
LF
1391 kfree(ieee->assocreq_ies);
1392 ieee->assocreq_ies = NULL;
94a79942
LF
1393 ies = &(hdr->info_element[0].id);
1394 ieee->assocreq_ies_len = (skb->data + skb->len) - ies;
1395 ieee->assocreq_ies = kmalloc(ieee->assocreq_ies_len, GFP_ATOMIC);
1396 if (ieee->assocreq_ies)
1397 memcpy(ieee->assocreq_ies, ies, ieee->assocreq_ies_len);
9d92ece8 1398 else {
d69d2054
MK
1399 netdev_info(ieee->dev,
1400 "%s()Warning: can't alloc memory for assocreq_ies\n",
1401 __func__);
94a79942
LF
1402 ieee->assocreq_ies_len = 0;
1403 }
94a79942
LF
1404 return skb;
1405}
1406
6957248f 1407static void rtllib_associate_abort(struct rtllib_device *ieee)
94a79942 1408{
94a79942 1409 unsigned long flags;
3a6b70c3 1410
94a79942
LF
1411 spin_lock_irqsave(&ieee->lock, flags);
1412
1413 ieee->associate_seq++;
1414
1415 /* don't scan, and avoid to have the RX path possibily
1416 * try again to associate. Even do not react to AUTH or
1417 * ASSOC response. Just wait for the retry wq to be scheduled.
1418 * Here we will check if there are good nets to associate
1419 * with, so we retry or just get back to NO_LINK and scanning
1420 */
9d92ece8 1421 if (ieee->state == RTLLIB_ASSOCIATING_AUTHENTICATING) {
e9fea2ec 1422 netdev_dbg(ieee->dev, "Authentication failed\n");
94a79942 1423 ieee->softmac_stats.no_auth_rs++;
9d92ece8 1424 } else {
e9fea2ec 1425 netdev_dbg(ieee->dev, "Association failed\n");
94a79942
LF
1426 ieee->softmac_stats.no_ass_rs++;
1427 }
1428
1429 ieee->state = RTLLIB_ASSOCIATING_RETRY;
1430
9d92ece8
LF
1431 queue_delayed_work_rsl(ieee->wq, &ieee->associate_retry_wq,
1432 RTLLIB_SOFTMAC_ASSOC_RETRY_TIME);
94a79942
LF
1433
1434 spin_unlock_irqrestore(&ieee->lock, flags);
1435}
1436
ec0dc6be 1437static void rtllib_associate_abort_cb(unsigned long dev)
94a79942
LF
1438{
1439 rtllib_associate_abort((struct rtllib_device *) dev);
1440}
1441
a0711c4d 1442static void rtllib_associate_step1(struct rtllib_device *ieee, u8 *daddr)
94a79942
LF
1443{
1444 struct rtllib_network *beacon = &ieee->current_network;
1445 struct sk_buff *skb;
1446
e9fea2ec 1447 netdev_dbg(ieee->dev, "Stopping scan\n");
94a79942
LF
1448
1449 ieee->softmac_stats.tx_auth_rq++;
1450
9d92ece8 1451 skb = rtllib_authentication_req(beacon, ieee, 0, daddr);
94a79942
LF
1452
1453 if (!skb)
1454 rtllib_associate_abort(ieee);
9d92ece8 1455 else {
dc986e3e 1456 ieee->state = RTLLIB_ASSOCIATING_AUTHENTICATING;
e9fea2ec 1457 netdev_dbg(ieee->dev, "Sending authentication request\n");
94a79942 1458 softmac_mgmt_xmit(skb, ieee);
9d92ece8 1459 if (!timer_pending(&ieee->associate_timer)) {
94a79942
LF
1460 ieee->associate_timer.expires = jiffies + (HZ / 2);
1461 add_timer(&ieee->associate_timer);
1462 }
1463 }
1464}
1465
35e33b04
MK
1466static void rtllib_auth_challenge(struct rtllib_device *ieee, u8 *challenge,
1467 int chlen)
94a79942
LF
1468{
1469 u8 *c;
1470 struct sk_buff *skb;
1471 struct rtllib_network *beacon = &ieee->current_network;
1472
1473 ieee->associate_seq++;
1474 ieee->softmac_stats.tx_auth_rq++;
1475
9d92ece8 1476 skb = rtllib_authentication_req(beacon, ieee, chlen + 2, beacon->bssid);
94a79942
LF
1477
1478 if (!skb)
1479 rtllib_associate_abort(ieee);
9d92ece8 1480 else {
94a79942
LF
1481 c = skb_put(skb, chlen+2);
1482 *(c++) = MFIE_TYPE_CHALLENGE;
1483 *(c++) = chlen;
1484 memcpy(c, challenge, chlen);
1485
e9fea2ec
MK
1486 netdev_dbg(ieee->dev,
1487 "Sending authentication challenge response\n");
94a79942 1488
9d92ece8
LF
1489 rtllib_encrypt_fragment(ieee, skb,
1490 sizeof(struct rtllib_hdr_3addr));
94a79942
LF
1491
1492 softmac_mgmt_xmit(skb, ieee);
1493 mod_timer(&ieee->associate_timer, jiffies + (HZ/2));
1494 }
1495 kfree(challenge);
1496}
1497
ec0dc6be 1498static void rtllib_associate_step2(struct rtllib_device *ieee)
94a79942 1499{
9d92ece8 1500 struct sk_buff *skb;
94a79942
LF
1501 struct rtllib_network *beacon = &ieee->current_network;
1502
1503 del_timer_sync(&ieee->associate_timer);
1504
e9fea2ec 1505 netdev_dbg(ieee->dev, "Sending association request\n");
94a79942
LF
1506
1507 ieee->softmac_stats.tx_ass_rq++;
9d92ece8 1508 skb = rtllib_association_req(beacon, ieee);
94a79942
LF
1509 if (!skb)
1510 rtllib_associate_abort(ieee);
9d92ece8 1511 else {
94a79942
LF
1512 softmac_mgmt_xmit(skb, ieee);
1513 mod_timer(&ieee->associate_timer, jiffies + (HZ/2));
1514 }
1515}
1516
ec0dc6be 1517static void rtllib_associate_complete_wq(void *data)
94a79942 1518{
9d92ece8
LF
1519 struct rtllib_device *ieee = (struct rtllib_device *)
1520 container_of_work_rsl(data,
1521 struct rtllib_device,
1522 associate_complete_wq);
bd60ac14 1523 struct rt_pwr_save_ctrl *pPSC = &(ieee->PowerSaveControl);
d69d2054 1524 netdev_info(ieee->dev, "Associated successfully\n");
4bb01423 1525 if (!ieee->is_silent_reset) {
d69d2054 1526 netdev_info(ieee->dev, "normal associate\n");
9d92ece8
LF
1527 notify_wx_assoc_event(ieee);
1528 }
94a79942
LF
1529
1530 netif_carrier_on(ieee->dev);
1531 ieee->is_roaming = false;
1532 if (rtllib_is_54g(&ieee->current_network) &&
9d92ece8 1533 (ieee->modulation & RTLLIB_OFDM_MODULATION)) {
94a79942 1534 ieee->rate = 108;
d69d2054 1535 netdev_info(ieee->dev, "Using G rates:%d\n", ieee->rate);
9d92ece8 1536 } else {
94a79942
LF
1537 ieee->rate = 22;
1538 ieee->SetWirelessMode(ieee->dev, IEEE_B);
d69d2054 1539 netdev_info(ieee->dev, "Using B rates:%d\n", ieee->rate);
94a79942 1540 }
9d92ece8 1541 if (ieee->pHTInfo->bCurrentHTSupport && ieee->pHTInfo->bEnableHT) {
d69d2054 1542 netdev_info(ieee->dev, "Successfully associated, ht enabled\n");
94a79942
LF
1543 HTOnAssocRsp(ieee);
1544 } else {
d69d2054
MK
1545 netdev_info(ieee->dev,
1546 "Successfully associated, ht not enabled(%d, %d)\n",
1547 ieee->pHTInfo->bCurrentHTSupport,
1548 ieee->pHTInfo->bEnableHT);
94a79942
LF
1549 memset(ieee->dot11HTOperationalRateSet, 0, 16);
1550 }
9d92ece8
LF
1551 ieee->LinkDetectInfo.SlotNum = 2 * (1 +
1552 ieee->current_network.beacon_interval /
1553 500);
1554 if (ieee->LinkDetectInfo.NumRecvBcnInPeriod == 0 ||
1555 ieee->LinkDetectInfo.NumRecvDataInPeriod == 0) {
94a79942 1556 ieee->LinkDetectInfo.NumRecvBcnInPeriod = 1;
9d92ece8 1557 ieee->LinkDetectInfo.NumRecvDataInPeriod = 1;
94a79942
LF
1558 }
1559 pPSC->LpsIdleCount = 0;
1560 ieee->link_change(ieee->dev);
1561
4bb01423 1562 if (ieee->is_silent_reset) {
d69d2054 1563 netdev_info(ieee->dev, "silent reset associate\n");
014e4c27 1564 ieee->is_silent_reset = false;
9d92ece8 1565 }
94a79942
LF
1566
1567 if (ieee->data_hard_resume)
1568 ieee->data_hard_resume(ieee->dev);
1569
94a79942
LF
1570}
1571
1572static void rtllib_sta_send_associnfo(struct rtllib_device *ieee)
1573{
94a79942
LF
1574}
1575
ec0dc6be 1576static void rtllib_associate_complete(struct rtllib_device *ieee)
94a79942
LF
1577{
1578 del_timer_sync(&ieee->associate_timer);
1579
1580 ieee->state = RTLLIB_LINKED;
1581 rtllib_sta_send_associnfo(ieee);
1582
1583 queue_work_rsl(ieee->wq, &ieee->associate_complete_wq);
1584}
1585
ec0dc6be 1586static void rtllib_associate_procedure_wq(void *data)
94a79942 1587{
9d92ece8
LF
1588 struct rtllib_device *ieee = container_of_dwork_rsl(data,
1589 struct rtllib_device,
1590 associate_procedure_wq);
94a79942
LF
1591 rtllib_stop_scan_syncro(ieee);
1592 if (ieee->rtllib_ips_leave != NULL)
1593 ieee->rtllib_ips_leave(ieee->dev);
1594 down(&ieee->wx_sem);
1595
1596 if (ieee->data_hard_stop)
1597 ieee->data_hard_stop(ieee->dev);
1598
1599 rtllib_stop_scan(ieee);
9d92ece8
LF
1600 RT_TRACE(COMP_DBG, "===>%s(), chan:%d\n", __func__,
1601 ieee->current_network.channel);
94a79942 1602 HTSetConnectBwMode(ieee, HT_CHANNEL_WIDTH_20, HT_EXTCHNL_OFFSET_NO_EXT);
9d92ece8 1603 if (ieee->eRFPowerState == eRfOff) {
0822339b
MK
1604 RT_TRACE(COMP_DBG,
1605 "=============>%s():Rf state is eRfOff, schedule ipsleave wq again,return\n",
1606 __func__);
94a79942
LF
1607 if (ieee->rtllib_ips_leave_wq != NULL)
1608 ieee->rtllib_ips_leave_wq(ieee->dev);
1609 up(&ieee->wx_sem);
1610 return;
1611 }
1612 ieee->associate_seq = 1;
1613
1614 rtllib_associate_step1(ieee, ieee->current_network.bssid);
1615
1616 up(&ieee->wx_sem);
1617}
1618
9d92ece8
LF
1619inline void rtllib_softmac_new_net(struct rtllib_device *ieee,
1620 struct rtllib_network *net)
94a79942 1621{
9d92ece8 1622 u8 tmp_ssid[IW_ESSID_MAX_SIZE + 1];
94a79942
LF
1623 int tmp_ssid_len = 0;
1624
9d92ece8 1625 short apset, ssidset, ssidbroad, apmatch, ssidmatch;
94a79942
LF
1626
1627 /* we are interested in new new only if we are not associated
1628 * and we are not associating / authenticating
1629 */
1630 if (ieee->state != RTLLIB_NOLINK)
1631 return;
1632
9d92ece8
LF
1633 if ((ieee->iw_mode == IW_MODE_INFRA) && !(net->capability &
1634 WLAN_CAPABILITY_ESS))
94a79942
LF
1635 return;
1636
9d92ece8
LF
1637 if ((ieee->iw_mode == IW_MODE_ADHOC) && !(net->capability &
1638 WLAN_CAPABILITY_IBSS))
94a79942
LF
1639 return;
1640
9d92ece8
LF
1641 if ((ieee->iw_mode == IW_MODE_ADHOC) &&
1642 (net->channel > ieee->ibss_maxjoin_chal))
94a79942 1643 return;
9d92ece8 1644 if (ieee->iw_mode == IW_MODE_INFRA || ieee->iw_mode == IW_MODE_ADHOC) {
94a79942
LF
1645 /* if the user specified the AP MAC, we need also the essid
1646 * This could be obtained by beacons or, if the network does not
1647 * broadcast it, it can be put manually.
1648 */
1649 apset = ieee->wap_set;
1650 ssidset = ieee->ssid_set;
9d92ece8
LF
1651 ssidbroad = !(net->ssid_len == 0 || net->ssid[0] == '\0');
1652 apmatch = (memcmp(ieee->current_network.bssid, net->bssid,
1653 ETH_ALEN) == 0);
1654 if (!ssidbroad) {
1655 ssidmatch = (ieee->current_network.ssid_len ==
1656 net->hidden_ssid_len) &&
1657 (!strncmp(ieee->current_network.ssid,
1658 net->hidden_ssid, net->hidden_ssid_len));
1659 if (net->hidden_ssid_len > 0) {
1660 strncpy(net->ssid, net->hidden_ssid,
1661 net->hidden_ssid_len);
1662 net->ssid_len = net->hidden_ssid_len;
1663 ssidbroad = 1;
1664 }
1665 } else
1666 ssidmatch =
1667 (ieee->current_network.ssid_len == net->ssid_len) &&
1668 (!strncmp(ieee->current_network.ssid, net->ssid,
1669 net->ssid_len));
1670
1671 /* if the user set the AP check if match.
1672 * if the network does not broadcast essid we check the
cd017123 1673 * user supplied ANY essid
9d92ece8
LF
1674 * if the network does broadcast and the user does not set
1675 * essid it is OK
1676 * if the network does broadcast and the user did set essid
1677 * check if essid match
1678 * if the ap is not set, check that the user set the bssid
db2c8da0 1679 * and the network does broadcast and that those two bssid match
9d92ece8
LF
1680 */
1681 if ((apset && apmatch &&
1682 ((ssidset && ssidbroad && ssidmatch) ||
1683 (ssidbroad && !ssidset) || (!ssidbroad && ssidset))) ||
1684 (!apset && ssidset && ssidbroad && ssidmatch) ||
1685 (ieee->is_roaming && ssidset && ssidbroad && ssidmatch)) {
1686 /* if the essid is hidden replace it with the
14b40d92
MK
1687 * essid provided by the user.
1688 */
9d92ece8
LF
1689 if (!ssidbroad) {
1690 strncpy(tmp_ssid, ieee->current_network.ssid,
1691 IW_ESSID_MAX_SIZE);
1692 tmp_ssid_len = ieee->current_network.ssid_len;
1693 }
1694 memcpy(&ieee->current_network, net,
1695 sizeof(struct rtllib_network));
1696 if (!ssidbroad) {
1697 strncpy(ieee->current_network.ssid, tmp_ssid,
1698 IW_ESSID_MAX_SIZE);
1699 ieee->current_network.ssid_len = tmp_ssid_len;
1700 }
d69d2054
MK
1701 netdev_info(ieee->dev,
1702 "Linking with %s,channel:%d, qos:%d, myHT:%d, networkHT:%d, mode:%x cur_net.flags:0x%x\n",
1703 ieee->current_network.ssid,
1704 ieee->current_network.channel,
1705 ieee->current_network.qos_data.supported,
1706 ieee->pHTInfo->bEnableHT,
1707 ieee->current_network.bssht.bdSupportHT,
1708 ieee->current_network.mode,
1709 ieee->current_network.flags);
9d92ece8
LF
1710
1711 if ((rtllib_act_scanning(ieee, false)) &&
1712 !(ieee->softmac_features & IEEE_SOFTMAC_SCAN))
1713 rtllib_stop_scan_syncro(ieee);
1714
9d92ece8
LF
1715 HTResetIOTSetting(ieee->pHTInfo);
1716 ieee->wmm_acm = 0;
1717 if (ieee->iw_mode == IW_MODE_INFRA) {
1718 /* Join the network for the first time */
1719 ieee->AsocRetryCount = 0;
1720 if ((ieee->current_network.qos_data.supported == 1) &&
35e33b04 1721 ieee->current_network.bssht.bdSupportHT)
9d92ece8
LF
1722 HTResetSelfAndSavePeerSetting(ieee,
1723 &(ieee->current_network));
1724 else
1725 ieee->pHTInfo->bCurrentHTSupport =
1726 false;
1727
1728 ieee->state = RTLLIB_ASSOCIATING;
1729 if (ieee->LedControlHandler != NULL)
1730 ieee->LedControlHandler(ieee->dev,
1731 LED_CTL_START_TO_LINK);
1732 queue_delayed_work_rsl(ieee->wq,
1733 &ieee->associate_procedure_wq, 0);
1734 } else {
1735 if (rtllib_is_54g(&ieee->current_network) &&
35e33b04
MK
1736 (ieee->modulation &
1737 RTLLIB_OFDM_MODULATION)) {
9d92ece8 1738 ieee->rate = 108;
35e33b04
MK
1739 ieee->SetWirelessMode(ieee->dev,
1740 IEEE_G);
1741 netdev_info(ieee->dev,
1742 "Using G rates\n");
94a79942 1743 } else {
9d92ece8 1744 ieee->rate = 22;
35e33b04
MK
1745 ieee->SetWirelessMode(ieee->dev,
1746 IEEE_B);
1747 netdev_info(ieee->dev,
1748 "Using B rates\n");
94a79942 1749 }
9d92ece8
LF
1750 memset(ieee->dot11HTOperationalRateSet, 0, 16);
1751 ieee->state = RTLLIB_LINKED;
1752 }
94a79942
LF
1753 }
1754 }
94a79942
LF
1755}
1756
6957248f 1757static void rtllib_softmac_check_all_nets(struct rtllib_device *ieee)
94a79942
LF
1758{
1759 unsigned long flags;
1760 struct rtllib_network *target;
1761
1762 spin_lock_irqsave(&ieee->lock, flags);
1763
1764 list_for_each_entry(target, &ieee->network_list, list) {
1765
1766 /* if the state become different that NOLINK means
1767 * we had found what we are searching for
1768 */
1769
1770 if (ieee->state != RTLLIB_NOLINK)
1771 break;
1772
9d92ece8
LF
1773 if (ieee->scan_age == 0 || time_after(target->last_scanned +
1774 ieee->scan_age, jiffies))
1775 rtllib_softmac_new_net(ieee, target);
94a79942 1776 }
94a79942 1777 spin_unlock_irqrestore(&ieee->lock, flags);
94a79942
LF
1778}
1779
e9fea2ec
MK
1780static inline u16 auth_parse(struct net_device *dev, struct sk_buff *skb,
1781 u8 **challenge, int *chlen)
94a79942
LF
1782{
1783 struct rtllib_authentication *a;
1784 u8 *t;
3a6b70c3 1785
9d92ece8
LF
1786 if (skb->len < (sizeof(struct rtllib_authentication) -
1787 sizeof(struct rtllib_info_element))) {
e9fea2ec 1788 netdev_dbg(dev, "invalid len in auth resp: %d\n", skb->len);
94a79942
LF
1789 return 0xcafe;
1790 }
1791 *challenge = NULL;
9d92ece8
LF
1792 a = (struct rtllib_authentication *) skb->data;
1793 if (skb->len > (sizeof(struct rtllib_authentication) + 3)) {
94a79942
LF
1794 t = skb->data + sizeof(struct rtllib_authentication);
1795
9d92ece8 1796 if (*(t++) == MFIE_TYPE_CHALLENGE) {
94a79942 1797 *chlen = *(t++);
6dea0da1 1798 *challenge = kmemdup(t, *chlen, GFP_ATOMIC);
ae053253
HP
1799 if (!*challenge)
1800 return -ENOMEM;
94a79942
LF
1801 }
1802 }
640f7d69 1803 return le16_to_cpu(a->status);
94a79942
LF
1804}
1805
e9fea2ec 1806static int auth_rq_parse(struct net_device *dev, struct sk_buff *skb, u8 *dest)
94a79942
LF
1807{
1808 struct rtllib_authentication *a;
1809
9d92ece8
LF
1810 if (skb->len < (sizeof(struct rtllib_authentication) -
1811 sizeof(struct rtllib_info_element))) {
e9fea2ec 1812 netdev_dbg(dev, "invalid len in auth request: %d\n", skb->len);
94a79942
LF
1813 return -1;
1814 }
9d92ece8 1815 a = (struct rtllib_authentication *) skb->data;
94a79942 1816
b57ceb19 1817 ether_addr_copy(dest, a->header.addr2);
94a79942
LF
1818
1819 if (le16_to_cpu(a->algorithm) != WLAN_AUTH_OPEN)
1820 return WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG;
1821
1822 return WLAN_STATUS_SUCCESS;
1823}
1824
9d92ece8
LF
1825static short probe_rq_parse(struct rtllib_device *ieee, struct sk_buff *skb,
1826 u8 *src)
94a79942
LF
1827{
1828 u8 *tag;
1829 u8 *skbend;
9d92ece8 1830 u8 *ssid = NULL;
94a79942 1831 u8 ssidlen = 0;
94a79942
LF
1832 struct rtllib_hdr_3addr *header =
1833 (struct rtllib_hdr_3addr *) skb->data;
9d92ece8 1834 bool bssid_match;
94a79942 1835
9d92ece8 1836 if (skb->len < sizeof(struct rtllib_hdr_3addr))
94a79942 1837 return -1; /* corrupted */
94a79942 1838
9d92ece8 1839 bssid_match =
c2f8b4ab 1840 (!ether_addr_equal(header->addr3, ieee->current_network.bssid)) &&
0c43e56c 1841 (!is_broadcast_ether_addr(header->addr3));
9d92ece8
LF
1842 if (bssid_match)
1843 return -1;
94a79942 1844
b57ceb19 1845 ether_addr_copy(src, header->addr2);
94a79942 1846
9d92ece8 1847 skbend = (u8 *)skb->data + skb->len;
94a79942 1848
9d92ece8 1849 tag = skb->data + sizeof(struct rtllib_hdr_3addr);
94a79942 1850
9d92ece8
LF
1851 while (tag + 1 < skbend) {
1852 if (*tag == 0) {
1853 ssid = tag + 2;
1854 ssidlen = *(tag + 1);
94a79942
LF
1855 break;
1856 }
1857 tag++; /* point to the len field */
1858 tag = tag + *(tag); /* point to the last data byte of the tag */
1859 tag++; /* point to the next tag */
1860 }
1861
9d92ece8
LF
1862 if (ssidlen == 0)
1863 return 1;
94a79942 1864
9d92ece8
LF
1865 if (!ssid)
1866 return 1; /* ssid not found in tagged param */
94a79942 1867
9d92ece8 1868 return !strncmp(ssid, ieee->current_network.ssid, ssidlen);
94a79942
LF
1869}
1870
e9fea2ec 1871static int assoc_rq_parse(struct net_device *dev, struct sk_buff *skb, u8 *dest)
94a79942
LF
1872{
1873 struct rtllib_assoc_request_frame *a;
1874
1875 if (skb->len < (sizeof(struct rtllib_assoc_request_frame) -
1876 sizeof(struct rtllib_info_element))) {
e9fea2ec 1877 netdev_dbg(dev, "invalid len in auth request:%d\n", skb->len);
94a79942
LF
1878 return -1;
1879 }
1880
9d92ece8 1881 a = (struct rtllib_assoc_request_frame *) skb->data;
94a79942 1882
b57ceb19 1883 ether_addr_copy(dest, a->header.addr2);
94a79942
LF
1884
1885 return 0;
1886}
1887
9d92ece8
LF
1888static inline u16 assoc_parse(struct rtllib_device *ieee, struct sk_buff *skb,
1889 int *aid)
94a79942
LF
1890{
1891 struct rtllib_assoc_response_frame *response_head;
1892 u16 status_code;
1893
9d92ece8 1894 if (skb->len < sizeof(struct rtllib_assoc_response_frame)) {
e9fea2ec
MK
1895 netdev_dbg(ieee->dev, "Invalid len in auth resp: %d\n",
1896 skb->len);
94a79942
LF
1897 return 0xcafe;
1898 }
1899
9d92ece8 1900 response_head = (struct rtllib_assoc_response_frame *) skb->data;
94a79942
LF
1901 *aid = le16_to_cpu(response_head->aid) & 0x3fff;
1902
1903 status_code = le16_to_cpu(response_head->status);
9d92ece8
LF
1904 if ((status_code == WLAN_STATUS_ASSOC_DENIED_RATES ||
1905 status_code == WLAN_STATUS_CAPS_UNSUPPORTED) &&
94a79942 1906 ((ieee->mode == IEEE_G) &&
9d92ece8
LF
1907 (ieee->current_network.mode == IEEE_N_24G) &&
1908 (ieee->AsocRetryCount++ < (RT_ASOC_RETRY_LIMIT-1)))) {
1909 ieee->pHTInfo->IOTAction |= HT_IOT_ACT_PURE_N_MODE;
1910 } else {
1911 ieee->AsocRetryCount = 0;
94a79942
LF
1912 }
1913
1914 return le16_to_cpu(response_head->status);
1915}
1916
1917void rtllib_rx_probe_rq(struct rtllib_device *ieee, struct sk_buff *skb)
1918{
1919 u8 dest[ETH_ALEN];
3a6b70c3 1920
94a79942 1921 ieee->softmac_stats.rx_probe_rq++;
9d92ece8 1922 if (probe_rq_parse(ieee, skb, dest) > 0) {
94a79942
LF
1923 ieee->softmac_stats.tx_probe_rs++;
1924 rtllib_resp_to_probe(ieee, dest);
94a79942
LF
1925 }
1926}
1927
9d92ece8
LF
1928static inline void rtllib_rx_auth_rq(struct rtllib_device *ieee,
1929 struct sk_buff *skb)
94a79942
LF
1930{
1931 u8 dest[ETH_ALEN];
1932 int status;
3a6b70c3 1933
94a79942
LF
1934 ieee->softmac_stats.rx_auth_rq++;
1935
e9fea2ec 1936 status = auth_rq_parse(ieee->dev, skb, dest);
9d92ece8 1937 if (status != -1)
94a79942 1938 rtllib_resp_to_auth(ieee, status, dest);
94a79942
LF
1939}
1940
9d92ece8
LF
1941static inline void rtllib_rx_assoc_rq(struct rtllib_device *ieee,
1942 struct sk_buff *skb)
94a79942 1943{
94a79942
LF
1944 u8 dest[ETH_ALEN];
1945
06c11107 1946
94a79942 1947 ieee->softmac_stats.rx_ass_rq++;
e9fea2ec 1948 if (assoc_rq_parse(ieee->dev, skb, dest) != -1)
94a79942 1949 rtllib_resp_to_assoc_rq(ieee, dest);
94a79942 1950
d69d2054 1951 netdev_info(ieee->dev, "New client associated: %pM\n", dest);
94a79942
LF
1952}
1953
94a79942
LF
1954void rtllib_sta_ps_send_null_frame(struct rtllib_device *ieee, short pwr)
1955{
1956
1957 struct sk_buff *buf = rtllib_null_func(ieee, pwr);
1958
1959 if (buf)
1960 softmac_ps_mgmt_xmit(buf, ieee);
94a79942 1961}
3b28499c 1962EXPORT_SYMBOL(rtllib_sta_ps_send_null_frame);
94a79942
LF
1963
1964void rtllib_sta_ps_send_pspoll_frame(struct rtllib_device *ieee)
1965{
94a79942
LF
1966 struct sk_buff *buf = rtllib_pspoll_func(ieee);
1967
1968 if (buf)
1969 softmac_ps_mgmt_xmit(buf, ieee);
94a79942
LF
1970}
1971
0dd56506 1972static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time)
94a79942
LF
1973{
1974 int timeout = ieee->ps_timeout;
1975 u8 dtim;
bd60ac14 1976 struct rt_pwr_save_ctrl *pPSC = &(ieee->PowerSaveControl);
94a79942 1977
9d92ece8
LF
1978 if (ieee->LPSDelayCnt) {
1979 ieee->LPSDelayCnt--;
94a79942
LF
1980 return 0;
1981 }
1982
1983 dtim = ieee->current_network.dtim_data;
1984 if (!(dtim & RTLLIB_DTIM_VALID))
1985 return 0;
1986 timeout = ieee->current_network.beacon_interval;
1987 ieee->current_network.dtim_data = RTLLIB_DTIM_INVALID;
9d92ece8 1988 /* there's no need to nofity AP that I find you buffered
14b40d92
MK
1989 * with broadcast packet
1990 */
94a79942
LF
1991 if (dtim & (RTLLIB_DTIM_UCAST & ieee->ps))
1992 return 2;
1993
8b9733c1
VT
1994 if (!time_after(jiffies,
1995 ieee->dev->trans_start + msecs_to_jiffies(timeout)))
94a79942 1996 return 0;
8b9733c1
VT
1997 if (!time_after(jiffies,
1998 ieee->last_rx_ps_time + msecs_to_jiffies(timeout)))
94a79942 1999 return 0;
9d92ece8
LF
2000 if ((ieee->softmac_features & IEEE_SOFTMAC_SINGLE_QUEUE) &&
2001 (ieee->mgmt_queue_tail != ieee->mgmt_queue_head))
94a79942
LF
2002 return 0;
2003
9d92ece8 2004 if (time) {
4bb01423 2005 if (ieee->bAwakePktSent) {
94a79942
LF
2006 pPSC->LPSAwakeIntvl = 1;
2007 } else {
35e33b04 2008 u8 MaxPeriod = 1;
94a79942
LF
2009
2010 if (pPSC->LPSAwakeIntvl == 0)
2011 pPSC->LPSAwakeIntvl = 1;
2012 if (pPSC->RegMaxLPSAwakeIntvl == 0)
2013 MaxPeriod = 1;
2014 else if (pPSC->RegMaxLPSAwakeIntvl == 0xFF)
2015 MaxPeriod = ieee->current_network.dtim_period;
2016 else
2017 MaxPeriod = pPSC->RegMaxLPSAwakeIntvl;
9d92ece8
LF
2018 pPSC->LPSAwakeIntvl = (pPSC->LPSAwakeIntvl >=
2019 MaxPeriod) ? MaxPeriod :
2020 (pPSC->LPSAwakeIntvl + 1);
94a79942
LF
2021 }
2022 {
2023 u8 LPSAwakeIntvl_tmp = 0;
2024 u8 period = ieee->current_network.dtim_period;
2025 u8 count = ieee->current_network.tim.tim_count;
3a6b70c3 2026
9d92ece8 2027 if (count == 0) {
94a79942 2028 if (pPSC->LPSAwakeIntvl > period)
9d92ece8
LF
2029 LPSAwakeIntvl_tmp = period +
2030 (pPSC->LPSAwakeIntvl -
2031 period) -
2032 ((pPSC->LPSAwakeIntvl-period) %
2033 period);
94a79942
LF
2034 else
2035 LPSAwakeIntvl_tmp = pPSC->LPSAwakeIntvl;
2036
2037 } else {
9d92ece8
LF
2038 if (pPSC->LPSAwakeIntvl >
2039 ieee->current_network.tim.tim_count)
2040 LPSAwakeIntvl_tmp = count +
2041 (pPSC->LPSAwakeIntvl - count) -
2042 ((pPSC->LPSAwakeIntvl-count)%period);
94a79942
LF
2043 else
2044 LPSAwakeIntvl_tmp = pPSC->LPSAwakeIntvl;
2045 }
2046
0dd56506 2047 *time = ieee->current_network.last_dtim_sta_time
8b9733c1 2048 + msecs_to_jiffies(ieee->current_network.beacon_interval *
9d92ece8 2049 LPSAwakeIntvl_tmp);
94a79942
LF
2050 }
2051 }
2052
94a79942
LF
2053 return 1;
2054
2055
2056}
2057
ec0dc6be 2058static inline void rtllib_sta_ps(struct rtllib_device *ieee)
94a79942 2059{
0dd56506 2060 u64 time;
94a79942 2061 short sleep;
9d92ece8 2062 unsigned long flags, flags2;
94a79942
LF
2063
2064 spin_lock_irqsave(&ieee->lock, flags);
2065
2066 if ((ieee->ps == RTLLIB_PS_DISABLED ||
9d92ece8
LF
2067 ieee->iw_mode != IW_MODE_INFRA ||
2068 ieee->state != RTLLIB_LINKED)) {
0822339b
MK
2069 RT_TRACE(COMP_DBG,
2070 "=====>%s(): no need to ps,wake up!! ieee->ps is %d, ieee->iw_mode is %d, ieee->state is %d\n",
2071 __func__, ieee->ps, ieee->iw_mode, ieee->state);
94a79942 2072 spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);
94a79942
LF
2073 rtllib_sta_wakeup(ieee, 1);
2074
2075 spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
2076 }
0dd56506 2077 sleep = rtllib_sta_ps_sleep(ieee, &time);
94a79942
LF
2078 /* 2 wake, 1 sleep, 0 do nothing */
2079 if (sleep == 0)
94a79942 2080 goto out;
9d92ece8
LF
2081 if (sleep == 1) {
2082 if (ieee->sta_sleep == LPS_IS_SLEEP) {
0dd56506 2083 ieee->enter_sleep_state(ieee->dev, time);
9d92ece8 2084 } else if (ieee->sta_sleep == LPS_IS_WAKE) {
94a79942
LF
2085 spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);
2086
9d92ece8 2087 if (ieee->ps_is_queue_empty(ieee->dev)) {
94a79942
LF
2088 ieee->sta_sleep = LPS_WAIT_NULL_DATA_SEND;
2089 ieee->ack_tx_to_ieee = 1;
9d92ece8 2090 rtllib_sta_ps_send_null_frame(ieee, 1);
0dd56506 2091 ieee->ps_time = time;
94a79942
LF
2092 }
2093 spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
2094
2095 }
2096
2097 ieee->bAwakePktSent = false;
2098
9d92ece8 2099 } else if (sleep == 2) {
94a79942
LF
2100 spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);
2101
9d92ece8 2102 rtllib_sta_wakeup(ieee, 1);
94a79942
LF
2103
2104 spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
2105 }
2106
2107out:
2108 spin_unlock_irqrestore(&ieee->lock, flags);
2109
2110}
2111
6957248f 2112static void rtllib_sta_wakeup(struct rtllib_device *ieee, short nl)
94a79942 2113{
9d92ece8
LF
2114 if (ieee->sta_sleep == LPS_IS_WAKE) {
2115 if (nl) {
2116 if (ieee->pHTInfo->IOTAction &
2117 HT_IOT_ACT_NULL_DATA_POWER_SAVING) {
94a79942
LF
2118 ieee->ack_tx_to_ieee = 1;
2119 rtllib_sta_ps_send_null_frame(ieee, 0);
9d92ece8 2120 } else {
94a79942
LF
2121 ieee->ack_tx_to_ieee = 1;
2122 rtllib_sta_ps_send_pspoll_frame(ieee);
2123 }
2124 }
2125 return;
2126
2127 }
2128
2129 if (ieee->sta_sleep == LPS_IS_SLEEP)
2130 ieee->sta_wake_up(ieee->dev);
9d92ece8
LF
2131 if (nl) {
2132 if (ieee->pHTInfo->IOTAction &
2133 HT_IOT_ACT_NULL_DATA_POWER_SAVING) {
94a79942 2134 ieee->ack_tx_to_ieee = 1;
94a79942 2135 rtllib_sta_ps_send_null_frame(ieee, 0);
9d92ece8 2136 } else {
94a79942
LF
2137 ieee->ack_tx_to_ieee = 1;
2138 ieee->polling = true;
2139 rtllib_sta_ps_send_pspoll_frame(ieee);
2140 }
2141
2142 } else {
2143 ieee->sta_sleep = LPS_IS_WAKE;
2144 ieee->polling = false;
2145 }
2146}
2147
2148void rtllib_ps_tx_ack(struct rtllib_device *ieee, short success)
2149{
9d92ece8 2150 unsigned long flags, flags2;
94a79942
LF
2151
2152 spin_lock_irqsave(&ieee->lock, flags);
2153
9d92ece8 2154 if (ieee->sta_sleep == LPS_WAIT_NULL_DATA_SEND) {
94a79942 2155 /* Null frame with PS bit set */
9d92ece8 2156 if (success) {
94a79942 2157 ieee->sta_sleep = LPS_IS_SLEEP;
0dd56506 2158 ieee->enter_sleep_state(ieee->dev, ieee->ps_time);
94a79942
LF
2159 }
2160 /* if the card report not success we can't be sure the AP
2161 * has not RXed so we can't assume the AP believe us awake
2162 */
2163 } else {/* 21112005 - tx again null without PS bit if lost */
2164
9d92ece8 2165 if ((ieee->sta_sleep == LPS_IS_WAKE) && !success) {
94a79942 2166 spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);
9d92ece8
LF
2167 if (ieee->pHTInfo->IOTAction &
2168 HT_IOT_ACT_NULL_DATA_POWER_SAVING)
94a79942 2169 rtllib_sta_ps_send_null_frame(ieee, 0);
94a79942 2170 else
94a79942 2171 rtllib_sta_ps_send_pspoll_frame(ieee);
94a79942
LF
2172 spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
2173 }
2174 }
2175 spin_unlock_irqrestore(&ieee->lock, flags);
2176}
3b28499c 2177EXPORT_SYMBOL(rtllib_ps_tx_ack);
94a79942 2178
35e33b04
MK
2179static void rtllib_process_action(struct rtllib_device *ieee,
2180 struct sk_buff *skb)
94a79942
LF
2181{
2182 struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data;
9d92ece8 2183 u8 *act = rtllib_get_payload((struct rtllib_hdr *)header);
94a79942
LF
2184 u8 category = 0;
2185
2186 if (act == NULL) {
11e672c3
MK
2187 netdev_warn(ieee->dev,
2188 "Error getting payload of action frame\n");
94a79942
LF
2189 return;
2190 }
2191
2192 category = *act;
9d92ece8 2193 act++;
94a79942 2194 switch (category) {
9d92ece8
LF
2195 case ACT_CAT_BA:
2196 switch (*act) {
2197 case ACT_ADDBAREQ:
2198 rtllib_rx_ADDBAReq(ieee, skb);
2199 break;
2200 case ACT_ADDBARSP:
2201 rtllib_rx_ADDBARsp(ieee, skb);
94a79942 2202 break;
9d92ece8
LF
2203 case ACT_DELBA:
2204 rtllib_rx_DELBA(ieee, skb);
94a79942 2205 break;
9d92ece8
LF
2206 }
2207 break;
2208 default:
2209 break;
94a79942 2210 }
94a79942
LF
2211}
2212
9d92ece8
LF
2213inline int rtllib_rx_assoc_resp(struct rtllib_device *ieee, struct sk_buff *skb,
2214 struct rtllib_rx_stats *rx_stats)
94a79942
LF
2215{
2216 u16 errcode;
2217 int aid;
9d92ece8 2218 u8 *ies;
94a79942
LF
2219 struct rtllib_assoc_response_frame *assoc_resp;
2220 struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data;
fa70ae09 2221 u16 frame_ctl = le16_to_cpu(header->frame_ctl);
94a79942 2222
e9fea2ec 2223 netdev_dbg(ieee->dev, "received [RE]ASSOCIATION RESPONSE (%d)\n",
fa70ae09 2224 WLAN_FC_GET_STYPE(frame_ctl));
94a79942
LF
2225
2226 if ((ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE) &&
9d92ece8
LF
2227 ieee->state == RTLLIB_ASSOCIATING_AUTHENTICATED &&
2228 (ieee->iw_mode == IW_MODE_INFRA)) {
2229 errcode = assoc_parse(ieee, skb, &aid);
4c29207a 2230 if (!errcode) {
9d92ece8
LF
2231 struct rtllib_network *network =
2232 kzalloc(sizeof(struct rtllib_network),
2233 GFP_ATOMIC);
94a79942
LF
2234
2235 if (!network)
2236 return 1;
9d92ece8 2237 ieee->state = RTLLIB_LINKED;
94a79942
LF
2238 ieee->assoc_id = aid;
2239 ieee->softmac_stats.rx_ass_ok++;
2240 /* station support qos */
9d92ece8
LF
2241 /* Let the register setting default with Legacy station */
2242 assoc_resp = (struct rtllib_assoc_response_frame *)skb->data;
94a79942 2243 if (ieee->current_network.qos_data.supported == 1) {
9d92ece8
LF
2244 if (rtllib_parse_info_param(ieee, assoc_resp->info_element,
2245 rx_stats->len - sizeof(*assoc_resp),
2246 network, rx_stats)) {
94a79942
LF
2247 kfree(network);
2248 return 1;
94a79942 2249 }
92db2a27
MC
2250 memcpy(ieee->pHTInfo->PeerHTCapBuf,
2251 network->bssht.bdHTCapBuf,
2252 network->bssht.bdHTCapLen);
2253 memcpy(ieee->pHTInfo->PeerHTInfoBuf,
2254 network->bssht.bdHTInfoBuf,
2255 network->bssht.bdHTInfoLen);
94a79942 2256 if (ieee->handle_assoc_response != NULL)
9d92ece8
LF
2257 ieee->handle_assoc_response(ieee->dev,
2258 (struct rtllib_assoc_response_frame *)header,
2259 network);
94a79942 2260 }
33750343 2261 kfree(network);
94a79942 2262
9d92ece8
LF
2263 kfree(ieee->assocresp_ies);
2264 ieee->assocresp_ies = NULL;
94a79942
LF
2265 ies = &(assoc_resp->info_element[0].id);
2266 ieee->assocresp_ies_len = (skb->data + skb->len) - ies;
9d92ece8
LF
2267 ieee->assocresp_ies = kmalloc(ieee->assocresp_ies_len,
2268 GFP_ATOMIC);
94a79942 2269 if (ieee->assocresp_ies)
9d92ece8
LF
2270 memcpy(ieee->assocresp_ies, ies,
2271 ieee->assocresp_ies_len);
2272 else {
d69d2054
MK
2273 netdev_info(ieee->dev,
2274 "%s()Warning: can't alloc memory for assocresp_ies\n",
2275 __func__);
94a79942
LF
2276 ieee->assocresp_ies_len = 0;
2277 }
2278 rtllib_associate_complete(ieee);
2279 } else {
2280 /* aid could not been allocated */
2281 ieee->softmac_stats.rx_ass_err++;
d69d2054
MK
2282 netdev_info(ieee->dev,
2283 "Association response status code 0x%x\n",
2284 errcode);
9d92ece8
LF
2285 if (ieee->AsocRetryCount < RT_ASOC_RETRY_LIMIT)
2286 queue_delayed_work_rsl(ieee->wq,
2287 &ieee->associate_procedure_wq, 0);
2288 else
94a79942 2289 rtllib_associate_abort(ieee);
94a79942
LF
2290 }
2291 }
94a79942
LF
2292 return 0;
2293}
2294
e8f05b0b 2295static void rtllib_rx_auth_resp(struct rtllib_device *ieee, struct sk_buff *skb)
94a79942
LF
2296{
2297 u16 errcode;
9d92ece8
LF
2298 u8 *challenge;
2299 int chlen = 0;
94a79942
LF
2300 bool bSupportNmode = true, bHalfSupportNmode = false;
2301
e9fea2ec 2302 errcode = auth_parse(ieee->dev, skb, &challenge, &chlen);
94a79942 2303
f7567e20 2304 if (errcode) {
e8f05b0b 2305 ieee->softmac_stats.rx_auth_rs_err++;
e8f05b0b 2306 netdev_info(ieee->dev,
e725fb6f 2307 "Authentication respose status code 0x%x", errcode);
e8f05b0b 2308 rtllib_associate_abort(ieee);
f7567e20
MK
2309 return;
2310 }
2311
2312 if (ieee->open_wep || !challenge) {
2313 ieee->state = RTLLIB_ASSOCIATING_AUTHENTICATED;
2314 ieee->softmac_stats.rx_auth_rs_ok++;
e725fb6f 2315 if (!(ieee->pHTInfo->IOTAction & HT_IOT_ACT_PURE_N_MODE)) {
f7567e20
MK
2316 if (!ieee->GetNmodeSupportBySecCfg(ieee->dev)) {
2317 if (IsHTHalfNmodeAPs(ieee)) {
2318 bSupportNmode = true;
2319 bHalfSupportNmode = true;
2320 } else {
2321 bSupportNmode = false;
2322 bHalfSupportNmode = false;
2323 }
2324 }
2325 }
14b40d92 2326 /* Dummy wirless mode setting to avoid encryption issue */
f7567e20
MK
2327 if (bSupportNmode) {
2328 ieee->SetWirelessMode(ieee->dev,
e725fb6f 2329 ieee->current_network.mode);
f7567e20
MK
2330 } else {
2331 /*TODO*/
e725fb6f 2332 ieee->SetWirelessMode(ieee->dev, IEEE_G);
f7567e20
MK
2333 }
2334
e725fb6f
MK
2335 if ((ieee->current_network.mode == IEEE_N_24G) &&
2336 bHalfSupportNmode) {
2337 netdev_info(ieee->dev, "======>enter half N mode\n");
2338 ieee->bHalfWirelessN24GMode = true;
2339 } else {
2340 ieee->bHalfWirelessN24GMode = false;
2341 }
f7567e20
MK
2342 rtllib_associate_step2(ieee);
2343 } else {
e725fb6f 2344 rtllib_auth_challenge(ieee, challenge, chlen);
e8f05b0b
MK
2345 }
2346}
94a79942 2347
e8f05b0b
MK
2348inline int rtllib_rx_auth(struct rtllib_device *ieee, struct sk_buff *skb,
2349 struct rtllib_rx_stats *rx_stats)
2350{
2351
2352 if (ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE) {
2353 if (ieee->state == RTLLIB_ASSOCIATING_AUTHENTICATING &&
2354 (ieee->iw_mode == IW_MODE_INFRA)) {
e9fea2ec
MK
2355 netdev_dbg(ieee->dev,
2356 "Received authentication response");
e8f05b0b 2357 rtllib_rx_auth_resp(ieee, skb);
9d92ece8 2358 } else if (ieee->iw_mode == IW_MODE_MASTER) {
94a79942
LF
2359 rtllib_rx_auth_rq(ieee, skb);
2360 }
2361 }
94a79942
LF
2362 return 0;
2363}
2364
2365inline int rtllib_rx_deauth(struct rtllib_device *ieee, struct sk_buff *skb)
2366{
2367 struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data;
fa70ae09 2368 u16 frame_ctl;
94a79942
LF
2369
2370 if (memcmp(header->addr3, ieee->current_network.bssid, ETH_ALEN) != 0)
2371 return 0;
2372
2373 /* FIXME for now repeat all the association procedure
14b40d92
MK
2374 * both for disassociation and deauthentication
2375 */
94a79942
LF
2376 if ((ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE) &&
2377 ieee->state == RTLLIB_LINKED &&
2378 (ieee->iw_mode == IW_MODE_INFRA)) {
fa70ae09 2379 frame_ctl = le16_to_cpu(header->frame_ctl);
d69d2054
MK
2380 netdev_info(ieee->dev,
2381 "==========>received disassoc/deauth(%x) frame, reason code:%x\n",
fa70ae09 2382 WLAN_FC_GET_STYPE(frame_ctl),
d69d2054 2383 ((struct rtllib_disassoc *)skb->data)->reason);
94a79942
LF
2384 ieee->state = RTLLIB_ASSOCIATING;
2385 ieee->softmac_stats.reassoc++;
2386 ieee->is_roaming = true;
2387 ieee->LinkDetectInfo.bBusyTraffic = false;
2388 rtllib_disassociate(ieee);
2389 RemovePeerTS(ieee, header->addr2);
2390 if (ieee->LedControlHandler != NULL)
9d92ece8
LF
2391 ieee->LedControlHandler(ieee->dev,
2392 LED_CTL_START_TO_LINK);
94a79942 2393
9d92ece8
LF
2394 if (!(ieee->rtllib_ap_sec_type(ieee) &
2395 (SEC_ALG_CCMP|SEC_ALG_TKIP)))
2396 queue_delayed_work_rsl(ieee->wq,
2397 &ieee->associate_procedure_wq, 5);
94a79942 2398 }
94a79942
LF
2399 return 0;
2400}
2401
9d92ece8
LF
2402inline int rtllib_rx_frame_softmac(struct rtllib_device *ieee,
2403 struct sk_buff *skb,
2404 struct rtllib_rx_stats *rx_stats, u16 type,
2405 u16 stype)
94a79942
LF
2406{
2407 struct rtllib_hdr_3addr *header = (struct rtllib_hdr_3addr *) skb->data;
fa70ae09 2408 u16 frame_ctl;
94a79942
LF
2409
2410 if (!ieee->proto_started)
2411 return 0;
2412
fa70ae09
GD
2413 frame_ctl = le16_to_cpu(header->frame_ctl);
2414 switch (WLAN_FC_GET_STYPE(frame_ctl)) {
9d92ece8
LF
2415 case RTLLIB_STYPE_ASSOC_RESP:
2416 case RTLLIB_STYPE_REASSOC_RESP:
2417 if (rtllib_rx_assoc_resp(ieee, skb, rx_stats) == 1)
2418 return 1;
2419 break;
2420 case RTLLIB_STYPE_ASSOC_REQ:
2421 case RTLLIB_STYPE_REASSOC_REQ:
2422 if ((ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE) &&
2423 ieee->iw_mode == IW_MODE_MASTER)
2424 rtllib_rx_assoc_rq(ieee, skb);
2425 break;
2426 case RTLLIB_STYPE_AUTH:
2427 rtllib_rx_auth(ieee, skb, rx_stats);
2428 break;
2429 case RTLLIB_STYPE_DISASSOC:
2430 case RTLLIB_STYPE_DEAUTH:
2431 rtllib_rx_deauth(ieee, skb);
2432 break;
2433 case RTLLIB_STYPE_MANAGE_ACT:
2434 rtllib_process_action(ieee, skb);
2435 break;
2436 default:
2437 return -1;
94a79942 2438 }
94a79942
LF
2439 return 0;
2440}
2441
db2c8da0 2442/* following are for a simpler TX queue management.
94a79942 2443 * Instead of using netif_[stop/wake]_queue the driver
cd017123
JM
2444 * will use these two functions (plus a reset one), that
2445 * will internally use the kernel netif_* and takes
94a79942
LF
2446 * care of the ieee802.11 fragmentation.
2447 * So the driver receives a fragment per time and might
cd017123
JM
2448 * call the stop function when it wants to not
2449 * have enough room to TX an entire packet.
2450 * This might be useful if each fragment needs it's own
94a79942 2451 * descriptor, thus just keep a total free memory > than
cd017123
JM
2452 * the max fragmentation threshold is not enough.. If the
2453 * ieee802.11 stack passed a TXB struct then you need
94a79942
LF
2454 * to keep N free descriptors where
2455 * N = MAX_PACKET_SIZE / MIN_FRAG_TRESHOLD
2456 * In this way you need just one and the 802.11 stack
2457 * will take care of buffering fragments and pass them to
2458 * to the driver later, when it wakes the queue.
2459 */
2460void rtllib_softmac_xmit(struct rtllib_txb *txb, struct rtllib_device *ieee)
2461{
2462
2463 unsigned int queue_index = txb->queue_index;
2464 unsigned long flags;
2465 int i;
3b83db43 2466 struct cb_desc *tcb_desc = NULL;
94a79942
LF
2467 unsigned long queue_len = 0;
2468
9d92ece8 2469 spin_lock_irqsave(&ieee->lock, flags);
94a79942
LF
2470
2471 /* called with 2nd parm 0, no tx mgmt lock required */
9d92ece8 2472 rtllib_sta_wakeup(ieee, 0);
94a79942
LF
2473
2474 /* update the tx status */
9d92ece8
LF
2475 tcb_desc = (struct cb_desc *)(txb->fragments[0]->cb +
2476 MAX_DEV_ADDR_SIZE);
2477 if (tcb_desc->bMulticast)
94a79942 2478 ieee->stats.multicast++;
4f6807e8 2479
9d92ece8 2480 /* if xmit available, just xmit it immediately, else just insert it to
14b40d92
MK
2481 * the wait queue
2482 */
94a79942 2483 for (i = 0; i < txb->nr_frags; i++) {
94a79942 2484 queue_len = skb_queue_len(&ieee->skb_waitQ[queue_index]);
e2ac0431 2485 if ((queue_len != 0) ||
9d92ece8
LF
2486 (!ieee->check_nic_enough_desc(ieee->dev, queue_index)) ||
2487 (ieee->queue_stop)) {
14b40d92
MK
2488 /* insert the skb packet to the wait queue
2489 * as for the completion function, it does not need
94a79942 2490 * to check it any more.
14b40d92 2491 */
94a79942 2492 if (queue_len < 200)
9d92ece8
LF
2493 skb_queue_tail(&ieee->skb_waitQ[queue_index],
2494 txb->fragments[i]);
2495 else
94a79942 2496 kfree_skb(txb->fragments[i]);
9d92ece8 2497 } else {
94a79942
LF
2498 ieee->softmac_data_hard_start_xmit(
2499 txb->fragments[i],
9d92ece8 2500 ieee->dev, ieee->rate);
94a79942
LF
2501 }
2502 }
4f6807e8 2503
94a79942
LF
2504 rtllib_txb_free(txb);
2505
9d92ece8 2506 spin_unlock_irqrestore(&ieee->lock, flags);
94a79942
LF
2507
2508}
2509
94a79942
LF
2510void rtllib_reset_queue(struct rtllib_device *ieee)
2511{
2512 unsigned long flags;
2513
9d92ece8 2514 spin_lock_irqsave(&ieee->lock, flags);
94a79942 2515 init_mgmt_queue(ieee);
9d92ece8 2516 if (ieee->tx_pending.txb) {
94a79942
LF
2517 rtllib_txb_free(ieee->tx_pending.txb);
2518 ieee->tx_pending.txb = NULL;
2519 }
2520 ieee->queue_stop = 0;
9d92ece8 2521 spin_unlock_irqrestore(&ieee->lock, flags);
94a79942
LF
2522
2523}
3b28499c 2524EXPORT_SYMBOL(rtllib_reset_queue);
94a79942 2525
94a79942
LF
2526void rtllib_stop_all_queues(struct rtllib_device *ieee)
2527{
94a79942 2528 unsigned int i;
3a6b70c3 2529
9d92ece8
LF
2530 for (i = 0; i < ieee->dev->num_tx_queues; i++)
2531 netdev_get_tx_queue(ieee->dev, i)->trans_start = jiffies;
94a79942 2532
94a79942 2533 netif_tx_stop_all_queues(ieee->dev);
94a79942
LF
2534}
2535
2536void rtllib_wake_all_queues(struct rtllib_device *ieee)
2537{
94a79942 2538 netif_tx_wake_all_queues(ieee->dev);
94a79942
LF
2539}
2540
2541inline void rtllib_randomize_cell(struct rtllib_device *ieee)
2542{
2543
71cd7913 2544 random_ether_addr(ieee->current_network.bssid);
94a79942
LF
2545}
2546
2547/* called in user context only */
6957248f 2548static void rtllib_start_master_bss(struct rtllib_device *ieee)
94a79942
LF
2549{
2550 ieee->assoc_id = 1;
2551
9d92ece8 2552 if (ieee->current_network.ssid_len == 0) {
94a79942
LF
2553 strncpy(ieee->current_network.ssid,
2554 RTLLIB_DEFAULT_TX_ESSID,
2555 IW_ESSID_MAX_SIZE);
2556
9d92ece8
LF
2557 ieee->current_network.ssid_len =
2558 strlen(RTLLIB_DEFAULT_TX_ESSID);
94a79942
LF
2559 ieee->ssid_set = 1;
2560 }
2561
b57ceb19 2562 ether_addr_copy(ieee->current_network.bssid, ieee->dev->dev_addr);
94a79942
LF
2563
2564 ieee->set_chan(ieee->dev, ieee->current_network.channel);
2565 ieee->state = RTLLIB_LINKED;
2566 ieee->link_change(ieee->dev);
2567 notify_wx_assoc_event(ieee);
2568
2569 if (ieee->data_hard_resume)
2570 ieee->data_hard_resume(ieee->dev);
2571
2572 netif_carrier_on(ieee->dev);
2573}
2574
ec0dc6be 2575static void rtllib_start_monitor_mode(struct rtllib_device *ieee)
94a79942
LF
2576{
2577 /* reset hardware status */
9d92ece8 2578 if (ieee->raw_tx) {
94a79942
LF
2579 if (ieee->data_hard_resume)
2580 ieee->data_hard_resume(ieee->dev);
2581
2582 netif_carrier_on(ieee->dev);
2583 }
2584}
2585
ec0dc6be 2586static void rtllib_start_ibss_wq(void *data)
94a79942 2587{
9d92ece8
LF
2588 struct rtllib_device *ieee = container_of_dwork_rsl(data,
2589 struct rtllib_device, start_ibss_wq);
94a79942
LF
2590 /* iwconfig mode ad-hoc will schedule this and return
2591 * on the other hand this will block further iwconfig SET
2592 * operations because of the wx_sem hold.
2593 * Anyway some most set operations set a flag to speed-up
2594 * (abort) this wq (when syncro scanning) before sleeping
2595 * on the semaphore
2596 */
9d92ece8 2597 if (!ieee->proto_started) {
d69d2054 2598 netdev_info(ieee->dev, "==========oh driver down return\n");
94a79942
LF
2599 return;
2600 }
2601 down(&ieee->wx_sem);
2602
9d92ece8
LF
2603 if (ieee->current_network.ssid_len == 0) {
2604 strcpy(ieee->current_network.ssid, RTLLIB_DEFAULT_TX_ESSID);
94a79942
LF
2605 ieee->current_network.ssid_len = strlen(RTLLIB_DEFAULT_TX_ESSID);
2606 ieee->ssid_set = 1;
2607 }
2608
2609 ieee->state = RTLLIB_NOLINK;
94a79942 2610 ieee->mode = IEEE_G;
94a79942
LF
2611 /* check if we have this cell in our network list */
2612 rtllib_softmac_check_all_nets(ieee);
2613
2614
cd017123 2615 /* if not then the state is not linked. Maybe the user switched to
94a79942
LF
2616 * ad-hoc mode just after being in monitor mode, or just after
2617 * being very few time in managed mode (so the card have had no
2618 * time to scan all the chans..) or we have just run up the iface
2619 * after setting ad-hoc mode. So we have to give another try..
2620 * Here, in ibss mode, should be safe to do this without extra care
cd017123 2621 * (in bss mode we had to make sure no-one tried to associate when
94a79942 2622 * we had just checked the ieee->state and we was going to start the
cd017123 2623 * scan) because in ibss mode the rtllib_new_net function, when
94a79942
LF
2624 * finds a good net, just set the ieee->state to RTLLIB_LINKED,
2625 * so, at worst, we waste a bit of time to initiate an unneeded syncro
2626 * scan, that will stop at the first round because it sees the state
2627 * associated.
2628 */
2629 if (ieee->state == RTLLIB_NOLINK)
2630 rtllib_start_scan_syncro(ieee, 0);
2631
2632 /* the network definitively is not here.. create a new cell */
9d92ece8 2633 if (ieee->state == RTLLIB_NOLINK) {
d69d2054 2634 netdev_info(ieee->dev, "creating new IBSS cell\n");
94a79942
LF
2635 ieee->current_network.channel = ieee->IbssStartChnl;
2636 if (!ieee->wap_set)
2637 rtllib_randomize_cell(ieee);
2638
9d92ece8 2639 if (ieee->modulation & RTLLIB_CCK_MODULATION) {
94a79942
LF
2640
2641 ieee->current_network.rates_len = 4;
2642
9d92ece8
LF
2643 ieee->current_network.rates[0] =
2644 RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_1MB;
2645 ieee->current_network.rates[1] =
2646 RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_2MB;
2647 ieee->current_network.rates[2] =
2648 RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_5MB;
2649 ieee->current_network.rates[3] =
2650 RTLLIB_BASIC_RATE_MASK | RTLLIB_CCK_RATE_11MB;
94a79942 2651
9d92ece8 2652 } else
94a79942
LF
2653 ieee->current_network.rates_len = 0;
2654
9d92ece8 2655 if (ieee->modulation & RTLLIB_OFDM_MODULATION) {
94a79942
LF
2656 ieee->current_network.rates_ex_len = 8;
2657
9d92ece8
LF
2658 ieee->current_network.rates_ex[0] =
2659 RTLLIB_OFDM_RATE_6MB;
2660 ieee->current_network.rates_ex[1] =
2661 RTLLIB_OFDM_RATE_9MB;
2662 ieee->current_network.rates_ex[2] =
2663 RTLLIB_OFDM_RATE_12MB;
2664 ieee->current_network.rates_ex[3] =
2665 RTLLIB_OFDM_RATE_18MB;
2666 ieee->current_network.rates_ex[4] =
2667 RTLLIB_OFDM_RATE_24MB;
2668 ieee->current_network.rates_ex[5] =
2669 RTLLIB_OFDM_RATE_36MB;
2670 ieee->current_network.rates_ex[6] =
2671 RTLLIB_OFDM_RATE_48MB;
2672 ieee->current_network.rates_ex[7] =
2673 RTLLIB_OFDM_RATE_54MB;
94a79942
LF
2674
2675 ieee->rate = 108;
9d92ece8 2676 } else {
94a79942
LF
2677 ieee->current_network.rates_ex_len = 0;
2678 ieee->rate = 22;
2679 }
2680
94a79942
LF
2681 ieee->current_network.qos_data.supported = 0;
2682 ieee->SetWirelessMode(ieee->dev, IEEE_G);
94a79942
LF
2683 ieee->current_network.mode = ieee->mode;
2684 ieee->current_network.atim_window = 0;
2685 ieee->current_network.capability = WLAN_CAPABILITY_IBSS;
2686 }
2687
d69d2054 2688 netdev_info(ieee->dev, "%s(): ieee->mode = %d\n", __func__, ieee->mode);
94a79942
LF
2689 if ((ieee->mode == IEEE_N_24G) || (ieee->mode == IEEE_N_5G))
2690 HTUseDefaultSetting(ieee);
2691 else
2692 ieee->pHTInfo->bCurrentHTSupport = false;
2693
9d92ece8
LF
2694 ieee->SetHwRegHandler(ieee->dev, HW_VAR_MEDIA_STATUS,
2695 (u8 *)(&ieee->state));
94a79942
LF
2696
2697 ieee->state = RTLLIB_LINKED;
2698 ieee->link_change(ieee->dev);
2699
2700 HTSetConnectBwMode(ieee, HT_CHANNEL_WIDTH_20, HT_EXTCHNL_OFFSET_NO_EXT);
2701 if (ieee->LedControlHandler != NULL)
9d92ece8 2702 ieee->LedControlHandler(ieee->dev, LED_CTL_LINK);
94a79942
LF
2703
2704 rtllib_start_send_beacons(ieee);
2705
2706 notify_wx_assoc_event(ieee);
2707
2708 if (ieee->data_hard_resume)
2709 ieee->data_hard_resume(ieee->dev);
2710
2711 netif_carrier_on(ieee->dev);
2712
2713 up(&ieee->wx_sem);
2714}
2715
2716inline void rtllib_start_ibss(struct rtllib_device *ieee)
2717{
8b9733c1
VT
2718 queue_delayed_work_rsl(ieee->wq, &ieee->start_ibss_wq,
2719 msecs_to_jiffies(150));
94a79942
LF
2720}
2721
2722/* this is called only in user context, with wx_sem held */
6957248f 2723static void rtllib_start_bss(struct rtllib_device *ieee)
94a79942
LF
2724{
2725 unsigned long flags;
3a6b70c3 2726
9d92ece8
LF
2727 if (IS_DOT11D_ENABLE(ieee) && !IS_COUNTRY_IE_VALID(ieee)) {
2728 if (!ieee->bGlobalDomain)
94a79942 2729 return;
94a79942 2730 }
94a79942
LF
2731 /* check if we have already found the net we
2732 * are interested in (if any).
2733 * if not (we are disassociated and we are not
2734 * in associating / authenticating phase) start the background scanning.
2735 */
2736 rtllib_softmac_check_all_nets(ieee);
2737
2738 /* ensure no-one start an associating process (thus setting
2739 * the ieee->state to rtllib_ASSOCIATING) while we
cd017123 2740 * have just checked it and we are going to enable scan.
94a79942
LF
2741 * The rtllib_new_net function is always called with
2742 * lock held (from both rtllib_softmac_check_all_nets and
2743 * the rx path), so we cannot be in the middle of such function
2744 */
2745 spin_lock_irqsave(&ieee->lock, flags);
2746
9d92ece8 2747 if (ieee->state == RTLLIB_NOLINK)
94a79942 2748 rtllib_start_scan(ieee);
94a79942
LF
2749 spin_unlock_irqrestore(&ieee->lock, flags);
2750}
2751
ec0dc6be 2752static void rtllib_link_change_wq(void *data)
94a79942 2753{
9d92ece8
LF
2754 struct rtllib_device *ieee = container_of_dwork_rsl(data,
2755 struct rtllib_device, link_change_wq);
94a79942
LF
2756 ieee->link_change(ieee->dev);
2757}
2758/* called only in userspace context */
2759void rtllib_disassociate(struct rtllib_device *ieee)
2760{
2761 netif_carrier_off(ieee->dev);
2762 if (ieee->softmac_features & IEEE_SOFTMAC_TX_QUEUE)
fc00af0c 2763 rtllib_reset_queue(ieee);
94a79942
LF
2764
2765 if (ieee->data_hard_stop)
fc00af0c 2766 ieee->data_hard_stop(ieee->dev);
94a79942
LF
2767 if (IS_DOT11D_ENABLE(ieee))
2768 Dot11d_Reset(ieee);
94a79942
LF
2769 ieee->state = RTLLIB_NOLINK;
2770 ieee->is_set_key = false;
2771 ieee->wap_set = 0;
2772
2773 queue_delayed_work_rsl(ieee->wq, &ieee->link_change_wq, 0);
2774
94a79942 2775 notify_wx_assoc_event(ieee);
94a79942
LF
2776}
2777
ec0dc6be 2778static void rtllib_associate_retry_wq(void *data)
94a79942 2779{
9d92ece8
LF
2780 struct rtllib_device *ieee = container_of_dwork_rsl(data,
2781 struct rtllib_device, associate_retry_wq);
94a79942
LF
2782 unsigned long flags;
2783
2784 down(&ieee->wx_sem);
2785 if (!ieee->proto_started)
2786 goto exit;
2787
2788 if (ieee->state != RTLLIB_ASSOCIATING_RETRY)
2789 goto exit;
2790
2791 /* until we do not set the state to RTLLIB_NOLINK
14b40d92
MK
2792 * there are no possibility to have someone else trying
2793 * to start an association procedure (we get here with
2794 * ieee->state = RTLLIB_ASSOCIATING).
2795 * When we set the state to RTLLIB_NOLINK it is possible
2796 * that the RX path run an attempt to associate, but
2797 * both rtllib_softmac_check_all_nets and the
2798 * RX path works with ieee->lock held so there are no
2799 * problems. If we are still disassociated then start a scan.
2800 * the lock here is necessary to ensure no one try to start
2801 * an association procedure when we have just checked the
2802 * state and we are going to start the scan.
2803 */
94a79942
LF
2804 ieee->beinretry = true;
2805 ieee->state = RTLLIB_NOLINK;
2806
2807 rtllib_softmac_check_all_nets(ieee);
2808
2809 spin_lock_irqsave(&ieee->lock, flags);
2810
2811 if (ieee->state == RTLLIB_NOLINK)
94a79942 2812 rtllib_start_scan(ieee);
94a79942
LF
2813 spin_unlock_irqrestore(&ieee->lock, flags);
2814
2815 ieee->beinretry = false;
2816exit:
2817 up(&ieee->wx_sem);
2818}
2819
6957248f 2820static struct sk_buff *rtllib_get_beacon_(struct rtllib_device *ieee)
94a79942 2821{
06c11107 2822 const u8 broadcast_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
94a79942
LF
2823
2824 struct sk_buff *skb;
2825 struct rtllib_probe_response *b;
3a6b70c3 2826
94a79942
LF
2827 skb = rtllib_probe_resp(ieee, broadcast_addr);
2828
2829 if (!skb)
2830 return NULL;
2831
2832 b = (struct rtllib_probe_response *) skb->data;
2833 b->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_BEACON);
2834
2835 return skb;
2836
2837}
2838
2839struct sk_buff *rtllib_get_beacon(struct rtllib_device *ieee)
2840{
2841 struct sk_buff *skb;
2842 struct rtllib_probe_response *b;
2843
2844 skb = rtllib_get_beacon_(ieee);
2845 if (!skb)
2846 return NULL;
2847
2848 b = (struct rtllib_probe_response *) skb->data;
2849 b->header.seq_ctl = cpu_to_le16(ieee->seq_ctrl[0] << 4);
2850
2851 if (ieee->seq_ctrl[0] == 0xFFF)
2852 ieee->seq_ctrl[0] = 0;
2853 else
2854 ieee->seq_ctrl[0]++;
2855
2856 return skb;
2857}
3b28499c 2858EXPORT_SYMBOL(rtllib_get_beacon);
94a79942 2859
9d92ece8
LF
2860void rtllib_softmac_stop_protocol(struct rtllib_device *ieee, u8 mesh_flag,
2861 u8 shutdown)
94a79942
LF
2862{
2863 rtllib_stop_scan_syncro(ieee);
2864 down(&ieee->wx_sem);
9d92ece8 2865 rtllib_stop_protocol(ieee, shutdown);
94a79942
LF
2866 up(&ieee->wx_sem);
2867}
3b28499c 2868EXPORT_SYMBOL(rtllib_softmac_stop_protocol);
94a79942
LF
2869
2870
2871void rtllib_stop_protocol(struct rtllib_device *ieee, u8 shutdown)
2872{
2873 if (!ieee->proto_started)
2874 return;
2875
9d92ece8
LF
2876 if (shutdown) {
2877 ieee->proto_started = 0;
94a79942
LF
2878 ieee->proto_stoppping = 1;
2879 if (ieee->rtllib_ips_leave != NULL)
2880 ieee->rtllib_ips_leave(ieee->dev);
2881 }
2882
2883 rtllib_stop_send_beacons(ieee);
2884 del_timer_sync(&ieee->associate_timer);
2885 cancel_delayed_work(&ieee->associate_retry_wq);
2886 cancel_delayed_work(&ieee->start_ibss_wq);
2887 cancel_delayed_work(&ieee->link_change_wq);
2888 rtllib_stop_scan(ieee);
2889
2890 if (ieee->state <= RTLLIB_ASSOCIATING_AUTHENTICATED)
2891 ieee->state = RTLLIB_NOLINK;
2892
9d92ece8 2893 if (ieee->state == RTLLIB_LINKED) {
94a79942 2894 if (ieee->iw_mode == IW_MODE_INFRA)
acd442db 2895 SendDisassociation(ieee, 1, WLAN_REASON_DEAUTH_LEAVING);
94a79942
LF
2896 rtllib_disassociate(ieee);
2897 }
2898
9d92ece8 2899 if (shutdown) {
94a79942
LF
2900 RemoveAllTS(ieee);
2901 ieee->proto_stoppping = 0;
2902 }
9d92ece8
LF
2903 kfree(ieee->assocreq_ies);
2904 ieee->assocreq_ies = NULL;
2905 ieee->assocreq_ies_len = 0;
2906 kfree(ieee->assocresp_ies);
2907 ieee->assocresp_ies = NULL;
2908 ieee->assocresp_ies_len = 0;
94a79942
LF
2909}
2910
2911void rtllib_softmac_start_protocol(struct rtllib_device *ieee, u8 mesh_flag)
2912{
2913 down(&ieee->wx_sem);
2914 rtllib_start_protocol(ieee);
2915 up(&ieee->wx_sem);
2916}
3b28499c 2917EXPORT_SYMBOL(rtllib_softmac_start_protocol);
94a79942
LF
2918
2919void rtllib_start_protocol(struct rtllib_device *ieee)
2920{
2921 short ch = 0;
2922 int i = 0;
2923
2924 rtllib_update_active_chan_map(ieee);
2925
2926 if (ieee->proto_started)
2927 return;
2928
2929 ieee->proto_started = 1;
2930
2931 if (ieee->current_network.channel == 0) {
2932 do {
2933 ch++;
2934 if (ch > MAX_CHANNEL_NUMBER)
2935 return; /* no channel found */
9d92ece8 2936 } while (!ieee->active_channel_map[ch]);
94a79942
LF
2937 ieee->current_network.channel = ch;
2938 }
2939
2940 if (ieee->current_network.beacon_interval == 0)
2941 ieee->current_network.beacon_interval = 100;
2942
2943 for (i = 0; i < 17; i++) {
2944 ieee->last_rxseq_num[i] = -1;
2945 ieee->last_rxfrag_num[i] = -1;
2946 ieee->last_packet_time[i] = 0;
2947 }
2948
2949 if (ieee->UpdateBeaconInterruptHandler)
2950 ieee->UpdateBeaconInterruptHandler(ieee->dev, false);
2951
2952 ieee->wmm_acm = 0;
2953 /* if the user set the MAC of the ad-hoc cell and then
2954 * switch to managed mode, shall we make sure that association
2955 * attempts does not fail just because the user provide the essid
2956 * and the nic is still checking for the AP MAC ??
2957 */
2958 if (ieee->iw_mode == IW_MODE_INFRA) {
2959 rtllib_start_bss(ieee);
2960 } else if (ieee->iw_mode == IW_MODE_ADHOC) {
2961 if (ieee->UpdateBeaconInterruptHandler)
2962 ieee->UpdateBeaconInterruptHandler(ieee->dev, true);
2963
2964 rtllib_start_ibss(ieee);
2965
2966 } else if (ieee->iw_mode == IW_MODE_MASTER) {
2967 rtllib_start_master_bss(ieee);
2968 } else if (ieee->iw_mode == IW_MODE_MONITOR) {
2969 rtllib_start_monitor_mode(ieee);
2970 }
2971}
2972
2973void rtllib_softmac_init(struct rtllib_device *ieee)
2974{
2975 int i;
3a6b70c3 2976
94a79942
LF
2977 memset(&ieee->current_network, 0, sizeof(struct rtllib_network));
2978
2979 ieee->state = RTLLIB_NOLINK;
9d92ece8
LF
2980 for (i = 0; i < 5; i++)
2981 ieee->seq_ctrl[i] = 0;
929fa2a4 2982 ieee->pDot11dInfo = kzalloc(sizeof(struct rt_dot11d_info), GFP_ATOMIC);
94a79942 2983 if (!ieee->pDot11dInfo)
11e672c3 2984 netdev_err(ieee->dev, "Can't alloc memory for DOT11D\n");
94a79942
LF
2985 ieee->LinkDetectInfo.SlotIndex = 0;
2986 ieee->LinkDetectInfo.SlotNum = 2;
9d92ece8
LF
2987 ieee->LinkDetectInfo.NumRecvBcnInPeriod = 0;
2988 ieee->LinkDetectInfo.NumRecvDataInPeriod = 0;
2989 ieee->LinkDetectInfo.NumTxOkInPeriod = 0;
2990 ieee->LinkDetectInfo.NumRxOkInPeriod = 0;
2991 ieee->LinkDetectInfo.NumRxUnicastOkInPeriod = 0;
94a79942
LF
2992 ieee->bIsAggregateFrame = false;
2993 ieee->assoc_id = 0;
2994 ieee->queue_stop = 0;
2995 ieee->scanning_continue = 0;
2996 ieee->softmac_features = 0;
2997 ieee->wap_set = 0;
2998 ieee->ssid_set = 0;
2999 ieee->proto_started = 0;
3000 ieee->proto_stoppping = 0;
3001 ieee->basic_rate = RTLLIB_DEFAULT_BASIC_RATE;
3002 ieee->rate = 22;
3003 ieee->ps = RTLLIB_PS_DISABLED;
3004 ieee->sta_sleep = LPS_IS_WAKE;
3005
9d92ece8
LF
3006 ieee->Regdot11HTOperationalRateSet[0] = 0xff;
3007 ieee->Regdot11HTOperationalRateSet[1] = 0xff;
3008 ieee->Regdot11HTOperationalRateSet[4] = 0x01;
94a79942 3009
9d92ece8
LF
3010 ieee->Regdot11TxHTOperationalRateSet[0] = 0xff;
3011 ieee->Regdot11TxHTOperationalRateSet[1] = 0xff;
3012 ieee->Regdot11TxHTOperationalRateSet[4] = 0x01;
94a79942
LF
3013
3014 ieee->FirstIe_InScan = false;
3015 ieee->actscanning = false;
3016 ieee->beinretry = false;
3017 ieee->is_set_key = false;
3018 init_mgmt_queue(ieee);
3019
94a79942
LF
3020 ieee->tx_pending.txb = NULL;
3021
2e59e40d 3022 setup_timer(&ieee->associate_timer,
94a79942
LF
3023 rtllib_associate_abort_cb,
3024 (unsigned long) ieee);
3025
2e59e40d 3026 setup_timer(&ieee->beacon_timer,
94a79942
LF
3027 rtllib_send_beacon_cb,
3028 (unsigned long) ieee);
3029
94a79942 3030
94a79942 3031 ieee->wq = create_workqueue(DRV_NAME);
94a79942 3032
9d92ece8
LF
3033 INIT_DELAYED_WORK_RSL(&ieee->link_change_wq,
3034 (void *)rtllib_link_change_wq, ieee);
3035 INIT_DELAYED_WORK_RSL(&ieee->start_ibss_wq,
3036 (void *)rtllib_start_ibss_wq, ieee);
3037 INIT_WORK_RSL(&ieee->associate_complete_wq,
3038 (void *)rtllib_associate_complete_wq, ieee);
3039 INIT_DELAYED_WORK_RSL(&ieee->associate_procedure_wq,
3040 (void *)rtllib_associate_procedure_wq, ieee);
3041 INIT_DELAYED_WORK_RSL(&ieee->softmac_scan_wq,
3042 (void *)rtllib_softmac_scan_wq, ieee);
9d92ece8
LF
3043 INIT_DELAYED_WORK_RSL(&ieee->associate_retry_wq,
3044 (void *)rtllib_associate_retry_wq, ieee);
3045 INIT_WORK_RSL(&ieee->wx_sync_scan_wq, (void *)rtllib_wx_sync_scan_wq,
3046 ieee);
94a79942
LF
3047
3048 sema_init(&ieee->wx_sem, 1);
3049 sema_init(&ieee->scan_sem, 1);
9d92ece8 3050 sema_init(&ieee->ips_sem, 1);
94a79942
LF
3051
3052 spin_lock_init(&ieee->mgmt_tx_lock);
3053 spin_lock_init(&ieee->beacon_lock);
3054
3055 tasklet_init(&ieee->ps_task,
3056 (void(*)(unsigned long)) rtllib_sta_ps,
3057 (unsigned long)ieee);
3058
3059}
3060
3061void rtllib_softmac_free(struct rtllib_device *ieee)
3062{
3063 down(&ieee->wx_sem);
d7613e53
LF
3064 kfree(ieee->pDot11dInfo);
3065 ieee->pDot11dInfo = NULL;
94a79942
LF
3066 del_timer_sync(&ieee->associate_timer);
3067
94a79942
LF
3068 cancel_delayed_work(&ieee->associate_retry_wq);
3069 destroy_workqueue(ieee->wq);
94a79942 3070 up(&ieee->wx_sem);
876e20d3 3071 tasklet_kill(&ieee->ps_task);
94a79942
LF
3072}
3073
3074/********************************************************
9d92ece8
LF
3075 * Start of WPA code. *
3076 * this is stolen from the ipw2200 driver *
94a79942
LF
3077 ********************************************************/
3078
3079
3080static int rtllib_wpa_enable(struct rtllib_device *ieee, int value)
3081{
3082 /* This is called when wpa_supplicant loads and closes the driver
14b40d92
MK
3083 * interface.
3084 */
d69d2054 3085 netdev_info(ieee->dev, "%s WPA\n", value ? "enabling" : "disabling");
94a79942 3086 ieee->wpa_enabled = value;
3e3148c5 3087 eth_zero_addr(ieee->ap_mac_addr);
94a79942
LF
3088 return 0;
3089}
3090
3091
ec0dc6be
LF
3092static void rtllib_wpa_assoc_frame(struct rtllib_device *ieee, char *wpa_ie,
3093 int wpa_ie_len)
94a79942
LF
3094{
3095 /* make sure WPA is enabled */
3096 rtllib_wpa_enable(ieee, 1);
3097
3098 rtllib_disassociate(ieee);
3099}
3100
3101
3102static int rtllib_wpa_mlme(struct rtllib_device *ieee, int command, int reason)
3103{
3104
3105 int ret = 0;
3106
3107 switch (command) {
3108 case IEEE_MLME_STA_DEAUTH:
3109 break;
3110
3111 case IEEE_MLME_STA_DISASSOC:
3112 rtllib_disassociate(ieee);
3113 break;
3114
3115 default:
d69d2054 3116 netdev_info(ieee->dev, "Unknown MLME request: %d\n", command);
94a79942
LF
3117 ret = -EOPNOTSUPP;
3118 }
3119
3120 return ret;
3121}
3122
3123
3124static int rtllib_wpa_set_wpa_ie(struct rtllib_device *ieee,
3125 struct ieee_param *param, int plen)
3126{
3127 u8 *buf;
3128
3129 if (param->u.wpa_ie.len > MAX_WPA_IE_LEN ||
3130 (param->u.wpa_ie.len && param->u.wpa_ie.data == NULL))
3131 return -EINVAL;
3132
3133 if (param->u.wpa_ie.len) {
d9317533
TM
3134 buf = kmemdup(param->u.wpa_ie.data, param->u.wpa_ie.len,
3135 GFP_KERNEL);
94a79942
LF
3136 if (buf == NULL)
3137 return -ENOMEM;
3138
94a79942
LF
3139 kfree(ieee->wpa_ie);
3140 ieee->wpa_ie = buf;
3141 ieee->wpa_ie_len = param->u.wpa_ie.len;
3142 } else {
3143 kfree(ieee->wpa_ie);
3144 ieee->wpa_ie = NULL;
3145 ieee->wpa_ie_len = 0;
3146 }
3147
3148 rtllib_wpa_assoc_frame(ieee, ieee->wpa_ie, ieee->wpa_ie_len);
3149 return 0;
3150}
3151
3152#define AUTH_ALG_OPEN_SYSTEM 0x1
3153#define AUTH_ALG_SHARED_KEY 0x2
3154#define AUTH_ALG_LEAP 0x4
3155static int rtllib_wpa_set_auth_algs(struct rtllib_device *ieee, int value)
3156{
3157
3158 struct rtllib_security sec = {
3159 .flags = SEC_AUTH_MODE,
3160 };
94a79942
LF
3161
3162 if (value & AUTH_ALG_SHARED_KEY) {
3163 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
3164 ieee->open_wep = 0;
3165 ieee->auth_mode = 1;
9d92ece8 3166 } else if (value & AUTH_ALG_OPEN_SYSTEM) {
94a79942
LF
3167 sec.auth_mode = WLAN_AUTH_OPEN;
3168 ieee->open_wep = 1;
3169 ieee->auth_mode = 0;
9d92ece8 3170 } else if (value & AUTH_ALG_LEAP) {
94a79942
LF
3171 sec.auth_mode = WLAN_AUTH_LEAP >> 6;
3172 ieee->open_wep = 1;
3173 ieee->auth_mode = 2;
3174 }
3175
3176
3177 if (ieee->set_security)
3178 ieee->set_security(ieee->dev, &sec);
3179
4764ca98 3180 return 0;
94a79942
LF
3181}
3182
3183static int rtllib_wpa_set_param(struct rtllib_device *ieee, u8 name, u32 value)
3184{
9d92ece8 3185 int ret = 0;
94a79942
LF
3186 unsigned long flags;
3187
3188 switch (name) {
3189 case IEEE_PARAM_WPA_ENABLED:
3190 ret = rtllib_wpa_enable(ieee, value);
3191 break;
3192
3193 case IEEE_PARAM_TKIP_COUNTERMEASURES:
9d92ece8 3194 ieee->tkip_countermeasures = value;
94a79942
LF
3195 break;
3196
9d92ece8
LF
3197 case IEEE_PARAM_DROP_UNENCRYPTED:
3198 {
94a79942
LF
3199 /* HACK:
3200 *
3201 * wpa_supplicant calls set_wpa_enabled when the driver
3202 * is loaded and unloaded, regardless of if WPA is being
3203 * used. No other calls are made which can be used to
3204 * determine if encryption will be used or not prior to
3205 * association being expected. If encryption is not being
3206 * used, drop_unencrypted is set to false, else true -- we
3207 * can use this to determine if the CAP_PRIVACY_ON bit should
3208 * be set.
3209 */
3210 struct rtllib_security sec = {
3211 .flags = SEC_ENABLED,
3212 .enabled = value,
3213 };
3214 ieee->drop_unencrypted = value;
3215 /* We only change SEC_LEVEL for open mode. Others
3216 * are set by ipw_wpa_set_encryption.
3217 */
3218 if (!value) {
3219 sec.flags |= SEC_LEVEL;
3220 sec.level = SEC_LEVEL_0;
9d92ece8 3221 } else {
94a79942
LF
3222 sec.flags |= SEC_LEVEL;
3223 sec.level = SEC_LEVEL_1;
3224 }
3225 if (ieee->set_security)
3226 ieee->set_security(ieee->dev, &sec);
3227 break;
3228 }
3229
3230 case IEEE_PARAM_PRIVACY_INVOKED:
9d92ece8 3231 ieee->privacy_invoked = value;
94a79942
LF
3232 break;
3233
3234 case IEEE_PARAM_AUTH_ALGS:
3235 ret = rtllib_wpa_set_auth_algs(ieee, value);
3236 break;
3237
3238 case IEEE_PARAM_IEEE_802_1X:
9d92ece8 3239 ieee->ieee802_1x = value;
94a79942
LF
3240 break;
3241 case IEEE_PARAM_WPAX_SELECT:
9d92ece8
LF
3242 spin_lock_irqsave(&ieee->wpax_suitlist_lock, flags);
3243 spin_unlock_irqrestore(&ieee->wpax_suitlist_lock, flags);
94a79942
LF
3244 break;
3245
3246 default:
d69d2054 3247 netdev_info(ieee->dev, "Unknown WPA param: %d\n", name);
94a79942
LF
3248 ret = -EOPNOTSUPP;
3249 }
3250
3251 return ret;
3252}
3253
3254/* implementation borrowed from hostap driver */
3255static int rtllib_wpa_set_encryption(struct rtllib_device *ieee,
9d92ece8
LF
3256 struct ieee_param *param, int param_len,
3257 u8 is_mesh)
94a79942
LF
3258{
3259 int ret = 0;
32c44cb5
SM
3260 struct lib80211_crypto_ops *ops;
3261 struct lib80211_crypt_data **crypt;
94a79942
LF
3262
3263 struct rtllib_security sec = {
3264 .flags = 0,
3265 };
3266
3267 param->u.crypt.err = 0;
3268 param->u.crypt.alg[IEEE_CRYPT_ALG_NAME_LEN - 1] = '\0';
3269
3270 if (param_len !=
3271 (int) ((char *) param->u.crypt.key - (char *) param) +
3272 param->u.crypt.key_len) {
d69d2054
MK
3273 netdev_info(ieee->dev, "Len mismatch %d, %d\n", param_len,
3274 param->u.crypt.key_len);
94a79942
LF
3275 return -EINVAL;
3276 }
0c43e56c 3277 if (is_broadcast_ether_addr(param->sta_addr)) {
184f1938 3278 if (param->u.crypt.idx >= NUM_WEP_KEYS)
94a79942 3279 return -EINVAL;
0ddcf5fd 3280 crypt = &ieee->crypt_info.crypt[param->u.crypt.idx];
94a79942
LF
3281 } else {
3282 return -EINVAL;
3283 }
3284
3285 if (strcmp(param->u.crypt.alg, "none") == 0) {
3286 if (crypt) {
3287 sec.enabled = 0;
3288 sec.level = SEC_LEVEL_0;
3289 sec.flags |= SEC_ENABLED | SEC_LEVEL;
3b148be0 3290 lib80211_crypt_delayed_deinit(&ieee->crypt_info, crypt);
94a79942
LF
3291 }
3292 goto done;
3293 }
3294 sec.enabled = 1;
3295 sec.flags |= SEC_ENABLED;
3296
3297 /* IPW HW cannot build TKIP MIC, host decryption still needed. */
3298 if (!(ieee->host_encrypt || ieee->host_decrypt) &&
3b148be0 3299 strcmp(param->u.crypt.alg, "R-TKIP"))
94a79942
LF
3300 goto skip_host_crypt;
3301
3b148be0
SM
3302 ops = lib80211_get_crypto_ops(param->u.crypt.alg);
3303 if (ops == NULL && strcmp(param->u.crypt.alg, "R-WEP") == 0) {
94a79942 3304 request_module("rtllib_crypt_wep");
3b148be0
SM
3305 ops = lib80211_get_crypto_ops(param->u.crypt.alg);
3306 } else if (ops == NULL && strcmp(param->u.crypt.alg, "R-TKIP") == 0) {
94a79942 3307 request_module("rtllib_crypt_tkip");
3b148be0
SM
3308 ops = lib80211_get_crypto_ops(param->u.crypt.alg);
3309 } else if (ops == NULL && strcmp(param->u.crypt.alg, "R-CCMP") == 0) {
94a79942 3310 request_module("rtllib_crypt_ccmp");
3b148be0 3311 ops = lib80211_get_crypto_ops(param->u.crypt.alg);
94a79942
LF
3312 }
3313 if (ops == NULL) {
d69d2054
MK
3314 netdev_info(ieee->dev, "unknown crypto alg '%s'\n",
3315 param->u.crypt.alg);
94a79942
LF
3316 param->u.crypt.err = IEEE_CRYPT_ERR_UNKNOWN_ALG;
3317 ret = -EINVAL;
3318 goto done;
3319 }
3320 if (*crypt == NULL || (*crypt)->ops != ops) {
32c44cb5 3321 struct lib80211_crypt_data *new_crypt;
94a79942 3322
3b148be0 3323 lib80211_crypt_delayed_deinit(&ieee->crypt_info, crypt);
94a79942 3324
d272f9dd 3325 new_crypt = kzalloc(sizeof(*new_crypt), GFP_KERNEL);
94a79942
LF
3326 if (new_crypt == NULL) {
3327 ret = -ENOMEM;
3328 goto done;
3329 }
94a79942
LF
3330 new_crypt->ops = ops;
3331 if (new_crypt->ops)
3332 new_crypt->priv =
3333 new_crypt->ops->init(param->u.crypt.idx);
3334
3335 if (new_crypt->priv == NULL) {
3336 kfree(new_crypt);
3337 param->u.crypt.err = IEEE_CRYPT_ERR_CRYPT_INIT_FAILED;
3338 ret = -EINVAL;
3339 goto done;
3340 }
3341
3342 *crypt = new_crypt;
3343 }
3344
3345 if (param->u.crypt.key_len > 0 && (*crypt)->ops->set_key &&
3346 (*crypt)->ops->set_key(param->u.crypt.key,
3347 param->u.crypt.key_len, param->u.crypt.seq,
3348 (*crypt)->priv) < 0) {
d69d2054 3349 netdev_info(ieee->dev, "key setting failed\n");
94a79942
LF
3350 param->u.crypt.err = IEEE_CRYPT_ERR_KEY_SET_FAILED;
3351 ret = -EINVAL;
3352 goto done;
3353 }
3354
3355 skip_host_crypt:
3356 if (param->u.crypt.set_tx) {
0ddcf5fd 3357 ieee->crypt_info.tx_keyidx = param->u.crypt.idx;
94a79942
LF
3358 sec.active_key = param->u.crypt.idx;
3359 sec.flags |= SEC_ACTIVE_KEY;
3360 } else
3361 sec.flags &= ~SEC_ACTIVE_KEY;
3362
3363 if (param->u.crypt.alg != NULL) {
3364 memcpy(sec.keys[param->u.crypt.idx],
3365 param->u.crypt.key,
3366 param->u.crypt.key_len);
3367 sec.key_sizes[param->u.crypt.idx] = param->u.crypt.key_len;
3368 sec.flags |= (1 << param->u.crypt.idx);
3369
3b148be0 3370 if (strcmp(param->u.crypt.alg, "R-WEP") == 0) {
94a79942
LF
3371 sec.flags |= SEC_LEVEL;
3372 sec.level = SEC_LEVEL_1;
3b148be0 3373 } else if (strcmp(param->u.crypt.alg, "R-TKIP") == 0) {
94a79942
LF
3374 sec.flags |= SEC_LEVEL;
3375 sec.level = SEC_LEVEL_2;
3b148be0 3376 } else if (strcmp(param->u.crypt.alg, "R-CCMP") == 0) {
94a79942
LF
3377 sec.flags |= SEC_LEVEL;
3378 sec.level = SEC_LEVEL_3;
3379 }
3380 }
3381 done:
3382 if (ieee->set_security)
3383 ieee->set_security(ieee->dev, &sec);
3384
3385 /* Do not reset port if card is in Managed mode since resetting will
3386 * generate new IEEE 802.11 authentication which may end up in looping
3387 * with IEEE 802.1X. If your hardware requires a reset after WEP
3388 * configuration (for example... Prism2), implement the reset_port in
14b40d92
MK
3389 * the callbacks structures used to initialize the 802.11 stack.
3390 */
94a79942
LF
3391 if (ieee->reset_on_keychange &&
3392 ieee->iw_mode != IW_MODE_INFRA &&
3393 ieee->reset_port &&
3394 ieee->reset_port(ieee->dev)) {
d69d2054 3395 netdev_info(ieee->dev, "reset_port failed\n");
94a79942
LF
3396 param->u.crypt.err = IEEE_CRYPT_ERR_CARD_CONF_FAILED;
3397 return -EINVAL;
3398 }
3399
3400 return ret;
3401}
3402
9d92ece8 3403inline struct sk_buff *rtllib_disauth_skb(struct rtllib_network *beacon,
94a79942
LF
3404 struct rtllib_device *ieee, u16 asRsn)
3405{
3406 struct sk_buff *skb;
3407 struct rtllib_disauth *disauth;
94a79942
LF
3408 int len = sizeof(struct rtllib_disauth) + ieee->tx_headroom;
3409
94a79942 3410 skb = dev_alloc_skb(len);
9d92ece8 3411 if (!skb)
94a79942 3412 return NULL;
94a79942 3413
94a79942
LF
3414 skb_reserve(skb, ieee->tx_headroom);
3415
9d92ece8
LF
3416 disauth = (struct rtllib_disauth *) skb_put(skb,
3417 sizeof(struct rtllib_disauth));
94a79942
LF
3418 disauth->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_DEAUTH);
3419 disauth->header.duration_id = 0;
3420
b57ceb19
MK
3421 ether_addr_copy(disauth->header.addr1, beacon->bssid);
3422 ether_addr_copy(disauth->header.addr2, ieee->dev->dev_addr);
3423 ether_addr_copy(disauth->header.addr3, beacon->bssid);
94a79942
LF
3424
3425 disauth->reason = cpu_to_le16(asRsn);
3426 return skb;
3427}
3428
9d92ece8 3429inline struct sk_buff *rtllib_disassociate_skb(struct rtllib_network *beacon,
94a79942
LF
3430 struct rtllib_device *ieee, u16 asRsn)
3431{
3432 struct sk_buff *skb;
3433 struct rtllib_disassoc *disass;
94a79942 3434 int len = sizeof(struct rtllib_disassoc) + ieee->tx_headroom;
3a6b70c3 3435
94a79942
LF
3436 skb = dev_alloc_skb(len);
3437
9d92ece8 3438 if (!skb)
94a79942 3439 return NULL;
94a79942 3440
94a79942
LF
3441 skb_reserve(skb, ieee->tx_headroom);
3442
9d92ece8
LF
3443 disass = (struct rtllib_disassoc *) skb_put(skb,
3444 sizeof(struct rtllib_disassoc));
94a79942
LF
3445 disass->header.frame_ctl = cpu_to_le16(RTLLIB_STYPE_DISASSOC);
3446 disass->header.duration_id = 0;
3447
b57ceb19
MK
3448 ether_addr_copy(disass->header.addr1, beacon->bssid);
3449 ether_addr_copy(disass->header.addr2, ieee->dev->dev_addr);
3450 ether_addr_copy(disass->header.addr3, beacon->bssid);
94a79942
LF
3451
3452 disass->reason = cpu_to_le16(asRsn);
3453 return skb;
3454}
3455
3456void SendDisassociation(struct rtllib_device *ieee, bool deauth, u16 asRsn)
3457{
3458 struct rtllib_network *beacon = &ieee->current_network;
3459 struct sk_buff *skb;
3460
9d92ece8
LF
3461 if (deauth)
3462 skb = rtllib_disauth_skb(beacon, ieee, asRsn);
3463 else
3464 skb = rtllib_disassociate_skb(beacon, ieee, asRsn);
94a79942 3465
9d92ece8 3466 if (skb)
94a79942 3467 softmac_mgmt_xmit(skb, ieee);
94a79942
LF
3468}
3469
3470u8 rtllib_ap_sec_type(struct rtllib_device *ieee)
3471{
9d92ece8 3472 static u8 ccmp_ie[4] = {0x00, 0x50, 0xf2, 0x04};
94a79942 3473 static u8 ccmp_rsn_ie[4] = {0x00, 0x0f, 0xac, 0x04};
9d92ece8 3474 int wpa_ie_len = ieee->wpa_ie_len;
32c44cb5 3475 struct lib80211_crypt_data *crypt;
94a79942
LF
3476 int encrypt;
3477
0ddcf5fd 3478 crypt = ieee->crypt_info.crypt[ieee->crypt_info.tx_keyidx];
9d92ece8
LF
3479 encrypt = (ieee->current_network.capability & WLAN_CAPABILITY_PRIVACY)
3480 || (ieee->host_encrypt && crypt && crypt->ops &&
4c29207a 3481 (strcmp(crypt->ops->name, "R-WEP") == 0));
94a79942
LF
3482
3483 /* simply judge */
3484 if (encrypt && (wpa_ie_len == 0)) {
3485 return SEC_ALG_WEP;
3486 } else if ((wpa_ie_len != 0)) {
9d92ece8
LF
3487 if (((ieee->wpa_ie[0] == 0xdd) &&
3488 (!memcmp(&(ieee->wpa_ie[14]), ccmp_ie, 4))) ||
3489 ((ieee->wpa_ie[0] == 0x30) &&
3490 (!memcmp(&ieee->wpa_ie[10], ccmp_rsn_ie, 4))))
94a79942
LF
3491 return SEC_ALG_CCMP;
3492 else
3493 return SEC_ALG_TKIP;
3494 } else {
3495 return SEC_ALG_NONE;
3496 }
3497}
3498
9d92ece8
LF
3499int rtllib_wpa_supplicant_ioctl(struct rtllib_device *ieee, struct iw_point *p,
3500 u8 is_mesh)
94a79942
LF
3501{
3502 struct ieee_param *param;
9d92ece8 3503 int ret = 0;
94a79942
LF
3504
3505 down(&ieee->wx_sem);
3506
9d92ece8 3507 if (p->length < sizeof(struct ieee_param) || !p->pointer) {
94a79942
LF
3508 ret = -EINVAL;
3509 goto out;
3510 }
3511
21624981
TB
3512 param = memdup_user(p->pointer, p->length);
3513 if (IS_ERR(param)) {
3514 ret = PTR_ERR(param);
94a79942
LF
3515 goto out;
3516 }
3517
3518 switch (param->cmd) {
94a79942
LF
3519 case IEEE_CMD_SET_WPA_PARAM:
3520 ret = rtllib_wpa_set_param(ieee, param->u.wpa_param.name,
3521 param->u.wpa_param.value);
3522 break;
3523
3524 case IEEE_CMD_SET_WPA_IE:
3525 ret = rtllib_wpa_set_wpa_ie(ieee, param, p->length);
3526 break;
3527
3528 case IEEE_CMD_SET_ENCRYPTION:
3529 ret = rtllib_wpa_set_encryption(ieee, param, p->length, 0);
3530 break;
3531
3532 case IEEE_CMD_MLME:
3533 ret = rtllib_wpa_mlme(ieee, param->u.mlme.command,
3534 param->u.mlme.reason_code);
3535 break;
3536
3537 default:
d69d2054
MK
3538 netdev_info(ieee->dev, "Unknown WPA supplicant request: %d\n",
3539 param->cmd);
94a79942
LF
3540 ret = -EOPNOTSUPP;
3541 break;
3542 }
3543
3544 if (ret == 0 && copy_to_user(p->pointer, param, p->length))
3545 ret = -EFAULT;
3546
3547 kfree(param);
3548out:
3549 up(&ieee->wx_sem);
3550
3551 return ret;
3552}
3b28499c 3553EXPORT_SYMBOL(rtllib_wpa_supplicant_ioctl);
94a79942 3554
c5654c0b 3555static void rtllib_MgntDisconnectIBSS(struct rtllib_device *rtllib)
94a79942
LF
3556{
3557 u8 OpMode;
3558 u8 i;
3559 bool bFilterOutNonAssociatedBSSID = false;
3560
3561 rtllib->state = RTLLIB_NOLINK;
3562
9d92ece8
LF
3563 for (i = 0; i < 6; i++)
3564 rtllib->current_network.bssid[i] = 0x55;
94a79942
LF
3565
3566 rtllib->OpMode = RT_OP_MODE_NO_LINK;
9d92ece8
LF
3567 rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_BSSID,
3568 rtllib->current_network.bssid);
94a79942
LF
3569 OpMode = RT_OP_MODE_NO_LINK;
3570 rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_MEDIA_STATUS, &OpMode);
3571 rtllib_stop_send_beacons(rtllib);
3572
3573 bFilterOutNonAssociatedBSSID = false;
9d92ece8
LF
3574 rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_CECHK_BSSID,
3575 (u8 *)(&bFilterOutNonAssociatedBSSID));
94a79942
LF
3576 notify_wx_assoc_event(rtllib);
3577
3578}
3579
35e33b04
MK
3580static void rtllib_MlmeDisassociateRequest(struct rtllib_device *rtllib,
3581 u8 *asSta, u8 asRsn)
94a79942
LF
3582{
3583 u8 i;
3584 u8 OpMode;
3585
3586 RemovePeerTS(rtllib, asSta);
3587
ea9f10f2 3588 if (memcmp(rtllib->current_network.bssid, asSta, 6) == 0) {
94a79942
LF
3589 rtllib->state = RTLLIB_NOLINK;
3590
9d92ece8
LF
3591 for (i = 0; i < 6; i++)
3592 rtllib->current_network.bssid[i] = 0x22;
94a79942
LF
3593 OpMode = RT_OP_MODE_NO_LINK;
3594 rtllib->OpMode = RT_OP_MODE_NO_LINK;
9d92ece8
LF
3595 rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_MEDIA_STATUS,
3596 (u8 *)(&OpMode));
94a79942
LF
3597 rtllib_disassociate(rtllib);
3598
9d92ece8
LF
3599 rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_BSSID,
3600 rtllib->current_network.bssid);
94a79942
LF
3601
3602 }
3603
3604}
3605
c5654c0b 3606static void
94a79942 3607rtllib_MgntDisconnectAP(
9d92ece8 3608 struct rtllib_device *rtllib,
94a79942
LF
3609 u8 asRsn
3610)
3611{
3612 bool bFilterOutNonAssociatedBSSID = false;
3613
94a79942 3614 bFilterOutNonAssociatedBSSID = false;
9d92ece8
LF
3615 rtllib->SetHwRegHandler(rtllib->dev, HW_VAR_CECHK_BSSID,
3616 (u8 *)(&bFilterOutNonAssociatedBSSID));
3617 rtllib_MlmeDisassociateRequest(rtllib, rtllib->current_network.bssid,
3618 asRsn);
94a79942
LF
3619
3620 rtllib->state = RTLLIB_NOLINK;
3621}
3622
9d92ece8 3623bool rtllib_MgntDisconnect(struct rtllib_device *rtllib, u8 asRsn)
94a79942
LF
3624{
3625 if (rtllib->ps != RTLLIB_PS_DISABLED)
9d92ece8 3626 rtllib->sta_wake_up(rtllib->dev);
94a79942 3627
9d92ece8
LF
3628 if (rtllib->state == RTLLIB_LINKED) {
3629 if (rtllib->iw_mode == IW_MODE_ADHOC)
94a79942 3630 rtllib_MgntDisconnectIBSS(rtllib);
9d92ece8 3631 if (rtllib->iw_mode == IW_MODE_INFRA)
94a79942 3632 rtllib_MgntDisconnectAP(rtllib, asRsn);
94a79942
LF
3633
3634 }
3635
3636 return true;
3637}
3b28499c 3638EXPORT_SYMBOL(rtllib_MgntDisconnect);
94a79942
LF
3639
3640void notify_wx_assoc_event(struct rtllib_device *ieee)
3641{
3642 union iwreq_data wrqu;
3643
3644 if (ieee->cannot_notify)
3645 return;
3646
3647 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
3648 if (ieee->state == RTLLIB_LINKED)
9d92ece8
LF
3649 memcpy(wrqu.ap_addr.sa_data, ieee->current_network.bssid,
3650 ETH_ALEN);
3651 else {
94a79942 3652
d69d2054
MK
3653 netdev_info(ieee->dev, "%s(): Tell user space disconnected\n",
3654 __func__);
cdbaf3f6 3655 eth_zero_addr(wrqu.ap_addr.sa_data);
94a79942
LF
3656 }
3657 wireless_send_event(ieee->dev, SIOCGIWAP, &wrqu, NULL);
3658}
3b28499c 3659EXPORT_SYMBOL(notify_wx_assoc_event);
This page took 0.717096 seconds and 5 git commands to generate.