blob: 6ae288387a11873b4ba2d28330cc781ad7798099 [file] [log] [blame]
Johannes Berg46900292009-02-15 12:44:28 +01001/*
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>
9 *
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.
13 */
14
15#include <linux/delay.h>
16#include <linux/if_ether.h>
17#include <linux/skbuff.h>
18#include <linux/if_arp.h>
19#include <linux/etherdevice.h>
20#include <linux/rtnetlink.h>
21#include <net/mac80211.h>
22#include <asm/unaligned.h>
23
24#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020025#include "driver-ops.h"
Johannes Berg46900292009-02-15 12:44:28 +010026#include "rate.h"
27
28#define IEEE80211_SCAN_INTERVAL (2 * HZ)
29#define IEEE80211_SCAN_INTERVAL_SLOW (15 * HZ)
30#define IEEE80211_IBSS_JOIN_TIMEOUT (7 * HZ)
31
32#define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ)
Alina Friedrichsen4a332a32009-02-22 18:19:33 +010033#define IEEE80211_IBSS_MERGE_DELAY 0x400000
Johannes Berg46900292009-02-15 12:44:28 +010034#define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
35
36#define IEEE80211_IBSS_MAX_STA_ENTRIES 128
37
38
39static void ieee80211_rx_mgmt_auth_ibss(struct ieee80211_sub_if_data *sdata,
40 struct ieee80211_mgmt *mgmt,
41 size_t len)
42{
43 u16 auth_alg, auth_transaction, status_code;
44
45 if (len < 24 + 6)
46 return;
47
48 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
49 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
50 status_code = le16_to_cpu(mgmt->u.auth.status_code);
51
52 /*
53 * IEEE 802.11 standard does not require authentication in IBSS
54 * networks and most implementations do not seem to use it.
55 * However, try to reply to authentication attempts if someone
56 * has actually implemented this.
57 */
58 if (auth_alg == WLAN_AUTH_OPEN && auth_transaction == 1)
59 ieee80211_send_auth(sdata, 2, WLAN_AUTH_OPEN, NULL, 0,
Johannes Bergfffd0932009-07-08 14:22:54 +020060 sdata->u.ibss.bssid, NULL, 0, 0);
Johannes Berg46900292009-02-15 12:44:28 +010061}
62
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020063static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
64 const u8 *bssid, const int beacon_int,
65 struct ieee80211_channel *chan,
Johannes Bergb59066a2009-05-12 21:18:38 +020066 const u32 basic_rates,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020067 const u16 capability, u64 tsf)
Johannes Berg46900292009-02-15 12:44:28 +010068{
69 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
70 struct ieee80211_local *local = sdata->local;
Johannes Bergb59066a2009-05-12 21:18:38 +020071 int rates, i;
Johannes Berg46900292009-02-15 12:44:28 +010072 struct sk_buff *skb;
73 struct ieee80211_mgmt *mgmt;
74 u8 *pos;
75 struct ieee80211_supported_band *sband;
Johannes Berg57c4d7b2009-04-23 16:10:04 +020076 u32 bss_change;
Johannes Bergb59066a2009-05-12 21:18:38 +020077 u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
Johannes Berg24487982009-04-23 18:52:52 +020078
79 /* Reset own TSF to allow time synchronization work. */
80 drv_reset_tsf(local);
Johannes Berg46900292009-02-15 12:44:28 +010081
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020082 skb = ifibss->skb;
83 rcu_assign_pointer(ifibss->presp, NULL);
84 synchronize_rcu();
85 skb->data = skb->head;
86 skb->len = 0;
87 skb_reset_tail_pointer(skb);
88 skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
Johannes Berg46900292009-02-15 12:44:28 +010089
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020090 if (memcmp(ifibss->bssid, bssid, ETH_ALEN))
91 sta_info_flush(sdata->local, sdata);
Johannes Berg46900292009-02-15 12:44:28 +010092
93 memcpy(ifibss->bssid, bssid, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +010094
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020095 sdata->drop_unencrypted = capability & WLAN_CAPABILITY_PRIVACY ? 1 : 0;
Johannes Berg46900292009-02-15 12:44:28 +010096
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020097 local->oper_channel = chan;
98 local->oper_channel_type = NL80211_CHAN_NO_HT;
99 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200100
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200101 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg46900292009-02-15 12:44:28 +0100102
Johannes Bergb59066a2009-05-12 21:18:38 +0200103 /* build supported rates array */
104 pos = supp_rates;
105 for (i = 0; i < sband->n_bitrates; i++) {
106 int rate = sband->bitrates[i].bitrate;
107 u8 basic = 0;
108 if (basic_rates & BIT(i))
109 basic = 0x80;
110 *pos++ = basic | (u8) (rate / 5);
111 }
112
Johannes Berg46900292009-02-15 12:44:28 +0100113 /* Build IBSS probe response */
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200114 mgmt = (void *) skb_put(skb, 24 + sizeof(mgmt->u.beacon));
Johannes Berg46900292009-02-15 12:44:28 +0100115 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
116 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
117 IEEE80211_STYPE_PROBE_RESP);
118 memset(mgmt->da, 0xff, ETH_ALEN);
119 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
120 memcpy(mgmt->bssid, ifibss->bssid, ETH_ALEN);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200121 mgmt->u.beacon.beacon_int = cpu_to_le16(beacon_int);
Sujith707c1b42009-03-03 10:15:10 +0530122 mgmt->u.beacon.timestamp = cpu_to_le64(tsf);
Johannes Berg46900292009-02-15 12:44:28 +0100123 mgmt->u.beacon.capab_info = cpu_to_le16(capability);
124
125 pos = skb_put(skb, 2 + ifibss->ssid_len);
126 *pos++ = WLAN_EID_SSID;
127 *pos++ = ifibss->ssid_len;
128 memcpy(pos, ifibss->ssid, ifibss->ssid_len);
129
Johannes Bergb59066a2009-05-12 21:18:38 +0200130 rates = sband->n_bitrates;
Johannes Berg46900292009-02-15 12:44:28 +0100131 if (rates > 8)
132 rates = 8;
133 pos = skb_put(skb, 2 + rates);
134 *pos++ = WLAN_EID_SUPP_RATES;
135 *pos++ = rates;
136 memcpy(pos, supp_rates, rates);
137
138 if (sband->band == IEEE80211_BAND_2GHZ) {
139 pos = skb_put(skb, 2 + 1);
140 *pos++ = WLAN_EID_DS_PARAMS;
141 *pos++ = 1;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200142 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
Johannes Berg46900292009-02-15 12:44:28 +0100143 }
144
145 pos = skb_put(skb, 2 + 2);
146 *pos++ = WLAN_EID_IBSS_PARAMS;
147 *pos++ = 2;
148 /* FIX: set ATIM window based on scan results */
149 *pos++ = 0;
150 *pos++ = 0;
151
Johannes Bergb59066a2009-05-12 21:18:38 +0200152 if (sband->n_bitrates > 8) {
153 rates = sband->n_bitrates - 8;
Johannes Berg46900292009-02-15 12:44:28 +0100154 pos = skb_put(skb, 2 + rates);
155 *pos++ = WLAN_EID_EXT_SUPP_RATES;
156 *pos++ = rates;
157 memcpy(pos, &supp_rates[8], rates);
158 }
159
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200160 if (ifibss->ie_len)
161 memcpy(skb_put(skb, ifibss->ie_len),
162 ifibss->ie, ifibss->ie_len);
163
164 rcu_assign_pointer(ifibss->presp, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100165
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200166 sdata->vif.bss_conf.beacon_int = beacon_int;
167 bss_change = BSS_CHANGED_BEACON_INT;
168 bss_change |= ieee80211_reset_erp_info(sdata);
169 bss_change |= BSS_CHANGED_BSSID;
170 bss_change |= BSS_CHANGED_BEACON;
171 bss_change |= BSS_CHANGED_BEACON_ENABLED;
172 ieee80211_bss_info_change_notify(sdata, bss_change);
Johannes Berg46900292009-02-15 12:44:28 +0100173
Johannes Bergb59066a2009-05-12 21:18:38 +0200174 ieee80211_sta_def_wmm_params(sdata, sband->n_bitrates, supp_rates);
Johannes Berg46900292009-02-15 12:44:28 +0100175
Johannes Berg46900292009-02-15 12:44:28 +0100176 ifibss->state = IEEE80211_IBSS_MLME_JOINED;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200177 mod_timer(&ifibss->timer,
178 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
Johannes Berg46900292009-02-15 12:44:28 +0100179
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200180 cfg80211_inform_bss_frame(local->hw.wiphy, local->hw.conf.channel,
181 mgmt, skb->len, 0, GFP_KERNEL);
182 cfg80211_ibss_joined(sdata->dev, ifibss->bssid, GFP_KERNEL);
Johannes Berg46900292009-02-15 12:44:28 +0100183}
184
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200185static void ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
186 struct ieee80211_bss *bss)
Johannes Berg46900292009-02-15 12:44:28 +0100187{
Johannes Bergb59066a2009-05-12 21:18:38 +0200188 struct ieee80211_supported_band *sband;
189 u32 basic_rates;
190 int i, j;
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200191 u16 beacon_int = bss->cbss.beacon_interval;
192
193 if (beacon_int < 10)
194 beacon_int = 10;
195
Johannes Bergb59066a2009-05-12 21:18:38 +0200196 sband = sdata->local->hw.wiphy->bands[bss->cbss.channel->band];
197
198 basic_rates = 0;
199
200 for (i = 0; i < bss->supp_rates_len; i++) {
201 int rate = (bss->supp_rates[i] & 0x7f) * 5;
202 bool is_basic = !!(bss->supp_rates[i] & 0x80);
203
204 for (j = 0; j < sband->n_bitrates; j++) {
205 if (sband->bitrates[j].bitrate == rate) {
206 if (is_basic)
207 basic_rates |= BIT(j);
208 break;
209 }
210 }
211 }
212
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200213 __ieee80211_sta_join_ibss(sdata, bss->cbss.bssid,
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200214 beacon_int,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200215 bss->cbss.channel,
Johannes Bergb59066a2009-05-12 21:18:38 +0200216 basic_rates,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200217 bss->cbss.capability,
218 bss->cbss.tsf);
Johannes Berg46900292009-02-15 12:44:28 +0100219}
220
221static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
222 struct ieee80211_mgmt *mgmt,
223 size_t len,
224 struct ieee80211_rx_status *rx_status,
225 struct ieee802_11_elems *elems,
226 bool beacon)
227{
228 struct ieee80211_local *local = sdata->local;
229 int freq;
230 struct ieee80211_bss *bss;
231 struct sta_info *sta;
232 struct ieee80211_channel *channel;
233 u64 beacon_timestamp, rx_timestamp;
234 u32 supp_rates = 0;
235 enum ieee80211_band band = rx_status->band;
236
237 if (elems->ds_params && elems->ds_params_len == 1)
238 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
239 else
240 freq = rx_status->freq;
241
242 channel = ieee80211_get_channel(local->hw.wiphy, freq);
243
244 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
245 return;
246
247 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && elems->supp_rates &&
248 memcmp(mgmt->bssid, sdata->u.ibss.bssid, ETH_ALEN) == 0) {
249 supp_rates = ieee80211_sta_get_rates(local, elems, band);
250
251 rcu_read_lock();
252
253 sta = sta_info_get(local, mgmt->sa);
254 if (sta) {
255 u32 prev_rates;
256
257 prev_rates = sta->sta.supp_rates[band];
258 /* make sure mandatory rates are always added */
259 sta->sta.supp_rates[band] = supp_rates |
260 ieee80211_mandatory_rates(local, band);
261
262#ifdef CONFIG_MAC80211_IBSS_DEBUG
263 if (sta->sta.supp_rates[band] != prev_rates)
264 printk(KERN_DEBUG "%s: updated supp_rates set "
265 "for %pM based on beacon info (0x%llx | "
266 "0x%llx -> 0x%llx)\n",
267 sdata->dev->name,
268 sta->sta.addr,
269 (unsigned long long) prev_rates,
270 (unsigned long long) supp_rates,
271 (unsigned long long) sta->sta.supp_rates[band]);
272#endif
273 } else
274 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
275
276 rcu_read_unlock();
277 }
278
279 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
280 channel, beacon);
281 if (!bss)
282 return;
283
284 /* was just updated in ieee80211_bss_info_update */
285 beacon_timestamp = bss->cbss.tsf;
286
287 /* check if we need to merge IBSS */
288
289 /* merge only on beacons (???) */
290 if (!beacon)
291 goto put_bss;
292
293 /* we use a fixed BSSID */
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200294 if (sdata->u.ibss.bssid)
Johannes Berg46900292009-02-15 12:44:28 +0100295 goto put_bss;
296
297 /* not an IBSS */
298 if (!(bss->cbss.capability & WLAN_CAPABILITY_IBSS))
299 goto put_bss;
300
301 /* different channel */
302 if (bss->cbss.channel != local->oper_channel)
303 goto put_bss;
304
305 /* different SSID */
306 if (elems->ssid_len != sdata->u.ibss.ssid_len ||
307 memcmp(elems->ssid, sdata->u.ibss.ssid,
308 sdata->u.ibss.ssid_len))
309 goto put_bss;
310
Alina Friedrichsen34e8f082009-02-22 00:07:28 +0100311 /* same BSSID */
312 if (memcmp(bss->cbss.bssid, sdata->u.ibss.bssid, ETH_ALEN) == 0)
313 goto put_bss;
314
Johannes Berg46900292009-02-15 12:44:28 +0100315 if (rx_status->flag & RX_FLAG_TSFT) {
316 /*
317 * For correct IBSS merging we need mactime; since mactime is
318 * defined as the time the first data symbol of the frame hits
319 * the PHY, and the timestamp of the beacon is defined as "the
320 * time that the data symbol containing the first bit of the
321 * timestamp is transmitted to the PHY plus the transmitting
322 * STA's delays through its local PHY from the MAC-PHY
323 * interface to its interface with the WM" (802.11 11.1.2)
324 * - equals the time this bit arrives at the receiver - we have
325 * to take into account the offset between the two.
326 *
327 * E.g. at 1 MBit that means mactime is 192 usec earlier
328 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
329 */
330 int rate;
331
332 if (rx_status->flag & RX_FLAG_HT)
333 rate = 65; /* TODO: HT rates */
334 else
335 rate = local->hw.wiphy->bands[band]->
336 bitrates[rx_status->rate_idx].bitrate;
337
338 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
Johannes Berg24487982009-04-23 18:52:52 +0200339 } else {
340 /*
341 * second best option: get current TSF
342 * (will return -1 if not supported)
343 */
344 rx_timestamp = drv_get_tsf(local);
345 }
Johannes Berg46900292009-02-15 12:44:28 +0100346
347#ifdef CONFIG_MAC80211_IBSS_DEBUG
348 printk(KERN_DEBUG "RX beacon SA=%pM BSSID="
349 "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
350 mgmt->sa, mgmt->bssid,
351 (unsigned long long)rx_timestamp,
352 (unsigned long long)beacon_timestamp,
353 (unsigned long long)(rx_timestamp - beacon_timestamp),
354 jiffies);
355#endif
356
Alina Friedrichsen4a332a32009-02-22 18:19:33 +0100357 /* give slow hardware some time to do the TSF sync */
358 if (rx_timestamp < IEEE80211_IBSS_MERGE_DELAY)
359 goto put_bss;
360
Johannes Berg46900292009-02-15 12:44:28 +0100361 if (beacon_timestamp > rx_timestamp) {
362#ifdef CONFIG_MAC80211_IBSS_DEBUG
363 printk(KERN_DEBUG "%s: beacon TSF higher than "
364 "local TSF - IBSS merge with BSSID %pM\n",
365 sdata->dev->name, mgmt->bssid);
366#endif
367 ieee80211_sta_join_ibss(sdata, bss);
368 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
369 }
370
371 put_bss:
372 ieee80211_rx_bss_put(local, bss);
373}
374
375/*
376 * Add a new IBSS station, will also be called by the RX code when,
377 * in IBSS mode, receiving a frame from a yet-unknown station, hence
378 * must be callable in atomic context.
379 */
380struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
381 u8 *bssid,u8 *addr, u32 supp_rates)
382{
383 struct ieee80211_local *local = sdata->local;
384 struct sta_info *sta;
385 int band = local->hw.conf.channel->band;
386
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200387 /*
388 * XXX: Consider removing the least recently used entry and
389 * allow new one to be added.
390 */
Johannes Berg46900292009-02-15 12:44:28 +0100391 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200392 if (net_ratelimit())
393 printk(KERN_DEBUG "%s: No room for a new IBSS STA entry %pM\n",
394 sdata->dev->name, addr);
Johannes Berg46900292009-02-15 12:44:28 +0100395 return NULL;
396 }
397
398 if (compare_ether_addr(bssid, sdata->u.ibss.bssid))
399 return NULL;
400
401#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
402 printk(KERN_DEBUG "%s: Adding new IBSS station %pM (dev=%s)\n",
403 wiphy_name(local->hw.wiphy), addr, sdata->dev->name);
404#endif
405
406 sta = sta_info_alloc(sdata, addr, GFP_ATOMIC);
407 if (!sta)
408 return NULL;
409
410 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
411
412 /* make sure mandatory rates are always added */
413 sta->sta.supp_rates[band] = supp_rates |
414 ieee80211_mandatory_rates(local, band);
415
416 rate_control_rate_init(sta);
417
418 if (sta_info_insert(sta))
419 return NULL;
420
421 return sta;
422}
423
424static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
425{
426 struct ieee80211_local *local = sdata->local;
427 int active = 0;
428 struct sta_info *sta;
429
430 rcu_read_lock();
431
432 list_for_each_entry_rcu(sta, &local->sta_list, list) {
433 if (sta->sdata == sdata &&
434 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
435 jiffies)) {
436 active++;
437 break;
438 }
439 }
440
441 rcu_read_unlock();
442
443 return active;
444}
445
446
447static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata)
448{
449 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
450
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200451 mod_timer(&ifibss->timer,
452 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
Johannes Berg46900292009-02-15 12:44:28 +0100453
454 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200455
Sujith450aae32009-11-02 12:33:23 +0530456 if (time_before(jiffies, ifibss->last_scan_completed +
457 IEEE80211_IBSS_MERGE_INTERVAL))
458 return;
459
Johannes Berg46900292009-02-15 12:44:28 +0100460 if (ieee80211_sta_active_ibss(sdata))
461 return;
462
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200463 if (ifibss->fixed_channel)
Johannes Berg46900292009-02-15 12:44:28 +0100464 return;
465
466 printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other "
467 "IBSS networks with same SSID (merge)\n", sdata->dev->name);
468
Johannes Bergf3b85252009-04-23 16:01:47 +0200469 ieee80211_request_internal_scan(sdata, ifibss->ssid, ifibss->ssid_len);
Johannes Berg46900292009-02-15 12:44:28 +0100470}
471
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200472static void ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100473{
474 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
475 struct ieee80211_local *local = sdata->local;
476 struct ieee80211_supported_band *sband;
Johannes Berg46900292009-02-15 12:44:28 +0100477 u8 bssid[ETH_ALEN];
Johannes Berg46900292009-02-15 12:44:28 +0100478 u16 capability;
479 int i;
480
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200481 if (ifibss->fixed_bssid) {
Johannes Berg46900292009-02-15 12:44:28 +0100482 memcpy(bssid, ifibss->bssid, ETH_ALEN);
483 } else {
484 /* Generate random, not broadcast, locally administered BSSID. Mix in
485 * own MAC address to make sure that devices that do not have proper
486 * random number generator get different BSSID. */
487 get_random_bytes(bssid, ETH_ALEN);
488 for (i = 0; i < ETH_ALEN; i++)
489 bssid[i] ^= sdata->dev->dev_addr[i];
490 bssid[0] &= ~0x01;
491 bssid[0] |= 0x02;
492 }
493
494 printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n",
495 sdata->dev->name, bssid);
496
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200497 sband = local->hw.wiphy->bands[ifibss->channel->band];
Johannes Berg46900292009-02-15 12:44:28 +0100498
Johannes Berg46900292009-02-15 12:44:28 +0100499 capability = WLAN_CAPABILITY_IBSS;
500
Johannes Bergfffd0932009-07-08 14:22:54 +0200501 if (ifibss->privacy)
Johannes Berg46900292009-02-15 12:44:28 +0100502 capability |= WLAN_CAPABILITY_PRIVACY;
503 else
504 sdata->drop_unencrypted = 0;
505
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200506 __ieee80211_sta_join_ibss(sdata, bssid, sdata->vif.bss_conf.beacon_int,
Johannes Bergb59066a2009-05-12 21:18:38 +0200507 ifibss->channel, 3, /* first two are basic */
508 capability, 0);
Johannes Berg46900292009-02-15 12:44:28 +0100509}
510
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200511static void ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100512{
513 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
514 struct ieee80211_local *local = sdata->local;
515 struct ieee80211_bss *bss;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200516 struct ieee80211_channel *chan = NULL;
Johannes Berg46900292009-02-15 12:44:28 +0100517 const u8 *bssid = NULL;
518 int active_ibss;
Johannes Berge0d61882009-05-12 20:47:32 +0200519 u16 capability;
Johannes Berg46900292009-02-15 12:44:28 +0100520
Johannes Berg46900292009-02-15 12:44:28 +0100521 active_ibss = ieee80211_sta_active_ibss(sdata);
522#ifdef CONFIG_MAC80211_IBSS_DEBUG
523 printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n",
524 sdata->dev->name, active_ibss);
525#endif /* CONFIG_MAC80211_IBSS_DEBUG */
526
527 if (active_ibss)
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200528 return;
Johannes Berg46900292009-02-15 12:44:28 +0100529
Johannes Berge0d61882009-05-12 20:47:32 +0200530 capability = WLAN_CAPABILITY_IBSS;
Johannes Bergfffd0932009-07-08 14:22:54 +0200531 if (ifibss->privacy)
Johannes Berge0d61882009-05-12 20:47:32 +0200532 capability |= WLAN_CAPABILITY_PRIVACY;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200533 if (ifibss->fixed_bssid)
Johannes Berg46900292009-02-15 12:44:28 +0100534 bssid = ifibss->bssid;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200535 if (ifibss->fixed_channel)
536 chan = ifibss->channel;
537 if (!is_zero_ether_addr(ifibss->bssid))
538 bssid = ifibss->bssid;
539 bss = (void *)cfg80211_get_bss(local->hw.wiphy, chan, bssid,
Johannes Berg46900292009-02-15 12:44:28 +0100540 ifibss->ssid, ifibss->ssid_len,
Johannes Berge0d61882009-05-12 20:47:32 +0200541 WLAN_CAPABILITY_IBSS |
Johannes Bergdb676452009-05-20 09:05:10 +0200542 WLAN_CAPABILITY_PRIVACY,
543 capability);
Johannes Berg46900292009-02-15 12:44:28 +0100544
Reinette Chatred419b9f2009-10-19 14:55:37 -0700545 if (bss) {
Johannes Berg46900292009-02-15 12:44:28 +0100546#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg46900292009-02-15 12:44:28 +0100547 printk(KERN_DEBUG " sta_find_ibss: selected %pM current "
548 "%pM\n", bss->cbss.bssid, ifibss->bssid);
549#endif /* CONFIG_MAC80211_IBSS_DEBUG */
550
Johannes Berg46900292009-02-15 12:44:28 +0100551 printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
552 " based on configured SSID\n",
553 sdata->dev->name, bss->cbss.bssid);
554
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200555 ieee80211_sta_join_ibss(sdata, bss);
Johannes Berg46900292009-02-15 12:44:28 +0100556 ieee80211_rx_bss_put(local, bss);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200557 return;
Reinette Chatred419b9f2009-10-19 14:55:37 -0700558 }
Johannes Berg46900292009-02-15 12:44:28 +0100559
560#ifdef CONFIG_MAC80211_IBSS_DEBUG
561 printk(KERN_DEBUG " did not try to join ibss\n");
562#endif /* CONFIG_MAC80211_IBSS_DEBUG */
563
564 /* Selected IBSS not found in current scan results - try to scan */
565 if (ifibss->state == IEEE80211_IBSS_MLME_JOINED &&
566 !ieee80211_sta_active_ibss(sdata)) {
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200567 mod_timer(&ifibss->timer,
568 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
569 } else if (time_after(jiffies, ifibss->last_scan_completed +
Johannes Berg46900292009-02-15 12:44:28 +0100570 IEEE80211_SCAN_INTERVAL)) {
571 printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to "
572 "join\n", sdata->dev->name);
573
Johannes Bergf3b85252009-04-23 16:01:47 +0200574 ieee80211_request_internal_scan(sdata, ifibss->ssid,
575 ifibss->ssid_len);
Johannes Berg46900292009-02-15 12:44:28 +0100576 } else if (ifibss->state != IEEE80211_IBSS_MLME_JOINED) {
577 int interval = IEEE80211_SCAN_INTERVAL;
578
579 if (time_after(jiffies, ifibss->ibss_join_req +
580 IEEE80211_IBSS_JOIN_TIMEOUT)) {
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200581 if (!(local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS)) {
582 ieee80211_sta_create_ibss(sdata);
583 return;
584 }
Johannes Berg46900292009-02-15 12:44:28 +0100585 printk(KERN_DEBUG "%s: IBSS not allowed on"
586 " %d MHz\n", sdata->dev->name,
587 local->hw.conf.channel->center_freq);
588
589 /* No IBSS found - decrease scan interval and continue
590 * scanning. */
591 interval = IEEE80211_SCAN_INTERVAL_SLOW;
592 }
593
594 ifibss->state = IEEE80211_IBSS_MLME_SEARCH;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200595 mod_timer(&ifibss->timer,
596 round_jiffies(jiffies + interval));
Johannes Berg46900292009-02-15 12:44:28 +0100597 }
Johannes Berg46900292009-02-15 12:44:28 +0100598}
599
600static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
601 struct ieee80211_mgmt *mgmt,
602 size_t len)
603{
604 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
605 struct ieee80211_local *local = sdata->local;
606 int tx_last_beacon;
607 struct sk_buff *skb;
608 struct ieee80211_mgmt *resp;
609 u8 *pos, *end;
610
611 if (ifibss->state != IEEE80211_IBSS_MLME_JOINED ||
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200612 len < 24 + 2 || !ifibss->presp)
Johannes Berg46900292009-02-15 12:44:28 +0100613 return;
614
Johannes Berg24487982009-04-23 18:52:52 +0200615 tx_last_beacon = drv_tx_last_beacon(local);
Johannes Berg46900292009-02-15 12:44:28 +0100616
617#ifdef CONFIG_MAC80211_IBSS_DEBUG
618 printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
619 " (tx_last_beacon=%d)\n",
620 sdata->dev->name, mgmt->sa, mgmt->da,
621 mgmt->bssid, tx_last_beacon);
622#endif /* CONFIG_MAC80211_IBSS_DEBUG */
623
624 if (!tx_last_beacon)
625 return;
626
627 if (memcmp(mgmt->bssid, ifibss->bssid, ETH_ALEN) != 0 &&
628 memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
629 return;
630
631 end = ((u8 *) mgmt) + len;
632 pos = mgmt->u.probe_req.variable;
633 if (pos[0] != WLAN_EID_SSID ||
634 pos + 2 + pos[1] > end) {
635#ifdef CONFIG_MAC80211_IBSS_DEBUG
636 printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq "
637 "from %pM\n",
638 sdata->dev->name, mgmt->sa);
639#endif
640 return;
641 }
642 if (pos[1] != 0 &&
643 (pos[1] != ifibss->ssid_len ||
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200644 !memcmp(pos + 2, ifibss->ssid, ifibss->ssid_len))) {
Johannes Berg46900292009-02-15 12:44:28 +0100645 /* Ignore ProbeReq for foreign SSID */
646 return;
647 }
648
649 /* Reply with ProbeResp */
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200650 skb = skb_copy(ifibss->presp, GFP_KERNEL);
Johannes Berg46900292009-02-15 12:44:28 +0100651 if (!skb)
652 return;
653
654 resp = (struct ieee80211_mgmt *) skb->data;
655 memcpy(resp->da, mgmt->sa, ETH_ALEN);
656#ifdef CONFIG_MAC80211_IBSS_DEBUG
657 printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n",
658 sdata->dev->name, resp->da);
659#endif /* CONFIG_MAC80211_IBSS_DEBUG */
660 ieee80211_tx_skb(sdata, skb, 0);
661}
662
663static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
664 struct ieee80211_mgmt *mgmt,
665 size_t len,
666 struct ieee80211_rx_status *rx_status)
667{
668 size_t baselen;
669 struct ieee802_11_elems elems;
670
671 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
672 return; /* ignore ProbeResp to foreign address */
673
674 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
675 if (baselen > len)
676 return;
677
678 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
679 &elems);
680
681 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
682}
683
684static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
685 struct ieee80211_mgmt *mgmt,
686 size_t len,
687 struct ieee80211_rx_status *rx_status)
688{
689 size_t baselen;
690 struct ieee802_11_elems elems;
691
692 /* Process beacon from the current BSS */
693 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
694 if (baselen > len)
695 return;
696
697 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
698
699 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
700}
701
702static void ieee80211_ibss_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
703 struct sk_buff *skb)
704{
705 struct ieee80211_rx_status *rx_status;
706 struct ieee80211_mgmt *mgmt;
707 u16 fc;
708
Johannes Bergf1d58c22009-06-17 13:13:00 +0200709 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg46900292009-02-15 12:44:28 +0100710 mgmt = (struct ieee80211_mgmt *) skb->data;
711 fc = le16_to_cpu(mgmt->frame_control);
712
713 switch (fc & IEEE80211_FCTL_STYPE) {
714 case IEEE80211_STYPE_PROBE_REQ:
715 ieee80211_rx_mgmt_probe_req(sdata, mgmt, skb->len);
716 break;
717 case IEEE80211_STYPE_PROBE_RESP:
718 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
719 rx_status);
720 break;
721 case IEEE80211_STYPE_BEACON:
722 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
723 rx_status);
724 break;
725 case IEEE80211_STYPE_AUTH:
726 ieee80211_rx_mgmt_auth_ibss(sdata, mgmt, skb->len);
727 break;
728 }
729
730 kfree_skb(skb);
731}
732
733static void ieee80211_ibss_work(struct work_struct *work)
734{
735 struct ieee80211_sub_if_data *sdata =
736 container_of(work, struct ieee80211_sub_if_data, u.ibss.work);
737 struct ieee80211_local *local = sdata->local;
738 struct ieee80211_if_ibss *ifibss;
739 struct sk_buff *skb;
740
Johannes Berg5bb644a2009-05-17 11:40:42 +0200741 if (WARN_ON(local->suspended))
742 return;
743
Johannes Berg46900292009-02-15 12:44:28 +0100744 if (!netif_running(sdata->dev))
745 return;
746
Helmut Schaafbe9c422009-07-23 12:14:04 +0200747 if (local->scanning)
Johannes Berg46900292009-02-15 12:44:28 +0100748 return;
749
750 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_ADHOC))
751 return;
752 ifibss = &sdata->u.ibss;
753
754 while ((skb = skb_dequeue(&ifibss->skb_queue)))
755 ieee80211_ibss_rx_queued_mgmt(sdata, skb);
756
757 if (!test_and_clear_bit(IEEE80211_IBSS_REQ_RUN, &ifibss->request))
758 return;
759
760 switch (ifibss->state) {
761 case IEEE80211_IBSS_MLME_SEARCH:
762 ieee80211_sta_find_ibss(sdata);
763 break;
764 case IEEE80211_IBSS_MLME_JOINED:
765 ieee80211_sta_merge_ibss(sdata);
766 break;
767 default:
768 WARN_ON(1);
769 break;
770 }
771}
772
773static void ieee80211_ibss_timer(unsigned long data)
774{
775 struct ieee80211_sub_if_data *sdata =
776 (struct ieee80211_sub_if_data *) data;
777 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
778 struct ieee80211_local *local = sdata->local;
779
Johannes Berg5bb644a2009-05-17 11:40:42 +0200780 if (local->quiescing) {
781 ifibss->timer_running = true;
782 return;
783 }
784
Johannes Berg46900292009-02-15 12:44:28 +0100785 set_bit(IEEE80211_IBSS_REQ_RUN, &ifibss->request);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400786 ieee80211_queue_work(&local->hw, &ifibss->work);
Johannes Berg46900292009-02-15 12:44:28 +0100787}
788
Johannes Berg5bb644a2009-05-17 11:40:42 +0200789#ifdef CONFIG_PM
790void ieee80211_ibss_quiesce(struct ieee80211_sub_if_data *sdata)
791{
792 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
793
794 cancel_work_sync(&ifibss->work);
795 if (del_timer_sync(&ifibss->timer))
796 ifibss->timer_running = true;
797}
798
799void ieee80211_ibss_restart(struct ieee80211_sub_if_data *sdata)
800{
801 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
802
803 if (ifibss->timer_running) {
804 add_timer(&ifibss->timer);
805 ifibss->timer_running = false;
806 }
807}
808#endif
809
Johannes Berg46900292009-02-15 12:44:28 +0100810void ieee80211_ibss_setup_sdata(struct ieee80211_sub_if_data *sdata)
811{
812 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
813
814 INIT_WORK(&ifibss->work, ieee80211_ibss_work);
815 setup_timer(&ifibss->timer, ieee80211_ibss_timer,
816 (unsigned long) sdata);
817 skb_queue_head_init(&ifibss->skb_queue);
Johannes Berg46900292009-02-15 12:44:28 +0100818}
819
820/* scan finished notification */
821void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local)
822{
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200823 struct ieee80211_sub_if_data *sdata;
Johannes Berg46900292009-02-15 12:44:28 +0100824
Johannes Berg29b4a4f2009-04-21 00:30:49 +0200825 mutex_lock(&local->iflist_mtx);
826 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg0e41f712009-04-23 11:48:56 +0200827 if (!netif_running(sdata->dev))
828 continue;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200829 if (sdata->vif.type != NL80211_IFTYPE_ADHOC)
830 continue;
Johannes Berg0e41f712009-04-23 11:48:56 +0200831 if (!sdata->u.ibss.ssid_len)
832 continue;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200833 sdata->u.ibss.last_scan_completed = jiffies;
Johannes Berg51f98f12009-10-11 11:47:57 +0200834 mod_timer(&sdata->u.ibss.timer, 0);
Johannes Berg46900292009-02-15 12:44:28 +0100835 }
Johannes Berg29b4a4f2009-04-21 00:30:49 +0200836 mutex_unlock(&local->iflist_mtx);
Johannes Berg46900292009-02-15 12:44:28 +0100837}
838
839ieee80211_rx_result
Johannes Bergf1d58c22009-06-17 13:13:00 +0200840ieee80211_ibss_rx_mgmt(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
Johannes Berg46900292009-02-15 12:44:28 +0100841{
842 struct ieee80211_local *local = sdata->local;
843 struct ieee80211_mgmt *mgmt;
844 u16 fc;
845
846 if (skb->len < 24)
847 return RX_DROP_MONITOR;
848
849 mgmt = (struct ieee80211_mgmt *) skb->data;
850 fc = le16_to_cpu(mgmt->frame_control);
851
852 switch (fc & IEEE80211_FCTL_STYPE) {
853 case IEEE80211_STYPE_PROBE_RESP:
854 case IEEE80211_STYPE_BEACON:
Johannes Berg46900292009-02-15 12:44:28 +0100855 case IEEE80211_STYPE_PROBE_REQ:
856 case IEEE80211_STYPE_AUTH:
857 skb_queue_tail(&sdata->u.ibss.skb_queue, skb);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400858 ieee80211_queue_work(&local->hw, &sdata->u.ibss.work);
Johannes Berg46900292009-02-15 12:44:28 +0100859 return RX_QUEUED;
860 }
861
862 return RX_DROP_MONITOR;
863}
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200864
865int ieee80211_ibss_join(struct ieee80211_sub_if_data *sdata,
866 struct cfg80211_ibss_params *params)
867{
868 struct sk_buff *skb;
869
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200870 if (params->bssid) {
871 memcpy(sdata->u.ibss.bssid, params->bssid, ETH_ALEN);
872 sdata->u.ibss.fixed_bssid = true;
873 } else
874 sdata->u.ibss.fixed_bssid = false;
875
Johannes Bergfffd0932009-07-08 14:22:54 +0200876 sdata->u.ibss.privacy = params->privacy;
877
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200878 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
879
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200880 sdata->u.ibss.channel = params->channel;
881 sdata->u.ibss.fixed_channel = params->channel_fixed;
882
883 if (params->ie) {
884 sdata->u.ibss.ie = kmemdup(params->ie, params->ie_len,
885 GFP_KERNEL);
886 if (sdata->u.ibss.ie)
887 sdata->u.ibss.ie_len = params->ie_len;
888 }
889
890 skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom +
891 36 /* bitrates */ +
892 34 /* SSID */ +
893 3 /* DS params */ +
894 4 /* IBSS params */ +
895 params->ie_len);
896 if (!skb)
897 return -ENOMEM;
898
899 sdata->u.ibss.skb = skb;
900 sdata->u.ibss.state = IEEE80211_IBSS_MLME_SEARCH;
901 sdata->u.ibss.ibss_join_req = jiffies;
902
Johannes Berg0e41f712009-04-23 11:48:56 +0200903 memcpy(sdata->u.ibss.ssid, params->ssid, IEEE80211_MAX_SSID_LEN);
904
905 /*
906 * The ssid_len setting below is used to see whether
907 * we are active, and we need all other settings
908 * before that may get visible.
909 */
910 mb();
911
912 sdata->u.ibss.ssid_len = params->ssid_len;
913
Johannes Berg5cff20e2009-04-29 12:26:17 +0200914 ieee80211_recalc_idle(sdata->local);
915
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200916 set_bit(IEEE80211_IBSS_REQ_RUN, &sdata->u.ibss.request);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400917 ieee80211_queue_work(&sdata->local->hw, &sdata->u.ibss.work);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200918
919 return 0;
920}
921
922int ieee80211_ibss_leave(struct ieee80211_sub_if_data *sdata)
923{
924 struct sk_buff *skb;
925
926 del_timer_sync(&sdata->u.ibss.timer);
927 clear_bit(IEEE80211_IBSS_REQ_RUN, &sdata->u.ibss.request);
928 cancel_work_sync(&sdata->u.ibss.work);
929 clear_bit(IEEE80211_IBSS_REQ_RUN, &sdata->u.ibss.request);
930
931 sta_info_flush(sdata->local, sdata);
932
933 /* remove beacon */
934 kfree(sdata->u.ibss.ie);
935 skb = sdata->u.ibss.presp;
936 rcu_assign_pointer(sdata->u.ibss.presp, NULL);
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200937 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200938 synchronize_rcu();
939 kfree_skb(skb);
940
941 skb_queue_purge(&sdata->u.ibss.skb_queue);
942 memset(sdata->u.ibss.bssid, 0, ETH_ALEN);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200943 sdata->u.ibss.ssid_len = 0;
944
945 ieee80211_recalc_idle(sdata->local);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200946
947 return 0;
948}