blob: 88f262baaa5ec11bd79df1cd52bb77f3d85470c6 [file] [log] [blame]
Johannes Bergc2d15602007-07-27 15:43:23 +02001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * utilities for mac80211
12 */
13
14#include <net/mac80211.h>
15#include <linux/netdevice.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/etherdevice.h>
20#include <linux/if_arp.h>
21#include <linux/wireless.h>
22#include <linux/bitmap.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070023#include <net/net_namespace.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020024#include <net/cfg80211.h>
Johannes Bergdabeb342007-11-09 01:57:29 +010025#include <net/rtnetlink.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020026
27#include "ieee80211_i.h"
28#include "ieee80211_rate.h"
29#include "wme.h"
30
31/* privid for wiphys to determine whether they belong to us or not */
32void *mac80211_wiphy_privid = &mac80211_wiphy_privid;
33
34/* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
35/* Ethernet-II snap header (RFC1042 for most EtherTypes) */
36const unsigned char rfc1042_header[] =
37 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
38
39/* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
40const unsigned char bridge_tunnel_header[] =
41 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
42
43/* No encapsulation header if EtherType < 0x600 (=length) */
44static const unsigned char eapol_header[] =
45 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00, 0x88, 0x8e };
46
47
48static int rate_list_match(const int *rate_list, int rate)
49{
50 int i;
51
52 if (!rate_list)
53 return 0;
54
55 for (i = 0; rate_list[i] >= 0; i++)
56 if (rate_list[i] == rate)
57 return 1;
58
59 return 0;
60}
61
62void ieee80211_prepare_rates(struct ieee80211_local *local,
63 struct ieee80211_hw_mode *mode)
64{
65 int i;
66
67 for (i = 0; i < mode->num_rates; i++) {
68 struct ieee80211_rate *rate = &mode->rates[i];
69
70 rate->flags &= ~(IEEE80211_RATE_SUPPORTED |
71 IEEE80211_RATE_BASIC);
72
73 if (local->supp_rates[mode->mode]) {
74 if (!rate_list_match(local->supp_rates[mode->mode],
75 rate->rate))
76 continue;
77 }
78
79 rate->flags |= IEEE80211_RATE_SUPPORTED;
80
81 /* Use configured basic rate set if it is available. If not,
82 * use defaults that are sane for most cases. */
83 if (local->basic_rates[mode->mode]) {
84 if (rate_list_match(local->basic_rates[mode->mode],
85 rate->rate))
86 rate->flags |= IEEE80211_RATE_BASIC;
87 } else switch (mode->mode) {
88 case MODE_IEEE80211A:
89 if (rate->rate == 60 || rate->rate == 120 ||
90 rate->rate == 240)
91 rate->flags |= IEEE80211_RATE_BASIC;
92 break;
93 case MODE_IEEE80211B:
94 if (rate->rate == 10 || rate->rate == 20)
95 rate->flags |= IEEE80211_RATE_BASIC;
96 break;
Johannes Bergc2d15602007-07-27 15:43:23 +020097 case MODE_IEEE80211G:
98 if (rate->rate == 10 || rate->rate == 20 ||
99 rate->rate == 55 || rate->rate == 110)
100 rate->flags |= IEEE80211_RATE_BASIC;
101 break;
Johannes Berg693d4542007-09-18 17:29:20 -0400102 case NUM_IEEE80211_MODES:
103 /* not useful */
104 break;
Johannes Bergc2d15602007-07-27 15:43:23 +0200105 }
106
107 /* Set ERP and MANDATORY flags based on phymode */
108 switch (mode->mode) {
109 case MODE_IEEE80211A:
110 if (rate->rate == 60 || rate->rate == 120 ||
111 rate->rate == 240)
112 rate->flags |= IEEE80211_RATE_MANDATORY;
113 break;
114 case MODE_IEEE80211B:
115 if (rate->rate == 10)
116 rate->flags |= IEEE80211_RATE_MANDATORY;
117 break;
Johannes Bergc2d15602007-07-27 15:43:23 +0200118 case MODE_IEEE80211G:
119 if (rate->rate == 10 || rate->rate == 20 ||
120 rate->rate == 55 || rate->rate == 110 ||
121 rate->rate == 60 || rate->rate == 120 ||
122 rate->rate == 240)
123 rate->flags |= IEEE80211_RATE_MANDATORY;
124 break;
Johannes Berg693d4542007-09-18 17:29:20 -0400125 case NUM_IEEE80211_MODES:
126 /* not useful */
127 break;
Johannes Bergc2d15602007-07-27 15:43:23 +0200128 }
129 if (ieee80211_is_erp_rate(mode->mode, rate->rate))
130 rate->flags |= IEEE80211_RATE_ERP;
131 }
132}
133
134u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len)
135{
136 u16 fc;
137
138 if (len < 24)
139 return NULL;
140
141 fc = le16_to_cpu(hdr->frame_control);
142
143 switch (fc & IEEE80211_FCTL_FTYPE) {
144 case IEEE80211_FTYPE_DATA:
145 switch (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) {
146 case IEEE80211_FCTL_TODS:
147 return hdr->addr1;
148 case (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS):
149 return NULL;
150 case IEEE80211_FCTL_FROMDS:
151 return hdr->addr2;
152 case 0:
153 return hdr->addr3;
154 }
155 break;
156 case IEEE80211_FTYPE_MGMT:
157 return hdr->addr3;
158 case IEEE80211_FTYPE_CTL:
159 if ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PSPOLL)
160 return hdr->addr1;
161 else
162 return NULL;
163 }
164
165 return NULL;
166}
167
168int ieee80211_get_hdrlen(u16 fc)
169{
170 int hdrlen = 24;
171
172 switch (fc & IEEE80211_FCTL_FTYPE) {
173 case IEEE80211_FTYPE_DATA:
174 if ((fc & IEEE80211_FCTL_FROMDS) && (fc & IEEE80211_FCTL_TODS))
175 hdrlen = 30; /* Addr4 */
176 /*
177 * The QoS Control field is two bytes and its presence is
178 * indicated by the IEEE80211_STYPE_QOS_DATA bit. Add 2 to
179 * hdrlen if that bit is set.
180 * This works by masking out the bit and shifting it to
181 * bit position 1 so the result has the value 0 or 2.
182 */
183 hdrlen += (fc & IEEE80211_STYPE_QOS_DATA)
184 >> (ilog2(IEEE80211_STYPE_QOS_DATA)-1);
185 break;
186 case IEEE80211_FTYPE_CTL:
187 /*
188 * ACK and CTS are 10 bytes, all others 16. To see how
189 * to get this condition consider
190 * subtype mask: 0b0000000011110000 (0x00F0)
191 * ACK subtype: 0b0000000011010000 (0x00D0)
192 * CTS subtype: 0b0000000011000000 (0x00C0)
193 * bits that matter: ^^^ (0x00E0)
194 * value of those: 0b0000000011000000 (0x00C0)
195 */
196 if ((fc & 0xE0) == 0xC0)
197 hdrlen = 10;
198 else
199 hdrlen = 16;
200 break;
201 }
202
203 return hdrlen;
204}
205EXPORT_SYMBOL(ieee80211_get_hdrlen);
206
207int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb)
208{
209 const struct ieee80211_hdr *hdr = (const struct ieee80211_hdr *) skb->data;
210 int hdrlen;
211
212 if (unlikely(skb->len < 10))
213 return 0;
214 hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control));
215 if (unlikely(hdrlen > skb->len))
216 return 0;
217 return hdrlen;
218}
219EXPORT_SYMBOL(ieee80211_get_hdrlen_from_skb);
220
221int ieee80211_is_eapol(const struct sk_buff *skb)
222{
223 const struct ieee80211_hdr *hdr;
224 u16 fc;
225 int hdrlen;
226
227 if (unlikely(skb->len < 10))
228 return 0;
229
230 hdr = (const struct ieee80211_hdr *) skb->data;
231 fc = le16_to_cpu(hdr->frame_control);
232
233 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
234 return 0;
235
236 hdrlen = ieee80211_get_hdrlen(fc);
237
238 if (unlikely(skb->len >= hdrlen + sizeof(eapol_header) &&
239 memcmp(skb->data + hdrlen, eapol_header,
240 sizeof(eapol_header)) == 0))
241 return 1;
242
243 return 0;
244}
245
246void ieee80211_tx_set_iswep(struct ieee80211_txrx_data *tx)
247{
248 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
249
250 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
251 if (tx->u.tx.extra_frag) {
252 struct ieee80211_hdr *fhdr;
253 int i;
254 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
255 fhdr = (struct ieee80211_hdr *)
256 tx->u.tx.extra_frag[i]->data;
257 fhdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
258 }
259 }
260}
261
262int ieee80211_frame_duration(struct ieee80211_local *local, size_t len,
263 int rate, int erp, int short_preamble)
264{
265 int dur;
266
267 /* calculate duration (in microseconds, rounded up to next higher
268 * integer if it includes a fractional microsecond) to send frame of
269 * len bytes (does not include FCS) at the given rate. Duration will
270 * also include SIFS.
271 *
272 * rate is in 100 kbps, so divident is multiplied by 10 in the
273 * DIV_ROUND_UP() operations.
274 */
275
Johannes Bergb708e612007-09-14 11:10:25 -0400276 if (local->hw.conf.phymode == MODE_IEEE80211A || erp) {
Johannes Bergc2d15602007-07-27 15:43:23 +0200277 /*
278 * OFDM:
279 *
280 * N_DBPS = DATARATE x 4
281 * N_SYM = Ceiling((16+8xLENGTH+6) / N_DBPS)
282 * (16 = SIGNAL time, 6 = tail bits)
283 * TXTIME = T_PREAMBLE + T_SIGNAL + T_SYM x N_SYM + Signal Ext
284 *
285 * T_SYM = 4 usec
286 * 802.11a - 17.5.2: aSIFSTime = 16 usec
287 * 802.11g - 19.8.4: aSIFSTime = 10 usec +
288 * signal ext = 6 usec
289 */
Johannes Bergc2d15602007-07-27 15:43:23 +0200290 dur = 16; /* SIFS + signal ext */
291 dur += 16; /* 17.3.2.3: T_PREAMBLE = 16 usec */
292 dur += 4; /* 17.3.2.3: T_SIGNAL = 4 usec */
293 dur += 4 * DIV_ROUND_UP((16 + 8 * (len + 4) + 6) * 10,
294 4 * rate); /* T_SYM x N_SYM */
295 } else {
296 /*
297 * 802.11b or 802.11g with 802.11b compatibility:
298 * 18.3.4: TXTIME = PreambleLength + PLCPHeaderTime +
299 * Ceiling(((LENGTH+PBCC)x8)/DATARATE). PBCC=0.
300 *
301 * 802.11 (DS): 15.3.3, 802.11b: 18.3.4
302 * aSIFSTime = 10 usec
303 * aPreambleLength = 144 usec or 72 usec with short preamble
304 * aPLCPHeaderLength = 48 usec or 24 usec with short preamble
305 */
306 dur = 10; /* aSIFSTime = 10 usec */
307 dur += short_preamble ? (72 + 24) : (144 + 48);
308
309 dur += DIV_ROUND_UP(8 * (len + 4) * 10, rate);
310 }
311
312 return dur;
313}
314
315/* Exported duration function for driver use */
Daniel Drake7e9ed182007-07-27 15:43:24 +0200316__le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw, int if_id,
Johannes Bergc2d15602007-07-27 15:43:23 +0200317 size_t frame_len, int rate)
318{
319 struct ieee80211_local *local = hw_to_local(hw);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700320 struct net_device *bdev = dev_get_by_index(&init_net, if_id);
Daniel Drake7e9ed182007-07-27 15:43:24 +0200321 struct ieee80211_sub_if_data *sdata;
Johannes Bergc2d15602007-07-27 15:43:23 +0200322 u16 dur;
323 int erp;
324
Daniel Drake7e9ed182007-07-27 15:43:24 +0200325 if (unlikely(!bdev))
326 return 0;
327
328 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
Johannes Bergc2d15602007-07-27 15:43:23 +0200329 erp = ieee80211_is_erp_rate(hw->conf.phymode, rate);
330 dur = ieee80211_frame_duration(local, frame_len, rate,
Jiri Slaby13262ff2007-08-28 17:01:54 -0400331 erp, sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE);
Johannes Bergc2d15602007-07-27 15:43:23 +0200332
Daniel Drake7e9ed182007-07-27 15:43:24 +0200333 dev_put(bdev);
Johannes Bergc2d15602007-07-27 15:43:23 +0200334 return cpu_to_le16(dur);
335}
336EXPORT_SYMBOL(ieee80211_generic_frame_duration);
337
Daniel Drake7e9ed182007-07-27 15:43:24 +0200338__le16 ieee80211_rts_duration(struct ieee80211_hw *hw, int if_id,
Johannes Bergc2d15602007-07-27 15:43:23 +0200339 size_t frame_len,
340 const struct ieee80211_tx_control *frame_txctl)
341{
342 struct ieee80211_local *local = hw_to_local(hw);
343 struct ieee80211_rate *rate;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700344 struct net_device *bdev = dev_get_by_index(&init_net, if_id);
Daniel Drake7e9ed182007-07-27 15:43:24 +0200345 struct ieee80211_sub_if_data *sdata;
346 int short_preamble;
Johannes Bergc2d15602007-07-27 15:43:23 +0200347 int erp;
348 u16 dur;
349
Daniel Drake7e9ed182007-07-27 15:43:24 +0200350 if (unlikely(!bdev))
351 return 0;
352
353 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
Jiri Slaby13262ff2007-08-28 17:01:54 -0400354 short_preamble = sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200355
Johannes Bergc2d15602007-07-27 15:43:23 +0200356 rate = frame_txctl->rts_rate;
357 erp = !!(rate->flags & IEEE80211_RATE_ERP);
358
359 /* CTS duration */
360 dur = ieee80211_frame_duration(local, 10, rate->rate,
361 erp, short_preamble);
362 /* Data frame duration */
363 dur += ieee80211_frame_duration(local, frame_len, rate->rate,
364 erp, short_preamble);
365 /* ACK duration */
366 dur += ieee80211_frame_duration(local, 10, rate->rate,
367 erp, short_preamble);
368
Daniel Drake7e9ed182007-07-27 15:43:24 +0200369 dev_put(bdev);
Johannes Bergc2d15602007-07-27 15:43:23 +0200370 return cpu_to_le16(dur);
371}
372EXPORT_SYMBOL(ieee80211_rts_duration);
373
Daniel Drake7e9ed182007-07-27 15:43:24 +0200374__le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw, int if_id,
Johannes Bergc2d15602007-07-27 15:43:23 +0200375 size_t frame_len,
376 const struct ieee80211_tx_control *frame_txctl)
377{
378 struct ieee80211_local *local = hw_to_local(hw);
379 struct ieee80211_rate *rate;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700380 struct net_device *bdev = dev_get_by_index(&init_net, if_id);
Daniel Drake7e9ed182007-07-27 15:43:24 +0200381 struct ieee80211_sub_if_data *sdata;
382 int short_preamble;
Johannes Bergc2d15602007-07-27 15:43:23 +0200383 int erp;
384 u16 dur;
385
Daniel Drake7e9ed182007-07-27 15:43:24 +0200386 if (unlikely(!bdev))
387 return 0;
388
389 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
Jiri Slaby13262ff2007-08-28 17:01:54 -0400390 short_preamble = sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200391
Johannes Bergc2d15602007-07-27 15:43:23 +0200392 rate = frame_txctl->rts_rate;
393 erp = !!(rate->flags & IEEE80211_RATE_ERP);
394
395 /* Data frame duration */
396 dur = ieee80211_frame_duration(local, frame_len, rate->rate,
397 erp, short_preamble);
398 if (!(frame_txctl->flags & IEEE80211_TXCTL_NO_ACK)) {
399 /* ACK duration */
400 dur += ieee80211_frame_duration(local, 10, rate->rate,
401 erp, short_preamble);
402 }
403
Daniel Drake7e9ed182007-07-27 15:43:24 +0200404 dev_put(bdev);
Johannes Bergc2d15602007-07-27 15:43:23 +0200405 return cpu_to_le16(dur);
406}
407EXPORT_SYMBOL(ieee80211_ctstoself_duration);
408
409struct ieee80211_rate *
410ieee80211_get_rate(struct ieee80211_local *local, int phymode, int hw_rate)
411{
412 struct ieee80211_hw_mode *mode;
413 int r;
414
415 list_for_each_entry(mode, &local->modes_list, list) {
416 if (mode->mode != phymode)
417 continue;
418 for (r = 0; r < mode->num_rates; r++) {
419 struct ieee80211_rate *rate = &mode->rates[r];
420 if (rate->val == hw_rate ||
421 (rate->flags & IEEE80211_RATE_PREAMBLE2 &&
422 rate->val2 == hw_rate))
423 return rate;
424 }
425 }
426
427 return NULL;
428}
429
430void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue)
431{
432 struct ieee80211_local *local = hw_to_local(hw);
433
434 if (test_and_clear_bit(IEEE80211_LINK_STATE_XOFF,
435 &local->state[queue])) {
436 if (test_bit(IEEE80211_LINK_STATE_PENDING,
437 &local->state[queue]))
438 tasklet_schedule(&local->tx_pending_tasklet);
439 else
440 if (!ieee80211_qdisc_installed(local->mdev)) {
441 if (queue == 0)
442 netif_wake_queue(local->mdev);
443 } else
444 __netif_schedule(local->mdev);
445 }
446}
447EXPORT_SYMBOL(ieee80211_wake_queue);
448
449void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue)
450{
451 struct ieee80211_local *local = hw_to_local(hw);
452
453 if (!ieee80211_qdisc_installed(local->mdev) && queue == 0)
454 netif_stop_queue(local->mdev);
455 set_bit(IEEE80211_LINK_STATE_XOFF, &local->state[queue]);
456}
457EXPORT_SYMBOL(ieee80211_stop_queue);
458
459void ieee80211_start_queues(struct ieee80211_hw *hw)
460{
461 struct ieee80211_local *local = hw_to_local(hw);
462 int i;
463
464 for (i = 0; i < local->hw.queues; i++)
465 clear_bit(IEEE80211_LINK_STATE_XOFF, &local->state[i]);
466 if (!ieee80211_qdisc_installed(local->mdev))
467 netif_start_queue(local->mdev);
468}
469EXPORT_SYMBOL(ieee80211_start_queues);
470
471void ieee80211_stop_queues(struct ieee80211_hw *hw)
472{
473 int i;
474
475 for (i = 0; i < hw->queues; i++)
476 ieee80211_stop_queue(hw, i);
477}
478EXPORT_SYMBOL(ieee80211_stop_queues);
479
480void ieee80211_wake_queues(struct ieee80211_hw *hw)
481{
482 int i;
483
484 for (i = 0; i < hw->queues; i++)
485 ieee80211_wake_queue(hw, i);
486}
487EXPORT_SYMBOL(ieee80211_wake_queues);
Johannes Bergdabeb342007-11-09 01:57:29 +0100488
489void ieee80211_iterate_active_interfaces(struct ieee80211_hw *hw,
490 void (*iterator)(void *data, u8 *mac,
491 int if_id),
492 void *data)
493{
494 struct ieee80211_local *local = hw_to_local(hw);
495 struct ieee80211_sub_if_data *sdata;
496
497 ASSERT_RTNL();
498
499 /* we hold the RTNL here so can safely walk the list */
500 list_for_each_entry(sdata, &local->interfaces, list) {
501 switch (sdata->type) {
502 case IEEE80211_IF_TYPE_INVALID:
503 case IEEE80211_IF_TYPE_MNTR:
504 case IEEE80211_IF_TYPE_VLAN:
505 continue;
506 case IEEE80211_IF_TYPE_AP:
507 case IEEE80211_IF_TYPE_STA:
508 case IEEE80211_IF_TYPE_IBSS:
509 case IEEE80211_IF_TYPE_WDS:
510 break;
511 }
512 if (sdata->dev == local->mdev)
513 continue;
514 if (netif_running(sdata->dev))
515 iterator(data, sdata->dev->dev_addr,
516 sdata->dev->ifindex);
517 }
518}
519EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces);