blob: d4e84b22a66d8b92a082b483b3003f80bce7cf6d [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)
Alina Friedrichsen4a332a32009-02-22 18:19:33 +010034#define IEEE80211_IBSS_MERGE_DELAY 0x400000
Johannes Berg46900292009-02-15 12:44:28 +010035#define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
36
37#define IEEE80211_IBSS_MAX_STA_ENTRIES 128
38
39
40static void ieee80211_rx_mgmt_auth_ibss(struct ieee80211_sub_if_data *sdata,
41 struct ieee80211_mgmt *mgmt,
42 size_t len)
43{
44 u16 auth_alg, auth_transaction, status_code;
45
46 if (len < 24 + 6)
47 return;
48
49 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
50 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
51 status_code = le16_to_cpu(mgmt->u.auth.status_code);
52
53 /*
54 * IEEE 802.11 standard does not require authentication in IBSS
55 * networks and most implementations do not seem to use it.
56 * However, try to reply to authentication attempts if someone
57 * has actually implemented this.
58 */
59 if (auth_alg == WLAN_AUTH_OPEN && auth_transaction == 1)
60 ieee80211_send_auth(sdata, 2, WLAN_AUTH_OPEN, NULL, 0,
Johannes Bergfffd0932009-07-08 14:22:54 +020061 sdata->u.ibss.bssid, NULL, 0, 0);
Johannes Berg46900292009-02-15 12:44:28 +010062}
63
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020064static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
65 const u8 *bssid, const int beacon_int,
66 struct ieee80211_channel *chan,
Johannes Bergb59066a2009-05-12 21:18:38 +020067 const u32 basic_rates,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020068 const u16 capability, u64 tsf)
Johannes Berg46900292009-02-15 12:44:28 +010069{
70 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
71 struct ieee80211_local *local = sdata->local;
Johannes Bergb59066a2009-05-12 21:18:38 +020072 int rates, i;
Johannes Berg46900292009-02-15 12:44:28 +010073 struct sk_buff *skb;
74 struct ieee80211_mgmt *mgmt;
75 u8 *pos;
76 struct ieee80211_supported_band *sband;
Johannes Bergf446d102009-10-28 15:12:32 +010077 struct cfg80211_bss *bss;
Johannes Berg57c4d7b2009-04-23 16:10:04 +020078 u32 bss_change;
Johannes Bergb59066a2009-05-12 21:18:38 +020079 u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
Johannes Berg24487982009-04-23 18:52:52 +020080
81 /* Reset own TSF to allow time synchronization work. */
82 drv_reset_tsf(local);
Johannes Berg46900292009-02-15 12:44:28 +010083
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020084 skb = ifibss->skb;
85 rcu_assign_pointer(ifibss->presp, NULL);
86 synchronize_rcu();
87 skb->data = skb->head;
88 skb->len = 0;
89 skb_reset_tail_pointer(skb);
90 skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
Johannes Berg46900292009-02-15 12:44:28 +010091
Johannes Bergaf8cdcd2009-04-19 21:25:43 +020092 if (memcmp(ifibss->bssid, bssid, ETH_ALEN))
93 sta_info_flush(sdata->local, sdata);
Johannes Berg46900292009-02-15 12:44:28 +010094
Johannes Berg49b5c7f2010-04-29 21:34:01 +020095 /* if merging, indicate to driver that we leave the old IBSS */
96 if (sdata->vif.bss_conf.ibss_joined) {
97 sdata->vif.bss_conf.ibss_joined = false;
98 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_IBSS);
99 }
100
Johannes Berg46900292009-02-15 12:44:28 +0100101 memcpy(ifibss->bssid, bssid, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100102
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200103 sdata->drop_unencrypted = capability & WLAN_CAPABILITY_PRIVACY ? 1 : 0;
Johannes Berg46900292009-02-15 12:44:28 +0100104
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200105 local->oper_channel = chan;
Johannes Berg0aaffa92010-05-05 15:28:27 +0200106 WARN_ON(!ieee80211_set_channel_type(local, sdata, NL80211_CHAN_NO_HT));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200107 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200108
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200109 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg46900292009-02-15 12:44:28 +0100110
Johannes Bergb59066a2009-05-12 21:18:38 +0200111 /* build supported rates array */
112 pos = supp_rates;
113 for (i = 0; i < sband->n_bitrates; i++) {
114 int rate = sband->bitrates[i].bitrate;
115 u8 basic = 0;
116 if (basic_rates & BIT(i))
117 basic = 0x80;
118 *pos++ = basic | (u8) (rate / 5);
119 }
120
Johannes Berg46900292009-02-15 12:44:28 +0100121 /* Build IBSS probe response */
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200122 mgmt = (void *) skb_put(skb, 24 + sizeof(mgmt->u.beacon));
Johannes Berg46900292009-02-15 12:44:28 +0100123 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
124 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
125 IEEE80211_STYPE_PROBE_RESP);
126 memset(mgmt->da, 0xff, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100127 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100128 memcpy(mgmt->bssid, ifibss->bssid, ETH_ALEN);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200129 mgmt->u.beacon.beacon_int = cpu_to_le16(beacon_int);
Sujith707c1b42009-03-03 10:15:10 +0530130 mgmt->u.beacon.timestamp = cpu_to_le64(tsf);
Johannes Berg46900292009-02-15 12:44:28 +0100131 mgmt->u.beacon.capab_info = cpu_to_le16(capability);
132
133 pos = skb_put(skb, 2 + ifibss->ssid_len);
134 *pos++ = WLAN_EID_SSID;
135 *pos++ = ifibss->ssid_len;
136 memcpy(pos, ifibss->ssid, ifibss->ssid_len);
137
Johannes Bergb59066a2009-05-12 21:18:38 +0200138 rates = sband->n_bitrates;
Johannes Berg46900292009-02-15 12:44:28 +0100139 if (rates > 8)
140 rates = 8;
141 pos = skb_put(skb, 2 + rates);
142 *pos++ = WLAN_EID_SUPP_RATES;
143 *pos++ = rates;
144 memcpy(pos, supp_rates, rates);
145
146 if (sband->band == IEEE80211_BAND_2GHZ) {
147 pos = skb_put(skb, 2 + 1);
148 *pos++ = WLAN_EID_DS_PARAMS;
149 *pos++ = 1;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200150 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
Johannes Berg46900292009-02-15 12:44:28 +0100151 }
152
153 pos = skb_put(skb, 2 + 2);
154 *pos++ = WLAN_EID_IBSS_PARAMS;
155 *pos++ = 2;
156 /* FIX: set ATIM window based on scan results */
157 *pos++ = 0;
158 *pos++ = 0;
159
Johannes Bergb59066a2009-05-12 21:18:38 +0200160 if (sband->n_bitrates > 8) {
161 rates = sband->n_bitrates - 8;
Johannes Berg46900292009-02-15 12:44:28 +0100162 pos = skb_put(skb, 2 + rates);
163 *pos++ = WLAN_EID_EXT_SUPP_RATES;
164 *pos++ = rates;
165 memcpy(pos, &supp_rates[8], rates);
166 }
167
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200168 if (ifibss->ie_len)
169 memcpy(skb_put(skb, ifibss->ie_len),
170 ifibss->ie, ifibss->ie_len);
171
172 rcu_assign_pointer(ifibss->presp, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100173
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200174 sdata->vif.bss_conf.beacon_int = beacon_int;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +0300175 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200176 bss_change = BSS_CHANGED_BEACON_INT;
177 bss_change |= ieee80211_reset_erp_info(sdata);
178 bss_change |= BSS_CHANGED_BSSID;
179 bss_change |= BSS_CHANGED_BEACON;
180 bss_change |= BSS_CHANGED_BEACON_ENABLED;
Teemu Paasikivi392cfdb2010-06-14 12:55:32 +0300181 bss_change |= BSS_CHANGED_BASIC_RATES;
Johannes Berg8fc214b2010-04-28 17:40:43 +0200182 bss_change |= BSS_CHANGED_IBSS;
183 sdata->vif.bss_conf.ibss_joined = true;
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200184 ieee80211_bss_info_change_notify(sdata, bss_change);
Johannes Berg46900292009-02-15 12:44:28 +0100185
Johannes Bergb59066a2009-05-12 21:18:38 +0200186 ieee80211_sta_def_wmm_params(sdata, sband->n_bitrates, supp_rates);
Johannes Berg46900292009-02-15 12:44:28 +0100187
Johannes Berg46900292009-02-15 12:44:28 +0100188 ifibss->state = IEEE80211_IBSS_MLME_JOINED;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200189 mod_timer(&ifibss->timer,
190 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
Johannes Berg46900292009-02-15 12:44:28 +0100191
Johannes Bergf446d102009-10-28 15:12:32 +0100192 bss = cfg80211_inform_bss_frame(local->hw.wiphy, local->hw.conf.channel,
193 mgmt, skb->len, 0, GFP_KERNEL);
194 cfg80211_put_bss(bss);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200195 cfg80211_ibss_joined(sdata->dev, ifibss->bssid, GFP_KERNEL);
Johannes Berg46900292009-02-15 12:44:28 +0100196}
197
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200198static void ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
199 struct ieee80211_bss *bss)
Johannes Berg46900292009-02-15 12:44:28 +0100200{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100201 struct cfg80211_bss *cbss =
202 container_of((void *)bss, struct cfg80211_bss, priv);
Johannes Bergb59066a2009-05-12 21:18:38 +0200203 struct ieee80211_supported_band *sband;
204 u32 basic_rates;
205 int i, j;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100206 u16 beacon_int = cbss->beacon_interval;
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200207
208 if (beacon_int < 10)
209 beacon_int = 10;
210
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100211 sband = sdata->local->hw.wiphy->bands[cbss->channel->band];
Johannes Bergb59066a2009-05-12 21:18:38 +0200212
213 basic_rates = 0;
214
215 for (i = 0; i < bss->supp_rates_len; i++) {
216 int rate = (bss->supp_rates[i] & 0x7f) * 5;
217 bool is_basic = !!(bss->supp_rates[i] & 0x80);
218
219 for (j = 0; j < sband->n_bitrates; j++) {
220 if (sband->bitrates[j].bitrate == rate) {
221 if (is_basic)
222 basic_rates |= BIT(j);
223 break;
224 }
225 }
226 }
227
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100228 __ieee80211_sta_join_ibss(sdata, cbss->bssid,
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200229 beacon_int,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100230 cbss->channel,
Johannes Bergb59066a2009-05-12 21:18:38 +0200231 basic_rates,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100232 cbss->capability,
233 cbss->tsf);
Johannes Berg46900292009-02-15 12:44:28 +0100234}
235
236static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
237 struct ieee80211_mgmt *mgmt,
238 size_t len,
239 struct ieee80211_rx_status *rx_status,
240 struct ieee802_11_elems *elems,
241 bool beacon)
242{
243 struct ieee80211_local *local = sdata->local;
244 int freq;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100245 struct cfg80211_bss *cbss;
Johannes Berg46900292009-02-15 12:44:28 +0100246 struct ieee80211_bss *bss;
247 struct sta_info *sta;
248 struct ieee80211_channel *channel;
249 u64 beacon_timestamp, rx_timestamp;
250 u32 supp_rates = 0;
251 enum ieee80211_band band = rx_status->band;
252
253 if (elems->ds_params && elems->ds_params_len == 1)
254 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
255 else
256 freq = rx_status->freq;
257
258 channel = ieee80211_get_channel(local->hw.wiphy, freq);
259
260 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
261 return;
262
263 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && elems->supp_rates &&
264 memcmp(mgmt->bssid, sdata->u.ibss.bssid, ETH_ALEN) == 0) {
265 supp_rates = ieee80211_sta_get_rates(local, elems, band);
266
267 rcu_read_lock();
268
Johannes Bergabe60632009-11-25 17:46:18 +0100269 sta = sta_info_get(sdata, mgmt->sa);
Johannes Berg46900292009-02-15 12:44:28 +0100270 if (sta) {
271 u32 prev_rates;
272
273 prev_rates = sta->sta.supp_rates[band];
274 /* make sure mandatory rates are always added */
275 sta->sta.supp_rates[band] = supp_rates |
276 ieee80211_mandatory_rates(local, band);
277
Bruno Randolf09a08cf2010-03-03 18:45:42 +0900278 if (sta->sta.supp_rates[band] != prev_rates) {
Johannes Berg46900292009-02-15 12:44:28 +0100279#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg46900292009-02-15 12:44:28 +0100280 printk(KERN_DEBUG "%s: updated supp_rates set "
Bruno Randolf09a08cf2010-03-03 18:45:42 +0900281 "for %pM based on beacon/probe_response "
282 "(0x%x -> 0x%x)\n",
283 sdata->name, sta->sta.addr,
284 prev_rates, sta->sta.supp_rates[band]);
Johannes Berg46900292009-02-15 12:44:28 +0100285#endif
Bruno Randolf09a08cf2010-03-03 18:45:42 +0900286 rate_control_rate_init(sta);
287 }
Johannes Berg34e89502010-02-03 13:59:58 +0100288 rcu_read_unlock();
289 } else {
290 rcu_read_unlock();
291 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa,
292 supp_rates, GFP_KERNEL);
293 }
Johannes Berg46900292009-02-15 12:44:28 +0100294 }
295
296 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
297 channel, beacon);
298 if (!bss)
299 return;
300
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100301 cbss = container_of((void *)bss, struct cfg80211_bss, priv);
302
Johannes Berg46900292009-02-15 12:44:28 +0100303 /* was just updated in ieee80211_bss_info_update */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100304 beacon_timestamp = cbss->tsf;
Johannes Berg46900292009-02-15 12:44:28 +0100305
306 /* check if we need to merge IBSS */
307
Johannes Berg46900292009-02-15 12:44:28 +0100308 /* we use a fixed BSSID */
Benoit Papillaulta98bfec2010-01-17 22:45:24 +0100309 if (sdata->u.ibss.fixed_bssid)
Johannes Berg46900292009-02-15 12:44:28 +0100310 goto put_bss;
311
312 /* not an IBSS */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100313 if (!(cbss->capability & WLAN_CAPABILITY_IBSS))
Johannes Berg46900292009-02-15 12:44:28 +0100314 goto put_bss;
315
316 /* different channel */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100317 if (cbss->channel != local->oper_channel)
Johannes Berg46900292009-02-15 12:44:28 +0100318 goto put_bss;
319
320 /* different SSID */
321 if (elems->ssid_len != sdata->u.ibss.ssid_len ||
322 memcmp(elems->ssid, sdata->u.ibss.ssid,
323 sdata->u.ibss.ssid_len))
324 goto put_bss;
325
Alina Friedrichsen34e8f082009-02-22 00:07:28 +0100326 /* same BSSID */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100327 if (memcmp(cbss->bssid, sdata->u.ibss.bssid, ETH_ALEN) == 0)
Alina Friedrichsen34e8f082009-02-22 00:07:28 +0100328 goto put_bss;
329
Johannes Berg46900292009-02-15 12:44:28 +0100330 if (rx_status->flag & RX_FLAG_TSFT) {
331 /*
332 * For correct IBSS merging we need mactime; since mactime is
333 * defined as the time the first data symbol of the frame hits
334 * the PHY, and the timestamp of the beacon is defined as "the
335 * time that the data symbol containing the first bit of the
336 * timestamp is transmitted to the PHY plus the transmitting
337 * STA's delays through its local PHY from the MAC-PHY
338 * interface to its interface with the WM" (802.11 11.1.2)
339 * - equals the time this bit arrives at the receiver - we have
340 * to take into account the offset between the two.
341 *
342 * E.g. at 1 MBit that means mactime is 192 usec earlier
343 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
344 */
345 int rate;
346
347 if (rx_status->flag & RX_FLAG_HT)
348 rate = 65; /* TODO: HT rates */
349 else
350 rate = local->hw.wiphy->bands[band]->
351 bitrates[rx_status->rate_idx].bitrate;
352
353 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
Johannes Berg24487982009-04-23 18:52:52 +0200354 } else {
355 /*
356 * second best option: get current TSF
357 * (will return -1 if not supported)
358 */
359 rx_timestamp = drv_get_tsf(local);
360 }
Johannes Berg46900292009-02-15 12:44:28 +0100361
362#ifdef CONFIG_MAC80211_IBSS_DEBUG
363 printk(KERN_DEBUG "RX beacon SA=%pM BSSID="
364 "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
365 mgmt->sa, mgmt->bssid,
366 (unsigned long long)rx_timestamp,
367 (unsigned long long)beacon_timestamp,
368 (unsigned long long)(rx_timestamp - beacon_timestamp),
369 jiffies);
370#endif
371
Alina Friedrichsen4a332a32009-02-22 18:19:33 +0100372 /* give slow hardware some time to do the TSF sync */
373 if (rx_timestamp < IEEE80211_IBSS_MERGE_DELAY)
374 goto put_bss;
375
Johannes Berg46900292009-02-15 12:44:28 +0100376 if (beacon_timestamp > rx_timestamp) {
377#ifdef CONFIG_MAC80211_IBSS_DEBUG
378 printk(KERN_DEBUG "%s: beacon TSF higher than "
379 "local TSF - IBSS merge with BSSID %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100380 sdata->name, mgmt->bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100381#endif
382 ieee80211_sta_join_ibss(sdata, bss);
Bruno Randolf09a08cf2010-03-03 18:45:42 +0900383 supp_rates = ieee80211_sta_get_rates(local, elems, band);
Johannes Berg34e89502010-02-03 13:59:58 +0100384 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa,
385 supp_rates, GFP_KERNEL);
Johannes Berg46900292009-02-15 12:44:28 +0100386 }
387
388 put_bss:
389 ieee80211_rx_bss_put(local, bss);
390}
391
392/*
393 * Add a new IBSS station, will also be called by the RX code when,
394 * in IBSS mode, receiving a frame from a yet-unknown station, hence
395 * must be callable in atomic context.
396 */
397struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
Johannes Berg34e89502010-02-03 13:59:58 +0100398 u8 *bssid,u8 *addr, u32 supp_rates,
399 gfp_t gfp)
Johannes Berg46900292009-02-15 12:44:28 +0100400{
Felix Fietkau2e10d332009-12-20 19:07:09 +0100401 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg46900292009-02-15 12:44:28 +0100402 struct ieee80211_local *local = sdata->local;
403 struct sta_info *sta;
404 int band = local->hw.conf.channel->band;
405
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200406 /*
407 * XXX: Consider removing the least recently used entry and
408 * allow new one to be added.
409 */
Johannes Berg46900292009-02-15 12:44:28 +0100410 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200411 if (net_ratelimit())
412 printk(KERN_DEBUG "%s: No room for a new IBSS STA entry %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100413 sdata->name, addr);
Johannes Berg46900292009-02-15 12:44:28 +0100414 return NULL;
415 }
416
Felix Fietkau2e10d332009-12-20 19:07:09 +0100417 if (ifibss->state == IEEE80211_IBSS_MLME_SEARCH)
418 return NULL;
419
Johannes Berg46900292009-02-15 12:44:28 +0100420 if (compare_ether_addr(bssid, sdata->u.ibss.bssid))
421 return NULL;
422
423#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
424 printk(KERN_DEBUG "%s: Adding new IBSS station %pM (dev=%s)\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100425 wiphy_name(local->hw.wiphy), addr, sdata->name);
Johannes Berg46900292009-02-15 12:44:28 +0100426#endif
427
Johannes Berg34e89502010-02-03 13:59:58 +0100428 sta = sta_info_alloc(sdata, addr, gfp);
Johannes Berg46900292009-02-15 12:44:28 +0100429 if (!sta)
430 return NULL;
431
432 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
433
434 /* make sure mandatory rates are always added */
435 sta->sta.supp_rates[band] = supp_rates |
436 ieee80211_mandatory_rates(local, band);
437
438 rate_control_rate_init(sta);
439
Johannes Berg34e89502010-02-03 13:59:58 +0100440 /* If it fails, maybe we raced another insertion? */
Johannes Berg46900292009-02-15 12:44:28 +0100441 if (sta_info_insert(sta))
Johannes Berg34e89502010-02-03 13:59:58 +0100442 return sta_info_get(sdata, addr);
Johannes Berg46900292009-02-15 12:44:28 +0100443 return sta;
444}
445
446static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
447{
448 struct ieee80211_local *local = sdata->local;
449 int active = 0;
450 struct sta_info *sta;
451
452 rcu_read_lock();
453
454 list_for_each_entry_rcu(sta, &local->sta_list, list) {
455 if (sta->sdata == sdata &&
456 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
457 jiffies)) {
458 active++;
459 break;
460 }
461 }
462
463 rcu_read_unlock();
464
465 return active;
466}
467
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100468/*
469 * This function is called with state == IEEE80211_IBSS_MLME_JOINED
470 */
Johannes Berg46900292009-02-15 12:44:28 +0100471
472static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata)
473{
474 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
475
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200476 mod_timer(&ifibss->timer,
477 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
Johannes Berg46900292009-02-15 12:44:28 +0100478
479 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200480
Sujith450aae32009-11-02 12:33:23 +0530481 if (time_before(jiffies, ifibss->last_scan_completed +
482 IEEE80211_IBSS_MERGE_INTERVAL))
483 return;
484
Johannes Berg46900292009-02-15 12:44:28 +0100485 if (ieee80211_sta_active_ibss(sdata))
486 return;
487
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200488 if (ifibss->fixed_channel)
Johannes Berg46900292009-02-15 12:44:28 +0100489 return;
490
491 printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other "
Johannes Berg47846c92009-11-25 17:46:19 +0100492 "IBSS networks with same SSID (merge)\n", sdata->name);
Johannes Berg46900292009-02-15 12:44:28 +0100493
Johannes Bergbe4a4b62010-05-03 08:49:48 +0200494 ieee80211_request_internal_scan(sdata,
495 ifibss->ssid, ifibss->ssid_len,
496 ifibss->fixed_channel ? ifibss->channel : NULL);
Johannes Berg46900292009-02-15 12:44:28 +0100497}
498
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200499static void ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100500{
501 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
502 struct ieee80211_local *local = sdata->local;
503 struct ieee80211_supported_band *sband;
Johannes Berg46900292009-02-15 12:44:28 +0100504 u8 bssid[ETH_ALEN];
Johannes Berg46900292009-02-15 12:44:28 +0100505 u16 capability;
506 int i;
507
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200508 if (ifibss->fixed_bssid) {
Johannes Berg46900292009-02-15 12:44:28 +0100509 memcpy(bssid, ifibss->bssid, ETH_ALEN);
510 } else {
511 /* Generate random, not broadcast, locally administered BSSID. Mix in
512 * own MAC address to make sure that devices that do not have proper
513 * random number generator get different BSSID. */
514 get_random_bytes(bssid, ETH_ALEN);
515 for (i = 0; i < ETH_ALEN; i++)
Johannes Berg47846c92009-11-25 17:46:19 +0100516 bssid[i] ^= sdata->vif.addr[i];
Johannes Berg46900292009-02-15 12:44:28 +0100517 bssid[0] &= ~0x01;
518 bssid[0] |= 0x02;
519 }
520
521 printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100522 sdata->name, bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100523
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200524 sband = local->hw.wiphy->bands[ifibss->channel->band];
Johannes Berg46900292009-02-15 12:44:28 +0100525
Johannes Berg46900292009-02-15 12:44:28 +0100526 capability = WLAN_CAPABILITY_IBSS;
527
Johannes Bergfffd0932009-07-08 14:22:54 +0200528 if (ifibss->privacy)
Johannes Berg46900292009-02-15 12:44:28 +0100529 capability |= WLAN_CAPABILITY_PRIVACY;
530 else
531 sdata->drop_unencrypted = 0;
532
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200533 __ieee80211_sta_join_ibss(sdata, bssid, sdata->vif.bss_conf.beacon_int,
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +0300534 ifibss->channel, ifibss->basic_rates,
Johannes Bergb59066a2009-05-12 21:18:38 +0200535 capability, 0);
Johannes Berg46900292009-02-15 12:44:28 +0100536}
537
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100538/*
539 * This function is called with state == IEEE80211_IBSS_MLME_SEARCH
540 */
541
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200542static void ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100543{
544 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
545 struct ieee80211_local *local = sdata->local;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100546 struct cfg80211_bss *cbss;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200547 struct ieee80211_channel *chan = NULL;
Johannes Berg46900292009-02-15 12:44:28 +0100548 const u8 *bssid = NULL;
549 int active_ibss;
Johannes Berge0d61882009-05-12 20:47:32 +0200550 u16 capability;
Johannes Berg46900292009-02-15 12:44:28 +0100551
Johannes Berg46900292009-02-15 12:44:28 +0100552 active_ibss = ieee80211_sta_active_ibss(sdata);
553#ifdef CONFIG_MAC80211_IBSS_DEBUG
554 printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100555 sdata->name, active_ibss);
Johannes Berg46900292009-02-15 12:44:28 +0100556#endif /* CONFIG_MAC80211_IBSS_DEBUG */
557
558 if (active_ibss)
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200559 return;
Johannes Berg46900292009-02-15 12:44:28 +0100560
Johannes Berge0d61882009-05-12 20:47:32 +0200561 capability = WLAN_CAPABILITY_IBSS;
Johannes Bergfffd0932009-07-08 14:22:54 +0200562 if (ifibss->privacy)
Johannes Berge0d61882009-05-12 20:47:32 +0200563 capability |= WLAN_CAPABILITY_PRIVACY;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200564 if (ifibss->fixed_bssid)
Johannes Berg46900292009-02-15 12:44:28 +0100565 bssid = ifibss->bssid;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200566 if (ifibss->fixed_channel)
567 chan = ifibss->channel;
568 if (!is_zero_ether_addr(ifibss->bssid))
569 bssid = ifibss->bssid;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100570 cbss = cfg80211_get_bss(local->hw.wiphy, chan, bssid,
571 ifibss->ssid, ifibss->ssid_len,
572 WLAN_CAPABILITY_IBSS | WLAN_CAPABILITY_PRIVACY,
573 capability);
Johannes Berg46900292009-02-15 12:44:28 +0100574
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100575 if (cbss) {
576 struct ieee80211_bss *bss;
577
578 bss = (void *)cbss->priv;
Johannes Berg46900292009-02-15 12:44:28 +0100579#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg46900292009-02-15 12:44:28 +0100580 printk(KERN_DEBUG " sta_find_ibss: selected %pM current "
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100581 "%pM\n", cbss->bssid, ifibss->bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100582#endif /* CONFIG_MAC80211_IBSS_DEBUG */
583
Johannes Berg46900292009-02-15 12:44:28 +0100584 printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
585 " based on configured SSID\n",
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100586 sdata->name, cbss->bssid);
Johannes Berg46900292009-02-15 12:44:28 +0100587
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200588 ieee80211_sta_join_ibss(sdata, bss);
Johannes Berg46900292009-02-15 12:44:28 +0100589 ieee80211_rx_bss_put(local, bss);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200590 return;
Reinette Chatred419b9f2009-10-19 14:55:37 -0700591 }
Johannes Berg46900292009-02-15 12:44:28 +0100592
593#ifdef CONFIG_MAC80211_IBSS_DEBUG
594 printk(KERN_DEBUG " did not try to join ibss\n");
595#endif /* CONFIG_MAC80211_IBSS_DEBUG */
596
597 /* Selected IBSS not found in current scan results - try to scan */
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100598 if (time_after(jiffies, ifibss->last_scan_completed +
Johannes Berg46900292009-02-15 12:44:28 +0100599 IEEE80211_SCAN_INTERVAL)) {
600 printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to "
Johannes Berg47846c92009-11-25 17:46:19 +0100601 "join\n", sdata->name);
Johannes Berg46900292009-02-15 12:44:28 +0100602
Johannes Bergbe4a4b62010-05-03 08:49:48 +0200603 ieee80211_request_internal_scan(sdata,
604 ifibss->ssid, ifibss->ssid_len,
605 ifibss->fixed_channel ? ifibss->channel : NULL);
Benoit Papillaultce9058a2010-01-17 22:45:23 +0100606 } else {
Johannes Berg46900292009-02-15 12:44:28 +0100607 int interval = IEEE80211_SCAN_INTERVAL;
608
609 if (time_after(jiffies, ifibss->ibss_join_req +
610 IEEE80211_IBSS_JOIN_TIMEOUT)) {
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200611 if (!(local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS)) {
612 ieee80211_sta_create_ibss(sdata);
613 return;
614 }
Johannes Berg46900292009-02-15 12:44:28 +0100615 printk(KERN_DEBUG "%s: IBSS not allowed on"
Johannes Berg47846c92009-11-25 17:46:19 +0100616 " %d MHz\n", sdata->name,
Johannes Berg46900292009-02-15 12:44:28 +0100617 local->hw.conf.channel->center_freq);
618
619 /* No IBSS found - decrease scan interval and continue
620 * scanning. */
621 interval = IEEE80211_SCAN_INTERVAL_SLOW;
622 }
623
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200624 mod_timer(&ifibss->timer,
625 round_jiffies(jiffies + interval));
Johannes Berg46900292009-02-15 12:44:28 +0100626 }
Johannes Berg46900292009-02-15 12:44:28 +0100627}
628
629static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
630 struct ieee80211_mgmt *mgmt,
631 size_t len)
632{
633 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
634 struct ieee80211_local *local = sdata->local;
635 int tx_last_beacon;
636 struct sk_buff *skb;
637 struct ieee80211_mgmt *resp;
638 u8 *pos, *end;
639
640 if (ifibss->state != IEEE80211_IBSS_MLME_JOINED ||
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200641 len < 24 + 2 || !ifibss->presp)
Johannes Berg46900292009-02-15 12:44:28 +0100642 return;
643
Johannes Berg24487982009-04-23 18:52:52 +0200644 tx_last_beacon = drv_tx_last_beacon(local);
Johannes Berg46900292009-02-15 12:44:28 +0100645
646#ifdef CONFIG_MAC80211_IBSS_DEBUG
647 printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
648 " (tx_last_beacon=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100649 sdata->name, mgmt->sa, mgmt->da,
Johannes Berg46900292009-02-15 12:44:28 +0100650 mgmt->bssid, tx_last_beacon);
651#endif /* CONFIG_MAC80211_IBSS_DEBUG */
652
653 if (!tx_last_beacon)
654 return;
655
656 if (memcmp(mgmt->bssid, ifibss->bssid, ETH_ALEN) != 0 &&
657 memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
658 return;
659
660 end = ((u8 *) mgmt) + len;
661 pos = mgmt->u.probe_req.variable;
662 if (pos[0] != WLAN_EID_SSID ||
663 pos + 2 + pos[1] > end) {
664#ifdef CONFIG_MAC80211_IBSS_DEBUG
665 printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq "
666 "from %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100667 sdata->name, mgmt->sa);
Johannes Berg46900292009-02-15 12:44:28 +0100668#endif
669 return;
670 }
671 if (pos[1] != 0 &&
672 (pos[1] != ifibss->ssid_len ||
Benoit Papillault0da780c2010-02-05 01:21:03 +0100673 memcmp(pos + 2, ifibss->ssid, ifibss->ssid_len))) {
Johannes Berg46900292009-02-15 12:44:28 +0100674 /* Ignore ProbeReq for foreign SSID */
675 return;
676 }
677
678 /* Reply with ProbeResp */
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200679 skb = skb_copy(ifibss->presp, GFP_KERNEL);
Johannes Berg46900292009-02-15 12:44:28 +0100680 if (!skb)
681 return;
682
683 resp = (struct ieee80211_mgmt *) skb->data;
684 memcpy(resp->da, mgmt->sa, ETH_ALEN);
685#ifdef CONFIG_MAC80211_IBSS_DEBUG
686 printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100687 sdata->name, resp->da);
Johannes Berg46900292009-02-15 12:44:28 +0100688#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Berg62ae67b2009-11-18 18:42:05 +0100689 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
690 ieee80211_tx_skb(sdata, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100691}
692
693static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
694 struct ieee80211_mgmt *mgmt,
695 size_t len,
696 struct ieee80211_rx_status *rx_status)
697{
698 size_t baselen;
699 struct ieee802_11_elems elems;
700
Johannes Berg47846c92009-11-25 17:46:19 +0100701 if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN))
Johannes Berg46900292009-02-15 12:44:28 +0100702 return; /* ignore ProbeResp to foreign address */
703
704 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
705 if (baselen > len)
706 return;
707
708 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
709 &elems);
710
711 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
712}
713
714static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
715 struct ieee80211_mgmt *mgmt,
716 size_t len,
717 struct ieee80211_rx_status *rx_status)
718{
719 size_t baselen;
720 struct ieee802_11_elems elems;
721
722 /* Process beacon from the current BSS */
723 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
724 if (baselen > len)
725 return;
726
727 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
728
729 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
730}
731
Johannes Berg1fa57d02010-06-10 10:21:32 +0200732void ieee80211_ibss_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
733 struct sk_buff *skb)
Johannes Berg46900292009-02-15 12:44:28 +0100734{
735 struct ieee80211_rx_status *rx_status;
736 struct ieee80211_mgmt *mgmt;
737 u16 fc;
738
Johannes Bergf1d58c22009-06-17 13:13:00 +0200739 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg46900292009-02-15 12:44:28 +0100740 mgmt = (struct ieee80211_mgmt *) skb->data;
741 fc = le16_to_cpu(mgmt->frame_control);
742
743 switch (fc & IEEE80211_FCTL_STYPE) {
744 case IEEE80211_STYPE_PROBE_REQ:
745 ieee80211_rx_mgmt_probe_req(sdata, mgmt, skb->len);
746 break;
747 case IEEE80211_STYPE_PROBE_RESP:
748 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
749 rx_status);
750 break;
751 case IEEE80211_STYPE_BEACON:
752 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
753 rx_status);
754 break;
755 case IEEE80211_STYPE_AUTH:
756 ieee80211_rx_mgmt_auth_ibss(sdata, mgmt, skb->len);
757 break;
758 }
Johannes Berg46900292009-02-15 12:44:28 +0100759}
760
Johannes Berg1fa57d02010-06-10 10:21:32 +0200761void ieee80211_ibss_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg46900292009-02-15 12:44:28 +0100762{
Johannes Berg1fa57d02010-06-10 10:21:32 +0200763 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg46900292009-02-15 12:44:28 +0100764
765 if (!test_and_clear_bit(IEEE80211_IBSS_REQ_RUN, &ifibss->request))
766 return;
767
768 switch (ifibss->state) {
769 case IEEE80211_IBSS_MLME_SEARCH:
770 ieee80211_sta_find_ibss(sdata);
771 break;
772 case IEEE80211_IBSS_MLME_JOINED:
773 ieee80211_sta_merge_ibss(sdata);
774 break;
775 default:
776 WARN_ON(1);
777 break;
778 }
779}
780
Johannes Berg3a4d4aa2010-05-26 16:41:40 +0200781static void ieee80211_queue_ibss_work(struct ieee80211_sub_if_data *sdata)
782{
783 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
784 struct ieee80211_local *local = sdata->local;
785
786 set_bit(IEEE80211_IBSS_REQ_RUN, &ifibss->request);
Johannes Berg64592c82010-06-10 10:21:31 +0200787 ieee80211_queue_work(&local->hw, &sdata->work);
Johannes Berg3a4d4aa2010-05-26 16:41:40 +0200788}
789
Johannes Berg46900292009-02-15 12:44:28 +0100790static void ieee80211_ibss_timer(unsigned long data)
791{
792 struct ieee80211_sub_if_data *sdata =
793 (struct ieee80211_sub_if_data *) data;
794 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
795 struct ieee80211_local *local = sdata->local;
796
Johannes Berg5bb644a2009-05-17 11:40:42 +0200797 if (local->quiescing) {
798 ifibss->timer_running = true;
799 return;
800 }
801
Johannes Berg3a4d4aa2010-05-26 16:41:40 +0200802 ieee80211_queue_ibss_work(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100803}
804
Johannes Berg5bb644a2009-05-17 11:40:42 +0200805#ifdef CONFIG_PM
806void ieee80211_ibss_quiesce(struct ieee80211_sub_if_data *sdata)
807{
808 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
809
Johannes Berg5bb644a2009-05-17 11:40:42 +0200810 if (del_timer_sync(&ifibss->timer))
811 ifibss->timer_running = true;
812}
813
814void ieee80211_ibss_restart(struct ieee80211_sub_if_data *sdata)
815{
816 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
817
818 if (ifibss->timer_running) {
819 add_timer(&ifibss->timer);
820 ifibss->timer_running = false;
821 }
822}
823#endif
824
Johannes Berg46900292009-02-15 12:44:28 +0100825void ieee80211_ibss_setup_sdata(struct ieee80211_sub_if_data *sdata)
826{
827 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
828
Johannes Berg46900292009-02-15 12:44:28 +0100829 setup_timer(&ifibss->timer, ieee80211_ibss_timer,
830 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100831}
832
833/* scan finished notification */
834void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local)
835{
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200836 struct ieee80211_sub_if_data *sdata;
Johannes Berg46900292009-02-15 12:44:28 +0100837
Johannes Berg29b4a4f2009-04-21 00:30:49 +0200838 mutex_lock(&local->iflist_mtx);
839 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +0100840 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e41f712009-04-23 11:48:56 +0200841 continue;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200842 if (sdata->vif.type != NL80211_IFTYPE_ADHOC)
843 continue;
Johannes Berg0e41f712009-04-23 11:48:56 +0200844 if (!sdata->u.ibss.ssid_len)
845 continue;
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200846 sdata->u.ibss.last_scan_completed = jiffies;
Johannes Berg3a4d4aa2010-05-26 16:41:40 +0200847 ieee80211_queue_ibss_work(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100848 }
Johannes Berg29b4a4f2009-04-21 00:30:49 +0200849 mutex_unlock(&local->iflist_mtx);
Johannes Berg46900292009-02-15 12:44:28 +0100850}
851
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200852int ieee80211_ibss_join(struct ieee80211_sub_if_data *sdata,
853 struct cfg80211_ibss_params *params)
854{
855 struct sk_buff *skb;
856
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200857 if (params->bssid) {
858 memcpy(sdata->u.ibss.bssid, params->bssid, ETH_ALEN);
859 sdata->u.ibss.fixed_bssid = true;
860 } else
861 sdata->u.ibss.fixed_bssid = false;
862
Johannes Bergfffd0932009-07-08 14:22:54 +0200863 sdata->u.ibss.privacy = params->privacy;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +0300864 sdata->u.ibss.basic_rates = params->basic_rates;
Johannes Bergfffd0932009-07-08 14:22:54 +0200865
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200866 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
867
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200868 sdata->u.ibss.channel = params->channel;
869 sdata->u.ibss.fixed_channel = params->channel_fixed;
870
Johannes Bergadfba3c2010-05-05 15:33:55 +0200871 /* fix ourselves to that channel now already */
872 if (params->channel_fixed) {
873 sdata->local->oper_channel = params->channel;
Johannes Berg0aaffa92010-05-05 15:28:27 +0200874 WARN_ON(!ieee80211_set_channel_type(sdata->local, sdata,
875 NL80211_CHAN_NO_HT));
Johannes Bergadfba3c2010-05-05 15:33:55 +0200876 }
877
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200878 if (params->ie) {
879 sdata->u.ibss.ie = kmemdup(params->ie, params->ie_len,
880 GFP_KERNEL);
881 if (sdata->u.ibss.ie)
882 sdata->u.ibss.ie_len = params->ie_len;
883 }
884
885 skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom +
886 36 /* bitrates */ +
887 34 /* SSID */ +
888 3 /* DS params */ +
889 4 /* IBSS params */ +
890 params->ie_len);
891 if (!skb)
892 return -ENOMEM;
893
894 sdata->u.ibss.skb = skb;
895 sdata->u.ibss.state = IEEE80211_IBSS_MLME_SEARCH;
896 sdata->u.ibss.ibss_join_req = jiffies;
897
Johannes Berg0e41f712009-04-23 11:48:56 +0200898 memcpy(sdata->u.ibss.ssid, params->ssid, IEEE80211_MAX_SSID_LEN);
899
900 /*
901 * The ssid_len setting below is used to see whether
902 * we are active, and we need all other settings
903 * before that may get visible.
904 */
905 mb();
906
907 sdata->u.ibss.ssid_len = params->ssid_len;
908
Johannes Berg5cff20e2009-04-29 12:26:17 +0200909 ieee80211_recalc_idle(sdata->local);
910
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200911 set_bit(IEEE80211_IBSS_REQ_RUN, &sdata->u.ibss.request);
Johannes Berg64592c82010-06-10 10:21:31 +0200912 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200913
914 return 0;
915}
916
917int ieee80211_ibss_leave(struct ieee80211_sub_if_data *sdata)
918{
919 struct sk_buff *skb;
Teemu Paasikivi5ea096c2010-06-14 12:55:33 +0300920 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
921 struct ieee80211_local *local = sdata->local;
922 struct cfg80211_bss *cbss;
923 u16 capability;
924 int active_ibss = 0;
925
926 active_ibss = ieee80211_sta_active_ibss(sdata);
927
928 if (!active_ibss && !is_zero_ether_addr(ifibss->bssid)) {
929 capability = WLAN_CAPABILITY_IBSS;
930
931 if (ifibss->privacy)
932 capability |= WLAN_CAPABILITY_PRIVACY;
933
934 cbss = cfg80211_get_bss(local->hw.wiphy, ifibss->channel,
935 ifibss->bssid, ifibss->ssid,
936 ifibss->ssid_len, WLAN_CAPABILITY_IBSS |
937 WLAN_CAPABILITY_PRIVACY,
938 capability);
939
940 if (cbss) {
941 cfg80211_unlink_bss(local->hw.wiphy, cbss);
942 cfg80211_put_bss(cbss);
943 }
944 }
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200945
946 del_timer_sync(&sdata->u.ibss.timer);
947 clear_bit(IEEE80211_IBSS_REQ_RUN, &sdata->u.ibss.request);
Johannes Berg64592c82010-06-10 10:21:31 +0200948 cancel_work_sync(&sdata->work);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200949 clear_bit(IEEE80211_IBSS_REQ_RUN, &sdata->u.ibss.request);
950
951 sta_info_flush(sdata->local, sdata);
952
953 /* remove beacon */
954 kfree(sdata->u.ibss.ie);
955 skb = sdata->u.ibss.presp;
956 rcu_assign_pointer(sdata->u.ibss.presp, NULL);
Johannes Berg8fc214b2010-04-28 17:40:43 +0200957 sdata->vif.bss_conf.ibss_joined = false;
958 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
959 BSS_CHANGED_IBSS);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200960 synchronize_rcu();
961 kfree_skb(skb);
962
Johannes Berg35f20c12010-06-10 10:21:30 +0200963 skb_queue_purge(&sdata->skb_queue);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200964 memset(sdata->u.ibss.bssid, 0, ETH_ALEN);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200965 sdata->u.ibss.ssid_len = 0;
966
967 ieee80211_recalc_idle(sdata->local);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200968
969 return 0;
970}