2 * BSS client mode implementation
3 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
4 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
15 * order BSS list by RSSI(?) ("quality of AP")
16 * scan result table filtering (by capability (privacy, IBSS/BSS, WPA/RSN IE,
19 #include <linux/delay.h>
20 #include <linux/if_ether.h>
21 #include <linux/skbuff.h>
22 #include <linux/netdevice.h>
23 #include <linux/if_arp.h>
24 #include <linux/wireless.h>
25 #include <linux/random.h>
26 #include <linux/etherdevice.h>
27 #include <linux/rtnetlink.h>
28 #include <net/iw_handler.h>
29 #include <asm/types.h>
31 #include <net/mac80211.h>
32 #include "ieee80211_i.h"
37 #define IEEE80211_AUTH_TIMEOUT (HZ / 5)
38 #define IEEE80211_AUTH_MAX_TRIES 3
39 #define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
40 #define IEEE80211_ASSOC_MAX_TRIES 3
41 #define IEEE80211_MONITORING_INTERVAL (2 * HZ)
42 #define IEEE80211_MESH_HOUSEKEEPING_INTERVAL (60 * HZ)
43 #define IEEE80211_PROBE_INTERVAL (60 * HZ)
44 #define IEEE80211_RETRY_AUTH_INTERVAL (1 * HZ)
45 #define IEEE80211_SCAN_INTERVAL (2 * HZ)
46 #define IEEE80211_SCAN_INTERVAL_SLOW (15 * HZ)
47 #define IEEE80211_IBSS_JOIN_TIMEOUT (20 * HZ)
49 #define IEEE80211_PROBE_DELAY (HZ / 33)
50 #define IEEE80211_CHANNEL_TIME (HZ / 33)
51 #define IEEE80211_PASSIVE_CHANNEL_TIME (HZ / 5)
52 #define IEEE80211_SCAN_RESULT_EXPIRE (10 * HZ)
53 #define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ)
54 #define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
55 #define IEEE80211_MESH_PEER_INACTIVITY_LIMIT (1800 * HZ)
57 #define IEEE80211_IBSS_MAX_STA_ENTRIES 128
60 #define ERP_INFO_USE_PROTECTION BIT(1)
62 /* mgmt header + 1 byte action code */
63 #define IEEE80211_MIN_ACTION_SIZE (24 + 1)
65 #define IEEE80211_ADDBA_PARAM_POLICY_MASK 0x0002
66 #define IEEE80211_ADDBA_PARAM_TID_MASK 0x003C
67 #define IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK 0xFFA0
68 #define IEEE80211_DELBA_PARAM_TID_MASK 0xF000
69 #define IEEE80211_DELBA_PARAM_INITIATOR_MASK 0x0800
71 /* next values represent the buffer size for A-MPDU frame.
72 * According to IEEE802.11n spec size varies from 8K to 64K (in powers of 2) */
73 #define IEEE80211_MIN_AMPDU_BUF 0x8
74 #define IEEE80211_MAX_AMPDU_BUF 0x40
76 static void ieee80211_send_probe_req(struct net_device
*dev
, u8
*dst
,
77 u8
*ssid
, size_t ssid_len
);
78 static struct ieee80211_sta_bss
*
79 ieee80211_rx_bss_get(struct net_device
*dev
, u8
*bssid
, int freq
,
80 u8
*ssid
, u8 ssid_len
);
81 static void ieee80211_rx_bss_put(struct net_device
*dev
,
82 struct ieee80211_sta_bss
*bss
);
83 static int ieee80211_sta_find_ibss(struct net_device
*dev
,
84 struct ieee80211_if_sta
*ifsta
);
85 static int ieee80211_sta_wep_configured(struct net_device
*dev
);
86 static int ieee80211_sta_start_scan(struct net_device
*dev
,
87 u8
*ssid
, size_t ssid_len
);
88 static int ieee80211_sta_config_auth(struct net_device
*dev
,
89 struct ieee80211_if_sta
*ifsta
);
92 void ieee802_11_parse_elems(u8
*start
, size_t len
,
93 struct ieee802_11_elems
*elems
)
98 memset(elems
, 0, sizeof(*elems
));
113 elems
->ssid_len
= elen
;
115 case WLAN_EID_SUPP_RATES
:
116 elems
->supp_rates
= pos
;
117 elems
->supp_rates_len
= elen
;
119 case WLAN_EID_FH_PARAMS
:
120 elems
->fh_params
= pos
;
121 elems
->fh_params_len
= elen
;
123 case WLAN_EID_DS_PARAMS
:
124 elems
->ds_params
= pos
;
125 elems
->ds_params_len
= elen
;
127 case WLAN_EID_CF_PARAMS
:
128 elems
->cf_params
= pos
;
129 elems
->cf_params_len
= elen
;
133 elems
->tim_len
= elen
;
135 case WLAN_EID_IBSS_PARAMS
:
136 elems
->ibss_params
= pos
;
137 elems
->ibss_params_len
= elen
;
139 case WLAN_EID_CHALLENGE
:
140 elems
->challenge
= pos
;
141 elems
->challenge_len
= elen
;
144 if (elen
>= 4 && pos
[0] == 0x00 && pos
[1] == 0x50 &&
146 /* Microsoft OUI (00:50:F2) */
148 /* OUI Type 1 - WPA IE */
150 elems
->wpa_len
= elen
;
151 } else if (elen
>= 5 && pos
[3] == 2) {
153 elems
->wmm_info
= pos
;
154 elems
->wmm_info_len
= elen
;
155 } else if (pos
[4] == 1) {
156 elems
->wmm_param
= pos
;
157 elems
->wmm_param_len
= elen
;
164 elems
->rsn_len
= elen
;
166 case WLAN_EID_ERP_INFO
:
167 elems
->erp_info
= pos
;
168 elems
->erp_info_len
= elen
;
170 case WLAN_EID_EXT_SUPP_RATES
:
171 elems
->ext_supp_rates
= pos
;
172 elems
->ext_supp_rates_len
= elen
;
174 case WLAN_EID_HT_CAPABILITY
:
175 elems
->ht_cap_elem
= pos
;
176 elems
->ht_cap_elem_len
= elen
;
178 case WLAN_EID_HT_EXTRA_INFO
:
179 elems
->ht_info_elem
= pos
;
180 elems
->ht_info_elem_len
= elen
;
182 case WLAN_EID_MESH_ID
:
183 elems
->mesh_id
= pos
;
184 elems
->mesh_id_len
= elen
;
186 case WLAN_EID_MESH_CONFIG
:
187 elems
->mesh_config
= pos
;
188 elems
->mesh_config_len
= elen
;
190 case WLAN_EID_PEER_LINK
:
191 elems
->peer_link
= pos
;
192 elems
->peer_link_len
= elen
;
196 elems
->preq_len
= elen
;
200 elems
->prep_len
= elen
;
204 elems
->perr_len
= elen
;
216 static int ecw2cw(int ecw
)
218 return (1 << ecw
) - 1;
222 static void ieee80211_sta_def_wmm_params(struct net_device
*dev
,
223 struct ieee80211_sta_bss
*bss
,
226 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
227 struct ieee80211_local
*local
= sdata
->local
;
228 int i
, have_higher_than_11mbit
= 0;
231 /* cf. IEEE 802.11 9.2.12 */
232 for (i
= 0; i
< bss
->supp_rates_len
; i
++)
233 if ((bss
->supp_rates
[i
] & 0x7f) * 5 > 110)
234 have_higher_than_11mbit
= 1;
236 if (local
->hw
.conf
.channel
->band
== IEEE80211_BAND_2GHZ
&&
237 have_higher_than_11mbit
)
238 sdata
->flags
|= IEEE80211_SDATA_OPERATING_GMODE
;
240 sdata
->flags
&= ~IEEE80211_SDATA_OPERATING_GMODE
;
243 if (local
->ops
->conf_tx
) {
244 struct ieee80211_tx_queue_params qparam
;
246 memset(&qparam
, 0, sizeof(qparam
));
250 if (local
->hw
.conf
.channel
->band
== IEEE80211_BAND_2GHZ
&&
251 !(sdata
->flags
& IEEE80211_SDATA_OPERATING_GMODE
))
256 qparam
.cw_max
= 1023;
259 for (i
= IEEE80211_TX_QUEUE_DATA0
; i
< NUM_TX_DATA_QUEUES
; i
++)
260 local
->ops
->conf_tx(local_to_hw(local
),
261 i
+ IEEE80211_TX_QUEUE_DATA0
,
265 /* IBSS uses different parameters for Beacon sending */
269 local
->ops
->conf_tx(local_to_hw(local
),
270 IEEE80211_TX_QUEUE_BEACON
, &qparam
);
275 static void ieee80211_sta_wmm_params(struct net_device
*dev
,
276 struct ieee80211_if_sta
*ifsta
,
277 u8
*wmm_param
, size_t wmm_param_len
)
279 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
280 struct ieee80211_tx_queue_params params
;
285 if (wmm_param_len
< 8 || wmm_param
[5] /* version */ != 1)
287 count
= wmm_param
[6] & 0x0f;
288 if (count
== ifsta
->wmm_last_param_set
)
290 ifsta
->wmm_last_param_set
= count
;
293 left
= wmm_param_len
- 8;
295 memset(¶ms
, 0, sizeof(params
));
297 if (!local
->ops
->conf_tx
)
301 for (; left
>= 4; left
-= 4, pos
+= 4) {
302 int aci
= (pos
[0] >> 5) & 0x03;
303 int acm
= (pos
[0] >> 4) & 0x01;
308 queue
= IEEE80211_TX_QUEUE_DATA3
;
310 local
->wmm_acm
|= BIT(0) | BIT(3);
314 queue
= IEEE80211_TX_QUEUE_DATA1
;
316 local
->wmm_acm
|= BIT(4) | BIT(5);
320 queue
= IEEE80211_TX_QUEUE_DATA0
;
322 local
->wmm_acm
|= BIT(6) | BIT(7);
327 queue
= IEEE80211_TX_QUEUE_DATA2
;
329 local
->wmm_acm
|= BIT(1) | BIT(2);
334 params
.aifs
= pos
[0] & 0x0f;
335 params
.cw_max
= ecw2cw((pos
[1] & 0xf0) >> 4);
336 params
.cw_min
= ecw2cw(pos
[1] & 0x0f);
337 params
.txop
= pos
[2] | (pos
[3] << 8);
338 #ifdef CONFIG_MAC80211_DEBUG
339 printk(KERN_DEBUG
"%s: WMM queue=%d aci=%d acm=%d aifs=%d "
340 "cWmin=%d cWmax=%d txop=%d\n",
341 dev
->name
, queue
, aci
, acm
, params
.aifs
, params
.cw_min
,
342 params
.cw_max
, params
.txop
);
344 /* TODO: handle ACM (block TX, fallback to next lowest allowed
346 if (local
->ops
->conf_tx(local_to_hw(local
), queue
, ¶ms
)) {
347 printk(KERN_DEBUG
"%s: failed to set TX queue "
348 "parameters for queue %d\n", dev
->name
, queue
);
353 static u32
ieee80211_handle_protect_preamb(struct ieee80211_sub_if_data
*sdata
,
355 bool use_short_preamble
)
357 struct ieee80211_bss_conf
*bss_conf
= &sdata
->bss_conf
;
358 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
359 DECLARE_MAC_BUF(mac
);
362 if (use_protection
!= bss_conf
->use_cts_prot
) {
363 if (net_ratelimit()) {
364 printk(KERN_DEBUG
"%s: CTS protection %s (BSSID="
367 use_protection
? "enabled" : "disabled",
368 print_mac(mac
, ifsta
->bssid
));
370 bss_conf
->use_cts_prot
= use_protection
;
371 changed
|= BSS_CHANGED_ERP_CTS_PROT
;
374 if (use_short_preamble
!= bss_conf
->use_short_preamble
) {
375 if (net_ratelimit()) {
376 printk(KERN_DEBUG
"%s: switched to %s barker preamble"
379 use_short_preamble
? "short" : "long",
380 print_mac(mac
, ifsta
->bssid
));
382 bss_conf
->use_short_preamble
= use_short_preamble
;
383 changed
|= BSS_CHANGED_ERP_PREAMBLE
;
389 static u32
ieee80211_handle_erp_ie(struct ieee80211_sub_if_data
*sdata
,
392 bool use_protection
= (erp_value
& WLAN_ERP_USE_PROTECTION
) != 0;
393 bool use_short_preamble
= (erp_value
& WLAN_ERP_BARKER_PREAMBLE
) == 0;
395 return ieee80211_handle_protect_preamb(sdata
,
396 use_protection
, use_short_preamble
);
399 static u32
ieee80211_handle_bss_capability(struct ieee80211_sub_if_data
*sdata
,
400 struct ieee80211_sta_bss
*bss
)
404 if (bss
->has_erp_value
)
405 changed
|= ieee80211_handle_erp_ie(sdata
, bss
->erp_value
);
407 u16 capab
= bss
->capability
;
408 changed
|= ieee80211_handle_protect_preamb(sdata
, false,
409 (capab
& WLAN_CAPABILITY_SHORT_PREAMBLE
) != 0);
415 int ieee80211_ht_cap_ie_to_ht_info(struct ieee80211_ht_cap
*ht_cap_ie
,
416 struct ieee80211_ht_info
*ht_info
)
422 memset(ht_info
, 0, sizeof(*ht_info
));
425 u8 ampdu_info
= ht_cap_ie
->ampdu_params_info
;
427 ht_info
->ht_supported
= 1;
428 ht_info
->cap
= le16_to_cpu(ht_cap_ie
->cap_info
);
429 ht_info
->ampdu_factor
=
430 ampdu_info
& IEEE80211_HT_CAP_AMPDU_FACTOR
;
431 ht_info
->ampdu_density
=
432 (ampdu_info
& IEEE80211_HT_CAP_AMPDU_DENSITY
) >> 2;
433 memcpy(ht_info
->supp_mcs_set
, ht_cap_ie
->supp_mcs_set
, 16);
435 ht_info
->ht_supported
= 0;
440 int ieee80211_ht_addt_info_ie_to_ht_bss_info(
441 struct ieee80211_ht_addt_info
*ht_add_info_ie
,
442 struct ieee80211_ht_bss_info
*bss_info
)
444 if (bss_info
== NULL
)
447 memset(bss_info
, 0, sizeof(*bss_info
));
449 if (ht_add_info_ie
) {
451 op_mode
= le16_to_cpu(ht_add_info_ie
->operation_mode
);
453 bss_info
->primary_channel
= ht_add_info_ie
->control_chan
;
454 bss_info
->bss_cap
= ht_add_info_ie
->ht_param
;
455 bss_info
->bss_op_mode
= (u8
)(op_mode
& 0xff);
461 static void ieee80211_sta_send_associnfo(struct net_device
*dev
,
462 struct ieee80211_if_sta
*ifsta
)
467 union iwreq_data wrqu
;
469 if (!ifsta
->assocreq_ies
&& !ifsta
->assocresp_ies
)
472 buf
= kmalloc(50 + 2 * (ifsta
->assocreq_ies_len
+
473 ifsta
->assocresp_ies_len
), GFP_KERNEL
);
477 len
= sprintf(buf
, "ASSOCINFO(");
478 if (ifsta
->assocreq_ies
) {
479 len
+= sprintf(buf
+ len
, "ReqIEs=");
480 for (i
= 0; i
< ifsta
->assocreq_ies_len
; i
++) {
481 len
+= sprintf(buf
+ len
, "%02x",
482 ifsta
->assocreq_ies
[i
]);
485 if (ifsta
->assocresp_ies
) {
486 if (ifsta
->assocreq_ies
)
487 len
+= sprintf(buf
+ len
, " ");
488 len
+= sprintf(buf
+ len
, "RespIEs=");
489 for (i
= 0; i
< ifsta
->assocresp_ies_len
; i
++) {
490 len
+= sprintf(buf
+ len
, "%02x",
491 ifsta
->assocresp_ies
[i
]);
494 len
+= sprintf(buf
+ len
, ")");
496 if (len
> IW_CUSTOM_MAX
) {
497 len
= sprintf(buf
, "ASSOCRESPIE=");
498 for (i
= 0; i
< ifsta
->assocresp_ies_len
; i
++) {
499 len
+= sprintf(buf
+ len
, "%02x",
500 ifsta
->assocresp_ies
[i
]);
504 memset(&wrqu
, 0, sizeof(wrqu
));
505 wrqu
.data
.length
= len
;
506 wireless_send_event(dev
, IWEVCUSTOM
, &wrqu
, buf
);
512 static void ieee80211_set_associated(struct net_device
*dev
,
513 struct ieee80211_if_sta
*ifsta
,
516 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
517 struct ieee80211_local
*local
= sdata
->local
;
518 struct ieee80211_conf
*conf
= &local_to_hw(local
)->conf
;
519 union iwreq_data wrqu
;
520 u32 changed
= BSS_CHANGED_ASSOC
;
523 struct ieee80211_sta_bss
*bss
;
525 ifsta
->flags
|= IEEE80211_STA_ASSOCIATED
;
527 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
530 bss
= ieee80211_rx_bss_get(dev
, ifsta
->bssid
,
531 conf
->channel
->center_freq
,
532 ifsta
->ssid
, ifsta
->ssid_len
);
534 /* set timing information */
535 sdata
->bss_conf
.beacon_int
= bss
->beacon_int
;
536 sdata
->bss_conf
.timestamp
= bss
->timestamp
;
538 changed
|= ieee80211_handle_bss_capability(sdata
, bss
);
540 ieee80211_rx_bss_put(dev
, bss
);
543 if (conf
->flags
& IEEE80211_CONF_SUPPORT_HT_MODE
) {
544 changed
|= BSS_CHANGED_HT
;
545 sdata
->bss_conf
.assoc_ht
= 1;
546 sdata
->bss_conf
.ht_conf
= &conf
->ht_conf
;
547 sdata
->bss_conf
.ht_bss_conf
= &conf
->ht_bss_conf
;
550 netif_carrier_on(dev
);
551 ifsta
->flags
|= IEEE80211_STA_PREV_BSSID_SET
;
552 memcpy(ifsta
->prev_bssid
, sdata
->u
.sta
.bssid
, ETH_ALEN
);
553 memcpy(wrqu
.ap_addr
.sa_data
, sdata
->u
.sta
.bssid
, ETH_ALEN
);
554 ieee80211_sta_send_associnfo(dev
, ifsta
);
556 ieee80211_sta_tear_down_BA_sessions(dev
, ifsta
->bssid
);
557 ifsta
->flags
&= ~IEEE80211_STA_ASSOCIATED
;
558 netif_carrier_off(dev
);
559 ieee80211_reset_erp_info(dev
);
561 sdata
->bss_conf
.assoc_ht
= 0;
562 sdata
->bss_conf
.ht_conf
= NULL
;
563 sdata
->bss_conf
.ht_bss_conf
= NULL
;
565 memset(wrqu
.ap_addr
.sa_data
, 0, ETH_ALEN
);
567 ifsta
->last_probe
= jiffies
;
568 ieee80211_led_assoc(local
, assoc
);
570 sdata
->bss_conf
.assoc
= assoc
;
571 ieee80211_bss_info_change_notify(sdata
, changed
);
572 wrqu
.ap_addr
.sa_family
= ARPHRD_ETHER
;
573 wireless_send_event(dev
, SIOCGIWAP
, &wrqu
, NULL
);
576 static void ieee80211_set_disassoc(struct net_device
*dev
,
577 struct ieee80211_if_sta
*ifsta
, int deauth
)
580 ifsta
->auth_tries
= 0;
581 ifsta
->assoc_tries
= 0;
582 ieee80211_set_associated(dev
, ifsta
, 0);
585 void ieee80211_sta_tx(struct net_device
*dev
, struct sk_buff
*skb
,
588 struct ieee80211_sub_if_data
*sdata
;
589 struct ieee80211_tx_packet_data
*pkt_data
;
591 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
592 skb
->dev
= sdata
->local
->mdev
;
593 skb_set_mac_header(skb
, 0);
594 skb_set_network_header(skb
, 0);
595 skb_set_transport_header(skb
, 0);
597 pkt_data
= (struct ieee80211_tx_packet_data
*) skb
->cb
;
598 memset(pkt_data
, 0, sizeof(struct ieee80211_tx_packet_data
));
599 pkt_data
->ifindex
= sdata
->dev
->ifindex
;
601 pkt_data
->flags
|= IEEE80211_TXPD_DO_NOT_ENCRYPT
;
607 static void ieee80211_send_auth(struct net_device
*dev
,
608 struct ieee80211_if_sta
*ifsta
,
609 int transaction
, u8
*extra
, size_t extra_len
,
612 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
614 struct ieee80211_mgmt
*mgmt
;
616 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+
617 sizeof(*mgmt
) + 6 + extra_len
);
619 printk(KERN_DEBUG
"%s: failed to allocate buffer for auth "
620 "frame\n", dev
->name
);
623 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
625 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 24 + 6);
626 memset(mgmt
, 0, 24 + 6);
627 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
628 IEEE80211_STYPE_AUTH
);
630 mgmt
->frame_control
|= cpu_to_le16(IEEE80211_FCTL_PROTECTED
);
631 memcpy(mgmt
->da
, ifsta
->bssid
, ETH_ALEN
);
632 memcpy(mgmt
->sa
, dev
->dev_addr
, ETH_ALEN
);
633 memcpy(mgmt
->bssid
, ifsta
->bssid
, ETH_ALEN
);
634 mgmt
->u
.auth
.auth_alg
= cpu_to_le16(ifsta
->auth_alg
);
635 mgmt
->u
.auth
.auth_transaction
= cpu_to_le16(transaction
);
636 ifsta
->auth_transaction
= transaction
+ 1;
637 mgmt
->u
.auth
.status_code
= cpu_to_le16(0);
639 memcpy(skb_put(skb
, extra_len
), extra
, extra_len
);
641 ieee80211_sta_tx(dev
, skb
, encrypt
);
645 static void ieee80211_authenticate(struct net_device
*dev
,
646 struct ieee80211_if_sta
*ifsta
)
648 DECLARE_MAC_BUF(mac
);
651 if (ifsta
->auth_tries
> IEEE80211_AUTH_MAX_TRIES
) {
652 printk(KERN_DEBUG
"%s: authentication with AP %s"
654 dev
->name
, print_mac(mac
, ifsta
->bssid
));
655 ifsta
->state
= IEEE80211_DISABLED
;
659 ifsta
->state
= IEEE80211_AUTHENTICATE
;
660 printk(KERN_DEBUG
"%s: authenticate with AP %s\n",
661 dev
->name
, print_mac(mac
, ifsta
->bssid
));
663 ieee80211_send_auth(dev
, ifsta
, 1, NULL
, 0, 0);
665 mod_timer(&ifsta
->timer
, jiffies
+ IEEE80211_AUTH_TIMEOUT
);
669 static void ieee80211_send_assoc(struct net_device
*dev
,
670 struct ieee80211_if_sta
*ifsta
)
672 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
674 struct ieee80211_mgmt
*mgmt
;
678 struct ieee80211_sta_bss
*bss
;
680 struct ieee80211_supported_band
*sband
;
682 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+
683 sizeof(*mgmt
) + 200 + ifsta
->extra_ie_len
+
686 printk(KERN_DEBUG
"%s: failed to allocate buffer for assoc "
687 "frame\n", dev
->name
);
690 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
692 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
694 capab
= ifsta
->capab
;
696 if (local
->hw
.conf
.channel
->band
== IEEE80211_BAND_2GHZ
) {
697 if (!(local
->hw
.flags
& IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE
))
698 capab
|= WLAN_CAPABILITY_SHORT_SLOT_TIME
;
699 if (!(local
->hw
.flags
& IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE
))
700 capab
|= WLAN_CAPABILITY_SHORT_PREAMBLE
;
703 bss
= ieee80211_rx_bss_get(dev
, ifsta
->bssid
,
704 local
->hw
.conf
.channel
->center_freq
,
705 ifsta
->ssid
, ifsta
->ssid_len
);
707 if (bss
->capability
& WLAN_CAPABILITY_PRIVACY
)
708 capab
|= WLAN_CAPABILITY_PRIVACY
;
712 ieee80211_rx_bss_put(dev
, bss
);
715 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 24);
717 memcpy(mgmt
->da
, ifsta
->bssid
, ETH_ALEN
);
718 memcpy(mgmt
->sa
, dev
->dev_addr
, ETH_ALEN
);
719 memcpy(mgmt
->bssid
, ifsta
->bssid
, ETH_ALEN
);
721 if (ifsta
->flags
& IEEE80211_STA_PREV_BSSID_SET
) {
723 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
724 IEEE80211_STYPE_REASSOC_REQ
);
725 mgmt
->u
.reassoc_req
.capab_info
= cpu_to_le16(capab
);
726 mgmt
->u
.reassoc_req
.listen_interval
= cpu_to_le16(1);
727 memcpy(mgmt
->u
.reassoc_req
.current_ap
, ifsta
->prev_bssid
,
731 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
732 IEEE80211_STYPE_ASSOC_REQ
);
733 mgmt
->u
.assoc_req
.capab_info
= cpu_to_le16(capab
);
734 mgmt
->u
.assoc_req
.listen_interval
= cpu_to_le16(1);
738 ies
= pos
= skb_put(skb
, 2 + ifsta
->ssid_len
);
739 *pos
++ = WLAN_EID_SSID
;
740 *pos
++ = ifsta
->ssid_len
;
741 memcpy(pos
, ifsta
->ssid
, ifsta
->ssid_len
);
743 len
= sband
->n_bitrates
;
746 pos
= skb_put(skb
, len
+ 2);
747 *pos
++ = WLAN_EID_SUPP_RATES
;
749 for (i
= 0; i
< len
; i
++) {
750 int rate
= sband
->bitrates
[i
].bitrate
;
751 *pos
++ = (u8
) (rate
/ 5);
754 if (sband
->n_bitrates
> len
) {
755 pos
= skb_put(skb
, sband
->n_bitrates
- len
+ 2);
756 *pos
++ = WLAN_EID_EXT_SUPP_RATES
;
757 *pos
++ = sband
->n_bitrates
- len
;
758 for (i
= len
; i
< sband
->n_bitrates
; i
++) {
759 int rate
= sband
->bitrates
[i
].bitrate
;
760 *pos
++ = (u8
) (rate
/ 5);
764 if (ifsta
->extra_ie
) {
765 pos
= skb_put(skb
, ifsta
->extra_ie_len
);
766 memcpy(pos
, ifsta
->extra_ie
, ifsta
->extra_ie_len
);
769 if (wmm
&& (ifsta
->flags
& IEEE80211_STA_WMM_ENABLED
)) {
770 pos
= skb_put(skb
, 9);
771 *pos
++ = WLAN_EID_VENDOR_SPECIFIC
;
772 *pos
++ = 7; /* len */
773 *pos
++ = 0x00; /* Microsoft OUI 00:50:F2 */
776 *pos
++ = 2; /* WME */
777 *pos
++ = 0; /* WME info */
778 *pos
++ = 1; /* WME ver */
781 /* wmm support is a must to HT */
782 if (wmm
&& sband
->ht_info
.ht_supported
) {
783 __le16 tmp
= cpu_to_le16(sband
->ht_info
.cap
);
784 pos
= skb_put(skb
, sizeof(struct ieee80211_ht_cap
)+2);
785 *pos
++ = WLAN_EID_HT_CAPABILITY
;
786 *pos
++ = sizeof(struct ieee80211_ht_cap
);
787 memset(pos
, 0, sizeof(struct ieee80211_ht_cap
));
788 memcpy(pos
, &tmp
, sizeof(u16
));
790 /* TODO: needs a define here for << 2 */
791 *pos
++ = sband
->ht_info
.ampdu_factor
|
792 (sband
->ht_info
.ampdu_density
<< 2);
793 memcpy(pos
, sband
->ht_info
.supp_mcs_set
, 16);
796 kfree(ifsta
->assocreq_ies
);
797 ifsta
->assocreq_ies_len
= (skb
->data
+ skb
->len
) - ies
;
798 ifsta
->assocreq_ies
= kmalloc(ifsta
->assocreq_ies_len
, GFP_KERNEL
);
799 if (ifsta
->assocreq_ies
)
800 memcpy(ifsta
->assocreq_ies
, ies
, ifsta
->assocreq_ies_len
);
802 ieee80211_sta_tx(dev
, skb
, 0);
806 static void ieee80211_send_deauth(struct net_device
*dev
,
807 struct ieee80211_if_sta
*ifsta
, u16 reason
)
809 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
811 struct ieee80211_mgmt
*mgmt
;
813 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ sizeof(*mgmt
));
815 printk(KERN_DEBUG
"%s: failed to allocate buffer for deauth "
816 "frame\n", dev
->name
);
819 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
821 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 24);
823 memcpy(mgmt
->da
, ifsta
->bssid
, ETH_ALEN
);
824 memcpy(mgmt
->sa
, dev
->dev_addr
, ETH_ALEN
);
825 memcpy(mgmt
->bssid
, ifsta
->bssid
, ETH_ALEN
);
826 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
827 IEEE80211_STYPE_DEAUTH
);
829 mgmt
->u
.deauth
.reason_code
= cpu_to_le16(reason
);
831 ieee80211_sta_tx(dev
, skb
, 0);
835 static void ieee80211_send_disassoc(struct net_device
*dev
,
836 struct ieee80211_if_sta
*ifsta
, u16 reason
)
838 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
840 struct ieee80211_mgmt
*mgmt
;
842 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ sizeof(*mgmt
));
844 printk(KERN_DEBUG
"%s: failed to allocate buffer for disassoc "
845 "frame\n", dev
->name
);
848 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
850 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 24);
852 memcpy(mgmt
->da
, ifsta
->bssid
, ETH_ALEN
);
853 memcpy(mgmt
->sa
, dev
->dev_addr
, ETH_ALEN
);
854 memcpy(mgmt
->bssid
, ifsta
->bssid
, ETH_ALEN
);
855 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
856 IEEE80211_STYPE_DISASSOC
);
858 mgmt
->u
.disassoc
.reason_code
= cpu_to_le16(reason
);
860 ieee80211_sta_tx(dev
, skb
, 0);
864 static int ieee80211_privacy_mismatch(struct net_device
*dev
,
865 struct ieee80211_if_sta
*ifsta
)
867 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
868 struct ieee80211_sta_bss
*bss
;
873 if (!ifsta
|| (ifsta
->flags
& IEEE80211_STA_MIXED_CELL
))
876 bss
= ieee80211_rx_bss_get(dev
, ifsta
->bssid
,
877 local
->hw
.conf
.channel
->center_freq
,
878 ifsta
->ssid
, ifsta
->ssid_len
);
882 bss_privacy
= !!(bss
->capability
& WLAN_CAPABILITY_PRIVACY
);
883 wep_privacy
= !!ieee80211_sta_wep_configured(dev
);
884 privacy_invoked
= !!(ifsta
->flags
& IEEE80211_STA_PRIVACY_INVOKED
);
886 ieee80211_rx_bss_put(dev
, bss
);
888 if ((bss_privacy
== wep_privacy
) || (bss_privacy
== privacy_invoked
))
895 static void ieee80211_associate(struct net_device
*dev
,
896 struct ieee80211_if_sta
*ifsta
)
898 DECLARE_MAC_BUF(mac
);
900 ifsta
->assoc_tries
++;
901 if (ifsta
->assoc_tries
> IEEE80211_ASSOC_MAX_TRIES
) {
902 printk(KERN_DEBUG
"%s: association with AP %s"
904 dev
->name
, print_mac(mac
, ifsta
->bssid
));
905 ifsta
->state
= IEEE80211_DISABLED
;
909 ifsta
->state
= IEEE80211_ASSOCIATE
;
910 printk(KERN_DEBUG
"%s: associate with AP %s\n",
911 dev
->name
, print_mac(mac
, ifsta
->bssid
));
912 if (ieee80211_privacy_mismatch(dev
, ifsta
)) {
913 printk(KERN_DEBUG
"%s: mismatch in privacy configuration and "
914 "mixed-cell disabled - abort association\n", dev
->name
);
915 ifsta
->state
= IEEE80211_DISABLED
;
919 ieee80211_send_assoc(dev
, ifsta
);
921 mod_timer(&ifsta
->timer
, jiffies
+ IEEE80211_ASSOC_TIMEOUT
);
925 static void ieee80211_associated(struct net_device
*dev
,
926 struct ieee80211_if_sta
*ifsta
)
928 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
929 struct sta_info
*sta
;
931 DECLARE_MAC_BUF(mac
);
933 /* TODO: start monitoring current AP signal quality and number of
934 * missed beacons. Scan other channels every now and then and search
936 /* TODO: remove expired BSSes */
938 ifsta
->state
= IEEE80211_ASSOCIATED
;
942 sta
= sta_info_get(local
, ifsta
->bssid
);
944 printk(KERN_DEBUG
"%s: No STA entry for own AP %s\n",
945 dev
->name
, print_mac(mac
, ifsta
->bssid
));
949 if (time_after(jiffies
,
950 sta
->last_rx
+ IEEE80211_MONITORING_INTERVAL
)) {
951 if (ifsta
->flags
& IEEE80211_STA_PROBEREQ_POLL
) {
952 printk(KERN_DEBUG
"%s: No ProbeResp from "
953 "current AP %s - assume out of "
955 dev
->name
, print_mac(mac
, ifsta
->bssid
));
957 sta_info_unlink(&sta
);
959 ieee80211_send_probe_req(dev
, ifsta
->bssid
,
961 local
->scan_ssid_len
);
962 ifsta
->flags
^= IEEE80211_STA_PROBEREQ_POLL
;
964 ifsta
->flags
&= ~IEEE80211_STA_PROBEREQ_POLL
;
965 if (time_after(jiffies
, ifsta
->last_probe
+
966 IEEE80211_PROBE_INTERVAL
)) {
967 ifsta
->last_probe
= jiffies
;
968 ieee80211_send_probe_req(dev
, ifsta
->bssid
,
978 sta_info_destroy(sta
);
981 ifsta
->state
= IEEE80211_DISABLED
;
982 ieee80211_set_associated(dev
, ifsta
, 0);
984 mod_timer(&ifsta
->timer
, jiffies
+
985 IEEE80211_MONITORING_INTERVAL
);
990 static void ieee80211_send_probe_req(struct net_device
*dev
, u8
*dst
,
991 u8
*ssid
, size_t ssid_len
)
993 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
994 struct ieee80211_supported_band
*sband
;
996 struct ieee80211_mgmt
*mgmt
;
997 u8
*pos
, *supp_rates
, *esupp_rates
= NULL
;
1000 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ sizeof(*mgmt
) + 200);
1002 printk(KERN_DEBUG
"%s: failed to allocate buffer for probe "
1003 "request\n", dev
->name
);
1006 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
1008 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 24);
1009 memset(mgmt
, 0, 24);
1010 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
1011 IEEE80211_STYPE_PROBE_REQ
);
1012 memcpy(mgmt
->sa
, dev
->dev_addr
, ETH_ALEN
);
1014 memcpy(mgmt
->da
, dst
, ETH_ALEN
);
1015 memcpy(mgmt
->bssid
, dst
, ETH_ALEN
);
1017 memset(mgmt
->da
, 0xff, ETH_ALEN
);
1018 memset(mgmt
->bssid
, 0xff, ETH_ALEN
);
1020 pos
= skb_put(skb
, 2 + ssid_len
);
1021 *pos
++ = WLAN_EID_SSID
;
1023 memcpy(pos
, ssid
, ssid_len
);
1025 supp_rates
= skb_put(skb
, 2);
1026 supp_rates
[0] = WLAN_EID_SUPP_RATES
;
1028 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
1030 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
1031 struct ieee80211_rate
*rate
= &sband
->bitrates
[i
];
1033 pos
= skb_put(skb
, 1);
1035 } else if (supp_rates
[1] == 8) {
1036 esupp_rates
= skb_put(skb
, 3);
1037 esupp_rates
[0] = WLAN_EID_EXT_SUPP_RATES
;
1039 pos
= &esupp_rates
[2];
1041 pos
= skb_put(skb
, 1);
1044 *pos
= rate
->bitrate
/ 5;
1047 ieee80211_sta_tx(dev
, skb
, 0);
1051 static int ieee80211_sta_wep_configured(struct net_device
*dev
)
1053 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1054 if (!sdata
|| !sdata
->default_key
||
1055 sdata
->default_key
->conf
.alg
!= ALG_WEP
)
1061 static void ieee80211_auth_completed(struct net_device
*dev
,
1062 struct ieee80211_if_sta
*ifsta
)
1064 printk(KERN_DEBUG
"%s: authenticated\n", dev
->name
);
1065 ifsta
->flags
|= IEEE80211_STA_AUTHENTICATED
;
1066 ieee80211_associate(dev
, ifsta
);
1070 static void ieee80211_auth_challenge(struct net_device
*dev
,
1071 struct ieee80211_if_sta
*ifsta
,
1072 struct ieee80211_mgmt
*mgmt
,
1076 struct ieee802_11_elems elems
;
1078 printk(KERN_DEBUG
"%s: replying to auth challenge\n", dev
->name
);
1079 pos
= mgmt
->u
.auth
.variable
;
1080 ieee802_11_parse_elems(pos
, len
- (pos
- (u8
*) mgmt
), &elems
);
1081 if (!elems
.challenge
) {
1082 printk(KERN_DEBUG
"%s: no challenge IE in shared key auth "
1083 "frame\n", dev
->name
);
1086 ieee80211_send_auth(dev
, ifsta
, 3, elems
.challenge
- 2,
1087 elems
.challenge_len
+ 2, 1);
1090 static void ieee80211_send_addba_resp(struct net_device
*dev
, u8
*da
, u16 tid
,
1091 u8 dialog_token
, u16 status
, u16 policy
,
1092 u16 buf_size
, u16 timeout
)
1094 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1095 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
1096 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1097 struct sk_buff
*skb
;
1098 struct ieee80211_mgmt
*mgmt
;
1101 skb
= dev_alloc_skb(sizeof(*mgmt
) + local
->hw
.extra_tx_headroom
+ 1 +
1102 sizeof(mgmt
->u
.action
.u
.addba_resp
));
1104 printk(KERN_DEBUG
"%s: failed to allocate buffer "
1105 "for addba resp frame\n", dev
->name
);
1109 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
1110 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 24);
1111 memset(mgmt
, 0, 24);
1112 memcpy(mgmt
->da
, da
, ETH_ALEN
);
1113 memcpy(mgmt
->sa
, dev
->dev_addr
, ETH_ALEN
);
1114 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
)
1115 memcpy(mgmt
->bssid
, dev
->dev_addr
, ETH_ALEN
);
1117 memcpy(mgmt
->bssid
, ifsta
->bssid
, ETH_ALEN
);
1118 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
1119 IEEE80211_STYPE_ACTION
);
1121 skb_put(skb
, 1 + sizeof(mgmt
->u
.action
.u
.addba_resp
));
1122 mgmt
->u
.action
.category
= WLAN_CATEGORY_BACK
;
1123 mgmt
->u
.action
.u
.addba_resp
.action_code
= WLAN_ACTION_ADDBA_RESP
;
1124 mgmt
->u
.action
.u
.addba_resp
.dialog_token
= dialog_token
;
1126 capab
= (u16
)(policy
<< 1); /* bit 1 aggregation policy */
1127 capab
|= (u16
)(tid
<< 2); /* bit 5:2 TID number */
1128 capab
|= (u16
)(buf_size
<< 6); /* bit 15:6 max size of aggregation */
1130 mgmt
->u
.action
.u
.addba_resp
.capab
= cpu_to_le16(capab
);
1131 mgmt
->u
.action
.u
.addba_resp
.timeout
= cpu_to_le16(timeout
);
1132 mgmt
->u
.action
.u
.addba_resp
.status
= cpu_to_le16(status
);
1134 ieee80211_sta_tx(dev
, skb
, 0);
1139 void ieee80211_send_addba_request(struct net_device
*dev
, const u8
*da
,
1140 u16 tid
, u8 dialog_token
, u16 start_seq_num
,
1141 u16 agg_size
, u16 timeout
)
1143 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1144 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1145 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
1146 struct sk_buff
*skb
;
1147 struct ieee80211_mgmt
*mgmt
;
1150 skb
= dev_alloc_skb(sizeof(*mgmt
) + local
->hw
.extra_tx_headroom
+ 1 +
1151 sizeof(mgmt
->u
.action
.u
.addba_req
));
1155 printk(KERN_ERR
"%s: failed to allocate buffer "
1156 "for addba request frame\n", dev
->name
);
1159 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
1160 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 24);
1161 memset(mgmt
, 0, 24);
1162 memcpy(mgmt
->da
, da
, ETH_ALEN
);
1163 memcpy(mgmt
->sa
, dev
->dev_addr
, ETH_ALEN
);
1164 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
)
1165 memcpy(mgmt
->bssid
, dev
->dev_addr
, ETH_ALEN
);
1167 memcpy(mgmt
->bssid
, ifsta
->bssid
, ETH_ALEN
);
1169 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
1170 IEEE80211_STYPE_ACTION
);
1172 skb_put(skb
, 1 + sizeof(mgmt
->u
.action
.u
.addba_req
));
1174 mgmt
->u
.action
.category
= WLAN_CATEGORY_BACK
;
1175 mgmt
->u
.action
.u
.addba_req
.action_code
= WLAN_ACTION_ADDBA_REQ
;
1177 mgmt
->u
.action
.u
.addba_req
.dialog_token
= dialog_token
;
1178 capab
= (u16
)(1 << 1); /* bit 1 aggregation policy */
1179 capab
|= (u16
)(tid
<< 2); /* bit 5:2 TID number */
1180 capab
|= (u16
)(agg_size
<< 6); /* bit 15:6 max size of aggergation */
1182 mgmt
->u
.action
.u
.addba_req
.capab
= cpu_to_le16(capab
);
1184 mgmt
->u
.action
.u
.addba_req
.timeout
= cpu_to_le16(timeout
);
1185 mgmt
->u
.action
.u
.addba_req
.start_seq_num
=
1186 cpu_to_le16(start_seq_num
<< 4);
1188 ieee80211_sta_tx(dev
, skb
, 0);
1191 static void ieee80211_sta_process_addba_request(struct net_device
*dev
,
1192 struct ieee80211_mgmt
*mgmt
,
1195 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1196 struct ieee80211_hw
*hw
= &local
->hw
;
1197 struct ieee80211_conf
*conf
= &hw
->conf
;
1198 struct sta_info
*sta
;
1199 struct tid_ampdu_rx
*tid_agg_rx
;
1200 u16 capab
, tid
, timeout
, ba_policy
, buf_size
, start_seq_num
, status
;
1202 int ret
= -EOPNOTSUPP
;
1203 DECLARE_MAC_BUF(mac
);
1207 sta
= sta_info_get(local
, mgmt
->sa
);
1213 /* extract session parameters from addba request frame */
1214 dialog_token
= mgmt
->u
.action
.u
.addba_req
.dialog_token
;
1215 timeout
= le16_to_cpu(mgmt
->u
.action
.u
.addba_req
.timeout
);
1217 le16_to_cpu(mgmt
->u
.action
.u
.addba_req
.start_seq_num
) >> 4;
1219 capab
= le16_to_cpu(mgmt
->u
.action
.u
.addba_req
.capab
);
1220 ba_policy
= (capab
& IEEE80211_ADDBA_PARAM_POLICY_MASK
) >> 1;
1221 tid
= (capab
& IEEE80211_ADDBA_PARAM_TID_MASK
) >> 2;
1222 buf_size
= (capab
& IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK
) >> 6;
1224 status
= WLAN_STATUS_REQUEST_DECLINED
;
1226 /* sanity check for incoming parameters:
1227 * check if configuration can support the BA policy
1228 * and if buffer size does not exceeds max value */
1229 if (((ba_policy
!= 1)
1230 && (!(conf
->ht_conf
.cap
& IEEE80211_HT_CAP_DELAY_BA
)))
1231 || (buf_size
> IEEE80211_MAX_AMPDU_BUF
)) {
1232 status
= WLAN_STATUS_INVALID_QOS_PARAM
;
1233 #ifdef CONFIG_MAC80211_HT_DEBUG
1234 if (net_ratelimit())
1235 printk(KERN_DEBUG
"AddBA Req with bad params from "
1236 "%s on tid %u. policy %d, buffer size %d\n",
1237 print_mac(mac
, mgmt
->sa
), tid
, ba_policy
,
1239 #endif /* CONFIG_MAC80211_HT_DEBUG */
1242 /* determine default buffer size */
1243 if (buf_size
== 0) {
1244 struct ieee80211_supported_band
*sband
;
1246 sband
= local
->hw
.wiphy
->bands
[conf
->channel
->band
];
1247 buf_size
= IEEE80211_MIN_AMPDU_BUF
;
1248 buf_size
= buf_size
<< sband
->ht_info
.ampdu_factor
;
1252 /* examine state machine */
1253 spin_lock_bh(&sta
->ampdu_mlme
.ampdu_rx
);
1255 if (sta
->ampdu_mlme
.tid_state_rx
[tid
] != HT_AGG_STATE_IDLE
) {
1256 #ifdef CONFIG_MAC80211_HT_DEBUG
1257 if (net_ratelimit())
1258 printk(KERN_DEBUG
"unexpected AddBA Req from "
1260 print_mac(mac
, mgmt
->sa
), tid
);
1261 #endif /* CONFIG_MAC80211_HT_DEBUG */
1265 /* prepare A-MPDU MLME for Rx aggregation */
1266 sta
->ampdu_mlme
.tid_rx
[tid
] =
1267 kmalloc(sizeof(struct tid_ampdu_rx
), GFP_ATOMIC
);
1268 if (!sta
->ampdu_mlme
.tid_rx
[tid
]) {
1269 if (net_ratelimit())
1270 printk(KERN_ERR
"allocate rx mlme to tid %d failed\n",
1275 sta
->ampdu_mlme
.tid_rx
[tid
]->session_timer
.function
=
1276 sta_rx_agg_session_timer_expired
;
1277 sta
->ampdu_mlme
.tid_rx
[tid
]->session_timer
.data
=
1278 (unsigned long)&sta
->timer_to_tid
[tid
];
1279 init_timer(&sta
->ampdu_mlme
.tid_rx
[tid
]->session_timer
);
1281 tid_agg_rx
= sta
->ampdu_mlme
.tid_rx
[tid
];
1283 /* prepare reordering buffer */
1284 tid_agg_rx
->reorder_buf
=
1285 kmalloc(buf_size
* sizeof(struct sk_buf
*), GFP_ATOMIC
);
1286 if (!tid_agg_rx
->reorder_buf
) {
1287 if (net_ratelimit())
1288 printk(KERN_ERR
"can not allocate reordering buffer "
1289 "to tid %d\n", tid
);
1290 kfree(sta
->ampdu_mlme
.tid_rx
[tid
]);
1293 memset(tid_agg_rx
->reorder_buf
, 0,
1294 buf_size
* sizeof(struct sk_buf
*));
1296 if (local
->ops
->ampdu_action
)
1297 ret
= local
->ops
->ampdu_action(hw
, IEEE80211_AMPDU_RX_START
,
1298 sta
->addr
, tid
, &start_seq_num
);
1299 #ifdef CONFIG_MAC80211_HT_DEBUG
1300 printk(KERN_DEBUG
"Rx A-MPDU request on tid %d result %d\n", tid
, ret
);
1301 #endif /* CONFIG_MAC80211_HT_DEBUG */
1304 kfree(tid_agg_rx
->reorder_buf
);
1306 sta
->ampdu_mlme
.tid_rx
[tid
] = NULL
;
1310 /* change state and send addba resp */
1311 sta
->ampdu_mlme
.tid_state_rx
[tid
] = HT_AGG_STATE_OPERATIONAL
;
1312 tid_agg_rx
->dialog_token
= dialog_token
;
1313 tid_agg_rx
->ssn
= start_seq_num
;
1314 tid_agg_rx
->head_seq_num
= start_seq_num
;
1315 tid_agg_rx
->buf_size
= buf_size
;
1316 tid_agg_rx
->timeout
= timeout
;
1317 tid_agg_rx
->stored_mpdu_num
= 0;
1318 status
= WLAN_STATUS_SUCCESS
;
1320 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_rx
);
1323 ieee80211_send_addba_resp(sta
->sdata
->dev
, sta
->addr
, tid
,
1324 dialog_token
, status
, 1, buf_size
, timeout
);
1328 static void ieee80211_sta_process_addba_resp(struct net_device
*dev
,
1329 struct ieee80211_mgmt
*mgmt
,
1332 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1333 struct ieee80211_hw
*hw
= &local
->hw
;
1334 struct sta_info
*sta
;
1341 sta
= sta_info_get(local
, mgmt
->sa
);
1347 capab
= le16_to_cpu(mgmt
->u
.action
.u
.addba_resp
.capab
);
1348 tid
= (capab
& IEEE80211_ADDBA_PARAM_TID_MASK
) >> 2;
1350 state
= &sta
->ampdu_mlme
.tid_state_tx
[tid
];
1352 spin_lock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1354 if (!(*state
& HT_ADDBA_REQUESTED_MSK
)) {
1355 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1356 printk(KERN_DEBUG
"state not HT_ADDBA_REQUESTED_MSK:"
1358 goto addba_resp_exit
;
1361 if (mgmt
->u
.action
.u
.addba_resp
.dialog_token
!=
1362 sta
->ampdu_mlme
.tid_tx
[tid
]->dialog_token
) {
1363 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1364 #ifdef CONFIG_MAC80211_HT_DEBUG
1365 printk(KERN_DEBUG
"wrong addBA response token, tid %d\n", tid
);
1366 #endif /* CONFIG_MAC80211_HT_DEBUG */
1367 goto addba_resp_exit
;
1370 del_timer_sync(&sta
->ampdu_mlme
.tid_tx
[tid
]->addba_resp_timer
);
1371 #ifdef CONFIG_MAC80211_HT_DEBUG
1372 printk(KERN_DEBUG
"switched off addBA timer for tid %d \n", tid
);
1373 #endif /* CONFIG_MAC80211_HT_DEBUG */
1374 if (le16_to_cpu(mgmt
->u
.action
.u
.addba_resp
.status
)
1375 == WLAN_STATUS_SUCCESS
) {
1376 if (*state
& HT_ADDBA_RECEIVED_MSK
)
1377 printk(KERN_DEBUG
"double addBA response\n");
1379 *state
|= HT_ADDBA_RECEIVED_MSK
;
1380 sta
->ampdu_mlme
.addba_req_num
[tid
] = 0;
1382 if (*state
== HT_AGG_STATE_OPERATIONAL
) {
1383 printk(KERN_DEBUG
"Aggregation on for tid %d \n", tid
);
1384 ieee80211_wake_queue(hw
, sta
->tid_to_tx_q
[tid
]);
1387 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1388 printk(KERN_DEBUG
"recipient accepted agg: tid %d \n", tid
);
1390 printk(KERN_DEBUG
"recipient rejected agg: tid %d \n", tid
);
1392 sta
->ampdu_mlme
.addba_req_num
[tid
]++;
1393 /* this will allow the state check in stop_BA_session */
1394 *state
= HT_AGG_STATE_OPERATIONAL
;
1395 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1396 ieee80211_stop_tx_ba_session(hw
, sta
->addr
, tid
,
1397 WLAN_BACK_INITIATOR
);
1404 void ieee80211_send_delba(struct net_device
*dev
, const u8
*da
, u16 tid
,
1405 u16 initiator
, u16 reason_code
)
1407 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1408 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1409 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
1410 struct sk_buff
*skb
;
1411 struct ieee80211_mgmt
*mgmt
;
1414 skb
= dev_alloc_skb(sizeof(*mgmt
) + local
->hw
.extra_tx_headroom
+ 1 +
1415 sizeof(mgmt
->u
.action
.u
.delba
));
1418 printk(KERN_ERR
"%s: failed to allocate buffer "
1419 "for delba frame\n", dev
->name
);
1423 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
1424 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 24);
1425 memset(mgmt
, 0, 24);
1426 memcpy(mgmt
->da
, da
, ETH_ALEN
);
1427 memcpy(mgmt
->sa
, dev
->dev_addr
, ETH_ALEN
);
1428 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
)
1429 memcpy(mgmt
->bssid
, dev
->dev_addr
, ETH_ALEN
);
1431 memcpy(mgmt
->bssid
, ifsta
->bssid
, ETH_ALEN
);
1432 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
1433 IEEE80211_STYPE_ACTION
);
1435 skb_put(skb
, 1 + sizeof(mgmt
->u
.action
.u
.delba
));
1437 mgmt
->u
.action
.category
= WLAN_CATEGORY_BACK
;
1438 mgmt
->u
.action
.u
.delba
.action_code
= WLAN_ACTION_DELBA
;
1439 params
= (u16
)(initiator
<< 11); /* bit 11 initiator */
1440 params
|= (u16
)(tid
<< 12); /* bit 15:12 TID number */
1442 mgmt
->u
.action
.u
.delba
.params
= cpu_to_le16(params
);
1443 mgmt
->u
.action
.u
.delba
.reason_code
= cpu_to_le16(reason_code
);
1445 ieee80211_sta_tx(dev
, skb
, 0);
1448 void ieee80211_sta_stop_rx_ba_session(struct net_device
*dev
, u8
*ra
, u16 tid
,
1449 u16 initiator
, u16 reason
)
1451 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1452 struct ieee80211_hw
*hw
= &local
->hw
;
1453 struct sta_info
*sta
;
1455 DECLARE_MAC_BUF(mac
);
1459 sta
= sta_info_get(local
, ra
);
1465 /* check if TID is in operational state */
1466 spin_lock_bh(&sta
->ampdu_mlme
.ampdu_rx
);
1467 if (sta
->ampdu_mlme
.tid_state_rx
[tid
]
1468 != HT_AGG_STATE_OPERATIONAL
) {
1469 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_rx
);
1473 sta
->ampdu_mlme
.tid_state_rx
[tid
] =
1474 HT_AGG_STATE_REQ_STOP_BA_MSK
|
1475 (initiator
<< HT_AGG_STATE_INITIATOR_SHIFT
);
1476 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_rx
);
1478 /* stop HW Rx aggregation. ampdu_action existence
1479 * already verified in session init so we add the BUG_ON */
1480 BUG_ON(!local
->ops
->ampdu_action
);
1482 #ifdef CONFIG_MAC80211_HT_DEBUG
1483 printk(KERN_DEBUG
"Rx BA session stop requested for %s tid %u\n",
1484 print_mac(mac
, ra
), tid
);
1485 #endif /* CONFIG_MAC80211_HT_DEBUG */
1487 ret
= local
->ops
->ampdu_action(hw
, IEEE80211_AMPDU_RX_STOP
,
1490 printk(KERN_DEBUG
"HW problem - can not stop rx "
1491 "aggergation for tid %d\n", tid
);
1493 /* shutdown timer has not expired */
1494 if (initiator
!= WLAN_BACK_TIMER
)
1495 del_timer_sync(&sta
->ampdu_mlme
.tid_rx
[tid
]->session_timer
);
1497 /* check if this is a self generated aggregation halt */
1498 if (initiator
== WLAN_BACK_RECIPIENT
|| initiator
== WLAN_BACK_TIMER
)
1499 ieee80211_send_delba(dev
, ra
, tid
, 0, reason
);
1501 /* free the reordering buffer */
1502 for (i
= 0; i
< sta
->ampdu_mlme
.tid_rx
[tid
]->buf_size
; i
++) {
1503 if (sta
->ampdu_mlme
.tid_rx
[tid
]->reorder_buf
[i
]) {
1504 /* release the reordered frames */
1505 dev_kfree_skb(sta
->ampdu_mlme
.tid_rx
[tid
]->reorder_buf
[i
]);
1506 sta
->ampdu_mlme
.tid_rx
[tid
]->stored_mpdu_num
--;
1507 sta
->ampdu_mlme
.tid_rx
[tid
]->reorder_buf
[i
] = NULL
;
1510 /* free resources */
1511 kfree(sta
->ampdu_mlme
.tid_rx
[tid
]->reorder_buf
);
1512 kfree(sta
->ampdu_mlme
.tid_rx
[tid
]);
1513 sta
->ampdu_mlme
.tid_rx
[tid
] = NULL
;
1514 sta
->ampdu_mlme
.tid_state_rx
[tid
] = HT_AGG_STATE_IDLE
;
1520 static void ieee80211_sta_process_delba(struct net_device
*dev
,
1521 struct ieee80211_mgmt
*mgmt
, size_t len
)
1523 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1524 struct sta_info
*sta
;
1527 DECLARE_MAC_BUF(mac
);
1531 sta
= sta_info_get(local
, mgmt
->sa
);
1537 params
= le16_to_cpu(mgmt
->u
.action
.u
.delba
.params
);
1538 tid
= (params
& IEEE80211_DELBA_PARAM_TID_MASK
) >> 12;
1539 initiator
= (params
& IEEE80211_DELBA_PARAM_INITIATOR_MASK
) >> 11;
1541 #ifdef CONFIG_MAC80211_HT_DEBUG
1542 if (net_ratelimit())
1543 printk(KERN_DEBUG
"delba from %s (%s) tid %d reason code %d\n",
1544 print_mac(mac
, mgmt
->sa
),
1545 initiator
? "initiator" : "recipient", tid
,
1546 mgmt
->u
.action
.u
.delba
.reason_code
);
1547 #endif /* CONFIG_MAC80211_HT_DEBUG */
1549 if (initiator
== WLAN_BACK_INITIATOR
)
1550 ieee80211_sta_stop_rx_ba_session(dev
, sta
->addr
, tid
,
1551 WLAN_BACK_INITIATOR
, 0);
1552 else { /* WLAN_BACK_RECIPIENT */
1553 spin_lock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1554 sta
->ampdu_mlme
.tid_state_tx
[tid
] =
1555 HT_AGG_STATE_OPERATIONAL
;
1556 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1557 ieee80211_stop_tx_ba_session(&local
->hw
, sta
->addr
, tid
,
1558 WLAN_BACK_RECIPIENT
);
1564 * After sending add Block Ack request we activated a timer until
1565 * add Block Ack response will arrive from the recipient.
1566 * If this timer expires sta_addba_resp_timer_expired will be executed.
1568 void sta_addba_resp_timer_expired(unsigned long data
)
1570 /* not an elegant detour, but there is no choice as the timer passes
1571 * only one argument, and both sta_info and TID are needed, so init
1572 * flow in sta_info_create gives the TID as data, while the timer_to_id
1573 * array gives the sta through container_of */
1574 u16 tid
= *(int *)data
;
1575 struct sta_info
*temp_sta
= container_of((void *)data
,
1576 struct sta_info
, timer_to_tid
[tid
]);
1578 struct ieee80211_local
*local
= temp_sta
->local
;
1579 struct ieee80211_hw
*hw
= &local
->hw
;
1580 struct sta_info
*sta
;
1585 sta
= sta_info_get(local
, temp_sta
->addr
);
1591 state
= &sta
->ampdu_mlme
.tid_state_tx
[tid
];
1592 /* check if the TID waits for addBA response */
1593 spin_lock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1594 if (!(*state
& HT_ADDBA_REQUESTED_MSK
)) {
1595 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1596 *state
= HT_AGG_STATE_IDLE
;
1597 printk(KERN_DEBUG
"timer expired on tid %d but we are not "
1598 "expecting addBA response there", tid
);
1599 goto timer_expired_exit
;
1602 printk(KERN_DEBUG
"addBA response timer expired on tid %d\n", tid
);
1604 /* go through the state check in stop_BA_session */
1605 *state
= HT_AGG_STATE_OPERATIONAL
;
1606 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
1607 ieee80211_stop_tx_ba_session(hw
, temp_sta
->addr
, tid
,
1608 WLAN_BACK_INITIATOR
);
1615 * After accepting the AddBA Request we activated a timer,
1616 * resetting it after each frame that arrives from the originator.
1617 * if this timer expires ieee80211_sta_stop_rx_ba_session will be executed.
1619 void sta_rx_agg_session_timer_expired(unsigned long data
)
1621 /* not an elegant detour, but there is no choice as the timer passes
1622 * only one argument, and verious sta_info are needed here, so init
1623 * flow in sta_info_create gives the TID as data, while the timer_to_id
1624 * array gives the sta through container_of */
1625 u8
*ptid
= (u8
*)data
;
1626 u8
*timer_to_id
= ptid
- *ptid
;
1627 struct sta_info
*sta
= container_of(timer_to_id
, struct sta_info
,
1630 printk(KERN_DEBUG
"rx session timer expired on tid %d\n", (u16
)*ptid
);
1631 ieee80211_sta_stop_rx_ba_session(sta
->sdata
->dev
, sta
->addr
,
1632 (u16
)*ptid
, WLAN_BACK_TIMER
,
1633 WLAN_REASON_QSTA_TIMEOUT
);
1636 void ieee80211_sta_tear_down_BA_sessions(struct net_device
*dev
, u8
*addr
)
1638 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1641 for (i
= 0; i
< STA_TID_NUM
; i
++) {
1642 ieee80211_stop_tx_ba_session(&local
->hw
, addr
, i
,
1643 WLAN_BACK_INITIATOR
);
1644 ieee80211_sta_stop_rx_ba_session(dev
, addr
, i
,
1645 WLAN_BACK_RECIPIENT
,
1646 WLAN_REASON_QSTA_LEAVE_QBSS
);
1650 static void ieee80211_rx_mgmt_auth(struct net_device
*dev
,
1651 struct ieee80211_if_sta
*ifsta
,
1652 struct ieee80211_mgmt
*mgmt
,
1655 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1656 u16 auth_alg
, auth_transaction
, status_code
;
1657 DECLARE_MAC_BUF(mac
);
1659 if (ifsta
->state
!= IEEE80211_AUTHENTICATE
&&
1660 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
) {
1661 printk(KERN_DEBUG
"%s: authentication frame received from "
1662 "%s, but not in authenticate state - ignored\n",
1663 dev
->name
, print_mac(mac
, mgmt
->sa
));
1668 printk(KERN_DEBUG
"%s: too short (%zd) authentication frame "
1669 "received from %s - ignored\n",
1670 dev
->name
, len
, print_mac(mac
, mgmt
->sa
));
1674 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
&&
1675 memcmp(ifsta
->bssid
, mgmt
->sa
, ETH_ALEN
) != 0) {
1676 printk(KERN_DEBUG
"%s: authentication frame received from "
1677 "unknown AP (SA=%s BSSID=%s) - "
1678 "ignored\n", dev
->name
, print_mac(mac
, mgmt
->sa
),
1679 print_mac(mac
, mgmt
->bssid
));
1683 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
&&
1684 memcmp(ifsta
->bssid
, mgmt
->bssid
, ETH_ALEN
) != 0) {
1685 printk(KERN_DEBUG
"%s: authentication frame received from "
1686 "unknown BSSID (SA=%s BSSID=%s) - "
1687 "ignored\n", dev
->name
, print_mac(mac
, mgmt
->sa
),
1688 print_mac(mac
, mgmt
->bssid
));
1692 auth_alg
= le16_to_cpu(mgmt
->u
.auth
.auth_alg
);
1693 auth_transaction
= le16_to_cpu(mgmt
->u
.auth
.auth_transaction
);
1694 status_code
= le16_to_cpu(mgmt
->u
.auth
.status_code
);
1696 printk(KERN_DEBUG
"%s: RX authentication from %s (alg=%d "
1697 "transaction=%d status=%d)\n",
1698 dev
->name
, print_mac(mac
, mgmt
->sa
), auth_alg
,
1699 auth_transaction
, status_code
);
1701 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
1702 /* IEEE 802.11 standard does not require authentication in IBSS
1703 * networks and most implementations do not seem to use it.
1704 * However, try to reply to authentication attempts if someone
1705 * has actually implemented this.
1706 * TODO: Could implement shared key authentication. */
1707 if (auth_alg
!= WLAN_AUTH_OPEN
|| auth_transaction
!= 1) {
1708 printk(KERN_DEBUG
"%s: unexpected IBSS authentication "
1709 "frame (alg=%d transaction=%d)\n",
1710 dev
->name
, auth_alg
, auth_transaction
);
1713 ieee80211_send_auth(dev
, ifsta
, 2, NULL
, 0, 0);
1716 if (auth_alg
!= ifsta
->auth_alg
||
1717 auth_transaction
!= ifsta
->auth_transaction
) {
1718 printk(KERN_DEBUG
"%s: unexpected authentication frame "
1719 "(alg=%d transaction=%d)\n",
1720 dev
->name
, auth_alg
, auth_transaction
);
1724 if (status_code
!= WLAN_STATUS_SUCCESS
) {
1725 printk(KERN_DEBUG
"%s: AP denied authentication (auth_alg=%d "
1726 "code=%d)\n", dev
->name
, ifsta
->auth_alg
, status_code
);
1727 if (status_code
== WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG
) {
1729 const int num_algs
= ARRAY_SIZE(algs
);
1731 algs
[0] = algs
[1] = algs
[2] = 0xff;
1732 if (ifsta
->auth_algs
& IEEE80211_AUTH_ALG_OPEN
)
1733 algs
[0] = WLAN_AUTH_OPEN
;
1734 if (ifsta
->auth_algs
& IEEE80211_AUTH_ALG_SHARED_KEY
)
1735 algs
[1] = WLAN_AUTH_SHARED_KEY
;
1736 if (ifsta
->auth_algs
& IEEE80211_AUTH_ALG_LEAP
)
1737 algs
[2] = WLAN_AUTH_LEAP
;
1738 if (ifsta
->auth_alg
== WLAN_AUTH_OPEN
)
1740 else if (ifsta
->auth_alg
== WLAN_AUTH_SHARED_KEY
)
1744 for (i
= 0; i
< num_algs
; i
++) {
1746 if (pos
>= num_algs
)
1748 if (algs
[pos
] == ifsta
->auth_alg
||
1751 if (algs
[pos
] == WLAN_AUTH_SHARED_KEY
&&
1752 !ieee80211_sta_wep_configured(dev
))
1754 ifsta
->auth_alg
= algs
[pos
];
1755 printk(KERN_DEBUG
"%s: set auth_alg=%d for "
1757 dev
->name
, ifsta
->auth_alg
);
1764 switch (ifsta
->auth_alg
) {
1765 case WLAN_AUTH_OPEN
:
1766 case WLAN_AUTH_LEAP
:
1767 ieee80211_auth_completed(dev
, ifsta
);
1769 case WLAN_AUTH_SHARED_KEY
:
1770 if (ifsta
->auth_transaction
== 4)
1771 ieee80211_auth_completed(dev
, ifsta
);
1773 ieee80211_auth_challenge(dev
, ifsta
, mgmt
, len
);
1779 static void ieee80211_rx_mgmt_deauth(struct net_device
*dev
,
1780 struct ieee80211_if_sta
*ifsta
,
1781 struct ieee80211_mgmt
*mgmt
,
1785 DECLARE_MAC_BUF(mac
);
1788 printk(KERN_DEBUG
"%s: too short (%zd) deauthentication frame "
1789 "received from %s - ignored\n",
1790 dev
->name
, len
, print_mac(mac
, mgmt
->sa
));
1794 if (memcmp(ifsta
->bssid
, mgmt
->sa
, ETH_ALEN
) != 0) {
1795 printk(KERN_DEBUG
"%s: deauthentication frame received from "
1796 "unknown AP (SA=%s BSSID=%s) - "
1797 "ignored\n", dev
->name
, print_mac(mac
, mgmt
->sa
),
1798 print_mac(mac
, mgmt
->bssid
));
1802 reason_code
= le16_to_cpu(mgmt
->u
.deauth
.reason_code
);
1804 printk(KERN_DEBUG
"%s: RX deauthentication from %s"
1806 dev
->name
, print_mac(mac
, mgmt
->sa
), reason_code
);
1808 if (ifsta
->flags
& IEEE80211_STA_AUTHENTICATED
) {
1809 printk(KERN_DEBUG
"%s: deauthenticated\n", dev
->name
);
1812 if (ifsta
->state
== IEEE80211_AUTHENTICATE
||
1813 ifsta
->state
== IEEE80211_ASSOCIATE
||
1814 ifsta
->state
== IEEE80211_ASSOCIATED
) {
1815 ifsta
->state
= IEEE80211_AUTHENTICATE
;
1816 mod_timer(&ifsta
->timer
, jiffies
+
1817 IEEE80211_RETRY_AUTH_INTERVAL
);
1820 ieee80211_set_disassoc(dev
, ifsta
, 1);
1821 ifsta
->flags
&= ~IEEE80211_STA_AUTHENTICATED
;
1825 static void ieee80211_rx_mgmt_disassoc(struct net_device
*dev
,
1826 struct ieee80211_if_sta
*ifsta
,
1827 struct ieee80211_mgmt
*mgmt
,
1831 DECLARE_MAC_BUF(mac
);
1834 printk(KERN_DEBUG
"%s: too short (%zd) disassociation frame "
1835 "received from %s - ignored\n",
1836 dev
->name
, len
, print_mac(mac
, mgmt
->sa
));
1840 if (memcmp(ifsta
->bssid
, mgmt
->sa
, ETH_ALEN
) != 0) {
1841 printk(KERN_DEBUG
"%s: disassociation frame received from "
1842 "unknown AP (SA=%s BSSID=%s) - "
1843 "ignored\n", dev
->name
, print_mac(mac
, mgmt
->sa
),
1844 print_mac(mac
, mgmt
->bssid
));
1848 reason_code
= le16_to_cpu(mgmt
->u
.disassoc
.reason_code
);
1850 printk(KERN_DEBUG
"%s: RX disassociation from %s"
1852 dev
->name
, print_mac(mac
, mgmt
->sa
), reason_code
);
1854 if (ifsta
->flags
& IEEE80211_STA_ASSOCIATED
)
1855 printk(KERN_DEBUG
"%s: disassociated\n", dev
->name
);
1857 if (ifsta
->state
== IEEE80211_ASSOCIATED
) {
1858 ifsta
->state
= IEEE80211_ASSOCIATE
;
1859 mod_timer(&ifsta
->timer
, jiffies
+
1860 IEEE80211_RETRY_AUTH_INTERVAL
);
1863 ieee80211_set_disassoc(dev
, ifsta
, 0);
1867 static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data
*sdata
,
1868 struct ieee80211_if_sta
*ifsta
,
1869 struct ieee80211_mgmt
*mgmt
,
1873 struct ieee80211_local
*local
= sdata
->local
;
1874 struct net_device
*dev
= sdata
->dev
;
1875 struct ieee80211_supported_band
*sband
;
1876 struct sta_info
*sta
;
1877 u64 rates
, basic_rates
;
1878 u16 capab_info
, status_code
, aid
;
1879 struct ieee802_11_elems elems
;
1880 struct ieee80211_bss_conf
*bss_conf
= &sdata
->bss_conf
;
1883 DECLARE_MAC_BUF(mac
);
1884 bool have_higher_than_11mbit
= false;
1886 /* AssocResp and ReassocResp have identical structure, so process both
1887 * of them in this function. */
1889 if (ifsta
->state
!= IEEE80211_ASSOCIATE
) {
1890 printk(KERN_DEBUG
"%s: association frame received from "
1891 "%s, but not in associate state - ignored\n",
1892 dev
->name
, print_mac(mac
, mgmt
->sa
));
1897 printk(KERN_DEBUG
"%s: too short (%zd) association frame "
1898 "received from %s - ignored\n",
1899 dev
->name
, len
, print_mac(mac
, mgmt
->sa
));
1903 if (memcmp(ifsta
->bssid
, mgmt
->sa
, ETH_ALEN
) != 0) {
1904 printk(KERN_DEBUG
"%s: association frame received from "
1905 "unknown AP (SA=%s BSSID=%s) - "
1906 "ignored\n", dev
->name
, print_mac(mac
, mgmt
->sa
),
1907 print_mac(mac
, mgmt
->bssid
));
1911 capab_info
= le16_to_cpu(mgmt
->u
.assoc_resp
.capab_info
);
1912 status_code
= le16_to_cpu(mgmt
->u
.assoc_resp
.status_code
);
1913 aid
= le16_to_cpu(mgmt
->u
.assoc_resp
.aid
);
1915 printk(KERN_DEBUG
"%s: RX %sssocResp from %s (capab=0x%x "
1916 "status=%d aid=%d)\n",
1917 dev
->name
, reassoc
? "Rea" : "A", print_mac(mac
, mgmt
->sa
),
1918 capab_info
, status_code
, (u16
)(aid
& ~(BIT(15) | BIT(14))));
1920 if (status_code
!= WLAN_STATUS_SUCCESS
) {
1921 printk(KERN_DEBUG
"%s: AP denied association (code=%d)\n",
1922 dev
->name
, status_code
);
1923 /* if this was a reassociation, ensure we try a "full"
1924 * association next time. This works around some broken APs
1925 * which do not correctly reject reassociation requests. */
1926 ifsta
->flags
&= ~IEEE80211_STA_PREV_BSSID_SET
;
1930 if ((aid
& (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1931 printk(KERN_DEBUG
"%s: invalid aid value %d; bits 15:14 not "
1932 "set\n", dev
->name
, aid
);
1933 aid
&= ~(BIT(15) | BIT(14));
1935 pos
= mgmt
->u
.assoc_resp
.variable
;
1936 ieee802_11_parse_elems(pos
, len
- (pos
- (u8
*) mgmt
), &elems
);
1938 if (!elems
.supp_rates
) {
1939 printk(KERN_DEBUG
"%s: no SuppRates element in AssocResp\n",
1944 printk(KERN_DEBUG
"%s: associated\n", dev
->name
);
1946 ifsta
->ap_capab
= capab_info
;
1948 kfree(ifsta
->assocresp_ies
);
1949 ifsta
->assocresp_ies_len
= len
- (pos
- (u8
*) mgmt
);
1950 ifsta
->assocresp_ies
= kmalloc(ifsta
->assocresp_ies_len
, GFP_KERNEL
);
1951 if (ifsta
->assocresp_ies
)
1952 memcpy(ifsta
->assocresp_ies
, pos
, ifsta
->assocresp_ies_len
);
1956 /* Add STA entry for the AP */
1957 sta
= sta_info_get(local
, ifsta
->bssid
);
1959 struct ieee80211_sta_bss
*bss
;
1962 sta
= sta_info_alloc(sdata
, ifsta
->bssid
, GFP_ATOMIC
);
1964 printk(KERN_DEBUG
"%s: failed to alloc STA entry for"
1965 " the AP\n", dev
->name
);
1969 bss
= ieee80211_rx_bss_get(dev
, ifsta
->bssid
,
1970 local
->hw
.conf
.channel
->center_freq
,
1971 ifsta
->ssid
, ifsta
->ssid_len
);
1973 sta
->last_rssi
= bss
->rssi
;
1974 sta
->last_signal
= bss
->signal
;
1975 sta
->last_noise
= bss
->noise
;
1976 ieee80211_rx_bss_put(dev
, bss
);
1979 err
= sta_info_insert(sta
);
1981 printk(KERN_DEBUG
"%s: failed to insert STA entry for"
1982 " the AP (error %d)\n", dev
->name
, err
);
1989 * FIXME: Do we really need to update the sta_info's information here?
1990 * We already know about the AP (we found it in our list) so it
1991 * should already be filled with the right info, no?
1992 * As is stands, all this is racy because typically we assume
1993 * the information that is filled in here (except flags) doesn't
1994 * change while a STA structure is alive. As such, it should move
1995 * to between the sta_info_alloc() and sta_info_insert() above.
1998 sta
->flags
|= WLAN_STA_AUTH
| WLAN_STA_ASSOC
| WLAN_STA_ASSOC_AP
|
1999 WLAN_STA_AUTHORIZED
;
2003 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
2005 for (i
= 0; i
< elems
.supp_rates_len
; i
++) {
2006 int rate
= (elems
.supp_rates
[i
] & 0x7f) * 5;
2009 have_higher_than_11mbit
= true;
2011 for (j
= 0; j
< sband
->n_bitrates
; j
++) {
2012 if (sband
->bitrates
[j
].bitrate
== rate
)
2014 if (elems
.supp_rates
[i
] & 0x80)
2015 basic_rates
|= BIT(j
);
2019 for (i
= 0; i
< elems
.ext_supp_rates_len
; i
++) {
2020 int rate
= (elems
.ext_supp_rates
[i
] & 0x7f) * 5;
2023 have_higher_than_11mbit
= true;
2025 for (j
= 0; j
< sband
->n_bitrates
; j
++) {
2026 if (sband
->bitrates
[j
].bitrate
== rate
)
2028 if (elems
.ext_supp_rates
[i
] & 0x80)
2029 basic_rates
|= BIT(j
);
2033 sta
->supp_rates
[local
->hw
.conf
.channel
->band
] = rates
;
2034 sdata
->basic_rates
= basic_rates
;
2036 /* cf. IEEE 802.11 9.2.12 */
2037 if (local
->hw
.conf
.channel
->band
== IEEE80211_BAND_2GHZ
&&
2038 have_higher_than_11mbit
)
2039 sdata
->flags
|= IEEE80211_SDATA_OPERATING_GMODE
;
2041 sdata
->flags
&= ~IEEE80211_SDATA_OPERATING_GMODE
;
2043 if (elems
.ht_cap_elem
&& elems
.ht_info_elem
&& elems
.wmm_param
) {
2044 struct ieee80211_ht_bss_info bss_info
;
2045 ieee80211_ht_cap_ie_to_ht_info(
2046 (struct ieee80211_ht_cap
*)
2047 elems
.ht_cap_elem
, &sta
->ht_info
);
2048 ieee80211_ht_addt_info_ie_to_ht_bss_info(
2049 (struct ieee80211_ht_addt_info
*)
2050 elems
.ht_info_elem
, &bss_info
);
2051 ieee80211_handle_ht(local
, 1, &sta
->ht_info
, &bss_info
);
2054 rate_control_rate_init(sta
, local
);
2056 if (elems
.wmm_param
&& (ifsta
->flags
& IEEE80211_STA_WMM_ENABLED
)) {
2057 sta
->flags
|= WLAN_STA_WME
;
2059 ieee80211_sta_wmm_params(dev
, ifsta
, elems
.wmm_param
,
2060 elems
.wmm_param_len
);
2064 /* set AID and assoc capability,
2065 * ieee80211_set_associated() will tell the driver */
2066 bss_conf
->aid
= aid
;
2067 bss_conf
->assoc_capability
= capab_info
;
2068 ieee80211_set_associated(dev
, ifsta
, 1);
2070 ieee80211_associated(dev
, ifsta
);
2074 /* Caller must hold local->sta_bss_lock */
2075 static void __ieee80211_rx_bss_hash_add(struct net_device
*dev
,
2076 struct ieee80211_sta_bss
*bss
)
2078 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2081 if (bss_mesh_cfg(bss
))
2082 hash_idx
= mesh_id_hash(bss_mesh_id(bss
),
2083 bss_mesh_id_len(bss
));
2085 hash_idx
= STA_HASH(bss
->bssid
);
2087 bss
->hnext
= local
->sta_bss_hash
[hash_idx
];
2088 local
->sta_bss_hash
[hash_idx
] = bss
;
2092 /* Caller must hold local->sta_bss_lock */
2093 static void __ieee80211_rx_bss_hash_del(struct net_device
*dev
,
2094 struct ieee80211_sta_bss
*bss
)
2096 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2097 struct ieee80211_sta_bss
*b
, *prev
= NULL
;
2098 b
= local
->sta_bss_hash
[STA_HASH(bss
->bssid
)];
2102 local
->sta_bss_hash
[STA_HASH(bss
->bssid
)] =
2105 prev
->hnext
= bss
->hnext
;
2114 static struct ieee80211_sta_bss
*
2115 ieee80211_rx_bss_add(struct net_device
*dev
, u8
*bssid
, int freq
,
2116 u8
*ssid
, u8 ssid_len
)
2118 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2119 struct ieee80211_sta_bss
*bss
;
2121 bss
= kzalloc(sizeof(*bss
), GFP_ATOMIC
);
2124 atomic_inc(&bss
->users
);
2125 atomic_inc(&bss
->users
);
2126 memcpy(bss
->bssid
, bssid
, ETH_ALEN
);
2128 if (ssid
&& ssid_len
<= IEEE80211_MAX_SSID_LEN
) {
2129 memcpy(bss
->ssid
, ssid
, ssid_len
);
2130 bss
->ssid_len
= ssid_len
;
2133 spin_lock_bh(&local
->sta_bss_lock
);
2134 /* TODO: order by RSSI? */
2135 list_add_tail(&bss
->list
, &local
->sta_bss_list
);
2136 __ieee80211_rx_bss_hash_add(dev
, bss
);
2137 spin_unlock_bh(&local
->sta_bss_lock
);
2141 static struct ieee80211_sta_bss
*
2142 ieee80211_rx_bss_get(struct net_device
*dev
, u8
*bssid
, int freq
,
2143 u8
*ssid
, u8 ssid_len
)
2145 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2146 struct ieee80211_sta_bss
*bss
;
2148 spin_lock_bh(&local
->sta_bss_lock
);
2149 bss
= local
->sta_bss_hash
[STA_HASH(bssid
)];
2151 if (!bss_mesh_cfg(bss
) &&
2152 !memcmp(bss
->bssid
, bssid
, ETH_ALEN
) &&
2153 bss
->freq
== freq
&&
2154 bss
->ssid_len
== ssid_len
&&
2155 (ssid_len
== 0 || !memcmp(bss
->ssid
, ssid
, ssid_len
))) {
2156 atomic_inc(&bss
->users
);
2161 spin_unlock_bh(&local
->sta_bss_lock
);
2165 #ifdef CONFIG_MAC80211_MESH
2166 static struct ieee80211_sta_bss
*
2167 ieee80211_rx_mesh_bss_get(struct net_device
*dev
, u8
*mesh_id
, int mesh_id_len
,
2168 u8
*mesh_cfg
, int freq
)
2170 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2171 struct ieee80211_sta_bss
*bss
;
2173 spin_lock_bh(&local
->sta_bss_lock
);
2174 bss
= local
->sta_bss_hash
[mesh_id_hash(mesh_id
, mesh_id_len
)];
2176 if (bss_mesh_cfg(bss
) &&
2177 !memcmp(bss_mesh_cfg(bss
), mesh_cfg
, MESH_CFG_CMP_LEN
) &&
2178 bss
->freq
== freq
&&
2179 mesh_id_len
== bss
->mesh_id_len
&&
2180 (mesh_id_len
== 0 || !memcmp(bss
->mesh_id
, mesh_id
,
2182 atomic_inc(&bss
->users
);
2187 spin_unlock_bh(&local
->sta_bss_lock
);
2191 static struct ieee80211_sta_bss
*
2192 ieee80211_rx_mesh_bss_add(struct net_device
*dev
, u8
*mesh_id
, int mesh_id_len
,
2193 u8
*mesh_cfg
, int mesh_config_len
, int freq
)
2195 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2196 struct ieee80211_sta_bss
*bss
;
2198 if (mesh_config_len
!= MESH_CFG_LEN
)
2201 bss
= kzalloc(sizeof(*bss
), GFP_ATOMIC
);
2205 bss
->mesh_cfg
= kmalloc(MESH_CFG_CMP_LEN
, GFP_ATOMIC
);
2206 if (!bss
->mesh_cfg
) {
2211 if (mesh_id_len
&& mesh_id_len
<= IEEE80211_MAX_MESH_ID_LEN
) {
2212 bss
->mesh_id
= kmalloc(mesh_id_len
, GFP_ATOMIC
);
2213 if (!bss
->mesh_id
) {
2214 kfree(bss
->mesh_cfg
);
2218 memcpy(bss
->mesh_id
, mesh_id
, mesh_id_len
);
2221 atomic_inc(&bss
->users
);
2222 atomic_inc(&bss
->users
);
2223 memcpy(bss
->mesh_cfg
, mesh_cfg
, MESH_CFG_CMP_LEN
);
2224 bss
->mesh_id_len
= mesh_id_len
;
2226 spin_lock_bh(&local
->sta_bss_lock
);
2227 /* TODO: order by RSSI? */
2228 list_add_tail(&bss
->list
, &local
->sta_bss_list
);
2229 __ieee80211_rx_bss_hash_add(dev
, bss
);
2230 spin_unlock_bh(&local
->sta_bss_lock
);
2235 static void ieee80211_rx_bss_free(struct ieee80211_sta_bss
*bss
)
2241 kfree(bss_mesh_id(bss
));
2242 kfree(bss_mesh_cfg(bss
));
2247 static void ieee80211_rx_bss_put(struct net_device
*dev
,
2248 struct ieee80211_sta_bss
*bss
)
2250 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2253 if (!atomic_dec_and_lock(&bss
->users
, &local
->sta_bss_lock
)) {
2258 __ieee80211_rx_bss_hash_del(dev
, bss
);
2259 list_del(&bss
->list
);
2260 spin_unlock_bh(&local
->sta_bss_lock
);
2261 ieee80211_rx_bss_free(bss
);
2265 void ieee80211_rx_bss_list_init(struct net_device
*dev
)
2267 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2268 spin_lock_init(&local
->sta_bss_lock
);
2269 INIT_LIST_HEAD(&local
->sta_bss_list
);
2273 void ieee80211_rx_bss_list_deinit(struct net_device
*dev
)
2275 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2276 struct ieee80211_sta_bss
*bss
, *tmp
;
2278 list_for_each_entry_safe(bss
, tmp
, &local
->sta_bss_list
, list
)
2279 ieee80211_rx_bss_put(dev
, bss
);
2283 static int ieee80211_sta_join_ibss(struct net_device
*dev
,
2284 struct ieee80211_if_sta
*ifsta
,
2285 struct ieee80211_sta_bss
*bss
)
2287 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2288 int res
, rates
, i
, j
;
2289 struct sk_buff
*skb
;
2290 struct ieee80211_mgmt
*mgmt
;
2291 struct ieee80211_tx_control control
;
2292 struct rate_selection ratesel
;
2294 struct ieee80211_sub_if_data
*sdata
;
2295 struct ieee80211_supported_band
*sband
;
2297 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
2299 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2301 /* Remove possible STA entries from other IBSS networks. */
2302 sta_info_flush_delayed(sdata
);
2304 if (local
->ops
->reset_tsf
) {
2305 /* Reset own TSF to allow time synchronization work. */
2306 local
->ops
->reset_tsf(local_to_hw(local
));
2308 memcpy(ifsta
->bssid
, bss
->bssid
, ETH_ALEN
);
2309 res
= ieee80211_if_config(dev
);
2313 local
->hw
.conf
.beacon_int
= bss
->beacon_int
>= 10 ? bss
->beacon_int
: 10;
2315 sdata
->drop_unencrypted
= bss
->capability
&
2316 WLAN_CAPABILITY_PRIVACY
? 1 : 0;
2318 res
= ieee80211_set_freq(local
, bss
->freq
);
2320 if (local
->oper_channel
->flags
& IEEE80211_CHAN_NO_IBSS
) {
2321 printk(KERN_DEBUG
"%s: IBSS not allowed on frequency "
2322 "%d MHz\n", dev
->name
, local
->oper_channel
->center_freq
);
2326 /* Set beacon template */
2327 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ 400);
2332 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
2334 mgmt
= (struct ieee80211_mgmt
*)
2335 skb_put(skb
, 24 + sizeof(mgmt
->u
.beacon
));
2336 memset(mgmt
, 0, 24 + sizeof(mgmt
->u
.beacon
));
2337 mgmt
->frame_control
= IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
2338 IEEE80211_STYPE_BEACON
);
2339 memset(mgmt
->da
, 0xff, ETH_ALEN
);
2340 memcpy(mgmt
->sa
, dev
->dev_addr
, ETH_ALEN
);
2341 memcpy(mgmt
->bssid
, ifsta
->bssid
, ETH_ALEN
);
2342 mgmt
->u
.beacon
.beacon_int
=
2343 cpu_to_le16(local
->hw
.conf
.beacon_int
);
2344 mgmt
->u
.beacon
.capab_info
= cpu_to_le16(bss
->capability
);
2346 pos
= skb_put(skb
, 2 + ifsta
->ssid_len
);
2347 *pos
++ = WLAN_EID_SSID
;
2348 *pos
++ = ifsta
->ssid_len
;
2349 memcpy(pos
, ifsta
->ssid
, ifsta
->ssid_len
);
2351 rates
= bss
->supp_rates_len
;
2354 pos
= skb_put(skb
, 2 + rates
);
2355 *pos
++ = WLAN_EID_SUPP_RATES
;
2357 memcpy(pos
, bss
->supp_rates
, rates
);
2359 if (bss
->band
== IEEE80211_BAND_2GHZ
) {
2360 pos
= skb_put(skb
, 2 + 1);
2361 *pos
++ = WLAN_EID_DS_PARAMS
;
2363 *pos
++ = ieee80211_frequency_to_channel(bss
->freq
);
2366 pos
= skb_put(skb
, 2 + 2);
2367 *pos
++ = WLAN_EID_IBSS_PARAMS
;
2369 /* FIX: set ATIM window based on scan results */
2373 if (bss
->supp_rates_len
> 8) {
2374 rates
= bss
->supp_rates_len
- 8;
2375 pos
= skb_put(skb
, 2 + rates
);
2376 *pos
++ = WLAN_EID_EXT_SUPP_RATES
;
2378 memcpy(pos
, &bss
->supp_rates
[8], rates
);
2381 memset(&control
, 0, sizeof(control
));
2382 rate_control_get_rate(dev
, sband
, skb
, &ratesel
);
2383 if (!ratesel
.rate
) {
2384 printk(KERN_DEBUG
"%s: Failed to determine TX rate "
2385 "for IBSS beacon\n", dev
->name
);
2388 control
.vif
= &sdata
->vif
;
2389 control
.tx_rate
= ratesel
.rate
;
2390 if (sdata
->bss_conf
.use_short_preamble
&&
2391 ratesel
.rate
->flags
& IEEE80211_RATE_SHORT_PREAMBLE
)
2392 control
.flags
|= IEEE80211_TXCTL_SHORT_PREAMBLE
;
2393 control
.antenna_sel_tx
= local
->hw
.conf
.antenna_sel_tx
;
2394 control
.flags
|= IEEE80211_TXCTL_NO_ACK
;
2395 control
.retry_limit
= 1;
2397 ifsta
->probe_resp
= skb_copy(skb
, GFP_ATOMIC
);
2398 if (ifsta
->probe_resp
) {
2399 mgmt
= (struct ieee80211_mgmt
*)
2400 ifsta
->probe_resp
->data
;
2401 mgmt
->frame_control
=
2402 IEEE80211_FC(IEEE80211_FTYPE_MGMT
,
2403 IEEE80211_STYPE_PROBE_RESP
);
2405 printk(KERN_DEBUG
"%s: Could not allocate ProbeResp "
2406 "template for IBSS\n", dev
->name
);
2409 if (local
->ops
->beacon_update
&&
2410 local
->ops
->beacon_update(local_to_hw(local
),
2411 skb
, &control
) == 0) {
2412 printk(KERN_DEBUG
"%s: Configured IBSS beacon "
2413 "template\n", dev
->name
);
2418 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
2419 for (i
= 0; i
< bss
->supp_rates_len
; i
++) {
2420 int bitrate
= (bss
->supp_rates
[i
] & 0x7f) * 5;
2421 for (j
= 0; j
< sband
->n_bitrates
; j
++)
2422 if (sband
->bitrates
[j
].bitrate
== bitrate
)
2425 ifsta
->supp_rates_bits
[local
->hw
.conf
.channel
->band
] = rates
;
2427 ieee80211_sta_def_wmm_params(dev
, bss
, 1);
2431 printk(KERN_DEBUG
"%s: Failed to configure IBSS beacon "
2432 "template\n", dev
->name
);
2436 ifsta
->state
= IEEE80211_IBSS_JOINED
;
2437 mod_timer(&ifsta
->timer
, jiffies
+ IEEE80211_IBSS_MERGE_INTERVAL
);
2439 ieee80211_rx_bss_put(dev
, bss
);
2444 u64
ieee80211_sta_get_rates(struct ieee80211_local
*local
,
2445 struct ieee802_11_elems
*elems
,
2446 enum ieee80211_band band
)
2448 struct ieee80211_supported_band
*sband
;
2449 struct ieee80211_rate
*bitrates
;
2453 sband
= local
->hw
.wiphy
->bands
[band
];
2457 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
2460 bitrates
= sband
->bitrates
;
2461 num_rates
= sband
->n_bitrates
;
2463 for (i
= 0; i
< elems
->supp_rates_len
+
2464 elems
->ext_supp_rates_len
; i
++) {
2467 if (i
< elems
->supp_rates_len
)
2468 rate
= elems
->supp_rates
[i
];
2469 else if (elems
->ext_supp_rates
)
2470 rate
= elems
->ext_supp_rates
2471 [i
- elems
->supp_rates_len
];
2472 own_rate
= 5 * (rate
& 0x7f);
2473 for (j
= 0; j
< num_rates
; j
++)
2474 if (bitrates
[j
].bitrate
== own_rate
)
2475 supp_rates
|= BIT(j
);
2481 static void ieee80211_rx_bss_info(struct net_device
*dev
,
2482 struct ieee80211_mgmt
*mgmt
,
2484 struct ieee80211_rx_status
*rx_status
,
2487 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2488 struct ieee802_11_elems elems
;
2491 struct ieee80211_sta_bss
*bss
;
2492 struct sta_info
*sta
;
2493 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2494 u64 beacon_timestamp
, rx_timestamp
;
2495 struct ieee80211_channel
*channel
;
2496 DECLARE_MAC_BUF(mac
);
2497 DECLARE_MAC_BUF(mac2
);
2499 if (!beacon
&& memcmp(mgmt
->da
, dev
->dev_addr
, ETH_ALEN
))
2500 return; /* ignore ProbeResp to foreign address */
2503 printk(KERN_DEBUG
"%s: RX %s from %s to %s\n",
2504 dev
->name
, beacon
? "Beacon" : "Probe Response",
2505 print_mac(mac
, mgmt
->sa
), print_mac(mac2
, mgmt
->da
));
2508 baselen
= (u8
*) mgmt
->u
.beacon
.variable
- (u8
*) mgmt
;
2512 beacon_timestamp
= le64_to_cpu(mgmt
->u
.beacon
.timestamp
);
2513 ieee802_11_parse_elems(mgmt
->u
.beacon
.variable
, len
- baselen
, &elems
);
2515 if (ieee80211_vif_is_mesh(&sdata
->vif
) && elems
.mesh_id
&&
2516 elems
.mesh_config
&& mesh_matches_local(&elems
, dev
)) {
2517 u64 rates
= ieee80211_sta_get_rates(local
, &elems
,
2520 mesh_neighbour_update(mgmt
->sa
, rates
, dev
,
2521 mesh_peer_accepts_plinks(&elems
, dev
));
2526 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
&& elems
.supp_rates
&&
2527 memcmp(mgmt
->bssid
, sdata
->u
.sta
.bssid
, ETH_ALEN
) == 0 &&
2528 (sta
= sta_info_get(local
, mgmt
->sa
))) {
2530 u64 supp_rates
= ieee80211_sta_get_rates(local
, &elems
,
2533 prev_rates
= sta
->supp_rates
[rx_status
->band
];
2534 sta
->supp_rates
[rx_status
->band
] &= supp_rates
;
2535 if (sta
->supp_rates
[rx_status
->band
] == 0) {
2536 /* No matching rates - this should not really happen.
2537 * Make sure that at least one rate is marked
2538 * supported to avoid issues with TX rate ctrl. */
2539 sta
->supp_rates
[rx_status
->band
] =
2540 sdata
->u
.sta
.supp_rates_bits
[rx_status
->band
];
2542 if (sta
->supp_rates
[rx_status
->band
] != prev_rates
) {
2543 printk(KERN_DEBUG
"%s: updated supp_rates set for "
2544 "%s based on beacon info (0x%llx & 0x%llx -> "
2546 dev
->name
, print_mac(mac
, sta
->addr
),
2547 (unsigned long long) prev_rates
,
2548 (unsigned long long) supp_rates
,
2549 (unsigned long long) sta
->supp_rates
[rx_status
->band
]);
2555 if (elems
.ds_params
&& elems
.ds_params_len
== 1)
2556 freq
= ieee80211_channel_to_frequency(elems
.ds_params
[0]);
2558 freq
= rx_status
->freq
;
2560 channel
= ieee80211_get_channel(local
->hw
.wiphy
, freq
);
2562 if (!channel
|| channel
->flags
& IEEE80211_CHAN_DISABLED
)
2565 #ifdef CONFIG_MAC80211_MESH
2566 if (elems
.mesh_config
)
2567 bss
= ieee80211_rx_mesh_bss_get(dev
, elems
.mesh_id
,
2568 elems
.mesh_id_len
, elems
.mesh_config
, freq
);
2571 bss
= ieee80211_rx_bss_get(dev
, mgmt
->bssid
, freq
,
2572 elems
.ssid
, elems
.ssid_len
);
2574 #ifdef CONFIG_MAC80211_MESH
2575 if (elems
.mesh_config
)
2576 bss
= ieee80211_rx_mesh_bss_add(dev
, elems
.mesh_id
,
2577 elems
.mesh_id_len
, elems
.mesh_config
,
2578 elems
.mesh_config_len
, freq
);
2581 bss
= ieee80211_rx_bss_add(dev
, mgmt
->bssid
, freq
,
2582 elems
.ssid
, elems
.ssid_len
);
2587 /* TODO: order by RSSI? */
2588 spin_lock_bh(&local
->sta_bss_lock
);
2589 list_move_tail(&bss
->list
, &local
->sta_bss_list
);
2590 spin_unlock_bh(&local
->sta_bss_lock
);
2594 /* save the ERP value so that it is available at association time */
2595 if (elems
.erp_info
&& elems
.erp_info_len
>= 1) {
2596 bss
->erp_value
= elems
.erp_info
[0];
2597 bss
->has_erp_value
= 1;
2600 if (elems
.ht_cap_elem
&&
2601 (!bss
->ht_ie
|| bss
->ht_ie_len
!= elems
.ht_cap_elem_len
||
2602 memcmp(bss
->ht_ie
, elems
.ht_cap_elem
, elems
.ht_cap_elem_len
))) {
2604 bss
->ht_ie
= kmalloc(elems
.ht_cap_elem_len
+ 2, GFP_ATOMIC
);
2606 memcpy(bss
->ht_ie
, elems
.ht_cap_elem
- 2,
2607 elems
.ht_cap_elem_len
+ 2);
2608 bss
->ht_ie_len
= elems
.ht_cap_elem_len
+ 2;
2611 } else if (!elems
.ht_cap_elem
&& bss
->ht_ie
) {
2617 bss
->beacon_int
= le16_to_cpu(mgmt
->u
.beacon
.beacon_int
);
2618 bss
->capability
= le16_to_cpu(mgmt
->u
.beacon
.capab_info
);
2620 bss
->supp_rates_len
= 0;
2621 if (elems
.supp_rates
) {
2622 clen
= IEEE80211_MAX_SUPP_RATES
- bss
->supp_rates_len
;
2623 if (clen
> elems
.supp_rates_len
)
2624 clen
= elems
.supp_rates_len
;
2625 memcpy(&bss
->supp_rates
[bss
->supp_rates_len
], elems
.supp_rates
,
2627 bss
->supp_rates_len
+= clen
;
2629 if (elems
.ext_supp_rates
) {
2630 clen
= IEEE80211_MAX_SUPP_RATES
- bss
->supp_rates_len
;
2631 if (clen
> elems
.ext_supp_rates_len
)
2632 clen
= elems
.ext_supp_rates_len
;
2633 memcpy(&bss
->supp_rates
[bss
->supp_rates_len
],
2634 elems
.ext_supp_rates
, clen
);
2635 bss
->supp_rates_len
+= clen
;
2638 bss
->band
= rx_status
->band
;
2640 bss
->timestamp
= beacon_timestamp
;
2641 bss
->last_update
= jiffies
;
2642 bss
->rssi
= rx_status
->ssi
;
2643 bss
->signal
= rx_status
->signal
;
2644 bss
->noise
= rx_status
->noise
;
2645 if (!beacon
&& !bss
->probe_resp
)
2646 bss
->probe_resp
= true;
2649 * In STA mode, the remaining parameters should not be overridden
2650 * by beacons because they're not necessarily accurate there.
2652 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
&&
2653 bss
->probe_resp
&& beacon
) {
2654 ieee80211_rx_bss_put(dev
, bss
);
2659 (!bss
->wpa_ie
|| bss
->wpa_ie_len
!= elems
.wpa_len
||
2660 memcmp(bss
->wpa_ie
, elems
.wpa
, elems
.wpa_len
))) {
2662 bss
->wpa_ie
= kmalloc(elems
.wpa_len
+ 2, GFP_ATOMIC
);
2664 memcpy(bss
->wpa_ie
, elems
.wpa
- 2, elems
.wpa_len
+ 2);
2665 bss
->wpa_ie_len
= elems
.wpa_len
+ 2;
2667 bss
->wpa_ie_len
= 0;
2668 } else if (!elems
.wpa
&& bss
->wpa_ie
) {
2671 bss
->wpa_ie_len
= 0;
2675 (!bss
->rsn_ie
|| bss
->rsn_ie_len
!= elems
.rsn_len
||
2676 memcmp(bss
->rsn_ie
, elems
.rsn
, elems
.rsn_len
))) {
2678 bss
->rsn_ie
= kmalloc(elems
.rsn_len
+ 2, GFP_ATOMIC
);
2680 memcpy(bss
->rsn_ie
, elems
.rsn
- 2, elems
.rsn_len
+ 2);
2681 bss
->rsn_ie_len
= elems
.rsn_len
+ 2;
2683 bss
->rsn_ie_len
= 0;
2684 } else if (!elems
.rsn
&& bss
->rsn_ie
) {
2687 bss
->rsn_ie_len
= 0;
2692 * http://www.wipo.int/pctdb/en/wo.jsp?wo=2007047181&IA=WO2007047181&DISPLAY=DESC
2696 * In particular, "Wi-Fi CERTIFIED for WMM - Support for Multimedia
2697 * Applications with Quality of Service in Wi-Fi Networks," Wi- Fi
2698 * Alliance (September 1, 2004) is incorporated by reference herein.
2699 * The inclusion of the WMM Parameters in probe responses and
2700 * association responses is mandatory for WMM enabled networks. The
2701 * inclusion of the WMM Parameters in beacons, however, is optional.
2704 if (elems
.wmm_param
&&
2705 (!bss
->wmm_ie
|| bss
->wmm_ie_len
!= elems
.wmm_param_len
||
2706 memcmp(bss
->wmm_ie
, elems
.wmm_param
, elems
.wmm_param_len
))) {
2708 bss
->wmm_ie
= kmalloc(elems
.wmm_param_len
+ 2, GFP_ATOMIC
);
2710 memcpy(bss
->wmm_ie
, elems
.wmm_param
- 2,
2711 elems
.wmm_param_len
+ 2);
2712 bss
->wmm_ie_len
= elems
.wmm_param_len
+ 2;
2714 bss
->wmm_ie_len
= 0;
2715 } else if (elems
.wmm_info
&&
2716 (!bss
->wmm_ie
|| bss
->wmm_ie_len
!= elems
.wmm_info_len
||
2717 memcmp(bss
->wmm_ie
, elems
.wmm_info
, elems
.wmm_info_len
))) {
2718 /* As for certain AP's Fifth bit is not set in WMM IE in
2719 * beacon frames.So while parsing the beacon frame the
2720 * wmm_info structure is used instead of wmm_param.
2721 * wmm_info structure was never used to set bss->wmm_ie.
2722 * This code fixes this problem by copying the WME
2723 * information from wmm_info to bss->wmm_ie and enabling
2724 * n-band association.
2727 bss
->wmm_ie
= kmalloc(elems
.wmm_info_len
+ 2, GFP_ATOMIC
);
2729 memcpy(bss
->wmm_ie
, elems
.wmm_info
- 2,
2730 elems
.wmm_info_len
+ 2);
2731 bss
->wmm_ie_len
= elems
.wmm_info_len
+ 2;
2733 bss
->wmm_ie_len
= 0;
2734 } else if (!elems
.wmm_param
&& !elems
.wmm_info
&& bss
->wmm_ie
) {
2737 bss
->wmm_ie_len
= 0;
2740 /* check if we need to merge IBSS */
2741 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
&& beacon
&&
2742 !local
->sta_sw_scanning
&& !local
->sta_hw_scanning
&&
2743 bss
->capability
& WLAN_CAPABILITY_IBSS
&&
2744 bss
->freq
== local
->oper_channel
->center_freq
&&
2745 elems
.ssid_len
== sdata
->u
.sta
.ssid_len
&&
2746 memcmp(elems
.ssid
, sdata
->u
.sta
.ssid
, sdata
->u
.sta
.ssid_len
) == 0) {
2747 if (rx_status
->flag
& RX_FLAG_TSFT
) {
2748 /* in order for correct IBSS merging we need mactime
2750 * since mactime is defined as the time the first data
2751 * symbol of the frame hits the PHY, and the timestamp
2752 * of the beacon is defined as "the time that the data
2753 * symbol containing the first bit of the timestamp is
2754 * transmitted to the PHY plus the transmitting STA’s
2755 * delays through its local PHY from the MAC-PHY
2756 * interface to its interface with the WM"
2757 * (802.11 11.1.2) - equals the time this bit arrives at
2758 * the receiver - we have to take into account the
2759 * offset between the two.
2760 * e.g: at 1 MBit that means mactime is 192 usec earlier
2761 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
2763 int rate
= local
->hw
.wiphy
->bands
[rx_status
->band
]->
2764 bitrates
[rx_status
->rate_idx
].bitrate
;
2765 rx_timestamp
= rx_status
->mactime
+ (24 * 8 * 10 / rate
);
2766 } else if (local
&& local
->ops
&& local
->ops
->get_tsf
)
2767 /* second best option: get current TSF */
2768 rx_timestamp
= local
->ops
->get_tsf(local_to_hw(local
));
2770 /* can't merge without knowing the TSF */
2771 rx_timestamp
= -1LLU;
2772 #ifdef CONFIG_MAC80211_IBSS_DEBUG
2773 printk(KERN_DEBUG
"RX beacon SA=%s BSSID="
2774 "%s TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
2775 print_mac(mac
, mgmt
->sa
),
2776 print_mac(mac2
, mgmt
->bssid
),
2777 (unsigned long long)rx_timestamp
,
2778 (unsigned long long)beacon_timestamp
,
2779 (unsigned long long)(rx_timestamp
- beacon_timestamp
),
2781 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
2782 if (beacon_timestamp
> rx_timestamp
) {
2783 #ifndef CONFIG_MAC80211_IBSS_DEBUG
2784 if (net_ratelimit())
2786 printk(KERN_DEBUG
"%s: beacon TSF higher than "
2787 "local TSF - IBSS merge with BSSID %s\n",
2788 dev
->name
, print_mac(mac
, mgmt
->bssid
));
2789 ieee80211_sta_join_ibss(dev
, &sdata
->u
.sta
, bss
);
2790 ieee80211_ibss_add_sta(dev
, NULL
,
2791 mgmt
->bssid
, mgmt
->sa
);
2795 ieee80211_rx_bss_put(dev
, bss
);
2799 static void ieee80211_rx_mgmt_probe_resp(struct net_device
*dev
,
2800 struct ieee80211_mgmt
*mgmt
,
2802 struct ieee80211_rx_status
*rx_status
)
2804 ieee80211_rx_bss_info(dev
, mgmt
, len
, rx_status
, 0);
2808 static void ieee80211_rx_mgmt_beacon(struct net_device
*dev
,
2809 struct ieee80211_mgmt
*mgmt
,
2811 struct ieee80211_rx_status
*rx_status
)
2813 struct ieee80211_sub_if_data
*sdata
;
2814 struct ieee80211_if_sta
*ifsta
;
2816 struct ieee802_11_elems elems
;
2817 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2818 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
2821 ieee80211_rx_bss_info(dev
, mgmt
, len
, rx_status
, 1);
2823 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2824 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
2826 ifsta
= &sdata
->u
.sta
;
2828 if (!(ifsta
->flags
& IEEE80211_STA_ASSOCIATED
) ||
2829 memcmp(ifsta
->bssid
, mgmt
->bssid
, ETH_ALEN
) != 0)
2832 /* Process beacon from the current BSS */
2833 baselen
= (u8
*) mgmt
->u
.beacon
.variable
- (u8
*) mgmt
;
2837 ieee802_11_parse_elems(mgmt
->u
.beacon
.variable
, len
- baselen
, &elems
);
2839 if (elems
.wmm_param
&& (ifsta
->flags
& IEEE80211_STA_WMM_ENABLED
)) {
2840 ieee80211_sta_wmm_params(dev
, ifsta
, elems
.wmm_param
,
2841 elems
.wmm_param_len
);
2844 /* Do not send changes to driver if we are scanning. This removes
2845 * requirement that driver's bss_info_changed function needs to be
2847 if (local
->sta_sw_scanning
|| local
->sta_hw_scanning
)
2850 if (elems
.erp_info
&& elems
.erp_info_len
>= 1)
2851 changed
|= ieee80211_handle_erp_ie(sdata
, elems
.erp_info
[0]);
2853 u16 capab
= le16_to_cpu(mgmt
->u
.beacon
.capab_info
);
2854 changed
|= ieee80211_handle_protect_preamb(sdata
, false,
2855 (capab
& WLAN_CAPABILITY_SHORT_PREAMBLE
) != 0);
2858 if (elems
.ht_cap_elem
&& elems
.ht_info_elem
&&
2859 elems
.wmm_param
&& conf
->flags
& IEEE80211_CONF_SUPPORT_HT_MODE
) {
2860 struct ieee80211_ht_bss_info bss_info
;
2862 ieee80211_ht_addt_info_ie_to_ht_bss_info(
2863 (struct ieee80211_ht_addt_info
*)
2864 elems
.ht_info_elem
, &bss_info
);
2865 changed
|= ieee80211_handle_ht(local
, 1, &conf
->ht_conf
,
2869 ieee80211_bss_info_change_notify(sdata
, changed
);
2873 static void ieee80211_rx_mgmt_probe_req(struct net_device
*dev
,
2874 struct ieee80211_if_sta
*ifsta
,
2875 struct ieee80211_mgmt
*mgmt
,
2877 struct ieee80211_rx_status
*rx_status
)
2879 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2880 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2882 struct sk_buff
*skb
;
2883 struct ieee80211_mgmt
*resp
;
2885 DECLARE_MAC_BUF(mac
);
2886 #ifdef CONFIG_MAC80211_IBSS_DEBUG
2887 DECLARE_MAC_BUF(mac2
);
2888 DECLARE_MAC_BUF(mac3
);
2891 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
||
2892 ifsta
->state
!= IEEE80211_IBSS_JOINED
||
2893 len
< 24 + 2 || !ifsta
->probe_resp
)
2896 if (local
->ops
->tx_last_beacon
)
2897 tx_last_beacon
= local
->ops
->tx_last_beacon(local_to_hw(local
));
2901 #ifdef CONFIG_MAC80211_IBSS_DEBUG
2902 printk(KERN_DEBUG
"%s: RX ProbeReq SA=%s DA=%s BSSID="
2903 "%s (tx_last_beacon=%d)\n",
2904 dev
->name
, print_mac(mac
, mgmt
->sa
), print_mac(mac2
, mgmt
->da
),
2905 print_mac(mac3
, mgmt
->bssid
), tx_last_beacon
);
2906 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
2908 if (!tx_last_beacon
)
2911 if (memcmp(mgmt
->bssid
, ifsta
->bssid
, ETH_ALEN
) != 0 &&
2912 memcmp(mgmt
->bssid
, "\xff\xff\xff\xff\xff\xff", ETH_ALEN
) != 0)
2915 end
= ((u8
*) mgmt
) + len
;
2916 pos
= mgmt
->u
.probe_req
.variable
;
2917 if (pos
[0] != WLAN_EID_SSID
||
2918 pos
+ 2 + pos
[1] > end
) {
2919 if (net_ratelimit()) {
2920 printk(KERN_DEBUG
"%s: Invalid SSID IE in ProbeReq "
2922 dev
->name
, print_mac(mac
, mgmt
->sa
));
2927 (pos
[1] != ifsta
->ssid_len
||
2928 memcmp(pos
+ 2, ifsta
->ssid
, ifsta
->ssid_len
) != 0)) {
2929 /* Ignore ProbeReq for foreign SSID */
2933 /* Reply with ProbeResp */
2934 skb
= skb_copy(ifsta
->probe_resp
, GFP_KERNEL
);
2938 resp
= (struct ieee80211_mgmt
*) skb
->data
;
2939 memcpy(resp
->da
, mgmt
->sa
, ETH_ALEN
);
2940 #ifdef CONFIG_MAC80211_IBSS_DEBUG
2941 printk(KERN_DEBUG
"%s: Sending ProbeResp to %s\n",
2942 dev
->name
, print_mac(mac
, resp
->da
));
2943 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
2944 ieee80211_sta_tx(dev
, skb
, 0);
2947 static void ieee80211_rx_mgmt_action(struct net_device
*dev
,
2948 struct ieee80211_if_sta
*ifsta
,
2949 struct ieee80211_mgmt
*mgmt
,
2951 struct ieee80211_rx_status
*rx_status
)
2953 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2955 if (len
< IEEE80211_MIN_ACTION_SIZE
)
2958 switch (mgmt
->u
.action
.category
) {
2959 case WLAN_CATEGORY_BACK
:
2960 switch (mgmt
->u
.action
.u
.addba_req
.action_code
) {
2961 case WLAN_ACTION_ADDBA_REQ
:
2962 if (len
< (IEEE80211_MIN_ACTION_SIZE
+
2963 sizeof(mgmt
->u
.action
.u
.addba_req
)))
2965 ieee80211_sta_process_addba_request(dev
, mgmt
, len
);
2967 case WLAN_ACTION_ADDBA_RESP
:
2968 if (len
< (IEEE80211_MIN_ACTION_SIZE
+
2969 sizeof(mgmt
->u
.action
.u
.addba_resp
)))
2971 ieee80211_sta_process_addba_resp(dev
, mgmt
, len
);
2973 case WLAN_ACTION_DELBA
:
2974 if (len
< (IEEE80211_MIN_ACTION_SIZE
+
2975 sizeof(mgmt
->u
.action
.u
.delba
)))
2977 ieee80211_sta_process_delba(dev
, mgmt
, len
);
2980 if (net_ratelimit())
2981 printk(KERN_DEBUG
"%s: Rx unknown A-MPDU action\n",
2986 case PLINK_CATEGORY
:
2987 if (ieee80211_vif_is_mesh(&sdata
->vif
))
2988 mesh_rx_plink_frame(dev
, mgmt
, len
, rx_status
);
2990 case MESH_PATH_SEL_CATEGORY
:
2991 if (ieee80211_vif_is_mesh(&sdata
->vif
))
2992 mesh_rx_path_sel_frame(dev
, mgmt
, len
);
2995 if (net_ratelimit())
2996 printk(KERN_DEBUG
"%s: Rx unknown action frame - "
2997 "category=%d\n", dev
->name
, mgmt
->u
.action
.category
);
3002 void ieee80211_sta_rx_mgmt(struct net_device
*dev
, struct sk_buff
*skb
,
3003 struct ieee80211_rx_status
*rx_status
)
3005 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3006 struct ieee80211_sub_if_data
*sdata
;
3007 struct ieee80211_if_sta
*ifsta
;
3008 struct ieee80211_mgmt
*mgmt
;
3014 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3015 ifsta
= &sdata
->u
.sta
;
3017 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
3018 fc
= le16_to_cpu(mgmt
->frame_control
);
3020 switch (fc
& IEEE80211_FCTL_STYPE
) {
3021 case IEEE80211_STYPE_PROBE_REQ
:
3022 case IEEE80211_STYPE_PROBE_RESP
:
3023 case IEEE80211_STYPE_BEACON
:
3024 case IEEE80211_STYPE_ACTION
:
3025 memcpy(skb
->cb
, rx_status
, sizeof(*rx_status
));
3026 case IEEE80211_STYPE_AUTH
:
3027 case IEEE80211_STYPE_ASSOC_RESP
:
3028 case IEEE80211_STYPE_REASSOC_RESP
:
3029 case IEEE80211_STYPE_DEAUTH
:
3030 case IEEE80211_STYPE_DISASSOC
:
3031 skb_queue_tail(&ifsta
->skb_queue
, skb
);
3032 queue_work(local
->hw
.workqueue
, &ifsta
->work
);
3035 printk(KERN_DEBUG
"%s: received unknown management frame - "
3036 "stype=%d\n", dev
->name
,
3037 (fc
& IEEE80211_FCTL_STYPE
) >> 4);
3046 static void ieee80211_sta_rx_queued_mgmt(struct net_device
*dev
,
3047 struct sk_buff
*skb
)
3049 struct ieee80211_rx_status
*rx_status
;
3050 struct ieee80211_sub_if_data
*sdata
;
3051 struct ieee80211_if_sta
*ifsta
;
3052 struct ieee80211_mgmt
*mgmt
;
3055 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3056 ifsta
= &sdata
->u
.sta
;
3058 rx_status
= (struct ieee80211_rx_status
*) skb
->cb
;
3059 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
3060 fc
= le16_to_cpu(mgmt
->frame_control
);
3062 switch (fc
& IEEE80211_FCTL_STYPE
) {
3063 case IEEE80211_STYPE_PROBE_REQ
:
3064 ieee80211_rx_mgmt_probe_req(dev
, ifsta
, mgmt
, skb
->len
,
3067 case IEEE80211_STYPE_PROBE_RESP
:
3068 ieee80211_rx_mgmt_probe_resp(dev
, mgmt
, skb
->len
, rx_status
);
3070 case IEEE80211_STYPE_BEACON
:
3071 ieee80211_rx_mgmt_beacon(dev
, mgmt
, skb
->len
, rx_status
);
3073 case IEEE80211_STYPE_AUTH
:
3074 ieee80211_rx_mgmt_auth(dev
, ifsta
, mgmt
, skb
->len
);
3076 case IEEE80211_STYPE_ASSOC_RESP
:
3077 ieee80211_rx_mgmt_assoc_resp(sdata
, ifsta
, mgmt
, skb
->len
, 0);
3079 case IEEE80211_STYPE_REASSOC_RESP
:
3080 ieee80211_rx_mgmt_assoc_resp(sdata
, ifsta
, mgmt
, skb
->len
, 1);
3082 case IEEE80211_STYPE_DEAUTH
:
3083 ieee80211_rx_mgmt_deauth(dev
, ifsta
, mgmt
, skb
->len
);
3085 case IEEE80211_STYPE_DISASSOC
:
3086 ieee80211_rx_mgmt_disassoc(dev
, ifsta
, mgmt
, skb
->len
);
3088 case IEEE80211_STYPE_ACTION
:
3089 ieee80211_rx_mgmt_action(dev
, ifsta
, mgmt
, skb
->len
, rx_status
);
3098 ieee80211_sta_rx_scan(struct net_device
*dev
, struct sk_buff
*skb
,
3099 struct ieee80211_rx_status
*rx_status
)
3101 struct ieee80211_mgmt
*mgmt
;
3105 return RX_DROP_UNUSABLE
;
3107 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
3108 fc
= le16_to_cpu(mgmt
->frame_control
);
3110 if ((fc
& IEEE80211_FCTL_FTYPE
) == IEEE80211_FTYPE_CTL
)
3114 return RX_DROP_MONITOR
;
3116 if ((fc
& IEEE80211_FCTL_FTYPE
) == IEEE80211_FTYPE_MGMT
) {
3117 if ((fc
& IEEE80211_FCTL_STYPE
) == IEEE80211_STYPE_PROBE_RESP
) {
3118 ieee80211_rx_mgmt_probe_resp(dev
, mgmt
,
3119 skb
->len
, rx_status
);
3122 } else if ((fc
& IEEE80211_FCTL_STYPE
) == IEEE80211_STYPE_BEACON
) {
3123 ieee80211_rx_mgmt_beacon(dev
, mgmt
, skb
->len
,
3133 static int ieee80211_sta_active_ibss(struct net_device
*dev
)
3135 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3137 struct sta_info
*sta
;
3138 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3142 list_for_each_entry_rcu(sta
, &local
->sta_list
, list
) {
3143 if (sta
->sdata
== sdata
&&
3144 time_after(sta
->last_rx
+ IEEE80211_IBSS_MERGE_INTERVAL
,
3157 static void ieee80211_sta_expire(struct net_device
*dev
, unsigned long exp_time
)
3159 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3160 struct sta_info
*sta
, *tmp
;
3161 LIST_HEAD(tmp_list
);
3162 DECLARE_MAC_BUF(mac
);
3163 unsigned long flags
;
3165 spin_lock_irqsave(&local
->sta_lock
, flags
);
3166 list_for_each_entry_safe(sta
, tmp
, &local
->sta_list
, list
)
3167 if (time_after(jiffies
, sta
->last_rx
+ exp_time
)) {
3168 printk(KERN_DEBUG
"%s: expiring inactive STA %s\n",
3169 dev
->name
, print_mac(mac
, sta
->addr
));
3170 __sta_info_unlink(&sta
);
3172 list_add(&sta
->list
, &tmp_list
);
3174 spin_unlock_irqrestore(&local
->sta_lock
, flags
);
3176 list_for_each_entry_safe(sta
, tmp
, &tmp_list
, list
)
3177 sta_info_destroy(sta
);
3181 static void ieee80211_sta_merge_ibss(struct net_device
*dev
,
3182 struct ieee80211_if_sta
*ifsta
)
3184 mod_timer(&ifsta
->timer
, jiffies
+ IEEE80211_IBSS_MERGE_INTERVAL
);
3186 ieee80211_sta_expire(dev
, IEEE80211_IBSS_INACTIVITY_LIMIT
);
3187 if (ieee80211_sta_active_ibss(dev
))
3190 printk(KERN_DEBUG
"%s: No active IBSS STAs - trying to scan for other "
3191 "IBSS networks with same SSID (merge)\n", dev
->name
);
3192 ieee80211_sta_req_scan(dev
, ifsta
->ssid
, ifsta
->ssid_len
);
3196 #ifdef CONFIG_MAC80211_MESH
3197 static void ieee80211_mesh_housekeeping(struct net_device
*dev
,
3198 struct ieee80211_if_sta
*ifsta
)
3200 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3203 ieee80211_sta_expire(dev
, IEEE80211_MESH_PEER_INACTIVITY_LIMIT
);
3204 mesh_path_expire(dev
);
3206 free_plinks
= mesh_plink_availables(sdata
);
3207 if (free_plinks
!= sdata
->u
.sta
.accepting_plinks
)
3208 ieee80211_if_config_beacon(dev
);
3210 mod_timer(&ifsta
->timer
, jiffies
+
3211 IEEE80211_MESH_HOUSEKEEPING_INTERVAL
);
3215 void ieee80211_start_mesh(struct net_device
*dev
)
3217 struct ieee80211_if_sta
*ifsta
;
3218 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3219 ifsta
= &sdata
->u
.sta
;
3220 ifsta
->state
= IEEE80211_MESH_UP
;
3221 ieee80211_sta_timer((unsigned long)sdata
);
3226 void ieee80211_sta_timer(unsigned long data
)
3228 struct ieee80211_sub_if_data
*sdata
=
3229 (struct ieee80211_sub_if_data
*) data
;
3230 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
3231 struct ieee80211_local
*local
= wdev_priv(&sdata
->wdev
);
3233 set_bit(IEEE80211_STA_REQ_RUN
, &ifsta
->request
);
3234 queue_work(local
->hw
.workqueue
, &ifsta
->work
);
3237 void ieee80211_sta_work(struct work_struct
*work
)
3239 struct ieee80211_sub_if_data
*sdata
=
3240 container_of(work
, struct ieee80211_sub_if_data
, u
.sta
.work
);
3241 struct net_device
*dev
= sdata
->dev
;
3242 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3243 struct ieee80211_if_sta
*ifsta
;
3244 struct sk_buff
*skb
;
3246 if (!netif_running(dev
))
3249 if (local
->sta_sw_scanning
|| local
->sta_hw_scanning
)
3252 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
3253 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
&&
3254 sdata
->vif
.type
!= IEEE80211_IF_TYPE_MESH_POINT
) {
3255 printk(KERN_DEBUG
"%s: ieee80211_sta_work: non-STA interface "
3256 "(type=%d)\n", dev
->name
, sdata
->vif
.type
);
3259 ifsta
= &sdata
->u
.sta
;
3261 while ((skb
= skb_dequeue(&ifsta
->skb_queue
)))
3262 ieee80211_sta_rx_queued_mgmt(dev
, skb
);
3264 #ifdef CONFIG_MAC80211_MESH
3265 if (ifsta
->preq_queue_len
&&
3267 ifsta
->last_preq
+ msecs_to_jiffies(ifsta
->mshcfg
.dot11MeshHWMPpreqMinInterval
)))
3268 mesh_path_start_discovery(dev
);
3271 if (ifsta
->state
!= IEEE80211_AUTHENTICATE
&&
3272 ifsta
->state
!= IEEE80211_ASSOCIATE
&&
3273 test_and_clear_bit(IEEE80211_STA_REQ_SCAN
, &ifsta
->request
)) {
3274 if (ifsta
->scan_ssid_len
)
3275 ieee80211_sta_start_scan(dev
, ifsta
->scan_ssid
, ifsta
->scan_ssid_len
);
3277 ieee80211_sta_start_scan(dev
, NULL
, 0);
3281 if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH
, &ifsta
->request
)) {
3282 if (ieee80211_sta_config_auth(dev
, ifsta
))
3284 clear_bit(IEEE80211_STA_REQ_RUN
, &ifsta
->request
);
3285 } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN
, &ifsta
->request
))
3288 switch (ifsta
->state
) {
3289 case IEEE80211_DISABLED
:
3291 case IEEE80211_AUTHENTICATE
:
3292 ieee80211_authenticate(dev
, ifsta
);
3294 case IEEE80211_ASSOCIATE
:
3295 ieee80211_associate(dev
, ifsta
);
3297 case IEEE80211_ASSOCIATED
:
3298 ieee80211_associated(dev
, ifsta
);
3300 case IEEE80211_IBSS_SEARCH
:
3301 ieee80211_sta_find_ibss(dev
, ifsta
);
3303 case IEEE80211_IBSS_JOINED
:
3304 ieee80211_sta_merge_ibss(dev
, ifsta
);
3306 #ifdef CONFIG_MAC80211_MESH
3307 case IEEE80211_MESH_UP
:
3308 ieee80211_mesh_housekeeping(dev
, ifsta
);
3312 printk(KERN_DEBUG
"ieee80211_sta_work: Unknown state %d\n",
3317 if (ieee80211_privacy_mismatch(dev
, ifsta
)) {
3318 printk(KERN_DEBUG
"%s: privacy configuration mismatch and "
3319 "mixed-cell disabled - disassociate\n", dev
->name
);
3321 ieee80211_send_disassoc(dev
, ifsta
, WLAN_REASON_UNSPECIFIED
);
3322 ieee80211_set_disassoc(dev
, ifsta
, 0);
3327 static void ieee80211_sta_reset_auth(struct net_device
*dev
,
3328 struct ieee80211_if_sta
*ifsta
)
3330 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3332 if (local
->ops
->reset_tsf
) {
3333 /* Reset own TSF to allow time synchronization work. */
3334 local
->ops
->reset_tsf(local_to_hw(local
));
3337 ifsta
->wmm_last_param_set
= -1; /* allow any WMM update */
3340 if (ifsta
->auth_algs
& IEEE80211_AUTH_ALG_OPEN
)
3341 ifsta
->auth_alg
= WLAN_AUTH_OPEN
;
3342 else if (ifsta
->auth_algs
& IEEE80211_AUTH_ALG_SHARED_KEY
)
3343 ifsta
->auth_alg
= WLAN_AUTH_SHARED_KEY
;
3344 else if (ifsta
->auth_algs
& IEEE80211_AUTH_ALG_LEAP
)
3345 ifsta
->auth_alg
= WLAN_AUTH_LEAP
;
3347 ifsta
->auth_alg
= WLAN_AUTH_OPEN
;
3348 printk(KERN_DEBUG
"%s: Initial auth_alg=%d\n", dev
->name
,
3350 ifsta
->auth_transaction
= -1;
3351 ifsta
->flags
&= ~IEEE80211_STA_ASSOCIATED
;
3352 ifsta
->auth_tries
= ifsta
->assoc_tries
= 0;
3353 netif_carrier_off(dev
);
3357 void ieee80211_sta_req_auth(struct net_device
*dev
,
3358 struct ieee80211_if_sta
*ifsta
)
3360 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3361 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3363 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
3366 if ((ifsta
->flags
& (IEEE80211_STA_BSSID_SET
|
3367 IEEE80211_STA_AUTO_BSSID_SEL
)) &&
3368 (ifsta
->flags
& (IEEE80211_STA_SSID_SET
|
3369 IEEE80211_STA_AUTO_SSID_SEL
))) {
3370 set_bit(IEEE80211_STA_REQ_AUTH
, &ifsta
->request
);
3371 queue_work(local
->hw
.workqueue
, &ifsta
->work
);
3375 static int ieee80211_sta_match_ssid(struct ieee80211_if_sta
*ifsta
,
3376 const char *ssid
, int ssid_len
)
3378 int tmp
, hidden_ssid
;
3380 if (ssid_len
== ifsta
->ssid_len
&&
3381 !memcmp(ifsta
->ssid
, ssid
, ssid_len
))
3384 if (ifsta
->flags
& IEEE80211_STA_AUTO_BSSID_SEL
)
3390 if (ssid
[tmp
] != '\0') {
3396 if (hidden_ssid
&& ifsta
->ssid_len
== ssid_len
)
3399 if (ssid_len
== 1 && ssid
[0] == ' ')
3405 static int ieee80211_sta_config_auth(struct net_device
*dev
,
3406 struct ieee80211_if_sta
*ifsta
)
3408 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3409 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3410 struct ieee80211_sta_bss
*bss
, *selected
= NULL
;
3411 int top_rssi
= 0, freq
;
3413 if (!(ifsta
->flags
& (IEEE80211_STA_AUTO_SSID_SEL
|
3414 IEEE80211_STA_AUTO_BSSID_SEL
| IEEE80211_STA_AUTO_CHANNEL_SEL
))) {
3415 ifsta
->state
= IEEE80211_AUTHENTICATE
;
3416 ieee80211_sta_reset_auth(dev
, ifsta
);
3420 spin_lock_bh(&local
->sta_bss_lock
);
3421 freq
= local
->oper_channel
->center_freq
;
3422 list_for_each_entry(bss
, &local
->sta_bss_list
, list
) {
3423 if (!(bss
->capability
& WLAN_CAPABILITY_ESS
))
3426 if (!!(bss
->capability
& WLAN_CAPABILITY_PRIVACY
) ^
3427 !!sdata
->default_key
)
3430 if (!(ifsta
->flags
& IEEE80211_STA_AUTO_CHANNEL_SEL
) &&
3434 if (!(ifsta
->flags
& IEEE80211_STA_AUTO_BSSID_SEL
) &&
3435 memcmp(bss
->bssid
, ifsta
->bssid
, ETH_ALEN
))
3438 if (!(ifsta
->flags
& IEEE80211_STA_AUTO_SSID_SEL
) &&
3439 !ieee80211_sta_match_ssid(ifsta
, bss
->ssid
, bss
->ssid_len
))
3442 if (!selected
|| top_rssi
< bss
->rssi
) {
3444 top_rssi
= bss
->rssi
;
3448 atomic_inc(&selected
->users
);
3449 spin_unlock_bh(&local
->sta_bss_lock
);
3452 ieee80211_set_freq(local
, selected
->freq
);
3453 if (!(ifsta
->flags
& IEEE80211_STA_SSID_SET
))
3454 ieee80211_sta_set_ssid(dev
, selected
->ssid
,
3455 selected
->ssid_len
);
3456 ieee80211_sta_set_bssid(dev
, selected
->bssid
);
3457 ieee80211_sta_def_wmm_params(dev
, selected
, 0);
3458 ieee80211_rx_bss_put(dev
, selected
);
3459 ifsta
->state
= IEEE80211_AUTHENTICATE
;
3460 ieee80211_sta_reset_auth(dev
, ifsta
);
3463 if (ifsta
->state
!= IEEE80211_AUTHENTICATE
) {
3464 if (ifsta
->flags
& IEEE80211_STA_AUTO_SSID_SEL
)
3465 ieee80211_sta_start_scan(dev
, NULL
, 0);
3467 ieee80211_sta_start_scan(dev
, ifsta
->ssid
,
3469 ifsta
->state
= IEEE80211_AUTHENTICATE
;
3470 set_bit(IEEE80211_STA_REQ_AUTH
, &ifsta
->request
);
3472 ifsta
->state
= IEEE80211_DISABLED
;
3478 static int ieee80211_sta_create_ibss(struct net_device
*dev
,
3479 struct ieee80211_if_sta
*ifsta
)
3481 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3482 struct ieee80211_sta_bss
*bss
;
3483 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3484 struct ieee80211_supported_band
*sband
;
3485 u8 bssid
[ETH_ALEN
], *pos
;
3487 DECLARE_MAC_BUF(mac
);
3490 /* Easier testing, use fixed BSSID. */
3491 memset(bssid
, 0xfe, ETH_ALEN
);
3493 /* Generate random, not broadcast, locally administered BSSID. Mix in
3494 * own MAC address to make sure that devices that do not have proper
3495 * random number generator get different BSSID. */
3496 get_random_bytes(bssid
, ETH_ALEN
);
3497 for (i
= 0; i
< ETH_ALEN
; i
++)
3498 bssid
[i
] ^= dev
->dev_addr
[i
];
3503 printk(KERN_DEBUG
"%s: Creating new IBSS network, BSSID %s\n",
3504 dev
->name
, print_mac(mac
, bssid
));
3506 bss
= ieee80211_rx_bss_add(dev
, bssid
,
3507 local
->hw
.conf
.channel
->center_freq
,
3508 sdata
->u
.sta
.ssid
, sdata
->u
.sta
.ssid_len
);
3512 bss
->band
= local
->hw
.conf
.channel
->band
;
3513 sband
= local
->hw
.wiphy
->bands
[bss
->band
];
3515 if (local
->hw
.conf
.beacon_int
== 0)
3516 local
->hw
.conf
.beacon_int
= 10000;
3517 bss
->beacon_int
= local
->hw
.conf
.beacon_int
;
3518 bss
->last_update
= jiffies
;
3519 bss
->capability
= WLAN_CAPABILITY_IBSS
;
3520 if (sdata
->default_key
) {
3521 bss
->capability
|= WLAN_CAPABILITY_PRIVACY
;
3523 sdata
->drop_unencrypted
= 0;
3524 bss
->supp_rates_len
= sband
->n_bitrates
;
3525 pos
= bss
->supp_rates
;
3526 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
3527 int rate
= sband
->bitrates
[i
].bitrate
;
3528 *pos
++ = (u8
) (rate
/ 5);
3531 return ieee80211_sta_join_ibss(dev
, ifsta
, bss
);
3535 static int ieee80211_sta_find_ibss(struct net_device
*dev
,
3536 struct ieee80211_if_sta
*ifsta
)
3538 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3539 struct ieee80211_sta_bss
*bss
;
3543 DECLARE_MAC_BUF(mac
);
3544 DECLARE_MAC_BUF(mac2
);
3546 if (ifsta
->ssid_len
== 0)
3549 active_ibss
= ieee80211_sta_active_ibss(dev
);
3550 #ifdef CONFIG_MAC80211_IBSS_DEBUG
3551 printk(KERN_DEBUG
"%s: sta_find_ibss (active_ibss=%d)\n",
3552 dev
->name
, active_ibss
);
3553 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
3554 spin_lock_bh(&local
->sta_bss_lock
);
3555 list_for_each_entry(bss
, &local
->sta_bss_list
, list
) {
3556 if (ifsta
->ssid_len
!= bss
->ssid_len
||
3557 memcmp(ifsta
->ssid
, bss
->ssid
, bss
->ssid_len
) != 0
3558 || !(bss
->capability
& WLAN_CAPABILITY_IBSS
))
3560 #ifdef CONFIG_MAC80211_IBSS_DEBUG
3561 printk(KERN_DEBUG
" bssid=%s found\n",
3562 print_mac(mac
, bss
->bssid
));
3563 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
3564 memcpy(bssid
, bss
->bssid
, ETH_ALEN
);
3566 if (active_ibss
|| memcmp(bssid
, ifsta
->bssid
, ETH_ALEN
) != 0)
3569 spin_unlock_bh(&local
->sta_bss_lock
);
3571 #ifdef CONFIG_MAC80211_IBSS_DEBUG
3572 printk(KERN_DEBUG
" sta_find_ibss: selected %s current "
3573 "%s\n", print_mac(mac
, bssid
), print_mac(mac2
, ifsta
->bssid
));
3574 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
3575 if (found
&& memcmp(ifsta
->bssid
, bssid
, ETH_ALEN
) != 0 &&
3576 (bss
= ieee80211_rx_bss_get(dev
, bssid
,
3577 local
->hw
.conf
.channel
->center_freq
,
3578 ifsta
->ssid
, ifsta
->ssid_len
))) {
3579 printk(KERN_DEBUG
"%s: Selected IBSS BSSID %s"
3580 " based on configured SSID\n",
3581 dev
->name
, print_mac(mac
, bssid
));
3582 return ieee80211_sta_join_ibss(dev
, ifsta
, bss
);
3584 #ifdef CONFIG_MAC80211_IBSS_DEBUG
3585 printk(KERN_DEBUG
" did not try to join ibss\n");
3586 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
3588 /* Selected IBSS not found in current scan results - try to scan */
3589 if (ifsta
->state
== IEEE80211_IBSS_JOINED
&&
3590 !ieee80211_sta_active_ibss(dev
)) {
3591 mod_timer(&ifsta
->timer
, jiffies
+
3592 IEEE80211_IBSS_MERGE_INTERVAL
);
3593 } else if (time_after(jiffies
, local
->last_scan_completed
+
3594 IEEE80211_SCAN_INTERVAL
)) {
3595 printk(KERN_DEBUG
"%s: Trigger new scan to find an IBSS to "
3596 "join\n", dev
->name
);
3597 return ieee80211_sta_req_scan(dev
, ifsta
->ssid
,
3599 } else if (ifsta
->state
!= IEEE80211_IBSS_JOINED
) {
3600 int interval
= IEEE80211_SCAN_INTERVAL
;
3602 if (time_after(jiffies
, ifsta
->ibss_join_req
+
3603 IEEE80211_IBSS_JOIN_TIMEOUT
)) {
3604 if ((ifsta
->flags
& IEEE80211_STA_CREATE_IBSS
) &&
3605 (!(local
->oper_channel
->flags
&
3606 IEEE80211_CHAN_NO_IBSS
)))
3607 return ieee80211_sta_create_ibss(dev
, ifsta
);
3608 if (ifsta
->flags
& IEEE80211_STA_CREATE_IBSS
) {
3609 printk(KERN_DEBUG
"%s: IBSS not allowed on"
3610 " %d MHz\n", dev
->name
,
3611 local
->hw
.conf
.channel
->center_freq
);
3614 /* No IBSS found - decrease scan interval and continue
3616 interval
= IEEE80211_SCAN_INTERVAL_SLOW
;
3619 ifsta
->state
= IEEE80211_IBSS_SEARCH
;
3620 mod_timer(&ifsta
->timer
, jiffies
+ interval
);
3628 int ieee80211_sta_set_ssid(struct net_device
*dev
, char *ssid
, size_t len
)
3630 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3631 struct ieee80211_if_sta
*ifsta
;
3633 if (len
> IEEE80211_MAX_SSID_LEN
)
3636 ifsta
= &sdata
->u
.sta
;
3638 if (ifsta
->ssid_len
!= len
|| memcmp(ifsta
->ssid
, ssid
, len
) != 0)
3639 ifsta
->flags
&= ~IEEE80211_STA_PREV_BSSID_SET
;
3640 memcpy(ifsta
->ssid
, ssid
, len
);
3641 memset(ifsta
->ssid
+ len
, 0, IEEE80211_MAX_SSID_LEN
- len
);
3642 ifsta
->ssid_len
= len
;
3645 ifsta
->flags
|= IEEE80211_STA_SSID_SET
;
3647 ifsta
->flags
&= ~IEEE80211_STA_SSID_SET
;
3648 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
&&
3649 !(ifsta
->flags
& IEEE80211_STA_BSSID_SET
)) {
3650 ifsta
->ibss_join_req
= jiffies
;
3651 ifsta
->state
= IEEE80211_IBSS_SEARCH
;
3652 return ieee80211_sta_find_ibss(dev
, ifsta
);
3658 int ieee80211_sta_get_ssid(struct net_device
*dev
, char *ssid
, size_t *len
)
3660 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3661 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
3662 memcpy(ssid
, ifsta
->ssid
, ifsta
->ssid_len
);
3663 *len
= ifsta
->ssid_len
;
3668 int ieee80211_sta_set_bssid(struct net_device
*dev
, u8
*bssid
)
3670 struct ieee80211_sub_if_data
*sdata
;
3671 struct ieee80211_if_sta
*ifsta
;
3674 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3675 ifsta
= &sdata
->u
.sta
;
3677 if (memcmp(ifsta
->bssid
, bssid
, ETH_ALEN
) != 0) {
3678 memcpy(ifsta
->bssid
, bssid
, ETH_ALEN
);
3679 res
= ieee80211_if_config(dev
);
3681 printk(KERN_DEBUG
"%s: Failed to config new BSSID to "
3682 "the low-level driver\n", dev
->name
);
3687 if (is_valid_ether_addr(bssid
))
3688 ifsta
->flags
|= IEEE80211_STA_BSSID_SET
;
3690 ifsta
->flags
&= ~IEEE80211_STA_BSSID_SET
;
3696 static void ieee80211_send_nullfunc(struct ieee80211_local
*local
,
3697 struct ieee80211_sub_if_data
*sdata
,
3700 struct sk_buff
*skb
;
3701 struct ieee80211_hdr
*nullfunc
;
3704 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ 24);
3706 printk(KERN_DEBUG
"%s: failed to allocate buffer for nullfunc "
3707 "frame\n", sdata
->dev
->name
);
3710 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
3712 nullfunc
= (struct ieee80211_hdr
*) skb_put(skb
, 24);
3713 memset(nullfunc
, 0, 24);
3714 fc
= IEEE80211_FTYPE_DATA
| IEEE80211_STYPE_NULLFUNC
|
3715 IEEE80211_FCTL_TODS
;
3717 fc
|= IEEE80211_FCTL_PM
;
3718 nullfunc
->frame_control
= cpu_to_le16(fc
);
3719 memcpy(nullfunc
->addr1
, sdata
->u
.sta
.bssid
, ETH_ALEN
);
3720 memcpy(nullfunc
->addr2
, sdata
->dev
->dev_addr
, ETH_ALEN
);
3721 memcpy(nullfunc
->addr3
, sdata
->u
.sta
.bssid
, ETH_ALEN
);
3723 ieee80211_sta_tx(sdata
->dev
, skb
, 0);
3727 static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data
*sdata
)
3729 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
||
3730 ieee80211_vif_is_mesh(&sdata
->vif
))
3731 ieee80211_sta_timer((unsigned long)sdata
);
3734 void ieee80211_scan_completed(struct ieee80211_hw
*hw
)
3736 struct ieee80211_local
*local
= hw_to_local(hw
);
3737 struct net_device
*dev
= local
->scan_dev
;
3738 struct ieee80211_sub_if_data
*sdata
;
3739 union iwreq_data wrqu
;
3741 local
->last_scan_completed
= jiffies
;
3742 memset(&wrqu
, 0, sizeof(wrqu
));
3743 wireless_send_event(dev
, SIOCGIWSCAN
, &wrqu
, NULL
);
3745 if (local
->sta_hw_scanning
) {
3746 local
->sta_hw_scanning
= 0;
3747 if (ieee80211_hw_config(local
))
3748 printk(KERN_DEBUG
"%s: failed to restore operational "
3749 "channel after scan\n", dev
->name
);
3750 /* Restart STA timer for HW scan case */
3752 list_for_each_entry_rcu(sdata
, &local
->interfaces
, list
)
3753 ieee80211_restart_sta_timer(sdata
);
3759 local
->sta_sw_scanning
= 0;
3760 if (ieee80211_hw_config(local
))
3761 printk(KERN_DEBUG
"%s: failed to restore operational "
3762 "channel after scan\n", dev
->name
);
3765 netif_tx_lock_bh(local
->mdev
);
3766 local
->filter_flags
&= ~FIF_BCN_PRBRESP_PROMISC
;
3767 local
->ops
->configure_filter(local_to_hw(local
),
3768 FIF_BCN_PRBRESP_PROMISC
,
3769 &local
->filter_flags
,
3770 local
->mdev
->mc_count
,
3771 local
->mdev
->mc_list
);
3773 netif_tx_unlock_bh(local
->mdev
);
3776 list_for_each_entry_rcu(sdata
, &local
->interfaces
, list
) {
3778 /* No need to wake the master device. */
3779 if (sdata
->dev
== local
->mdev
)
3782 /* Tell AP we're back */
3783 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
&&
3784 sdata
->u
.sta
.flags
& IEEE80211_STA_ASSOCIATED
)
3785 ieee80211_send_nullfunc(local
, sdata
, 0);
3787 ieee80211_restart_sta_timer(sdata
);
3789 netif_wake_queue(sdata
->dev
);
3794 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3795 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
3796 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
3797 if (!(ifsta
->flags
& IEEE80211_STA_BSSID_SET
) ||
3798 (!ifsta
->state
== IEEE80211_IBSS_JOINED
&&
3799 !ieee80211_sta_active_ibss(dev
)))
3800 ieee80211_sta_find_ibss(dev
, ifsta
);
3803 EXPORT_SYMBOL(ieee80211_scan_completed
);
3805 void ieee80211_sta_scan_work(struct work_struct
*work
)
3807 struct ieee80211_local
*local
=
3808 container_of(work
, struct ieee80211_local
, scan_work
.work
);
3809 struct net_device
*dev
= local
->scan_dev
;
3810 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3811 struct ieee80211_supported_band
*sband
;
3812 struct ieee80211_channel
*chan
;
3814 unsigned long next_delay
= 0;
3816 if (!local
->sta_sw_scanning
)
3819 switch (local
->scan_state
) {
3820 case SCAN_SET_CHANNEL
:
3822 * Get current scan band. scan_band may be IEEE80211_NUM_BANDS
3823 * after we successfully scanned the last channel of the last
3824 * band (and the last band is supported by the hw)
3826 if (local
->scan_band
< IEEE80211_NUM_BANDS
)
3827 sband
= local
->hw
.wiphy
->bands
[local
->scan_band
];
3832 * If we are at an unsupported band and have more bands
3833 * left to scan, advance to the next supported one.
3835 while (!sband
&& local
->scan_band
< IEEE80211_NUM_BANDS
- 1) {
3837 sband
= local
->hw
.wiphy
->bands
[local
->scan_band
];
3838 local
->scan_channel_idx
= 0;
3841 /* if no more bands/channels left, complete scan */
3842 if (!sband
|| local
->scan_channel_idx
>= sband
->n_channels
) {
3843 ieee80211_scan_completed(local_to_hw(local
));
3847 chan
= &sband
->channels
[local
->scan_channel_idx
];
3849 if (chan
->flags
& IEEE80211_CHAN_DISABLED
||
3850 (sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
&&
3851 chan
->flags
& IEEE80211_CHAN_NO_IBSS
))
3855 local
->scan_channel
= chan
;
3856 if (ieee80211_hw_config(local
)) {
3857 printk(KERN_DEBUG
"%s: failed to set freq to "
3858 "%d MHz for scan\n", dev
->name
,
3864 /* advance state machine to next channel/band */
3865 local
->scan_channel_idx
++;
3866 if (local
->scan_channel_idx
>= sband
->n_channels
) {
3868 * scan_band may end up == IEEE80211_NUM_BANDS, but
3869 * we'll catch that case above and complete the scan
3870 * if that is the case.
3873 local
->scan_channel_idx
= 0;
3879 next_delay
= IEEE80211_PROBE_DELAY
+
3880 usecs_to_jiffies(local
->hw
.channel_change_time
);
3881 local
->scan_state
= SCAN_SEND_PROBE
;
3883 case SCAN_SEND_PROBE
:
3884 next_delay
= IEEE80211_PASSIVE_CHANNEL_TIME
;
3885 local
->scan_state
= SCAN_SET_CHANNEL
;
3887 if (local
->scan_channel
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
3889 ieee80211_send_probe_req(dev
, NULL
, local
->scan_ssid
,
3890 local
->scan_ssid_len
);
3891 next_delay
= IEEE80211_CHANNEL_TIME
;
3895 if (local
->sta_sw_scanning
)
3896 queue_delayed_work(local
->hw
.workqueue
, &local
->scan_work
,
3901 static int ieee80211_sta_start_scan(struct net_device
*dev
,
3902 u8
*ssid
, size_t ssid_len
)
3904 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3905 struct ieee80211_sub_if_data
*sdata
;
3907 if (ssid_len
> IEEE80211_MAX_SSID_LEN
)
3910 /* MLME-SCAN.request (page 118) page 144 (11.1.3.1)
3911 * BSSType: INFRASTRUCTURE, INDEPENDENT, ANY_BSS
3914 * ScanType: ACTIVE, PASSIVE
3915 * ProbeDelay: delay (in microseconds) to be used prior to transmitting
3916 * a Probe frame during active scanning
3918 * MinChannelTime (>= ProbeDelay), in TU
3919 * MaxChannelTime: (>= MinChannelTime), in TU
3922 /* MLME-SCAN.confirm
3924 * ResultCode: SUCCESS, INVALID_PARAMETERS
3927 if (local
->sta_sw_scanning
|| local
->sta_hw_scanning
) {
3928 if (local
->scan_dev
== dev
)
3933 if (local
->ops
->hw_scan
) {
3934 int rc
= local
->ops
->hw_scan(local_to_hw(local
),
3937 local
->sta_hw_scanning
= 1;
3938 local
->scan_dev
= dev
;
3943 local
->sta_sw_scanning
= 1;
3946 list_for_each_entry_rcu(sdata
, &local
->interfaces
, list
) {
3948 /* Don't stop the master interface, otherwise we can't transmit
3950 if (sdata
->dev
== local
->mdev
)
3953 netif_stop_queue(sdata
->dev
);
3954 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
&&
3955 (sdata
->u
.sta
.flags
& IEEE80211_STA_ASSOCIATED
))
3956 ieee80211_send_nullfunc(local
, sdata
, 1);
3961 local
->scan_ssid_len
= ssid_len
;
3962 memcpy(local
->scan_ssid
, ssid
, ssid_len
);
3964 local
->scan_ssid_len
= 0;
3965 local
->scan_state
= SCAN_SET_CHANNEL
;
3966 local
->scan_channel_idx
= 0;
3967 local
->scan_band
= IEEE80211_BAND_2GHZ
;
3968 local
->scan_dev
= dev
;
3970 netif_tx_lock_bh(local
->mdev
);
3971 local
->filter_flags
|= FIF_BCN_PRBRESP_PROMISC
;
3972 local
->ops
->configure_filter(local_to_hw(local
),
3973 FIF_BCN_PRBRESP_PROMISC
,
3974 &local
->filter_flags
,
3975 local
->mdev
->mc_count
,
3976 local
->mdev
->mc_list
);
3977 netif_tx_unlock_bh(local
->mdev
);
3979 /* TODO: start scan as soon as all nullfunc frames are ACKed */
3980 queue_delayed_work(local
->hw
.workqueue
, &local
->scan_work
,
3981 IEEE80211_CHANNEL_TIME
);
3987 int ieee80211_sta_req_scan(struct net_device
*dev
, u8
*ssid
, size_t ssid_len
)
3989 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3990 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
3991 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
3993 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
3994 return ieee80211_sta_start_scan(dev
, ssid
, ssid_len
);
3996 if (local
->sta_sw_scanning
|| local
->sta_hw_scanning
) {
3997 if (local
->scan_dev
== dev
)
4002 ifsta
->scan_ssid_len
= ssid_len
;
4004 memcpy(ifsta
->scan_ssid
, ssid
, ssid_len
);
4005 set_bit(IEEE80211_STA_REQ_SCAN
, &ifsta
->request
);
4006 queue_work(local
->hw
.workqueue
, &ifsta
->work
);
4011 ieee80211_sta_scan_result(struct net_device
*dev
,
4012 struct ieee80211_sta_bss
*bss
,
4013 char *current_ev
, char *end_buf
)
4015 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
4016 struct iw_event iwe
;
4018 if (time_after(jiffies
,
4019 bss
->last_update
+ IEEE80211_SCAN_RESULT_EXPIRE
))
4022 memset(&iwe
, 0, sizeof(iwe
));
4023 iwe
.cmd
= SIOCGIWAP
;
4024 iwe
.u
.ap_addr
.sa_family
= ARPHRD_ETHER
;
4025 memcpy(iwe
.u
.ap_addr
.sa_data
, bss
->bssid
, ETH_ALEN
);
4026 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
,
4029 memset(&iwe
, 0, sizeof(iwe
));
4030 iwe
.cmd
= SIOCGIWESSID
;
4031 if (bss_mesh_cfg(bss
)) {
4032 iwe
.u
.data
.length
= bss_mesh_id_len(bss
);
4033 iwe
.u
.data
.flags
= 1;
4034 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
,
4037 iwe
.u
.data
.length
= bss
->ssid_len
;
4038 iwe
.u
.data
.flags
= 1;
4039 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
,
4043 if (bss
->capability
& (WLAN_CAPABILITY_ESS
| WLAN_CAPABILITY_IBSS
)
4044 || bss_mesh_cfg(bss
)) {
4045 memset(&iwe
, 0, sizeof(iwe
));
4046 iwe
.cmd
= SIOCGIWMODE
;
4047 if (bss_mesh_cfg(bss
))
4048 iwe
.u
.mode
= IW_MODE_MESH
;
4049 else if (bss
->capability
& WLAN_CAPABILITY_ESS
)
4050 iwe
.u
.mode
= IW_MODE_MASTER
;
4052 iwe
.u
.mode
= IW_MODE_ADHOC
;
4053 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
,
4057 memset(&iwe
, 0, sizeof(iwe
));
4058 iwe
.cmd
= SIOCGIWFREQ
;
4059 iwe
.u
.freq
.m
= bss
->freq
;
4061 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
,
4064 memset(&iwe
, 0, sizeof(iwe
));
4065 iwe
.cmd
= SIOCGIWFREQ
;
4066 iwe
.u
.freq
.m
= ieee80211_frequency_to_channel(bss
->freq
);
4068 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
,
4071 memset(&iwe
, 0, sizeof(iwe
));
4073 iwe
.u
.qual
.qual
= bss
->signal
;
4074 iwe
.u
.qual
.level
= bss
->rssi
;
4075 iwe
.u
.qual
.noise
= bss
->noise
;
4076 iwe
.u
.qual
.updated
= local
->wstats_flags
;
4077 current_ev
= iwe_stream_add_event(current_ev
, end_buf
, &iwe
,
4080 memset(&iwe
, 0, sizeof(iwe
));
4081 iwe
.cmd
= SIOCGIWENCODE
;
4082 if (bss
->capability
& WLAN_CAPABILITY_PRIVACY
)
4083 iwe
.u
.data
.flags
= IW_ENCODE_ENABLED
| IW_ENCODE_NOKEY
;
4085 iwe
.u
.data
.flags
= IW_ENCODE_DISABLED
;
4086 iwe
.u
.data
.length
= 0;
4087 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
, "");
4089 if (bss
&& bss
->wpa_ie
) {
4090 memset(&iwe
, 0, sizeof(iwe
));
4091 iwe
.cmd
= IWEVGENIE
;
4092 iwe
.u
.data
.length
= bss
->wpa_ie_len
;
4093 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
,
4097 if (bss
&& bss
->rsn_ie
) {
4098 memset(&iwe
, 0, sizeof(iwe
));
4099 iwe
.cmd
= IWEVGENIE
;
4100 iwe
.u
.data
.length
= bss
->rsn_ie_len
;
4101 current_ev
= iwe_stream_add_point(current_ev
, end_buf
, &iwe
,
4105 if (bss
&& bss
->supp_rates_len
> 0) {
4106 /* display all supported rates in readable format */
4107 char *p
= current_ev
+ IW_EV_LCP_LEN
;
4110 memset(&iwe
, 0, sizeof(iwe
));
4111 iwe
.cmd
= SIOCGIWRATE
;
4112 /* Those two flags are ignored... */
4113 iwe
.u
.bitrate
.fixed
= iwe
.u
.bitrate
.disabled
= 0;
4115 for (i
= 0; i
< bss
->supp_rates_len
; i
++) {
4116 iwe
.u
.bitrate
.value
= ((bss
->supp_rates
[i
] &
4118 p
= iwe_stream_add_value(current_ev
, p
,
4119 end_buf
, &iwe
, IW_EV_PARAM_LEN
);
4126 buf
= kmalloc(30, GFP_ATOMIC
);
4128 memset(&iwe
, 0, sizeof(iwe
));
4129 iwe
.cmd
= IWEVCUSTOM
;
4130 sprintf(buf
, "tsf=%016llx", (unsigned long long)(bss
->timestamp
));
4131 iwe
.u
.data
.length
= strlen(buf
);
4132 current_ev
= iwe_stream_add_point(current_ev
, end_buf
,
4138 if (bss_mesh_cfg(bss
)) {
4140 u8
*cfg
= bss_mesh_cfg(bss
);
4141 buf
= kmalloc(50, GFP_ATOMIC
);
4143 memset(&iwe
, 0, sizeof(iwe
));
4144 iwe
.cmd
= IWEVCUSTOM
;
4145 sprintf(buf
, "Mesh network (version %d)", cfg
[0]);
4146 iwe
.u
.data
.length
= strlen(buf
);
4147 current_ev
= iwe_stream_add_point(current_ev
, end_buf
,
4149 sprintf(buf
, "Path Selection Protocol ID: "
4150 "0x%02X%02X%02X%02X", cfg
[1], cfg
[2], cfg
[3],
4152 iwe
.u
.data
.length
= strlen(buf
);
4153 current_ev
= iwe_stream_add_point(current_ev
, end_buf
,
4155 sprintf(buf
, "Path Selection Metric ID: "
4156 "0x%02X%02X%02X%02X", cfg
[5], cfg
[6], cfg
[7],
4158 iwe
.u
.data
.length
= strlen(buf
);
4159 current_ev
= iwe_stream_add_point(current_ev
, end_buf
,
4161 sprintf(buf
, "Congestion Control Mode ID: "
4162 "0x%02X%02X%02X%02X", cfg
[9], cfg
[10],
4164 iwe
.u
.data
.length
= strlen(buf
);
4165 current_ev
= iwe_stream_add_point(current_ev
, end_buf
,
4167 sprintf(buf
, "Channel Precedence: "
4168 "0x%02X%02X%02X%02X", cfg
[13], cfg
[14],
4170 iwe
.u
.data
.length
= strlen(buf
);
4171 current_ev
= iwe_stream_add_point(current_ev
, end_buf
,
4181 int ieee80211_sta_scan_results(struct net_device
*dev
, char *buf
, size_t len
)
4183 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
4184 char *current_ev
= buf
;
4185 char *end_buf
= buf
+ len
;
4186 struct ieee80211_sta_bss
*bss
;
4188 spin_lock_bh(&local
->sta_bss_lock
);
4189 list_for_each_entry(bss
, &local
->sta_bss_list
, list
) {
4190 if (buf
+ len
- current_ev
<= IW_EV_ADDR_LEN
) {
4191 spin_unlock_bh(&local
->sta_bss_lock
);
4194 current_ev
= ieee80211_sta_scan_result(dev
, bss
, current_ev
,
4197 spin_unlock_bh(&local
->sta_bss_lock
);
4198 return current_ev
- buf
;
4202 int ieee80211_sta_set_extra_ie(struct net_device
*dev
, char *ie
, size_t len
)
4204 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
4205 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
4206 kfree(ifsta
->extra_ie
);
4208 ifsta
->extra_ie
= NULL
;
4209 ifsta
->extra_ie_len
= 0;
4212 ifsta
->extra_ie
= kmalloc(len
, GFP_KERNEL
);
4213 if (!ifsta
->extra_ie
) {
4214 ifsta
->extra_ie_len
= 0;
4217 memcpy(ifsta
->extra_ie
, ie
, len
);
4218 ifsta
->extra_ie_len
= len
;
4223 struct sta_info
* ieee80211_ibss_add_sta(struct net_device
*dev
,
4224 struct sk_buff
*skb
, u8
*bssid
,
4227 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
4228 struct sta_info
*sta
;
4229 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
4230 DECLARE_MAC_BUF(mac
);
4232 /* TODO: Could consider removing the least recently used entry and
4233 * allow new one to be added. */
4234 if (local
->num_sta
>= IEEE80211_IBSS_MAX_STA_ENTRIES
) {
4235 if (net_ratelimit()) {
4236 printk(KERN_DEBUG
"%s: No room for a new IBSS STA "
4237 "entry %s\n", dev
->name
, print_mac(mac
, addr
));
4242 printk(KERN_DEBUG
"%s: Adding new IBSS station %s (dev=%s)\n",
4243 wiphy_name(local
->hw
.wiphy
), print_mac(mac
, addr
), dev
->name
);
4245 sta
= sta_info_alloc(sdata
, addr
, GFP_ATOMIC
);
4249 sta
->flags
|= WLAN_STA_AUTHORIZED
;
4251 sta
->supp_rates
[local
->hw
.conf
.channel
->band
] =
4252 sdata
->u
.sta
.supp_rates_bits
[local
->hw
.conf
.channel
->band
];
4254 rate_control_rate_init(sta
, local
);
4256 if (sta_info_insert(sta
))
4263 int ieee80211_sta_deauthenticate(struct net_device
*dev
, u16 reason
)
4265 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
4266 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
4268 printk(KERN_DEBUG
"%s: deauthenticate(reason=%d)\n",
4271 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
4272 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
)
4275 ieee80211_send_deauth(dev
, ifsta
, reason
);
4276 ieee80211_set_disassoc(dev
, ifsta
, 1);
4281 int ieee80211_sta_disassociate(struct net_device
*dev
, u16 reason
)
4283 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
4284 struct ieee80211_if_sta
*ifsta
= &sdata
->u
.sta
;
4286 printk(KERN_DEBUG
"%s: disassociate(reason=%d)\n",
4289 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
)
4292 if (!(ifsta
->flags
& IEEE80211_STA_ASSOCIATED
))
4295 ieee80211_send_disassoc(dev
, ifsta
, reason
);
4296 ieee80211_set_disassoc(dev
, ifsta
, 0);
4300 void ieee80211_notify_mac(struct ieee80211_hw
*hw
,
4301 enum ieee80211_notification_types notif_type
)
4303 struct ieee80211_local
*local
= hw_to_local(hw
);
4304 struct ieee80211_sub_if_data
*sdata
;
4306 switch (notif_type
) {
4307 case IEEE80211_NOTIFY_RE_ASSOC
:
4309 list_for_each_entry_rcu(sdata
, &local
->interfaces
, list
) {
4311 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
) {
4312 ieee80211_sta_req_auth(sdata
->dev
,
4321 EXPORT_SYMBOL(ieee80211_notify_mac
);