blob: 0bc47a8256925ce2876eb98b617e5c26863a1837 [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>
Johannes Berg46900292009-02-15 12:44:28 +010023
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)
33#define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
34
35#define IEEE80211_IBSS_MAX_STA_ENTRIES 128
36
37
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020038static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
39 const u8 *bssid, const int beacon_int,
40 struct ieee80211_channel *chan,
Johannes Bergb59066a2009-05-12 21:18:38 +020041 const u32 basic_rates,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020042 const u16 capability, u64 tsf)
Johannes Berg46900292009-02-15 12:44:28 +010043{
44 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
45 struct ieee80211_local *local = sdata->local;
Johannes Bergb59066a2009-05-12 21:18:38 +020046 int rates, i;
Johannes Berg46900292009-02-15 12:44:28 +010047 struct sk_buff *skb;
48 struct ieee80211_mgmt *mgmt;
49 u8 *pos;
50 struct ieee80211_supported_band *sband;
Johannes Bergf446d102009-10-28 15:12:32 +010051 struct cfg80211_bss *bss;
Johannes Berg57c4d7b2009-04-23 16:10:04 +020052 u32 bss_change;
Johannes Bergb59066a2009-05-12 21:18:38 +020053 u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
Alexander Simon13c40c52011-11-30 16:56:34 +010054 enum nl80211_channel_type channel_type;
Johannes Berg24487982009-04-23 18:52:52 +020055
Johannes Berg7a17a332010-07-21 11:30:27 +020056 lockdep_assert_held(&ifibss->mtx);
57
Johannes Berg24487982009-04-23 18:52:52 +020058 /* Reset own TSF to allow time synchronization work. */
Eliad Peller37a41b42011-09-21 14:06:11 +030059 drv_reset_tsf(local, sdata);
Johannes Berg46900292009-02-15 12:44:28 +010060
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020061 skb = ifibss->skb;
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000062 RCU_INIT_POINTER(ifibss->presp, NULL);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020063 synchronize_rcu();
64 skb->data = skb->head;
65 skb->len = 0;
66 skb_reset_tail_pointer(skb);
67 skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
Johannes Berg46900292009-02-15 12:44:28 +010068
Joe Perchesb203ca32012-05-08 18:56:52 +000069 if (!ether_addr_equal(ifibss->bssid, bssid))
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020070 sta_info_flush(sdata->local, sdata);
Johannes Berg46900292009-02-15 12:44:28 +010071
Johannes Berg49b5c7f2010-04-29 21:34:01 +020072 /* if merging, indicate to driver that we leave the old IBSS */
73 if (sdata->vif.bss_conf.ibss_joined) {
74 sdata->vif.bss_conf.ibss_joined = false;
Eliad Peller86a2ea42011-11-08 15:36:59 +020075 netif_carrier_off(sdata->dev);
Johannes Berg49b5c7f2010-04-29 21:34:01 +020076 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_IBSS);
77 }
78
Johannes Berg46900292009-02-15 12:44:28 +010079 memcpy(ifibss->bssid, bssid, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +010080
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020081 sdata->drop_unencrypted = capability & WLAN_CAPABILITY_PRIVACY ? 1 : 0;
Johannes Berg46900292009-02-15 12:44:28 +010082
Eliad Pellerba196022012-01-10 15:19:54 +020083 local->oper_channel = chan;
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) +
Johannes Berg074d46d2012-03-15 19:45:16 +0100163 sizeof(struct ieee80211_ht_operation));
Alexander Simon13c40c52011-11-30 16:56:34 +0100164 pos = ieee80211_ie_build_ht_cap(pos, &sband->ht_cap,
165 sband->ht_cap.cap);
Ashok Nagarajan0d894ec2012-05-07 21:00:29 -0700166 /*
167 * Note: According to 802.11n-2009 9.13.3.1, HT Protection
168 * field and RIFS Mode are reserved in IBSS mode, therefore
169 * keep them at 0
170 */
Johannes Berg074d46d2012-03-15 19:45:16 +0100171 pos = ieee80211_ie_build_ht_oper(pos, &sband->ht_cap,
Ashok Nagarajan431e3152012-04-30 14:20:29 -0700172 chan, channel_type, 0);
Alexander Simon13c40c52011-11-30 16:56:34 +0100173 }
174
Johannes Berg32c50572012-03-28 11:04:29 +0200175 if (local->hw.queues >= IEEE80211_NUM_ACS) {
Bruno Randolf9eba6122010-10-04 11:17:30 +0900176 pos = skb_put(skb, 9);
177 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
178 *pos++ = 7; /* len */
179 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
180 *pos++ = 0x50;
181 *pos++ = 0xf2;
182 *pos++ = 2; /* WME */
183 *pos++ = 0; /* WME info */
184 *pos++ = 1; /* WME ver */
185 *pos++ = 0; /* U-APSD no in use */
186 }
187
Eric Dumazetcf778b02012-01-12 04:41:32 +0000188 rcu_assign_pointer(ifibss->presp, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100189
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200190 sdata->vif.bss_conf.beacon_int = beacon_int;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +0300191 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200192 bss_change = BSS_CHANGED_BEACON_INT;
193 bss_change |= ieee80211_reset_erp_info(sdata);
194 bss_change |= BSS_CHANGED_BSSID;
195 bss_change |= BSS_CHANGED_BEACON;
196 bss_change |= BSS_CHANGED_BEACON_ENABLED;
Teemu Paasikivi392cfdb2010-06-14 12:55:32 +0300197 bss_change |= BSS_CHANGED_BASIC_RATES;
Alexander Simon13c40c52011-11-30 16:56:34 +0100198 bss_change |= BSS_CHANGED_HT;
Johannes Berg8fc214b2010-04-28 17:40:43 +0200199 bss_change |= BSS_CHANGED_IBSS;
200 sdata->vif.bss_conf.ibss_joined = true;
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200201 ieee80211_bss_info_change_notify(sdata, bss_change);
Johannes Berg46900292009-02-15 12:44:28 +0100202
Johannes Bergb59066a2009-05-12 21:18:38 +0200203 ieee80211_sta_def_wmm_params(sdata, sband->n_bitrates, supp_rates);
Johannes Berg46900292009-02-15 12:44:28 +0100204
Johannes Berg46900292009-02-15 12:44:28 +0100205 ifibss->state = IEEE80211_IBSS_MLME_JOINED;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200206 mod_timer(&ifibss->timer,
207 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
Johannes Berg46900292009-02-15 12:44:28 +0100208
Johannes Bergf446d102009-10-28 15:12:32 +0100209 bss = cfg80211_inform_bss_frame(local->hw.wiphy, local->hw.conf.channel,
210 mgmt, skb->len, 0, GFP_KERNEL);
211 cfg80211_put_bss(bss);
Eliad Peller86a2ea42011-11-08 15:36:59 +0200212 netif_carrier_on(sdata->dev);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200213 cfg80211_ibss_joined(sdata->dev, ifibss->bssid, GFP_KERNEL);
Johannes Berg46900292009-02-15 12:44:28 +0100214}
215
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200216static void ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
217 struct ieee80211_bss *bss)
Johannes Berg46900292009-02-15 12:44:28 +0100218{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100219 struct cfg80211_bss *cbss =
220 container_of((void *)bss, struct cfg80211_bss, priv);
Johannes Bergb59066a2009-05-12 21:18:38 +0200221 struct ieee80211_supported_band *sband;
222 u32 basic_rates;
223 int i, j;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100224 u16 beacon_int = cbss->beacon_interval;
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200225
Johannes Berg7a17a332010-07-21 11:30:27 +0200226 lockdep_assert_held(&sdata->u.ibss.mtx);
227
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200228 if (beacon_int < 10)
229 beacon_int = 10;
230
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100231 sband = sdata->local->hw.wiphy->bands[cbss->channel->band];
Johannes Bergb59066a2009-05-12 21:18:38 +0200232
233 basic_rates = 0;
234
235 for (i = 0; i < bss->supp_rates_len; i++) {
236 int rate = (bss->supp_rates[i] & 0x7f) * 5;
237 bool is_basic = !!(bss->supp_rates[i] & 0x80);
238
239 for (j = 0; j < sband->n_bitrates; j++) {
240 if (sband->bitrates[j].bitrate == rate) {
241 if (is_basic)
242 basic_rates |= BIT(j);
243 break;
244 }
245 }
246 }
247
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100248 __ieee80211_sta_join_ibss(sdata, cbss->bssid,
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200249 beacon_int,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100250 cbss->channel,
Johannes Bergb59066a2009-05-12 21:18:38 +0200251 basic_rates,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100252 cbss->capability,
253 cbss->tsf);
Johannes Berg46900292009-02-15 12:44:28 +0100254}
255
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100256static struct sta_info *ieee80211_ibss_finish_sta(struct sta_info *sta,
257 bool auth)
Johannes Berg8bf11d82011-12-15 11:17:37 +0100258 __acquires(RCU)
259{
260 struct ieee80211_sub_if_data *sdata = sta->sdata;
261 u8 addr[ETH_ALEN];
262
263 memcpy(addr, sta->sta.addr, ETH_ALEN);
264
265#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
266 wiphy_debug(sdata->local->hw.wiphy,
267 "Adding new IBSS station %pM (dev=%s)\n",
268 addr, sdata->name);
269#endif
270
Johannes Berg83d5cc02012-01-12 09:31:10 +0100271 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
272 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
Antonio Quartulli267335d2012-01-31 20:25:47 +0100273 /* authorize the station only if the network is not RSN protected. If
274 * not wait for the userspace to authorize it */
275 if (!sta->sdata->u.ibss.control_port)
276 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100277
278 rate_control_rate_init(sta);
279
280 /* If it fails, maybe we raced another insertion? */
281 if (sta_info_insert_rcu(sta))
282 return sta_info_get(sdata, addr);
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100283 if (auth) {
Joe Perches499f42b2012-05-15 14:20:32 -0700284 ibss_vdbg("TX Auth SA=%pM DA=%pM BSSID=%pM (auth_transaction=1)\n",
285 sdata->vif.addr, sdata->u.ibss.bssid, addr);
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100286 ieee80211_send_auth(sdata, 1, WLAN_AUTH_OPEN, NULL, 0,
287 addr, sdata->u.ibss.bssid, NULL, 0, 0);
288 }
Johannes Berg8bf11d82011-12-15 11:17:37 +0100289 return sta;
290}
291
292static struct sta_info *
293ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
294 const u8 *bssid, const u8 *addr,
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100295 u32 supp_rates, bool auth)
Johannes Berg8bf11d82011-12-15 11:17:37 +0100296 __acquires(RCU)
297{
298 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
299 struct ieee80211_local *local = sdata->local;
300 struct sta_info *sta;
301 int band = local->hw.conf.channel->band;
302
303 /*
304 * XXX: Consider removing the least recently used entry and
305 * allow new one to be added.
306 */
307 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
Joe Perchese87cc472012-05-13 21:56:26 +0000308 net_dbg_ratelimited("%s: No room for a new IBSS STA entry %pM\n",
309 sdata->name, addr);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100310 rcu_read_lock();
311 return NULL;
312 }
313
314 if (ifibss->state == IEEE80211_IBSS_MLME_SEARCH) {
315 rcu_read_lock();
316 return NULL;
317 }
318
Joe Perchesb203ca32012-05-08 18:56:52 +0000319 if (!ether_addr_equal(bssid, sdata->u.ibss.bssid)) {
Johannes Berg8bf11d82011-12-15 11:17:37 +0100320 rcu_read_lock();
321 return NULL;
322 }
323
324 sta = sta_info_alloc(sdata, addr, GFP_KERNEL);
325 if (!sta) {
326 rcu_read_lock();
327 return NULL;
328 }
329
330 sta->last_rx = jiffies;
331
332 /* make sure mandatory rates are always added */
333 sta->sta.supp_rates[band] = supp_rates |
334 ieee80211_mandatory_rates(local, band);
335
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100336 return ieee80211_ibss_finish_sta(sta, auth);
337}
338
339static void ieee80211_rx_mgmt_auth_ibss(struct ieee80211_sub_if_data *sdata,
340 struct ieee80211_mgmt *mgmt,
341 size_t len)
342{
343 u16 auth_alg, auth_transaction;
344
345 lockdep_assert_held(&sdata->u.ibss.mtx);
346
347 if (len < 24 + 6)
348 return;
349
350 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
351 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
352
353 if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1)
354 return;
Joe Perches499f42b2012-05-15 14:20:32 -0700355 ibss_vdbg("%s: RX Auth SA=%pM DA=%pM BSSID=%pM (auth_transaction=%d)\n",
356 sdata->name, mgmt->sa, mgmt->da, mgmt->bssid,
357 auth_transaction);
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100358 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 &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000403 ether_addr_equal(mgmt->bssid, sdata->u.ibss.bssid)) {
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,
Ashok Nagarajan9ebb61a2012-04-02 21:21:21 -0700410 band, NULL);
Bruno Randolf9eba6122010-10-04 11:17:30 +0900411 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) {
Joe Perches499f42b2012-05-15 14:20:32 -0700420 ibss_vdbg("%s: updated supp_rates set for %pM based on beacon/probe_resp (0x%x -> 0x%x)\n",
421 sdata->name, sta->sta.addr,
422 prev_rates,
423 sta->sta.supp_rates[band]);
Alexander Simon13c40c52011-11-30 16:56:34 +0100424 rates_updated = true;
Bruno Randolf9eba6122010-10-04 11:17:30 +0900425 }
Johannes Berg8bf11d82011-12-15 11:17:37 +0100426 } else {
427 rcu_read_unlock();
Bruno Randolf9eba6122010-10-04 11:17:30 +0900428 sta = ieee80211_ibss_add_sta(sdata, mgmt->bssid,
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100429 mgmt->sa, supp_rates, true);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100430 }
Johannes Berg34e89502010-02-03 13:59:58 +0100431 }
Bruno Randolf9eba6122010-10-04 11:17:30 +0900432
433 if (sta && elems->wmm_info)
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200434 set_sta_flag(sta, WLAN_STA_WME);
Bruno Randolf9eba6122010-10-04 11:17:30 +0900435
Johannes Berg074d46d2012-03-15 19:45:16 +0100436 if (sta && elems->ht_operation && elems->ht_cap_elem &&
Alexander Simon13c40c52011-11-30 16:56:34 +0100437 sdata->u.ibss.channel_type != NL80211_CHAN_NO_HT) {
438 /* we both use HT */
439 struct ieee80211_sta_ht_cap sta_ht_cap_new;
440 enum nl80211_channel_type channel_type =
Johannes Berg074d46d2012-03-15 19:45:16 +0100441 ieee80211_ht_oper_to_channel_type(
442 elems->ht_operation);
Alexander Simon13c40c52011-11-30 16:56:34 +0100443
444 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
445 elems->ht_cap_elem,
446 &sta_ht_cap_new);
447
448 /*
449 * fall back to HT20 if we don't use or use
450 * the other extension channel
451 */
Felix Fietkau6741e7f2012-04-16 22:10:42 +0200452 if (!(channel_type == NL80211_CHAN_HT40MINUS ||
453 channel_type == NL80211_CHAN_HT40PLUS) ||
Alexander Simon13c40c52011-11-30 16:56:34 +0100454 channel_type != sdata->u.ibss.channel_type)
455 sta_ht_cap_new.cap &=
456 ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
457
458 if (memcmp(&sta->sta.ht_cap, &sta_ht_cap_new,
459 sizeof(sta_ht_cap_new))) {
460 memcpy(&sta->sta.ht_cap, &sta_ht_cap_new,
461 sizeof(sta_ht_cap_new));
462 rates_updated = true;
463 }
464 }
465
466 if (sta && rates_updated)
467 rate_control_rate_init(sta);
468
Bruno Randolf9eba6122010-10-04 11:17:30 +0900469 rcu_read_unlock();
Johannes Berg46900292009-02-15 12:44:28 +0100470 }
471
472 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
473 channel, beacon);
474 if (!bss)
475 return;
476
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100477 cbss = container_of((void *)bss, struct cfg80211_bss, priv);
478
Johannes Berg46900292009-02-15 12:44:28 +0100479 /* was just updated in ieee80211_bss_info_update */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100480 beacon_timestamp = cbss->tsf;
Johannes Berg46900292009-02-15 12:44:28 +0100481
482 /* check if we need to merge IBSS */
483
Johannes Berg46900292009-02-15 12:44:28 +0100484 /* we use a fixed BSSID */
Benoit Papillaulta98bfec2010-01-17 22:45:24 +0100485 if (sdata->u.ibss.fixed_bssid)
Johannes Berg46900292009-02-15 12:44:28 +0100486 goto put_bss;
487
488 /* not an IBSS */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100489 if (!(cbss->capability & WLAN_CAPABILITY_IBSS))
Johannes Berg46900292009-02-15 12:44:28 +0100490 goto put_bss;
491
492 /* different channel */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100493 if (cbss->channel != local->oper_channel)
Johannes Berg46900292009-02-15 12:44:28 +0100494 goto put_bss;
495
496 /* different SSID */
497 if (elems->ssid_len != sdata->u.ibss.ssid_len ||
498 memcmp(elems->ssid, sdata->u.ibss.ssid,
499 sdata->u.ibss.ssid_len))
500 goto put_bss;
501
Alina Friedrichsen34e8f082009-02-22 00:07:28 +0100502 /* same BSSID */
Joe Perchesb203ca32012-05-08 18:56:52 +0000503 if (ether_addr_equal(cbss->bssid, sdata->u.ibss.bssid))
Alina Friedrichsen34e8f082009-02-22 00:07:28 +0100504 goto put_bss;
505
Johannes Berg6ebacbb2011-02-23 15:06:08 +0100506 if (rx_status->flag & RX_FLAG_MACTIME_MPDU) {
Johannes Berg46900292009-02-15 12:44:28 +0100507 /*
508 * For correct IBSS merging we need mactime; since mactime is
509 * defined as the time the first data symbol of the frame hits
510 * the PHY, and the timestamp of the beacon is defined as "the
511 * time that the data symbol containing the first bit of the
512 * timestamp is transmitted to the PHY plus the transmitting
513 * STA's delays through its local PHY from the MAC-PHY
514 * interface to its interface with the WM" (802.11 11.1.2)
515 * - equals the time this bit arrives at the receiver - we have
516 * to take into account the offset between the two.
517 *
518 * E.g. at 1 MBit that means mactime is 192 usec earlier
519 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
520 */
521 int rate;
522
523 if (rx_status->flag & RX_FLAG_HT)
524 rate = 65; /* TODO: HT rates */
525 else
526 rate = local->hw.wiphy->bands[band]->
527 bitrates[rx_status->rate_idx].bitrate;
528
529 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
Johannes Berg24487982009-04-23 18:52:52 +0200530 } else {
531 /*
532 * second best option: get current TSF
533 * (will return -1 if not supported)
534 */
Eliad Peller37a41b42011-09-21 14:06:11 +0300535 rx_timestamp = drv_get_tsf(local, sdata);
Johannes Berg24487982009-04-23 18:52:52 +0200536 }
Johannes Berg46900292009-02-15 12:44:28 +0100537
Joe Perches499f42b2012-05-15 14:20:32 -0700538 ibss_vdbg("RX beacon SA=%pM BSSID=%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
539 mgmt->sa, mgmt->bssid,
540 (unsigned long long)rx_timestamp,
541 (unsigned long long)beacon_timestamp,
542 (unsigned long long)(rx_timestamp - beacon_timestamp),
543 jiffies);
Johannes Berg46900292009-02-15 12:44:28 +0100544
545 if (beacon_timestamp > rx_timestamp) {
Joe Perches499f42b2012-05-15 14:20:32 -0700546 ibss_vdbg("%s: beacon TSF higher than local TSF - IBSS merge with BSSID %pM\n",
547 sdata->name, mgmt->bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100548 ieee80211_sta_join_ibss(sdata, bss);
Ashok Nagarajan9ebb61a2012-04-02 21:21:21 -0700549 supp_rates = ieee80211_sta_get_rates(local, elems, band, NULL);
Johannes Berg34e89502010-02-03 13:59:58 +0100550 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa,
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100551 supp_rates, true);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100552 rcu_read_unlock();
Johannes Berg46900292009-02-15 12:44:28 +0100553 }
554
555 put_bss:
556 ieee80211_rx_bss_put(local, bss);
557}
558
Johannes Berg8bf11d82011-12-15 11:17:37 +0100559void ieee80211_ibss_rx_no_sta(struct ieee80211_sub_if_data *sdata,
560 const u8 *bssid, const u8 *addr,
561 u32 supp_rates)
Johannes Berg46900292009-02-15 12:44:28 +0100562{
Felix Fietkau2e10d332009-12-20 19:07:09 +0100563 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg46900292009-02-15 12:44:28 +0100564 struct ieee80211_local *local = sdata->local;
565 struct sta_info *sta;
566 int band = local->hw.conf.channel->band;
567
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200568 /*
569 * XXX: Consider removing the least recently used entry and
570 * allow new one to be added.
571 */
Johannes Berg46900292009-02-15 12:44:28 +0100572 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
Joe Perchese87cc472012-05-13 21:56:26 +0000573 net_dbg_ratelimited("%s: No room for a new IBSS STA entry %pM\n",
574 sdata->name, addr);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100575 return;
Johannes Berg46900292009-02-15 12:44:28 +0100576 }
577
Felix Fietkau2e10d332009-12-20 19:07:09 +0100578 if (ifibss->state == IEEE80211_IBSS_MLME_SEARCH)
Johannes Berg8bf11d82011-12-15 11:17:37 +0100579 return;
Felix Fietkau2e10d332009-12-20 19:07:09 +0100580
Joe Perchesb203ca32012-05-08 18:56:52 +0000581 if (!ether_addr_equal(bssid, sdata->u.ibss.bssid))
Johannes Berg8bf11d82011-12-15 11:17:37 +0100582 return;
Johannes Berg46900292009-02-15 12:44:28 +0100583
Johannes Berg8bf11d82011-12-15 11:17:37 +0100584 sta = sta_info_alloc(sdata, addr, GFP_ATOMIC);
Johannes Berg46900292009-02-15 12:44:28 +0100585 if (!sta)
Johannes Berg8bf11d82011-12-15 11:17:37 +0100586 return;
Johannes Berg46900292009-02-15 12:44:28 +0100587
Rajkumar Manoharanc8716d92010-10-23 10:59:57 +0530588 sta->last_rx = jiffies;
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100589
Johannes Berg46900292009-02-15 12:44:28 +0100590 /* make sure mandatory rates are always added */
591 sta->sta.supp_rates[band] = supp_rates |
592 ieee80211_mandatory_rates(local, band);
593
Johannes Berg8bf11d82011-12-15 11:17:37 +0100594 spin_lock(&ifibss->incomplete_lock);
595 list_add(&sta->list, &ifibss->incomplete_stations);
596 spin_unlock(&ifibss->incomplete_lock);
597 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg46900292009-02-15 12:44:28 +0100598}
599
600static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
601{
602 struct ieee80211_local *local = sdata->local;
603 int active = 0;
604 struct sta_info *sta;
605
Johannes Berg7a17a332010-07-21 11:30:27 +0200606 lockdep_assert_held(&sdata->u.ibss.mtx);
607
Johannes Berg46900292009-02-15 12:44:28 +0100608 rcu_read_lock();
609
610 list_for_each_entry_rcu(sta, &local->sta_list, list) {
611 if (sta->sdata == sdata &&
612 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
613 jiffies)) {
614 active++;
615 break;
616 }
617 }
618
619 rcu_read_unlock();
620
621 return active;
622}
623
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100624/*
625 * This function is called with state == IEEE80211_IBSS_MLME_JOINED
626 */
Johannes Berg46900292009-02-15 12:44:28 +0100627
628static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata)
629{
630 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
631
Johannes Berg7a17a332010-07-21 11:30:27 +0200632 lockdep_assert_held(&ifibss->mtx);
633
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200634 mod_timer(&ifibss->timer,
635 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
Johannes Berg46900292009-02-15 12:44:28 +0100636
637 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200638
Sujith450aae32009-11-02 12:33:23 +0530639 if (time_before(jiffies, ifibss->last_scan_completed +
640 IEEE80211_IBSS_MERGE_INTERVAL))
641 return;
642
Johannes Berg46900292009-02-15 12:44:28 +0100643 if (ieee80211_sta_active_ibss(sdata))
644 return;
645
John W. Linvillec037b832012-01-30 15:28:11 -0500646 if (ifibss->fixed_channel)
Johannes Berg46900292009-02-15 12:44:28 +0100647 return;
648
Joe Perchesf0d23202012-05-15 14:20:30 -0700649 pr_debug("%s: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)\n",
650 sdata->name);
Johannes Berg46900292009-02-15 12:44:28 +0100651
Johannes Bergbe4a4b62010-05-03 08:49:48 +0200652 ieee80211_request_internal_scan(sdata,
John W. Linvillec037b832012-01-30 15:28:11 -0500653 ifibss->ssid, ifibss->ssid_len, NULL);
Johannes Berg46900292009-02-15 12:44:28 +0100654}
655
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200656static void ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100657{
658 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg46900292009-02-15 12:44:28 +0100659 u8 bssid[ETH_ALEN];
Johannes Berg46900292009-02-15 12:44:28 +0100660 u16 capability;
661 int i;
662
Johannes Berg7a17a332010-07-21 11:30:27 +0200663 lockdep_assert_held(&ifibss->mtx);
664
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200665 if (ifibss->fixed_bssid) {
Johannes Berg46900292009-02-15 12:44:28 +0100666 memcpy(bssid, ifibss->bssid, ETH_ALEN);
667 } else {
668 /* Generate random, not broadcast, locally administered BSSID. Mix in
669 * own MAC address to make sure that devices that do not have proper
670 * random number generator get different BSSID. */
671 get_random_bytes(bssid, ETH_ALEN);
672 for (i = 0; i < ETH_ALEN; i++)
Johannes Berg47846c92009-11-25 17:46:19 +0100673 bssid[i] ^= sdata->vif.addr[i];
Johannes Berg46900292009-02-15 12:44:28 +0100674 bssid[0] &= ~0x01;
675 bssid[0] |= 0x02;
676 }
677
Joe Perchesf0d23202012-05-15 14:20:30 -0700678 pr_debug("%s: Creating new IBSS network, BSSID %pM\n",
679 sdata->name, bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100680
Johannes Berg46900292009-02-15 12:44:28 +0100681 capability = WLAN_CAPABILITY_IBSS;
682
Johannes Bergfffd0932009-07-08 14:22:54 +0200683 if (ifibss->privacy)
Johannes Berg46900292009-02-15 12:44:28 +0100684 capability |= WLAN_CAPABILITY_PRIVACY;
685 else
686 sdata->drop_unencrypted = 0;
687
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200688 __ieee80211_sta_join_ibss(sdata, bssid, sdata->vif.bss_conf.beacon_int,
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +0300689 ifibss->channel, ifibss->basic_rates,
Johannes Bergb59066a2009-05-12 21:18:38 +0200690 capability, 0);
Johannes Berg46900292009-02-15 12:44:28 +0100691}
692
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100693/*
694 * This function is called with state == IEEE80211_IBSS_MLME_SEARCH
695 */
696
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200697static void ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100698{
699 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
700 struct ieee80211_local *local = sdata->local;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100701 struct cfg80211_bss *cbss;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200702 struct ieee80211_channel *chan = NULL;
Johannes Berg46900292009-02-15 12:44:28 +0100703 const u8 *bssid = NULL;
704 int active_ibss;
Johannes Berge0d61882009-05-12 20:47:32 +0200705 u16 capability;
Johannes Berg46900292009-02-15 12:44:28 +0100706
Johannes Berg7a17a332010-07-21 11:30:27 +0200707 lockdep_assert_held(&ifibss->mtx);
708
Johannes Berg46900292009-02-15 12:44:28 +0100709 active_ibss = ieee80211_sta_active_ibss(sdata);
Joe Perches499f42b2012-05-15 14:20:32 -0700710 ibss_vdbg("%s: sta_find_ibss (active_ibss=%d)\n",
711 sdata->name, active_ibss);
Johannes Berg46900292009-02-15 12:44:28 +0100712
713 if (active_ibss)
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200714 return;
Johannes Berg46900292009-02-15 12:44:28 +0100715
Johannes Berge0d61882009-05-12 20:47:32 +0200716 capability = WLAN_CAPABILITY_IBSS;
Johannes Bergfffd0932009-07-08 14:22:54 +0200717 if (ifibss->privacy)
Johannes Berge0d61882009-05-12 20:47:32 +0200718 capability |= WLAN_CAPABILITY_PRIVACY;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200719 if (ifibss->fixed_bssid)
Johannes Berg46900292009-02-15 12:44:28 +0100720 bssid = ifibss->bssid;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200721 if (ifibss->fixed_channel)
722 chan = ifibss->channel;
723 if (!is_zero_ether_addr(ifibss->bssid))
724 bssid = ifibss->bssid;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100725 cbss = cfg80211_get_bss(local->hw.wiphy, chan, bssid,
726 ifibss->ssid, ifibss->ssid_len,
727 WLAN_CAPABILITY_IBSS | WLAN_CAPABILITY_PRIVACY,
728 capability);
Johannes Berg46900292009-02-15 12:44:28 +0100729
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100730 if (cbss) {
731 struct ieee80211_bss *bss;
732
733 bss = (void *)cbss->priv;
Joe Perches499f42b2012-05-15 14:20:32 -0700734 ibss_vdbg(" sta_find_ibss: selected %pM current %pM\n",
735 cbss->bssid, ifibss->bssid);
Joe Perchesf0d23202012-05-15 14:20:30 -0700736 pr_debug("%s: Selected IBSS BSSID %pM based on configured SSID\n",
737 sdata->name, cbss->bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100738
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200739 ieee80211_sta_join_ibss(sdata, bss);
Johannes Berg46900292009-02-15 12:44:28 +0100740 ieee80211_rx_bss_put(local, bss);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200741 return;
Reinette Chatred419b9f2009-10-19 14:55:37 -0700742 }
Johannes Berg46900292009-02-15 12:44:28 +0100743
Joe Perches499f42b2012-05-15 14:20:32 -0700744 ibss_vdbg(" did not try to join ibss\n");
Johannes Berg46900292009-02-15 12:44:28 +0100745
746 /* Selected IBSS not found in current scan results - try to scan */
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100747 if (time_after(jiffies, ifibss->last_scan_completed +
Johannes Berg46900292009-02-15 12:44:28 +0100748 IEEE80211_SCAN_INTERVAL)) {
Joe Perchesf0d23202012-05-15 14:20:30 -0700749 pr_debug("%s: Trigger new scan to find an IBSS to join\n",
750 sdata->name);
Johannes Berg46900292009-02-15 12:44:28 +0100751
Johannes Bergbe4a4b62010-05-03 08:49:48 +0200752 ieee80211_request_internal_scan(sdata,
753 ifibss->ssid, ifibss->ssid_len,
754 ifibss->fixed_channel ? ifibss->channel : NULL);
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100755 } else {
Johannes Berg46900292009-02-15 12:44:28 +0100756 int interval = IEEE80211_SCAN_INTERVAL;
757
758 if (time_after(jiffies, ifibss->ibss_join_req +
759 IEEE80211_IBSS_JOIN_TIMEOUT)) {
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200760 if (!(local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS)) {
761 ieee80211_sta_create_ibss(sdata);
762 return;
763 }
Joe Perchesf0d23202012-05-15 14:20:30 -0700764 pr_debug("%s: IBSS not allowed on %d MHz\n",
765 sdata->name,
766 local->hw.conf.channel->center_freq);
Johannes Berg46900292009-02-15 12:44:28 +0100767
768 /* No IBSS found - decrease scan interval and continue
769 * scanning. */
770 interval = IEEE80211_SCAN_INTERVAL_SLOW;
771 }
772
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200773 mod_timer(&ifibss->timer,
774 round_jiffies(jiffies + interval));
Johannes Berg46900292009-02-15 12:44:28 +0100775 }
Johannes Berg46900292009-02-15 12:44:28 +0100776}
777
778static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
Johannes Bergc269a202011-02-14 12:20:22 +0100779 struct sk_buff *req)
Johannes Berg46900292009-02-15 12:44:28 +0100780{
Johannes Bergc269a202011-02-14 12:20:22 +0100781 struct ieee80211_mgmt *mgmt = (void *)req->data;
Johannes Berg46900292009-02-15 12:44:28 +0100782 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
783 struct ieee80211_local *local = sdata->local;
Johannes Bergc269a202011-02-14 12:20:22 +0100784 int tx_last_beacon, len = req->len;
Johannes Berg46900292009-02-15 12:44:28 +0100785 struct sk_buff *skb;
786 struct ieee80211_mgmt *resp;
Johannes Berg40b275b2011-05-13 14:15:49 +0200787 struct sk_buff *presp;
Johannes Berg46900292009-02-15 12:44:28 +0100788 u8 *pos, *end;
789
Johannes Berg7a17a332010-07-21 11:30:27 +0200790 lockdep_assert_held(&ifibss->mtx);
791
Johannes Berg40b275b2011-05-13 14:15:49 +0200792 presp = rcu_dereference_protected(ifibss->presp,
793 lockdep_is_held(&ifibss->mtx));
794
Johannes Berg46900292009-02-15 12:44:28 +0100795 if (ifibss->state != IEEE80211_IBSS_MLME_JOINED ||
Johannes Berg40b275b2011-05-13 14:15:49 +0200796 len < 24 + 2 || !presp)
Johannes Berg46900292009-02-15 12:44:28 +0100797 return;
798
Johannes Berg24487982009-04-23 18:52:52 +0200799 tx_last_beacon = drv_tx_last_beacon(local);
Johannes Berg46900292009-02-15 12:44:28 +0100800
Joe Perches499f42b2012-05-15 14:20:32 -0700801 ibss_vdbg("%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM (tx_last_beacon=%d)\n",
802 sdata->name, mgmt->sa, mgmt->da,
803 mgmt->bssid, tx_last_beacon);
Johannes Berg46900292009-02-15 12:44:28 +0100804
Felix Fietkau1ed76482011-03-24 19:46:18 +0100805 if (!tx_last_beacon && is_multicast_ether_addr(mgmt->da))
Johannes Berg46900292009-02-15 12:44:28 +0100806 return;
807
Joe Perchesb203ca32012-05-08 18:56:52 +0000808 if (!ether_addr_equal(mgmt->bssid, ifibss->bssid) &&
Felix Fietkau888d04d2012-03-01 15:22:09 +0100809 !is_broadcast_ether_addr(mgmt->bssid))
Johannes Berg46900292009-02-15 12:44:28 +0100810 return;
811
812 end = ((u8 *) mgmt) + len;
813 pos = mgmt->u.probe_req.variable;
814 if (pos[0] != WLAN_EID_SSID ||
815 pos + 2 + pos[1] > end) {
Joe Perches499f42b2012-05-15 14:20:32 -0700816 ibss_vdbg("%s: Invalid SSID IE in ProbeReq from %pM\n",
817 sdata->name, mgmt->sa);
Johannes Berg46900292009-02-15 12:44:28 +0100818 return;
819 }
820 if (pos[1] != 0 &&
821 (pos[1] != ifibss->ssid_len ||
Benoit Papillault0da780c2010-02-05 01:21:03 +0100822 memcmp(pos + 2, ifibss->ssid, ifibss->ssid_len))) {
Johannes Berg46900292009-02-15 12:44:28 +0100823 /* Ignore ProbeReq for foreign SSID */
824 return;
825 }
826
827 /* Reply with ProbeResp */
Johannes Berg40b275b2011-05-13 14:15:49 +0200828 skb = skb_copy(presp, GFP_KERNEL);
Johannes Berg46900292009-02-15 12:44:28 +0100829 if (!skb)
830 return;
831
832 resp = (struct ieee80211_mgmt *) skb->data;
833 memcpy(resp->da, mgmt->sa, ETH_ALEN);
Joe Perches499f42b2012-05-15 14:20:32 -0700834 ibss_vdbg("%s: Sending ProbeResp to %pM\n", sdata->name, resp->da);
Johannes Berg62ae67b2009-11-18 18:42:05 +0100835 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
836 ieee80211_tx_skb(sdata, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100837}
838
839static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
840 struct ieee80211_mgmt *mgmt,
841 size_t len,
842 struct ieee80211_rx_status *rx_status)
843{
844 size_t baselen;
845 struct ieee802_11_elems elems;
846
Johannes Berg46900292009-02-15 12:44:28 +0100847 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
848 if (baselen > len)
849 return;
850
851 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
852 &elems);
853
854 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
855}
856
857static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
858 struct ieee80211_mgmt *mgmt,
859 size_t len,
860 struct ieee80211_rx_status *rx_status)
861{
862 size_t baselen;
863 struct ieee802_11_elems elems;
864
865 /* Process beacon from the current BSS */
866 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
867 if (baselen > len)
868 return;
869
870 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
871
872 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
873}
874
Johannes Berg1fa57d02010-06-10 10:21:32 +0200875void ieee80211_ibss_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
876 struct sk_buff *skb)
Johannes Berg46900292009-02-15 12:44:28 +0100877{
878 struct ieee80211_rx_status *rx_status;
879 struct ieee80211_mgmt *mgmt;
880 u16 fc;
881
Johannes Bergf1d58c22009-06-17 13:13:00 +0200882 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg46900292009-02-15 12:44:28 +0100883 mgmt = (struct ieee80211_mgmt *) skb->data;
884 fc = le16_to_cpu(mgmt->frame_control);
885
Johannes Berg7a17a332010-07-21 11:30:27 +0200886 mutex_lock(&sdata->u.ibss.mtx);
887
Tim Harveyc926d002010-12-09 10:43:13 -0800888 if (!sdata->u.ibss.ssid_len)
889 goto mgmt_out; /* not ready to merge yet */
890
Johannes Berg46900292009-02-15 12:44:28 +0100891 switch (fc & IEEE80211_FCTL_STYPE) {
892 case IEEE80211_STYPE_PROBE_REQ:
Johannes Bergc269a202011-02-14 12:20:22 +0100893 ieee80211_rx_mgmt_probe_req(sdata, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100894 break;
895 case IEEE80211_STYPE_PROBE_RESP:
896 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
897 rx_status);
898 break;
899 case IEEE80211_STYPE_BEACON:
900 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
901 rx_status);
902 break;
903 case IEEE80211_STYPE_AUTH:
904 ieee80211_rx_mgmt_auth_ibss(sdata, mgmt, skb->len);
905 break;
906 }
Johannes Berg7a17a332010-07-21 11:30:27 +0200907
Tim Harveyc926d002010-12-09 10:43:13 -0800908 mgmt_out:
Johannes Berg7a17a332010-07-21 11:30:27 +0200909 mutex_unlock(&sdata->u.ibss.mtx);
Johannes Berg46900292009-02-15 12:44:28 +0100910}
911
Johannes Berg1fa57d02010-06-10 10:21:32 +0200912void ieee80211_ibss_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100913{
Johannes Berg1fa57d02010-06-10 10:21:32 +0200914 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg8bf11d82011-12-15 11:17:37 +0100915 struct sta_info *sta;
Johannes Berg46900292009-02-15 12:44:28 +0100916
Johannes Berg7a17a332010-07-21 11:30:27 +0200917 mutex_lock(&ifibss->mtx);
918
919 /*
920 * Work could be scheduled after scan or similar
921 * when we aren't even joined (or trying) with a
922 * network.
923 */
924 if (!ifibss->ssid_len)
925 goto out;
Johannes Berg46900292009-02-15 12:44:28 +0100926
Johannes Berg8bf11d82011-12-15 11:17:37 +0100927 spin_lock_bh(&ifibss->incomplete_lock);
928 while (!list_empty(&ifibss->incomplete_stations)) {
929 sta = list_first_entry(&ifibss->incomplete_stations,
930 struct sta_info, list);
931 list_del(&sta->list);
932 spin_unlock_bh(&ifibss->incomplete_lock);
933
Antonio Quartulli6d810f12012-01-18 00:10:44 +0100934 ieee80211_ibss_finish_sta(sta, true);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100935 rcu_read_unlock();
936 spin_lock_bh(&ifibss->incomplete_lock);
937 }
938 spin_unlock_bh(&ifibss->incomplete_lock);
939
Johannes Berg46900292009-02-15 12:44:28 +0100940 switch (ifibss->state) {
941 case IEEE80211_IBSS_MLME_SEARCH:
942 ieee80211_sta_find_ibss(sdata);
943 break;
944 case IEEE80211_IBSS_MLME_JOINED:
945 ieee80211_sta_merge_ibss(sdata);
946 break;
947 default:
948 WARN_ON(1);
949 break;
950 }
Johannes Berg46900292009-02-15 12:44:28 +0100951
Johannes Berg7a17a332010-07-21 11:30:27 +0200952 out:
953 mutex_unlock(&ifibss->mtx);
Johannes Berg3a4d4aa2010-05-26 16:41:40 +0200954}
955
Johannes Berg46900292009-02-15 12:44:28 +0100956static void ieee80211_ibss_timer(unsigned long data)
957{
958 struct ieee80211_sub_if_data *sdata =
959 (struct ieee80211_sub_if_data *) data;
960 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
961 struct ieee80211_local *local = sdata->local;
962
Johannes Berg5bb644a2009-05-17 11:40:42 +0200963 if (local->quiescing) {
964 ifibss->timer_running = true;
965 return;
966 }
967
Johannes Berg7a17a332010-07-21 11:30:27 +0200968 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg46900292009-02-15 12:44:28 +0100969}
970
Johannes Berg5bb644a2009-05-17 11:40:42 +0200971#ifdef CONFIG_PM
972void ieee80211_ibss_quiesce(struct ieee80211_sub_if_data *sdata)
973{
974 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
975
Johannes Berg5bb644a2009-05-17 11:40:42 +0200976 if (del_timer_sync(&ifibss->timer))
977 ifibss->timer_running = true;
978}
979
980void ieee80211_ibss_restart(struct ieee80211_sub_if_data *sdata)
981{
982 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
983
984 if (ifibss->timer_running) {
985 add_timer(&ifibss->timer);
986 ifibss->timer_running = false;
987 }
988}
989#endif
990
Johannes Berg46900292009-02-15 12:44:28 +0100991void ieee80211_ibss_setup_sdata(struct ieee80211_sub_if_data *sdata)
992{
993 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
994
Johannes Berg46900292009-02-15 12:44:28 +0100995 setup_timer(&ifibss->timer, ieee80211_ibss_timer,
996 (unsigned long) sdata);
Johannes Berg7a17a332010-07-21 11:30:27 +0200997 mutex_init(&ifibss->mtx);
Johannes Berg8bf11d82011-12-15 11:17:37 +0100998 INIT_LIST_HEAD(&ifibss->incomplete_stations);
999 spin_lock_init(&ifibss->incomplete_lock);
Johannes Berg46900292009-02-15 12:44:28 +01001000}
1001
1002/* scan finished notification */
1003void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local)
1004{
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001005 struct ieee80211_sub_if_data *sdata;
Johannes Berg46900292009-02-15 12:44:28 +01001006
Johannes Berg29b4a4f2009-04-21 00:30:49 +02001007 mutex_lock(&local->iflist_mtx);
1008 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01001009 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e41f712009-04-23 11:48:56 +02001010 continue;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001011 if (sdata->vif.type != NL80211_IFTYPE_ADHOC)
1012 continue;
1013 sdata->u.ibss.last_scan_completed = jiffies;
Johannes Berg7a17a332010-07-21 11:30:27 +02001014 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg46900292009-02-15 12:44:28 +01001015 }
Johannes Berg29b4a4f2009-04-21 00:30:49 +02001016 mutex_unlock(&local->iflist_mtx);
Johannes Berg46900292009-02-15 12:44:28 +01001017}
1018
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001019int ieee80211_ibss_join(struct ieee80211_sub_if_data *sdata,
1020 struct cfg80211_ibss_params *params)
1021{
1022 struct sk_buff *skb;
Simon Wunderlichff3cc5f2011-11-30 16:56:33 +01001023 u32 changed = 0;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001024
Johannes Berg7a17a332010-07-21 11:30:27 +02001025 skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom +
Alexander Simon13c40c52011-11-30 16:56:34 +01001026 sizeof(struct ieee80211_hdr_3addr) +
1027 12 /* struct ieee80211_mgmt.u.beacon */ +
1028 2 + IEEE80211_MAX_SSID_LEN /* max SSID */ +
1029 2 + 8 /* max Supported Rates */ +
1030 3 /* max DS params */ +
1031 4 /* IBSS params */ +
1032 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
1033 2 + sizeof(struct ieee80211_ht_cap) +
Johannes Berg074d46d2012-03-15 19:45:16 +01001034 2 + sizeof(struct ieee80211_ht_operation) +
Johannes Berg7a17a332010-07-21 11:30:27 +02001035 params->ie_len);
1036 if (!skb)
1037 return -ENOMEM;
1038
1039 mutex_lock(&sdata->u.ibss.mtx);
1040
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001041 if (params->bssid) {
1042 memcpy(sdata->u.ibss.bssid, params->bssid, ETH_ALEN);
1043 sdata->u.ibss.fixed_bssid = true;
1044 } else
1045 sdata->u.ibss.fixed_bssid = false;
1046
Johannes Bergfffd0932009-07-08 14:22:54 +02001047 sdata->u.ibss.privacy = params->privacy;
Antonio Quartulli267335d2012-01-31 20:25:47 +01001048 sdata->u.ibss.control_port = params->control_port;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03001049 sdata->u.ibss.basic_rates = params->basic_rates;
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01001050 memcpy(sdata->vif.bss_conf.mcast_rate, params->mcast_rate,
1051 sizeof(params->mcast_rate));
Johannes Bergfffd0932009-07-08 14:22:54 +02001052
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001053 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
1054
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001055 sdata->u.ibss.channel = params->channel;
Alexander Simon13c40c52011-11-30 16:56:34 +01001056 sdata->u.ibss.channel_type = params->channel_type;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001057 sdata->u.ibss.fixed_channel = params->channel_fixed;
1058
Johannes Bergadfba3c2010-05-05 15:33:55 +02001059 /* fix ourselves to that channel now already */
1060 if (params->channel_fixed) {
1061 sdata->local->oper_channel = params->channel;
Alexander Simon13c40c52011-11-30 16:56:34 +01001062 if (!ieee80211_set_channel_type(sdata->local, sdata,
Dan Carpenterfb03c5e2011-12-08 09:49:03 +03001063 params->channel_type)) {
1064 mutex_unlock(&sdata->u.ibss.mtx);
Simon Wunderlichcb71b8d2011-12-14 13:33:30 +01001065 kfree_skb(skb);
Alexander Simon13c40c52011-11-30 16:56:34 +01001066 return -EINVAL;
Dan Carpenterfb03c5e2011-12-08 09:49:03 +03001067 }
Johannes Bergadfba3c2010-05-05 15:33:55 +02001068 }
1069
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001070 if (params->ie) {
1071 sdata->u.ibss.ie = kmemdup(params->ie, params->ie_len,
1072 GFP_KERNEL);
1073 if (sdata->u.ibss.ie)
1074 sdata->u.ibss.ie_len = params->ie_len;
1075 }
1076
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001077 sdata->u.ibss.skb = skb;
1078 sdata->u.ibss.state = IEEE80211_IBSS_MLME_SEARCH;
1079 sdata->u.ibss.ibss_join_req = jiffies;
1080
Johannes Berg0e41f712009-04-23 11:48:56 +02001081 memcpy(sdata->u.ibss.ssid, params->ssid, IEEE80211_MAX_SSID_LEN);
Johannes Berg0e41f712009-04-23 11:48:56 +02001082 sdata->u.ibss.ssid_len = params->ssid_len;
1083
Johannes Berg7da7cc12010-08-05 17:02:38 +02001084 mutex_unlock(&sdata->u.ibss.mtx);
1085
1086 mutex_lock(&sdata->local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +02001087 ieee80211_recalc_idle(sdata->local);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001088 mutex_unlock(&sdata->local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +02001089
Simon Wunderlichff3cc5f2011-11-30 16:56:33 +01001090 /*
1091 * 802.11n-2009 9.13.3.1: In an IBSS, the HT Protection field is
1092 * reserved, but an HT STA shall protect HT transmissions as though
1093 * the HT Protection field were set to non-HT mixed mode.
1094 *
1095 * In an IBSS, the RIFS Mode field of the HT Operation element is
1096 * also reserved, but an HT STA shall operate as though this field
1097 * were set to 1.
1098 */
1099
1100 sdata->vif.bss_conf.ht_operation_mode |=
1101 IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED
1102 | IEEE80211_HT_PARAM_RIFS_MODE;
1103
1104 changed |= BSS_CHANGED_HT;
1105 ieee80211_bss_info_change_notify(sdata, changed);
1106
Johannes Berg64592c82010-06-10 10:21:31 +02001107 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001108
1109 return 0;
1110}
1111
1112int ieee80211_ibss_leave(struct ieee80211_sub_if_data *sdata)
1113{
1114 struct sk_buff *skb;
Teemu Paasikivi5ea096c2010-06-14 12:55:33 +03001115 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
1116 struct ieee80211_local *local = sdata->local;
1117 struct cfg80211_bss *cbss;
1118 u16 capability;
Johannes Berg7a17a332010-07-21 11:30:27 +02001119 int active_ibss;
Johannes Berg8bf11d82011-12-15 11:17:37 +01001120 struct sta_info *sta;
Johannes Berg7a17a332010-07-21 11:30:27 +02001121
1122 mutex_lock(&sdata->u.ibss.mtx);
Teemu Paasikivi5ea096c2010-06-14 12:55:33 +03001123
Johannes Bergf3209be2011-06-08 13:27:29 +02001124 sdata->u.ibss.state = IEEE80211_IBSS_MLME_SEARCH;
1125 memset(sdata->u.ibss.bssid, 0, ETH_ALEN);
1126 sdata->u.ibss.ssid_len = 0;
1127
Teemu Paasikivi5ea096c2010-06-14 12:55:33 +03001128 active_ibss = ieee80211_sta_active_ibss(sdata);
1129
1130 if (!active_ibss && !is_zero_ether_addr(ifibss->bssid)) {
1131 capability = WLAN_CAPABILITY_IBSS;
1132
1133 if (ifibss->privacy)
1134 capability |= WLAN_CAPABILITY_PRIVACY;
1135
1136 cbss = cfg80211_get_bss(local->hw.wiphy, ifibss->channel,
1137 ifibss->bssid, ifibss->ssid,
1138 ifibss->ssid_len, WLAN_CAPABILITY_IBSS |
1139 WLAN_CAPABILITY_PRIVACY,
1140 capability);
1141
1142 if (cbss) {
1143 cfg80211_unlink_bss(local->hw.wiphy, cbss);
1144 cfg80211_put_bss(cbss);
1145 }
1146 }
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001147
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001148 sta_info_flush(sdata->local, sdata);
Johannes Berg8bf11d82011-12-15 11:17:37 +01001149
1150 spin_lock_bh(&ifibss->incomplete_lock);
1151 while (!list_empty(&ifibss->incomplete_stations)) {
1152 sta = list_first_entry(&ifibss->incomplete_stations,
1153 struct sta_info, list);
1154 list_del(&sta->list);
1155 spin_unlock_bh(&ifibss->incomplete_lock);
1156
1157 sta_info_free(local, sta);
1158 spin_lock_bh(&ifibss->incomplete_lock);
1159 }
1160 spin_unlock_bh(&ifibss->incomplete_lock);
1161
Eliad Peller86a2ea42011-11-08 15:36:59 +02001162 netif_carrier_off(sdata->dev);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001163
1164 /* remove beacon */
1165 kfree(sdata->u.ibss.ie);
Johannes Berg40b275b2011-05-13 14:15:49 +02001166 skb = rcu_dereference_protected(sdata->u.ibss.presp,
1167 lockdep_is_held(&sdata->u.ibss.mtx));
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001168 RCU_INIT_POINTER(sdata->u.ibss.presp, NULL);
Johannes Berg8fc214b2010-04-28 17:40:43 +02001169 sdata->vif.bss_conf.ibss_joined = false;
1170 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
1171 BSS_CHANGED_IBSS);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001172 synchronize_rcu();
1173 kfree_skb(skb);
1174
Johannes Berg35f20c12010-06-10 10:21:30 +02001175 skb_queue_purge(&sdata->skb_queue);
Johannes Berg5cff20e2009-04-29 12:26:17 +02001176
Johannes Bergbc05d192010-07-21 10:52:40 +02001177 del_timer_sync(&sdata->u.ibss.timer);
Johannes Berg7a17a332010-07-21 11:30:27 +02001178
1179 mutex_unlock(&sdata->u.ibss.mtx);
Johannes Bergbc05d192010-07-21 10:52:40 +02001180
Johannes Berg7da7cc12010-08-05 17:02:38 +02001181 mutex_lock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +02001182 ieee80211_recalc_idle(sdata->local);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001183 mutex_unlock(&local->mtx);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001184
1185 return 0;
1186}