123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477 |
- #ifndef __IEEE80211_EXT_H
- #define __IEEE80211_EXT_H
- #include <drv_conf.h>
- #include <osdep_service.h>
- #include <drv_types.h>
- #define WMM_OUI_TYPE 2
- #define WMM_OUI_SUBTYPE_INFORMATION_ELEMENT 0
- #define WMM_OUI_SUBTYPE_PARAMETER_ELEMENT 1
- #define WMM_OUI_SUBTYPE_TSPEC_ELEMENT 2
- #define WMM_VERSION 1
- #define WPA_PROTO_WPA BIT(0)
- #define WPA_PROTO_RSN BIT(1)
- #define WPA_KEY_MGMT_IEEE8021X BIT(0)
- #define WPA_KEY_MGMT_PSK BIT(1)
- #define WPA_KEY_MGMT_NONE BIT(2)
- #define WPA_KEY_MGMT_IEEE8021X_NO_WPA BIT(3)
- #define WPA_KEY_MGMT_WPA_NONE BIT(4)
- #define WPA_CAPABILITY_PREAUTH BIT(0)
- #define WPA_CAPABILITY_MGMT_FRAME_PROTECTION BIT(6)
- #define WPA_CAPABILITY_PEERKEY_ENABLED BIT(9)
- #define PMKID_LEN 16
- #ifdef PLATFORM_LINUX
- struct wpa_ie_hdr {
- u8 elem_id;
- u8 len;
- u8 oui[4];
- u8 version[2];
- }__attribute__ ((packed));
- struct rsn_ie_hdr {
- u8 elem_id;
- u8 len;
- u8 version[2];
- }__attribute__ ((packed));
- struct wme_ac_parameter {
- #if defined(CONFIG_LITTLE_ENDIAN)
-
- u8 aifsn:4,
- acm:1,
- aci:2,
- reserved:1;
-
- u8 eCWmin:4,
- eCWmax:4;
- #elif defined(CONFIG_BIG_ENDIAN)
-
- u8 reserved:1,
- aci:2,
- acm:1,
- aifsn:4;
-
- u8 eCWmax:4,
- eCWmin:4;
- #else
- #error "Please fix <endian.h>"
- #endif
-
- u16 txopLimit;
- } __attribute__ ((packed));
- struct wme_parameter_element {
-
- u8 oui[3];
- u8 oui_type;
- u8 oui_subtype;
- u8 version;
- u8 acInfo;
- u8 reserved;
- struct wme_ac_parameter ac[4];
- } __attribute__ ((packed));
- #endif
- #ifdef PLATFORM_WINDOWS
- #pragma pack(1)
- struct wpa_ie_hdr {
- u8 elem_id;
- u8 len;
- u8 oui[4];
- u8 version[2];
- };
- struct rsn_ie_hdr {
- u8 elem_id;
- u8 len;
- u8 version[2];
- };
- #pragma pack()
- #endif
- #define WPA_PUT_LE16(a, val) \
- do { \
- (a)[1] = ((u16) (val)) >> 8; \
- (a)[0] = ((u16) (val)) & 0xff; \
- } while (0)
- #define WPA_PUT_BE32(a, val) \
- do { \
- (a)[0] = (u8) ((((u32) (val)) >> 24) & 0xff); \
- (a)[1] = (u8) ((((u32) (val)) >> 16) & 0xff); \
- (a)[2] = (u8) ((((u32) (val)) >> 8) & 0xff); \
- (a)[3] = (u8) (((u32) (val)) & 0xff); \
- } while (0)
- #define WPA_PUT_LE32(a, val) \
- do { \
- (a)[3] = (u8) ((((u32) (val)) >> 24) & 0xff); \
- (a)[2] = (u8) ((((u32) (val)) >> 16) & 0xff); \
- (a)[1] = (u8) ((((u32) (val)) >> 8) & 0xff); \
- (a)[0] = (u8) (((u32) (val)) & 0xff); \
- } while (0)
- #define RSN_SELECTOR_PUT(a, val) WPA_PUT_BE32((u8 *) (a), (val))
- enum ieee80211_category {
- WLAN_CATEGORY_SPECTRUM_MGMT = 0,
- WLAN_CATEGORY_QOS = 1,
- WLAN_CATEGORY_DLS = 2,
- WLAN_CATEGORY_BACK = 3,
- WLAN_CATEGORY_HT = 7,
- WLAN_CATEGORY_WMM = 17,
- };
- enum ieee80211_spectrum_mgmt_actioncode {
- WLAN_ACTION_SPCT_MSR_REQ = 0,
- WLAN_ACTION_SPCT_MSR_RPRT = 1,
- WLAN_ACTION_SPCT_TPC_REQ = 2,
- WLAN_ACTION_SPCT_TPC_RPRT = 3,
- WLAN_ACTION_SPCT_CHL_SWITCH = 4,
- WLAN_ACTION_SPCT_EXT_CHL_SWITCH = 5,
- };
- enum ieee80211_back_actioncode {
- WLAN_ACTION_ADDBA_REQ = 0,
- WLAN_ACTION_ADDBA_RESP = 1,
- WLAN_ACTION_DELBA = 2,
- };
- enum ieee80211_ht_actioncode {
- WLAN_ACTION_NOTIFY_CH_WIDTH = 0,
- WLAN_ACTION_SM_PS = 1,
- WLAN_ACTION_PSPM = 2,
- WLAN_ACTION_PCO_PHASE = 3,
- WLAN_ACTION_MIMO_CSI_MX = 4,
- WLAN_ACTION_MIMO_NONCP_BF = 5,
- WLAN_ACTION_MIMP_CP_BF = 6,
- WLAN_ACTION_ASEL_INDICATES_FB = 7,
- WLAN_ACTION_HI_INFO_EXCHG = 8,
- };
- enum ieee80211_back_parties {
- WLAN_BACK_RECIPIENT = 0,
- WLAN_BACK_INITIATOR = 1,
- WLAN_BACK_TIMER = 2,
- };
- #ifdef PLATFORM_LINUX
- struct ieee80211_mgmt {
- u16 frame_control;
- u16 duration;
- u8 da[6];
- u8 sa[6];
- u8 bssid[6];
- u16 seq_ctrl;
- union {
- struct {
- u16 auth_alg;
- u16 auth_transaction;
- u16 status_code;
-
- u8 variable[0];
- } __attribute__ ((packed)) auth;
- struct {
- u16 reason_code;
- } __attribute__ ((packed)) deauth;
- struct {
- u16 capab_info;
- u16 listen_interval;
-
- u8 variable[0];
- } __attribute__ ((packed)) assoc_req;
- struct {
- u16 capab_info;
- u16 status_code;
- u16 aid;
-
- u8 variable[0];
- } __attribute__ ((packed)) assoc_resp, reassoc_resp;
- struct {
- u16 capab_info;
- u16 listen_interval;
- u8 current_ap[6];
-
- u8 variable[0];
- } __attribute__ ((packed)) reassoc_req;
- struct {
- u16 reason_code;
- } __attribute__ ((packed)) disassoc;
- struct {
- __le64 timestamp;
- u16 beacon_int;
- u16 capab_info;
-
- u8 variable[0];
- } __attribute__ ((packed)) beacon;
- struct {
-
- u8 variable[0];
- } __attribute__ ((packed)) probe_req;
- struct {
- __le64 timestamp;
- u16 beacon_int;
- u16 capab_info;
-
- u8 variable[0];
- } __attribute__ ((packed)) probe_resp;
- struct {
- u8 category;
- union {
- struct {
- u8 action_code;
- u8 dialog_token;
- u8 status_code;
- u8 variable[0];
- } __attribute__ ((packed)) wme_action;
- #if 0
- struct{
- u8 action_code;
- u8 element_id;
- u8 length;
- struct ieee80211_channel_sw_ie sw_elem;
- } __attribute__ ((packed)) chan_switch;
- struct{
- u8 action_code;
- u8 dialog_token;
- u8 element_id;
- u8 length;
- struct ieee80211_msrment_ie msr_elem;
- } __attribute__ ((packed)) measurement;
- #endif
- struct{
- u8 action_code;
- u8 dialog_token;
- u16 capab;
- u16 timeout;
- u16 start_seq_num;
- } __attribute__ ((packed)) addba_req;
- struct{
- u8 action_code;
- u8 dialog_token;
- u16 status;
- u16 capab;
- u16 timeout;
- } __attribute__ ((packed)) addba_resp;
- struct{
- u8 action_code;
- u16 params;
- u16 reason_code;
- } __attribute__ ((packed)) delba;
- struct{
- u8 action_code;
-
- u16 aux;
-
- u8 variable[0];
- } __attribute__ ((packed)) plink_action;
- struct{
- u8 action_code;
- u8 variable[0];
- } __attribute__ ((packed)) mesh_action;
- } __attribute__ ((packed)) u;
- } __attribute__ ((packed)) action;
- } __attribute__ ((packed)) u;
- }__attribute__ ((packed));
- #endif
- #ifdef PLATFORM_WINDOWS
- #pragma pack(1)
- struct ieee80211_mgmt {
- u16 frame_control;
- u16 duration;
- u8 da[6];
- u8 sa[6];
- u8 bssid[6];
- u16 seq_ctrl;
- union {
- struct {
- u16 auth_alg;
- u16 auth_transaction;
- u16 status_code;
-
- u8 variable[0];
- } auth;
- struct {
- u16 reason_code;
- } deauth;
- struct {
- u16 capab_info;
- u16 listen_interval;
-
- u8 variable[0];
- } assoc_req;
- struct {
- u16 capab_info;
- u16 status_code;
- u16 aid;
-
- u8 variable[0];
- } assoc_resp, reassoc_resp;
- struct {
- u16 capab_info;
- u16 listen_interval;
- u8 current_ap[6];
-
- u8 variable[0];
- } reassoc_req;
- struct {
- u16 reason_code;
- } disassoc;
- #if 0
- struct {
- __le64 timestamp;
- u16 beacon_int;
- u16 capab_info;
-
- u8 variable[0];
- } beacon;
- struct {
-
- u8 variable[0];
- } probe_req;
-
- struct {
- __le64 timestamp;
- u16 beacon_int;
- u16 capab_info;
-
- u8 variable[0];
- } probe_resp;
- #endif
- struct {
- u8 category;
- union {
- struct {
- u8 action_code;
- u8 dialog_token;
- u8 status_code;
- u8 variable[0];
- } wme_action;
-
- struct{
- u8 action_code;
- u8 dialog_token;
- u16 capab;
- u16 timeout;
- u16 start_seq_num;
- } addba_req;
- struct{
- u8 action_code;
- u8 dialog_token;
- u16 status;
- u16 capab;
- u16 timeout;
- } addba_resp;
- struct{
- u8 action_code;
- u16 params;
- u16 reason_code;
- } delba;
- struct{
- u8 action_code;
-
- u16 aux;
-
- u8 variable[0];
- } plink_action;
- struct{
- u8 action_code;
- u8 variable[0];
- } mesh_action;
- } u;
- } action;
- } u;
- } ;
- #pragma pack()
- #endif
- #define IEEE80211_MIN_ACTION_SIZE FIELD_OFFSET(struct ieee80211_mgmt, u.action.u)
- #endif
|