mac80211: fix rates setup on IBSS merge
[pandora-kernel.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/if_ether.h>
17 #include <linux/skbuff.h>
18 #include <linux/if_arp.h>
19 #include <linux/etherdevice.h>
20 #include <linux/rtnetlink.h>
21 #include <net/mac80211.h>
22 #include <asm/unaligned.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_SCAN_INTERVAL_SLOW (15 * HZ)
30 #define IEEE80211_IBSS_JOIN_TIMEOUT (7 * HZ)
31
32 #define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ)
33 #define IEEE80211_IBSS_MERGE_DELAY 0x400000
34 #define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
35
36 #define IEEE80211_IBSS_MAX_STA_ENTRIES 128
37
38
39 static void ieee80211_rx_mgmt_auth_ibss(struct ieee80211_sub_if_data *sdata,
40                                         struct ieee80211_mgmt *mgmt,
41                                         size_t len)
42 {
43         u16 auth_alg, auth_transaction, status_code;
44
45         if (len < 24 + 6)
46                 return;
47
48         auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
49         auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
50         status_code = le16_to_cpu(mgmt->u.auth.status_code);
51
52         /*
53          * IEEE 802.11 standard does not require authentication in IBSS
54          * networks and most implementations do not seem to use it.
55          * However, try to reply to authentication attempts if someone
56          * has actually implemented this.
57          */
58         if (auth_alg == WLAN_AUTH_OPEN && auth_transaction == 1)
59                 ieee80211_send_auth(sdata, 2, WLAN_AUTH_OPEN, NULL, 0,
60                                     sdata->u.ibss.bssid, NULL, 0, 0);
61 }
62
63 static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
64                                       const u8 *bssid, const int beacon_int,
65                                       struct ieee80211_channel *chan,
66                                       const u32 basic_rates,
67                                       const u16 capability, u64 tsf)
68 {
69         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
70         struct ieee80211_local *local = sdata->local;
71         int rates, i;
72         struct sk_buff *skb;
73         struct ieee80211_mgmt *mgmt;
74         u8 *pos;
75         struct ieee80211_supported_band *sband;
76         struct cfg80211_bss *bss;
77         u32 bss_change;
78         u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
79
80         /* Reset own TSF to allow time synchronization work. */
81         drv_reset_tsf(local);
82
83         skb = ifibss->skb;
84         rcu_assign_pointer(ifibss->presp, NULL);
85         synchronize_rcu();
86         skb->data = skb->head;
87         skb->len = 0;
88         skb_reset_tail_pointer(skb);
89         skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
90
91         if (memcmp(ifibss->bssid, bssid, ETH_ALEN))
92                 sta_info_flush(sdata->local, sdata);
93
94         memcpy(ifibss->bssid, bssid, ETH_ALEN);
95
96         sdata->drop_unencrypted = capability & WLAN_CAPABILITY_PRIVACY ? 1 : 0;
97
98         local->oper_channel = chan;
99         local->oper_channel_type = NL80211_CHAN_NO_HT;
100         ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
101
102         sband = local->hw.wiphy->bands[chan->band];
103
104         /* build supported rates array */
105         pos = supp_rates;
106         for (i = 0; i < sband->n_bitrates; i++) {
107                 int rate = sband->bitrates[i].bitrate;
108                 u8 basic = 0;
109                 if (basic_rates & BIT(i))
110                         basic = 0x80;
111                 *pos++ = basic | (u8) (rate / 5);
112         }
113
114         /* Build IBSS probe response */
115         mgmt = (void *) skb_put(skb, 24 + sizeof(mgmt->u.beacon));
116         memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
117         mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
118                                           IEEE80211_STYPE_PROBE_RESP);
119         memset(mgmt->da, 0xff, ETH_ALEN);
120         memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
121         memcpy(mgmt->bssid, ifibss->bssid, ETH_ALEN);
122         mgmt->u.beacon.beacon_int = cpu_to_le16(beacon_int);
123         mgmt->u.beacon.timestamp = cpu_to_le64(tsf);
124         mgmt->u.beacon.capab_info = cpu_to_le16(capability);
125
126         pos = skb_put(skb, 2 + ifibss->ssid_len);
127         *pos++ = WLAN_EID_SSID;
128         *pos++ = ifibss->ssid_len;
129         memcpy(pos, ifibss->ssid, ifibss->ssid_len);
130
131         rates = sband->n_bitrates;
132         if (rates > 8)
133                 rates = 8;
134         pos = skb_put(skb, 2 + rates);
135         *pos++ = WLAN_EID_SUPP_RATES;
136         *pos++ = rates;
137         memcpy(pos, supp_rates, rates);
138
139         if (sband->band == IEEE80211_BAND_2GHZ) {
140                 pos = skb_put(skb, 2 + 1);
141                 *pos++ = WLAN_EID_DS_PARAMS;
142                 *pos++ = 1;
143                 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
144         }
145
146         pos = skb_put(skb, 2 + 2);
147         *pos++ = WLAN_EID_IBSS_PARAMS;
148         *pos++ = 2;
149         /* FIX: set ATIM window based on scan results */
150         *pos++ = 0;
151         *pos++ = 0;
152
153         if (sband->n_bitrates > 8) {
154                 rates = sband->n_bitrates - 8;
155                 pos = skb_put(skb, 2 + rates);
156                 *pos++ = WLAN_EID_EXT_SUPP_RATES;
157                 *pos++ = rates;
158                 memcpy(pos, &supp_rates[8], rates);
159         }
160
161         if (ifibss->ie_len)
162                 memcpy(skb_put(skb, ifibss->ie_len),
163                        ifibss->ie, ifibss->ie_len);
164
165         rcu_assign_pointer(ifibss->presp, skb);
166
167         sdata->vif.bss_conf.beacon_int = beacon_int;
168         bss_change = BSS_CHANGED_BEACON_INT;
169         bss_change |= ieee80211_reset_erp_info(sdata);
170         bss_change |= BSS_CHANGED_BSSID;
171         bss_change |= BSS_CHANGED_BEACON;
172         bss_change |= BSS_CHANGED_BEACON_ENABLED;
173         ieee80211_bss_info_change_notify(sdata, bss_change);
174
175         ieee80211_sta_def_wmm_params(sdata, sband->n_bitrates, supp_rates);
176
177         ifibss->state = IEEE80211_IBSS_MLME_JOINED;
178         mod_timer(&ifibss->timer,
179                   round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
180
181         bss = cfg80211_inform_bss_frame(local->hw.wiphy, local->hw.conf.channel,
182                                         mgmt, skb->len, 0, GFP_KERNEL);
183         cfg80211_put_bss(bss);
184         cfg80211_ibss_joined(sdata->dev, ifibss->bssid, GFP_KERNEL);
185 }
186
187 static void ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
188                                     struct ieee80211_bss *bss)
189 {
190         struct cfg80211_bss *cbss =
191                 container_of((void *)bss, struct cfg80211_bss, priv);
192         struct ieee80211_supported_band *sband;
193         u32 basic_rates;
194         int i, j;
195         u16 beacon_int = cbss->beacon_interval;
196
197         if (beacon_int < 10)
198                 beacon_int = 10;
199
200         sband = sdata->local->hw.wiphy->bands[cbss->channel->band];
201
202         basic_rates = 0;
203
204         for (i = 0; i < bss->supp_rates_len; i++) {
205                 int rate = (bss->supp_rates[i] & 0x7f) * 5;
206                 bool is_basic = !!(bss->supp_rates[i] & 0x80);
207
208                 for (j = 0; j < sband->n_bitrates; j++) {
209                         if (sband->bitrates[j].bitrate == rate) {
210                                 if (is_basic)
211                                         basic_rates |= BIT(j);
212                                 break;
213                         }
214                 }
215         }
216
217         __ieee80211_sta_join_ibss(sdata, cbss->bssid,
218                                   beacon_int,
219                                   cbss->channel,
220                                   basic_rates,
221                                   cbss->capability,
222                                   cbss->tsf);
223 }
224
225 static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
226                                   struct ieee80211_mgmt *mgmt,
227                                   size_t len,
228                                   struct ieee80211_rx_status *rx_status,
229                                   struct ieee802_11_elems *elems,
230                                   bool beacon)
231 {
232         struct ieee80211_local *local = sdata->local;
233         int freq;
234         struct cfg80211_bss *cbss;
235         struct ieee80211_bss *bss;
236         struct sta_info *sta;
237         struct ieee80211_channel *channel;
238         u64 beacon_timestamp, rx_timestamp;
239         u32 supp_rates = 0;
240         enum ieee80211_band band = rx_status->band;
241
242         if (elems->ds_params && elems->ds_params_len == 1)
243                 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
244         else
245                 freq = rx_status->freq;
246
247         channel = ieee80211_get_channel(local->hw.wiphy, freq);
248
249         if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
250                 return;
251
252         if (sdata->vif.type == NL80211_IFTYPE_ADHOC && elems->supp_rates &&
253             memcmp(mgmt->bssid, sdata->u.ibss.bssid, ETH_ALEN) == 0) {
254                 supp_rates = ieee80211_sta_get_rates(local, elems, band);
255
256                 rcu_read_lock();
257
258                 sta = sta_info_get(sdata, mgmt->sa);
259                 if (sta) {
260                         u32 prev_rates;
261
262                         prev_rates = sta->sta.supp_rates[band];
263                         /* make sure mandatory rates are always added */
264                         sta->sta.supp_rates[band] = supp_rates |
265                                 ieee80211_mandatory_rates(local, band);
266
267 #ifdef CONFIG_MAC80211_IBSS_DEBUG
268                         if (sta->sta.supp_rates[band] != prev_rates)
269                                 printk(KERN_DEBUG "%s: updated supp_rates set "
270                                     "for %pM based on beacon info (0x%llx | "
271                                     "0x%llx -> 0x%llx)\n",
272                                     sdata->name,
273                                     sta->sta.addr,
274                                     (unsigned long long) prev_rates,
275                                     (unsigned long long) supp_rates,
276                                     (unsigned long long) sta->sta.supp_rates[band]);
277 #endif
278                         rcu_read_unlock();
279
280                         /* FIXME: update rate control */
281                 } else {
282                         rcu_read_unlock();
283                         ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa,
284                                                supp_rates, GFP_KERNEL);
285                 }
286         }
287
288         bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
289                                         channel, beacon);
290         if (!bss)
291                 return;
292
293         cbss = container_of((void *)bss, struct cfg80211_bss, priv);
294
295         /* was just updated in ieee80211_bss_info_update */
296         beacon_timestamp = cbss->tsf;
297
298         /* check if we need to merge IBSS */
299
300         /* we use a fixed BSSID */
301         if (sdata->u.ibss.fixed_bssid)
302                 goto put_bss;
303
304         /* not an IBSS */
305         if (!(cbss->capability & WLAN_CAPABILITY_IBSS))
306                 goto put_bss;
307
308         /* different channel */
309         if (cbss->channel != local->oper_channel)
310                 goto put_bss;
311
312         /* different SSID */
313         if (elems->ssid_len != sdata->u.ibss.ssid_len ||
314             memcmp(elems->ssid, sdata->u.ibss.ssid,
315                                 sdata->u.ibss.ssid_len))
316                 goto put_bss;
317
318         /* same BSSID */
319         if (memcmp(cbss->bssid, sdata->u.ibss.bssid, ETH_ALEN) == 0)
320                 goto put_bss;
321
322         if (rx_status->flag & RX_FLAG_TSFT) {
323                 /*
324                  * For correct IBSS merging we need mactime; since mactime is
325                  * defined as the time the first data symbol of the frame hits
326                  * the PHY, and the timestamp of the beacon is defined as "the
327                  * time that the data symbol containing the first bit of the
328                  * timestamp is transmitted to the PHY plus the transmitting
329                  * STA's delays through its local PHY from the MAC-PHY
330                  * interface to its interface with the WM" (802.11 11.1.2)
331                  * - equals the time this bit arrives at the receiver - we have
332                  * to take into account the offset between the two.
333                  *
334                  * E.g. at 1 MBit that means mactime is 192 usec earlier
335                  * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
336                  */
337                 int rate;
338
339                 if (rx_status->flag & RX_FLAG_HT)
340                         rate = 65; /* TODO: HT rates */
341                 else
342                         rate = local->hw.wiphy->bands[band]->
343                                 bitrates[rx_status->rate_idx].bitrate;
344
345                 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
346         } else {
347                 /*
348                  * second best option: get current TSF
349                  * (will return -1 if not supported)
350                  */
351                 rx_timestamp = drv_get_tsf(local);
352         }
353
354 #ifdef CONFIG_MAC80211_IBSS_DEBUG
355         printk(KERN_DEBUG "RX beacon SA=%pM BSSID="
356                "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
357                mgmt->sa, mgmt->bssid,
358                (unsigned long long)rx_timestamp,
359                (unsigned long long)beacon_timestamp,
360                (unsigned long long)(rx_timestamp - beacon_timestamp),
361                jiffies);
362 #endif
363
364         /* give slow hardware some time to do the TSF sync */
365         if (rx_timestamp < IEEE80211_IBSS_MERGE_DELAY)
366                 goto put_bss;
367
368         if (beacon_timestamp > rx_timestamp) {
369 #ifdef CONFIG_MAC80211_IBSS_DEBUG
370                 printk(KERN_DEBUG "%s: beacon TSF higher than "
371                        "local TSF - IBSS merge with BSSID %pM\n",
372                        sdata->name, mgmt->bssid);
373 #endif
374                 ieee80211_sta_join_ibss(sdata, bss);
375                 supp_rates = ieee80211_sta_get_rates(local, elems, band);
376                 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa,
377                                        supp_rates, GFP_KERNEL);
378         }
379
380  put_bss:
381         ieee80211_rx_bss_put(local, bss);
382 }
383
384 /*
385  * Add a new IBSS station, will also be called by the RX code when,
386  * in IBSS mode, receiving a frame from a yet-unknown station, hence
387  * must be callable in atomic context.
388  */
389 struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
390                                         u8 *bssid,u8 *addr, u32 supp_rates,
391                                         gfp_t gfp)
392 {
393         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
394         struct ieee80211_local *local = sdata->local;
395         struct sta_info *sta;
396         int band = local->hw.conf.channel->band;
397
398         /*
399          * XXX: Consider removing the least recently used entry and
400          *      allow new one to be added.
401          */
402         if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
403                 if (net_ratelimit())
404                         printk(KERN_DEBUG "%s: No room for a new IBSS STA entry %pM\n",
405                                sdata->name, addr);
406                 return NULL;
407         }
408
409         if (ifibss->state == IEEE80211_IBSS_MLME_SEARCH)
410                 return NULL;
411
412         if (compare_ether_addr(bssid, sdata->u.ibss.bssid))
413                 return NULL;
414
415 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
416         printk(KERN_DEBUG "%s: Adding new IBSS station %pM (dev=%s)\n",
417                wiphy_name(local->hw.wiphy), addr, sdata->name);
418 #endif
419
420         sta = sta_info_alloc(sdata, addr, gfp);
421         if (!sta)
422                 return NULL;
423
424         set_sta_flags(sta, WLAN_STA_AUTHORIZED);
425
426         /* make sure mandatory rates are always added */
427         sta->sta.supp_rates[band] = supp_rates |
428                         ieee80211_mandatory_rates(local, band);
429
430         rate_control_rate_init(sta);
431
432         /* If it fails, maybe we raced another insertion? */
433         if (sta_info_insert(sta))
434                 return sta_info_get(sdata, addr);
435         return sta;
436 }
437
438 static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
439 {
440         struct ieee80211_local *local = sdata->local;
441         int active = 0;
442         struct sta_info *sta;
443
444         rcu_read_lock();
445
446         list_for_each_entry_rcu(sta, &local->sta_list, list) {
447                 if (sta->sdata == sdata &&
448                     time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
449                                jiffies)) {
450                         active++;
451                         break;
452                 }
453         }
454
455         rcu_read_unlock();
456
457         return active;
458 }
459
460 /*
461  * This function is called with state == IEEE80211_IBSS_MLME_JOINED
462  */
463
464 static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata)
465 {
466         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
467
468         mod_timer(&ifibss->timer,
469                   round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL));
470
471         ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
472
473         if (time_before(jiffies, ifibss->last_scan_completed +
474                        IEEE80211_IBSS_MERGE_INTERVAL))
475                 return;
476
477         if (ieee80211_sta_active_ibss(sdata))
478                 return;
479
480         if (ifibss->fixed_channel)
481                 return;
482
483         printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other "
484                "IBSS networks with same SSID (merge)\n", sdata->name);
485
486         ieee80211_request_internal_scan(sdata, ifibss->ssid, ifibss->ssid_len);
487 }
488
489 static void ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata)
490 {
491         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
492         struct ieee80211_local *local = sdata->local;
493         struct ieee80211_supported_band *sband;
494         u8 bssid[ETH_ALEN];
495         u16 capability;
496         int i;
497
498         if (ifibss->fixed_bssid) {
499                 memcpy(bssid, ifibss->bssid, ETH_ALEN);
500         } else {
501                 /* Generate random, not broadcast, locally administered BSSID. Mix in
502                  * own MAC address to make sure that devices that do not have proper
503                  * random number generator get different BSSID. */
504                 get_random_bytes(bssid, ETH_ALEN);
505                 for (i = 0; i < ETH_ALEN; i++)
506                         bssid[i] ^= sdata->vif.addr[i];
507                 bssid[0] &= ~0x01;
508                 bssid[0] |= 0x02;
509         }
510
511         printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n",
512                sdata->name, bssid);
513
514         sband = local->hw.wiphy->bands[ifibss->channel->band];
515
516         capability = WLAN_CAPABILITY_IBSS;
517
518         if (ifibss->privacy)
519                 capability |= WLAN_CAPABILITY_PRIVACY;
520         else
521                 sdata->drop_unencrypted = 0;
522
523         __ieee80211_sta_join_ibss(sdata, bssid, sdata->vif.bss_conf.beacon_int,
524                                   ifibss->channel, 3, /* first two are basic */
525                                   capability, 0);
526 }
527
528 /*
529  * This function is called with state == IEEE80211_IBSS_MLME_SEARCH
530  */
531
532 static void ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata)
533 {
534         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
535         struct ieee80211_local *local = sdata->local;
536         struct cfg80211_bss *cbss;
537         struct ieee80211_channel *chan = NULL;
538         const u8 *bssid = NULL;
539         int active_ibss;
540         u16 capability;
541
542         active_ibss = ieee80211_sta_active_ibss(sdata);
543 #ifdef CONFIG_MAC80211_IBSS_DEBUG
544         printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n",
545                sdata->name, active_ibss);
546 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
547
548         if (active_ibss)
549                 return;
550
551         capability = WLAN_CAPABILITY_IBSS;
552         if (ifibss->privacy)
553                 capability |= WLAN_CAPABILITY_PRIVACY;
554         if (ifibss->fixed_bssid)
555                 bssid = ifibss->bssid;
556         if (ifibss->fixed_channel)
557                 chan = ifibss->channel;
558         if (!is_zero_ether_addr(ifibss->bssid))
559                 bssid = ifibss->bssid;
560         cbss = cfg80211_get_bss(local->hw.wiphy, chan, bssid,
561                                 ifibss->ssid, ifibss->ssid_len,
562                                 WLAN_CAPABILITY_IBSS | WLAN_CAPABILITY_PRIVACY,
563                                 capability);
564
565         if (cbss) {
566                 struct ieee80211_bss *bss;
567
568                 bss = (void *)cbss->priv;
569 #ifdef CONFIG_MAC80211_IBSS_DEBUG
570                 printk(KERN_DEBUG "   sta_find_ibss: selected %pM current "
571                        "%pM\n", cbss->bssid, ifibss->bssid);
572 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
573
574                 printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
575                        " based on configured SSID\n",
576                        sdata->name, cbss->bssid);
577
578                 ieee80211_sta_join_ibss(sdata, bss);
579                 ieee80211_rx_bss_put(local, bss);
580                 return;
581         }
582
583 #ifdef CONFIG_MAC80211_IBSS_DEBUG
584         printk(KERN_DEBUG "   did not try to join ibss\n");
585 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
586
587         /* Selected IBSS not found in current scan results - try to scan */
588         if (time_after(jiffies, ifibss->last_scan_completed +
589                                         IEEE80211_SCAN_INTERVAL)) {
590                 printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to "
591                        "join\n", sdata->name);
592
593                 ieee80211_request_internal_scan(sdata, ifibss->ssid,
594                                                 ifibss->ssid_len);
595         } else {
596                 int interval = IEEE80211_SCAN_INTERVAL;
597
598                 if (time_after(jiffies, ifibss->ibss_join_req +
599                                IEEE80211_IBSS_JOIN_TIMEOUT)) {
600                         if (!(local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS)) {
601                                 ieee80211_sta_create_ibss(sdata);
602                                 return;
603                         }
604                         printk(KERN_DEBUG "%s: IBSS not allowed on"
605                                " %d MHz\n", sdata->name,
606                                local->hw.conf.channel->center_freq);
607
608                         /* No IBSS found - decrease scan interval and continue
609                          * scanning. */
610                         interval = IEEE80211_SCAN_INTERVAL_SLOW;
611                 }
612
613                 mod_timer(&ifibss->timer,
614                           round_jiffies(jiffies + interval));
615         }
616 }
617
618 static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
619                                         struct ieee80211_mgmt *mgmt,
620                                         size_t len)
621 {
622         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
623         struct ieee80211_local *local = sdata->local;
624         int tx_last_beacon;
625         struct sk_buff *skb;
626         struct ieee80211_mgmt *resp;
627         u8 *pos, *end;
628
629         if (ifibss->state != IEEE80211_IBSS_MLME_JOINED ||
630             len < 24 + 2 || !ifibss->presp)
631                 return;
632
633         tx_last_beacon = drv_tx_last_beacon(local);
634
635 #ifdef CONFIG_MAC80211_IBSS_DEBUG
636         printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
637                " (tx_last_beacon=%d)\n",
638                sdata->name, mgmt->sa, mgmt->da,
639                mgmt->bssid, tx_last_beacon);
640 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
641
642         if (!tx_last_beacon)
643                 return;
644
645         if (memcmp(mgmt->bssid, ifibss->bssid, ETH_ALEN) != 0 &&
646             memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
647                 return;
648
649         end = ((u8 *) mgmt) + len;
650         pos = mgmt->u.probe_req.variable;
651         if (pos[0] != WLAN_EID_SSID ||
652             pos + 2 + pos[1] > end) {
653 #ifdef CONFIG_MAC80211_IBSS_DEBUG
654                 printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq "
655                        "from %pM\n",
656                        sdata->name, mgmt->sa);
657 #endif
658                 return;
659         }
660         if (pos[1] != 0 &&
661             (pos[1] != ifibss->ssid_len ||
662              memcmp(pos + 2, ifibss->ssid, ifibss->ssid_len))) {
663                 /* Ignore ProbeReq for foreign SSID */
664                 return;
665         }
666
667         /* Reply with ProbeResp */
668         skb = skb_copy(ifibss->presp, GFP_KERNEL);
669         if (!skb)
670                 return;
671
672         resp = (struct ieee80211_mgmt *) skb->data;
673         memcpy(resp->da, mgmt->sa, ETH_ALEN);
674 #ifdef CONFIG_MAC80211_IBSS_DEBUG
675         printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n",
676                sdata->name, resp->da);
677 #endif /* CONFIG_MAC80211_IBSS_DEBUG */
678         IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
679         ieee80211_tx_skb(sdata, skb);
680 }
681
682 static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
683                                          struct ieee80211_mgmt *mgmt,
684                                          size_t len,
685                                          struct ieee80211_rx_status *rx_status)
686 {
687         size_t baselen;
688         struct ieee802_11_elems elems;
689
690         if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN))
691                 return; /* ignore ProbeResp to foreign address */
692
693         baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
694         if (baselen > len)
695                 return;
696
697         ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
698                                 &elems);
699
700         ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
701 }
702
703 static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
704                                      struct ieee80211_mgmt *mgmt,
705                                      size_t len,
706                                      struct ieee80211_rx_status *rx_status)
707 {
708         size_t baselen;
709         struct ieee802_11_elems elems;
710
711         /* Process beacon from the current BSS */
712         baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
713         if (baselen > len)
714                 return;
715
716         ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
717
718         ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
719 }
720
721 static void ieee80211_ibss_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
722                                           struct sk_buff *skb)
723 {
724         struct ieee80211_rx_status *rx_status;
725         struct ieee80211_mgmt *mgmt;
726         u16 fc;
727
728         rx_status = IEEE80211_SKB_RXCB(skb);
729         mgmt = (struct ieee80211_mgmt *) skb->data;
730         fc = le16_to_cpu(mgmt->frame_control);
731
732         switch (fc & IEEE80211_FCTL_STYPE) {
733         case IEEE80211_STYPE_PROBE_REQ:
734                 ieee80211_rx_mgmt_probe_req(sdata, mgmt, skb->len);
735                 break;
736         case IEEE80211_STYPE_PROBE_RESP:
737                 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
738                                              rx_status);
739                 break;
740         case IEEE80211_STYPE_BEACON:
741                 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
742                                          rx_status);
743                 break;
744         case IEEE80211_STYPE_AUTH:
745                 ieee80211_rx_mgmt_auth_ibss(sdata, mgmt, skb->len);
746                 break;
747         }
748
749         kfree_skb(skb);
750 }
751
752 static void ieee80211_ibss_work(struct work_struct *work)
753 {
754         struct ieee80211_sub_if_data *sdata =
755                 container_of(work, struct ieee80211_sub_if_data, u.ibss.work);
756         struct ieee80211_local *local = sdata->local;
757         struct ieee80211_if_ibss *ifibss;
758         struct sk_buff *skb;
759
760         if (WARN_ON(local->suspended))
761                 return;
762
763         if (!ieee80211_sdata_running(sdata))
764                 return;
765
766         if (local->scanning)
767                 return;
768
769         if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_ADHOC))
770                 return;
771         ifibss = &sdata->u.ibss;
772
773         while ((skb = skb_dequeue(&ifibss->skb_queue)))
774                 ieee80211_ibss_rx_queued_mgmt(sdata, skb);
775
776         if (!test_and_clear_bit(IEEE80211_IBSS_REQ_RUN, &ifibss->request))
777                 return;
778
779         switch (ifibss->state) {
780         case IEEE80211_IBSS_MLME_SEARCH:
781                 ieee80211_sta_find_ibss(sdata);
782                 break;
783         case IEEE80211_IBSS_MLME_JOINED:
784                 ieee80211_sta_merge_ibss(sdata);
785                 break;
786         default:
787                 WARN_ON(1);
788                 break;
789         }
790 }
791
792 static void ieee80211_ibss_timer(unsigned long data)
793 {
794         struct ieee80211_sub_if_data *sdata =
795                 (struct ieee80211_sub_if_data *) data;
796         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
797         struct ieee80211_local *local = sdata->local;
798
799         if (local->quiescing) {
800                 ifibss->timer_running = true;
801                 return;
802         }
803
804         set_bit(IEEE80211_IBSS_REQ_RUN, &ifibss->request);
805         ieee80211_queue_work(&local->hw, &ifibss->work);
806 }
807
808 #ifdef CONFIG_PM
809 void ieee80211_ibss_quiesce(struct ieee80211_sub_if_data *sdata)
810 {
811         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
812
813         cancel_work_sync(&ifibss->work);
814         if (del_timer_sync(&ifibss->timer))
815                 ifibss->timer_running = true;
816 }
817
818 void ieee80211_ibss_restart(struct ieee80211_sub_if_data *sdata)
819 {
820         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
821
822         if (ifibss->timer_running) {
823                 add_timer(&ifibss->timer);
824                 ifibss->timer_running = false;
825         }
826 }
827 #endif
828
829 void ieee80211_ibss_setup_sdata(struct ieee80211_sub_if_data *sdata)
830 {
831         struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
832
833         INIT_WORK(&ifibss->work, ieee80211_ibss_work);
834         setup_timer(&ifibss->timer, ieee80211_ibss_timer,
835                     (unsigned long) sdata);
836         skb_queue_head_init(&ifibss->skb_queue);
837 }
838
839 /* scan finished notification */
840 void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local)
841 {
842         struct ieee80211_sub_if_data *sdata;
843
844         mutex_lock(&local->iflist_mtx);
845         list_for_each_entry(sdata, &local->interfaces, list) {
846                 if (!ieee80211_sdata_running(sdata))
847                         continue;
848                 if (sdata->vif.type != NL80211_IFTYPE_ADHOC)
849                         continue;
850                 if (!sdata->u.ibss.ssid_len)
851                         continue;
852                 sdata->u.ibss.last_scan_completed = jiffies;
853                 mod_timer(&sdata->u.ibss.timer, 0);
854         }
855         mutex_unlock(&local->iflist_mtx);
856 }
857
858 ieee80211_rx_result
859 ieee80211_ibss_rx_mgmt(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
860 {
861         struct ieee80211_local *local = sdata->local;
862         struct ieee80211_mgmt *mgmt;
863         u16 fc;
864
865         if (skb->len < 24)
866                 return RX_DROP_MONITOR;
867
868         mgmt = (struct ieee80211_mgmt *) skb->data;
869         fc = le16_to_cpu(mgmt->frame_control);
870
871         switch (fc & IEEE80211_FCTL_STYPE) {
872         case IEEE80211_STYPE_PROBE_RESP:
873         case IEEE80211_STYPE_BEACON:
874         case IEEE80211_STYPE_PROBE_REQ:
875         case IEEE80211_STYPE_AUTH:
876                 skb_queue_tail(&sdata->u.ibss.skb_queue, skb);
877                 ieee80211_queue_work(&local->hw, &sdata->u.ibss.work);
878                 return RX_QUEUED;
879         }
880
881         return RX_DROP_MONITOR;
882 }
883
884 int ieee80211_ibss_join(struct ieee80211_sub_if_data *sdata,
885                         struct cfg80211_ibss_params *params)
886 {
887         struct sk_buff *skb;
888
889         if (params->bssid) {
890                 memcpy(sdata->u.ibss.bssid, params->bssid, ETH_ALEN);
891                 sdata->u.ibss.fixed_bssid = true;
892         } else
893                 sdata->u.ibss.fixed_bssid = false;
894
895         sdata->u.ibss.privacy = params->privacy;
896
897         sdata->vif.bss_conf.beacon_int = params->beacon_interval;
898
899         sdata->u.ibss.channel = params->channel;
900         sdata->u.ibss.fixed_channel = params->channel_fixed;
901
902         if (params->ie) {
903                 sdata->u.ibss.ie = kmemdup(params->ie, params->ie_len,
904                                            GFP_KERNEL);
905                 if (sdata->u.ibss.ie)
906                         sdata->u.ibss.ie_len = params->ie_len;
907         }
908
909         skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom +
910                             36 /* bitrates */ +
911                             34 /* SSID */ +
912                             3  /* DS params */ +
913                             4  /* IBSS params */ +
914                             params->ie_len);
915         if (!skb)
916                 return -ENOMEM;
917
918         sdata->u.ibss.skb = skb;
919         sdata->u.ibss.state = IEEE80211_IBSS_MLME_SEARCH;
920         sdata->u.ibss.ibss_join_req = jiffies;
921
922         memcpy(sdata->u.ibss.ssid, params->ssid, IEEE80211_MAX_SSID_LEN);
923
924         /*
925          * The ssid_len setting below is used to see whether
926          * we are active, and we need all other settings
927          * before that may get visible.
928          */
929         mb();
930
931         sdata->u.ibss.ssid_len = params->ssid_len;
932
933         ieee80211_recalc_idle(sdata->local);
934
935         set_bit(IEEE80211_IBSS_REQ_RUN, &sdata->u.ibss.request);
936         ieee80211_queue_work(&sdata->local->hw, &sdata->u.ibss.work);
937
938         return 0;
939 }
940
941 int ieee80211_ibss_leave(struct ieee80211_sub_if_data *sdata)
942 {
943         struct sk_buff *skb;
944
945         del_timer_sync(&sdata->u.ibss.timer);
946         clear_bit(IEEE80211_IBSS_REQ_RUN, &sdata->u.ibss.request);
947         cancel_work_sync(&sdata->u.ibss.work);
948         clear_bit(IEEE80211_IBSS_REQ_RUN, &sdata->u.ibss.request);
949
950         sta_info_flush(sdata->local, sdata);
951
952         /* remove beacon */
953         kfree(sdata->u.ibss.ie);
954         skb = sdata->u.ibss.presp;
955         rcu_assign_pointer(sdata->u.ibss.presp, NULL);
956         ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
957         synchronize_rcu();
958         kfree_skb(skb);
959
960         skb_queue_purge(&sdata->u.ibss.skb_queue);
961         memset(sdata->u.ibss.bssid, 0, ETH_ALEN);
962         sdata->u.ibss.ssid_len = 0;
963
964         ieee80211_recalc_idle(sdata->local);
965
966         return 0;
967 }