| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Merged with mainline ieee80211.h in Aug 2004.  Original ieee802_11 | 
					
						
							|  |  |  |  * remains copyright by the original authors | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Portions of the merged code are based on Host AP (software wireless | 
					
						
							|  |  |  |  * LAN access point) driver for Intersil Prism2/2.5/3. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen | 
					
						
							| 
									
										
										
										
											2007-03-24 17:15:30 -07:00
										 |  |  |  * <j@w1.fi> | 
					
						
							|  |  |  |  * Copyright (c) 2002-2003, Jouni Malinen <j@w1.fi> | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Adaption to a generic IEEE 802.11 stack by James Ketrenos | 
					
						
							|  |  |  |  * <jketreno@linux.intel.com> | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:43 -05:00
										 |  |  |  * Copyright (c) 2004-2005, Intel Corporation | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. See README and COPYING for | 
					
						
							|  |  |  |  * more details. | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:46 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * API Version History | 
					
						
							|  |  |  |  * 1.0.x -- Initial version | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  |  * 1.1.x -- Added radiotap, QoS, TIM, libipw_geo APIs, | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:46 -05:00
										 |  |  |  *          various structure changes, and crypto API init method | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #ifndef LIBIPW_H
 | 
					
						
							|  |  |  | #define LIBIPW_H
 | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | #include <linux/if_ether.h>	/* ETH_ALEN */
 | 
					
						
							|  |  |  | #include <linux/kernel.h>	/* ARRAY_SIZE */
 | 
					
						
							| 
									
										
										
										
											2005-07-22 23:39:12 +02:00
										 |  |  | #include <linux/wireless.h>
 | 
					
						
							| 
									
										
										
										
											2008-09-30 21:43:03 -04:00
										 |  |  | #include <linux/ieee80211.h>
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-29 11:35:05 -04:00
										 |  |  | #include <net/lib80211.h>
 | 
					
						
							| 
									
										
										
										
											2009-08-25 14:12:25 -04:00
										 |  |  | #include <net/cfg80211.h>
 | 
					
						
							| 
									
										
										
										
											2008-10-29 11:35:05 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_VERSION "git-1.1.13"
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:46 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_DATA_LEN		2304
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | /* Maximum size for the MA-UNITDATA primitive, 802.11 standard section
 | 
					
						
							|  |  |  |    6.2.1.1.2. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The figure in section 7.1.2 suggests a body size of up to 2312 | 
					
						
							|  |  |  |    bytes is allowed, which is a bit confusing, I suspect this | 
					
						
							|  |  |  |    represents the 2304 bytes of real data, plus a possible 8 bytes of | 
					
						
							|  |  |  |    WEP IV and ICV. (this interpretation suggested by Ramiro Barreiro) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_1ADDR_LEN 10
 | 
					
						
							|  |  |  | #define LIBIPW_2ADDR_LEN 16
 | 
					
						
							|  |  |  | #define LIBIPW_3ADDR_LEN 24
 | 
					
						
							|  |  |  | #define LIBIPW_4ADDR_LEN 30
 | 
					
						
							|  |  |  | #define LIBIPW_FCS_LEN    4
 | 
					
						
							|  |  |  | #define LIBIPW_HLEN			(LIBIPW_4ADDR_LEN)
 | 
					
						
							|  |  |  | #define LIBIPW_FRAME_LEN		(LIBIPW_DATA_LEN + LIBIPW_HLEN)
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MIN_FRAG_THRESHOLD     256U
 | 
					
						
							|  |  |  | #define	MAX_FRAG_THRESHOLD     2346U
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-13 17:17:06 +08:00
										 |  |  | /* QOS control */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_QCTL_TID		0x000F
 | 
					
						
							| 
									
										
										
										
											2006-04-13 17:17:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | /* debug macros */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-06 12:02:25 +01:00
										 |  |  | #ifdef CONFIG_LIBIPW_DEBUG
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | extern u32 libipw_debug_level; | 
					
						
							|  |  |  | #define LIBIPW_DEBUG(level, fmt, args...) \
 | 
					
						
							|  |  |  | do { if (libipw_debug_level & (level)) \ | 
					
						
							| 
									
										
										
										
											2010-03-12 00:01:22 -05:00
										 |  |  |   printk(KERN_DEBUG "libipw: %c %s " fmt, \ | 
					
						
							| 
									
										
										
										
											2008-10-15 22:01:24 -07:00
										 |  |  |          in_interrupt() ? 'I' : 'U', __func__ , ## args); } while (0) | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_DEBUG(level, fmt, args...) do {} while (0)
 | 
					
						
							| 
									
										
										
										
											2009-03-06 12:02:25 +01:00
										 |  |  | #endif				/* CONFIG_LIBIPW_DEBUG */
 | 
					
						
							| 
									
										
										
										
											2005-08-25 20:00:53 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-08-25 20:00:53 -04:00
										 |  |  |  * To use the debug system: | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * If you are defining a new debug classification, simply add it to the #define | 
					
						
							|  |  |  |  * list here in the form of: | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  |  * #define LIBIPW_DL_xxxx VALUE | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * shifting value to the left one bit from the previous entry.  xxxx should be | 
					
						
							|  |  |  |  * the name of the classification (for example, WEP) | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  |  * You then need to either add a LIBIPW_xxxx_DEBUG() macro definition for your | 
					
						
							|  |  |  |  * classification, or use LIBIPW_DEBUG(LIBIPW_DL_xxxx, ...) whenever you want | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  |  * to send output to that classification. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * To add your debug level to the list of levels seen when you perform | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-08-28 10:51:34 -07:00
										 |  |  |  * % cat /proc/net/ieee80211/debug_level | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  |  * you simply need to add your entry to the libipw_debug_level array. | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-08-28 10:51:34 -07:00
										 |  |  |  * If you do not see debug_level in /proc/net/ieee80211 then you do not have | 
					
						
							| 
									
										
										
										
											2009-03-06 12:02:25 +01:00
										 |  |  |  * CONFIG_LIBIPW_DEBUG defined in your kernel configuration | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_DL_INFO          (1<<0)
 | 
					
						
							|  |  |  | #define LIBIPW_DL_WX            (1<<1)
 | 
					
						
							|  |  |  | #define LIBIPW_DL_SCAN          (1<<2)
 | 
					
						
							|  |  |  | #define LIBIPW_DL_STATE         (1<<3)
 | 
					
						
							|  |  |  | #define LIBIPW_DL_MGMT          (1<<4)
 | 
					
						
							|  |  |  | #define LIBIPW_DL_FRAG          (1<<5)
 | 
					
						
							|  |  |  | #define LIBIPW_DL_DROP          (1<<7)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LIBIPW_DL_TX            (1<<8)
 | 
					
						
							|  |  |  | #define LIBIPW_DL_RX            (1<<9)
 | 
					
						
							|  |  |  | #define LIBIPW_DL_QOS           (1<<31)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-12 00:01:22 -05:00
										 |  |  | #define LIBIPW_ERROR(f, a...) printk(KERN_ERR "libipw: " f, ## a)
 | 
					
						
							|  |  |  | #define LIBIPW_WARNING(f, a...) printk(KERN_WARNING "libipw: " f, ## a)
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_DEBUG_INFO(f, a...)   LIBIPW_DEBUG(LIBIPW_DL_INFO, f, ## a)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LIBIPW_DEBUG_WX(f, a...)     LIBIPW_DEBUG(LIBIPW_DL_WX, f, ## a)
 | 
					
						
							|  |  |  | #define LIBIPW_DEBUG_SCAN(f, a...)   LIBIPW_DEBUG(LIBIPW_DL_SCAN, f, ## a)
 | 
					
						
							|  |  |  | #define LIBIPW_DEBUG_STATE(f, a...)  LIBIPW_DEBUG(LIBIPW_DL_STATE, f, ## a)
 | 
					
						
							|  |  |  | #define LIBIPW_DEBUG_MGMT(f, a...)  LIBIPW_DEBUG(LIBIPW_DL_MGMT, f, ## a)
 | 
					
						
							|  |  |  | #define LIBIPW_DEBUG_FRAG(f, a...)  LIBIPW_DEBUG(LIBIPW_DL_FRAG, f, ## a)
 | 
					
						
							|  |  |  | #define LIBIPW_DEBUG_DROP(f, a...)  LIBIPW_DEBUG(LIBIPW_DL_DROP, f, ## a)
 | 
					
						
							|  |  |  | #define LIBIPW_DEBUG_TX(f, a...)  LIBIPW_DEBUG(LIBIPW_DL_TX, f, ## a)
 | 
					
						
							|  |  |  | #define LIBIPW_DEBUG_RX(f, a...)  LIBIPW_DEBUG(LIBIPW_DL_RX, f, ## a)
 | 
					
						
							|  |  |  | #define LIBIPW_DEBUG_QOS(f, a...)  LIBIPW_DEBUG(LIBIPW_DL_QOS, f, ## a)
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | #include <linux/netdevice.h>
 | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | #include <linux/if_arp.h>	/* ARPHRD_ETHER */
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef WIRELESS_SPY
 | 
					
						
							| 
									
										
										
										
											2005-08-25 20:15:10 -04:00
										 |  |  | #define WIRELESS_SPY		/* enable iwspy support */
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-08-25 20:15:10 -04:00
										 |  |  | #include <net/iw_handler.h>	/* new driver API */
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | #define ETH_P_PREAUTH 0x88C7	/* IEEE 802.11i pre-authentication */
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef ETH_P_80211_RAW
 | 
					
						
							|  |  |  | #define ETH_P_80211_RAW (ETH_P_ECONET + 1)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* IEEE 802.11 defines */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define P80211_OUI_LEN 3
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_snap_hdr { | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	u8 dsap;		/* always 0xAA */ | 
					
						
							|  |  |  | 	u8 ssap;		/* always 0xAA */ | 
					
						
							|  |  |  | 	u8 ctrl;		/* always 0x03 */ | 
					
						
							|  |  |  | 	u8 oui[P80211_OUI_LEN];	/* organizational universal id */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define SNAP_SIZE sizeof(struct libipw_snap_hdr)
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-25 20:11:46 -04:00
										 |  |  | #define WLAN_FC_GET_VERS(fc) ((fc) & IEEE80211_FCTL_VERS)
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | #define WLAN_FC_GET_TYPE(fc) ((fc) & IEEE80211_FCTL_FTYPE)
 | 
					
						
							|  |  |  | #define WLAN_FC_GET_STYPE(fc) ((fc) & IEEE80211_FCTL_STYPE)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define WLAN_GET_SEQ_FRAG(seq) ((seq) & IEEE80211_SCTL_FRAG)
 | 
					
						
							| 
									
										
										
										
											2006-12-18 17:26:13 +08:00
										 |  |  | #define WLAN_GET_SEQ_SEQ(seq)  (((seq) & IEEE80211_SCTL_SEQ) >> 4)
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_STATMASK_SIGNAL (1<<0)
 | 
					
						
							|  |  |  | #define LIBIPW_STATMASK_RSSI (1<<1)
 | 
					
						
							|  |  |  | #define LIBIPW_STATMASK_NOISE (1<<2)
 | 
					
						
							|  |  |  | #define LIBIPW_STATMASK_RATE (1<<3)
 | 
					
						
							|  |  |  | #define LIBIPW_STATMASK_WEMASK 0x7
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_MODULATION    (1<<0)
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_MODULATION   (1<<1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LIBIPW_24GHZ_BAND     (1<<0)
 | 
					
						
							|  |  |  | #define LIBIPW_52GHZ_BAND     (1<<1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_RATE_1MB		        0x02
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_RATE_2MB		        0x04
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_RATE_5MB		        0x0B
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_RATE_11MB		        0x16
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_6MB		        0x0C
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_9MB		        0x12
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_12MB		0x18
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_18MB		0x24
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_24MB		0x30
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_36MB		0x48
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_48MB		0x60
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_54MB		0x6C
 | 
					
						
							|  |  |  | #define LIBIPW_BASIC_RATE_MASK		0x80
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_RATE_1MB_MASK		(1<<0)
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_RATE_2MB_MASK		(1<<1)
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_RATE_5MB_MASK		(1<<2)
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_RATE_11MB_MASK		(1<<3)
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_6MB_MASK		(1<<4)
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_9MB_MASK		(1<<5)
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_12MB_MASK		(1<<6)
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_18MB_MASK		(1<<7)
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_24MB_MASK		(1<<8)
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_36MB_MASK		(1<<9)
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_48MB_MASK		(1<<10)
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATE_54MB_MASK		(1<<11)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_RATES_MASK	        0x0000000F
 | 
					
						
							|  |  |  | #define LIBIPW_CCK_BASIC_RATES_MASK	(LIBIPW_CCK_RATE_1MB_MASK | \
 | 
					
						
							|  |  |  | 	LIBIPW_CCK_RATE_2MB_MASK) | 
					
						
							|  |  |  | #define LIBIPW_CCK_DEFAULT_RATES_MASK	(LIBIPW_CCK_BASIC_RATES_MASK | \
 | 
					
						
							|  |  |  |         LIBIPW_CCK_RATE_5MB_MASK | \ | 
					
						
							|  |  |  |         LIBIPW_CCK_RATE_11MB_MASK) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_RATES_MASK		0x00000FF0
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_BASIC_RATES_MASK	(LIBIPW_OFDM_RATE_6MB_MASK | \
 | 
					
						
							|  |  |  | 	LIBIPW_OFDM_RATE_12MB_MASK | \ | 
					
						
							|  |  |  | 	LIBIPW_OFDM_RATE_24MB_MASK) | 
					
						
							|  |  |  | #define LIBIPW_OFDM_DEFAULT_RATES_MASK	(LIBIPW_OFDM_BASIC_RATES_MASK | \
 | 
					
						
							|  |  |  | 	LIBIPW_OFDM_RATE_9MB_MASK  | \ | 
					
						
							|  |  |  | 	LIBIPW_OFDM_RATE_18MB_MASK | \ | 
					
						
							|  |  |  | 	LIBIPW_OFDM_RATE_36MB_MASK | \ | 
					
						
							|  |  |  | 	LIBIPW_OFDM_RATE_48MB_MASK | \ | 
					
						
							|  |  |  | 	LIBIPW_OFDM_RATE_54MB_MASK) | 
					
						
							|  |  |  | #define LIBIPW_DEFAULT_RATES_MASK (LIBIPW_OFDM_DEFAULT_RATES_MASK | \
 | 
					
						
							|  |  |  |                                 LIBIPW_CCK_DEFAULT_RATES_MASK) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LIBIPW_NUM_OFDM_RATES	    8
 | 
					
						
							|  |  |  | #define LIBIPW_NUM_CCK_RATES	            4
 | 
					
						
							|  |  |  | #define LIBIPW_OFDM_SHIFT_MASK_A         4
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* NOTE: This data is for statistical purposes; not all hardware provides this
 | 
					
						
							| 
									
										
										
										
											2005-12-27 02:14:13 +01:00
										 |  |  |  *       information for frames received. | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  |  *       For libipw_rx_mgt, you need to set at least the 'len' parameter. | 
					
						
							| 
									
										
										
										
											2005-12-27 02:14:13 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_rx_stats { | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u32 mac_time; | 
					
						
							|  |  |  | 	s8 rssi; | 
					
						
							|  |  |  | 	u8 signal; | 
					
						
							|  |  |  | 	u8 noise; | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	u16 rate;		/* in 100 kbps */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u8 received_channel; | 
					
						
							|  |  |  | 	u8 control; | 
					
						
							|  |  |  | 	u8 mask; | 
					
						
							|  |  |  | 	u8 freq; | 
					
						
							|  |  |  | 	u16 len; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	u64 tsf; | 
					
						
							|  |  |  | 	u32 beacon_time; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* IEEE 802.11 requires that STA supports concurrent reception of at least
 | 
					
						
							|  |  |  |  * three fragmented frames. This define can be increased to support more | 
					
						
							|  |  |  |  * concurrent frames, but it should be noted that each entry can consume about | 
					
						
							|  |  |  |  * 2 kB of RAM and increasing cache size will slow down frame reassembly. */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_FRAG_CACHE_LEN 4
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_frag_entry { | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	unsigned long first_frag_time; | 
					
						
							|  |  |  | 	unsigned int seq; | 
					
						
							|  |  |  | 	unsigned int last_frag; | 
					
						
							|  |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 	u8 src_addr[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 dst_addr[ETH_ALEN]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_stats { | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	unsigned int tx_unicast_frames; | 
					
						
							|  |  |  | 	unsigned int tx_multicast_frames; | 
					
						
							|  |  |  | 	unsigned int tx_fragments; | 
					
						
							|  |  |  | 	unsigned int tx_unicast_octets; | 
					
						
							|  |  |  | 	unsigned int tx_multicast_octets; | 
					
						
							|  |  |  | 	unsigned int tx_deferred_transmissions; | 
					
						
							|  |  |  | 	unsigned int tx_single_retry_frames; | 
					
						
							|  |  |  | 	unsigned int tx_multiple_retry_frames; | 
					
						
							|  |  |  | 	unsigned int tx_retry_limit_exceeded; | 
					
						
							|  |  |  | 	unsigned int tx_discards; | 
					
						
							|  |  |  | 	unsigned int rx_unicast_frames; | 
					
						
							|  |  |  | 	unsigned int rx_multicast_frames; | 
					
						
							|  |  |  | 	unsigned int rx_fragments; | 
					
						
							|  |  |  | 	unsigned int rx_unicast_octets; | 
					
						
							|  |  |  | 	unsigned int rx_multicast_octets; | 
					
						
							|  |  |  | 	unsigned int rx_fcs_errors; | 
					
						
							|  |  |  | 	unsigned int rx_discards_no_buffer; | 
					
						
							|  |  |  | 	unsigned int tx_discards_wrong_sa; | 
					
						
							|  |  |  | 	unsigned int rx_discards_undecryptable; | 
					
						
							|  |  |  | 	unsigned int rx_message_in_msg_fragments; | 
					
						
							|  |  |  | 	unsigned int rx_message_in_bad_msg_fragments; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_device; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:53:54 -05:00
										 |  |  | #define SEC_KEY_1		(1<<0)
 | 
					
						
							|  |  |  | #define SEC_KEY_2		(1<<1)
 | 
					
						
							|  |  |  | #define SEC_KEY_3		(1<<2)
 | 
					
						
							|  |  |  | #define SEC_KEY_4		(1<<3)
 | 
					
						
							|  |  |  | #define SEC_ACTIVE_KEY		(1<<4)
 | 
					
						
							|  |  |  | #define SEC_AUTH_MODE		(1<<5)
 | 
					
						
							|  |  |  | #define SEC_UNICAST_GROUP	(1<<6)
 | 
					
						
							|  |  |  | #define SEC_LEVEL		(1<<7)
 | 
					
						
							|  |  |  | #define SEC_ENABLED		(1<<8)
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:22 -05:00
										 |  |  | #define SEC_ENCRYPT		(1<<9)
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:53:54 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define SEC_LEVEL_0		0	/* None */
 | 
					
						
							|  |  |  | #define SEC_LEVEL_1		1	/* WEP 40 and 104 bit */
 | 
					
						
							|  |  |  | #define SEC_LEVEL_2		2	/* Level 1 + TKIP */
 | 
					
						
							|  |  |  | #define SEC_LEVEL_2_CKIP	3	/* Level 1 + CKIP */
 | 
					
						
							|  |  |  | #define SEC_LEVEL_3		4	/* Level 2 + CCMP */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:30 -05:00
										 |  |  | #define SEC_ALG_NONE		0
 | 
					
						
							|  |  |  | #define SEC_ALG_WEP		1
 | 
					
						
							|  |  |  | #define SEC_ALG_TKIP		2
 | 
					
						
							|  |  |  | #define SEC_ALG_CCMP		3
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:53:54 -05:00
										 |  |  | #define WEP_KEYS		4
 | 
					
						
							|  |  |  | #define WEP_KEY_LEN		13
 | 
					
						
							|  |  |  | #define SCM_KEY_LEN		32
 | 
					
						
							|  |  |  | #define SCM_TEMPORAL_KEY_LENGTH	16
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_security { | 
					
						
							| 
									
										
										
										
											2008-12-08 14:51:41 -05:00
										 |  |  | 	u16 active_key:2, enabled:1, unicast_uses_group:1, encrypt:1; | 
					
						
							|  |  |  | 	u8 auth_mode; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:30 -05:00
										 |  |  | 	u8 encode_alg[WEP_KEYS]; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u8 key_sizes[WEP_KEYS]; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:53:54 -05:00
										 |  |  | 	u8 keys[WEP_KEYS][SCM_KEY_LEN]; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u8 level; | 
					
						
							|  |  |  | 	u16 flags; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  802.11 data frame from AP | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       ,-------------------------------------------------------------------. | 
					
						
							|  |  |  | Bytes |  2   |  2   |    6    |    6    |    6    |  2   | 0..2312 |   4  | | 
					
						
							|  |  |  |       |------|------|---------|---------|---------|------|---------|------| | 
					
						
							|  |  |  | Desc. | ctrl | dura |  DA/RA  |   TA    |    SA   | Sequ |  frame  |  fcs | | 
					
						
							|  |  |  |       |      | tion | (BSSID) |         |         | ence |  data   |      | | 
					
						
							|  |  |  |       `-------------------------------------------------------------------' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Total: 28-2340 bytes | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define BEACON_PROBE_SSID_ID_POSITION 12
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_hdr_1addr { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 frame_ctl; | 
					
						
							|  |  |  | 	__le16 duration_id; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 	u8 addr1[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 payload[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_hdr_2addr { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 frame_ctl; | 
					
						
							|  |  |  | 	__le16 duration_id; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 	u8 addr1[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 addr2[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 payload[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_hdr_3addr { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 frame_ctl; | 
					
						
							|  |  |  | 	__le16 duration_id; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 	u8 addr1[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 addr2[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 addr3[ETH_ALEN]; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 seq_ctl; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 	u8 payload[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_hdr_4addr { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 frame_ctl; | 
					
						
							|  |  |  | 	__le16 duration_id; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 	u8 addr1[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 addr2[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 addr3[ETH_ALEN]; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 seq_ctl; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 	u8 addr4[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 payload[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_hdr_3addrqos { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 frame_ctl; | 
					
						
							|  |  |  | 	__le16 duration_id; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	u8 addr1[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 addr2[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 addr3[ETH_ALEN]; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 seq_ctl; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	u8 payload[0]; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 qos_ctl; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_info_element { | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u8 id; | 
					
						
							|  |  |  | 	u8 len; | 
					
						
							|  |  |  | 	u8 data[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * These are the data types that can make up management packets | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  | 	u16 auth_algorithm; | 
					
						
							|  |  |  | 	u16 auth_sequence; | 
					
						
							|  |  |  | 	u16 beacon_interval; | 
					
						
							|  |  |  | 	u16 capability; | 
					
						
							|  |  |  | 	u8 current_ap[ETH_ALEN]; | 
					
						
							|  |  |  | 	u16 listen_interval; | 
					
						
							|  |  |  | 	struct { | 
					
						
							|  |  |  | 		u16 association_id:14, reserved:2; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | 	} __packed; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u32 time_stamp[2]; | 
					
						
							|  |  |  | 	u16 reason; | 
					
						
							|  |  |  | 	u16 status; | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_auth { | 
					
						
							|  |  |  | 	struct libipw_hdr_3addr header; | 
					
						
							| 
									
										
										
										
											2005-08-25 20:15:10 -04:00
										 |  |  | 	__le16 algorithm; | 
					
						
							|  |  |  | 	__le16 transaction; | 
					
						
							|  |  |  | 	__le16 status; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:56 -05:00
										 |  |  | 	/* challenge */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_info_element info_element[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_channel_switch { | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	u8 id; | 
					
						
							|  |  |  | 	u8 len; | 
					
						
							|  |  |  | 	u8 mode; | 
					
						
							|  |  |  | 	u8 channel; | 
					
						
							|  |  |  | 	u8 count; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_action { | 
					
						
							|  |  |  | 	struct libipw_hdr_3addr header; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	u8 category; | 
					
						
							|  |  |  | 	u8 action; | 
					
						
							|  |  |  | 	union { | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 		struct libipw_action_exchange { | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 			u8 token; | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 			struct libipw_info_element info_element[0]; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 		} exchange; | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 		struct libipw_channel_switch channel_switch; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} format; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_disassoc { | 
					
						
							|  |  |  | 	struct libipw_hdr_3addr header; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:56 -05:00
										 |  |  | 	__le16 reason; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:56 -05:00
										 |  |  | /* Alias deauth for disassoc */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define libipw_deauth libipw_disassoc
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:56 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_probe_request { | 
					
						
							|  |  |  | 	struct libipw_hdr_3addr header; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:56 -05:00
										 |  |  | 	/* SSID, supported rates */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_info_element info_element[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_probe_response { | 
					
						
							|  |  |  | 	struct libipw_hdr_3addr header; | 
					
						
							| 
									
										
										
										
											2007-12-29 05:01:07 -05:00
										 |  |  | 	__le32 time_stamp[2]; | 
					
						
							| 
									
										
										
										
											2005-08-25 20:15:10 -04:00
										 |  |  | 	__le16 beacon_interval; | 
					
						
							|  |  |  | 	__le16 capability; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:56 -05:00
										 |  |  | 	/* SSID, supported rates, FH params, DS params,
 | 
					
						
							|  |  |  | 	 * CF params, IBSS params, TIM (if beacon), RSN */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_info_element info_element[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | /* Alias beacon for probe_response */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define libipw_beacon libipw_probe_response
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_assoc_request { | 
					
						
							|  |  |  | 	struct libipw_hdr_3addr header; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 capability; | 
					
						
							|  |  |  | 	__le16 listen_interval; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:56 -05:00
										 |  |  | 	/* SSID, supported rates, RSN */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_info_element info_element[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_reassoc_request { | 
					
						
							|  |  |  | 	struct libipw_hdr_3addr header; | 
					
						
							| 
									
										
										
										
											2005-08-25 20:15:10 -04:00
										 |  |  | 	__le16 capability; | 
					
						
							|  |  |  | 	__le16 listen_interval; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u8 current_ap[ETH_ALEN]; | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_info_element info_element[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_assoc_response { | 
					
						
							|  |  |  | 	struct libipw_hdr_3addr header; | 
					
						
							| 
									
										
										
										
											2005-08-25 20:15:10 -04:00
										 |  |  | 	__le16 capability; | 
					
						
							|  |  |  | 	__le16 status; | 
					
						
							|  |  |  | 	__le16 aid; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:56 -05:00
										 |  |  | 	/* supported rates */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_info_element info_element[0]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_txb { | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u8 nr_frags; | 
					
						
							|  |  |  | 	u8 encrypted; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 	u8 rts_included; | 
					
						
							|  |  |  | 	u8 reserved; | 
					
						
							| 
									
										
										
										
											2007-12-29 05:01:07 -05:00
										 |  |  | 	u16 frag_size; | 
					
						
							|  |  |  | 	u16 payload_size; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	struct sk_buff *fragments[0]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-25 20:15:10 -04:00
										 |  |  | /* SWEEP TABLE ENTRIES NUMBER */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | #define MAX_SWEEP_TAB_ENTRIES		  42
 | 
					
						
							|  |  |  | #define MAX_SWEEP_TAB_ENTRIES_PER_PACKET  7
 | 
					
						
							|  |  |  | /* MAX_RATES_LENGTH needs to be 12.  The spec says 8, and many APs
 | 
					
						
							|  |  |  |  * only use 8, and then use extended rates for the remaining supported | 
					
						
							|  |  |  |  * rates.  Other APs, however, stick all of their supported rates on the | 
					
						
							|  |  |  |  * main rates information element... */ | 
					
						
							|  |  |  | #define MAX_RATES_LENGTH                  ((u8)12)
 | 
					
						
							|  |  |  | #define MAX_RATES_EX_LENGTH               ((u8)16)
 | 
					
						
							|  |  |  | #define MAX_NETWORK_COUNT                  128
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CRC_LENGTH                 4U
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MAX_WPA_IE_LEN 64
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | #define NETWORK_HAS_OFDM       (1<<1)
 | 
					
						
							|  |  |  | #define NETWORK_HAS_CCK        (1<<2)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* QoS structure */ | 
					
						
							|  |  |  | #define NETWORK_HAS_QOS_PARAMETERS      (1<<3)
 | 
					
						
							|  |  |  | #define NETWORK_HAS_QOS_INFORMATION     (1<<4)
 | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | #define NETWORK_HAS_QOS_MASK            (NETWORK_HAS_QOS_PARAMETERS | \
 | 
					
						
							|  |  |  | 					 NETWORK_HAS_QOS_INFORMATION) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* 802.11h */ | 
					
						
							|  |  |  | #define NETWORK_HAS_POWER_CONSTRAINT    (1<<5)
 | 
					
						
							|  |  |  | #define NETWORK_HAS_CSA                 (1<<6)
 | 
					
						
							|  |  |  | #define NETWORK_HAS_QUIET               (1<<7)
 | 
					
						
							|  |  |  | #define NETWORK_HAS_IBSS_DFS            (1<<8)
 | 
					
						
							|  |  |  | #define NETWORK_HAS_TPC_REPORT          (1<<9)
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-18 21:30:34 +01:00
										 |  |  | #define NETWORK_HAS_ERP_VALUE           (1<<10)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | #define QOS_QUEUE_NUM                   4
 | 
					
						
							|  |  |  | #define QOS_OUI_LEN                     3
 | 
					
						
							|  |  |  | #define QOS_OUI_TYPE                    2
 | 
					
						
							|  |  |  | #define QOS_ELEMENT_ID                  221
 | 
					
						
							|  |  |  | #define QOS_OUI_INFO_SUB_TYPE           0
 | 
					
						
							|  |  |  | #define QOS_OUI_PARAM_SUB_TYPE          1
 | 
					
						
							|  |  |  | #define QOS_VERSION_1                   1
 | 
					
						
							|  |  |  | #define QOS_AIFSN_MIN_VALUE             2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_qos_information_element { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	u8 elementID; | 
					
						
							|  |  |  | 	u8 length; | 
					
						
							|  |  |  | 	u8 qui[QOS_OUI_LEN]; | 
					
						
							|  |  |  | 	u8 qui_type; | 
					
						
							|  |  |  | 	u8 qui_subtype; | 
					
						
							|  |  |  | 	u8 version; | 
					
						
							|  |  |  | 	u8 ac_info; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_qos_ac_parameter { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	u8 aci_aifsn; | 
					
						
							|  |  |  | 	u8 ecw_min_max; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 tx_op_limit; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_qos_parameter_info { | 
					
						
							|  |  |  | 	struct libipw_qos_information_element info_element; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	u8 reserved; | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_qos_ac_parameter ac_params_record[QOS_QUEUE_NUM]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_qos_parameters { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 cw_min[QOS_QUEUE_NUM]; | 
					
						
							|  |  |  | 	__le16 cw_max[QOS_QUEUE_NUM]; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	u8 aifs[QOS_QUEUE_NUM]; | 
					
						
							|  |  |  | 	u8 flag[QOS_QUEUE_NUM]; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:49 -05:00
										 |  |  | 	__le16 tx_op_limit[QOS_QUEUE_NUM]; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_qos_data { | 
					
						
							|  |  |  | 	struct libipw_qos_parameters parameters; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	int active; | 
					
						
							|  |  |  | 	int supported; | 
					
						
							|  |  |  | 	u8 param_count; | 
					
						
							|  |  |  | 	u8 old_param_count; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_tim_parameters { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	u8 tim_count; | 
					
						
							|  |  |  | 	u8 tim_period; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*******************************************************/ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_tpc_report { | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	u8 transmit_power; | 
					
						
							|  |  |  | 	u8 link_margin; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_channel_map { | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	u8 channel; | 
					
						
							|  |  |  | 	u8 map; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_ibss_dfs { | 
					
						
							|  |  |  | 	struct libipw_info_element ie; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	u8 owner[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 recovery_interval; | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_channel_map channel_map[0]; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_csa { | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	u8 mode; | 
					
						
							|  |  |  | 	u8 channel; | 
					
						
							|  |  |  | 	u8 count; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_quiet { | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	u8 count; | 
					
						
							|  |  |  | 	u8 period; | 
					
						
							|  |  |  | 	u8 duration; | 
					
						
							|  |  |  | 	u8 offset; | 
					
						
							| 
									
										
										
										
											2010-06-02 18:10:09 +00:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_network { | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	/* These entries are used to identify a unique network */ | 
					
						
							|  |  |  | 	u8 bssid[ETH_ALEN]; | 
					
						
							|  |  |  | 	u8 channel; | 
					
						
							|  |  |  | 	/* Ensure null-terminated for any debug msgs */ | 
					
						
							|  |  |  | 	u8 ssid[IW_ESSID_MAX_SIZE + 1]; | 
					
						
							|  |  |  | 	u8 ssid_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_qos_data qos_data; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	/* These are network statistics */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_rx_stats stats; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u16 capability; | 
					
						
							|  |  |  | 	u8 rates[MAX_RATES_LENGTH]; | 
					
						
							|  |  |  | 	u8 rates_len; | 
					
						
							|  |  |  | 	u8 rates_ex[MAX_RATES_EX_LENGTH]; | 
					
						
							|  |  |  | 	u8 rates_ex_len; | 
					
						
							|  |  |  | 	unsigned long last_scanned; | 
					
						
							|  |  |  | 	u8 mode; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	u32 flags; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u32 last_associate; | 
					
						
							|  |  |  | 	u32 time_stamp[2]; | 
					
						
							|  |  |  | 	u16 beacon_interval; | 
					
						
							|  |  |  | 	u16 listen_interval; | 
					
						
							|  |  |  | 	u16 atim_window; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:29 -05:00
										 |  |  | 	u8 erp_value; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u8 wpa_ie[MAX_WPA_IE_LEN]; | 
					
						
							|  |  |  | 	size_t wpa_ie_len; | 
					
						
							|  |  |  | 	u8 rsn_ie[MAX_WPA_IE_LEN]; | 
					
						
							|  |  |  | 	size_t rsn_ie_len; | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_tim_parameters tim; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* 802.11h info */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Power Constraint - mandatory if spctrm mgmt required */ | 
					
						
							|  |  |  | 	u8 power_constraint; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* TPC Report - mandatory if spctrm mgmt required */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_tpc_report tpc_report; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* IBSS DFS - mandatory if spctrm mgmt required and IBSS
 | 
					
						
							|  |  |  | 	 * NOTE: This is variable length and so must be allocated dynamically */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_ibss_dfs *ibss_dfs; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Channel Switch Announcement - optional if spctrm mgmt required */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_csa csa; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Quiet - optional if spctrm mgmt required */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_quiet quiet; | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	struct list_head list; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | enum libipw_state { | 
					
						
							|  |  |  | 	LIBIPW_UNINITIALIZED = 0, | 
					
						
							|  |  |  | 	LIBIPW_INITIALIZED, | 
					
						
							|  |  |  | 	LIBIPW_ASSOCIATING, | 
					
						
							|  |  |  | 	LIBIPW_ASSOCIATED, | 
					
						
							|  |  |  | 	LIBIPW_AUTHENTICATING, | 
					
						
							|  |  |  | 	LIBIPW_AUTHENTICATED, | 
					
						
							|  |  |  | 	LIBIPW_SHUTDOWN | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DEFAULT_MAX_SCAN_AGE (15 * HZ)
 | 
					
						
							|  |  |  | #define DEFAULT_FTS 2346
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define CFG_LIBIPW_RESERVE_FCS (1<<0)
 | 
					
						
							|  |  |  | #define CFG_LIBIPW_COMPUTE_FCS (1<<1)
 | 
					
						
							|  |  |  | #define CFG_LIBIPW_RTS (1<<2)
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_24GHZ_MIN_CHANNEL 1
 | 
					
						
							|  |  |  | #define LIBIPW_24GHZ_MAX_CHANNEL 14
 | 
					
						
							|  |  |  | #define LIBIPW_24GHZ_CHANNELS (LIBIPW_24GHZ_MAX_CHANNEL - \
 | 
					
						
							|  |  |  | 				  LIBIPW_24GHZ_MIN_CHANNEL + 1) | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #define LIBIPW_52GHZ_MIN_CHANNEL 34
 | 
					
						
							|  |  |  | #define LIBIPW_52GHZ_MAX_CHANNEL 165
 | 
					
						
							|  |  |  | #define LIBIPW_52GHZ_CHANNELS (LIBIPW_52GHZ_MAX_CHANNEL - \
 | 
					
						
							|  |  |  | 				  LIBIPW_52GHZ_MIN_CHANNEL + 1) | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:38 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	LIBIPW_CH_PASSIVE_ONLY = (1 << 0), | 
					
						
							|  |  |  | 	LIBIPW_CH_80211H_RULES = (1 << 1), | 
					
						
							|  |  |  | 	LIBIPW_CH_B_ONLY = (1 << 2), | 
					
						
							|  |  |  | 	LIBIPW_CH_NO_IBSS = (1 << 3), | 
					
						
							|  |  |  | 	LIBIPW_CH_UNIFORM_SPREADING = (1 << 4), | 
					
						
							|  |  |  | 	LIBIPW_CH_RADAR_DETECT = (1 << 5), | 
					
						
							|  |  |  | 	LIBIPW_CH_INVALID = (1 << 6), | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:38 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_channel { | 
					
						
							| 
									
										
										
										
											2006-05-30 11:55:42 -05:00
										 |  |  | 	u32 freq;	/* in MHz */ | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:38 -05:00
										 |  |  | 	u8 channel; | 
					
						
							|  |  |  | 	u8 flags; | 
					
						
							| 
									
										
										
										
											2006-05-30 11:55:42 -05:00
										 |  |  | 	u8 max_power;	/* in dBm */ | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:38 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_geo { | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:38 -05:00
										 |  |  | 	u8 name[4]; | 
					
						
							|  |  |  | 	u8 bg_channels; | 
					
						
							|  |  |  | 	u8 a_channels; | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_channel bg[LIBIPW_24GHZ_CHANNELS]; | 
					
						
							|  |  |  | 	struct libipw_channel a[LIBIPW_52GHZ_CHANNELS]; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:38 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | struct libipw_device { | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	struct net_device *dev; | 
					
						
							| 
									
										
										
										
											2009-08-25 14:12:25 -04:00
										 |  |  | 	struct wireless_dev wdev; | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_security sec; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Bookkeeping structures */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_stats ieee_stats; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_geo geo; | 
					
						
							| 
									
										
										
										
											2009-08-25 14:12:25 -04:00
										 |  |  | 	struct ieee80211_supported_band bg_band; | 
					
						
							|  |  |  | 	struct ieee80211_supported_band a_band; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	/* Probe / Beacon management */ | 
					
						
							|  |  |  | 	struct list_head network_free_list; | 
					
						
							|  |  |  | 	struct list_head network_list; | 
					
						
							| 
									
										
										
										
											2010-03-08 13:18:03 +08:00
										 |  |  | 	struct libipw_network *networks[MAX_NETWORK_COUNT]; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	int scans; | 
					
						
							|  |  |  | 	int scan_age; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	int iw_mode;		/* operating mode (IW_MODE_*) */ | 
					
						
							|  |  |  | 	struct iw_spy_data spy_data;	/* iwspy support */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spinlock_t lock; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	int tx_headroom;	/* Set to size of any additional room needed at front
 | 
					
						
							|  |  |  | 				 * of allocated Tx SKBs */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u32 config; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* WEP and other encryption related settings at the device level */ | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	int open_wep;		/* Set to 1 to allow unencrypted frames */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* If the host performs {en,de}cryption, then set to 1 */ | 
					
						
							|  |  |  | 	int host_encrypt; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:53 -05:00
										 |  |  | 	int host_encrypt_msdu; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	int host_decrypt; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:32 -05:00
										 |  |  | 	/* host performs multicast decryption */ | 
					
						
							|  |  |  | 	int host_mc_decrypt; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-27 03:50:31 +01:00
										 |  |  | 	/* host should strip IV and ICV from protected frames */ | 
					
						
							|  |  |  | 	/* meaningful only when hardware decryption is being used */ | 
					
						
							|  |  |  | 	int host_strip_iv_icv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:53 -05:00
										 |  |  | 	int host_open_frag; | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	int ieee802_1x;		/* is IEEE 802.1X used */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* WPA data */ | 
					
						
							|  |  |  | 	int wpa_enabled; | 
					
						
							|  |  |  | 	int drop_unencrypted; | 
					
						
							|  |  |  | 	int privacy_invoked; | 
					
						
							|  |  |  | 	size_t wpa_ie_len; | 
					
						
							|  |  |  | 	u8 *wpa_ie; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-29 11:35:05 -04:00
										 |  |  | 	struct lib80211_crypt_info crypt_info; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	int bcrx_sta_key;	/* use individual keys to override default keys even
 | 
					
						
							|  |  |  | 				 * with RX of broad/multicast frames */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Fragmentation structures */ | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	struct libipw_frag_entry frag_cache[LIBIPW_FRAG_CACHE_LEN]; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	unsigned int frag_next_idx; | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	u16 fts;		/* Fragmentation Threshold */ | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:43 -05:00
										 |  |  | 	u16 rts;		/* RTS threshold */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Association info */ | 
					
						
							|  |  |  | 	u8 bssid[ETH_ALEN]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	enum libipw_state state; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	int mode;		/* A, B, G */ | 
					
						
							|  |  |  | 	int modulation;		/* CCK, OFDM */ | 
					
						
							|  |  |  | 	int freq_band;		/* 2.4Ghz, 5.2Ghz, Mixed */ | 
					
						
							| 
									
										
										
										
											2005-09-13 17:48:54 -05:00
										 |  |  | 	int abg_true;		/* ABG flag              */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-13 17:27:19 -05:00
										 |  |  | 	int perfect_rssi; | 
					
						
							|  |  |  | 	int worst_rssi; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-03 18:49:32 -05:00
										 |  |  | 	u16 prev_seq_ctl;	/* used to drop duplicate frames */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	/* Callback functions */ | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 	void (*set_security) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 			      struct libipw_security * sec); | 
					
						
							| 
									
										
										
										
											2009-08-31 19:50:57 +00:00
										 |  |  | 	netdev_tx_t (*hard_start_xmit) (struct libipw_txb * txb, | 
					
						
							|  |  |  | 					struct net_device * dev, int pri); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:47 -05:00
										 |  |  | 	int (*is_queue_full) (struct net_device * dev, int pri); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	int (*handle_management) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 				  struct libipw_network * network, u16 type); | 
					
						
							| 
									
										
										
										
											2006-04-13 17:17:17 +08:00
										 |  |  | 	int (*is_qos_active) (struct net_device *dev, struct sk_buff *skb); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:47 -05:00
										 |  |  | 	/* Typical STA methods */ | 
					
						
							|  |  |  | 	int (*handle_auth) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 			    struct libipw_auth * auth); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:49 -05:00
										 |  |  | 	int (*handle_deauth) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 			      struct libipw_deauth * auth); | 
					
						
							| 
									
										
										
										
											2006-01-19 16:21:27 +08:00
										 |  |  | 	int (*handle_action) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 			      struct libipw_action * action, | 
					
						
							|  |  |  | 			      struct libipw_rx_stats * stats); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:47 -05:00
										 |  |  | 	int (*handle_disassoc) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 				struct libipw_disassoc * assoc); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:47 -05:00
										 |  |  | 	int (*handle_beacon) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 			      struct libipw_beacon * beacon, | 
					
						
							|  |  |  | 			      struct libipw_network * network); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:47 -05:00
										 |  |  | 	int (*handle_probe_response) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 				      struct libipw_probe_response * resp, | 
					
						
							|  |  |  | 				      struct libipw_network * network); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:58:29 -05:00
										 |  |  | 	int (*handle_probe_request) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 				     struct libipw_probe_request * req, | 
					
						
							|  |  |  | 				     struct libipw_rx_stats * stats); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:47 -05:00
										 |  |  | 	int (*handle_assoc_response) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 				      struct libipw_assoc_response * resp, | 
					
						
							|  |  |  | 				      struct libipw_network * network); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:47 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Typical AP methods */ | 
					
						
							|  |  |  | 	int (*handle_assoc_request) (struct net_device * dev); | 
					
						
							|  |  |  | 	int (*handle_reassoc_request) (struct net_device * dev, | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 				       struct libipw_reassoc_request * req); | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* This must be the last item so that it points to the data
 | 
					
						
							| 
									
										
										
										
											2010-03-12 00:01:22 -05:00
										 |  |  | 	 * allocated beyond this structure by alloc_libipw */ | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 	u8 priv[0]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IEEE_A            (1<<0)
 | 
					
						
							|  |  |  | #define IEEE_B            (1<<1)
 | 
					
						
							|  |  |  | #define IEEE_G            (1<<2)
 | 
					
						
							|  |  |  | #define IEEE_MODE_MASK    (IEEE_A|IEEE_B|IEEE_G)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | static inline void *libipw_priv(struct net_device *dev) | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	return ((struct libipw_device *)netdev_priv(dev))->priv; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | static inline int libipw_is_valid_mode(struct libipw_device *ieee, | 
					
						
							| 
									
										
										
										
											2005-09-13 17:35:21 -05:00
										 |  |  | 					  int mode) | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * It is possible for both access points and our device to support | 
					
						
							|  |  |  | 	 * combinations of modes, so as long as there is one valid combination | 
					
						
							|  |  |  | 	 * of ap/device supported modes, then return success | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if ((mode & IEEE_A) && | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	    (ieee->modulation & LIBIPW_OFDM_MODULATION) && | 
					
						
							|  |  |  | 	    (ieee->freq_band & LIBIPW_52GHZ_BAND)) | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((mode & IEEE_G) && | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	    (ieee->modulation & LIBIPW_OFDM_MODULATION) && | 
					
						
							|  |  |  | 	    (ieee->freq_band & LIBIPW_24GHZ_BAND)) | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((mode & IEEE_B) && | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	    (ieee->modulation & LIBIPW_CCK_MODULATION) && | 
					
						
							|  |  |  | 	    (ieee->freq_band & LIBIPW_24GHZ_BAND)) | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | static inline int libipw_get_hdrlen(u16 fc) | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	int hdrlen = LIBIPW_3ADDR_LEN; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 	u16 stype = WLAN_FC_GET_STYPE(fc); | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (WLAN_FC_GET_TYPE(fc)) { | 
					
						
							|  |  |  | 	case IEEE80211_FTYPE_DATA: | 
					
						
							|  |  |  | 		if ((fc & IEEE80211_FCTL_FROMDS) && (fc & IEEE80211_FCTL_TODS)) | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 			hdrlen = LIBIPW_4ADDR_LEN; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:33 -05:00
										 |  |  | 		if (stype & IEEE80211_STYPE_QOS_DATA) | 
					
						
							|  |  |  | 			hdrlen += 2; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case IEEE80211_FTYPE_CTL: | 
					
						
							|  |  |  | 		switch (WLAN_FC_GET_STYPE(fc)) { | 
					
						
							|  |  |  | 		case IEEE80211_STYPE_CTS: | 
					
						
							|  |  |  | 		case IEEE80211_STYPE_ACK: | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 			hdrlen = LIBIPW_1ADDR_LEN; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 			hdrlen = LIBIPW_2ADDR_LEN; | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return hdrlen; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | static inline u8 *libipw_get_payload(struct ieee80211_hdr *hdr) | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	switch (libipw_get_hdrlen(le16_to_cpu(hdr->frame_control))) { | 
					
						
							|  |  |  | 	case LIBIPW_1ADDR_LEN: | 
					
						
							|  |  |  | 		return ((struct libipw_hdr_1addr *)hdr)->payload; | 
					
						
							|  |  |  | 	case LIBIPW_2ADDR_LEN: | 
					
						
							|  |  |  | 		return ((struct libipw_hdr_2addr *)hdr)->payload; | 
					
						
							|  |  |  | 	case LIBIPW_3ADDR_LEN: | 
					
						
							|  |  |  | 		return ((struct libipw_hdr_3addr *)hdr)->payload; | 
					
						
							|  |  |  | 	case LIBIPW_4ADDR_LEN: | 
					
						
							|  |  |  | 		return ((struct libipw_hdr_4addr *)hdr)->payload; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-11-09 11:30:51 -08:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2005-09-21 11:54:36 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | static inline int libipw_is_ofdm_rate(u8 rate) | 
					
						
							| 
									
										
										
										
											2005-10-03 09:50:40 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	switch (rate & ~LIBIPW_BASIC_RATE_MASK) { | 
					
						
							|  |  |  | 	case LIBIPW_OFDM_RATE_6MB: | 
					
						
							|  |  |  | 	case LIBIPW_OFDM_RATE_9MB: | 
					
						
							|  |  |  | 	case LIBIPW_OFDM_RATE_12MB: | 
					
						
							|  |  |  | 	case LIBIPW_OFDM_RATE_18MB: | 
					
						
							|  |  |  | 	case LIBIPW_OFDM_RATE_24MB: | 
					
						
							|  |  |  | 	case LIBIPW_OFDM_RATE_36MB: | 
					
						
							|  |  |  | 	case LIBIPW_OFDM_RATE_48MB: | 
					
						
							|  |  |  | 	case LIBIPW_OFDM_RATE_54MB: | 
					
						
							| 
									
										
										
										
											2005-10-03 09:50:40 -05:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | static inline int libipw_is_cck_rate(u8 rate) | 
					
						
							| 
									
										
										
										
											2005-10-03 09:50:40 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | 	switch (rate & ~LIBIPW_BASIC_RATE_MASK) { | 
					
						
							|  |  |  | 	case LIBIPW_CCK_RATE_1MB: | 
					
						
							|  |  |  | 	case LIBIPW_CCK_RATE_2MB: | 
					
						
							|  |  |  | 	case LIBIPW_CCK_RATE_5MB: | 
					
						
							|  |  |  | 	case LIBIPW_CCK_RATE_11MB: | 
					
						
							| 
									
										
										
										
											2005-10-03 09:50:40 -05:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-12 00:01:22 -05:00
										 |  |  | /* libipw.c */ | 
					
						
							| 
									
										
										
										
											2013-09-23 11:37:59 -07:00
										 |  |  | void free_libipw(struct net_device *dev, int monitor); | 
					
						
							|  |  |  | struct net_device *alloc_libipw(int sizeof_priv, int monitor); | 
					
						
							|  |  |  | int libipw_change_mtu(struct net_device *dev, int new_mtu); | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-23 11:37:59 -07:00
										 |  |  | void libipw_networks_age(struct libipw_device *ieee, unsigned long age_secs); | 
					
						
							| 
									
										
										
										
											2009-02-11 13:26:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-23 11:37:59 -07:00
										 |  |  | int libipw_set_encryption(struct libipw_device *ieee); | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | /* libipw_tx.c */ | 
					
						
							| 
									
										
										
										
											2013-09-23 11:37:59 -07:00
										 |  |  | netdev_tx_t libipw_xmit(struct sk_buff *skb, struct net_device *dev); | 
					
						
							|  |  |  | void libipw_txb_free(struct libipw_txb *); | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | /* libipw_rx.c */ | 
					
						
							| 
									
										
										
										
											2013-09-23 11:37:59 -07:00
										 |  |  | void libipw_rx_any(struct libipw_device *ieee, struct sk_buff *skb, | 
					
						
							|  |  |  | 		   struct libipw_rx_stats *stats); | 
					
						
							|  |  |  | int libipw_rx(struct libipw_device *ieee, struct sk_buff *skb, | 
					
						
							|  |  |  | 	      struct libipw_rx_stats *rx_stats); | 
					
						
							| 
									
										
										
										
											2005-12-27 02:14:13 +01:00
										 |  |  | /* make sure to set stats->len */ | 
					
						
							| 
									
										
										
										
											2013-09-23 11:37:59 -07:00
										 |  |  | void libipw_rx_mgt(struct libipw_device *ieee, struct libipw_hdr_4addr *header, | 
					
						
							|  |  |  | 		   struct libipw_rx_stats *stats); | 
					
						
							|  |  |  | void libipw_network_reset(struct libipw_network *network); | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | /* libipw_geo.c */ | 
					
						
							| 
									
										
										
										
											2013-09-23 11:37:59 -07:00
										 |  |  | const struct libipw_geo *libipw_get_geo(struct libipw_device *ieee); | 
					
						
							|  |  |  | void libipw_set_geo(struct libipw_device *ieee, const struct libipw_geo *geo); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int libipw_is_valid_channel(struct libipw_device *ieee, u8 channel); | 
					
						
							|  |  |  | int libipw_channel_to_index(struct libipw_device *ieee, u8 channel); | 
					
						
							|  |  |  | u8 libipw_freq_to_channel(struct libipw_device *ieee, u32 freq); | 
					
						
							|  |  |  | u8 libipw_get_channel_flags(struct libipw_device *ieee, u8 channel); | 
					
						
							|  |  |  | const struct libipw_channel *libipw_get_channel(struct libipw_device *ieee, | 
					
						
							|  |  |  | 						u8 channel); | 
					
						
							|  |  |  | u32 libipw_channel_to_freq(struct libipw_device *ieee, u8 channel); | 
					
						
							| 
									
										
										
										
											2005-09-21 11:56:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | /* libipw_wx.c */ | 
					
						
							| 
									
										
										
										
											2013-09-23 11:37:59 -07:00
										 |  |  | int libipw_wx_get_scan(struct libipw_device *ieee, struct iw_request_info *info, | 
					
						
							|  |  |  | 		       union iwreq_data *wrqu, char *key); | 
					
						
							|  |  |  | int libipw_wx_set_encode(struct libipw_device *ieee, | 
					
						
							|  |  |  | 			 struct iw_request_info *info, union iwreq_data *wrqu, | 
					
						
							|  |  |  | 			 char *key); | 
					
						
							|  |  |  | int libipw_wx_get_encode(struct libipw_device *ieee, | 
					
						
							|  |  |  | 			 struct iw_request_info *info, union iwreq_data *wrqu, | 
					
						
							|  |  |  | 			 char *key); | 
					
						
							|  |  |  | int libipw_wx_set_encodeext(struct libipw_device *ieee, | 
					
						
							|  |  |  | 			    struct iw_request_info *info, | 
					
						
							|  |  |  | 			    union iwreq_data *wrqu, char *extra); | 
					
						
							|  |  |  | int libipw_wx_get_encodeext(struct libipw_device *ieee, | 
					
						
							|  |  |  | 			    struct iw_request_info *info, | 
					
						
							|  |  |  | 			    union iwreq_data *wrqu, char *extra); | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | static inline void libipw_increment_scans(struct libipw_device *ieee) | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	ieee->scans++; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | static inline int libipw_get_scans(struct libipw_device *ieee) | 
					
						
							| 
									
										
										
										
											2005-05-12 22:48:20 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	return ieee->scans; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 14:48:03 -04:00
										 |  |  | #endif				/* LIBIPW_H */
 |