cfg80211/mac80211: use reduced txpower for 5 and 10 MHz
[deliverable/linux.git] / net / mac80211 / ibss.c
CommitLineData
46900298
JB
1/*
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>
5a0e3ad6 16#include <linux/slab.h>
46900298
JB
17#include <linux/if_ether.h>
18#include <linux/skbuff.h>
19#include <linux/if_arp.h>
20#include <linux/etherdevice.h>
21#include <linux/rtnetlink.h>
22#include <net/mac80211.h>
46900298
JB
23
24#include "ieee80211_i.h"
24487981 25#include "driver-ops.h"
46900298
JB
26#include "rate.h"
27
28#define IEEE80211_SCAN_INTERVAL (2 * HZ)
46900298
JB
29#define IEEE80211_IBSS_JOIN_TIMEOUT (7 * HZ)
30
31#define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ)
32#define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
33
34#define IEEE80211_IBSS_MAX_STA_ENTRIES 128
35
36
af8cdcd8
JB
37static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
38 const u8 *bssid, const int beacon_int,
39 struct ieee80211_channel *chan,
b59066a2 40 const u32 basic_rates,
c13a765b
SM
41 const u16 capability, u64 tsf,
42 bool creator)
46900298
JB
43{
44 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
45 struct ieee80211_local *local = sdata->local;
2103dec1 46 int rates_n = 0, i, ri;
46900298
JB
47 struct ieee80211_mgmt *mgmt;
48 u8 *pos;
49 struct ieee80211_supported_band *sband;
f446d10f 50 struct cfg80211_bss *bss;
2103dec1 51 u32 bss_change, rate_flags, rates = 0, rates_added = 0;
b59066a2 52 u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
683b6d3b 53 struct cfg80211_chan_def chandef;
c3ffeab4
JB
54 struct beacon_data *presp;
55 int frame_len;
2103dec1 56 int shift;
24487981 57
8d61ffa5 58 sdata_assert_lock(sdata);
7a17a33c 59
24487981 60 /* Reset own TSF to allow time synchronization work. */
37a41b4a 61 drv_reset_tsf(local, sdata);
46900298 62
b203ca39 63 if (!ether_addr_equal(ifibss->bssid, bssid))
b998e8bb 64 sta_info_flush(sdata);
46900298 65
49b5c7f4
JB
66 /* if merging, indicate to driver that we leave the old IBSS */
67 if (sdata->vif.bss_conf.ibss_joined) {
68 sdata->vif.bss_conf.ibss_joined = false;
c13a765b 69 sdata->vif.bss_conf.ibss_creator = false;
1852d40e 70 sdata->vif.bss_conf.enable_beacon = false;
86a2ea41 71 netif_carrier_off(sdata->dev);
1852d40e
JB
72 ieee80211_bss_info_change_notify(sdata,
73 BSS_CHANGED_IBSS |
74 BSS_CHANGED_BEACON_ENABLED);
49b5c7f4
JB
75 }
76
c3ffeab4 77 presp = rcu_dereference_protected(ifibss->presp,
8d61ffa5 78 lockdep_is_held(&sdata->wdev.mtx));
c3ffeab4
JB
79 rcu_assign_pointer(ifibss->presp, NULL);
80 if (presp)
81 kfree_rcu(presp, rcu_head);
1852d40e 82
af8cdcd8 83 sdata->drop_unencrypted = capability & WLAN_CAPABILITY_PRIVACY ? 1 : 0;
46900298 84
3aede78a 85 chandef = ifibss->chandef;
4bf88530
JB
86 if (!cfg80211_reg_can_beacon(local->hw.wiphy, &chandef)) {
87 chandef.width = NL80211_CHAN_WIDTH_20;
88 chandef.center_freq1 = chan->center_freq;
89 }
55de908a
JB
90
91 ieee80211_vif_release_channel(sdata);
4bf88530 92 if (ieee80211_vif_use_channel(sdata, &chandef,
55de908a
JB
93 ifibss->fixed_channel ?
94 IEEE80211_CHANCTX_SHARED :
95 IEEE80211_CHANCTX_EXCLUSIVE)) {
96 sdata_info(sdata, "Failed to join IBSS, no channel context\n");
97 return;
13c40c54 98 }
55de908a
JB
99
100 memcpy(ifibss->bssid, bssid, ETH_ALEN);
57c4d7b4 101
af8cdcd8 102 sband = local->hw.wiphy->bands[chan->band];
2103dec1 103 shift = ieee80211_vif_get_shift(&sdata->vif);
46900298
JB
104
105 /* Build IBSS probe response */
c3ffeab4
JB
106 frame_len = sizeof(struct ieee80211_hdr_3addr) +
107 12 /* struct ieee80211_mgmt.u.beacon */ +
108 2 + IEEE80211_MAX_SSID_LEN /* max SSID */ +
109 2 + 8 /* max Supported Rates */ +
110 3 /* max DS params */ +
111 4 /* IBSS params */ +
112 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
113 2 + sizeof(struct ieee80211_ht_cap) +
114 2 + sizeof(struct ieee80211_ht_operation) +
115 ifibss->ie_len;
116 presp = kzalloc(sizeof(*presp) + frame_len, GFP_KERNEL);
117 if (!presp)
118 return;
119
120 presp->head = (void *)(presp + 1);
121
122 mgmt = (void *) presp->head;
46900298
JB
123 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
124 IEEE80211_STYPE_PROBE_RESP);
e83e6541 125 eth_broadcast_addr(mgmt->da);
47846c9b 126 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
46900298 127 memcpy(mgmt->bssid, ifibss->bssid, ETH_ALEN);
57c4d7b4 128 mgmt->u.beacon.beacon_int = cpu_to_le16(beacon_int);
707c1b4e 129 mgmt->u.beacon.timestamp = cpu_to_le64(tsf);
46900298
JB
130 mgmt->u.beacon.capab_info = cpu_to_le16(capability);
131
c3ffeab4
JB
132 pos = (u8 *)mgmt + offsetof(struct ieee80211_mgmt, u.beacon.variable);
133
46900298
JB
134 *pos++ = WLAN_EID_SSID;
135 *pos++ = ifibss->ssid_len;
136 memcpy(pos, ifibss->ssid, ifibss->ssid_len);
c3ffeab4 137 pos += ifibss->ssid_len;
46900298 138
2103dec1
SW
139 rate_flags = ieee80211_chandef_rate_flags(&chandef);
140 for (i = 0; i < sband->n_bitrates; i++) {
141 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
142 continue;
143
144 rates |= BIT(i);
145 rates_n++;
146 }
147
46900298 148 *pos++ = WLAN_EID_SUPP_RATES;
2103dec1
SW
149 *pos++ = min_t(int, 8, rates_n);
150 for (ri = 0; ri < sband->n_bitrates; ri++) {
151 int rate = DIV_ROUND_UP(sband->bitrates[ri].bitrate,
152 5 * (1 << shift));
c3ffeab4 153 u8 basic = 0;
2103dec1
SW
154 if (!(rates & BIT(ri)))
155 continue;
156
157 if (basic_rates & BIT(ri))
c3ffeab4 158 basic = 0x80;
2103dec1
SW
159 *pos++ = basic | (u8) rate;
160 if (++rates_added == 8)
161 break;
c3ffeab4 162 }
46900298
JB
163
164 if (sband->band == IEEE80211_BAND_2GHZ) {
46900298
JB
165 *pos++ = WLAN_EID_DS_PARAMS;
166 *pos++ = 1;
af8cdcd8 167 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
46900298
JB
168 }
169
46900298
JB
170 *pos++ = WLAN_EID_IBSS_PARAMS;
171 *pos++ = 2;
172 /* FIX: set ATIM window based on scan results */
173 *pos++ = 0;
174 *pos++ = 0;
175
2103dec1
SW
176 /* put the remaining rates in WLAN_EID_EXT_SUPP_RATES */
177 if (rates_n > 8) {
46900298 178 *pos++ = WLAN_EID_EXT_SUPP_RATES;
2103dec1
SW
179 *pos++ = rates_n - 8;
180 for (; ri < sband->n_bitrates; ri++) {
181 int rate = DIV_ROUND_UP(sband->bitrates[ri].bitrate,
182 5 * (1 << shift));
c3ffeab4 183 u8 basic = 0;
2103dec1
SW
184 if (!(rates & BIT(ri)))
185 continue;
186
187 if (basic_rates & BIT(ri))
c3ffeab4 188 basic = 0x80;
2103dec1 189 *pos++ = basic | (u8) rate;
c3ffeab4 190 }
46900298
JB
191 }
192
c3ffeab4
JB
193 if (ifibss->ie_len) {
194 memcpy(pos, ifibss->ie, ifibss->ie_len);
195 pos += ifibss->ie_len;
196 }
af8cdcd8 197
13c40c54 198 /* add HT capability and information IEs */
4bf88530 199 if (chandef.width != NL80211_CHAN_WIDTH_20_NOHT &&
0418a445
SW
200 chandef.width != NL80211_CHAN_WIDTH_5 &&
201 chandef.width != NL80211_CHAN_WIDTH_10 &&
683b6d3b 202 sband->ht_cap.ht_supported) {
822854b0
SW
203 struct ieee80211_sta_ht_cap ht_cap;
204
205 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
206 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
207
208 pos = ieee80211_ie_build_ht_cap(pos, &ht_cap, ht_cap.cap);
0d894ec5
AN
209 /*
210 * Note: According to 802.11n-2009 9.13.3.1, HT Protection
211 * field and RIFS Mode are reserved in IBSS mode, therefore
212 * keep them at 0
213 */
074d46d1 214 pos = ieee80211_ie_build_ht_oper(pos, &sband->ht_cap,
4bf88530 215 &chandef, 0);
13c40c54
AS
216 }
217
32c5057b 218 if (local->hw.queues >= IEEE80211_NUM_ACS) {
9eba6125
BR
219 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
220 *pos++ = 7; /* len */
221 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
222 *pos++ = 0x50;
223 *pos++ = 0xf2;
224 *pos++ = 2; /* WME */
225 *pos++ = 0; /* WME info */
226 *pos++ = 1; /* WME ver */
227 *pos++ = 0; /* U-APSD no in use */
228 }
229
c3ffeab4
JB
230 presp->head_len = pos - presp->head;
231 if (WARN_ON(presp->head_len > frame_len))
232 return;
233
234 rcu_assign_pointer(ifibss->presp, presp);
46900298 235
d6a83228 236 sdata->vif.bss_conf.enable_beacon = true;
2d0ddec5 237 sdata->vif.bss_conf.beacon_int = beacon_int;
fbd2c8dc 238 sdata->vif.bss_conf.basic_rates = basic_rates;
0ca54f6c
MP
239 sdata->vif.bss_conf.ssid_len = ifibss->ssid_len;
240 memcpy(sdata->vif.bss_conf.ssid, ifibss->ssid, ifibss->ssid_len);
2d0ddec5
JB
241 bss_change = BSS_CHANGED_BEACON_INT;
242 bss_change |= ieee80211_reset_erp_info(sdata);
243 bss_change |= BSS_CHANGED_BSSID;
244 bss_change |= BSS_CHANGED_BEACON;
245 bss_change |= BSS_CHANGED_BEACON_ENABLED;
392cfdb1 246 bss_change |= BSS_CHANGED_BASIC_RATES;
13c40c54 247 bss_change |= BSS_CHANGED_HT;
8fc214ba 248 bss_change |= BSS_CHANGED_IBSS;
0ca54f6c 249 bss_change |= BSS_CHANGED_SSID;
2f91a967
SW
250
251 /*
252 * In 5 GHz/802.11a, we can always use short slot time.
253 * (IEEE 802.11-2012 18.3.8.7)
254 *
255 * In 2.4GHz, we must always use long slots in IBSS for compatibility
256 * reasons.
257 * (IEEE 802.11-2012 19.4.5)
258 *
259 * HT follows these specifications (IEEE 802.11-2012 20.3.18)
260 */
261 sdata->vif.bss_conf.use_short_slot = chan->band == IEEE80211_BAND_5GHZ;
262 bss_change |= BSS_CHANGED_ERP_SLOT;
263
8fc214ba 264 sdata->vif.bss_conf.ibss_joined = true;
c13a765b 265 sdata->vif.bss_conf.ibss_creator = creator;
2d0ddec5 266 ieee80211_bss_info_change_notify(sdata, bss_change);
46900298 267
2103dec1 268 ieee80211_sta_def_wmm_params(sdata, rates, supp_rates);
46900298 269
46900298 270 ifibss->state = IEEE80211_IBSS_MLME_JOINED;
af8cdcd8
JB
271 mod_timer(&ifibss->timer,
272 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
46900298 273
273686d6 274 bss = cfg80211_inform_bss_frame(local->hw.wiphy, chan,
c3ffeab4 275 mgmt, presp->head_len, 0, GFP_KERNEL);
5b112d3d 276 cfg80211_put_bss(local->hw.wiphy, bss);
86a2ea41 277 netif_carrier_on(sdata->dev);
af8cdcd8 278 cfg80211_ibss_joined(sdata->dev, ifibss->bssid, GFP_KERNEL);
46900298
JB
279}
280
af8cdcd8
JB
281static void ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
282 struct ieee80211_bss *bss)
46900298 283{
0c1ad2ca
JB
284 struct cfg80211_bss *cbss =
285 container_of((void *)bss, struct cfg80211_bss, priv);
b59066a2
JB
286 struct ieee80211_supported_band *sband;
287 u32 basic_rates;
288 int i, j;
0c1ad2ca 289 u16 beacon_int = cbss->beacon_interval;
8cef2c9d
JB
290 const struct cfg80211_bss_ies *ies;
291 u64 tsf;
2103dec1
SW
292 u32 rate_flags;
293 int shift;
57c4d7b4 294
8d61ffa5 295 sdata_assert_lock(sdata);
7a17a33c 296
57c4d7b4
JB
297 if (beacon_int < 10)
298 beacon_int = 10;
299
0c1ad2ca 300 sband = sdata->local->hw.wiphy->bands[cbss->channel->band];
2103dec1
SW
301 rate_flags = ieee80211_chandef_rate_flags(&sdata->u.ibss.chandef);
302 shift = ieee80211_vif_get_shift(&sdata->vif);
b59066a2
JB
303
304 basic_rates = 0;
305
306 for (i = 0; i < bss->supp_rates_len; i++) {
2103dec1 307 int rate = bss->supp_rates[i] & 0x7f;
b59066a2
JB
308 bool is_basic = !!(bss->supp_rates[i] & 0x80);
309
310 for (j = 0; j < sband->n_bitrates; j++) {
2103dec1
SW
311 int brate;
312 if ((rate_flags & sband->bitrates[j].flags)
313 != rate_flags)
314 continue;
315
316 brate = DIV_ROUND_UP(sband->bitrates[j].bitrate,
317 5 * (1 << shift));
318 if (brate == rate) {
b59066a2
JB
319 if (is_basic)
320 basic_rates |= BIT(j);
321 break;
322 }
323 }
324 }
325
8cef2c9d
JB
326 rcu_read_lock();
327 ies = rcu_dereference(cbss->ies);
328 tsf = ies->tsf;
329 rcu_read_unlock();
330
0c1ad2ca 331 __ieee80211_sta_join_ibss(sdata, cbss->bssid,
57c4d7b4 332 beacon_int,
0c1ad2ca 333 cbss->channel,
b59066a2 334 basic_rates,
0c1ad2ca 335 cbss->capability,
8cef2c9d 336 tsf, false);
46900298
JB
337}
338
52874a5e 339static struct sta_info *ieee80211_ibss_finish_sta(struct sta_info *sta)
8bf11d8d
JB
340 __acquires(RCU)
341{
342 struct ieee80211_sub_if_data *sdata = sta->sdata;
343 u8 addr[ETH_ALEN];
344
345 memcpy(addr, sta->sta.addr, ETH_ALEN);
346
bdcbd8e0 347 ibss_dbg(sdata, "Adding new IBSS station %pM\n", addr);
8bf11d8d 348
83d5cc01
JB
349 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
350 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
267335d6
AQ
351 /* authorize the station only if the network is not RSN protected. If
352 * not wait for the userspace to authorize it */
353 if (!sta->sdata->u.ibss.control_port)
354 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
8bf11d8d
JB
355
356 rate_control_rate_init(sta);
357
358 /* If it fails, maybe we raced another insertion? */
359 if (sta_info_insert_rcu(sta))
360 return sta_info_get(sdata, addr);
361 return sta;
362}
363
364static struct sta_info *
52874a5e
AQ
365ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata, const u8 *bssid,
366 const u8 *addr, u32 supp_rates)
8bf11d8d
JB
367 __acquires(RCU)
368{
369 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
370 struct ieee80211_local *local = sdata->local;
371 struct sta_info *sta;
55de908a 372 struct ieee80211_chanctx_conf *chanctx_conf;
b422c6cd 373 struct ieee80211_supported_band *sband;
74608aca 374 enum nl80211_bss_scan_width scan_width;
55de908a 375 int band;
8bf11d8d
JB
376
377 /*
378 * XXX: Consider removing the least recently used entry and
379 * allow new one to be added.
380 */
381 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
bdcbd8e0 382 net_info_ratelimited("%s: No room for a new IBSS STA entry %pM\n",
e87cc472 383 sdata->name, addr);
8bf11d8d
JB
384 rcu_read_lock();
385 return NULL;
386 }
387
388 if (ifibss->state == IEEE80211_IBSS_MLME_SEARCH) {
389 rcu_read_lock();
390 return NULL;
391 }
392
b203ca39 393 if (!ether_addr_equal(bssid, sdata->u.ibss.bssid)) {
8bf11d8d
JB
394 rcu_read_lock();
395 return NULL;
396 }
397
55de908a
JB
398 rcu_read_lock();
399 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
400 if (WARN_ON_ONCE(!chanctx_conf))
401 return NULL;
4bf88530 402 band = chanctx_conf->def.chan->band;
74608aca 403 scan_width = cfg80211_chandef_to_scan_width(&chanctx_conf->def);
55de908a
JB
404 rcu_read_unlock();
405
8bf11d8d
JB
406 sta = sta_info_alloc(sdata, addr, GFP_KERNEL);
407 if (!sta) {
408 rcu_read_lock();
409 return NULL;
410 }
411
412 sta->last_rx = jiffies;
413
414 /* make sure mandatory rates are always added */
b422c6cd 415 sband = local->hw.wiphy->bands[band];
8bf11d8d 416 sta->sta.supp_rates[band] = supp_rates |
74608aca 417 ieee80211_mandatory_rates(sband, scan_width);
8bf11d8d 418
52874a5e 419 return ieee80211_ibss_finish_sta(sta);
6d810f10
AQ
420}
421
2cc59e78
AQ
422static void ieee80211_rx_mgmt_deauth_ibss(struct ieee80211_sub_if_data *sdata,
423 struct ieee80211_mgmt *mgmt,
424 size_t len)
425{
426 u16 reason = le16_to_cpu(mgmt->u.deauth.reason_code);
427
428 if (len < IEEE80211_DEAUTH_FRAME_LEN)
429 return;
430
431 ibss_dbg(sdata, "RX DeAuth SA=%pM DA=%pM BSSID=%pM (reason: %d)\n",
432 mgmt->sa, mgmt->da, mgmt->bssid, reason);
433 sta_info_destroy_addr(sdata, mgmt->sa);
434}
435
6d810f10
AQ
436static void ieee80211_rx_mgmt_auth_ibss(struct ieee80211_sub_if_data *sdata,
437 struct ieee80211_mgmt *mgmt,
438 size_t len)
439{
440 u16 auth_alg, auth_transaction;
441
8d61ffa5 442 sdata_assert_lock(sdata);
6d810f10
AQ
443
444 if (len < 24 + 6)
445 return;
446
447 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
448 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
449
bdcbd8e0
JB
450 ibss_dbg(sdata,
451 "RX Auth SA=%pM DA=%pM BSSID=%pM (auth_transaction=%d)\n",
452 mgmt->sa, mgmt->da, mgmt->bssid, auth_transaction);
7bed2050
AQ
453
454 if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1)
455 return;
456
6d810f10
AQ
457 /*
458 * IEEE 802.11 standard does not require authentication in IBSS
459 * networks and most implementations do not seem to use it.
460 * However, try to reply to authentication attempts if someone
461 * has actually implemented this.
462 */
700e8ea6 463 ieee80211_send_auth(sdata, 2, WLAN_AUTH_OPEN, 0, NULL, 0,
1672c0e3 464 mgmt->sa, sdata->u.ibss.bssid, NULL, 0, 0, 0);
8bf11d8d
JB
465}
466
46900298 467static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
d45c4172 468 struct ieee80211_mgmt *mgmt, size_t len,
46900298 469 struct ieee80211_rx_status *rx_status,
d45c4172 470 struct ieee802_11_elems *elems)
46900298
JB
471{
472 struct ieee80211_local *local = sdata->local;
473 int freq;
0c1ad2ca 474 struct cfg80211_bss *cbss;
46900298
JB
475 struct ieee80211_bss *bss;
476 struct sta_info *sta;
477 struct ieee80211_channel *channel;
478 u64 beacon_timestamp, rx_timestamp;
479 u32 supp_rates = 0;
480 enum ieee80211_band band = rx_status->band;
74608aca 481 enum nl80211_bss_scan_width scan_width;
13c40c54
AS
482 struct ieee80211_supported_band *sband = local->hw.wiphy->bands[band];
483 bool rates_updated = false;
46900298 484
1cd8e88e 485 if (elems->ds_params)
59eb21a6
BR
486 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
487 band);
46900298
JB
488 else
489 freq = rx_status->freq;
490
491 channel = ieee80211_get_channel(local->hw.wiphy, freq);
492
493 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
494 return;
495
9eba6125 496 if (sdata->vif.type == NL80211_IFTYPE_ADHOC &&
b203ca39 497 ether_addr_equal(mgmt->bssid, sdata->u.ibss.bssid)) {
46900298
JB
498
499 rcu_read_lock();
abe60632 500 sta = sta_info_get(sdata, mgmt->sa);
46900298 501
9eba6125 502 if (elems->supp_rates) {
2103dec1 503 supp_rates = ieee80211_sta_get_rates(sdata, elems,
9ebb61a2 504 band, NULL);
9eba6125
BR
505 if (sta) {
506 u32 prev_rates;
507
508 prev_rates = sta->sta.supp_rates[band];
509 /* make sure mandatory rates are always added */
74608aca
SW
510 scan_width = NL80211_BSS_CHAN_WIDTH_20;
511 if (rx_status->flag & RX_FLAG_5MHZ)
512 scan_width = NL80211_BSS_CHAN_WIDTH_5;
513 if (rx_status->flag & RX_FLAG_10MHZ)
514 scan_width = NL80211_BSS_CHAN_WIDTH_10;
46900298 515
74608aca
SW
516 sta->sta.supp_rates[band] = supp_rates |
517 ieee80211_mandatory_rates(sband,
518 scan_width);
9eba6125 519 if (sta->sta.supp_rates[band] != prev_rates) {
bdcbd8e0
JB
520 ibss_dbg(sdata,
521 "updated supp_rates set for %pM based on beacon/probe_resp (0x%x -> 0x%x)\n",
522 sta->sta.addr, prev_rates,
523 sta->sta.supp_rates[band]);
13c40c54 524 rates_updated = true;
9eba6125 525 }
8bf11d8d
JB
526 } else {
527 rcu_read_unlock();
9eba6125 528 sta = ieee80211_ibss_add_sta(sdata, mgmt->bssid,
52874a5e 529 mgmt->sa, supp_rates);
8bf11d8d 530 }
34e89507 531 }
9eba6125
BR
532
533 if (sta && elems->wmm_info)
c2c98fde 534 set_sta_flag(sta, WLAN_STA_WME);
9eba6125 535
074d46d1 536 if (sta && elems->ht_operation && elems->ht_cap_elem &&
3aede78a
SW
537 sdata->u.ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT &&
538 sdata->u.ibss.chandef.width != NL80211_CHAN_WIDTH_5 &&
539 sdata->u.ibss.chandef.width != NL80211_CHAN_WIDTH_10) {
13c40c54 540 /* we both use HT */
e1a0c6b3 541 struct ieee80211_ht_cap htcap_ie;
4bf88530
JB
542 struct cfg80211_chan_def chandef;
543
544 ieee80211_ht_oper_to_chandef(channel,
545 elems->ht_operation,
546 &chandef);
13c40c54 547
e1a0c6b3 548 memcpy(&htcap_ie, elems->ht_cap_elem, sizeof(htcap_ie));
13c40c54
AS
549
550 /*
551 * fall back to HT20 if we don't use or use
552 * the other extension channel
553 */
3aede78a
SW
554 if (chandef.center_freq1 !=
555 sdata->u.ibss.chandef.center_freq1)
e1a0c6b3
JB
556 htcap_ie.cap_info &=
557 cpu_to_le16(~IEEE80211_HT_CAP_SUP_WIDTH_20_40);
558
559 rates_updated |= ieee80211_ht_cap_ie_to_sta_ht_cap(
560 sdata, sband, &htcap_ie, sta);
13c40c54
AS
561 }
562
e687f61e
AQ
563 if (sta && rates_updated) {
564 drv_sta_rc_update(local, sdata, &sta->sta,
565 IEEE80211_RC_SUPP_RATES_CHANGED);
13c40c54 566 rate_control_rate_init(sta);
e687f61e 567 }
13c40c54 568
9eba6125 569 rcu_read_unlock();
46900298
JB
570 }
571
572 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
d45c4172 573 channel);
46900298
JB
574 if (!bss)
575 return;
576
0c1ad2ca
JB
577 cbss = container_of((void *)bss, struct cfg80211_bss, priv);
578
8cef2c9d
JB
579 /* same for beacon and probe response */
580 beacon_timestamp = le64_to_cpu(mgmt->u.beacon.timestamp);
46900298
JB
581
582 /* check if we need to merge IBSS */
583
46900298 584 /* we use a fixed BSSID */
a98bfec2 585 if (sdata->u.ibss.fixed_bssid)
46900298
JB
586 goto put_bss;
587
588 /* not an IBSS */
0c1ad2ca 589 if (!(cbss->capability & WLAN_CAPABILITY_IBSS))
46900298
JB
590 goto put_bss;
591
592 /* different channel */
55de908a 593 if (sdata->u.ibss.fixed_channel &&
3aede78a 594 sdata->u.ibss.chandef.chan != cbss->channel)
46900298
JB
595 goto put_bss;
596
597 /* different SSID */
598 if (elems->ssid_len != sdata->u.ibss.ssid_len ||
599 memcmp(elems->ssid, sdata->u.ibss.ssid,
600 sdata->u.ibss.ssid_len))
601 goto put_bss;
602
34e8f082 603 /* same BSSID */
b203ca39 604 if (ether_addr_equal(cbss->bssid, sdata->u.ibss.bssid))
34e8f082
AF
605 goto put_bss;
606
f4bda337
TP
607 if (ieee80211_have_rx_timestamp(rx_status)) {
608 /* time when timestamp field was received */
609 rx_timestamp =
610 ieee80211_calculate_rx_timestamp(local, rx_status,
611 len + FCS_LEN, 24);
24487981
JB
612 } else {
613 /*
614 * second best option: get current TSF
615 * (will return -1 if not supported)
616 */
37a41b4a 617 rx_timestamp = drv_get_tsf(local, sdata);
24487981 618 }
46900298 619
bdcbd8e0
JB
620 ibss_dbg(sdata,
621 "RX beacon SA=%pM BSSID=%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
622 mgmt->sa, mgmt->bssid,
623 (unsigned long long)rx_timestamp,
624 (unsigned long long)beacon_timestamp,
625 (unsigned long long)(rx_timestamp - beacon_timestamp),
626 jiffies);
46900298
JB
627
628 if (beacon_timestamp > rx_timestamp) {
bdcbd8e0
JB
629 ibss_dbg(sdata,
630 "beacon TSF higher than local TSF - IBSS merge with BSSID %pM\n",
631 mgmt->bssid);
46900298 632 ieee80211_sta_join_ibss(sdata, bss);
2103dec1 633 supp_rates = ieee80211_sta_get_rates(sdata, elems, band, NULL);
34e89507 634 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa,
52874a5e 635 supp_rates);
8bf11d8d 636 rcu_read_unlock();
46900298
JB
637 }
638
639 put_bss:
640 ieee80211_rx_bss_put(local, bss);
641}
642
8bf11d8d
JB
643void ieee80211_ibss_rx_no_sta(struct ieee80211_sub_if_data *sdata,
644 const u8 *bssid, const u8 *addr,
645 u32 supp_rates)
46900298 646{
2e10d330 647 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
46900298
JB
648 struct ieee80211_local *local = sdata->local;
649 struct sta_info *sta;
55de908a 650 struct ieee80211_chanctx_conf *chanctx_conf;
b422c6cd 651 struct ieee80211_supported_band *sband;
74608aca 652 enum nl80211_bss_scan_width scan_width;
55de908a 653 int band;
46900298 654
af8cdcd8
JB
655 /*
656 * XXX: Consider removing the least recently used entry and
657 * allow new one to be added.
658 */
46900298 659 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
bdcbd8e0 660 net_info_ratelimited("%s: No room for a new IBSS STA entry %pM\n",
e87cc472 661 sdata->name, addr);
8bf11d8d 662 return;
46900298
JB
663 }
664
2e10d330 665 if (ifibss->state == IEEE80211_IBSS_MLME_SEARCH)
8bf11d8d 666 return;
2e10d330 667
b203ca39 668 if (!ether_addr_equal(bssid, sdata->u.ibss.bssid))
8bf11d8d 669 return;
46900298 670
55de908a
JB
671 rcu_read_lock();
672 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
673 if (WARN_ON_ONCE(!chanctx_conf)) {
674 rcu_read_unlock();
675 return;
676 }
4bf88530 677 band = chanctx_conf->def.chan->band;
74608aca 678 scan_width = cfg80211_chandef_to_scan_width(&chanctx_conf->def);
55de908a
JB
679 rcu_read_unlock();
680
8bf11d8d 681 sta = sta_info_alloc(sdata, addr, GFP_ATOMIC);
46900298 682 if (!sta)
8bf11d8d 683 return;
46900298 684
c8716d9d 685 sta->last_rx = jiffies;
d9a7ddb0 686
46900298 687 /* make sure mandatory rates are always added */
b422c6cd 688 sband = local->hw.wiphy->bands[band];
46900298 689 sta->sta.supp_rates[band] = supp_rates |
74608aca 690 ieee80211_mandatory_rates(sband, scan_width);
46900298 691
8bf11d8d
JB
692 spin_lock(&ifibss->incomplete_lock);
693 list_add(&sta->list, &ifibss->incomplete_stations);
694 spin_unlock(&ifibss->incomplete_lock);
695 ieee80211_queue_work(&local->hw, &sdata->work);
46900298
JB
696}
697
698static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
699{
700 struct ieee80211_local *local = sdata->local;
701 int active = 0;
702 struct sta_info *sta;
703
8d61ffa5 704 sdata_assert_lock(sdata);
7a17a33c 705
46900298
JB
706 rcu_read_lock();
707
708 list_for_each_entry_rcu(sta, &local->sta_list, list) {
709 if (sta->sdata == sdata &&
710 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
711 jiffies)) {
712 active++;
713 break;
714 }
715 }
716
717 rcu_read_unlock();
718
719 return active;
720}
721
ce9058ae
BP
722/*
723 * This function is called with state == IEEE80211_IBSS_MLME_JOINED
724 */
46900298
JB
725
726static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata)
727{
728 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
729
8d61ffa5 730 sdata_assert_lock(sdata);
7a17a33c 731
af8cdcd8
JB
732 mod_timer(&ifibss->timer,
733 round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
46900298
JB
734
735 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
af8cdcd8 736
450aae3d
S
737 if (time_before(jiffies, ifibss->last_scan_completed +
738 IEEE80211_IBSS_MERGE_INTERVAL))
739 return;
740
46900298
JB
741 if (ieee80211_sta_active_ibss(sdata))
742 return;
743
c037b836 744 if (ifibss->fixed_channel)
46900298
JB
745 return;
746
bdcbd8e0
JB
747 sdata_info(sdata,
748 "No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)\n");
46900298 749
34bcf715
SG
750 ieee80211_request_ibss_scan(sdata, ifibss->ssid, ifibss->ssid_len,
751 NULL);
46900298
JB
752}
753
af8cdcd8 754static void ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata)
46900298
JB
755{
756 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
46900298 757 u8 bssid[ETH_ALEN];
46900298
JB
758 u16 capability;
759 int i;
760
8d61ffa5 761 sdata_assert_lock(sdata);
7a17a33c 762
af8cdcd8 763 if (ifibss->fixed_bssid) {
46900298
JB
764 memcpy(bssid, ifibss->bssid, ETH_ALEN);
765 } else {
766 /* Generate random, not broadcast, locally administered BSSID. Mix in
767 * own MAC address to make sure that devices that do not have proper
768 * random number generator get different BSSID. */
769 get_random_bytes(bssid, ETH_ALEN);
770 for (i = 0; i < ETH_ALEN; i++)
47846c9b 771 bssid[i] ^= sdata->vif.addr[i];
46900298
JB
772 bssid[0] &= ~0x01;
773 bssid[0] |= 0x02;
774 }
775
bdcbd8e0 776 sdata_info(sdata, "Creating new IBSS network, BSSID %pM\n", bssid);
46900298 777
46900298
JB
778 capability = WLAN_CAPABILITY_IBSS;
779
fffd0934 780 if (ifibss->privacy)
46900298
JB
781 capability |= WLAN_CAPABILITY_PRIVACY;
782 else
783 sdata->drop_unencrypted = 0;
784
57c4d7b4 785 __ieee80211_sta_join_ibss(sdata, bssid, sdata->vif.bss_conf.beacon_int,
3aede78a 786 ifibss->chandef.chan, ifibss->basic_rates,
c13a765b 787 capability, 0, true);
46900298
JB
788}
789
ce9058ae
BP
790/*
791 * This function is called with state == IEEE80211_IBSS_MLME_SEARCH
792 */
793
af8cdcd8 794static void ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata)
46900298
JB
795{
796 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
797 struct ieee80211_local *local = sdata->local;
0c1ad2ca 798 struct cfg80211_bss *cbss;
af8cdcd8 799 struct ieee80211_channel *chan = NULL;
46900298
JB
800 const u8 *bssid = NULL;
801 int active_ibss;
e0d61887 802 u16 capability;
46900298 803
8d61ffa5 804 sdata_assert_lock(sdata);
7a17a33c 805
46900298 806 active_ibss = ieee80211_sta_active_ibss(sdata);
bdcbd8e0 807 ibss_dbg(sdata, "sta_find_ibss (active_ibss=%d)\n", active_ibss);
46900298
JB
808
809 if (active_ibss)
af8cdcd8 810 return;
46900298 811
e0d61887 812 capability = WLAN_CAPABILITY_IBSS;
fffd0934 813 if (ifibss->privacy)
e0d61887 814 capability |= WLAN_CAPABILITY_PRIVACY;
af8cdcd8
JB
815 if (ifibss->fixed_bssid)
816 bssid = ifibss->bssid;
817 if (ifibss->fixed_channel)
3aede78a 818 chan = ifibss->chandef.chan;
af8cdcd8 819 if (!is_zero_ether_addr(ifibss->bssid))
46900298 820 bssid = ifibss->bssid;
0c1ad2ca
JB
821 cbss = cfg80211_get_bss(local->hw.wiphy, chan, bssid,
822 ifibss->ssid, ifibss->ssid_len,
823 WLAN_CAPABILITY_IBSS | WLAN_CAPABILITY_PRIVACY,
824 capability);
825
826 if (cbss) {
827 struct ieee80211_bss *bss;
46900298 828
0c1ad2ca 829 bss = (void *)cbss->priv;
bdcbd8e0
JB
830 ibss_dbg(sdata,
831 "sta_find_ibss: selected %pM current %pM\n",
832 cbss->bssid, ifibss->bssid);
833 sdata_info(sdata,
834 "Selected IBSS BSSID %pM based on configured SSID\n",
835 cbss->bssid);
46900298 836
af8cdcd8 837 ieee80211_sta_join_ibss(sdata, bss);
46900298 838 ieee80211_rx_bss_put(local, bss);
af8cdcd8 839 return;
d419b9f0 840 }
46900298 841
bdcbd8e0 842 ibss_dbg(sdata, "sta_find_ibss: did not try to join ibss\n");
46900298
JB
843
844 /* Selected IBSS not found in current scan results - try to scan */
ce9058ae 845 if (time_after(jiffies, ifibss->last_scan_completed +
46900298 846 IEEE80211_SCAN_INTERVAL)) {
bdcbd8e0 847 sdata_info(sdata, "Trigger new scan to find an IBSS to join\n");
46900298 848
34bcf715
SG
849 ieee80211_request_ibss_scan(sdata, ifibss->ssid,
850 ifibss->ssid_len, chan);
ce9058ae 851 } else {
46900298
JB
852 int interval = IEEE80211_SCAN_INTERVAL;
853
854 if (time_after(jiffies, ifibss->ibss_join_req +
55de908a
JB
855 IEEE80211_IBSS_JOIN_TIMEOUT))
856 ieee80211_sta_create_ibss(sdata);
46900298 857
af8cdcd8
JB
858 mod_timer(&ifibss->timer,
859 round_jiffies(jiffies + interval));
46900298 860 }
46900298
JB
861}
862
863static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
c269a203 864 struct sk_buff *req)
46900298 865{
c269a203 866 struct ieee80211_mgmt *mgmt = (void *)req->data;
46900298
JB
867 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
868 struct ieee80211_local *local = sdata->local;
c269a203 869 int tx_last_beacon, len = req->len;
46900298 870 struct sk_buff *skb;
c3ffeab4 871 struct beacon_data *presp;
46900298
JB
872 u8 *pos, *end;
873
8d61ffa5 874 sdata_assert_lock(sdata);
7a17a33c 875
40b275b6 876 presp = rcu_dereference_protected(ifibss->presp,
8d61ffa5 877 lockdep_is_held(&sdata->wdev.mtx));
40b275b6 878
46900298 879 if (ifibss->state != IEEE80211_IBSS_MLME_JOINED ||
40b275b6 880 len < 24 + 2 || !presp)
46900298
JB
881 return;
882
24487981 883 tx_last_beacon = drv_tx_last_beacon(local);
46900298 884
bdcbd8e0
JB
885 ibss_dbg(sdata,
886 "RX ProbeReq SA=%pM DA=%pM BSSID=%pM (tx_last_beacon=%d)\n",
887 mgmt->sa, mgmt->da, mgmt->bssid, tx_last_beacon);
46900298 888
1ed76487 889 if (!tx_last_beacon && is_multicast_ether_addr(mgmt->da))
46900298
JB
890 return;
891
b203ca39 892 if (!ether_addr_equal(mgmt->bssid, ifibss->bssid) &&
888d04df 893 !is_broadcast_ether_addr(mgmt->bssid))
46900298
JB
894 return;
895
896 end = ((u8 *) mgmt) + len;
897 pos = mgmt->u.probe_req.variable;
898 if (pos[0] != WLAN_EID_SSID ||
899 pos + 2 + pos[1] > end) {
bdcbd8e0
JB
900 ibss_dbg(sdata, "Invalid SSID IE in ProbeReq from %pM\n",
901 mgmt->sa);
46900298
JB
902 return;
903 }
904 if (pos[1] != 0 &&
905 (pos[1] != ifibss->ssid_len ||
0da780c2 906 memcmp(pos + 2, ifibss->ssid, ifibss->ssid_len))) {
46900298
JB
907 /* Ignore ProbeReq for foreign SSID */
908 return;
909 }
910
911 /* Reply with ProbeResp */
c3ffeab4 912 skb = dev_alloc_skb(local->tx_headroom + presp->head_len);
46900298
JB
913 if (!skb)
914 return;
915
c3ffeab4
JB
916 skb_reserve(skb, local->tx_headroom);
917 memcpy(skb_put(skb, presp->head_len), presp->head, presp->head_len);
918
919 memcpy(((struct ieee80211_mgmt *) skb->data)->da, mgmt->sa, ETH_ALEN);
920 ibss_dbg(sdata, "Sending ProbeResp to %pM\n", mgmt->sa);
62ae67be
JB
921 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
922 ieee80211_tx_skb(sdata, skb);
46900298
JB
923}
924
d45c4172
EG
925static
926void ieee80211_rx_mgmt_probe_beacon(struct ieee80211_sub_if_data *sdata,
927 struct ieee80211_mgmt *mgmt, size_t len,
928 struct ieee80211_rx_status *rx_status)
46900298
JB
929{
930 size_t baselen;
931 struct ieee802_11_elems elems;
932
d45c4172
EG
933 BUILD_BUG_ON(offsetof(typeof(mgmt->u.probe_resp), variable) !=
934 offsetof(typeof(mgmt->u.beacon), variable));
935
936 /*
937 * either beacon or probe_resp but the variable field is at the
938 * same offset
939 */
46900298
JB
940 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
941 if (baselen > len)
942 return;
943
944 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
b2e506bf 945 false, &elems);
46900298 946
d45c4172 947 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
46900298
JB
948}
949
1fa57d01
JB
950void ieee80211_ibss_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
951 struct sk_buff *skb)
46900298
JB
952{
953 struct ieee80211_rx_status *rx_status;
954 struct ieee80211_mgmt *mgmt;
955 u16 fc;
956
f1d58c25 957 rx_status = IEEE80211_SKB_RXCB(skb);
46900298
JB
958 mgmt = (struct ieee80211_mgmt *) skb->data;
959 fc = le16_to_cpu(mgmt->frame_control);
960
8d61ffa5 961 sdata_lock(sdata);
7a17a33c 962
c926d006
TH
963 if (!sdata->u.ibss.ssid_len)
964 goto mgmt_out; /* not ready to merge yet */
965
46900298
JB
966 switch (fc & IEEE80211_FCTL_STYPE) {
967 case IEEE80211_STYPE_PROBE_REQ:
c269a203 968 ieee80211_rx_mgmt_probe_req(sdata, skb);
46900298
JB
969 break;
970 case IEEE80211_STYPE_PROBE_RESP:
46900298 971 case IEEE80211_STYPE_BEACON:
d45c4172
EG
972 ieee80211_rx_mgmt_probe_beacon(sdata, mgmt, skb->len,
973 rx_status);
46900298
JB
974 break;
975 case IEEE80211_STYPE_AUTH:
976 ieee80211_rx_mgmt_auth_ibss(sdata, mgmt, skb->len);
977 break;
2cc59e78
AQ
978 case IEEE80211_STYPE_DEAUTH:
979 ieee80211_rx_mgmt_deauth_ibss(sdata, mgmt, skb->len);
980 break;
46900298 981 }
7a17a33c 982
c926d006 983 mgmt_out:
8d61ffa5 984 sdata_unlock(sdata);
46900298
JB
985}
986
1fa57d01 987void ieee80211_ibss_work(struct ieee80211_sub_if_data *sdata)
46900298 988{
1fa57d01 989 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
8bf11d8d 990 struct sta_info *sta;
46900298 991
8d61ffa5 992 sdata_lock(sdata);
7a17a33c
JB
993
994 /*
995 * Work could be scheduled after scan or similar
996 * when we aren't even joined (or trying) with a
997 * network.
998 */
999 if (!ifibss->ssid_len)
1000 goto out;
46900298 1001
8bf11d8d
JB
1002 spin_lock_bh(&ifibss->incomplete_lock);
1003 while (!list_empty(&ifibss->incomplete_stations)) {
1004 sta = list_first_entry(&ifibss->incomplete_stations,
1005 struct sta_info, list);
1006 list_del(&sta->list);
1007 spin_unlock_bh(&ifibss->incomplete_lock);
1008
52874a5e 1009 ieee80211_ibss_finish_sta(sta);
8bf11d8d
JB
1010 rcu_read_unlock();
1011 spin_lock_bh(&ifibss->incomplete_lock);
1012 }
1013 spin_unlock_bh(&ifibss->incomplete_lock);
1014
46900298
JB
1015 switch (ifibss->state) {
1016 case IEEE80211_IBSS_MLME_SEARCH:
1017 ieee80211_sta_find_ibss(sdata);
1018 break;
1019 case IEEE80211_IBSS_MLME_JOINED:
1020 ieee80211_sta_merge_ibss(sdata);
1021 break;
1022 default:
1023 WARN_ON(1);
1024 break;
1025 }
46900298 1026
7a17a33c 1027 out:
8d61ffa5 1028 sdata_unlock(sdata);
3a4d4aa2
JB
1029}
1030
46900298
JB
1031static void ieee80211_ibss_timer(unsigned long data)
1032{
1033 struct ieee80211_sub_if_data *sdata =
1034 (struct ieee80211_sub_if_data *) data;
5bb644a0 1035
a6182943 1036 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
5bb644a0 1037}
5bb644a0 1038
46900298
JB
1039void ieee80211_ibss_setup_sdata(struct ieee80211_sub_if_data *sdata)
1040{
1041 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
1042
46900298
JB
1043 setup_timer(&ifibss->timer, ieee80211_ibss_timer,
1044 (unsigned long) sdata);
8bf11d8d
JB
1045 INIT_LIST_HEAD(&ifibss->incomplete_stations);
1046 spin_lock_init(&ifibss->incomplete_lock);
46900298
JB
1047}
1048
1049/* scan finished notification */
1050void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local)
1051{
af8cdcd8 1052 struct ieee80211_sub_if_data *sdata;
46900298 1053
29b4a4f7
JB
1054 mutex_lock(&local->iflist_mtx);
1055 list_for_each_entry(sdata, &local->interfaces, list) {
9607e6b6 1056 if (!ieee80211_sdata_running(sdata))
0e41f715 1057 continue;
af8cdcd8
JB
1058 if (sdata->vif.type != NL80211_IFTYPE_ADHOC)
1059 continue;
1060 sdata->u.ibss.last_scan_completed = jiffies;
7a17a33c 1061 ieee80211_queue_work(&local->hw, &sdata->work);
46900298 1062 }
29b4a4f7 1063 mutex_unlock(&local->iflist_mtx);
46900298
JB
1064}
1065
af8cdcd8
JB
1066int ieee80211_ibss_join(struct ieee80211_sub_if_data *sdata,
1067 struct cfg80211_ibss_params *params)
1068{
ff3cc5f4 1069 u32 changed = 0;
2103dec1
SW
1070 u32 rate_flags;
1071 struct ieee80211_supported_band *sband;
1072 int i;
af8cdcd8 1073
af8cdcd8
JB
1074 if (params->bssid) {
1075 memcpy(sdata->u.ibss.bssid, params->bssid, ETH_ALEN);
1076 sdata->u.ibss.fixed_bssid = true;
1077 } else
1078 sdata->u.ibss.fixed_bssid = false;
1079
fffd0934 1080 sdata->u.ibss.privacy = params->privacy;
267335d6 1081 sdata->u.ibss.control_port = params->control_port;
fbd2c8dc 1082 sdata->u.ibss.basic_rates = params->basic_rates;
2103dec1
SW
1083
1084 /* fix basic_rates if channel does not support these rates */
1085 rate_flags = ieee80211_chandef_rate_flags(&params->chandef);
1086 sband = sdata->local->hw.wiphy->bands[params->chandef.chan->band];
1087 for (i = 0; i < sband->n_bitrates; i++) {
1088 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
1089 sdata->u.ibss.basic_rates &= ~BIT(i);
1090 }
dd5b4cc7
FF
1091 memcpy(sdata->vif.bss_conf.mcast_rate, params->mcast_rate,
1092 sizeof(params->mcast_rate));
fffd0934 1093
57c4d7b4
JB
1094 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
1095
3aede78a 1096 sdata->u.ibss.chandef = params->chandef;
af8cdcd8
JB
1097 sdata->u.ibss.fixed_channel = params->channel_fixed;
1098
1099 if (params->ie) {
1100 sdata->u.ibss.ie = kmemdup(params->ie, params->ie_len,
1101 GFP_KERNEL);
1102 if (sdata->u.ibss.ie)
1103 sdata->u.ibss.ie_len = params->ie_len;
1104 }
1105
af8cdcd8
JB
1106 sdata->u.ibss.state = IEEE80211_IBSS_MLME_SEARCH;
1107 sdata->u.ibss.ibss_join_req = jiffies;
1108
badecb00 1109 memcpy(sdata->u.ibss.ssid, params->ssid, params->ssid_len);
0e41f715
JB
1110 sdata->u.ibss.ssid_len = params->ssid_len;
1111
822854b0
SW
1112 memcpy(&sdata->u.ibss.ht_capa, &params->ht_capa,
1113 sizeof(sdata->u.ibss.ht_capa));
1114 memcpy(&sdata->u.ibss.ht_capa_mask, &params->ht_capa_mask,
1115 sizeof(sdata->u.ibss.ht_capa_mask));
1116
ff3cc5f4
SW
1117 /*
1118 * 802.11n-2009 9.13.3.1: In an IBSS, the HT Protection field is
1119 * reserved, but an HT STA shall protect HT transmissions as though
1120 * the HT Protection field were set to non-HT mixed mode.
1121 *
1122 * In an IBSS, the RIFS Mode field of the HT Operation element is
1123 * also reserved, but an HT STA shall operate as though this field
1124 * were set to 1.
1125 */
1126
1127 sdata->vif.bss_conf.ht_operation_mode |=
1128 IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED
1129 | IEEE80211_HT_PARAM_RIFS_MODE;
1130
1131 changed |= BSS_CHANGED_HT;
1132 ieee80211_bss_info_change_notify(sdata, changed);
1133
04ecd257
JB
1134 sdata->smps_mode = IEEE80211_SMPS_OFF;
1135 sdata->needed_rx_chains = sdata->local->rx_chains;
1136
64592c8f 1137 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
af8cdcd8
JB
1138
1139 return 0;
1140}
1141
1142int ieee80211_ibss_leave(struct ieee80211_sub_if_data *sdata)
1143{
5ea096c0
TP
1144 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
1145 struct ieee80211_local *local = sdata->local;
1146 struct cfg80211_bss *cbss;
1147 u16 capability;
7a17a33c 1148 int active_ibss;
8bf11d8d 1149 struct sta_info *sta;
c3ffeab4 1150 struct beacon_data *presp;
7a17a33c 1151
5ea096c0
TP
1152 active_ibss = ieee80211_sta_active_ibss(sdata);
1153
1154 if (!active_ibss && !is_zero_ether_addr(ifibss->bssid)) {
1155 capability = WLAN_CAPABILITY_IBSS;
1156
1157 if (ifibss->privacy)
1158 capability |= WLAN_CAPABILITY_PRIVACY;
1159
3aede78a 1160 cbss = cfg80211_get_bss(local->hw.wiphy, ifibss->chandef.chan,
5ea096c0
TP
1161 ifibss->bssid, ifibss->ssid,
1162 ifibss->ssid_len, WLAN_CAPABILITY_IBSS |
1163 WLAN_CAPABILITY_PRIVACY,
1164 capability);
1165
1166 if (cbss) {
1167 cfg80211_unlink_bss(local->hw.wiphy, cbss);
5b112d3d 1168 cfg80211_put_bss(local->hw.wiphy, cbss);
5ea096c0
TP
1169 }
1170 }
af8cdcd8 1171
b78a4932
SW
1172 ifibss->state = IEEE80211_IBSS_MLME_SEARCH;
1173 memset(ifibss->bssid, 0, ETH_ALEN);
1174 ifibss->ssid_len = 0;
1175
b998e8bb 1176 sta_info_flush(sdata);
8bf11d8d
JB
1177
1178 spin_lock_bh(&ifibss->incomplete_lock);
1179 while (!list_empty(&ifibss->incomplete_stations)) {
1180 sta = list_first_entry(&ifibss->incomplete_stations,
1181 struct sta_info, list);
1182 list_del(&sta->list);
1183 spin_unlock_bh(&ifibss->incomplete_lock);
1184
1185 sta_info_free(local, sta);
1186 spin_lock_bh(&ifibss->incomplete_lock);
1187 }
1188 spin_unlock_bh(&ifibss->incomplete_lock);
1189
86a2ea41 1190 netif_carrier_off(sdata->dev);
af8cdcd8
JB
1191
1192 /* remove beacon */
1193 kfree(sdata->u.ibss.ie);
c3ffeab4 1194 presp = rcu_dereference_protected(ifibss->presp,
8d61ffa5 1195 lockdep_is_held(&sdata->wdev.mtx));
a9b3cd7f 1196 RCU_INIT_POINTER(sdata->u.ibss.presp, NULL);
822854b0
SW
1197
1198 /* on the next join, re-program HT parameters */
1199 memset(&ifibss->ht_capa, 0, sizeof(ifibss->ht_capa));
1200 memset(&ifibss->ht_capa_mask, 0, sizeof(ifibss->ht_capa_mask));
1201
8fc214ba 1202 sdata->vif.bss_conf.ibss_joined = false;
c13a765b 1203 sdata->vif.bss_conf.ibss_creator = false;
d6a83228 1204 sdata->vif.bss_conf.enable_beacon = false;
0ca54f6c 1205 sdata->vif.bss_conf.ssid_len = 0;
d6a83228 1206 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
8fc214ba
JB
1207 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
1208 BSS_CHANGED_IBSS);
af8cdcd8 1209 synchronize_rcu();
c3ffeab4 1210 kfree(presp);
af8cdcd8 1211
35f20c14 1212 skb_queue_purge(&sdata->skb_queue);
5cff20e6 1213
bc05d19f 1214 del_timer_sync(&sdata->u.ibss.timer);
7a17a33c 1215
af8cdcd8
JB
1216 return 0;
1217}
This page took 0.424632 seconds and 5 git commands to generate.