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