blob: 214109b8d95aa05b23ffd6a4c133bf64a2978845 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef IEEE80211_I_H
12#define IEEE80211_I_H
13
14#include <linux/kernel.h>
15#include <linux/device.h>
16#include <linux/if_ether.h>
17#include <linux/interrupt.h>
18#include <linux/list.h>
19#include <linux/netdevice.h>
20#include <linux/skbuff.h>
21#include <linux/workqueue.h>
22#include <linux/types.h>
23#include <linux/spinlock.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020024#include <linux/etherdevice.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include <net/wireless.h>
26#include "ieee80211_key.h"
27#include "sta_info.h"
28
29/* ieee80211.o internal definitions, etc. These are not included into
30 * low-level drivers. */
31
32#ifndef ETH_P_PAE
33#define ETH_P_PAE 0x888E /* Port Access Entity (IEEE 802.1X) */
34#endif /* ETH_P_PAE */
35
36#define WLAN_FC_DATA_PRESENT(fc) (((fc) & 0x4c) == 0x08)
37
38struct ieee80211_local;
39
Jiri Bencf0706e82007-05-05 11:45:53 -070040#define IEEE80211_ALIGN32_PAD(a) ((4 - ((a) & 3)) & 3)
41
42/* Maximum number of broadcast/multicast frames to buffer when some of the
43 * associated stations are using power saving. */
44#define AP_MAX_BC_BUFFER 128
45
46/* Maximum number of frames buffered to all STAs, including multicast frames.
47 * Note: increasing this limit increases the potential memory requirement. Each
48 * frame can be up to about 2 kB long. */
49#define TOTAL_MAX_TX_BUFFER 512
50
51/* Required encryption head and tailroom */
52#define IEEE80211_ENCRYPT_HEADROOM 8
53#define IEEE80211_ENCRYPT_TAILROOM 12
54
55/* IEEE 802.11 (Ch. 9.5 Defragmentation) requires support for concurrent
56 * reception of at least three fragmented frames. This limit can be increased
57 * by changing this define, at the cost of slower frame reassembly and
58 * increased memory use (about 2 kB of RAM per entry). */
59#define IEEE80211_FRAGMENT_MAX 4
60
61struct ieee80211_fragment_entry {
62 unsigned long first_frag_time;
63 unsigned int seq;
64 unsigned int rx_queue;
65 unsigned int last_frag;
66 unsigned int extra_len;
67 struct sk_buff_head skb_list;
68 int ccmp; /* Whether fragments were encrypted with CCMP */
69 u8 last_pn[6]; /* PN of the last fragment if CCMP was used */
70};
71
72
73struct ieee80211_sta_bss {
74 struct list_head list;
75 struct ieee80211_sta_bss *hnext;
76 atomic_t users;
77
78 u8 bssid[ETH_ALEN];
79 u8 ssid[IEEE80211_MAX_SSID_LEN];
80 size_t ssid_len;
81 u16 capability; /* host byte order */
82 int hw_mode;
83 int channel;
84 int freq;
85 int rssi, signal, noise;
86 u8 *wpa_ie;
87 size_t wpa_ie_len;
88 u8 *rsn_ie;
89 size_t rsn_ie_len;
90 u8 *wmm_ie;
91 size_t wmm_ie_len;
Ron Rindjunskyc7153502007-11-26 16:14:31 +020092 u8 *ht_ie;
93 size_t ht_ie_len;
Jiri Bencf0706e82007-05-05 11:45:53 -070094#define IEEE80211_MAX_SUPP_RATES 32
95 u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
96 size_t supp_rates_len;
97 int beacon_int;
98 u64 timestamp;
99
100 int probe_resp;
101 unsigned long last_update;
102
Daniel Drake56282212007-07-10 19:32:10 +0200103 /* during assocation, we save an ERP value from a probe response so
104 * that we can feed ERP info to the driver when handling the
105 * association completes. these fields probably won't be up-to-date
106 * otherwise, you probably don't want to use them. */
107 int has_erp_value;
108 u8 erp_value;
Jiri Bencf0706e82007-05-05 11:45:53 -0700109};
110
111
112typedef enum {
113 TXRX_CONTINUE, TXRX_DROP, TXRX_QUEUED
114} ieee80211_txrx_result;
115
Jiri Slabybadffb72007-08-28 17:01:54 -0400116/* flags used in struct ieee80211_txrx_data.flags */
117/* whether the MSDU was fragmented */
118#define IEEE80211_TXRXD_FRAGMENTED BIT(0)
119#define IEEE80211_TXRXD_TXUNICAST BIT(1)
120#define IEEE80211_TXRXD_TXPS_BUFFERED BIT(2)
121#define IEEE80211_TXRXD_TXPROBE_LAST_FRAG BIT(3)
122#define IEEE80211_TXRXD_RXIN_SCAN BIT(4)
123/* frame is destined to interface currently processed (incl. multicast frames) */
124#define IEEE80211_TXRXD_RXRA_MATCH BIT(5)
Johannes Berg58d41852007-09-26 17:53:18 +0200125#define IEEE80211_TXRXD_TX_INJECTED BIT(6)
Ron Rindjunsky64bd4b62007-11-29 10:35:53 +0200126#define IEEE80211_TXRXD_RX_AMSDU BIT(7)
Jiri Bencf0706e82007-05-05 11:45:53 -0700127struct ieee80211_txrx_data {
128 struct sk_buff *skb;
129 struct net_device *dev;
130 struct ieee80211_local *local;
131 struct ieee80211_sub_if_data *sdata;
132 struct sta_info *sta;
133 u16 fc, ethertype;
134 struct ieee80211_key *key;
Jiri Slabybadffb72007-08-28 17:01:54 -0400135 unsigned int flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700136 union {
137 struct {
138 struct ieee80211_tx_control *control;
Jiri Bencf0706e82007-05-05 11:45:53 -0700139 struct ieee80211_hw_mode *mode;
140 struct ieee80211_rate *rate;
141 /* use this rate (if set) for last fragment; rate can
142 * be set to lower rate for the first fragments, e.g.,
143 * when using CTS protection with IEEE 802.11g. */
144 struct ieee80211_rate *last_frag_rate;
145 int last_frag_hwrate;
Jiri Bencf0706e82007-05-05 11:45:53 -0700146
147 /* Extra fragments (in addition to the first fragment
148 * in skb) */
149 int num_extra_frag;
150 struct sk_buff **extra_frag;
151 } tx;
152 struct {
153 struct ieee80211_rx_status *status;
154 int sent_ps_buffered;
155 int queue;
156 int load;
Johannes Berg50741ae2007-09-26 15:19:45 +0200157 u32 tkip_iv32;
158 u16 tkip_iv16;
Jiri Bencf0706e82007-05-05 11:45:53 -0700159 } rx;
160 } u;
161};
162
Jiri Slabye8bf9642007-08-28 17:01:54 -0400163/* flags used in struct ieee80211_tx_packet_data.flags */
164#define IEEE80211_TXPD_REQ_TX_STATUS BIT(0)
165#define IEEE80211_TXPD_DO_NOT_ENCRYPT BIT(1)
166#define IEEE80211_TXPD_REQUEUE BIT(2)
Jiri Bencf0706e82007-05-05 11:45:53 -0700167/* Stored in sk_buff->cb */
168struct ieee80211_tx_packet_data {
169 int ifindex;
170 unsigned long jiffies;
Jiri Slabye8bf9642007-08-28 17:01:54 -0400171 unsigned int flags;
172 u8 queue;
Jiri Bencf0706e82007-05-05 11:45:53 -0700173};
174
175struct ieee80211_tx_stored_packet {
176 struct ieee80211_tx_control control;
177 struct sk_buff *skb;
178 int num_extra_frag;
179 struct sk_buff **extra_frag;
180 int last_frag_rateidx;
181 int last_frag_hwrate;
182 struct ieee80211_rate *last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -0400183 unsigned int last_frag_rate_ctrl_probe;
Jiri Bencf0706e82007-05-05 11:45:53 -0700184};
185
186typedef ieee80211_txrx_result (*ieee80211_tx_handler)
187(struct ieee80211_txrx_data *tx);
188
189typedef ieee80211_txrx_result (*ieee80211_rx_handler)
190(struct ieee80211_txrx_data *rx);
191
192struct ieee80211_if_ap {
193 u8 *beacon_head, *beacon_tail;
194 int beacon_head_len, beacon_tail_len;
195
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400196 struct list_head vlans;
197
Jiri Bencf0706e82007-05-05 11:45:53 -0700198 u8 ssid[IEEE80211_MAX_SSID_LEN];
199 size_t ssid_len;
Jiri Bencf0706e82007-05-05 11:45:53 -0700200
201 /* yes, this looks ugly, but guarantees that we can later use
202 * bitmap_empty :)
203 * NB: don't ever use set_bit, use bss_tim_set/bss_tim_clear! */
204 u8 tim[sizeof(unsigned long) * BITS_TO_LONGS(IEEE80211_MAX_AID + 1)];
205 atomic_t num_sta_ps; /* number of stations in PS mode */
206 struct sk_buff_head ps_bc_buf;
207 int dtim_period, dtim_count;
208 int force_unicast_rateidx; /* forced TX rateidx for unicast frames */
209 int max_ratectrl_rateidx; /* max TX rateidx for rate control */
210 int num_beacons; /* number of TXed beacon frames for this BSS */
211};
212
213struct ieee80211_if_wds {
214 u8 remote_addr[ETH_ALEN];
215 struct sta_info *sta;
216};
217
218struct ieee80211_if_vlan {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400219 struct ieee80211_sub_if_data *ap;
220 struct list_head list;
Jiri Bencf0706e82007-05-05 11:45:53 -0700221};
222
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400223/* flags used in struct ieee80211_if_sta.flags */
224#define IEEE80211_STA_SSID_SET BIT(0)
225#define IEEE80211_STA_BSSID_SET BIT(1)
226#define IEEE80211_STA_PREV_BSSID_SET BIT(2)
227#define IEEE80211_STA_AUTHENTICATED BIT(3)
228#define IEEE80211_STA_ASSOCIATED BIT(4)
229#define IEEE80211_STA_PROBEREQ_POLL BIT(5)
230#define IEEE80211_STA_CREATE_IBSS BIT(6)
231#define IEEE80211_STA_MIXED_CELL BIT(7)
232#define IEEE80211_STA_WMM_ENABLED BIT(8)
233#define IEEE80211_STA_AUTO_SSID_SEL BIT(10)
234#define IEEE80211_STA_AUTO_BSSID_SEL BIT(11)
235#define IEEE80211_STA_AUTO_CHANNEL_SEL BIT(12)
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000236#define IEEE80211_STA_PRIVACY_INVOKED BIT(13)
Jiri Bencf0706e82007-05-05 11:45:53 -0700237struct ieee80211_if_sta {
238 enum {
239 IEEE80211_DISABLED, IEEE80211_AUTHENTICATE,
240 IEEE80211_ASSOCIATE, IEEE80211_ASSOCIATED,
241 IEEE80211_IBSS_SEARCH, IEEE80211_IBSS_JOINED
242 } state;
243 struct timer_list timer;
244 struct work_struct work;
245 u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
246 u8 ssid[IEEE80211_MAX_SSID_LEN];
247 size_t ssid_len;
Helmut Schaaa0af5f12007-11-09 16:25:08 +0100248 u8 scan_ssid[IEEE80211_MAX_SSID_LEN];
249 size_t scan_ssid_len;
Jiri Bencf0706e82007-05-05 11:45:53 -0700250 u16 aid;
251 u16 ap_capab, capab;
252 u8 *extra_ie; /* to be added to the end of AssocReq */
253 size_t extra_ie_len;
254
255 /* The last AssocReq/Resp IEs */
256 u8 *assocreq_ies, *assocresp_ies;
257 size_t assocreq_ies_len, assocresp_ies_len;
258
259 int auth_tries, assoc_tries;
260
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400261 unsigned int flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700262#define IEEE80211_STA_REQ_SCAN 0
263#define IEEE80211_STA_REQ_AUTH 1
264#define IEEE80211_STA_REQ_RUN 2
265 unsigned long request;
266 struct sk_buff_head skb_queue;
267
Jiri Bencf0706e82007-05-05 11:45:53 -0700268 unsigned long last_probe;
269
270#define IEEE80211_AUTH_ALG_OPEN BIT(0)
271#define IEEE80211_AUTH_ALG_SHARED_KEY BIT(1)
272#define IEEE80211_AUTH_ALG_LEAP BIT(2)
273 unsigned int auth_algs; /* bitfield of allowed auth algs */
274 int auth_alg; /* currently used IEEE 802.11 authentication algorithm */
275 int auth_transaction;
276
277 unsigned long ibss_join_req;
278 struct sk_buff *probe_resp; /* ProbeResp template for IBSS */
279 u32 supp_rates_bits;
280
281 int wmm_last_param_set;
282};
283
284
Jiri Slaby13262ff2007-08-28 17:01:54 -0400285/* flags used in struct ieee80211_sub_if_data.flags */
286#define IEEE80211_SDATA_ALLMULTI BIT(0)
287#define IEEE80211_SDATA_PROMISC BIT(1)
288#define IEEE80211_SDATA_USE_PROTECTION BIT(2) /* CTS protect ERP frames */
289/* use short preamble with IEEE 802.11b: this flag is set when the AP or beacon
290 * generator reports that there are no present stations that cannot support short
291 * preambles */
292#define IEEE80211_SDATA_SHORT_PREAMBLE BIT(3)
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200293#define IEEE80211_SDATA_USERSPACE_MLME BIT(4)
Jiri Bencf0706e82007-05-05 11:45:53 -0700294struct ieee80211_sub_if_data {
295 struct list_head list;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +0200296 enum ieee80211_if_types type;
Jiri Bencf0706e82007-05-05 11:45:53 -0700297
298 struct wireless_dev wdev;
299
Johannes Berg11a843b2007-08-28 17:01:55 -0400300 /* keys */
301 struct list_head key_list;
302
Jiri Bencf0706e82007-05-05 11:45:53 -0700303 struct net_device *dev;
304 struct ieee80211_local *local;
305
Jiri Slaby13262ff2007-08-28 17:01:54 -0400306 unsigned int flags;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200307
Jiri Bencf0706e82007-05-05 11:45:53 -0700308 int drop_unencrypted;
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100309 /*
310 * IEEE 802.1X Port access control in effect,
311 * drop packets to/from unauthorized port
312 */
313 int ieee802_1x_pac;
Jiri Bencf0706e82007-05-05 11:45:53 -0700314
315 u16 sequence;
316
317 /* Fragment table for host-based reassembly */
318 struct ieee80211_fragment_entry fragments[IEEE80211_FRAGMENT_MAX];
319 unsigned int fragment_next;
320
321#define NUM_DEFAULT_KEYS 4
322 struct ieee80211_key *keys[NUM_DEFAULT_KEYS];
323 struct ieee80211_key *default_key;
324
325 struct ieee80211_if_ap *bss; /* BSS that this device belongs to */
326
327 union {
328 struct ieee80211_if_ap ap;
329 struct ieee80211_if_wds wds;
330 struct ieee80211_if_vlan vlan;
331 struct ieee80211_if_sta sta;
332 } u;
333 int channel_use;
334 int channel_use_raw;
Jiri Bence9f207f2007-05-05 11:46:38 -0700335
336#ifdef CONFIG_MAC80211_DEBUGFS
337 struct dentry *debugfsdir;
338 union {
339 struct {
340 struct dentry *channel_use;
341 struct dentry *drop_unencrypted;
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100342 struct dentry *ieee802_1x_pac;
Jiri Bence9f207f2007-05-05 11:46:38 -0700343 struct dentry *state;
344 struct dentry *bssid;
345 struct dentry *prev_bssid;
346 struct dentry *ssid_len;
347 struct dentry *aid;
348 struct dentry *ap_capab;
349 struct dentry *capab;
350 struct dentry *extra_ie_len;
351 struct dentry *auth_tries;
352 struct dentry *assoc_tries;
353 struct dentry *auth_algs;
354 struct dentry *auth_alg;
355 struct dentry *auth_transaction;
356 struct dentry *flags;
357 } sta;
358 struct {
359 struct dentry *channel_use;
360 struct dentry *drop_unencrypted;
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100361 struct dentry *ieee802_1x_pac;
Jiri Bence9f207f2007-05-05 11:46:38 -0700362 struct dentry *num_sta_ps;
363 struct dentry *dtim_period;
364 struct dentry *dtim_count;
365 struct dentry *num_beacons;
366 struct dentry *force_unicast_rateidx;
367 struct dentry *max_ratectrl_rateidx;
368 struct dentry *num_buffered_multicast;
369 struct dentry *beacon_head_len;
370 struct dentry *beacon_tail_len;
371 } ap;
372 struct {
373 struct dentry *channel_use;
374 struct dentry *drop_unencrypted;
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100375 struct dentry *ieee802_1x_pac;
Jiri Bence9f207f2007-05-05 11:46:38 -0700376 struct dentry *peer;
377 } wds;
378 struct {
379 struct dentry *channel_use;
380 struct dentry *drop_unencrypted;
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100381 struct dentry *ieee802_1x_pac;
Jiri Bence9f207f2007-05-05 11:46:38 -0700382 } vlan;
383 struct {
384 struct dentry *mode;
385 } monitor;
386 struct dentry *default_key;
387 } debugfs;
388#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700389};
390
391#define IEEE80211_DEV_TO_SUB_IF(dev) netdev_priv(dev)
392
393enum {
394 IEEE80211_RX_MSG = 1,
395 IEEE80211_TX_STATUS_MSG = 2,
396};
397
398struct ieee80211_local {
399 /* embed the driver visible part.
400 * don't cast (use the static inlines below), but we keep
401 * it first anyway so they become a no-op */
402 struct ieee80211_hw hw;
403
404 const struct ieee80211_ops *ops;
405
406 /* List of registered struct ieee80211_hw_mode */
407 struct list_head modes_list;
408
409 struct net_device *mdev; /* wmaster# - "master" 802.11 device */
Jiri Bencf0706e82007-05-05 11:45:53 -0700410 int open_count;
411 int monitors;
Johannes Berg4150c572007-09-17 01:29:23 -0400412 unsigned int filter_flags; /* FIF_* */
Jiri Bencf0706e82007-05-05 11:45:53 -0700413 struct iw_statistics wstats;
414 u8 wstats_flags;
Johannes Bergb306f452007-07-10 19:32:08 +0200415 int tx_headroom; /* required headroom for hardware/radiotap */
Jiri Bencf0706e82007-05-05 11:45:53 -0700416
417 enum {
418 IEEE80211_DEV_UNINITIALIZED = 0,
419 IEEE80211_DEV_REGISTERED,
420 IEEE80211_DEV_UNREGISTERED,
421 } reg_state;
422
423 /* Tasklet and skb queue to process calls from IRQ mode. All frames
424 * added to skb_queue will be processed, but frames in
425 * skb_queue_unreliable may be dropped if the total length of these
426 * queues increases over the limit. */
427#define IEEE80211_IRQSAFE_QUEUE_LIMIT 128
428 struct tasklet_struct tasklet;
429 struct sk_buff_head skb_queue;
430 struct sk_buff_head skb_queue_unreliable;
431
432 /* Station data structures */
Michael Wube8755e2007-07-27 15:43:23 +0200433 rwlock_t sta_lock; /* protects STA data structures */
Jiri Bencf0706e82007-05-05 11:45:53 -0700434 int num_sta; /* number of stations in sta_list */
435 struct list_head sta_list;
Jiri Bencf0706e82007-05-05 11:45:53 -0700436 struct sta_info *sta_hash[STA_HASH_SIZE];
437 struct timer_list sta_cleanup;
438
439 unsigned long state[NUM_TX_DATA_QUEUES];
440 struct ieee80211_tx_stored_packet pending_packet[NUM_TX_DATA_QUEUES];
441 struct tasklet_struct tx_pending_tasklet;
442
Johannes Berg53918992007-09-26 15:19:47 +0200443 /* number of interfaces with corresponding IFF_ flags */
444 atomic_t iff_allmultis, iff_promiscs;
Jiri Bencf0706e82007-05-05 11:45:53 -0700445
446 struct rate_control_ref *rate_ctrl;
447
Jiri Bencf0706e82007-05-05 11:45:53 -0700448 /* Supported and basic rate filters for different modes. These are
449 * pointers to -1 terminated lists and rates in 100 kbps units. */
450 int *supp_rates[NUM_IEEE80211_MODES];
451 int *basic_rates[NUM_IEEE80211_MODES];
452
453 int rts_threshold;
Jiri Bencf0706e82007-05-05 11:45:53 -0700454 int fragmentation_threshold;
455 int short_retry_limit; /* dot11ShortRetryLimit */
456 int long_retry_limit; /* dot11LongRetryLimit */
Jiri Bencf0706e82007-05-05 11:45:53 -0700457
458 struct crypto_blkcipher *wep_tx_tfm;
459 struct crypto_blkcipher *wep_rx_tfm;
460 u32 wep_iv;
Jiri Bencf0706e82007-05-05 11:45:53 -0700461
462 int bridge_packets; /* bridge packets between associated stations and
463 * deliver multicast frames both back to wireless
464 * media and to the local net stack */
465
466 ieee80211_rx_handler *rx_pre_handlers;
467 ieee80211_rx_handler *rx_handlers;
468 ieee80211_tx_handler *tx_handlers;
469
Johannes Berg79010422007-09-18 17:29:21 -0400470 struct list_head interfaces;
471
Zhu Yiece8edd2007-11-22 10:53:21 +0800472 bool sta_sw_scanning;
473 bool sta_hw_scanning;
Jiri Bencf0706e82007-05-05 11:45:53 -0700474 int scan_channel_idx;
475 enum { SCAN_SET_CHANNEL, SCAN_SEND_PROBE } scan_state;
476 unsigned long last_scan_completed;
477 struct delayed_work scan_work;
478 struct net_device *scan_dev;
479 struct ieee80211_channel *oper_channel, *scan_channel;
480 struct ieee80211_hw_mode *oper_hw_mode, *scan_hw_mode;
481 u8 scan_ssid[IEEE80211_MAX_SSID_LEN];
482 size_t scan_ssid_len;
483 struct list_head sta_bss_list;
484 struct ieee80211_sta_bss *sta_bss_hash[STA_HASH_SIZE];
485 spinlock_t sta_bss_lock;
Jiri Bencf0706e82007-05-05 11:45:53 -0700486
487 /* SNMP counters */
488 /* dot11CountersTable */
489 u32 dot11TransmittedFragmentCount;
490 u32 dot11MulticastTransmittedFrameCount;
491 u32 dot11FailedCount;
492 u32 dot11RetryCount;
493 u32 dot11MultipleRetryCount;
494 u32 dot11FrameDuplicateCount;
495 u32 dot11ReceivedFragmentCount;
496 u32 dot11MulticastReceivedFrameCount;
497 u32 dot11TransmittedFrameCount;
498 u32 dot11WEPUndecryptableCount;
499
500#ifdef CONFIG_MAC80211_LEDS
501 int tx_led_counter, rx_led_counter;
Michael Buesch47f0c502007-09-27 15:10:44 +0200502 struct led_trigger *tx_led, *rx_led, *assoc_led;
503 char tx_led_name[32], rx_led_name[32], assoc_led_name[32];
Jiri Bencf0706e82007-05-05 11:45:53 -0700504#endif
505
506 u32 channel_use;
507 u32 channel_use_raw;
Jiri Bencf0706e82007-05-05 11:45:53 -0700508
Jiri Bence9f207f2007-05-05 11:46:38 -0700509#ifdef CONFIG_MAC80211_DEBUGFS
510 struct work_struct sta_debugfs_add;
511#endif
512
Jiri Bencf0706e82007-05-05 11:45:53 -0700513#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
514 /* TX/RX handler statistics */
515 unsigned int tx_handlers_drop;
516 unsigned int tx_handlers_queued;
517 unsigned int tx_handlers_drop_unencrypted;
518 unsigned int tx_handlers_drop_fragment;
519 unsigned int tx_handlers_drop_wep;
520 unsigned int tx_handlers_drop_not_assoc;
521 unsigned int tx_handlers_drop_unauth_port;
522 unsigned int rx_handlers_drop;
523 unsigned int rx_handlers_queued;
524 unsigned int rx_handlers_drop_nullfunc;
525 unsigned int rx_handlers_drop_defrag;
526 unsigned int rx_handlers_drop_short;
527 unsigned int rx_handlers_drop_passive_scan;
528 unsigned int tx_expand_skb_head;
529 unsigned int tx_expand_skb_head_cloned;
530 unsigned int rx_expand_skb_head;
531 unsigned int rx_expand_skb_head2;
532 unsigned int rx_handlers_fragments;
533 unsigned int tx_status_drop;
534 unsigned int wme_rx_queue[NUM_RX_DATA_QUEUES];
535 unsigned int wme_tx_queue[NUM_RX_DATA_QUEUES];
536#define I802_DEBUG_INC(c) (c)++
537#else /* CONFIG_MAC80211_DEBUG_COUNTERS */
538#define I802_DEBUG_INC(c) do { } while (0)
539#endif /* CONFIG_MAC80211_DEBUG_COUNTERS */
540
541
Jiri Bencf0706e82007-05-05 11:45:53 -0700542 int total_ps_buffered; /* total number of all buffered unicast and
543 * multicast packets for power saving stations
544 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700545 int wifi_wme_noack_test;
546 unsigned int wmm_acm; /* bit field of ACM bits (BIT(802.1D tag)) */
547
548 unsigned int enabled_modes; /* bitfield of allowed modes;
549 * (1 << MODE_*) */
550 unsigned int hw_modes; /* bitfield of supported hardware modes;
551 * (1 << MODE_*) */
552
Jiri Bence9f207f2007-05-05 11:46:38 -0700553#ifdef CONFIG_MAC80211_DEBUGFS
554 struct local_debugfsdentries {
555 struct dentry *channel;
556 struct dentry *frequency;
Jiri Bence9f207f2007-05-05 11:46:38 -0700557 struct dentry *antenna_sel_tx;
558 struct dentry *antenna_sel_rx;
559 struct dentry *bridge_packets;
Jiri Bence9f207f2007-05-05 11:46:38 -0700560 struct dentry *rts_threshold;
561 struct dentry *fragmentation_threshold;
562 struct dentry *short_retry_limit;
563 struct dentry *long_retry_limit;
564 struct dentry *total_ps_buffered;
565 struct dentry *mode;
566 struct dentry *wep_iv;
Jiri Bence9f207f2007-05-05 11:46:38 -0700567 struct dentry *modes;
568 struct dentry *statistics;
569 struct local_debugfsdentries_statsdentries {
570 struct dentry *transmitted_fragment_count;
571 struct dentry *multicast_transmitted_frame_count;
572 struct dentry *failed_count;
573 struct dentry *retry_count;
574 struct dentry *multiple_retry_count;
575 struct dentry *frame_duplicate_count;
576 struct dentry *received_fragment_count;
577 struct dentry *multicast_received_frame_count;
578 struct dentry *transmitted_frame_count;
579 struct dentry *wep_undecryptable_count;
580 struct dentry *num_scans;
581#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
582 struct dentry *tx_handlers_drop;
583 struct dentry *tx_handlers_queued;
584 struct dentry *tx_handlers_drop_unencrypted;
585 struct dentry *tx_handlers_drop_fragment;
586 struct dentry *tx_handlers_drop_wep;
587 struct dentry *tx_handlers_drop_not_assoc;
588 struct dentry *tx_handlers_drop_unauth_port;
589 struct dentry *rx_handlers_drop;
590 struct dentry *rx_handlers_queued;
591 struct dentry *rx_handlers_drop_nullfunc;
592 struct dentry *rx_handlers_drop_defrag;
593 struct dentry *rx_handlers_drop_short;
594 struct dentry *rx_handlers_drop_passive_scan;
595 struct dentry *tx_expand_skb_head;
596 struct dentry *tx_expand_skb_head_cloned;
597 struct dentry *rx_expand_skb_head;
598 struct dentry *rx_expand_skb_head2;
599 struct dentry *rx_handlers_fragments;
600 struct dentry *tx_status_drop;
601 struct dentry *wme_tx_queue;
602 struct dentry *wme_rx_queue;
603#endif
604 struct dentry *dot11ACKFailureCount;
605 struct dentry *dot11RTSFailureCount;
606 struct dentry *dot11FCSErrorCount;
607 struct dentry *dot11RTSSuccessCount;
608 } stats;
609 struct dentry *stations;
610 struct dentry *keys;
611 } debugfs;
612#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700613};
614
615static inline struct ieee80211_local *hw_to_local(
616 struct ieee80211_hw *hw)
617{
618 return container_of(hw, struct ieee80211_local, hw);
619}
620
621static inline struct ieee80211_hw *local_to_hw(
622 struct ieee80211_local *local)
623{
624 return &local->hw;
625}
626
627enum ieee80211_link_state_t {
628 IEEE80211_LINK_STATE_XOFF = 0,
629 IEEE80211_LINK_STATE_PENDING,
630};
631
632struct sta_attribute {
633 struct attribute attr;
634 ssize_t (*show)(const struct sta_info *, char *buf);
635 ssize_t (*store)(struct sta_info *, const char *buf, size_t count);
636};
637
Michael Buesch30ccb082007-09-26 21:08:47 +0200638static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
Jiri Bencf0706e82007-05-05 11:45:53 -0700639{
640 /*
Michael Buesch30ccb082007-09-26 21:08:47 +0200641 * This format has been mandated by the IEEE specifications,
Jiri Bencf0706e82007-05-05 11:45:53 -0700642 * so this line may not be changed to use the __set_bit() format.
643 */
Michael Buesch30ccb082007-09-26 21:08:47 +0200644 bss->tim[aid / 8] |= (1 << (aid % 8));
Jiri Bencf0706e82007-05-05 11:45:53 -0700645}
646
647static inline void bss_tim_set(struct ieee80211_local *local,
Michael Buesch30ccb082007-09-26 21:08:47 +0200648 struct ieee80211_if_ap *bss, u16 aid)
Jiri Bencf0706e82007-05-05 11:45:53 -0700649{
Michael Wube8755e2007-07-27 15:43:23 +0200650 read_lock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700651 __bss_tim_set(bss, aid);
Michael Wube8755e2007-07-27 15:43:23 +0200652 read_unlock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700653}
654
Michael Buesch30ccb082007-09-26 21:08:47 +0200655static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
Jiri Bencf0706e82007-05-05 11:45:53 -0700656{
657 /*
Michael Buesch30ccb082007-09-26 21:08:47 +0200658 * This format has been mandated by the IEEE specifications,
Jiri Bencf0706e82007-05-05 11:45:53 -0700659 * so this line may not be changed to use the __clear_bit() format.
660 */
Michael Buesch30ccb082007-09-26 21:08:47 +0200661 bss->tim[aid / 8] &= ~(1 << (aid % 8));
Jiri Bencf0706e82007-05-05 11:45:53 -0700662}
663
664static inline void bss_tim_clear(struct ieee80211_local *local,
Michael Buesch30ccb082007-09-26 21:08:47 +0200665 struct ieee80211_if_ap *bss, u16 aid)
Jiri Bencf0706e82007-05-05 11:45:53 -0700666{
Michael Wube8755e2007-07-27 15:43:23 +0200667 read_lock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700668 __bss_tim_clear(bss, aid);
Michael Wube8755e2007-07-27 15:43:23 +0200669 read_unlock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700670}
671
672/**
673 * ieee80211_is_erp_rate - Check if a rate is an ERP rate
674 * @phymode: The PHY-mode for this rate (MODE_IEEE80211...)
675 * @rate: Transmission rate to check, in 100 kbps
676 *
677 * Check if a given rate is an Extended Rate PHY (ERP) rate.
678 */
679static inline int ieee80211_is_erp_rate(int phymode, int rate)
680{
681 if (phymode == MODE_IEEE80211G) {
682 if (rate != 10 && rate != 20 &&
683 rate != 55 && rate != 110)
684 return 1;
685 }
686 return 0;
687}
688
Johannes Berg571ecf62007-07-27 15:43:22 +0200689static inline int ieee80211_bssid_match(const u8 *raddr, const u8 *addr)
690{
691 return compare_ether_addr(raddr, addr) == 0 ||
692 is_broadcast_ether_addr(raddr);
693}
694
695
Jiri Bencf0706e82007-05-05 11:45:53 -0700696/* ieee80211.c */
697int ieee80211_hw_config(struct ieee80211_local *local);
698int ieee80211_if_config(struct net_device *dev);
699int ieee80211_if_config_beacon(struct net_device *dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700700void ieee80211_prepare_rates(struct ieee80211_local *local,
701 struct ieee80211_hw_mode *mode);
702void ieee80211_tx_set_iswep(struct ieee80211_txrx_data *tx);
703int ieee80211_if_update_wds(struct net_device *dev, u8 *remote_addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700704void ieee80211_if_setup(struct net_device *dev);
Johannes Berg571ecf62007-07-27 15:43:22 +0200705struct ieee80211_rate *ieee80211_get_rate(struct ieee80211_local *local,
706 int phymode, int hwrate);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200707int ieee80211_hw_config_ht(struct ieee80211_local *local, int enable_ht,
708 struct ieee80211_ht_info *req_ht_cap,
709 struct ieee80211_ht_bss_info *req_bss_cap);
Jiri Bencf0706e82007-05-05 11:45:53 -0700710
711/* ieee80211_ioctl.c */
712extern const struct iw_handler_def ieee80211_iw_handler_def;
713
Jiri Bencf0706e82007-05-05 11:45:53 -0700714
715/* Least common multiple of the used rates (in 100 kbps). This is used to
716 * calculate rate_inv values for each rate so that only integers are needed. */
717#define CHAN_UTIL_RATE_LCM 95040
718/* 1 usec is 1/8 * (95040/10) = 1188 */
719#define CHAN_UTIL_PER_USEC 1188
720/* Amount of bits to shift the result right to scale the total utilization
721 * to values that will not wrap around 32-bit integers. */
722#define CHAN_UTIL_SHIFT 9
723/* Theoretical maximum of channel utilization counter in 10 ms (stat_time=1):
724 * (CHAN_UTIL_PER_USEC * 10000) >> CHAN_UTIL_SHIFT = 23203. So dividing the
725 * raw value with about 23 should give utilization in 10th of a percentage
726 * (1/1000). However, utilization is only estimated and not all intervals
727 * between frames etc. are calculated. 18 seems to give numbers that are closer
728 * to the real maximum. */
729#define CHAN_UTIL_PER_10MS 18
730#define CHAN_UTIL_HDR_LONG (202 * CHAN_UTIL_PER_USEC)
731#define CHAN_UTIL_HDR_SHORT (40 * CHAN_UTIL_PER_USEC)
732
733
734/* ieee80211_ioctl.c */
735int ieee80211_set_compression(struct ieee80211_local *local,
736 struct net_device *dev, struct sta_info *sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700737int ieee80211_set_channel(struct ieee80211_local *local, int channel, int freq);
738/* ieee80211_sta.c */
739void ieee80211_sta_timer(unsigned long data);
740void ieee80211_sta_work(struct work_struct *work);
741void ieee80211_sta_scan_work(struct work_struct *work);
742void ieee80211_sta_rx_mgmt(struct net_device *dev, struct sk_buff *skb,
743 struct ieee80211_rx_status *rx_status);
744int ieee80211_sta_set_ssid(struct net_device *dev, char *ssid, size_t len);
745int ieee80211_sta_get_ssid(struct net_device *dev, char *ssid, size_t *len);
746int ieee80211_sta_set_bssid(struct net_device *dev, u8 *bssid);
747int ieee80211_sta_req_scan(struct net_device *dev, u8 *ssid, size_t ssid_len);
748void ieee80211_sta_req_auth(struct net_device *dev,
749 struct ieee80211_if_sta *ifsta);
750int ieee80211_sta_scan_results(struct net_device *dev, char *buf, size_t len);
Zhu Yiece8edd2007-11-22 10:53:21 +0800751ieee80211_txrx_result ieee80211_sta_rx_scan(struct net_device *dev,
752 struct sk_buff *skb,
Jiri Bencf0706e82007-05-05 11:45:53 -0700753 struct ieee80211_rx_status *rx_status);
754void ieee80211_rx_bss_list_init(struct net_device *dev);
755void ieee80211_rx_bss_list_deinit(struct net_device *dev);
756int ieee80211_sta_set_extra_ie(struct net_device *dev, char *ie, size_t len);
757struct sta_info * ieee80211_ibss_add_sta(struct net_device *dev,
758 struct sk_buff *skb, u8 *bssid,
759 u8 *addr);
760int ieee80211_sta_deauthenticate(struct net_device *dev, u16 reason);
761int ieee80211_sta_disassociate(struct net_device *dev, u16 reason);
Daniel Draked9430a32007-07-27 15:43:24 +0200762void ieee80211_erp_info_change_notify(struct net_device *dev, u8 changes);
763void ieee80211_reset_erp_info(struct net_device *dev);
Ron Rindjunskyc7153502007-11-26 16:14:31 +0200764int ieee80211_ht_cap_ie_to_ht_info(struct ieee80211_ht_cap *ht_cap_ie,
765 struct ieee80211_ht_info *ht_info);
766int ieee80211_ht_addt_info_ie_to_ht_bss_info(
767 struct ieee80211_ht_addt_info *ht_add_info_ie,
768 struct ieee80211_ht_bss_info *bss_info);
Jiri Bencf0706e82007-05-05 11:45:53 -0700769/* ieee80211_iface.c */
770int ieee80211_if_add(struct net_device *dev, const char *name,
771 struct net_device **new_dev, int type);
772void ieee80211_if_set_type(struct net_device *dev, int type);
773void ieee80211_if_reinit(struct net_device *dev);
774void __ieee80211_if_del(struct ieee80211_local *local,
775 struct ieee80211_sub_if_data *sdata);
776int ieee80211_if_remove(struct net_device *dev, const char *name, int id);
777void ieee80211_if_free(struct net_device *dev);
778void ieee80211_if_sdata_init(struct ieee80211_sub_if_data *sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700779
Daniel Drakefd8bacc2007-06-09 19:07:14 +0100780/* regdomain.c */
781void ieee80211_regdomain_init(void);
782void ieee80211_set_default_regdomain(struct ieee80211_hw_mode *mode);
783
Johannes Berg571ecf62007-07-27 15:43:22 +0200784/* rx handling */
785extern ieee80211_rx_handler ieee80211_rx_pre_handlers[];
786extern ieee80211_rx_handler ieee80211_rx_handlers[];
787
Johannes Berge2ebc742007-07-27 15:43:22 +0200788/* tx handling */
789extern ieee80211_tx_handler ieee80211_tx_handlers[];
790void ieee80211_clear_tx_pending(struct ieee80211_local *local);
791void ieee80211_tx_pending(unsigned long data);
792int ieee80211_master_start_xmit(struct sk_buff *skb, struct net_device *dev);
793int ieee80211_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
794int ieee80211_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
Johannes Berge2ebc742007-07-27 15:43:22 +0200795
Johannes Bergc2d15602007-07-27 15:43:23 +0200796/* utility functions/constants */
797extern void *mac80211_wiphy_privid; /* for wiphy privid */
798extern const unsigned char rfc1042_header[6];
799extern const unsigned char bridge_tunnel_header[6];
800u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +0200801int ieee80211_is_eapol(const struct sk_buff *skb, int hdrlen);
Johannes Bergc2d15602007-07-27 15:43:23 +0200802int ieee80211_frame_duration(struct ieee80211_local *local, size_t len,
803 int rate, int erp, int short_preamble);
Johannes Bergeb063c12007-08-28 17:01:53 -0400804void mac80211_ev_michael_mic_failure(struct net_device *dev, int keyidx,
805 struct ieee80211_hdr *hdr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700806
807#endif /* IEEE80211_I_H */