blob: 31fc64c5652c95268287eb0b7e991fc9b54d984c [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 */
Johannes Berg8318d782008-01-24 19:38:38 +010082 enum ieee80211_band band;
Jiri Bencf0706e82007-05-05 11:45:53 -070083 int freq;
84 int rssi, signal, noise;
85 u8 *wpa_ie;
86 size_t wpa_ie_len;
87 u8 *rsn_ie;
88 size_t rsn_ie_len;
89 u8 *wmm_ie;
90 size_t wmm_ie_len;
Ron Rindjunskyc7153502007-11-26 16:14:31 +020091 u8 *ht_ie;
92 size_t ht_ie_len;
Jiri Bencf0706e82007-05-05 11:45:53 -070093#define IEEE80211_MAX_SUPP_RATES 32
94 u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
95 size_t supp_rates_len;
96 int beacon_int;
97 u64 timestamp;
98
99 int probe_resp;
100 unsigned long last_update;
101
Daniel Drake56282212007-07-10 19:32:10 +0200102 /* during assocation, we save an ERP value from a probe response so
103 * that we can feed ERP info to the driver when handling the
104 * association completes. these fields probably won't be up-to-date
105 * otherwise, you probably don't want to use them. */
106 int has_erp_value;
107 u8 erp_value;
Jiri Bencf0706e82007-05-05 11:45:53 -0700108};
109
110
Johannes Berg9ae54c82008-01-31 19:48:20 +0100111typedef unsigned __bitwise__ ieee80211_tx_result;
112#define TX_CONTINUE ((__force ieee80211_tx_result) 0u)
113#define TX_DROP ((__force ieee80211_tx_result) 1u)
114#define TX_QUEUED ((__force ieee80211_tx_result) 2u)
115
116typedef unsigned __bitwise__ ieee80211_rx_result;
Johannes Berge4c26ad2008-01-31 19:48:21 +0100117#define RX_CONTINUE ((__force ieee80211_rx_result) 0u)
118#define RX_DROP_UNUSABLE ((__force ieee80211_rx_result) 1u)
119#define RX_DROP_MONITOR ((__force ieee80211_rx_result) 2u)
120#define RX_QUEUED ((__force ieee80211_rx_result) 3u)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100121
Jiri Bencf0706e82007-05-05 11:45:53 -0700122
Jiri Slabybadffb72007-08-28 17:01:54 -0400123/* flags used in struct ieee80211_txrx_data.flags */
124/* whether the MSDU was fragmented */
125#define IEEE80211_TXRXD_FRAGMENTED BIT(0)
126#define IEEE80211_TXRXD_TXUNICAST BIT(1)
127#define IEEE80211_TXRXD_TXPS_BUFFERED BIT(2)
128#define IEEE80211_TXRXD_TXPROBE_LAST_FRAG BIT(3)
129#define IEEE80211_TXRXD_RXIN_SCAN BIT(4)
130/* frame is destined to interface currently processed (incl. multicast frames) */
131#define IEEE80211_TXRXD_RXRA_MATCH BIT(5)
Johannes Berg58d41852007-09-26 17:53:18 +0200132#define IEEE80211_TXRXD_TX_INJECTED BIT(6)
Ron Rindjunsky64bd4b62007-11-29 10:35:53 +0200133#define IEEE80211_TXRXD_RX_AMSDU BIT(7)
Jiri Bencf0706e82007-05-05 11:45:53 -0700134struct ieee80211_txrx_data {
135 struct sk_buff *skb;
136 struct net_device *dev;
137 struct ieee80211_local *local;
138 struct ieee80211_sub_if_data *sdata;
139 struct sta_info *sta;
140 u16 fc, ethertype;
141 struct ieee80211_key *key;
Jiri Slabybadffb72007-08-28 17:01:54 -0400142 unsigned int flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700143 union {
144 struct {
145 struct ieee80211_tx_control *control;
Johannes Berg8318d782008-01-24 19:38:38 +0100146 struct ieee80211_channel *channel;
Jiri Bencf0706e82007-05-05 11:45:53 -0700147 struct ieee80211_rate *rate;
148 /* use this rate (if set) for last fragment; rate can
149 * be set to lower rate for the first fragments, e.g.,
150 * when using CTS protection with IEEE 802.11g. */
151 struct ieee80211_rate *last_frag_rate;
Jiri Bencf0706e82007-05-05 11:45:53 -0700152
153 /* Extra fragments (in addition to the first fragment
154 * in skb) */
155 int num_extra_frag;
156 struct sk_buff **extra_frag;
157 } tx;
158 struct {
159 struct ieee80211_rx_status *status;
Johannes Berg8318d782008-01-24 19:38:38 +0100160 struct ieee80211_rate *rate;
Jiri Bencf0706e82007-05-05 11:45:53 -0700161 int sent_ps_buffered;
162 int queue;
163 int load;
Johannes Berg50741ae2007-09-26 15:19:45 +0200164 u32 tkip_iv32;
165 u16 tkip_iv16;
Jiri Bencf0706e82007-05-05 11:45:53 -0700166 } rx;
167 } u;
168};
169
Jiri Slabye8bf9642007-08-28 17:01:54 -0400170/* flags used in struct ieee80211_tx_packet_data.flags */
171#define IEEE80211_TXPD_REQ_TX_STATUS BIT(0)
172#define IEEE80211_TXPD_DO_NOT_ENCRYPT BIT(1)
173#define IEEE80211_TXPD_REQUEUE BIT(2)
Johannes Berg678f5f712007-12-19 01:31:23 +0100174#define IEEE80211_TXPD_EAPOL_FRAME BIT(3)
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200175#define IEEE80211_TXPD_AMPDU BIT(4)
Jiri Bencf0706e82007-05-05 11:45:53 -0700176/* Stored in sk_buff->cb */
177struct ieee80211_tx_packet_data {
178 int ifindex;
179 unsigned long jiffies;
Jiri Slabye8bf9642007-08-28 17:01:54 -0400180 unsigned int flags;
181 u8 queue;
Jiri Bencf0706e82007-05-05 11:45:53 -0700182};
183
184struct ieee80211_tx_stored_packet {
185 struct ieee80211_tx_control control;
186 struct sk_buff *skb;
187 int num_extra_frag;
188 struct sk_buff **extra_frag;
Jiri Bencf0706e82007-05-05 11:45:53 -0700189 struct ieee80211_rate *last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -0400190 unsigned int last_frag_rate_ctrl_probe;
Jiri Bencf0706e82007-05-05 11:45:53 -0700191};
192
Johannes Berg9ae54c82008-01-31 19:48:20 +0100193typedef ieee80211_tx_result (*ieee80211_tx_handler)
Jiri Bencf0706e82007-05-05 11:45:53 -0700194(struct ieee80211_txrx_data *tx);
195
Johannes Berg9ae54c82008-01-31 19:48:20 +0100196typedef ieee80211_rx_result (*ieee80211_rx_handler)
Jiri Bencf0706e82007-05-05 11:45:53 -0700197(struct ieee80211_txrx_data *rx);
198
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100199struct beacon_data {
200 u8 *head, *tail;
201 int head_len, tail_len;
202 int dtim_period;
203};
204
Jiri Bencf0706e82007-05-05 11:45:53 -0700205struct ieee80211_if_ap {
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100206 struct beacon_data *beacon;
Jiri Bencf0706e82007-05-05 11:45:53 -0700207
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400208 struct list_head vlans;
209
Jiri Bencf0706e82007-05-05 11:45:53 -0700210 u8 ssid[IEEE80211_MAX_SSID_LEN];
211 size_t ssid_len;
Jiri Bencf0706e82007-05-05 11:45:53 -0700212
213 /* yes, this looks ugly, but guarantees that we can later use
214 * bitmap_empty :)
215 * NB: don't ever use set_bit, use bss_tim_set/bss_tim_clear! */
216 u8 tim[sizeof(unsigned long) * BITS_TO_LONGS(IEEE80211_MAX_AID + 1)];
217 atomic_t num_sta_ps; /* number of stations in PS mode */
218 struct sk_buff_head ps_bc_buf;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100219 int dtim_count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700220 int force_unicast_rateidx; /* forced TX rateidx for unicast frames */
221 int max_ratectrl_rateidx; /* max TX rateidx for rate control */
222 int num_beacons; /* number of TXed beacon frames for this BSS */
223};
224
225struct ieee80211_if_wds {
226 u8 remote_addr[ETH_ALEN];
227 struct sta_info *sta;
228};
229
230struct ieee80211_if_vlan {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400231 struct ieee80211_sub_if_data *ap;
232 struct list_head list;
Jiri Bencf0706e82007-05-05 11:45:53 -0700233};
234
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400235/* flags used in struct ieee80211_if_sta.flags */
236#define IEEE80211_STA_SSID_SET BIT(0)
237#define IEEE80211_STA_BSSID_SET BIT(1)
238#define IEEE80211_STA_PREV_BSSID_SET BIT(2)
239#define IEEE80211_STA_AUTHENTICATED BIT(3)
240#define IEEE80211_STA_ASSOCIATED BIT(4)
241#define IEEE80211_STA_PROBEREQ_POLL BIT(5)
242#define IEEE80211_STA_CREATE_IBSS BIT(6)
243#define IEEE80211_STA_MIXED_CELL BIT(7)
244#define IEEE80211_STA_WMM_ENABLED BIT(8)
245#define IEEE80211_STA_AUTO_SSID_SEL BIT(10)
246#define IEEE80211_STA_AUTO_BSSID_SEL BIT(11)
247#define IEEE80211_STA_AUTO_CHANNEL_SEL BIT(12)
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000248#define IEEE80211_STA_PRIVACY_INVOKED BIT(13)
Jiri Bencf0706e82007-05-05 11:45:53 -0700249struct ieee80211_if_sta {
250 enum {
251 IEEE80211_DISABLED, IEEE80211_AUTHENTICATE,
252 IEEE80211_ASSOCIATE, IEEE80211_ASSOCIATED,
253 IEEE80211_IBSS_SEARCH, IEEE80211_IBSS_JOINED
254 } state;
255 struct timer_list timer;
256 struct work_struct work;
257 u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
258 u8 ssid[IEEE80211_MAX_SSID_LEN];
259 size_t ssid_len;
Helmut Schaaa0af5f12007-11-09 16:25:08 +0100260 u8 scan_ssid[IEEE80211_MAX_SSID_LEN];
261 size_t scan_ssid_len;
Jiri Bencf0706e82007-05-05 11:45:53 -0700262 u16 aid;
263 u16 ap_capab, capab;
264 u8 *extra_ie; /* to be added to the end of AssocReq */
265 size_t extra_ie_len;
266
267 /* The last AssocReq/Resp IEs */
268 u8 *assocreq_ies, *assocresp_ies;
269 size_t assocreq_ies_len, assocresp_ies_len;
270
271 int auth_tries, assoc_tries;
272
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400273 unsigned int flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700274#define IEEE80211_STA_REQ_SCAN 0
275#define IEEE80211_STA_REQ_AUTH 1
276#define IEEE80211_STA_REQ_RUN 2
277 unsigned long request;
278 struct sk_buff_head skb_queue;
279
Jiri Bencf0706e82007-05-05 11:45:53 -0700280 unsigned long last_probe;
281
282#define IEEE80211_AUTH_ALG_OPEN BIT(0)
283#define IEEE80211_AUTH_ALG_SHARED_KEY BIT(1)
284#define IEEE80211_AUTH_ALG_LEAP BIT(2)
285 unsigned int auth_algs; /* bitfield of allowed auth algs */
286 int auth_alg; /* currently used IEEE 802.11 authentication algorithm */
287 int auth_transaction;
288
289 unsigned long ibss_join_req;
290 struct sk_buff *probe_resp; /* ProbeResp template for IBSS */
Johannes Berg8318d782008-01-24 19:38:38 +0100291 u32 supp_rates_bits[IEEE80211_NUM_BANDS];
Jiri Bencf0706e82007-05-05 11:45:53 -0700292
293 int wmm_last_param_set;
294};
295
296
Jiri Slaby13262ff2007-08-28 17:01:54 -0400297/* flags used in struct ieee80211_sub_if_data.flags */
298#define IEEE80211_SDATA_ALLMULTI BIT(0)
299#define IEEE80211_SDATA_PROMISC BIT(1)
Johannes Berg471b3ef2007-12-28 14:32:58 +0100300#define IEEE80211_SDATA_USERSPACE_MLME BIT(2)
Johannes Berg8318d782008-01-24 19:38:38 +0100301#define IEEE80211_SDATA_OPERATING_GMODE BIT(3)
Jiri Bencf0706e82007-05-05 11:45:53 -0700302struct ieee80211_sub_if_data {
303 struct list_head list;
Jiri Bencf0706e82007-05-05 11:45:53 -0700304
305 struct wireless_dev wdev;
306
Johannes Berg11a843b2007-08-28 17:01:55 -0400307 /* keys */
308 struct list_head key_list;
309
Jiri Bencf0706e82007-05-05 11:45:53 -0700310 struct net_device *dev;
311 struct ieee80211_local *local;
312
Jiri Slaby13262ff2007-08-28 17:01:54 -0400313 unsigned int flags;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200314
Jiri Bencf0706e82007-05-05 11:45:53 -0700315 int drop_unencrypted;
Jiri Bencf0706e82007-05-05 11:45:53 -0700316
Johannes Berg8318d782008-01-24 19:38:38 +0100317 /*
318 * basic rates of this AP or the AP we're associated to
319 */
320 u64 basic_rates;
321
Jiri Bencf0706e82007-05-05 11:45:53 -0700322 u16 sequence;
323
324 /* Fragment table for host-based reassembly */
325 struct ieee80211_fragment_entry fragments[IEEE80211_FRAGMENT_MAX];
326 unsigned int fragment_next;
327
328#define NUM_DEFAULT_KEYS 4
329 struct ieee80211_key *keys[NUM_DEFAULT_KEYS];
330 struct ieee80211_key *default_key;
331
Johannes Berg471b3ef2007-12-28 14:32:58 +0100332 /*
333 * BSS configuration for this interface.
334 *
335 * FIXME: I feel bad putting this here when we already have a
336 * bss pointer, but the bss pointer is just wrong when
337 * you have multiple virtual STA mode interfaces...
338 * This needs to be fixed.
339 */
340 struct ieee80211_bss_conf bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -0700341 struct ieee80211_if_ap *bss; /* BSS that this device belongs to */
342
343 union {
344 struct ieee80211_if_ap ap;
345 struct ieee80211_if_wds wds;
346 struct ieee80211_if_vlan vlan;
347 struct ieee80211_if_sta sta;
348 } u;
349 int channel_use;
350 int channel_use_raw;
Jiri Bence9f207f2007-05-05 11:46:38 -0700351
352#ifdef CONFIG_MAC80211_DEBUGFS
353 struct dentry *debugfsdir;
354 union {
355 struct {
356 struct dentry *channel_use;
357 struct dentry *drop_unencrypted;
Jiri Bence9f207f2007-05-05 11:46:38 -0700358 struct dentry *state;
359 struct dentry *bssid;
360 struct dentry *prev_bssid;
361 struct dentry *ssid_len;
362 struct dentry *aid;
363 struct dentry *ap_capab;
364 struct dentry *capab;
365 struct dentry *extra_ie_len;
366 struct dentry *auth_tries;
367 struct dentry *assoc_tries;
368 struct dentry *auth_algs;
369 struct dentry *auth_alg;
370 struct dentry *auth_transaction;
371 struct dentry *flags;
372 } sta;
373 struct {
374 struct dentry *channel_use;
375 struct dentry *drop_unencrypted;
Jiri Bence9f207f2007-05-05 11:46:38 -0700376 struct dentry *num_sta_ps;
Jiri Bence9f207f2007-05-05 11:46:38 -0700377 struct dentry *dtim_count;
378 struct dentry *num_beacons;
379 struct dentry *force_unicast_rateidx;
380 struct dentry *max_ratectrl_rateidx;
381 struct dentry *num_buffered_multicast;
Jiri Bence9f207f2007-05-05 11:46:38 -0700382 } ap;
383 struct {
384 struct dentry *channel_use;
385 struct dentry *drop_unencrypted;
Jiri Bence9f207f2007-05-05 11:46:38 -0700386 struct dentry *peer;
387 } wds;
388 struct {
389 struct dentry *channel_use;
390 struct dentry *drop_unencrypted;
Jiri Bence9f207f2007-05-05 11:46:38 -0700391 } vlan;
392 struct {
393 struct dentry *mode;
394 } monitor;
395 struct dentry *default_key;
396 } debugfs;
397#endif
Johannes Berg32bfd352007-12-19 01:31:26 +0100398 /* must be last, dynamically sized area in this! */
399 struct ieee80211_vif vif;
Jiri Bencf0706e82007-05-05 11:45:53 -0700400};
401
Johannes Berg32bfd352007-12-19 01:31:26 +0100402static inline
403struct ieee80211_sub_if_data *vif_to_sdata(struct ieee80211_vif *p)
404{
405 return container_of(p, struct ieee80211_sub_if_data, vif);
406}
407
Jiri Bencf0706e82007-05-05 11:45:53 -0700408#define IEEE80211_DEV_TO_SUB_IF(dev) netdev_priv(dev)
409
410enum {
411 IEEE80211_RX_MSG = 1,
412 IEEE80211_TX_STATUS_MSG = 2,
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200413 IEEE80211_DELBA_MSG = 3,
414 IEEE80211_ADDBA_MSG = 4,
Jiri Bencf0706e82007-05-05 11:45:53 -0700415};
416
417struct ieee80211_local {
418 /* embed the driver visible part.
419 * don't cast (use the static inlines below), but we keep
420 * it first anyway so they become a no-op */
421 struct ieee80211_hw hw;
422
423 const struct ieee80211_ops *ops;
424
Jiri Bencf0706e82007-05-05 11:45:53 -0700425 struct net_device *mdev; /* wmaster# - "master" 802.11 device */
Jiri Bencf0706e82007-05-05 11:45:53 -0700426 int open_count;
427 int monitors;
Johannes Berg4150c572007-09-17 01:29:23 -0400428 unsigned int filter_flags; /* FIF_* */
Jiri Bencf0706e82007-05-05 11:45:53 -0700429 struct iw_statistics wstats;
430 u8 wstats_flags;
Johannes Bergb306f452007-07-10 19:32:08 +0200431 int tx_headroom; /* required headroom for hardware/radiotap */
Jiri Bencf0706e82007-05-05 11:45:53 -0700432
433 enum {
434 IEEE80211_DEV_UNINITIALIZED = 0,
435 IEEE80211_DEV_REGISTERED,
436 IEEE80211_DEV_UNREGISTERED,
437 } reg_state;
438
439 /* Tasklet and skb queue to process calls from IRQ mode. All frames
440 * added to skb_queue will be processed, but frames in
441 * skb_queue_unreliable may be dropped if the total length of these
442 * queues increases over the limit. */
443#define IEEE80211_IRQSAFE_QUEUE_LIMIT 128
444 struct tasklet_struct tasklet;
445 struct sk_buff_head skb_queue;
446 struct sk_buff_head skb_queue_unreliable;
447
448 /* Station data structures */
Michael Wube8755e2007-07-27 15:43:23 +0200449 rwlock_t sta_lock; /* protects STA data structures */
Jiri Bencf0706e82007-05-05 11:45:53 -0700450 int num_sta; /* number of stations in sta_list */
451 struct list_head sta_list;
Jiri Bencf0706e82007-05-05 11:45:53 -0700452 struct sta_info *sta_hash[STA_HASH_SIZE];
453 struct timer_list sta_cleanup;
454
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200455 unsigned long state[NUM_TX_DATA_QUEUES_AMPDU];
456 struct ieee80211_tx_stored_packet pending_packet[NUM_TX_DATA_QUEUES_AMPDU];
Jiri Bencf0706e82007-05-05 11:45:53 -0700457 struct tasklet_struct tx_pending_tasklet;
458
Johannes Berg53918992007-09-26 15:19:47 +0200459 /* number of interfaces with corresponding IFF_ flags */
460 atomic_t iff_allmultis, iff_promiscs;
Jiri Bencf0706e82007-05-05 11:45:53 -0700461
462 struct rate_control_ref *rate_ctrl;
463
Jiri Bencf0706e82007-05-05 11:45:53 -0700464 int rts_threshold;
Jiri Bencf0706e82007-05-05 11:45:53 -0700465 int fragmentation_threshold;
466 int short_retry_limit; /* dot11ShortRetryLimit */
467 int long_retry_limit; /* dot11LongRetryLimit */
Jiri Bencf0706e82007-05-05 11:45:53 -0700468
469 struct crypto_blkcipher *wep_tx_tfm;
470 struct crypto_blkcipher *wep_rx_tfm;
471 u32 wep_iv;
Jiri Bencf0706e82007-05-05 11:45:53 -0700472
473 int bridge_packets; /* bridge packets between associated stations and
474 * deliver multicast frames both back to wireless
475 * media and to the local net stack */
476
Jiri Bencf0706e82007-05-05 11:45:53 -0700477 ieee80211_rx_handler *rx_handlers;
478 ieee80211_tx_handler *tx_handlers;
479
Johannes Berg79010422007-09-18 17:29:21 -0400480 struct list_head interfaces;
481
Zhu Yiece8edd2007-11-22 10:53:21 +0800482 bool sta_sw_scanning;
483 bool sta_hw_scanning;
Jiri Bencf0706e82007-05-05 11:45:53 -0700484 int scan_channel_idx;
Johannes Berg8318d782008-01-24 19:38:38 +0100485 enum ieee80211_band scan_band;
486
Jiri Bencf0706e82007-05-05 11:45:53 -0700487 enum { SCAN_SET_CHANNEL, SCAN_SEND_PROBE } scan_state;
488 unsigned long last_scan_completed;
489 struct delayed_work scan_work;
490 struct net_device *scan_dev;
491 struct ieee80211_channel *oper_channel, *scan_channel;
Jiri Bencf0706e82007-05-05 11:45:53 -0700492 u8 scan_ssid[IEEE80211_MAX_SSID_LEN];
493 size_t scan_ssid_len;
494 struct list_head sta_bss_list;
495 struct ieee80211_sta_bss *sta_bss_hash[STA_HASH_SIZE];
496 spinlock_t sta_bss_lock;
Jiri Bencf0706e82007-05-05 11:45:53 -0700497
498 /* SNMP counters */
499 /* dot11CountersTable */
500 u32 dot11TransmittedFragmentCount;
501 u32 dot11MulticastTransmittedFrameCount;
502 u32 dot11FailedCount;
503 u32 dot11RetryCount;
504 u32 dot11MultipleRetryCount;
505 u32 dot11FrameDuplicateCount;
506 u32 dot11ReceivedFragmentCount;
507 u32 dot11MulticastReceivedFrameCount;
508 u32 dot11TransmittedFrameCount;
509 u32 dot11WEPUndecryptableCount;
510
511#ifdef CONFIG_MAC80211_LEDS
512 int tx_led_counter, rx_led_counter;
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100513 struct led_trigger *tx_led, *rx_led, *assoc_led, *radio_led;
514 char tx_led_name[32], rx_led_name[32],
515 assoc_led_name[32], radio_led_name[32];
Jiri Bencf0706e82007-05-05 11:45:53 -0700516#endif
517
518 u32 channel_use;
519 u32 channel_use_raw;
Jiri Bencf0706e82007-05-05 11:45:53 -0700520
Jiri Bence9f207f2007-05-05 11:46:38 -0700521#ifdef CONFIG_MAC80211_DEBUGFS
522 struct work_struct sta_debugfs_add;
523#endif
524
Jiri Bencf0706e82007-05-05 11:45:53 -0700525#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
526 /* TX/RX handler statistics */
527 unsigned int tx_handlers_drop;
528 unsigned int tx_handlers_queued;
529 unsigned int tx_handlers_drop_unencrypted;
530 unsigned int tx_handlers_drop_fragment;
531 unsigned int tx_handlers_drop_wep;
532 unsigned int tx_handlers_drop_not_assoc;
533 unsigned int tx_handlers_drop_unauth_port;
534 unsigned int rx_handlers_drop;
535 unsigned int rx_handlers_queued;
536 unsigned int rx_handlers_drop_nullfunc;
537 unsigned int rx_handlers_drop_defrag;
538 unsigned int rx_handlers_drop_short;
539 unsigned int rx_handlers_drop_passive_scan;
540 unsigned int tx_expand_skb_head;
541 unsigned int tx_expand_skb_head_cloned;
542 unsigned int rx_expand_skb_head;
543 unsigned int rx_expand_skb_head2;
544 unsigned int rx_handlers_fragments;
545 unsigned int tx_status_drop;
546 unsigned int wme_rx_queue[NUM_RX_DATA_QUEUES];
547 unsigned int wme_tx_queue[NUM_RX_DATA_QUEUES];
548#define I802_DEBUG_INC(c) (c)++
549#else /* CONFIG_MAC80211_DEBUG_COUNTERS */
550#define I802_DEBUG_INC(c) do { } while (0)
551#endif /* CONFIG_MAC80211_DEBUG_COUNTERS */
552
553
Jiri Bencf0706e82007-05-05 11:45:53 -0700554 int total_ps_buffered; /* total number of all buffered unicast and
555 * multicast packets for power saving stations
556 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700557 int wifi_wme_noack_test;
558 unsigned int wmm_acm; /* bit field of ACM bits (BIT(802.1D tag)) */
559
Jiri Bence9f207f2007-05-05 11:46:38 -0700560#ifdef CONFIG_MAC80211_DEBUGFS
561 struct local_debugfsdentries {
Jiri Bence9f207f2007-05-05 11:46:38 -0700562 struct dentry *frequency;
Jiri Bence9f207f2007-05-05 11:46:38 -0700563 struct dentry *antenna_sel_tx;
564 struct dentry *antenna_sel_rx;
565 struct dentry *bridge_packets;
Jiri Bence9f207f2007-05-05 11:46:38 -0700566 struct dentry *rts_threshold;
567 struct dentry *fragmentation_threshold;
568 struct dentry *short_retry_limit;
569 struct dentry *long_retry_limit;
570 struct dentry *total_ps_buffered;
Jiri Bence9f207f2007-05-05 11:46:38 -0700571 struct dentry *wep_iv;
Jiri Bence9f207f2007-05-05 11:46:38 -0700572 struct dentry *statistics;
573 struct local_debugfsdentries_statsdentries {
574 struct dentry *transmitted_fragment_count;
575 struct dentry *multicast_transmitted_frame_count;
576 struct dentry *failed_count;
577 struct dentry *retry_count;
578 struct dentry *multiple_retry_count;
579 struct dentry *frame_duplicate_count;
580 struct dentry *received_fragment_count;
581 struct dentry *multicast_received_frame_count;
582 struct dentry *transmitted_frame_count;
583 struct dentry *wep_undecryptable_count;
584 struct dentry *num_scans;
585#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
586 struct dentry *tx_handlers_drop;
587 struct dentry *tx_handlers_queued;
588 struct dentry *tx_handlers_drop_unencrypted;
589 struct dentry *tx_handlers_drop_fragment;
590 struct dentry *tx_handlers_drop_wep;
591 struct dentry *tx_handlers_drop_not_assoc;
592 struct dentry *tx_handlers_drop_unauth_port;
593 struct dentry *rx_handlers_drop;
594 struct dentry *rx_handlers_queued;
595 struct dentry *rx_handlers_drop_nullfunc;
596 struct dentry *rx_handlers_drop_defrag;
597 struct dentry *rx_handlers_drop_short;
598 struct dentry *rx_handlers_drop_passive_scan;
599 struct dentry *tx_expand_skb_head;
600 struct dentry *tx_expand_skb_head_cloned;
601 struct dentry *rx_expand_skb_head;
602 struct dentry *rx_expand_skb_head2;
603 struct dentry *rx_handlers_fragments;
604 struct dentry *tx_status_drop;
605 struct dentry *wme_tx_queue;
606 struct dentry *wme_rx_queue;
607#endif
608 struct dentry *dot11ACKFailureCount;
609 struct dentry *dot11RTSFailureCount;
610 struct dentry *dot11FCSErrorCount;
611 struct dentry *dot11RTSSuccessCount;
612 } stats;
613 struct dentry *stations;
614 struct dentry *keys;
615 } debugfs;
616#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700617};
618
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200619/* this struct represents 802.11n's RA/TID combination */
620struct ieee80211_ra_tid {
621 u8 ra[ETH_ALEN];
622 u16 tid;
623};
624
Jiri Bencf0706e82007-05-05 11:45:53 -0700625static inline struct ieee80211_local *hw_to_local(
626 struct ieee80211_hw *hw)
627{
628 return container_of(hw, struct ieee80211_local, hw);
629}
630
631static inline struct ieee80211_hw *local_to_hw(
632 struct ieee80211_local *local)
633{
634 return &local->hw;
635}
636
637enum ieee80211_link_state_t {
638 IEEE80211_LINK_STATE_XOFF = 0,
639 IEEE80211_LINK_STATE_PENDING,
640};
641
642struct sta_attribute {
643 struct attribute attr;
644 ssize_t (*show)(const struct sta_info *, char *buf);
645 ssize_t (*store)(struct sta_info *, const char *buf, size_t count);
646};
647
Michael Buesch30ccb082007-09-26 21:08:47 +0200648static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
Jiri Bencf0706e82007-05-05 11:45:53 -0700649{
650 /*
Michael Buesch30ccb082007-09-26 21:08:47 +0200651 * This format has been mandated by the IEEE specifications,
Jiri Bencf0706e82007-05-05 11:45:53 -0700652 * so this line may not be changed to use the __set_bit() format.
653 */
Michael Buesch30ccb082007-09-26 21:08:47 +0200654 bss->tim[aid / 8] |= (1 << (aid % 8));
Jiri Bencf0706e82007-05-05 11:45:53 -0700655}
656
657static inline void bss_tim_set(struct ieee80211_local *local,
Michael Buesch30ccb082007-09-26 21:08:47 +0200658 struct ieee80211_if_ap *bss, u16 aid)
Jiri Bencf0706e82007-05-05 11:45:53 -0700659{
Michael Wube8755e2007-07-27 15:43:23 +0200660 read_lock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700661 __bss_tim_set(bss, aid);
Michael Wube8755e2007-07-27 15:43:23 +0200662 read_unlock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700663}
664
Michael Buesch30ccb082007-09-26 21:08:47 +0200665static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
Jiri Bencf0706e82007-05-05 11:45:53 -0700666{
667 /*
Michael Buesch30ccb082007-09-26 21:08:47 +0200668 * This format has been mandated by the IEEE specifications,
Jiri Bencf0706e82007-05-05 11:45:53 -0700669 * so this line may not be changed to use the __clear_bit() format.
670 */
Michael Buesch30ccb082007-09-26 21:08:47 +0200671 bss->tim[aid / 8] &= ~(1 << (aid % 8));
Jiri Bencf0706e82007-05-05 11:45:53 -0700672}
673
674static inline void bss_tim_clear(struct ieee80211_local *local,
Michael Buesch30ccb082007-09-26 21:08:47 +0200675 struct ieee80211_if_ap *bss, u16 aid)
Jiri Bencf0706e82007-05-05 11:45:53 -0700676{
Michael Wube8755e2007-07-27 15:43:23 +0200677 read_lock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700678 __bss_tim_clear(bss, aid);
Michael Wube8755e2007-07-27 15:43:23 +0200679 read_unlock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700680}
681
Johannes Berg571ecf62007-07-27 15:43:22 +0200682static inline int ieee80211_bssid_match(const u8 *raddr, const u8 *addr)
683{
684 return compare_ether_addr(raddr, addr) == 0 ||
685 is_broadcast_ether_addr(raddr);
686}
687
688
Jiri Bencf0706e82007-05-05 11:45:53 -0700689/* ieee80211.c */
690int ieee80211_hw_config(struct ieee80211_local *local);
691int ieee80211_if_config(struct net_device *dev);
692int ieee80211_if_config_beacon(struct net_device *dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700693void ieee80211_tx_set_iswep(struct ieee80211_txrx_data *tx);
694int ieee80211_if_update_wds(struct net_device *dev, u8 *remote_addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700695void ieee80211_if_setup(struct net_device *dev);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200696int ieee80211_hw_config_ht(struct ieee80211_local *local, int enable_ht,
697 struct ieee80211_ht_info *req_ht_cap,
698 struct ieee80211_ht_bss_info *req_bss_cap);
Jiri Bencf0706e82007-05-05 11:45:53 -0700699
700/* ieee80211_ioctl.c */
701extern const struct iw_handler_def ieee80211_iw_handler_def;
702
Jiri Bencf0706e82007-05-05 11:45:53 -0700703
704/* Least common multiple of the used rates (in 100 kbps). This is used to
705 * calculate rate_inv values for each rate so that only integers are needed. */
706#define CHAN_UTIL_RATE_LCM 95040
707/* 1 usec is 1/8 * (95040/10) = 1188 */
708#define CHAN_UTIL_PER_USEC 1188
709/* Amount of bits to shift the result right to scale the total utilization
710 * to values that will not wrap around 32-bit integers. */
711#define CHAN_UTIL_SHIFT 9
712/* Theoretical maximum of channel utilization counter in 10 ms (stat_time=1):
713 * (CHAN_UTIL_PER_USEC * 10000) >> CHAN_UTIL_SHIFT = 23203. So dividing the
714 * raw value with about 23 should give utilization in 10th of a percentage
715 * (1/1000). However, utilization is only estimated and not all intervals
716 * between frames etc. are calculated. 18 seems to give numbers that are closer
717 * to the real maximum. */
718#define CHAN_UTIL_PER_10MS 18
719#define CHAN_UTIL_HDR_LONG (202 * CHAN_UTIL_PER_USEC)
720#define CHAN_UTIL_HDR_SHORT (40 * CHAN_UTIL_PER_USEC)
721
722
723/* ieee80211_ioctl.c */
724int ieee80211_set_compression(struct ieee80211_local *local,
725 struct net_device *dev, struct sta_info *sta);
Johannes Berg8318d782008-01-24 19:38:38 +0100726int ieee80211_set_freq(struct ieee80211_local *local, int freq);
Jiri Bencf0706e82007-05-05 11:45:53 -0700727/* ieee80211_sta.c */
728void ieee80211_sta_timer(unsigned long data);
729void ieee80211_sta_work(struct work_struct *work);
730void ieee80211_sta_scan_work(struct work_struct *work);
731void ieee80211_sta_rx_mgmt(struct net_device *dev, struct sk_buff *skb,
732 struct ieee80211_rx_status *rx_status);
733int ieee80211_sta_set_ssid(struct net_device *dev, char *ssid, size_t len);
734int ieee80211_sta_get_ssid(struct net_device *dev, char *ssid, size_t *len);
735int ieee80211_sta_set_bssid(struct net_device *dev, u8 *bssid);
736int ieee80211_sta_req_scan(struct net_device *dev, u8 *ssid, size_t ssid_len);
737void ieee80211_sta_req_auth(struct net_device *dev,
738 struct ieee80211_if_sta *ifsta);
739int ieee80211_sta_scan_results(struct net_device *dev, char *buf, size_t len);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100740ieee80211_rx_result ieee80211_sta_rx_scan(
741 struct net_device *dev, struct sk_buff *skb,
742 struct ieee80211_rx_status *rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -0700743void ieee80211_rx_bss_list_init(struct net_device *dev);
744void ieee80211_rx_bss_list_deinit(struct net_device *dev);
745int ieee80211_sta_set_extra_ie(struct net_device *dev, char *ie, size_t len);
746struct sta_info * ieee80211_ibss_add_sta(struct net_device *dev,
747 struct sk_buff *skb, u8 *bssid,
748 u8 *addr);
749int ieee80211_sta_deauthenticate(struct net_device *dev, u16 reason);
750int ieee80211_sta_disassociate(struct net_device *dev, u16 reason);
Johannes Berg471b3ef2007-12-28 14:32:58 +0100751void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
752 u32 changed);
Daniel Draked9430a32007-07-27 15:43:24 +0200753void ieee80211_reset_erp_info(struct net_device *dev);
Ron Rindjunskyc7153502007-11-26 16:14:31 +0200754int ieee80211_ht_cap_ie_to_ht_info(struct ieee80211_ht_cap *ht_cap_ie,
755 struct ieee80211_ht_info *ht_info);
756int ieee80211_ht_addt_info_ie_to_ht_bss_info(
757 struct ieee80211_ht_addt_info *ht_add_info_ie,
758 struct ieee80211_ht_bss_info *bss_info);
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200759void ieee80211_send_addba_request(struct net_device *dev, const u8 *da,
760 u16 tid, u8 dialog_token, u16 start_seq_num,
761 u16 agg_size, u16 timeout);
762void ieee80211_send_delba(struct net_device *dev, const u8 *da, u16 tid,
763 u16 initiator, u16 reason_code);
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200764void ieee80211_sta_stop_rx_ba_session(struct net_device *dev, u8 *da,
765 u16 tid, u16 initiator, u16 reason);
766void sta_rx_agg_session_timer_expired(unsigned long data);
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200767void sta_addba_resp_timer_expired(unsigned long data);
Jiri Bencf0706e82007-05-05 11:45:53 -0700768/* ieee80211_iface.c */
769int ieee80211_if_add(struct net_device *dev, const char *name,
770 struct net_device **new_dev, int type);
771void ieee80211_if_set_type(struct net_device *dev, int type);
772void ieee80211_if_reinit(struct net_device *dev);
773void __ieee80211_if_del(struct ieee80211_local *local,
774 struct ieee80211_sub_if_data *sdata);
775int ieee80211_if_remove(struct net_device *dev, const char *name, int id);
776void ieee80211_if_free(struct net_device *dev);
777void ieee80211_if_sdata_init(struct ieee80211_sub_if_data *sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700778
Johannes Berg571ecf62007-07-27 15:43:22 +0200779/* rx handling */
Johannes Berg571ecf62007-07-27 15:43:22 +0200780extern ieee80211_rx_handler ieee80211_rx_handlers[];
781
Johannes Berge2ebc742007-07-27 15:43:22 +0200782/* tx handling */
783extern ieee80211_tx_handler ieee80211_tx_handlers[];
784void ieee80211_clear_tx_pending(struct ieee80211_local *local);
785void ieee80211_tx_pending(unsigned long data);
786int ieee80211_master_start_xmit(struct sk_buff *skb, struct net_device *dev);
787int ieee80211_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
788int ieee80211_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
Johannes Berge2ebc742007-07-27 15:43:22 +0200789
Johannes Bergc2d15602007-07-27 15:43:23 +0200790/* utility functions/constants */
791extern void *mac80211_wiphy_privid; /* for wiphy privid */
792extern const unsigned char rfc1042_header[6];
793extern const unsigned char bridge_tunnel_header[6];
Ron Rindjunsky71364712007-12-25 17:00:36 +0200794u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len,
795 enum ieee80211_if_types type);
Johannes Bergc2d15602007-07-27 15:43:23 +0200796int ieee80211_frame_duration(struct ieee80211_local *local, size_t len,
797 int rate, int erp, int short_preamble);
Johannes Bergeb063c12007-08-28 17:01:53 -0400798void mac80211_ev_michael_mic_failure(struct net_device *dev, int keyidx,
799 struct ieee80211_hdr *hdr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700800
801#endif /* IEEE80211_I_H */