[MAC80211]: remove ALG_NONE
[deliverable/linux.git] / net / mac80211 / ieee80211_i.h
CommitLineData
f0706e82
JB
1/*
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>
571ecf67 24#include <linux/etherdevice.h>
f0706e82
JB
25#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
5628221c
DD
103 /* 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;
f0706e82
JB
109};
110
111
112typedef enum {
113 TXRX_CONTINUE, TXRX_DROP, TXRX_QUEUED
114} ieee80211_txrx_result;
115
badffb72
JS
116/* 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)
f0706e82
JB
125struct 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;
badffb72 133 unsigned int flags;
f0706e82
JB
134 union {
135 struct {
136 struct ieee80211_tx_control *control;
f0706e82
JB
137 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;
f0706e82
JB
144
145 /* Extra fragments (in addition to the first fragment
146 * in skb) */
147 int num_extra_frag;
148 struct sk_buff **extra_frag;
149 } tx;
150 struct {
151 struct ieee80211_rx_status *status;
152 int sent_ps_buffered;
153 int queue;
154 int load;
50741ae0
JB
155 u32 tkip_iv32;
156 u16 tkip_iv16;
f0706e82
JB
157 } rx;
158 } u;
159};
160
e8bf9649
JS
161/* flags used in struct ieee80211_tx_packet_data.flags */
162#define IEEE80211_TXPD_REQ_TX_STATUS BIT(0)
163#define IEEE80211_TXPD_DO_NOT_ENCRYPT BIT(1)
164#define IEEE80211_TXPD_REQUEUE BIT(2)
f0706e82
JB
165/* Stored in sk_buff->cb */
166struct ieee80211_tx_packet_data {
167 int ifindex;
168 unsigned long jiffies;
e8bf9649
JS
169 unsigned int flags;
170 u8 queue;
f0706e82
JB
171};
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;
badffb72 181 unsigned int last_frag_rate_ctrl_probe;
f0706e82
JB
182};
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
0ec3ca44
JB
194 struct list_head vlans;
195
f0706e82
JB
196 u8 ssid[IEEE80211_MAX_SSID_LEN];
197 size_t ssid_len;
f0706e82
JB
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 {
0ec3ca44
JB
217 struct ieee80211_sub_if_data *ap;
218 struct list_head list;
f0706e82
JB
219};
220
d6f2da5b
JS
221/* flags used in struct ieee80211_if_sta.flags */
222#define IEEE80211_STA_SSID_SET BIT(0)
223#define IEEE80211_STA_BSSID_SET BIT(1)
224#define IEEE80211_STA_PREV_BSSID_SET BIT(2)
225#define IEEE80211_STA_AUTHENTICATED BIT(3)
226#define IEEE80211_STA_ASSOCIATED BIT(4)
227#define IEEE80211_STA_PROBEREQ_POLL BIT(5)
228#define IEEE80211_STA_CREATE_IBSS BIT(6)
229#define IEEE80211_STA_MIXED_CELL BIT(7)
230#define IEEE80211_STA_WMM_ENABLED BIT(8)
231#define IEEE80211_STA_AUTO_SSID_SEL BIT(10)
232#define IEEE80211_STA_AUTO_BSSID_SEL BIT(11)
233#define IEEE80211_STA_AUTO_CHANNEL_SEL BIT(12)
f0706e82
JB
234struct ieee80211_if_sta {
235 enum {
236 IEEE80211_DISABLED, IEEE80211_AUTHENTICATE,
237 IEEE80211_ASSOCIATE, IEEE80211_ASSOCIATED,
238 IEEE80211_IBSS_SEARCH, IEEE80211_IBSS_JOINED
239 } state;
240 struct timer_list timer;
241 struct work_struct work;
242 u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
243 u8 ssid[IEEE80211_MAX_SSID_LEN];
244 size_t ssid_len;
245 u16 aid;
246 u16 ap_capab, capab;
247 u8 *extra_ie; /* to be added to the end of AssocReq */
248 size_t extra_ie_len;
249
250 /* The last AssocReq/Resp IEs */
251 u8 *assocreq_ies, *assocresp_ies;
252 size_t assocreq_ies_len, assocresp_ies_len;
253
254 int auth_tries, assoc_tries;
255
d6f2da5b 256 unsigned int flags;
f0706e82
JB
257#define IEEE80211_STA_REQ_SCAN 0
258#define IEEE80211_STA_REQ_AUTH 1
259#define IEEE80211_STA_REQ_RUN 2
260 unsigned long request;
261 struct sk_buff_head skb_queue;
262
808718c1 263 int key_management_enabled;
f0706e82
JB
264 unsigned long last_probe;
265
266#define IEEE80211_AUTH_ALG_OPEN BIT(0)
267#define IEEE80211_AUTH_ALG_SHARED_KEY BIT(1)
268#define IEEE80211_AUTH_ALG_LEAP BIT(2)
269 unsigned int auth_algs; /* bitfield of allowed auth algs */
270 int auth_alg; /* currently used IEEE 802.11 authentication algorithm */
271 int auth_transaction;
272
273 unsigned long ibss_join_req;
274 struct sk_buff *probe_resp; /* ProbeResp template for IBSS */
275 u32 supp_rates_bits;
276
277 int wmm_last_param_set;
278};
279
280
13262ffd
JS
281/* flags used in struct ieee80211_sub_if_data.flags */
282#define IEEE80211_SDATA_ALLMULTI BIT(0)
283#define IEEE80211_SDATA_PROMISC BIT(1)
284#define IEEE80211_SDATA_USE_PROTECTION BIT(2) /* CTS protect ERP frames */
285/* use short preamble with IEEE 802.11b: this flag is set when the AP or beacon
286 * generator reports that there are no present stations that cannot support short
287 * preambles */
288#define IEEE80211_SDATA_SHORT_PREAMBLE BIT(3)
f0706e82
JB
289struct ieee80211_sub_if_data {
290 struct list_head list;
fb1c1cd6 291 enum ieee80211_if_types type;
f0706e82
JB
292
293 struct wireless_dev wdev;
294
11a843b7
JB
295 /* keys */
296 struct list_head key_list;
297
f0706e82
JB
298 struct net_device *dev;
299 struct ieee80211_local *local;
300
13262ffd 301 unsigned int flags;
7e9ed188 302
f0706e82
JB
303 int drop_unencrypted;
304 int eapol; /* 0 = process EAPOL frames as normal data frames,
305 * 1 = send EAPOL frames through wlan#ap to hostapd
306 * (default) */
307 int ieee802_1x; /* IEEE 802.1X PAE - drop packet to/from unauthorized
308 * port */
309
310 u16 sequence;
311
312 /* Fragment table for host-based reassembly */
313 struct ieee80211_fragment_entry fragments[IEEE80211_FRAGMENT_MAX];
314 unsigned int fragment_next;
315
316#define NUM_DEFAULT_KEYS 4
317 struct ieee80211_key *keys[NUM_DEFAULT_KEYS];
318 struct ieee80211_key *default_key;
319
320 struct ieee80211_if_ap *bss; /* BSS that this device belongs to */
321
322 union {
323 struct ieee80211_if_ap ap;
324 struct ieee80211_if_wds wds;
325 struct ieee80211_if_vlan vlan;
326 struct ieee80211_if_sta sta;
327 } u;
328 int channel_use;
329 int channel_use_raw;
e9f207f0
JB
330
331#ifdef CONFIG_MAC80211_DEBUGFS
332 struct dentry *debugfsdir;
333 union {
334 struct {
335 struct dentry *channel_use;
336 struct dentry *drop_unencrypted;
337 struct dentry *eapol;
338 struct dentry *ieee8021_x;
339 struct dentry *state;
340 struct dentry *bssid;
341 struct dentry *prev_bssid;
342 struct dentry *ssid_len;
343 struct dentry *aid;
344 struct dentry *ap_capab;
345 struct dentry *capab;
346 struct dentry *extra_ie_len;
347 struct dentry *auth_tries;
348 struct dentry *assoc_tries;
349 struct dentry *auth_algs;
350 struct dentry *auth_alg;
351 struct dentry *auth_transaction;
352 struct dentry *flags;
353 } sta;
354 struct {
355 struct dentry *channel_use;
356 struct dentry *drop_unencrypted;
357 struct dentry *eapol;
358 struct dentry *ieee8021_x;
359 struct dentry *num_sta_ps;
360 struct dentry *dtim_period;
361 struct dentry *dtim_count;
362 struct dentry *num_beacons;
363 struct dentry *force_unicast_rateidx;
364 struct dentry *max_ratectrl_rateidx;
365 struct dentry *num_buffered_multicast;
366 struct dentry *beacon_head_len;
367 struct dentry *beacon_tail_len;
368 } ap;
369 struct {
370 struct dentry *channel_use;
371 struct dentry *drop_unencrypted;
372 struct dentry *eapol;
373 struct dentry *ieee8021_x;
374 struct dentry *peer;
375 } wds;
376 struct {
377 struct dentry *channel_use;
378 struct dentry *drop_unencrypted;
379 struct dentry *eapol;
380 struct dentry *ieee8021_x;
e9f207f0
JB
381 } vlan;
382 struct {
383 struct dentry *mode;
384 } monitor;
385 struct dentry *default_key;
386 } debugfs;
387#endif
f0706e82
JB
388};
389
390#define IEEE80211_DEV_TO_SUB_IF(dev) netdev_priv(dev)
391
392enum {
393 IEEE80211_RX_MSG = 1,
394 IEEE80211_TX_STATUS_MSG = 2,
395};
396
397struct ieee80211_local {
398 /* embed the driver visible part.
399 * don't cast (use the static inlines below), but we keep
400 * it first anyway so they become a no-op */
401 struct ieee80211_hw hw;
402
403 const struct ieee80211_ops *ops;
404
405 /* List of registered struct ieee80211_hw_mode */
406 struct list_head modes_list;
407
408 struct net_device *mdev; /* wmaster# - "master" 802.11 device */
f0706e82
JB
409 int open_count;
410 int monitors;
4150c572 411 unsigned int filter_flags; /* FIF_* */
f0706e82
JB
412 struct iw_statistics wstats;
413 u8 wstats_flags;
b306f453 414 int tx_headroom; /* required headroom for hardware/radiotap */
f0706e82
JB
415
416 enum {
417 IEEE80211_DEV_UNINITIALIZED = 0,
418 IEEE80211_DEV_REGISTERED,
419 IEEE80211_DEV_UNREGISTERED,
420 } reg_state;
421
422 /* Tasklet and skb queue to process calls from IRQ mode. All frames
423 * added to skb_queue will be processed, but frames in
424 * skb_queue_unreliable may be dropped if the total length of these
425 * queues increases over the limit. */
426#define IEEE80211_IRQSAFE_QUEUE_LIMIT 128
427 struct tasklet_struct tasklet;
428 struct sk_buff_head skb_queue;
429 struct sk_buff_head skb_queue_unreliable;
430
431 /* Station data structures */
be8755e1 432 rwlock_t sta_lock; /* protects STA data structures */
f0706e82
JB
433 int num_sta; /* number of stations in sta_list */
434 struct list_head sta_list;
f0706e82
JB
435 struct sta_info *sta_hash[STA_HASH_SIZE];
436 struct timer_list sta_cleanup;
437
438 unsigned long state[NUM_TX_DATA_QUEUES];
439 struct ieee80211_tx_stored_packet pending_packet[NUM_TX_DATA_QUEUES];
440 struct tasklet_struct tx_pending_tasklet;
441
53918994
JB
442 /* number of interfaces with corresponding IFF_ flags */
443 atomic_t iff_allmultis, iff_promiscs;
f0706e82
JB
444
445 struct rate_control_ref *rate_ctrl;
446
f0706e82
JB
447 /* Supported and basic rate filters for different modes. These are
448 * pointers to -1 terminated lists and rates in 100 kbps units. */
449 int *supp_rates[NUM_IEEE80211_MODES];
450 int *basic_rates[NUM_IEEE80211_MODES];
451
452 int rts_threshold;
f0706e82
JB
453 int fragmentation_threshold;
454 int short_retry_limit; /* dot11ShortRetryLimit */
455 int long_retry_limit; /* dot11LongRetryLimit */
f0706e82
JB
456
457 struct crypto_blkcipher *wep_tx_tfm;
458 struct crypto_blkcipher *wep_rx_tfm;
459 u32 wep_iv;
f0706e82
JB
460
461 int bridge_packets; /* bridge packets between associated stations and
462 * deliver multicast frames both back to wireless
463 * media and to the local net stack */
464
465 ieee80211_rx_handler *rx_pre_handlers;
466 ieee80211_rx_handler *rx_handlers;
467 ieee80211_tx_handler *tx_handlers;
468
79010420
JB
469 struct list_head interfaces;
470
f0706e82
JB
471 int sta_scanning;
472 int scan_channel_idx;
473 enum { SCAN_SET_CHANNEL, SCAN_SEND_PROBE } scan_state;
474 unsigned long last_scan_completed;
475 struct delayed_work scan_work;
476 struct net_device *scan_dev;
477 struct ieee80211_channel *oper_channel, *scan_channel;
478 struct ieee80211_hw_mode *oper_hw_mode, *scan_hw_mode;
479 u8 scan_ssid[IEEE80211_MAX_SSID_LEN];
480 size_t scan_ssid_len;
481 struct list_head sta_bss_list;
482 struct ieee80211_sta_bss *sta_bss_hash[STA_HASH_SIZE];
483 spinlock_t sta_bss_lock;
484#define IEEE80211_SCAN_MATCH_SSID BIT(0)
485#define IEEE80211_SCAN_WPA_ONLY BIT(1)
486#define IEEE80211_SCAN_EXTRA_INFO BIT(2)
487 int scan_flags;
488
489 /* SNMP counters */
490 /* dot11CountersTable */
491 u32 dot11TransmittedFragmentCount;
492 u32 dot11MulticastTransmittedFrameCount;
493 u32 dot11FailedCount;
494 u32 dot11RetryCount;
495 u32 dot11MultipleRetryCount;
496 u32 dot11FrameDuplicateCount;
497 u32 dot11ReceivedFragmentCount;
498 u32 dot11MulticastReceivedFrameCount;
499 u32 dot11TransmittedFrameCount;
500 u32 dot11WEPUndecryptableCount;
501
502#ifdef CONFIG_MAC80211_LEDS
503 int tx_led_counter, rx_led_counter;
504 struct led_trigger *tx_led, *rx_led;
505 char tx_led_name[32], rx_led_name[32];
506#endif
507
508 u32 channel_use;
509 u32 channel_use_raw;
f0706e82 510
e9f207f0
JB
511#ifdef CONFIG_MAC80211_DEBUGFS
512 struct work_struct sta_debugfs_add;
513#endif
514
f0706e82
JB
515#ifdef CONFIG_MAC80211_DEBUG_COUNTERS
516 /* TX/RX handler statistics */
517 unsigned int tx_handlers_drop;
518 unsigned int tx_handlers_queued;
519 unsigned int tx_handlers_drop_unencrypted;
520 unsigned int tx_handlers_drop_fragment;
521 unsigned int tx_handlers_drop_wep;
522 unsigned int tx_handlers_drop_not_assoc;
523 unsigned int tx_handlers_drop_unauth_port;
524 unsigned int rx_handlers_drop;
525 unsigned int rx_handlers_queued;
526 unsigned int rx_handlers_drop_nullfunc;
527 unsigned int rx_handlers_drop_defrag;
528 unsigned int rx_handlers_drop_short;
529 unsigned int rx_handlers_drop_passive_scan;
530 unsigned int tx_expand_skb_head;
531 unsigned int tx_expand_skb_head_cloned;
532 unsigned int rx_expand_skb_head;
533 unsigned int rx_expand_skb_head2;
534 unsigned int rx_handlers_fragments;
535 unsigned int tx_status_drop;
536 unsigned int wme_rx_queue[NUM_RX_DATA_QUEUES];
537 unsigned int wme_tx_queue[NUM_RX_DATA_QUEUES];
538#define I802_DEBUG_INC(c) (c)++
539#else /* CONFIG_MAC80211_DEBUG_COUNTERS */
540#define I802_DEBUG_INC(c) do { } while (0)
541#endif /* CONFIG_MAC80211_DEBUG_COUNTERS */
542
543
f0706e82
JB
544 int total_ps_buffered; /* total number of all buffered unicast and
545 * multicast packets for power saving stations
546 */
f0706e82
JB
547 int wifi_wme_noack_test;
548 unsigned int wmm_acm; /* bit field of ACM bits (BIT(802.1D tag)) */
549
550 unsigned int enabled_modes; /* bitfield of allowed modes;
551 * (1 << MODE_*) */
552 unsigned int hw_modes; /* bitfield of supported hardware modes;
553 * (1 << MODE_*) */
554
555 int user_space_mlme;
e9f207f0
JB
556
557#ifdef CONFIG_MAC80211_DEBUGFS
558 struct local_debugfsdentries {
559 struct dentry *channel;
560 struct dentry *frequency;
e9f207f0
JB
561 struct dentry *antenna_sel_tx;
562 struct dentry *antenna_sel_rx;
563 struct dentry *bridge_packets;
e9f207f0
JB
564 struct dentry *rts_threshold;
565 struct dentry *fragmentation_threshold;
566 struct dentry *short_retry_limit;
567 struct dentry *long_retry_limit;
568 struct dentry *total_ps_buffered;
569 struct dentry *mode;
570 struct dentry *wep_iv;
e9f207f0
JB
571 struct dentry *modes;
572 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
f0706e82
JB
617};
618
619static inline struct ieee80211_local *hw_to_local(
620 struct ieee80211_hw *hw)
621{
622 return container_of(hw, struct ieee80211_local, hw);
623}
624
625static inline struct ieee80211_hw *local_to_hw(
626 struct ieee80211_local *local)
627{
628 return &local->hw;
629}
630
631enum ieee80211_link_state_t {
632 IEEE80211_LINK_STATE_XOFF = 0,
633 IEEE80211_LINK_STATE_PENDING,
634};
635
636struct sta_attribute {
637 struct attribute attr;
638 ssize_t (*show)(const struct sta_info *, char *buf);
639 ssize_t (*store)(struct sta_info *, const char *buf, size_t count);
640};
641
30ccb088 642static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
f0706e82
JB
643{
644 /*
30ccb088 645 * This format has been mandated by the IEEE specifications,
f0706e82
JB
646 * so this line may not be changed to use the __set_bit() format.
647 */
30ccb088 648 bss->tim[aid / 8] |= (1 << (aid % 8));
f0706e82
JB
649}
650
651static inline void bss_tim_set(struct ieee80211_local *local,
30ccb088 652 struct ieee80211_if_ap *bss, u16 aid)
f0706e82 653{
be8755e1 654 read_lock_bh(&local->sta_lock);
f0706e82 655 __bss_tim_set(bss, aid);
be8755e1 656 read_unlock_bh(&local->sta_lock);
f0706e82
JB
657}
658
30ccb088 659static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
f0706e82
JB
660{
661 /*
30ccb088 662 * This format has been mandated by the IEEE specifications,
f0706e82
JB
663 * so this line may not be changed to use the __clear_bit() format.
664 */
30ccb088 665 bss->tim[aid / 8] &= ~(1 << (aid % 8));
f0706e82
JB
666}
667
668static inline void bss_tim_clear(struct ieee80211_local *local,
30ccb088 669 struct ieee80211_if_ap *bss, u16 aid)
f0706e82 670{
be8755e1 671 read_lock_bh(&local->sta_lock);
f0706e82 672 __bss_tim_clear(bss, aid);
be8755e1 673 read_unlock_bh(&local->sta_lock);
f0706e82
JB
674}
675
676/**
677 * ieee80211_is_erp_rate - Check if a rate is an ERP rate
678 * @phymode: The PHY-mode for this rate (MODE_IEEE80211...)
679 * @rate: Transmission rate to check, in 100 kbps
680 *
681 * Check if a given rate is an Extended Rate PHY (ERP) rate.
682 */
683static inline int ieee80211_is_erp_rate(int phymode, int rate)
684{
685 if (phymode == MODE_IEEE80211G) {
686 if (rate != 10 && rate != 20 &&
687 rate != 55 && rate != 110)
688 return 1;
689 }
690 return 0;
691}
692
571ecf67
JB
693static inline int ieee80211_bssid_match(const u8 *raddr, const u8 *addr)
694{
695 return compare_ether_addr(raddr, addr) == 0 ||
696 is_broadcast_ether_addr(raddr);
697}
698
699
f0706e82
JB
700/* ieee80211.c */
701int ieee80211_hw_config(struct ieee80211_local *local);
702int ieee80211_if_config(struct net_device *dev);
703int ieee80211_if_config_beacon(struct net_device *dev);
f0706e82
JB
704void ieee80211_prepare_rates(struct ieee80211_local *local,
705 struct ieee80211_hw_mode *mode);
706void ieee80211_tx_set_iswep(struct ieee80211_txrx_data *tx);
707int ieee80211_if_update_wds(struct net_device *dev, u8 *remote_addr);
708void ieee80211_if_setup(struct net_device *dev);
571ecf67
JB
709struct ieee80211_rate *ieee80211_get_rate(struct ieee80211_local *local,
710 int phymode, int hwrate);
f0706e82
JB
711
712/* ieee80211_ioctl.c */
713extern const struct iw_handler_def ieee80211_iw_handler_def;
714
f0706e82
JB
715
716/* Least common multiple of the used rates (in 100 kbps). This is used to
717 * calculate rate_inv values for each rate so that only integers are needed. */
718#define CHAN_UTIL_RATE_LCM 95040
719/* 1 usec is 1/8 * (95040/10) = 1188 */
720#define CHAN_UTIL_PER_USEC 1188
721/* Amount of bits to shift the result right to scale the total utilization
722 * to values that will not wrap around 32-bit integers. */
723#define CHAN_UTIL_SHIFT 9
724/* Theoretical maximum of channel utilization counter in 10 ms (stat_time=1):
725 * (CHAN_UTIL_PER_USEC * 10000) >> CHAN_UTIL_SHIFT = 23203. So dividing the
726 * raw value with about 23 should give utilization in 10th of a percentage
727 * (1/1000). However, utilization is only estimated and not all intervals
728 * between frames etc. are calculated. 18 seems to give numbers that are closer
729 * to the real maximum. */
730#define CHAN_UTIL_PER_10MS 18
731#define CHAN_UTIL_HDR_LONG (202 * CHAN_UTIL_PER_USEC)
732#define CHAN_UTIL_HDR_SHORT (40 * CHAN_UTIL_PER_USEC)
733
734
735/* ieee80211_ioctl.c */
736int ieee80211_set_compression(struct ieee80211_local *local,
737 struct net_device *dev, struct sta_info *sta);
f0706e82
JB
738int ieee80211_set_channel(struct ieee80211_local *local, int channel, int freq);
739/* ieee80211_sta.c */
740void ieee80211_sta_timer(unsigned long data);
741void ieee80211_sta_work(struct work_struct *work);
742void ieee80211_sta_scan_work(struct work_struct *work);
743void ieee80211_sta_rx_mgmt(struct net_device *dev, struct sk_buff *skb,
744 struct ieee80211_rx_status *rx_status);
745int ieee80211_sta_set_ssid(struct net_device *dev, char *ssid, size_t len);
746int ieee80211_sta_get_ssid(struct net_device *dev, char *ssid, size_t *len);
747int ieee80211_sta_set_bssid(struct net_device *dev, u8 *bssid);
748int ieee80211_sta_req_scan(struct net_device *dev, u8 *ssid, size_t ssid_len);
749void ieee80211_sta_req_auth(struct net_device *dev,
750 struct ieee80211_if_sta *ifsta);
751int ieee80211_sta_scan_results(struct net_device *dev, char *buf, size_t len);
752void ieee80211_sta_rx_scan(struct net_device *dev, struct sk_buff *skb,
753 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);
d9430a32
DD
762void ieee80211_erp_info_change_notify(struct net_device *dev, u8 changes);
763void ieee80211_reset_erp_info(struct net_device *dev);
f0706e82
JB
764
765/* ieee80211_iface.c */
766int ieee80211_if_add(struct net_device *dev, const char *name,
767 struct net_device **new_dev, int type);
768void ieee80211_if_set_type(struct net_device *dev, int type);
769void ieee80211_if_reinit(struct net_device *dev);
770void __ieee80211_if_del(struct ieee80211_local *local,
771 struct ieee80211_sub_if_data *sdata);
772int ieee80211_if_remove(struct net_device *dev, const char *name, int id);
773void ieee80211_if_free(struct net_device *dev);
774void ieee80211_if_sdata_init(struct ieee80211_sub_if_data *sdata);
f0706e82 775
fd8bacc9
DD
776/* regdomain.c */
777void ieee80211_regdomain_init(void);
778void ieee80211_set_default_regdomain(struct ieee80211_hw_mode *mode);
779
571ecf67
JB
780/* rx handling */
781extern ieee80211_rx_handler ieee80211_rx_pre_handlers[];
782extern ieee80211_rx_handler ieee80211_rx_handlers[];
783
e2ebc74d
JB
784/* tx handling */
785extern ieee80211_tx_handler ieee80211_tx_handlers[];
786void ieee80211_clear_tx_pending(struct ieee80211_local *local);
787void ieee80211_tx_pending(unsigned long data);
788int ieee80211_master_start_xmit(struct sk_buff *skb, struct net_device *dev);
789int ieee80211_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
790int ieee80211_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
e2ebc74d 791
c2d1560a
JB
792/* utility functions/constants */
793extern void *mac80211_wiphy_privid; /* for wiphy privid */
794extern const unsigned char rfc1042_header[6];
795extern const unsigned char bridge_tunnel_header[6];
796u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len);
797int ieee80211_is_eapol(const struct sk_buff *skb);
798int ieee80211_frame_duration(struct ieee80211_local *local, size_t len,
799 int rate, int erp, int short_preamble);
eb063c17
JB
800void mac80211_ev_michael_mic_failure(struct net_device *dev, int keyidx,
801 struct ieee80211_hdr *hdr);
f0706e82
JB
802
803#endif /* IEEE80211_I_H */
This page took 0.130515 seconds and 5 git commands to generate.