2 * IBSS mode implementation
3 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
4 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 * Copyright 2009, Johannes Berg <johannes@sipsolutions.net>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/delay.h>
16 #include <linux/slab.h>
17 #include <linux/if_ether.h>
18 #include <linux/skbuff.h>
19 #include <linux/if_arp.h>
20 #include <linux/etherdevice.h>
21 #include <linux/rtnetlink.h>
22 #include <net/mac80211.h>
23 #include <asm/unaligned.h>
25 #include "ieee80211_i.h"
26 #include "driver-ops.h"
29 #define IEEE80211_SCAN_INTERVAL (2 * HZ)
30 #define IEEE80211_SCAN_INTERVAL_SLOW (15 * HZ)
31 #define IEEE80211_IBSS_JOIN_TIMEOUT (7 * HZ)
33 #define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ)
34 #define IEEE80211_IBSS_MERGE_DELAY 0x400000
35 #define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
37 #define IEEE80211_IBSS_MAX_STA_ENTRIES 128
40 static void ieee80211_rx_mgmt_auth_ibss(struct ieee80211_sub_if_data
*sdata
,
41 struct ieee80211_mgmt
*mgmt
,
44 u16 auth_alg
, auth_transaction
, status_code
;
49 auth_alg
= le16_to_cpu(mgmt
->u
.auth
.auth_alg
);
50 auth_transaction
= le16_to_cpu(mgmt
->u
.auth
.auth_transaction
);
51 status_code
= le16_to_cpu(mgmt
->u
.auth
.status_code
);
54 * IEEE 802.11 standard does not require authentication in IBSS
55 * networks and most implementations do not seem to use it.
56 * However, try to reply to authentication attempts if someone
57 * has actually implemented this.
59 if (auth_alg
== WLAN_AUTH_OPEN
&& auth_transaction
== 1)
60 ieee80211_send_auth(sdata
, 2, WLAN_AUTH_OPEN
, NULL
, 0,
61 sdata
->u
.ibss
.bssid
, NULL
, 0, 0);
64 static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data
*sdata
,
65 const u8
*bssid
, const int beacon_int
,
66 struct ieee80211_channel
*chan
,
67 const u32 basic_rates
,
68 const u16 capability
, u64 tsf
)
70 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
71 struct ieee80211_local
*local
= sdata
->local
;
74 struct ieee80211_mgmt
*mgmt
;
76 struct ieee80211_supported_band
*sband
;
77 struct cfg80211_bss
*bss
;
79 u8 supp_rates
[IEEE80211_MAX_SUPP_RATES
];
81 /* Reset own TSF to allow time synchronization work. */
85 rcu_assign_pointer(ifibss
->presp
, NULL
);
87 skb
->data
= skb
->head
;
89 skb_reset_tail_pointer(skb
);
90 skb_reserve(skb
, sdata
->local
->hw
.extra_tx_headroom
);
92 if (memcmp(ifibss
->bssid
, bssid
, ETH_ALEN
))
93 sta_info_flush(sdata
->local
, sdata
);
95 /* if merging, indicate to driver that we leave the old IBSS */
96 if (sdata
->vif
.bss_conf
.ibss_joined
) {
97 sdata
->vif
.bss_conf
.ibss_joined
= false;
98 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_IBSS
);
101 memcpy(ifibss
->bssid
, bssid
, ETH_ALEN
);
103 sdata
->drop_unencrypted
= capability
& WLAN_CAPABILITY_PRIVACY
? 1 : 0;
105 local
->oper_channel
= chan
;
106 WARN_ON(!ieee80211_set_channel_type(local
, sdata
, NL80211_CHAN_NO_HT
));
107 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_CHANNEL
);
109 sband
= local
->hw
.wiphy
->bands
[chan
->band
];
111 /* build supported rates array */
113 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
114 int rate
= sband
->bitrates
[i
].bitrate
;
116 if (basic_rates
& BIT(i
))
118 *pos
++ = basic
| (u8
) (rate
/ 5);
121 /* Build IBSS probe response */
122 mgmt
= (void *) skb_put(skb
, 24 + sizeof(mgmt
->u
.beacon
));
123 memset(mgmt
, 0, 24 + sizeof(mgmt
->u
.beacon
));
124 mgmt
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
125 IEEE80211_STYPE_PROBE_RESP
);
126 memset(mgmt
->da
, 0xff, ETH_ALEN
);
127 memcpy(mgmt
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
128 memcpy(mgmt
->bssid
, ifibss
->bssid
, ETH_ALEN
);
129 mgmt
->u
.beacon
.beacon_int
= cpu_to_le16(beacon_int
);
130 mgmt
->u
.beacon
.timestamp
= cpu_to_le64(tsf
);
131 mgmt
->u
.beacon
.capab_info
= cpu_to_le16(capability
);
133 pos
= skb_put(skb
, 2 + ifibss
->ssid_len
);
134 *pos
++ = WLAN_EID_SSID
;
135 *pos
++ = ifibss
->ssid_len
;
136 memcpy(pos
, ifibss
->ssid
, ifibss
->ssid_len
);
138 rates
= sband
->n_bitrates
;
141 pos
= skb_put(skb
, 2 + rates
);
142 *pos
++ = WLAN_EID_SUPP_RATES
;
144 memcpy(pos
, supp_rates
, rates
);
146 if (sband
->band
== IEEE80211_BAND_2GHZ
) {
147 pos
= skb_put(skb
, 2 + 1);
148 *pos
++ = WLAN_EID_DS_PARAMS
;
150 *pos
++ = ieee80211_frequency_to_channel(chan
->center_freq
);
153 pos
= skb_put(skb
, 2 + 2);
154 *pos
++ = WLAN_EID_IBSS_PARAMS
;
156 /* FIX: set ATIM window based on scan results */
160 if (sband
->n_bitrates
> 8) {
161 rates
= sband
->n_bitrates
- 8;
162 pos
= skb_put(skb
, 2 + rates
);
163 *pos
++ = WLAN_EID_EXT_SUPP_RATES
;
165 memcpy(pos
, &supp_rates
[8], rates
);
169 memcpy(skb_put(skb
, ifibss
->ie_len
),
170 ifibss
->ie
, ifibss
->ie_len
);
172 rcu_assign_pointer(ifibss
->presp
, skb
);
174 sdata
->vif
.bss_conf
.beacon_int
= beacon_int
;
175 bss_change
= BSS_CHANGED_BEACON_INT
;
176 bss_change
|= ieee80211_reset_erp_info(sdata
);
177 bss_change
|= BSS_CHANGED_BSSID
;
178 bss_change
|= BSS_CHANGED_BEACON
;
179 bss_change
|= BSS_CHANGED_BEACON_ENABLED
;
180 bss_change
|= BSS_CHANGED_IBSS
;
181 sdata
->vif
.bss_conf
.ibss_joined
= true;
182 ieee80211_bss_info_change_notify(sdata
, bss_change
);
184 ieee80211_sta_def_wmm_params(sdata
, sband
->n_bitrates
, supp_rates
);
186 ifibss
->state
= IEEE80211_IBSS_MLME_JOINED
;
187 mod_timer(&ifibss
->timer
,
188 round_jiffies(jiffies
+ IEEE80211_IBSS_MERGE_INTERVAL
));
190 bss
= cfg80211_inform_bss_frame(local
->hw
.wiphy
, local
->hw
.conf
.channel
,
191 mgmt
, skb
->len
, 0, GFP_KERNEL
);
192 cfg80211_put_bss(bss
);
193 cfg80211_ibss_joined(sdata
->dev
, ifibss
->bssid
, GFP_KERNEL
);
196 static void ieee80211_sta_join_ibss(struct ieee80211_sub_if_data
*sdata
,
197 struct ieee80211_bss
*bss
)
199 struct cfg80211_bss
*cbss
=
200 container_of((void *)bss
, struct cfg80211_bss
, priv
);
201 struct ieee80211_supported_band
*sband
;
204 u16 beacon_int
= cbss
->beacon_interval
;
209 sband
= sdata
->local
->hw
.wiphy
->bands
[cbss
->channel
->band
];
213 for (i
= 0; i
< bss
->supp_rates_len
; i
++) {
214 int rate
= (bss
->supp_rates
[i
] & 0x7f) * 5;
215 bool is_basic
= !!(bss
->supp_rates
[i
] & 0x80);
217 for (j
= 0; j
< sband
->n_bitrates
; j
++) {
218 if (sband
->bitrates
[j
].bitrate
== rate
) {
220 basic_rates
|= BIT(j
);
226 __ieee80211_sta_join_ibss(sdata
, cbss
->bssid
,
234 static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data
*sdata
,
235 struct ieee80211_mgmt
*mgmt
,
237 struct ieee80211_rx_status
*rx_status
,
238 struct ieee802_11_elems
*elems
,
241 struct ieee80211_local
*local
= sdata
->local
;
243 struct cfg80211_bss
*cbss
;
244 struct ieee80211_bss
*bss
;
245 struct sta_info
*sta
;
246 struct ieee80211_channel
*channel
;
247 u64 beacon_timestamp
, rx_timestamp
;
249 enum ieee80211_band band
= rx_status
->band
;
251 if (elems
->ds_params
&& elems
->ds_params_len
== 1)
252 freq
= ieee80211_channel_to_frequency(elems
->ds_params
[0]);
254 freq
= rx_status
->freq
;
256 channel
= ieee80211_get_channel(local
->hw
.wiphy
, freq
);
258 if (!channel
|| channel
->flags
& IEEE80211_CHAN_DISABLED
)
261 if (sdata
->vif
.type
== NL80211_IFTYPE_ADHOC
&& elems
->supp_rates
&&
262 memcmp(mgmt
->bssid
, sdata
->u
.ibss
.bssid
, ETH_ALEN
) == 0) {
263 supp_rates
= ieee80211_sta_get_rates(local
, elems
, band
);
267 sta
= sta_info_get(sdata
, mgmt
->sa
);
271 prev_rates
= sta
->sta
.supp_rates
[band
];
272 /* make sure mandatory rates are always added */
273 sta
->sta
.supp_rates
[band
] = supp_rates
|
274 ieee80211_mandatory_rates(local
, band
);
276 if (sta
->sta
.supp_rates
[band
] != prev_rates
) {
277 #ifdef CONFIG_MAC80211_IBSS_DEBUG
278 printk(KERN_DEBUG
"%s: updated supp_rates set "
279 "for %pM based on beacon/probe_response "
281 sdata
->name
, sta
->sta
.addr
,
282 prev_rates
, sta
->sta
.supp_rates
[band
]);
284 rate_control_rate_init(sta
);
289 ieee80211_ibss_add_sta(sdata
, mgmt
->bssid
, mgmt
->sa
,
290 supp_rates
, GFP_KERNEL
);
294 bss
= ieee80211_bss_info_update(local
, rx_status
, mgmt
, len
, elems
,
299 cbss
= container_of((void *)bss
, struct cfg80211_bss
, priv
);
301 /* was just updated in ieee80211_bss_info_update */
302 beacon_timestamp
= cbss
->tsf
;
304 /* check if we need to merge IBSS */
306 /* we use a fixed BSSID */
307 if (sdata
->u
.ibss
.fixed_bssid
)
311 if (!(cbss
->capability
& WLAN_CAPABILITY_IBSS
))
314 /* different channel */
315 if (cbss
->channel
!= local
->oper_channel
)
319 if (elems
->ssid_len
!= sdata
->u
.ibss
.ssid_len
||
320 memcmp(elems
->ssid
, sdata
->u
.ibss
.ssid
,
321 sdata
->u
.ibss
.ssid_len
))
325 if (memcmp(cbss
->bssid
, sdata
->u
.ibss
.bssid
, ETH_ALEN
) == 0)
328 if (rx_status
->flag
& RX_FLAG_TSFT
) {
330 * For correct IBSS merging we need mactime; since mactime is
331 * defined as the time the first data symbol of the frame hits
332 * the PHY, and the timestamp of the beacon is defined as "the
333 * time that the data symbol containing the first bit of the
334 * timestamp is transmitted to the PHY plus the transmitting
335 * STA's delays through its local PHY from the MAC-PHY
336 * interface to its interface with the WM" (802.11 11.1.2)
337 * - equals the time this bit arrives at the receiver - we have
338 * to take into account the offset between the two.
340 * E.g. at 1 MBit that means mactime is 192 usec earlier
341 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
345 if (rx_status
->flag
& RX_FLAG_HT
)
346 rate
= 65; /* TODO: HT rates */
348 rate
= local
->hw
.wiphy
->bands
[band
]->
349 bitrates
[rx_status
->rate_idx
].bitrate
;
351 rx_timestamp
= rx_status
->mactime
+ (24 * 8 * 10 / rate
);
354 * second best option: get current TSF
355 * (will return -1 if not supported)
357 rx_timestamp
= drv_get_tsf(local
);
360 #ifdef CONFIG_MAC80211_IBSS_DEBUG
361 printk(KERN_DEBUG
"RX beacon SA=%pM BSSID="
362 "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
363 mgmt
->sa
, mgmt
->bssid
,
364 (unsigned long long)rx_timestamp
,
365 (unsigned long long)beacon_timestamp
,
366 (unsigned long long)(rx_timestamp
- beacon_timestamp
),
370 /* give slow hardware some time to do the TSF sync */
371 if (rx_timestamp
< IEEE80211_IBSS_MERGE_DELAY
)
374 if (beacon_timestamp
> rx_timestamp
) {
375 #ifdef CONFIG_MAC80211_IBSS_DEBUG
376 printk(KERN_DEBUG
"%s: beacon TSF higher than "
377 "local TSF - IBSS merge with BSSID %pM\n",
378 sdata
->name
, mgmt
->bssid
);
380 ieee80211_sta_join_ibss(sdata
, bss
);
381 supp_rates
= ieee80211_sta_get_rates(local
, elems
, band
);
382 ieee80211_ibss_add_sta(sdata
, mgmt
->bssid
, mgmt
->sa
,
383 supp_rates
, GFP_KERNEL
);
387 ieee80211_rx_bss_put(local
, bss
);
391 * Add a new IBSS station, will also be called by the RX code when,
392 * in IBSS mode, receiving a frame from a yet-unknown station, hence
393 * must be callable in atomic context.
395 struct sta_info
*ieee80211_ibss_add_sta(struct ieee80211_sub_if_data
*sdata
,
396 u8
*bssid
,u8
*addr
, u32 supp_rates
,
399 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
400 struct ieee80211_local
*local
= sdata
->local
;
401 struct sta_info
*sta
;
402 int band
= local
->hw
.conf
.channel
->band
;
405 * XXX: Consider removing the least recently used entry and
406 * allow new one to be added.
408 if (local
->num_sta
>= IEEE80211_IBSS_MAX_STA_ENTRIES
) {
410 printk(KERN_DEBUG
"%s: No room for a new IBSS STA entry %pM\n",
415 if (ifibss
->state
== IEEE80211_IBSS_MLME_SEARCH
)
418 if (compare_ether_addr(bssid
, sdata
->u
.ibss
.bssid
))
421 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
422 printk(KERN_DEBUG
"%s: Adding new IBSS station %pM (dev=%s)\n",
423 wiphy_name(local
->hw
.wiphy
), addr
, sdata
->name
);
426 sta
= sta_info_alloc(sdata
, addr
, gfp
);
430 set_sta_flags(sta
, WLAN_STA_AUTHORIZED
);
432 /* make sure mandatory rates are always added */
433 sta
->sta
.supp_rates
[band
] = supp_rates
|
434 ieee80211_mandatory_rates(local
, band
);
436 rate_control_rate_init(sta
);
438 /* If it fails, maybe we raced another insertion? */
439 if (sta_info_insert(sta
))
440 return sta_info_get(sdata
, addr
);
444 static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data
*sdata
)
446 struct ieee80211_local
*local
= sdata
->local
;
448 struct sta_info
*sta
;
452 list_for_each_entry_rcu(sta
, &local
->sta_list
, list
) {
453 if (sta
->sdata
== sdata
&&
454 time_after(sta
->last_rx
+ IEEE80211_IBSS_MERGE_INTERVAL
,
467 * This function is called with state == IEEE80211_IBSS_MLME_JOINED
470 static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data
*sdata
)
472 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
474 mod_timer(&ifibss
->timer
,
475 round_jiffies(jiffies
+ IEEE80211_IBSS_MERGE_INTERVAL
));
477 ieee80211_sta_expire(sdata
, IEEE80211_IBSS_INACTIVITY_LIMIT
);
479 if (time_before(jiffies
, ifibss
->last_scan_completed
+
480 IEEE80211_IBSS_MERGE_INTERVAL
))
483 if (ieee80211_sta_active_ibss(sdata
))
486 if (ifibss
->fixed_channel
)
489 printk(KERN_DEBUG
"%s: No active IBSS STAs - trying to scan for other "
490 "IBSS networks with same SSID (merge)\n", sdata
->name
);
492 ieee80211_request_internal_scan(sdata
,
493 ifibss
->ssid
, ifibss
->ssid_len
,
494 ifibss
->fixed_channel
? ifibss
->channel
: NULL
);
497 static void ieee80211_sta_create_ibss(struct ieee80211_sub_if_data
*sdata
)
499 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
500 struct ieee80211_local
*local
= sdata
->local
;
501 struct ieee80211_supported_band
*sband
;
506 if (ifibss
->fixed_bssid
) {
507 memcpy(bssid
, ifibss
->bssid
, ETH_ALEN
);
509 /* Generate random, not broadcast, locally administered BSSID. Mix in
510 * own MAC address to make sure that devices that do not have proper
511 * random number generator get different BSSID. */
512 get_random_bytes(bssid
, ETH_ALEN
);
513 for (i
= 0; i
< ETH_ALEN
; i
++)
514 bssid
[i
] ^= sdata
->vif
.addr
[i
];
519 printk(KERN_DEBUG
"%s: Creating new IBSS network, BSSID %pM\n",
522 sband
= local
->hw
.wiphy
->bands
[ifibss
->channel
->band
];
524 capability
= WLAN_CAPABILITY_IBSS
;
527 capability
|= WLAN_CAPABILITY_PRIVACY
;
529 sdata
->drop_unencrypted
= 0;
531 __ieee80211_sta_join_ibss(sdata
, bssid
, sdata
->vif
.bss_conf
.beacon_int
,
532 ifibss
->channel
, 3, /* first two are basic */
537 * This function is called with state == IEEE80211_IBSS_MLME_SEARCH
540 static void ieee80211_sta_find_ibss(struct ieee80211_sub_if_data
*sdata
)
542 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
543 struct ieee80211_local
*local
= sdata
->local
;
544 struct cfg80211_bss
*cbss
;
545 struct ieee80211_channel
*chan
= NULL
;
546 const u8
*bssid
= NULL
;
550 active_ibss
= ieee80211_sta_active_ibss(sdata
);
551 #ifdef CONFIG_MAC80211_IBSS_DEBUG
552 printk(KERN_DEBUG
"%s: sta_find_ibss (active_ibss=%d)\n",
553 sdata
->name
, active_ibss
);
554 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
559 capability
= WLAN_CAPABILITY_IBSS
;
561 capability
|= WLAN_CAPABILITY_PRIVACY
;
562 if (ifibss
->fixed_bssid
)
563 bssid
= ifibss
->bssid
;
564 if (ifibss
->fixed_channel
)
565 chan
= ifibss
->channel
;
566 if (!is_zero_ether_addr(ifibss
->bssid
))
567 bssid
= ifibss
->bssid
;
568 cbss
= cfg80211_get_bss(local
->hw
.wiphy
, chan
, bssid
,
569 ifibss
->ssid
, ifibss
->ssid_len
,
570 WLAN_CAPABILITY_IBSS
| WLAN_CAPABILITY_PRIVACY
,
574 struct ieee80211_bss
*bss
;
576 bss
= (void *)cbss
->priv
;
577 #ifdef CONFIG_MAC80211_IBSS_DEBUG
578 printk(KERN_DEBUG
" sta_find_ibss: selected %pM current "
579 "%pM\n", cbss
->bssid
, ifibss
->bssid
);
580 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
582 printk(KERN_DEBUG
"%s: Selected IBSS BSSID %pM"
583 " based on configured SSID\n",
584 sdata
->name
, cbss
->bssid
);
586 ieee80211_sta_join_ibss(sdata
, bss
);
587 ieee80211_rx_bss_put(local
, bss
);
591 #ifdef CONFIG_MAC80211_IBSS_DEBUG
592 printk(KERN_DEBUG
" did not try to join ibss\n");
593 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
595 /* Selected IBSS not found in current scan results - try to scan */
596 if (time_after(jiffies
, ifibss
->last_scan_completed
+
597 IEEE80211_SCAN_INTERVAL
)) {
598 printk(KERN_DEBUG
"%s: Trigger new scan to find an IBSS to "
599 "join\n", sdata
->name
);
601 ieee80211_request_internal_scan(sdata
,
602 ifibss
->ssid
, ifibss
->ssid_len
,
603 ifibss
->fixed_channel
? ifibss
->channel
: NULL
);
605 int interval
= IEEE80211_SCAN_INTERVAL
;
607 if (time_after(jiffies
, ifibss
->ibss_join_req
+
608 IEEE80211_IBSS_JOIN_TIMEOUT
)) {
609 if (!(local
->oper_channel
->flags
& IEEE80211_CHAN_NO_IBSS
)) {
610 ieee80211_sta_create_ibss(sdata
);
613 printk(KERN_DEBUG
"%s: IBSS not allowed on"
614 " %d MHz\n", sdata
->name
,
615 local
->hw
.conf
.channel
->center_freq
);
617 /* No IBSS found - decrease scan interval and continue
619 interval
= IEEE80211_SCAN_INTERVAL_SLOW
;
622 mod_timer(&ifibss
->timer
,
623 round_jiffies(jiffies
+ interval
));
627 static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data
*sdata
,
628 struct ieee80211_mgmt
*mgmt
,
631 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
632 struct ieee80211_local
*local
= sdata
->local
;
635 struct ieee80211_mgmt
*resp
;
638 if (ifibss
->state
!= IEEE80211_IBSS_MLME_JOINED
||
639 len
< 24 + 2 || !ifibss
->presp
)
642 tx_last_beacon
= drv_tx_last_beacon(local
);
644 #ifdef CONFIG_MAC80211_IBSS_DEBUG
645 printk(KERN_DEBUG
"%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
646 " (tx_last_beacon=%d)\n",
647 sdata
->name
, mgmt
->sa
, mgmt
->da
,
648 mgmt
->bssid
, tx_last_beacon
);
649 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
654 if (memcmp(mgmt
->bssid
, ifibss
->bssid
, ETH_ALEN
) != 0 &&
655 memcmp(mgmt
->bssid
, "\xff\xff\xff\xff\xff\xff", ETH_ALEN
) != 0)
658 end
= ((u8
*) mgmt
) + len
;
659 pos
= mgmt
->u
.probe_req
.variable
;
660 if (pos
[0] != WLAN_EID_SSID
||
661 pos
+ 2 + pos
[1] > end
) {
662 #ifdef CONFIG_MAC80211_IBSS_DEBUG
663 printk(KERN_DEBUG
"%s: Invalid SSID IE in ProbeReq "
665 sdata
->name
, mgmt
->sa
);
670 (pos
[1] != ifibss
->ssid_len
||
671 memcmp(pos
+ 2, ifibss
->ssid
, ifibss
->ssid_len
))) {
672 /* Ignore ProbeReq for foreign SSID */
676 /* Reply with ProbeResp */
677 skb
= skb_copy(ifibss
->presp
, GFP_KERNEL
);
681 resp
= (struct ieee80211_mgmt
*) skb
->data
;
682 memcpy(resp
->da
, mgmt
->sa
, ETH_ALEN
);
683 #ifdef CONFIG_MAC80211_IBSS_DEBUG
684 printk(KERN_DEBUG
"%s: Sending ProbeResp to %pM\n",
685 sdata
->name
, resp
->da
);
686 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
687 IEEE80211_SKB_CB(skb
)->flags
|= IEEE80211_TX_INTFL_DONT_ENCRYPT
;
688 ieee80211_tx_skb(sdata
, skb
);
691 static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data
*sdata
,
692 struct ieee80211_mgmt
*mgmt
,
694 struct ieee80211_rx_status
*rx_status
)
697 struct ieee802_11_elems elems
;
699 if (memcmp(mgmt
->da
, sdata
->vif
.addr
, ETH_ALEN
))
700 return; /* ignore ProbeResp to foreign address */
702 baselen
= (u8
*) mgmt
->u
.probe_resp
.variable
- (u8
*) mgmt
;
706 ieee802_11_parse_elems(mgmt
->u
.probe_resp
.variable
, len
- baselen
,
709 ieee80211_rx_bss_info(sdata
, mgmt
, len
, rx_status
, &elems
, false);
712 static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data
*sdata
,
713 struct ieee80211_mgmt
*mgmt
,
715 struct ieee80211_rx_status
*rx_status
)
718 struct ieee802_11_elems elems
;
720 /* Process beacon from the current BSS */
721 baselen
= (u8
*) mgmt
->u
.beacon
.variable
- (u8
*) mgmt
;
725 ieee802_11_parse_elems(mgmt
->u
.beacon
.variable
, len
- baselen
, &elems
);
727 ieee80211_rx_bss_info(sdata
, mgmt
, len
, rx_status
, &elems
, true);
730 static void ieee80211_ibss_rx_queued_mgmt(struct ieee80211_sub_if_data
*sdata
,
733 struct ieee80211_rx_status
*rx_status
;
734 struct ieee80211_mgmt
*mgmt
;
737 rx_status
= IEEE80211_SKB_RXCB(skb
);
738 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
739 fc
= le16_to_cpu(mgmt
->frame_control
);
741 switch (fc
& IEEE80211_FCTL_STYPE
) {
742 case IEEE80211_STYPE_PROBE_REQ
:
743 ieee80211_rx_mgmt_probe_req(sdata
, mgmt
, skb
->len
);
745 case IEEE80211_STYPE_PROBE_RESP
:
746 ieee80211_rx_mgmt_probe_resp(sdata
, mgmt
, skb
->len
,
749 case IEEE80211_STYPE_BEACON
:
750 ieee80211_rx_mgmt_beacon(sdata
, mgmt
, skb
->len
,
753 case IEEE80211_STYPE_AUTH
:
754 ieee80211_rx_mgmt_auth_ibss(sdata
, mgmt
, skb
->len
);
761 static void ieee80211_ibss_work(struct work_struct
*work
)
763 struct ieee80211_sub_if_data
*sdata
=
764 container_of(work
, struct ieee80211_sub_if_data
, u
.ibss
.work
);
765 struct ieee80211_local
*local
= sdata
->local
;
766 struct ieee80211_if_ibss
*ifibss
;
769 if (WARN_ON(local
->suspended
))
772 if (!ieee80211_sdata_running(sdata
))
778 if (WARN_ON(sdata
->vif
.type
!= NL80211_IFTYPE_ADHOC
))
780 ifibss
= &sdata
->u
.ibss
;
782 while ((skb
= skb_dequeue(&ifibss
->skb_queue
)))
783 ieee80211_ibss_rx_queued_mgmt(sdata
, skb
);
785 if (!test_and_clear_bit(IEEE80211_IBSS_REQ_RUN
, &ifibss
->request
))
788 switch (ifibss
->state
) {
789 case IEEE80211_IBSS_MLME_SEARCH
:
790 ieee80211_sta_find_ibss(sdata
);
792 case IEEE80211_IBSS_MLME_JOINED
:
793 ieee80211_sta_merge_ibss(sdata
);
801 static void ieee80211_ibss_timer(unsigned long data
)
803 struct ieee80211_sub_if_data
*sdata
=
804 (struct ieee80211_sub_if_data
*) data
;
805 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
806 struct ieee80211_local
*local
= sdata
->local
;
808 if (local
->quiescing
) {
809 ifibss
->timer_running
= true;
813 set_bit(IEEE80211_IBSS_REQ_RUN
, &ifibss
->request
);
814 ieee80211_queue_work(&local
->hw
, &ifibss
->work
);
818 void ieee80211_ibss_quiesce(struct ieee80211_sub_if_data
*sdata
)
820 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
822 cancel_work_sync(&ifibss
->work
);
823 if (del_timer_sync(&ifibss
->timer
))
824 ifibss
->timer_running
= true;
827 void ieee80211_ibss_restart(struct ieee80211_sub_if_data
*sdata
)
829 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
831 if (ifibss
->timer_running
) {
832 add_timer(&ifibss
->timer
);
833 ifibss
->timer_running
= false;
838 void ieee80211_ibss_setup_sdata(struct ieee80211_sub_if_data
*sdata
)
840 struct ieee80211_if_ibss
*ifibss
= &sdata
->u
.ibss
;
842 INIT_WORK(&ifibss
->work
, ieee80211_ibss_work
);
843 setup_timer(&ifibss
->timer
, ieee80211_ibss_timer
,
844 (unsigned long) sdata
);
845 skb_queue_head_init(&ifibss
->skb_queue
);
848 /* scan finished notification */
849 void ieee80211_ibss_notify_scan_completed(struct ieee80211_local
*local
)
851 struct ieee80211_sub_if_data
*sdata
;
853 mutex_lock(&local
->iflist_mtx
);
854 list_for_each_entry(sdata
, &local
->interfaces
, list
) {
855 if (!ieee80211_sdata_running(sdata
))
857 if (sdata
->vif
.type
!= NL80211_IFTYPE_ADHOC
)
859 if (!sdata
->u
.ibss
.ssid_len
)
861 sdata
->u
.ibss
.last_scan_completed
= jiffies
;
862 mod_timer(&sdata
->u
.ibss
.timer
, 0);
864 mutex_unlock(&local
->iflist_mtx
);
868 ieee80211_ibss_rx_mgmt(struct ieee80211_sub_if_data
*sdata
, struct sk_buff
*skb
)
870 struct ieee80211_local
*local
= sdata
->local
;
871 struct ieee80211_mgmt
*mgmt
;
875 return RX_DROP_MONITOR
;
877 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
878 fc
= le16_to_cpu(mgmt
->frame_control
);
880 switch (fc
& IEEE80211_FCTL_STYPE
) {
881 case IEEE80211_STYPE_PROBE_RESP
:
882 case IEEE80211_STYPE_BEACON
:
883 case IEEE80211_STYPE_PROBE_REQ
:
884 case IEEE80211_STYPE_AUTH
:
885 skb_queue_tail(&sdata
->u
.ibss
.skb_queue
, skb
);
886 ieee80211_queue_work(&local
->hw
, &sdata
->u
.ibss
.work
);
890 return RX_DROP_MONITOR
;
893 int ieee80211_ibss_join(struct ieee80211_sub_if_data
*sdata
,
894 struct cfg80211_ibss_params
*params
)
899 memcpy(sdata
->u
.ibss
.bssid
, params
->bssid
, ETH_ALEN
);
900 sdata
->u
.ibss
.fixed_bssid
= true;
902 sdata
->u
.ibss
.fixed_bssid
= false;
904 sdata
->u
.ibss
.privacy
= params
->privacy
;
906 sdata
->vif
.bss_conf
.beacon_int
= params
->beacon_interval
;
908 sdata
->u
.ibss
.channel
= params
->channel
;
909 sdata
->u
.ibss
.fixed_channel
= params
->channel_fixed
;
911 /* fix ourselves to that channel now already */
912 if (params
->channel_fixed
) {
913 sdata
->local
->oper_channel
= params
->channel
;
914 WARN_ON(!ieee80211_set_channel_type(sdata
->local
, sdata
,
915 NL80211_CHAN_NO_HT
));
919 sdata
->u
.ibss
.ie
= kmemdup(params
->ie
, params
->ie_len
,
921 if (sdata
->u
.ibss
.ie
)
922 sdata
->u
.ibss
.ie_len
= params
->ie_len
;
925 skb
= dev_alloc_skb(sdata
->local
->hw
.extra_tx_headroom
+
929 4 /* IBSS params */ +
934 sdata
->u
.ibss
.skb
= skb
;
935 sdata
->u
.ibss
.state
= IEEE80211_IBSS_MLME_SEARCH
;
936 sdata
->u
.ibss
.ibss_join_req
= jiffies
;
938 memcpy(sdata
->u
.ibss
.ssid
, params
->ssid
, IEEE80211_MAX_SSID_LEN
);
941 * The ssid_len setting below is used to see whether
942 * we are active, and we need all other settings
943 * before that may get visible.
947 sdata
->u
.ibss
.ssid_len
= params
->ssid_len
;
949 ieee80211_recalc_idle(sdata
->local
);
951 set_bit(IEEE80211_IBSS_REQ_RUN
, &sdata
->u
.ibss
.request
);
952 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->u
.ibss
.work
);
957 int ieee80211_ibss_leave(struct ieee80211_sub_if_data
*sdata
)
961 del_timer_sync(&sdata
->u
.ibss
.timer
);
962 clear_bit(IEEE80211_IBSS_REQ_RUN
, &sdata
->u
.ibss
.request
);
963 cancel_work_sync(&sdata
->u
.ibss
.work
);
964 clear_bit(IEEE80211_IBSS_REQ_RUN
, &sdata
->u
.ibss
.request
);
966 sta_info_flush(sdata
->local
, sdata
);
969 kfree(sdata
->u
.ibss
.ie
);
970 skb
= sdata
->u
.ibss
.presp
;
971 rcu_assign_pointer(sdata
->u
.ibss
.presp
, NULL
);
972 sdata
->vif
.bss_conf
.ibss_joined
= false;
973 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BEACON_ENABLED
|
978 skb_queue_purge(&sdata
->u
.ibss
.skb_queue
);
979 memset(sdata
->u
.ibss
.bssid
, 0, ETH_ALEN
);
980 sdata
->u
.ibss
.ssid_len
= 0;
982 ieee80211_recalc_idle(sdata
->local
);