blob: 28c5d514e6d52a94017ac37bdb57c4a9b15f7668 [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
40#define BIT(x) (1 << (x))
41
42#define IEEE80211_ALIGN32_PAD(a) ((4 - ((a) & 3)) & 3)
43
44/* Maximum number of broadcast/multicast frames to buffer when some of the
45 * associated stations are using power saving. */
46#define AP_MAX_BC_BUFFER 128
47
48/* Maximum number of frames buffered to all STAs, including multicast frames.
49 * Note: increasing this limit increases the potential memory requirement. Each
50 * frame can be up to about 2 kB long. */
51#define TOTAL_MAX_TX_BUFFER 512
52
53/* Required encryption head and tailroom */
54#define IEEE80211_ENCRYPT_HEADROOM 8
55#define IEEE80211_ENCRYPT_TAILROOM 12
56
57/* IEEE 802.11 (Ch. 9.5 Defragmentation) requires support for concurrent
58 * reception of at least three fragmented frames. This limit can be increased
59 * by changing this define, at the cost of slower frame reassembly and
60 * increased memory use (about 2 kB of RAM per entry). */
61#define IEEE80211_FRAGMENT_MAX 4
62
63struct ieee80211_fragment_entry {
64 unsigned long first_frag_time;
65 unsigned int seq;
66 unsigned int rx_queue;
67 unsigned int last_frag;
68 unsigned int extra_len;
69 struct sk_buff_head skb_list;
70 int ccmp; /* Whether fragments were encrypted with CCMP */
71 u8 last_pn[6]; /* PN of the last fragment if CCMP was used */
72};
73
74
75struct ieee80211_sta_bss {
76 struct list_head list;
77 struct ieee80211_sta_bss *hnext;
78 atomic_t users;
79
80 u8 bssid[ETH_ALEN];
81 u8 ssid[IEEE80211_MAX_SSID_LEN];
82 size_t ssid_len;
83 u16 capability; /* host byte order */
84 int hw_mode;
85 int channel;
86 int freq;
87 int rssi, signal, noise;
88 u8 *wpa_ie;
89 size_t wpa_ie_len;
90 u8 *rsn_ie;
91 size_t rsn_ie_len;
92 u8 *wmm_ie;
93 size_t wmm_ie_len;
94#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)
Jiri Bencf0706e82007-05-05 11:45:53 -0700125struct ieee80211_txrx_data {
126 struct sk_buff *skb;
127 struct net_device *dev;
128 struct ieee80211_local *local;
129 struct ieee80211_sub_if_data *sdata;
130 struct sta_info *sta;
131 u16 fc, ethertype;
132 struct ieee80211_key *key;
Jiri Slabybadffb72007-08-28 17:01:54 -0400133 unsigned int flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700134 union {
135 struct {
136 struct ieee80211_tx_control *control;
Jiri Bencf0706e82007-05-05 11:45:53 -0700137 struct ieee80211_hw_mode *mode;
138 struct ieee80211_rate *rate;
139 /* use this rate (if set) for last fragment; rate can
140 * be set to lower rate for the first fragments, e.g.,
141 * when using CTS protection with IEEE 802.11g. */
142 struct ieee80211_rate *last_frag_rate;
143 int last_frag_hwrate;
144 int mgmt_interface;
145
146 /* Extra fragments (in addition to the first fragment
147 * in skb) */
148 int num_extra_frag;
149 struct sk_buff **extra_frag;
150 } tx;
151 struct {
152 struct ieee80211_rx_status *status;
153 int sent_ps_buffered;
154 int queue;
155 int load;
Jiri Bencf0706e82007-05-05 11:45:53 -0700156 } rx;
157 } u;
158};
159
Jiri Slabye8bf9642007-08-28 17:01:54 -0400160/* flags used in struct ieee80211_tx_packet_data.flags */
161#define IEEE80211_TXPD_REQ_TX_STATUS BIT(0)
162#define IEEE80211_TXPD_DO_NOT_ENCRYPT BIT(1)
163#define IEEE80211_TXPD_REQUEUE BIT(2)
164#define IEEE80211_TXPD_MGMT_IFACE BIT(3)
Jiri Bencf0706e82007-05-05 11:45:53 -0700165/* Stored in sk_buff->cb */
166struct ieee80211_tx_packet_data {
167 int ifindex;
168 unsigned long jiffies;
Jiri Slabye8bf9642007-08-28 17:01:54 -0400169 unsigned int flags;
170 u8 queue;
Jiri Bencf0706e82007-05-05 11:45:53 -0700171};
172
173struct ieee80211_tx_stored_packet {
174 struct ieee80211_tx_control control;
175 struct sk_buff *skb;
176 int num_extra_frag;
177 struct sk_buff **extra_frag;
178 int last_frag_rateidx;
179 int last_frag_hwrate;
180 struct ieee80211_rate *last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -0400181 unsigned int last_frag_rate_ctrl_probe;
Jiri Bencf0706e82007-05-05 11:45:53 -0700182};
183
184typedef ieee80211_txrx_result (*ieee80211_tx_handler)
185(struct ieee80211_txrx_data *tx);
186
187typedef ieee80211_txrx_result (*ieee80211_rx_handler)
188(struct ieee80211_txrx_data *rx);
189
190struct ieee80211_if_ap {
191 u8 *beacon_head, *beacon_tail;
192 int beacon_head_len, beacon_tail_len;
193
194 u8 ssid[IEEE80211_MAX_SSID_LEN];
195 size_t ssid_len;
196 u8 *generic_elem;
197 size_t generic_elem_len;
198
199 /* yes, this looks ugly, but guarantees that we can later use
200 * bitmap_empty :)
201 * NB: don't ever use set_bit, use bss_tim_set/bss_tim_clear! */
202 u8 tim[sizeof(unsigned long) * BITS_TO_LONGS(IEEE80211_MAX_AID + 1)];
203 atomic_t num_sta_ps; /* number of stations in PS mode */
204 struct sk_buff_head ps_bc_buf;
205 int dtim_period, dtim_count;
206 int force_unicast_rateidx; /* forced TX rateidx for unicast frames */
207 int max_ratectrl_rateidx; /* max TX rateidx for rate control */
208 int num_beacons; /* number of TXed beacon frames for this BSS */
209};
210
211struct ieee80211_if_wds {
212 u8 remote_addr[ETH_ALEN];
213 struct sta_info *sta;
214};
215
216struct ieee80211_if_vlan {
217 u8 id;
218};
219
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400220/* flags used in struct ieee80211_if_sta.flags */
221#define IEEE80211_STA_SSID_SET BIT(0)
222#define IEEE80211_STA_BSSID_SET BIT(1)
223#define IEEE80211_STA_PREV_BSSID_SET BIT(2)
224#define IEEE80211_STA_AUTHENTICATED BIT(3)
225#define IEEE80211_STA_ASSOCIATED BIT(4)
226#define IEEE80211_STA_PROBEREQ_POLL BIT(5)
227#define IEEE80211_STA_CREATE_IBSS BIT(6)
228#define IEEE80211_STA_MIXED_CELL BIT(7)
229#define IEEE80211_STA_WMM_ENABLED BIT(8)
230#define IEEE80211_STA_AUTO_SSID_SEL BIT(10)
231#define IEEE80211_STA_AUTO_BSSID_SEL BIT(11)
232#define IEEE80211_STA_AUTO_CHANNEL_SEL BIT(12)
Jiri Bencf0706e82007-05-05 11:45:53 -0700233struct ieee80211_if_sta {
234 enum {
235 IEEE80211_DISABLED, IEEE80211_AUTHENTICATE,
236 IEEE80211_ASSOCIATE, IEEE80211_ASSOCIATED,
237 IEEE80211_IBSS_SEARCH, IEEE80211_IBSS_JOINED
238 } state;
239 struct timer_list timer;
240 struct work_struct work;
241 u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
242 u8 ssid[IEEE80211_MAX_SSID_LEN];
243 size_t ssid_len;
244 u16 aid;
245 u16 ap_capab, capab;
246 u8 *extra_ie; /* to be added to the end of AssocReq */
247 size_t extra_ie_len;
248
249 /* The last AssocReq/Resp IEs */
250 u8 *assocreq_ies, *assocresp_ies;
251 size_t assocreq_ies_len, assocresp_ies_len;
252
253 int auth_tries, assoc_tries;
254
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400255 unsigned int flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700256#define IEEE80211_STA_REQ_SCAN 0
257#define IEEE80211_STA_REQ_AUTH 1
258#define IEEE80211_STA_REQ_RUN 2
259 unsigned long request;
260 struct sk_buff_head skb_queue;
261
Johannes Berg808718c2007-08-28 17:01:53 -0400262 int key_management_enabled;
Jiri Bencf0706e82007-05-05 11:45:53 -0700263 unsigned long last_probe;
264
265#define IEEE80211_AUTH_ALG_OPEN BIT(0)
266#define IEEE80211_AUTH_ALG_SHARED_KEY BIT(1)
267#define IEEE80211_AUTH_ALG_LEAP BIT(2)
268 unsigned int auth_algs; /* bitfield of allowed auth algs */
269 int auth_alg; /* currently used IEEE 802.11 authentication algorithm */
270 int auth_transaction;
271
272 unsigned long ibss_join_req;
273 struct sk_buff *probe_resp; /* ProbeResp template for IBSS */
274 u32 supp_rates_bits;
275
276 int wmm_last_param_set;
277};
278
279
280struct ieee80211_sub_if_data {
281 struct list_head list;
282 unsigned int type;
283
284 struct wireless_dev wdev;
285
286 struct net_device *dev;
287 struct ieee80211_local *local;
288
289 int mc_count;
290 unsigned int allmulti:1;
291 unsigned int promisc:1;
Daniel Drake63fc33c2007-07-10 19:32:11 +0200292 unsigned int use_protection:1; /* CTS protect ERP frames */
Jiri Bencf0706e82007-05-05 11:45:53 -0700293
Daniel Drake7e9ed182007-07-27 15:43:24 +0200294 /* use short preamble with IEEE 802.11b: this flag is set when the AP
295 * or beacon generator reports that there are no present stations that
296 * cannot support short preambles */
297 unsigned int short_preamble:1;
298
Jiri Bencf0706e82007-05-05 11:45:53 -0700299 struct net_device_stats stats;
300 int drop_unencrypted;
301 int eapol; /* 0 = process EAPOL frames as normal data frames,
302 * 1 = send EAPOL frames through wlan#ap to hostapd
303 * (default) */
304 int ieee802_1x; /* IEEE 802.1X PAE - drop packet to/from unauthorized
305 * port */
306
307 u16 sequence;
308
309 /* Fragment table for host-based reassembly */
310 struct ieee80211_fragment_entry fragments[IEEE80211_FRAGMENT_MAX];
311 unsigned int fragment_next;
312
313#define NUM_DEFAULT_KEYS 4
314 struct ieee80211_key *keys[NUM_DEFAULT_KEYS];
315 struct ieee80211_key *default_key;
316
317 struct ieee80211_if_ap *bss; /* BSS that this device belongs to */
318
319 union {
320 struct ieee80211_if_ap ap;
321 struct ieee80211_if_wds wds;
322 struct ieee80211_if_vlan vlan;
323 struct ieee80211_if_sta sta;
324 } u;
325 int channel_use;
326 int channel_use_raw;
Jiri Bence9f207f2007-05-05 11:46:38 -0700327
328#ifdef CONFIG_MAC80211_DEBUGFS
329 struct dentry *debugfsdir;
330 union {
331 struct {
332 struct dentry *channel_use;
333 struct dentry *drop_unencrypted;
334 struct dentry *eapol;
335 struct dentry *ieee8021_x;
336 struct dentry *state;
337 struct dentry *bssid;
338 struct dentry *prev_bssid;
339 struct dentry *ssid_len;
340 struct dentry *aid;
341 struct dentry *ap_capab;
342 struct dentry *capab;
343 struct dentry *extra_ie_len;
344 struct dentry *auth_tries;
345 struct dentry *assoc_tries;
346 struct dentry *auth_algs;
347 struct dentry *auth_alg;
348 struct dentry *auth_transaction;
349 struct dentry *flags;
350 } sta;
351 struct {
352 struct dentry *channel_use;
353 struct dentry *drop_unencrypted;
354 struct dentry *eapol;
355 struct dentry *ieee8021_x;
356 struct dentry *num_sta_ps;
357 struct dentry *dtim_period;
358 struct dentry *dtim_count;
359 struct dentry *num_beacons;
360 struct dentry *force_unicast_rateidx;
361 struct dentry *max_ratectrl_rateidx;
362 struct dentry *num_buffered_multicast;
363 struct dentry *beacon_head_len;
364 struct dentry *beacon_tail_len;
365 } ap;
366 struct {
367 struct dentry *channel_use;
368 struct dentry *drop_unencrypted;
369 struct dentry *eapol;
370 struct dentry *ieee8021_x;
371 struct dentry *peer;
372 } wds;
373 struct {
374 struct dentry *channel_use;
375 struct dentry *drop_unencrypted;
376 struct dentry *eapol;
377 struct dentry *ieee8021_x;
378 struct dentry *vlan_id;
379 } vlan;
380 struct {
381 struct dentry *mode;
382 } monitor;
383 struct dentry *default_key;
384 } debugfs;
385#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700386};
387
388#define IEEE80211_DEV_TO_SUB_IF(dev) netdev_priv(dev)
389
390enum {
391 IEEE80211_RX_MSG = 1,
392 IEEE80211_TX_STATUS_MSG = 2,
393};
394
395struct ieee80211_local {
396 /* embed the driver visible part.
397 * don't cast (use the static inlines below), but we keep
398 * it first anyway so they become a no-op */
399 struct ieee80211_hw hw;
400
401 const struct ieee80211_ops *ops;
402
403 /* List of registered struct ieee80211_hw_mode */
404 struct list_head modes_list;
405
406 struct net_device *mdev; /* wmaster# - "master" 802.11 device */
407 struct net_device *apdev; /* wlan#ap - management frames (hostapd) */
408 int open_count;
409 int monitors;
410 struct iw_statistics wstats;
411 u8 wstats_flags;
Johannes Bergb306f452007-07-10 19:32:08 +0200412 int tx_headroom; /* required headroom for hardware/radiotap */
Jiri Bencf0706e82007-05-05 11:45:53 -0700413
414 enum {
415 IEEE80211_DEV_UNINITIALIZED = 0,
416 IEEE80211_DEV_REGISTERED,
417 IEEE80211_DEV_UNREGISTERED,
418 } reg_state;
419
420 /* Tasklet and skb queue to process calls from IRQ mode. All frames
421 * added to skb_queue will be processed, but frames in
422 * skb_queue_unreliable may be dropped if the total length of these
423 * queues increases over the limit. */
424#define IEEE80211_IRQSAFE_QUEUE_LIMIT 128
425 struct tasklet_struct tasklet;
426 struct sk_buff_head skb_queue;
427 struct sk_buff_head skb_queue_unreliable;
428
429 /* Station data structures */
Michael Wube8755e2007-07-27 15:43:23 +0200430 rwlock_t sta_lock; /* protects STA data structures */
Jiri Bencf0706e82007-05-05 11:45:53 -0700431 int num_sta; /* number of stations in sta_list */
432 struct list_head sta_list;
Jiri Bencf0706e82007-05-05 11:45:53 -0700433 struct sta_info *sta_hash[STA_HASH_SIZE];
434 struct timer_list sta_cleanup;
435
436 unsigned long state[NUM_TX_DATA_QUEUES];
437 struct ieee80211_tx_stored_packet pending_packet[NUM_TX_DATA_QUEUES];
438 struct tasklet_struct tx_pending_tasklet;
439
440 int mc_count; /* total count of multicast entries in all interfaces */
441 int iff_allmultis, iff_promiscs;
442 /* number of interfaces with corresponding IFF_ flags */
443
444 struct rate_control_ref *rate_ctrl;
445
446 int next_mode; /* MODE_IEEE80211*
447 * The mode preference for next channel change. This is
448 * used to select .11g vs. .11b channels (or 4.9 GHz vs.
449 * .11a) when the channel number is not unique. */
450
451 /* Supported and basic rate filters for different modes. These are
452 * pointers to -1 terminated lists and rates in 100 kbps units. */
453 int *supp_rates[NUM_IEEE80211_MODES];
454 int *basic_rates[NUM_IEEE80211_MODES];
455
456 int rts_threshold;
Jiri Bencf0706e82007-05-05 11:45:53 -0700457 int fragmentation_threshold;
458 int short_retry_limit; /* dot11ShortRetryLimit */
459 int long_retry_limit; /* dot11LongRetryLimit */
Jiri Bencf0706e82007-05-05 11:45:53 -0700460
461 struct crypto_blkcipher *wep_tx_tfm;
462 struct crypto_blkcipher *wep_rx_tfm;
463 u32 wep_iv;
464 int key_tx_rx_threshold; /* number of times any key can be used in TX
465 * or RX before generating a rekey
466 * notification; 0 = notification disabled. */
467
468 int bridge_packets; /* bridge packets between associated stations and
469 * deliver multicast frames both back to wireless
470 * media and to the local net stack */
471
472 ieee80211_rx_handler *rx_pre_handlers;
473 ieee80211_rx_handler *rx_handlers;
474 ieee80211_tx_handler *tx_handlers;
475
476 rwlock_t sub_if_lock; /* Protects sub_if_list. Cannot be taken under
477 * sta_bss_lock or sta_lock. */
478 struct list_head sub_if_list;
479 int sta_scanning;
480 int scan_channel_idx;
481 enum { SCAN_SET_CHANNEL, SCAN_SEND_PROBE } scan_state;
482 unsigned long last_scan_completed;
483 struct delayed_work scan_work;
484 struct net_device *scan_dev;
485 struct ieee80211_channel *oper_channel, *scan_channel;
486 struct ieee80211_hw_mode *oper_hw_mode, *scan_hw_mode;
487 u8 scan_ssid[IEEE80211_MAX_SSID_LEN];
488 size_t scan_ssid_len;
489 struct list_head sta_bss_list;
490 struct ieee80211_sta_bss *sta_bss_hash[STA_HASH_SIZE];
491 spinlock_t sta_bss_lock;
492#define IEEE80211_SCAN_MATCH_SSID BIT(0)
493#define IEEE80211_SCAN_WPA_ONLY BIT(1)
494#define IEEE80211_SCAN_EXTRA_INFO BIT(2)
495 int scan_flags;
496
497 /* SNMP counters */
498 /* dot11CountersTable */
499 u32 dot11TransmittedFragmentCount;
500 u32 dot11MulticastTransmittedFrameCount;
501 u32 dot11FailedCount;
502 u32 dot11RetryCount;
503 u32 dot11MultipleRetryCount;
504 u32 dot11FrameDuplicateCount;
505 u32 dot11ReceivedFragmentCount;
506 u32 dot11MulticastReceivedFrameCount;
507 u32 dot11TransmittedFrameCount;
508 u32 dot11WEPUndecryptableCount;
509
510#ifdef CONFIG_MAC80211_LEDS
511 int tx_led_counter, rx_led_counter;
512 struct led_trigger *tx_led, *rx_led;
513 char tx_led_name[32], rx_led_name[32];
514#endif
515
516 u32 channel_use;
517 u32 channel_use_raw;
Jiri Bencf0706e82007-05-05 11:45:53 -0700518
Jiri Bence9f207f2007-05-05 11:46:38 -0700519#ifdef CONFIG_MAC80211_DEBUGFS
520 struct work_struct sta_debugfs_add;
521#endif
522
Jiri Bencf0706e82007-05-05 11:45:53 -0700523#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
524 /* TX/RX handler statistics */
525 unsigned int tx_handlers_drop;
526 unsigned int tx_handlers_queued;
527 unsigned int tx_handlers_drop_unencrypted;
528 unsigned int tx_handlers_drop_fragment;
529 unsigned int tx_handlers_drop_wep;
530 unsigned int tx_handlers_drop_not_assoc;
531 unsigned int tx_handlers_drop_unauth_port;
532 unsigned int rx_handlers_drop;
533 unsigned int rx_handlers_queued;
534 unsigned int rx_handlers_drop_nullfunc;
535 unsigned int rx_handlers_drop_defrag;
536 unsigned int rx_handlers_drop_short;
537 unsigned int rx_handlers_drop_passive_scan;
538 unsigned int tx_expand_skb_head;
539 unsigned int tx_expand_skb_head_cloned;
540 unsigned int rx_expand_skb_head;
541 unsigned int rx_expand_skb_head2;
542 unsigned int rx_handlers_fragments;
543 unsigned int tx_status_drop;
544 unsigned int wme_rx_queue[NUM_RX_DATA_QUEUES];
545 unsigned int wme_tx_queue[NUM_RX_DATA_QUEUES];
546#define I802_DEBUG_INC(c) (c)++
547#else /* CONFIG_MAC80211_DEBUG_COUNTERS */
548#define I802_DEBUG_INC(c) do { } while (0)
549#endif /* CONFIG_MAC80211_DEBUG_COUNTERS */
550
551
552 int default_wep_only; /* only default WEP keys are used with this
553 * interface; this is used to decide when hwaccel
554 * can be used with default keys */
555 int total_ps_buffered; /* total number of all buffered unicast and
556 * multicast packets for power saving stations
557 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700558 int wifi_wme_noack_test;
559 unsigned int wmm_acm; /* bit field of ACM bits (BIT(802.1D tag)) */
560
561 unsigned int enabled_modes; /* bitfield of allowed modes;
562 * (1 << MODE_*) */
563 unsigned int hw_modes; /* bitfield of supported hardware modes;
564 * (1 << MODE_*) */
565
566 int user_space_mlme;
Jiri Bence9f207f2007-05-05 11:46:38 -0700567
568#ifdef CONFIG_MAC80211_DEBUGFS
569 struct local_debugfsdentries {
570 struct dentry *channel;
571 struct dentry *frequency;
Jiri Bence9f207f2007-05-05 11:46:38 -0700572 struct dentry *antenna_sel_tx;
573 struct dentry *antenna_sel_rx;
574 struct dentry *bridge_packets;
575 struct dentry *key_tx_rx_threshold;
576 struct dentry *rts_threshold;
577 struct dentry *fragmentation_threshold;
578 struct dentry *short_retry_limit;
579 struct dentry *long_retry_limit;
580 struct dentry *total_ps_buffered;
581 struct dentry *mode;
582 struct dentry *wep_iv;
Jiri Bence9f207f2007-05-05 11:46:38 -0700583 struct dentry *modes;
584 struct dentry *statistics;
585 struct local_debugfsdentries_statsdentries {
586 struct dentry *transmitted_fragment_count;
587 struct dentry *multicast_transmitted_frame_count;
588 struct dentry *failed_count;
589 struct dentry *retry_count;
590 struct dentry *multiple_retry_count;
591 struct dentry *frame_duplicate_count;
592 struct dentry *received_fragment_count;
593 struct dentry *multicast_received_frame_count;
594 struct dentry *transmitted_frame_count;
595 struct dentry *wep_undecryptable_count;
596 struct dentry *num_scans;
597#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
598 struct dentry *tx_handlers_drop;
599 struct dentry *tx_handlers_queued;
600 struct dentry *tx_handlers_drop_unencrypted;
601 struct dentry *tx_handlers_drop_fragment;
602 struct dentry *tx_handlers_drop_wep;
603 struct dentry *tx_handlers_drop_not_assoc;
604 struct dentry *tx_handlers_drop_unauth_port;
605 struct dentry *rx_handlers_drop;
606 struct dentry *rx_handlers_queued;
607 struct dentry *rx_handlers_drop_nullfunc;
608 struct dentry *rx_handlers_drop_defrag;
609 struct dentry *rx_handlers_drop_short;
610 struct dentry *rx_handlers_drop_passive_scan;
611 struct dentry *tx_expand_skb_head;
612 struct dentry *tx_expand_skb_head_cloned;
613 struct dentry *rx_expand_skb_head;
614 struct dentry *rx_expand_skb_head2;
615 struct dentry *rx_handlers_fragments;
616 struct dentry *tx_status_drop;
617 struct dentry *wme_tx_queue;
618 struct dentry *wme_rx_queue;
619#endif
620 struct dentry *dot11ACKFailureCount;
621 struct dentry *dot11RTSFailureCount;
622 struct dentry *dot11FCSErrorCount;
623 struct dentry *dot11RTSSuccessCount;
624 } stats;
625 struct dentry *stations;
626 struct dentry *keys;
627 } debugfs;
628#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700629};
630
631static inline struct ieee80211_local *hw_to_local(
632 struct ieee80211_hw *hw)
633{
634 return container_of(hw, struct ieee80211_local, hw);
635}
636
637static inline struct ieee80211_hw *local_to_hw(
638 struct ieee80211_local *local)
639{
640 return &local->hw;
641}
642
643enum ieee80211_link_state_t {
644 IEEE80211_LINK_STATE_XOFF = 0,
645 IEEE80211_LINK_STATE_PENDING,
646};
647
648struct sta_attribute {
649 struct attribute attr;
650 ssize_t (*show)(const struct sta_info *, char *buf);
651 ssize_t (*store)(struct sta_info *, const char *buf, size_t count);
652};
653
654static inline void __bss_tim_set(struct ieee80211_if_ap *bss, int aid)
655{
656 /*
657 * This format has ben mandated by the IEEE specifications,
658 * so this line may not be changed to use the __set_bit() format.
659 */
660 bss->tim[(aid)/8] |= 1<<((aid) % 8);
661}
662
663static inline void bss_tim_set(struct ieee80211_local *local,
664 struct ieee80211_if_ap *bss, int aid)
665{
Michael Wube8755e2007-07-27 15:43:23 +0200666 read_lock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700667 __bss_tim_set(bss, aid);
Michael Wube8755e2007-07-27 15:43:23 +0200668 read_unlock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700669}
670
671static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, int aid)
672{
673 /*
674 * This format has ben mandated by the IEEE specifications,
675 * so this line may not be changed to use the __clear_bit() format.
676 */
677 bss->tim[(aid)/8] &= !(1<<((aid) % 8));
678}
679
680static inline void bss_tim_clear(struct ieee80211_local *local,
681 struct ieee80211_if_ap *bss, int aid)
682{
Michael Wube8755e2007-07-27 15:43:23 +0200683 read_lock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700684 __bss_tim_clear(bss, aid);
Michael Wube8755e2007-07-27 15:43:23 +0200685 read_unlock_bh(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700686}
687
688/**
689 * ieee80211_is_erp_rate - Check if a rate is an ERP rate
690 * @phymode: The PHY-mode for this rate (MODE_IEEE80211...)
691 * @rate: Transmission rate to check, in 100 kbps
692 *
693 * Check if a given rate is an Extended Rate PHY (ERP) rate.
694 */
695static inline int ieee80211_is_erp_rate(int phymode, int rate)
696{
697 if (phymode == MODE_IEEE80211G) {
698 if (rate != 10 && rate != 20 &&
699 rate != 55 && rate != 110)
700 return 1;
701 }
702 return 0;
703}
704
Johannes Berg571ecf62007-07-27 15:43:22 +0200705static inline int ieee80211_bssid_match(const u8 *raddr, const u8 *addr)
706{
707 return compare_ether_addr(raddr, addr) == 0 ||
708 is_broadcast_ether_addr(raddr);
709}
710
711
Jiri Bencf0706e82007-05-05 11:45:53 -0700712/* ieee80211.c */
713int ieee80211_hw_config(struct ieee80211_local *local);
714int ieee80211_if_config(struct net_device *dev);
715int ieee80211_if_config_beacon(struct net_device *dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700716void ieee80211_rx_mgmt(struct ieee80211_local *local, struct sk_buff *skb,
717 struct ieee80211_rx_status *status, u32 msg_type);
718void ieee80211_prepare_rates(struct ieee80211_local *local,
719 struct ieee80211_hw_mode *mode);
720void ieee80211_tx_set_iswep(struct ieee80211_txrx_data *tx);
721int ieee80211_if_update_wds(struct net_device *dev, u8 *remote_addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700722void ieee80211_if_setup(struct net_device *dev);
723void ieee80211_if_mgmt_setup(struct net_device *dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700724struct net_device_stats *ieee80211_dev_stats(struct net_device *dev);
Johannes Berg571ecf62007-07-27 15:43:22 +0200725struct ieee80211_rate *ieee80211_get_rate(struct ieee80211_local *local,
726 int phymode, int hwrate);
727void ieee80211_key_threshold_notify(struct net_device *dev,
728 struct ieee80211_key *key,
729 struct sta_info *sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700730
731/* ieee80211_ioctl.c */
732extern const struct iw_handler_def ieee80211_iw_handler_def;
733
734void ieee80211_update_default_wep_only(struct ieee80211_local *local);
735
736
737/* Least common multiple of the used rates (in 100 kbps). This is used to
738 * calculate rate_inv values for each rate so that only integers are needed. */
739#define CHAN_UTIL_RATE_LCM 95040
740/* 1 usec is 1/8 * (95040/10) = 1188 */
741#define CHAN_UTIL_PER_USEC 1188
742/* Amount of bits to shift the result right to scale the total utilization
743 * to values that will not wrap around 32-bit integers. */
744#define CHAN_UTIL_SHIFT 9
745/* Theoretical maximum of channel utilization counter in 10 ms (stat_time=1):
746 * (CHAN_UTIL_PER_USEC * 10000) >> CHAN_UTIL_SHIFT = 23203. So dividing the
747 * raw value with about 23 should give utilization in 10th of a percentage
748 * (1/1000). However, utilization is only estimated and not all intervals
749 * between frames etc. are calculated. 18 seems to give numbers that are closer
750 * to the real maximum. */
751#define CHAN_UTIL_PER_10MS 18
752#define CHAN_UTIL_HDR_LONG (202 * CHAN_UTIL_PER_USEC)
753#define CHAN_UTIL_HDR_SHORT (40 * CHAN_UTIL_PER_USEC)
754
755
756/* ieee80211_ioctl.c */
757int ieee80211_set_compression(struct ieee80211_local *local,
758 struct net_device *dev, struct sta_info *sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700759int ieee80211_set_channel(struct ieee80211_local *local, int channel, int freq);
760/* ieee80211_sta.c */
761void ieee80211_sta_timer(unsigned long data);
762void ieee80211_sta_work(struct work_struct *work);
763void ieee80211_sta_scan_work(struct work_struct *work);
764void ieee80211_sta_rx_mgmt(struct net_device *dev, struct sk_buff *skb,
765 struct ieee80211_rx_status *rx_status);
766int ieee80211_sta_set_ssid(struct net_device *dev, char *ssid, size_t len);
767int ieee80211_sta_get_ssid(struct net_device *dev, char *ssid, size_t *len);
768int ieee80211_sta_set_bssid(struct net_device *dev, u8 *bssid);
769int ieee80211_sta_req_scan(struct net_device *dev, u8 *ssid, size_t ssid_len);
770void ieee80211_sta_req_auth(struct net_device *dev,
771 struct ieee80211_if_sta *ifsta);
772int ieee80211_sta_scan_results(struct net_device *dev, char *buf, size_t len);
773void ieee80211_sta_rx_scan(struct net_device *dev, struct sk_buff *skb,
774 struct ieee80211_rx_status *rx_status);
775void ieee80211_rx_bss_list_init(struct net_device *dev);
776void ieee80211_rx_bss_list_deinit(struct net_device *dev);
777int ieee80211_sta_set_extra_ie(struct net_device *dev, char *ie, size_t len);
778struct sta_info * ieee80211_ibss_add_sta(struct net_device *dev,
779 struct sk_buff *skb, u8 *bssid,
780 u8 *addr);
781int ieee80211_sta_deauthenticate(struct net_device *dev, u16 reason);
782int ieee80211_sta_disassociate(struct net_device *dev, u16 reason);
Daniel Draked9430a32007-07-27 15:43:24 +0200783void ieee80211_erp_info_change_notify(struct net_device *dev, u8 changes);
784void ieee80211_reset_erp_info(struct net_device *dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700785
786/* ieee80211_iface.c */
787int ieee80211_if_add(struct net_device *dev, const char *name,
788 struct net_device **new_dev, int type);
789void ieee80211_if_set_type(struct net_device *dev, int type);
790void ieee80211_if_reinit(struct net_device *dev);
791void __ieee80211_if_del(struct ieee80211_local *local,
792 struct ieee80211_sub_if_data *sdata);
793int ieee80211_if_remove(struct net_device *dev, const char *name, int id);
794void ieee80211_if_free(struct net_device *dev);
795void ieee80211_if_sdata_init(struct ieee80211_sub_if_data *sdata);
796int ieee80211_if_add_mgmt(struct ieee80211_local *local);
797void ieee80211_if_del_mgmt(struct ieee80211_local *local);
798
Daniel Drakefd8bacc2007-06-09 19:07:14 +0100799/* regdomain.c */
800void ieee80211_regdomain_init(void);
801void ieee80211_set_default_regdomain(struct ieee80211_hw_mode *mode);
802
Johannes Berg571ecf62007-07-27 15:43:22 +0200803/* rx handling */
804extern ieee80211_rx_handler ieee80211_rx_pre_handlers[];
805extern ieee80211_rx_handler ieee80211_rx_handlers[];
806
Johannes Berge2ebc742007-07-27 15:43:22 +0200807/* tx handling */
808extern ieee80211_tx_handler ieee80211_tx_handlers[];
809void ieee80211_clear_tx_pending(struct ieee80211_local *local);
810void ieee80211_tx_pending(unsigned long data);
811int ieee80211_master_start_xmit(struct sk_buff *skb, struct net_device *dev);
812int ieee80211_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
813int ieee80211_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
814int ieee80211_mgmt_start_xmit(struct sk_buff *skb, struct net_device *dev);
815
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200816/* key handling */
817struct ieee80211_key_conf *
818ieee80211_key_data2conf(struct ieee80211_local *local,
819 const struct ieee80211_key *data);
820struct ieee80211_key *ieee80211_key_alloc(struct ieee80211_sub_if_data *sdata,
821 int idx, size_t key_len, gfp_t flags);
822void ieee80211_key_free(struct ieee80211_key *key);
823
Johannes Bergc2d15602007-07-27 15:43:23 +0200824/* utility functions/constants */
825extern void *mac80211_wiphy_privid; /* for wiphy privid */
826extern const unsigned char rfc1042_header[6];
827extern const unsigned char bridge_tunnel_header[6];
828u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len);
829int ieee80211_is_eapol(const struct sk_buff *skb);
830int ieee80211_frame_duration(struct ieee80211_local *local, size_t len,
831 int rate, int erp, int short_preamble);
Johannes Bergeb063c12007-08-28 17:01:53 -0400832void mac80211_ev_michael_mic_failure(struct net_device *dev, int keyidx,
833 struct ieee80211_hdr *hdr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700834
835#endif /* IEEE80211_I_H */