blob: a98d370b56f6063516959629b53a35080d3f7e58 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Johannes Berg46900292009-02-15 12:44:28 +010017#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>
24
25#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020026#include "driver-ops.h"
Johannes Berg46900292009-02-15 12:44:28 +010027#include "rate.h"
28
29#define IEEE80211_SCAN_INTERVAL (2 * HZ)
30#define IEEE80211_SCAN_INTERVAL_SLOW (15 * HZ)
31#define IEEE80211_IBSS_JOIN_TIMEOUT (7 * HZ)
32
33#define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ)
34#define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
35
36#define IEEE80211_IBSS_MAX_STA_ENTRIES 128
37
38
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020039static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
40 const u8 *bssid, const int beacon_int,
41 struct ieee80211_channel *chan,
Johannes Bergb59066a2009-05-12 21:18:38 +020042 const u32 basic_rates,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020043 const u16 capability, u64 tsf)
Johannes Berg46900292009-02-15 12:44:28 +010044{
45 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
46 struct ieee80211_local *local = sdata->local;
Johannes Bergb59066a2009-05-12 21:18:38 +020047 int rates, i;
Johannes Berg46900292009-02-15 12:44:28 +010048 struct sk_buff *skb;
49 struct ieee80211_mgmt *mgmt;
50 u8 *pos;
51 struct ieee80211_supported_band *sband;
Johannes Bergf446d102009-10-28 15:12:32 +010052 struct cfg80211_bss *bss;
Johannes Berg57c4d7b2009-04-23 16:10:04 +020053 u32 bss_change;
Johannes Bergb59066a2009-05-12 21:18:38 +020054 u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
Alexander Simon13c40c52011-11-30 16:56:34 +010055 enum nl80211_channel_type channel_type;
Johannes Berg24487982009-04-23 18:52:52 +020056
Johannes Berg7a17a332010-07-21 11:30:27 +020057 lockdep_assert_held(&ifibss->mtx);
58
Johannes Berg24487982009-04-23 18:52:52 +020059 /* Reset own TSF to allow time synchronization work. */
Eliad Peller37a41b42011-09-21 14:06:11 +030060 drv_reset_tsf(local, sdata);
Johannes Berg46900292009-02-15 12:44:28 +010061
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020062 skb = ifibss->skb;
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000063 RCU_INIT_POINTER(ifibss->presp, NULL);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020064 synchronize_rcu();
65 skb->data = skb->head;
66 skb->len = 0;
67 skb_reset_tail_pointer(skb);
68 skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
Johannes Berg46900292009-02-15 12:44:28 +010069
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020070 if (memcmp(ifibss->bssid, bssid, ETH_ALEN))
71 sta_info_flush(sdata->local, sdata);
Johannes Berg46900292009-02-15 12:44:28 +010072
Johannes Berg49b5c7f2010-04-29 21:34:01 +020073 /* if merging, indicate to driver that we leave the old IBSS */
74 if (sdata->vif.bss_conf.ibss_joined) {
75 sdata->vif.bss_conf.ibss_joined = false;
Eliad Peller86a2ea42011-11-08 15:36:59 +020076 netif_carrier_off(sdata->dev);
Johannes Berg49b5c7f2010-04-29 21:34:01 +020077 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_IBSS);
78 }
79
Johannes Berg46900292009-02-15 12:44:28 +010080 memcpy(ifibss->bssid, bssid, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +010081
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020082 sdata->drop_unencrypted = capability & WLAN_CAPABILITY_PRIVACY ? 1 : 0;
Johannes Berg46900292009-02-15 12:44:28 +010083
Alexander Simon13c40c52011-11-30 16:56:34 +010084 channel_type = ifibss->channel_type;
85 if (channel_type > NL80211_CHAN_HT20 &&
86 !cfg80211_can_beacon_sec_chan(local->hw.wiphy, chan, channel_type))
87 channel_type = NL80211_CHAN_HT20;
88 if (!ieee80211_set_channel_type(local, sdata, channel_type)) {
89 /* can only fail due to HT40+/- mismatch */
90 channel_type = NL80211_CHAN_HT20;
91 WARN_ON(!ieee80211_set_channel_type(local, sdata,
92 NL80211_CHAN_HT20));
93 }
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020094 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Berg57c4d7b2009-04-23 16:10:04 +020095
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020096 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg46900292009-02-15 12:44:28 +010097
Johannes Bergb59066a2009-05-12 21:18:38 +020098 /* build supported rates array */
99 pos = supp_rates;
100 for (i = 0; i < sband->n_bitrates; i++) {
101 int rate = sband->bitrates[i].bitrate;
102 u8 basic = 0;
103 if (basic_rates & BIT(i))
104 basic = 0x80;
105 *pos++ = basic | (u8) (rate / 5);
106 }
107
Johannes Berg46900292009-02-15 12:44:28 +0100108 /* Build IBSS probe response */
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200109 mgmt = (void *) skb_put(skb, 24 + sizeof(mgmt->u.beacon));
Johannes Berg46900292009-02-15 12:44:28 +0100110 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
111 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
112 IEEE80211_STYPE_PROBE_RESP);
113 memset(mgmt->da, 0xff, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100114 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100115 memcpy(mgmt->bssid, ifibss->bssid, ETH_ALEN);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200116 mgmt->u.beacon.beacon_int = cpu_to_le16(beacon_int);
Sujith707c1b42009-03-03 10:15:10 +0530117 mgmt->u.beacon.timestamp = cpu_to_le64(tsf);
Johannes Berg46900292009-02-15 12:44:28 +0100118 mgmt->u.beacon.capab_info = cpu_to_le16(capability);
119
120 pos = skb_put(skb, 2 + ifibss->ssid_len);
121 *pos++ = WLAN_EID_SSID;
122 *pos++ = ifibss->ssid_len;
123 memcpy(pos, ifibss->ssid, ifibss->ssid_len);
124
Johannes Bergb59066a2009-05-12 21:18:38 +0200125 rates = sband->n_bitrates;
Johannes Berg46900292009-02-15 12:44:28 +0100126 if (rates > 8)
127 rates = 8;
128 pos = skb_put(skb, 2 + rates);
129 *pos++ = WLAN_EID_SUPP_RATES;
130 *pos++ = rates;
131 memcpy(pos, supp_rates, rates);
132
133 if (sband->band == IEEE80211_BAND_2GHZ) {
134 pos = skb_put(skb, 2 + 1);
135 *pos++ = WLAN_EID_DS_PARAMS;
136 *pos++ = 1;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200137 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
Johannes Berg46900292009-02-15 12:44:28 +0100138 }
139
140 pos = skb_put(skb, 2 + 2);
141 *pos++ = WLAN_EID_IBSS_PARAMS;
142 *pos++ = 2;
143 /* FIX: set ATIM window based on scan results */
144 *pos++ = 0;
145 *pos++ = 0;
146
Johannes Bergb59066a2009-05-12 21:18:38 +0200147 if (sband->n_bitrates > 8) {
148 rates = sband->n_bitrates - 8;
Johannes Berg46900292009-02-15 12:44:28 +0100149 pos = skb_put(skb, 2 + rates);
150 *pos++ = WLAN_EID_EXT_SUPP_RATES;
151 *pos++ = rates;
152 memcpy(pos, &supp_rates[8], rates);
153 }
154
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200155 if (ifibss->ie_len)
156 memcpy(skb_put(skb, ifibss->ie_len),
157 ifibss->ie, ifibss->ie_len);
158
Alexander Simon13c40c52011-11-30 16:56:34 +0100159 /* add HT capability and information IEs */
160 if (channel_type && sband->ht_cap.ht_supported) {
161 pos = skb_put(skb, 4 +
162 sizeof(struct ieee80211_ht_cap) +
163 sizeof(struct ieee80211_ht_info));
164 pos = ieee80211_ie_build_ht_cap(pos, &sband->ht_cap,
165 sband->ht_cap.cap);
166 pos = ieee80211_ie_build_ht_info(pos,
167 &sband->ht_cap,
168 chan,
169 channel_type);
170 }
171
Bruno Randolf9eba6122010-10-04 11:17:30 +0900172 if (local->hw.queues >= 4) {
173 pos = skb_put(skb, 9);
174 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
175 *pos++ = 7; /* len */
176 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
177 *pos++ = 0x50;
178 *pos++ = 0xf2;
179 *pos++ = 2; /* WME */
180 *pos++ = 0; /* WME info */
181 *pos++ = 1; /* WME ver */
182 *pos++ = 0; /* U-APSD no in use */
183 }
184
Eric Dumazetcf778b02012-01-12 04:41:32 +0000185 rcu_assign_pointer(ifibss->presp, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100186
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200187 sdata->vif.bss_conf.beacon_int = beacon_int;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +0300188 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200189 bss_change = BSS_CHANGED_BEACON_INT;
190 bss_change |= ieee80211_reset_erp_info(sdata);
191 bss_change |= BSS_CHANGED_BSSID;
192 bss_change |= BSS_CHANGED_BEACON;
193 bss_change |= BSS_CHANGED_BEACON_ENABLED;
Teemu Paasikivi392cfdb2010-06-14 12:55:32 +0300194 bss_change |= BSS_CHANGED_BASIC_RATES;
Alexander Simon13c40c52011-11-30 16:56:34 +0100195 bss_change |= BSS_CHANGED_HT;
Johannes Berg8fc214b2010-04-28 17:40:43 +0200196 bss_change |= BSS_CHANGED_IBSS;
197 sdata->vif.bss_conf.ibss_joined = true;
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200198 ieee80211_bss_info_change_notify(sdata, bss_change);
Johannes Berg46900292009-02-15 12:44:28 +0100199
Johannes Bergb59066a2009-05-12 21:18:38 +0200200 ieee80211_sta_def_wmm_params(sdata, sband->n_bitrates, supp_rates);
Johannes Berg46900292009-02-15 12:44:28 +0100201
Johannes Berg46900292009-02-15 12:44:28 +0100202 ifibss->state = IEEE80211_IBSS_MLME_JOINED;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200203 mod_timer(&ifibss->timer,
204 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
Johannes Berg46900292009-02-15 12:44:28 +0100205
Johannes Bergf446d102009-10-28 15:12:32 +0100206 bss = cfg80211_inform_bss_frame(local->hw.wiphy, local->hw.conf.channel,
207 mgmt, skb->len, 0, GFP_KERNEL);
208 cfg80211_put_bss(bss);
Eliad Peller86a2ea42011-11-08 15:36:59 +0200209 netif_carrier_on(sdata->dev);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200210 cfg80211_ibss_joined(sdata->dev, ifibss->bssid, GFP_KERNEL);
Johannes Berg46900292009-02-15 12:44:28 +0100211}
212
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200213static void ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
214 struct ieee80211_bss *bss)
Johannes Berg46900292009-02-15 12:44:28 +0100215{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100216 struct cfg80211_bss *cbss =
217 container_of((void *)bss, struct cfg80211_bss, priv);
Johannes Bergb59066a2009-05-12 21:18:38 +0200218 struct ieee80211_supported_band *sband;
219 u32 basic_rates;
220 int i, j;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100221 u16 beacon_int = cbss->beacon_interval;
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200222
Johannes Berg7a17a332010-07-21 11:30:27 +0200223 lockdep_assert_held(&sdata->u.ibss.mtx);
224
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200225 if (beacon_int < 10)
226 beacon_int = 10;
227
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100228 sband = sdata->local->hw.wiphy->bands[cbss->channel->band];
Johannes Bergb59066a2009-05-12 21:18:38 +0200229
230 basic_rates = 0;
231
232 for (i = 0; i < bss->supp_rates_len; i++) {
233 int rate = (bss->supp_rates[i] & 0x7f) * 5;
234 bool is_basic = !!(bss->supp_rates[i] & 0x80);
235
236 for (j = 0; j < sband->n_bitrates; j++) {
237 if (sband->bitrates[j].bitrate == rate) {
238 if (is_basic)
239 basic_rates |= BIT(j);
240 break;
241 }
242 }
243 }
244
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100245 __ieee80211_sta_join_ibss(sdata, cbss->bssid,
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200246 beacon_int,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100247 cbss->channel,
Johannes Bergb59066a2009-05-12 21:18:38 +0200248 basic_rates,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100249 cbss->capability,
250 cbss->tsf);
Johannes Berg46900292009-02-15 12:44:28 +0100251}
252
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100253static struct sta_info *ieee80211_ibss_finish_sta(struct sta_info *sta,
254 bool auth)
Johannes Berg8bf11d82011-12-15 11:17:37 +0100255 __acquires(RCU)
256{
257 struct ieee80211_sub_if_data *sdata = sta->sdata;
258 u8 addr[ETH_ALEN];
259
260 memcpy(addr, sta->sta.addr, ETH_ALEN);
261
262#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
263 wiphy_debug(sdata->local->hw.wiphy,
264 "Adding new IBSS station %pM (dev=%s)\n",
265 addr, sdata->name);
266#endif
267
Johannes Berg83d5cc02012-01-12 09:31:10 +0100268 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
269 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
270 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100271
272 rate_control_rate_init(sta);
273
274 /* If it fails, maybe we raced another insertion? */
275 if (sta_info_insert_rcu(sta))
276 return sta_info_get(sdata, addr);
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100277 if (auth) {
Antonio Quartulli24dd0dd2012-01-18 00:10:43 +0100278#ifdef CONFIG_MAC80211_IBSS_DEBUG
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100279 printk(KERN_DEBUG "TX Auth SA=%pM DA=%pM BSSID=%pM"
280 "(auth_transaction=1)\n", sdata->vif.addr,
281 sdata->u.ibss.bssid, addr);
Antonio Quartulli24dd0dd2012-01-18 00:10:43 +0100282#endif
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100283 ieee80211_send_auth(sdata, 1, WLAN_AUTH_OPEN, NULL, 0,
284 addr, sdata->u.ibss.bssid, NULL, 0, 0);
285 }
Johannes Berg8bf11d82011-12-15 11:17:37 +0100286 return sta;
287}
288
289static struct sta_info *
290ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
291 const u8 *bssid, const u8 *addr,
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100292 u32 supp_rates, bool auth)
Johannes Berg8bf11d82011-12-15 11:17:37 +0100293 __acquires(RCU)
294{
295 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
296 struct ieee80211_local *local = sdata->local;
297 struct sta_info *sta;
298 int band = local->hw.conf.channel->band;
299
300 /*
301 * XXX: Consider removing the least recently used entry and
302 * allow new one to be added.
303 */
304 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
305 if (net_ratelimit())
306 printk(KERN_DEBUG "%s: No room for a new IBSS STA entry %pM\n",
307 sdata->name, addr);
308 rcu_read_lock();
309 return NULL;
310 }
311
312 if (ifibss->state == IEEE80211_IBSS_MLME_SEARCH) {
313 rcu_read_lock();
314 return NULL;
315 }
316
317 if (compare_ether_addr(bssid, sdata->u.ibss.bssid)) {
318 rcu_read_lock();
319 return NULL;
320 }
321
322 sta = sta_info_alloc(sdata, addr, GFP_KERNEL);
323 if (!sta) {
324 rcu_read_lock();
325 return NULL;
326 }
327
328 sta->last_rx = jiffies;
329
330 /* make sure mandatory rates are always added */
331 sta->sta.supp_rates[band] = supp_rates |
332 ieee80211_mandatory_rates(local, band);
333
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100334 return ieee80211_ibss_finish_sta(sta, auth);
335}
336
337static void ieee80211_rx_mgmt_auth_ibss(struct ieee80211_sub_if_data *sdata,
338 struct ieee80211_mgmt *mgmt,
339 size_t len)
340{
341 u16 auth_alg, auth_transaction;
342
343 lockdep_assert_held(&sdata->u.ibss.mtx);
344
345 if (len < 24 + 6)
346 return;
347
348 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
349 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
350
351 if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1)
352 return;
353#ifdef CONFIG_MAC80211_IBSS_DEBUG
354 printk(KERN_DEBUG "%s: RX Auth SA=%pM DA=%pM BSSID=%pM."
355 "(auth_transaction=%d)\n",
356 sdata->name, mgmt->sa, mgmt->da, mgmt->bssid, auth_transaction);
357#endif
358 sta_info_destroy_addr(sdata, mgmt->sa);
359 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, 0, false);
360 rcu_read_unlock();
361
362 /*
363 * IEEE 802.11 standard does not require authentication in IBSS
364 * networks and most implementations do not seem to use it.
365 * However, try to reply to authentication attempts if someone
366 * has actually implemented this.
367 */
368 ieee80211_send_auth(sdata, 2, WLAN_AUTH_OPEN, NULL, 0,
369 mgmt->sa, sdata->u.ibss.bssid, NULL, 0, 0);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100370}
371
Johannes Berg46900292009-02-15 12:44:28 +0100372static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
373 struct ieee80211_mgmt *mgmt,
374 size_t len,
375 struct ieee80211_rx_status *rx_status,
376 struct ieee802_11_elems *elems,
377 bool beacon)
378{
379 struct ieee80211_local *local = sdata->local;
380 int freq;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100381 struct cfg80211_bss *cbss;
Johannes Berg46900292009-02-15 12:44:28 +0100382 struct ieee80211_bss *bss;
383 struct sta_info *sta;
384 struct ieee80211_channel *channel;
385 u64 beacon_timestamp, rx_timestamp;
386 u32 supp_rates = 0;
387 enum ieee80211_band band = rx_status->band;
Alexander Simon13c40c52011-11-30 16:56:34 +0100388 struct ieee80211_supported_band *sband = local->hw.wiphy->bands[band];
389 bool rates_updated = false;
Johannes Berg46900292009-02-15 12:44:28 +0100390
391 if (elems->ds_params && elems->ds_params_len == 1)
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900392 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
393 band);
Johannes Berg46900292009-02-15 12:44:28 +0100394 else
395 freq = rx_status->freq;
396
397 channel = ieee80211_get_channel(local->hw.wiphy, freq);
398
399 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
400 return;
401
Bruno Randolf9eba6122010-10-04 11:17:30 +0900402 if (sdata->vif.type == NL80211_IFTYPE_ADHOC &&
Johannes Berg46900292009-02-15 12:44:28 +0100403 memcmp(mgmt->bssid, sdata->u.ibss.bssid, ETH_ALEN) == 0) {
Johannes Berg46900292009-02-15 12:44:28 +0100404
405 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100406 sta = sta_info_get(sdata, mgmt->sa);
Johannes Berg46900292009-02-15 12:44:28 +0100407
Bruno Randolf9eba6122010-10-04 11:17:30 +0900408 if (elems->supp_rates) {
409 supp_rates = ieee80211_sta_get_rates(local, elems,
410 band);
411 if (sta) {
412 u32 prev_rates;
Johannes Berg46900292009-02-15 12:44:28 +0100413
Bruno Randolf9eba6122010-10-04 11:17:30 +0900414 prev_rates = sta->sta.supp_rates[band];
415 /* make sure mandatory rates are always added */
416 sta->sta.supp_rates[band] = supp_rates |
417 ieee80211_mandatory_rates(local, band);
418
419 if (sta->sta.supp_rates[band] != prev_rates) {
Johannes Berg46900292009-02-15 12:44:28 +0100420#ifdef CONFIG_MAC80211_IBSS_DEBUG
Bruno Randolf9eba6122010-10-04 11:17:30 +0900421 printk(KERN_DEBUG
422 "%s: updated supp_rates set "
423 "for %pM based on beacon"
424 "/probe_resp (0x%x -> 0x%x)\n",
425 sdata->name, sta->sta.addr,
426 prev_rates,
427 sta->sta.supp_rates[band]);
Johannes Berg46900292009-02-15 12:44:28 +0100428#endif
Alexander Simon13c40c52011-11-30 16:56:34 +0100429 rates_updated = true;
Bruno Randolf9eba6122010-10-04 11:17:30 +0900430 }
Johannes Berg8bf11d82011-12-15 11:17:37 +0100431 } else {
432 rcu_read_unlock();
Bruno Randolf9eba6122010-10-04 11:17:30 +0900433 sta = ieee80211_ibss_add_sta(sdata, mgmt->bssid,
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100434 mgmt->sa, supp_rates, true);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100435 }
Johannes Berg34e89502010-02-03 13:59:58 +0100436 }
Bruno Randolf9eba6122010-10-04 11:17:30 +0900437
438 if (sta && elems->wmm_info)
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200439 set_sta_flag(sta, WLAN_STA_WME);
Bruno Randolf9eba6122010-10-04 11:17:30 +0900440
Alexander Simon13c40c52011-11-30 16:56:34 +0100441 if (sta && elems->ht_info_elem && elems->ht_cap_elem &&
442 sdata->u.ibss.channel_type != NL80211_CHAN_NO_HT) {
443 /* we both use HT */
444 struct ieee80211_sta_ht_cap sta_ht_cap_new;
445 enum nl80211_channel_type channel_type =
446 ieee80211_ht_info_to_channel_type(
447 elems->ht_info_elem);
448
449 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
450 elems->ht_cap_elem,
451 &sta_ht_cap_new);
452
453 /*
454 * fall back to HT20 if we don't use or use
455 * the other extension channel
456 */
457 if ((channel_type == NL80211_CHAN_HT40MINUS ||
458 channel_type == NL80211_CHAN_HT40PLUS) &&
459 channel_type != sdata->u.ibss.channel_type)
460 sta_ht_cap_new.cap &=
461 ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
462
463 if (memcmp(&sta->sta.ht_cap, &sta_ht_cap_new,
464 sizeof(sta_ht_cap_new))) {
465 memcpy(&sta->sta.ht_cap, &sta_ht_cap_new,
466 sizeof(sta_ht_cap_new));
467 rates_updated = true;
468 }
469 }
470
471 if (sta && rates_updated)
472 rate_control_rate_init(sta);
473
Bruno Randolf9eba6122010-10-04 11:17:30 +0900474 rcu_read_unlock();
Johannes Berg46900292009-02-15 12:44:28 +0100475 }
476
477 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
478 channel, beacon);
479 if (!bss)
480 return;
481
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100482 cbss = container_of((void *)bss, struct cfg80211_bss, priv);
483
Johannes Berg46900292009-02-15 12:44:28 +0100484 /* was just updated in ieee80211_bss_info_update */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100485 beacon_timestamp = cbss->tsf;
Johannes Berg46900292009-02-15 12:44:28 +0100486
487 /* check if we need to merge IBSS */
488
Johannes Berg46900292009-02-15 12:44:28 +0100489 /* we use a fixed BSSID */
Benoit Papillaulta98bfec2010-01-17 22:45:24 +0100490 if (sdata->u.ibss.fixed_bssid)
Johannes Berg46900292009-02-15 12:44:28 +0100491 goto put_bss;
492
493 /* not an IBSS */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100494 if (!(cbss->capability & WLAN_CAPABILITY_IBSS))
Johannes Berg46900292009-02-15 12:44:28 +0100495 goto put_bss;
496
497 /* different channel */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100498 if (cbss->channel != local->oper_channel)
Johannes Berg46900292009-02-15 12:44:28 +0100499 goto put_bss;
500
501 /* different SSID */
502 if (elems->ssid_len != sdata->u.ibss.ssid_len ||
503 memcmp(elems->ssid, sdata->u.ibss.ssid,
504 sdata->u.ibss.ssid_len))
505 goto put_bss;
506
Alina Friedrichsen34e8f082009-02-22 00:07:28 +0100507 /* same BSSID */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100508 if (memcmp(cbss->bssid, sdata->u.ibss.bssid, ETH_ALEN) == 0)
Alina Friedrichsen34e8f082009-02-22 00:07:28 +0100509 goto put_bss;
510
Johannes Berg6ebacbb2011-02-23 15:06:08 +0100511 if (rx_status->flag & RX_FLAG_MACTIME_MPDU) {
Johannes Berg46900292009-02-15 12:44:28 +0100512 /*
513 * For correct IBSS merging we need mactime; since mactime is
514 * defined as the time the first data symbol of the frame hits
515 * the PHY, and the timestamp of the beacon is defined as "the
516 * time that the data symbol containing the first bit of the
517 * timestamp is transmitted to the PHY plus the transmitting
518 * STA's delays through its local PHY from the MAC-PHY
519 * interface to its interface with the WM" (802.11 11.1.2)
520 * - equals the time this bit arrives at the receiver - we have
521 * to take into account the offset between the two.
522 *
523 * E.g. at 1 MBit that means mactime is 192 usec earlier
524 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
525 */
526 int rate;
527
528 if (rx_status->flag & RX_FLAG_HT)
529 rate = 65; /* TODO: HT rates */
530 else
531 rate = local->hw.wiphy->bands[band]->
532 bitrates[rx_status->rate_idx].bitrate;
533
534 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
Johannes Berg24487982009-04-23 18:52:52 +0200535 } else {
536 /*
537 * second best option: get current TSF
538 * (will return -1 if not supported)
539 */
Eliad Peller37a41b42011-09-21 14:06:11 +0300540 rx_timestamp = drv_get_tsf(local, sdata);
Johannes Berg24487982009-04-23 18:52:52 +0200541 }
Johannes Berg46900292009-02-15 12:44:28 +0100542
543#ifdef CONFIG_MAC80211_IBSS_DEBUG
544 printk(KERN_DEBUG "RX beacon SA=%pM BSSID="
545 "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
546 mgmt->sa, mgmt->bssid,
547 (unsigned long long)rx_timestamp,
548 (unsigned long long)beacon_timestamp,
549 (unsigned long long)(rx_timestamp - beacon_timestamp),
550 jiffies);
551#endif
552
553 if (beacon_timestamp > rx_timestamp) {
554#ifdef CONFIG_MAC80211_IBSS_DEBUG
555 printk(KERN_DEBUG "%s: beacon TSF higher than "
556 "local TSF - IBSS merge with BSSID %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100557 sdata->name, mgmt->bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100558#endif
559 ieee80211_sta_join_ibss(sdata, bss);
Bruno Randolf09a08cf2010-03-03 18:45:42 +0900560 supp_rates = ieee80211_sta_get_rates(local, elems, band);
Johannes Berg34e89502010-02-03 13:59:58 +0100561 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa,
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100562 supp_rates, true);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100563 rcu_read_unlock();
Johannes Berg46900292009-02-15 12:44:28 +0100564 }
565
566 put_bss:
567 ieee80211_rx_bss_put(local, bss);
568}
569
Johannes Berg8bf11d82011-12-15 11:17:37 +0100570void ieee80211_ibss_rx_no_sta(struct ieee80211_sub_if_data *sdata,
571 const u8 *bssid, const u8 *addr,
572 u32 supp_rates)
Johannes Berg46900292009-02-15 12:44:28 +0100573{
Felix Fietkau2e10d332009-12-20 19:07:09 +0100574 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg46900292009-02-15 12:44:28 +0100575 struct ieee80211_local *local = sdata->local;
576 struct sta_info *sta;
577 int band = local->hw.conf.channel->band;
578
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200579 /*
580 * XXX: Consider removing the least recently used entry and
581 * allow new one to be added.
582 */
Johannes Berg46900292009-02-15 12:44:28 +0100583 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200584 if (net_ratelimit())
585 printk(KERN_DEBUG "%s: No room for a new IBSS STA entry %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100586 sdata->name, addr);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100587 return;
Johannes Berg46900292009-02-15 12:44:28 +0100588 }
589
Felix Fietkau2e10d332009-12-20 19:07:09 +0100590 if (ifibss->state == IEEE80211_IBSS_MLME_SEARCH)
Johannes Berg8bf11d82011-12-15 11:17:37 +0100591 return;
Felix Fietkau2e10d332009-12-20 19:07:09 +0100592
Johannes Berg46900292009-02-15 12:44:28 +0100593 if (compare_ether_addr(bssid, sdata->u.ibss.bssid))
Johannes Berg8bf11d82011-12-15 11:17:37 +0100594 return;
Johannes Berg46900292009-02-15 12:44:28 +0100595
Johannes Berg8bf11d82011-12-15 11:17:37 +0100596 sta = sta_info_alloc(sdata, addr, GFP_ATOMIC);
Johannes Berg46900292009-02-15 12:44:28 +0100597 if (!sta)
Johannes Berg8bf11d82011-12-15 11:17:37 +0100598 return;
Johannes Berg46900292009-02-15 12:44:28 +0100599
Rajkumar Manoharanc8716d92010-10-23 10:59:57 +0530600 sta->last_rx = jiffies;
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100601
Johannes Berg46900292009-02-15 12:44:28 +0100602 /* make sure mandatory rates are always added */
603 sta->sta.supp_rates[band] = supp_rates |
604 ieee80211_mandatory_rates(local, band);
605
Johannes Berg8bf11d82011-12-15 11:17:37 +0100606 spin_lock(&ifibss->incomplete_lock);
607 list_add(&sta->list, &ifibss->incomplete_stations);
608 spin_unlock(&ifibss->incomplete_lock);
609 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg46900292009-02-15 12:44:28 +0100610}
611
612static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
613{
614 struct ieee80211_local *local = sdata->local;
615 int active = 0;
616 struct sta_info *sta;
617
Johannes Berg7a17a332010-07-21 11:30:27 +0200618 lockdep_assert_held(&sdata->u.ibss.mtx);
619
Johannes Berg46900292009-02-15 12:44:28 +0100620 rcu_read_lock();
621
622 list_for_each_entry_rcu(sta, &local->sta_list, list) {
623 if (sta->sdata == sdata &&
624 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
625 jiffies)) {
626 active++;
627 break;
628 }
629 }
630
631 rcu_read_unlock();
632
633 return active;
634}
635
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100636/*
637 * This function is called with state == IEEE80211_IBSS_MLME_JOINED
638 */
Johannes Berg46900292009-02-15 12:44:28 +0100639
640static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata)
641{
642 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
643
Johannes Berg7a17a332010-07-21 11:30:27 +0200644 lockdep_assert_held(&ifibss->mtx);
645
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200646 mod_timer(&ifibss->timer,
647 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
Johannes Berg46900292009-02-15 12:44:28 +0100648
649 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200650
Sujith450aae32009-11-02 12:33:23 +0530651 if (time_before(jiffies, ifibss->last_scan_completed +
652 IEEE80211_IBSS_MERGE_INTERVAL))
653 return;
654
Johannes Berg46900292009-02-15 12:44:28 +0100655 if (ieee80211_sta_active_ibss(sdata))
656 return;
657
John W. Linvillec037b832012-01-30 15:28:11 -0500658 if (ifibss->fixed_channel)
Johannes Berg46900292009-02-15 12:44:28 +0100659 return;
660
661 printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other "
Johannes Berg47846c92009-11-25 17:46:19 +0100662 "IBSS networks with same SSID (merge)\n", sdata->name);
Johannes Berg46900292009-02-15 12:44:28 +0100663
Johannes Bergbe4a4b62010-05-03 08:49:48 +0200664 ieee80211_request_internal_scan(sdata,
John W. Linvillec037b832012-01-30 15:28:11 -0500665 ifibss->ssid, ifibss->ssid_len, NULL);
Johannes Berg46900292009-02-15 12:44:28 +0100666}
667
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200668static void ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100669{
670 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg46900292009-02-15 12:44:28 +0100671 u8 bssid[ETH_ALEN];
Johannes Berg46900292009-02-15 12:44:28 +0100672 u16 capability;
673 int i;
674
Johannes Berg7a17a332010-07-21 11:30:27 +0200675 lockdep_assert_held(&ifibss->mtx);
676
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200677 if (ifibss->fixed_bssid) {
Johannes Berg46900292009-02-15 12:44:28 +0100678 memcpy(bssid, ifibss->bssid, ETH_ALEN);
679 } else {
680 /* Generate random, not broadcast, locally administered BSSID. Mix in
681 * own MAC address to make sure that devices that do not have proper
682 * random number generator get different BSSID. */
683 get_random_bytes(bssid, ETH_ALEN);
684 for (i = 0; i < ETH_ALEN; i++)
Johannes Berg47846c92009-11-25 17:46:19 +0100685 bssid[i] ^= sdata->vif.addr[i];
Johannes Berg46900292009-02-15 12:44:28 +0100686 bssid[0] &= ~0x01;
687 bssid[0] |= 0x02;
688 }
689
690 printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100691 sdata->name, bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100692
Johannes Berg46900292009-02-15 12:44:28 +0100693 capability = WLAN_CAPABILITY_IBSS;
694
Johannes Bergfffd0932009-07-08 14:22:54 +0200695 if (ifibss->privacy)
Johannes Berg46900292009-02-15 12:44:28 +0100696 capability |= WLAN_CAPABILITY_PRIVACY;
697 else
698 sdata->drop_unencrypted = 0;
699
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200700 __ieee80211_sta_join_ibss(sdata, bssid, sdata->vif.bss_conf.beacon_int,
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +0300701 ifibss->channel, ifibss->basic_rates,
Johannes Bergb59066a2009-05-12 21:18:38 +0200702 capability, 0);
Johannes Berg46900292009-02-15 12:44:28 +0100703}
704
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100705/*
706 * This function is called with state == IEEE80211_IBSS_MLME_SEARCH
707 */
708
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200709static void ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100710{
711 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
712 struct ieee80211_local *local = sdata->local;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100713 struct cfg80211_bss *cbss;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200714 struct ieee80211_channel *chan = NULL;
Johannes Berg46900292009-02-15 12:44:28 +0100715 const u8 *bssid = NULL;
716 int active_ibss;
Johannes Berge0d61882009-05-12 20:47:32 +0200717 u16 capability;
Johannes Berg46900292009-02-15 12:44:28 +0100718
Johannes Berg7a17a332010-07-21 11:30:27 +0200719 lockdep_assert_held(&ifibss->mtx);
720
Johannes Berg46900292009-02-15 12:44:28 +0100721 active_ibss = ieee80211_sta_active_ibss(sdata);
722#ifdef CONFIG_MAC80211_IBSS_DEBUG
723 printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100724 sdata->name, active_ibss);
Johannes Berg46900292009-02-15 12:44:28 +0100725#endif /* CONFIG_MAC80211_IBSS_DEBUG */
726
727 if (active_ibss)
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200728 return;
Johannes Berg46900292009-02-15 12:44:28 +0100729
Johannes Berge0d61882009-05-12 20:47:32 +0200730 capability = WLAN_CAPABILITY_IBSS;
Johannes Bergfffd0932009-07-08 14:22:54 +0200731 if (ifibss->privacy)
Johannes Berge0d61882009-05-12 20:47:32 +0200732 capability |= WLAN_CAPABILITY_PRIVACY;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200733 if (ifibss->fixed_bssid)
Johannes Berg46900292009-02-15 12:44:28 +0100734 bssid = ifibss->bssid;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200735 if (ifibss->fixed_channel)
736 chan = ifibss->channel;
737 if (!is_zero_ether_addr(ifibss->bssid))
738 bssid = ifibss->bssid;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100739 cbss = cfg80211_get_bss(local->hw.wiphy, chan, bssid,
740 ifibss->ssid, ifibss->ssid_len,
741 WLAN_CAPABILITY_IBSS | WLAN_CAPABILITY_PRIVACY,
742 capability);
Johannes Berg46900292009-02-15 12:44:28 +0100743
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100744 if (cbss) {
745 struct ieee80211_bss *bss;
746
747 bss = (void *)cbss->priv;
Johannes Berg46900292009-02-15 12:44:28 +0100748#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg46900292009-02-15 12:44:28 +0100749 printk(KERN_DEBUG " sta_find_ibss: selected %pM current "
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100750 "%pM\n", cbss->bssid, ifibss->bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100751#endif /* CONFIG_MAC80211_IBSS_DEBUG */
752
Johannes Berg46900292009-02-15 12:44:28 +0100753 printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
754 " based on configured SSID\n",
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100755 sdata->name, cbss->bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100756
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200757 ieee80211_sta_join_ibss(sdata, bss);
Johannes Berg46900292009-02-15 12:44:28 +0100758 ieee80211_rx_bss_put(local, bss);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200759 return;
Reinette Chatred419b9f2009-10-19 14:55:37 -0700760 }
Johannes Berg46900292009-02-15 12:44:28 +0100761
762#ifdef CONFIG_MAC80211_IBSS_DEBUG
763 printk(KERN_DEBUG " did not try to join ibss\n");
764#endif /* CONFIG_MAC80211_IBSS_DEBUG */
765
766 /* Selected IBSS not found in current scan results - try to scan */
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100767 if (time_after(jiffies, ifibss->last_scan_completed +
Johannes Berg46900292009-02-15 12:44:28 +0100768 IEEE80211_SCAN_INTERVAL)) {
769 printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to "
Johannes Berg47846c92009-11-25 17:46:19 +0100770 "join\n", sdata->name);
Johannes Berg46900292009-02-15 12:44:28 +0100771
Johannes Bergbe4a4b62010-05-03 08:49:48 +0200772 ieee80211_request_internal_scan(sdata,
773 ifibss->ssid, ifibss->ssid_len,
774 ifibss->fixed_channel ? ifibss->channel : NULL);
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100775 } else {
Johannes Berg46900292009-02-15 12:44:28 +0100776 int interval = IEEE80211_SCAN_INTERVAL;
777
778 if (time_after(jiffies, ifibss->ibss_join_req +
779 IEEE80211_IBSS_JOIN_TIMEOUT)) {
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200780 if (!(local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS)) {
781 ieee80211_sta_create_ibss(sdata);
782 return;
783 }
Johannes Berg46900292009-02-15 12:44:28 +0100784 printk(KERN_DEBUG "%s: IBSS not allowed on"
Johannes Berg47846c92009-11-25 17:46:19 +0100785 " %d MHz\n", sdata->name,
Johannes Berg46900292009-02-15 12:44:28 +0100786 local->hw.conf.channel->center_freq);
787
788 /* No IBSS found - decrease scan interval and continue
789 * scanning. */
790 interval = IEEE80211_SCAN_INTERVAL_SLOW;
791 }
792
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200793 mod_timer(&ifibss->timer,
794 round_jiffies(jiffies + interval));
Johannes Berg46900292009-02-15 12:44:28 +0100795 }
Johannes Berg46900292009-02-15 12:44:28 +0100796}
797
798static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
Johannes Bergc269a202011-02-14 12:20:22 +0100799 struct sk_buff *req)
Johannes Berg46900292009-02-15 12:44:28 +0100800{
Johannes Bergc269a202011-02-14 12:20:22 +0100801 struct ieee80211_mgmt *mgmt = (void *)req->data;
Johannes Berg46900292009-02-15 12:44:28 +0100802 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
803 struct ieee80211_local *local = sdata->local;
Johannes Bergc269a202011-02-14 12:20:22 +0100804 int tx_last_beacon, len = req->len;
Johannes Berg46900292009-02-15 12:44:28 +0100805 struct sk_buff *skb;
806 struct ieee80211_mgmt *resp;
Johannes Berg40b275b2011-05-13 14:15:49 +0200807 struct sk_buff *presp;
Johannes Berg46900292009-02-15 12:44:28 +0100808 u8 *pos, *end;
809
Johannes Berg7a17a332010-07-21 11:30:27 +0200810 lockdep_assert_held(&ifibss->mtx);
811
Johannes Berg40b275b2011-05-13 14:15:49 +0200812 presp = rcu_dereference_protected(ifibss->presp,
813 lockdep_is_held(&ifibss->mtx));
814
Johannes Berg46900292009-02-15 12:44:28 +0100815 if (ifibss->state != IEEE80211_IBSS_MLME_JOINED ||
Johannes Berg40b275b2011-05-13 14:15:49 +0200816 len < 24 + 2 || !presp)
Johannes Berg46900292009-02-15 12:44:28 +0100817 return;
818
Johannes Berg24487982009-04-23 18:52:52 +0200819 tx_last_beacon = drv_tx_last_beacon(local);
Johannes Berg46900292009-02-15 12:44:28 +0100820
821#ifdef CONFIG_MAC80211_IBSS_DEBUG
822 printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
823 " (tx_last_beacon=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100824 sdata->name, mgmt->sa, mgmt->da,
Johannes Berg46900292009-02-15 12:44:28 +0100825 mgmt->bssid, tx_last_beacon);
826#endif /* CONFIG_MAC80211_IBSS_DEBUG */
827
Felix Fietkau1ed76482011-03-24 19:46:18 +0100828 if (!tx_last_beacon && is_multicast_ether_addr(mgmt->da))
Johannes Berg46900292009-02-15 12:44:28 +0100829 return;
830
831 if (memcmp(mgmt->bssid, ifibss->bssid, ETH_ALEN) != 0 &&
832 memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
833 return;
834
835 end = ((u8 *) mgmt) + len;
836 pos = mgmt->u.probe_req.variable;
837 if (pos[0] != WLAN_EID_SSID ||
838 pos + 2 + pos[1] > end) {
839#ifdef CONFIG_MAC80211_IBSS_DEBUG
840 printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq "
841 "from %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100842 sdata->name, mgmt->sa);
Johannes Berg46900292009-02-15 12:44:28 +0100843#endif
844 return;
845 }
846 if (pos[1] != 0 &&
847 (pos[1] != ifibss->ssid_len ||
Benoit Papillault0da780c2010-02-05 01:21:03 +0100848 memcmp(pos + 2, ifibss->ssid, ifibss->ssid_len))) {
Johannes Berg46900292009-02-15 12:44:28 +0100849 /* Ignore ProbeReq for foreign SSID */
850 return;
851 }
852
853 /* Reply with ProbeResp */
Johannes Berg40b275b2011-05-13 14:15:49 +0200854 skb = skb_copy(presp, GFP_KERNEL);
Johannes Berg46900292009-02-15 12:44:28 +0100855 if (!skb)
856 return;
857
858 resp = (struct ieee80211_mgmt *) skb->data;
859 memcpy(resp->da, mgmt->sa, ETH_ALEN);
860#ifdef CONFIG_MAC80211_IBSS_DEBUG
861 printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100862 sdata->name, resp->da);
Johannes Berg46900292009-02-15 12:44:28 +0100863#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Berg62ae67b2009-11-18 18:42:05 +0100864 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
865 ieee80211_tx_skb(sdata, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100866}
867
868static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
869 struct ieee80211_mgmt *mgmt,
870 size_t len,
871 struct ieee80211_rx_status *rx_status)
872{
873 size_t baselen;
874 struct ieee802_11_elems elems;
875
Johannes Berg46900292009-02-15 12:44:28 +0100876 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
877 if (baselen > len)
878 return;
879
880 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
881 &elems);
882
883 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
884}
885
886static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
887 struct ieee80211_mgmt *mgmt,
888 size_t len,
889 struct ieee80211_rx_status *rx_status)
890{
891 size_t baselen;
892 struct ieee802_11_elems elems;
893
894 /* Process beacon from the current BSS */
895 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
896 if (baselen > len)
897 return;
898
899 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
900
901 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
902}
903
Johannes Berg1fa57d02010-06-10 10:21:32 +0200904void ieee80211_ibss_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
905 struct sk_buff *skb)
Johannes Berg46900292009-02-15 12:44:28 +0100906{
907 struct ieee80211_rx_status *rx_status;
908 struct ieee80211_mgmt *mgmt;
909 u16 fc;
910
Johannes Bergf1d58c22009-06-17 13:13:00 +0200911 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg46900292009-02-15 12:44:28 +0100912 mgmt = (struct ieee80211_mgmt *) skb->data;
913 fc = le16_to_cpu(mgmt->frame_control);
914
Johannes Berg7a17a332010-07-21 11:30:27 +0200915 mutex_lock(&sdata->u.ibss.mtx);
916
Tim Harveyc926d002010-12-09 10:43:13 -0800917 if (!sdata->u.ibss.ssid_len)
918 goto mgmt_out; /* not ready to merge yet */
919
Johannes Berg46900292009-02-15 12:44:28 +0100920 switch (fc & IEEE80211_FCTL_STYPE) {
921 case IEEE80211_STYPE_PROBE_REQ:
Johannes Bergc269a202011-02-14 12:20:22 +0100922 ieee80211_rx_mgmt_probe_req(sdata, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100923 break;
924 case IEEE80211_STYPE_PROBE_RESP:
925 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
926 rx_status);
927 break;
928 case IEEE80211_STYPE_BEACON:
929 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
930 rx_status);
931 break;
932 case IEEE80211_STYPE_AUTH:
933 ieee80211_rx_mgmt_auth_ibss(sdata, mgmt, skb->len);
934 break;
935 }
Johannes Berg7a17a332010-07-21 11:30:27 +0200936
Tim Harveyc926d002010-12-09 10:43:13 -0800937 mgmt_out:
Johannes Berg7a17a332010-07-21 11:30:27 +0200938 mutex_unlock(&sdata->u.ibss.mtx);
Johannes Berg46900292009-02-15 12:44:28 +0100939}
940
Johannes Berg1fa57d02010-06-10 10:21:32 +0200941void ieee80211_ibss_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100942{
Johannes Berg1fa57d02010-06-10 10:21:32 +0200943 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg8bf11d82011-12-15 11:17:37 +0100944 struct sta_info *sta;
Johannes Berg46900292009-02-15 12:44:28 +0100945
Johannes Berg7a17a332010-07-21 11:30:27 +0200946 mutex_lock(&ifibss->mtx);
947
948 /*
949 * Work could be scheduled after scan or similar
950 * when we aren't even joined (or trying) with a
951 * network.
952 */
953 if (!ifibss->ssid_len)
954 goto out;
Johannes Berg46900292009-02-15 12:44:28 +0100955
Johannes Berg8bf11d82011-12-15 11:17:37 +0100956 spin_lock_bh(&ifibss->incomplete_lock);
957 while (!list_empty(&ifibss->incomplete_stations)) {
958 sta = list_first_entry(&ifibss->incomplete_stations,
959 struct sta_info, list);
960 list_del(&sta->list);
961 spin_unlock_bh(&ifibss->incomplete_lock);
962
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100963 ieee80211_ibss_finish_sta(sta, true);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100964 rcu_read_unlock();
965 spin_lock_bh(&ifibss->incomplete_lock);
966 }
967 spin_unlock_bh(&ifibss->incomplete_lock);
968
Johannes Berg46900292009-02-15 12:44:28 +0100969 switch (ifibss->state) {
970 case IEEE80211_IBSS_MLME_SEARCH:
971 ieee80211_sta_find_ibss(sdata);
972 break;
973 case IEEE80211_IBSS_MLME_JOINED:
974 ieee80211_sta_merge_ibss(sdata);
975 break;
976 default:
977 WARN_ON(1);
978 break;
979 }
Johannes Berg46900292009-02-15 12:44:28 +0100980
Johannes Berg7a17a332010-07-21 11:30:27 +0200981 out:
982 mutex_unlock(&ifibss->mtx);
Johannes Berg3a4d4aa2010-05-26 16:41:40 +0200983}
984
Johannes Berg46900292009-02-15 12:44:28 +0100985static void ieee80211_ibss_timer(unsigned long data)
986{
987 struct ieee80211_sub_if_data *sdata =
988 (struct ieee80211_sub_if_data *) data;
989 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
990 struct ieee80211_local *local = sdata->local;
991
Johannes Berg5bb644a2009-05-17 11:40:42 +0200992 if (local->quiescing) {
993 ifibss->timer_running = true;
994 return;
995 }
996
Johannes Berg7a17a332010-07-21 11:30:27 +0200997 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg46900292009-02-15 12:44:28 +0100998}
999
Johannes Berg5bb644a2009-05-17 11:40:42 +02001000#ifdef CONFIG_PM
1001void ieee80211_ibss_quiesce(struct ieee80211_sub_if_data *sdata)
1002{
1003 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
1004
Johannes Berg5bb644a2009-05-17 11:40:42 +02001005 if (del_timer_sync(&ifibss->timer))
1006 ifibss->timer_running = true;
1007}
1008
1009void ieee80211_ibss_restart(struct ieee80211_sub_if_data *sdata)
1010{
1011 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
1012
1013 if (ifibss->timer_running) {
1014 add_timer(&ifibss->timer);
1015 ifibss->timer_running = false;
1016 }
1017}
1018#endif
1019
Johannes Berg46900292009-02-15 12:44:28 +01001020void ieee80211_ibss_setup_sdata(struct ieee80211_sub_if_data *sdata)
1021{
1022 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
1023
Johannes Berg46900292009-02-15 12:44:28 +01001024 setup_timer(&ifibss->timer, ieee80211_ibss_timer,
1025 (unsigned long) sdata);
Johannes Berg7a17a332010-07-21 11:30:27 +02001026 mutex_init(&ifibss->mtx);
Johannes Berg8bf11d82011-12-15 11:17:37 +01001027 INIT_LIST_HEAD(&ifibss->incomplete_stations);
1028 spin_lock_init(&ifibss->incomplete_lock);
Johannes Berg46900292009-02-15 12:44:28 +01001029}
1030
1031/* scan finished notification */
1032void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local)
1033{
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001034 struct ieee80211_sub_if_data *sdata;
Johannes Berg46900292009-02-15 12:44:28 +01001035
Johannes Berg29b4a4f2009-04-21 00:30:49 +02001036 mutex_lock(&local->iflist_mtx);
1037 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01001038 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e41f712009-04-23 11:48:56 +02001039 continue;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001040 if (sdata->vif.type != NL80211_IFTYPE_ADHOC)
1041 continue;
1042 sdata->u.ibss.last_scan_completed = jiffies;
Johannes Berg7a17a332010-07-21 11:30:27 +02001043 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg46900292009-02-15 12:44:28 +01001044 }
Johannes Berg29b4a4f2009-04-21 00:30:49 +02001045 mutex_unlock(&local->iflist_mtx);
Johannes Berg46900292009-02-15 12:44:28 +01001046}
1047
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001048int ieee80211_ibss_join(struct ieee80211_sub_if_data *sdata,
1049 struct cfg80211_ibss_params *params)
1050{
1051 struct sk_buff *skb;
Simon Wunderlichff3cc5f2011-11-30 16:56:33 +01001052 u32 changed = 0;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001053
Johannes Berg7a17a332010-07-21 11:30:27 +02001054 skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom +
Alexander Simon13c40c52011-11-30 16:56:34 +01001055 sizeof(struct ieee80211_hdr_3addr) +
1056 12 /* struct ieee80211_mgmt.u.beacon */ +
1057 2 + IEEE80211_MAX_SSID_LEN /* max SSID */ +
1058 2 + 8 /* max Supported Rates */ +
1059 3 /* max DS params */ +
1060 4 /* IBSS params */ +
1061 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
1062 2 + sizeof(struct ieee80211_ht_cap) +
1063 2 + sizeof(struct ieee80211_ht_info) +
Johannes Berg7a17a332010-07-21 11:30:27 +02001064 params->ie_len);
1065 if (!skb)
1066 return -ENOMEM;
1067
1068 mutex_lock(&sdata->u.ibss.mtx);
1069
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001070 if (params->bssid) {
1071 memcpy(sdata->u.ibss.bssid, params->bssid, ETH_ALEN);
1072 sdata->u.ibss.fixed_bssid = true;
1073 } else
1074 sdata->u.ibss.fixed_bssid = false;
1075
Johannes Bergfffd0932009-07-08 14:22:54 +02001076 sdata->u.ibss.privacy = params->privacy;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03001077 sdata->u.ibss.basic_rates = params->basic_rates;
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01001078 memcpy(sdata->vif.bss_conf.mcast_rate, params->mcast_rate,
1079 sizeof(params->mcast_rate));
Johannes Bergfffd0932009-07-08 14:22:54 +02001080
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001081 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
1082
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001083 sdata->u.ibss.channel = params->channel;
Alexander Simon13c40c52011-11-30 16:56:34 +01001084 sdata->u.ibss.channel_type = params->channel_type;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001085 sdata->u.ibss.fixed_channel = params->channel_fixed;
1086
Johannes Bergadfba3c2010-05-05 15:33:55 +02001087 /* fix ourselves to that channel now already */
1088 if (params->channel_fixed) {
1089 sdata->local->oper_channel = params->channel;
Alexander Simon13c40c52011-11-30 16:56:34 +01001090 if (!ieee80211_set_channel_type(sdata->local, sdata,
Dan Carpenterfb03c5e2011-12-08 09:49:03 +03001091 params->channel_type)) {
1092 mutex_unlock(&sdata->u.ibss.mtx);
Simon Wunderlichcb71b8d2011-12-14 13:33:30 +01001093 kfree_skb(skb);
Alexander Simon13c40c52011-11-30 16:56:34 +01001094 return -EINVAL;
Dan Carpenterfb03c5e2011-12-08 09:49:03 +03001095 }
Johannes Bergadfba3c2010-05-05 15:33:55 +02001096 }
1097
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001098 if (params->ie) {
1099 sdata->u.ibss.ie = kmemdup(params->ie, params->ie_len,
1100 GFP_KERNEL);
1101 if (sdata->u.ibss.ie)
1102 sdata->u.ibss.ie_len = params->ie_len;
1103 }
1104
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001105 sdata->u.ibss.skb = skb;
1106 sdata->u.ibss.state = IEEE80211_IBSS_MLME_SEARCH;
1107 sdata->u.ibss.ibss_join_req = jiffies;
1108
Johannes Berg0e41f712009-04-23 11:48:56 +02001109 memcpy(sdata->u.ibss.ssid, params->ssid, IEEE80211_MAX_SSID_LEN);
Johannes Berg0e41f712009-04-23 11:48:56 +02001110 sdata->u.ibss.ssid_len = params->ssid_len;
1111
Johannes Berg7da7cc12010-08-05 17:02:38 +02001112 mutex_unlock(&sdata->u.ibss.mtx);
1113
1114 mutex_lock(&sdata->local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +02001115 ieee80211_recalc_idle(sdata->local);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001116 mutex_unlock(&sdata->local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +02001117
Simon Wunderlichff3cc5f2011-11-30 16:56:33 +01001118 /*
1119 * 802.11n-2009 9.13.3.1: In an IBSS, the HT Protection field is
1120 * reserved, but an HT STA shall protect HT transmissions as though
1121 * the HT Protection field were set to non-HT mixed mode.
1122 *
1123 * In an IBSS, the RIFS Mode field of the HT Operation element is
1124 * also reserved, but an HT STA shall operate as though this field
1125 * were set to 1.
1126 */
1127
1128 sdata->vif.bss_conf.ht_operation_mode |=
1129 IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED
1130 | IEEE80211_HT_PARAM_RIFS_MODE;
1131
1132 changed |= BSS_CHANGED_HT;
1133 ieee80211_bss_info_change_notify(sdata, changed);
1134
Johannes Berg64592c82010-06-10 10:21:31 +02001135 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001136
1137 return 0;
1138}
1139
1140int ieee80211_ibss_leave(struct ieee80211_sub_if_data *sdata)
1141{
1142 struct sk_buff *skb;
Teemu Paasikivi5ea096c2010-06-14 12:55:33 +03001143 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
1144 struct ieee80211_local *local = sdata->local;
1145 struct cfg80211_bss *cbss;
1146 u16 capability;
Johannes Berg7a17a332010-07-21 11:30:27 +02001147 int active_ibss;
Johannes Berg8bf11d82011-12-15 11:17:37 +01001148 struct sta_info *sta;
Johannes Berg7a17a332010-07-21 11:30:27 +02001149
1150 mutex_lock(&sdata->u.ibss.mtx);
Teemu Paasikivi5ea096c2010-06-14 12:55:33 +03001151
Johannes Bergf3209be2011-06-08 13:27:29 +02001152 sdata->u.ibss.state = IEEE80211_IBSS_MLME_SEARCH;
1153 memset(sdata->u.ibss.bssid, 0, ETH_ALEN);
1154 sdata->u.ibss.ssid_len = 0;
1155
Teemu Paasikivi5ea096c2010-06-14 12:55:33 +03001156 active_ibss = ieee80211_sta_active_ibss(sdata);
1157
1158 if (!active_ibss && !is_zero_ether_addr(ifibss->bssid)) {
1159 capability = WLAN_CAPABILITY_IBSS;
1160
1161 if (ifibss->privacy)
1162 capability |= WLAN_CAPABILITY_PRIVACY;
1163
1164 cbss = cfg80211_get_bss(local->hw.wiphy, ifibss->channel,
1165 ifibss->bssid, ifibss->ssid,
1166 ifibss->ssid_len, WLAN_CAPABILITY_IBSS |
1167 WLAN_CAPABILITY_PRIVACY,
1168 capability);
1169
1170 if (cbss) {
1171 cfg80211_unlink_bss(local->hw.wiphy, cbss);
1172 cfg80211_put_bss(cbss);
1173 }
1174 }
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001175
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001176 sta_info_flush(sdata->local, sdata);
Johannes Berg8bf11d82011-12-15 11:17:37 +01001177
1178 spin_lock_bh(&ifibss->incomplete_lock);
1179 while (!list_empty(&ifibss->incomplete_stations)) {
1180 sta = list_first_entry(&ifibss->incomplete_stations,
1181 struct sta_info, list);
1182 list_del(&sta->list);
1183 spin_unlock_bh(&ifibss->incomplete_lock);
1184
1185 sta_info_free(local, sta);
1186 spin_lock_bh(&ifibss->incomplete_lock);
1187 }
1188 spin_unlock_bh(&ifibss->incomplete_lock);
1189
Eliad Peller86a2ea42011-11-08 15:36:59 +02001190 netif_carrier_off(sdata->dev);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001191
1192 /* remove beacon */
1193 kfree(sdata->u.ibss.ie);
Johannes Berg40b275b2011-05-13 14:15:49 +02001194 skb = rcu_dereference_protected(sdata->u.ibss.presp,
1195 lockdep_is_held(&sdata->u.ibss.mtx));
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001196 RCU_INIT_POINTER(sdata->u.ibss.presp, NULL);
Johannes Berg8fc214b2010-04-28 17:40:43 +02001197 sdata->vif.bss_conf.ibss_joined = false;
1198 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
1199 BSS_CHANGED_IBSS);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001200 synchronize_rcu();
1201 kfree_skb(skb);
1202
Johannes Berg35f20c12010-06-10 10:21:30 +02001203 skb_queue_purge(&sdata->skb_queue);
Johannes Berg5cff20e2009-04-29 12:26:17 +02001204
Johannes Bergbc05d192010-07-21 10:52:40 +02001205 del_timer_sync(&sdata->u.ibss.timer);
Johannes Berg7a17a332010-07-21 11:30:27 +02001206
1207 mutex_unlock(&sdata->u.ibss.mtx);
Johannes Bergbc05d192010-07-21 10:52:40 +02001208
Johannes Berg7da7cc12010-08-05 17:02:38 +02001209 mutex_lock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +02001210 ieee80211_recalc_idle(sdata->local);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001211 mutex_unlock(&local->mtx);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001212
1213 return 0;
1214}