1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
|
/*
* Copyright (C) 2003-2005 Pontus Fuchs, Giridhar Pemmasani
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#ifndef IW_NDIS_H
#define IW_NDIS_H
#include "ndis.h"
struct ndis_encr_key {
ULONG struct_size;
ULONG index;
ULONG length;
UCHAR key[NDIS_ENCODING_TOKEN_MAX];
};
struct ndis_add_key {
ULONG struct_size;
ndis_key_index index;
ULONG length;
mac_address bssid;
UCHAR pad[6];
ndis_key_rsc rsc;
UCHAR key[NDIS_ENCODING_TOKEN_MAX];
};
struct ndis_remove_key {
ULONG struct_size;
ndis_key_index index;
mac_address bssid;
};
struct ndis_fixed_ies {
UCHAR time_stamp[8];
USHORT beacon_interval;
USHORT capa;
};
struct ndis_variable_ies {
ULONG elem_id;
UCHAR length;
UCHAR data[1];
};
struct ndis_assoc_info {
ULONG length;
USHORT req_ies;
struct req_ie {
USHORT capa;
USHORT listen_interval;
mac_address cur_ap_address;
} req_ie;
ULONG req_ie_length;
ULONG offset_req_ies;
USHORT resp_ies;
struct resp_ie {
USHORT capa;
USHORT status_code;
USHORT assoc_id;
} resp_ie;
ULONG resp_ie_length;
ULONG offset_resp_ies;
};
struct packed ndis_configuration {
ULONG length;
ULONG beacon_period;
ULONG atim_window;
ULONG ds_config;
struct ndis_configuration_fh {
ULONG length;
ULONG hop_pattern;
ULONG hop_set;
ULONG dwell_time;
} fh_config;
};
struct ndis_ssid_item {
ULONG length;
mac_address mac;
UCHAR reserved[2];
struct ndis_essid ssid;
ULONG privacy;
LONG rssi;
UINT net_type;
struct ndis_configuration config;
UINT mode;
ndis_rates rates;
ULONG ie_length;
UCHAR ies[1];
};
struct ndis_bssid_list {
ULONG num_items;
struct ndis_ssid_item items[1];
};
enum ndis_priv_filter {
Ndis802_11PrivFilterAcceptAll,
Ndis802_11PrivFilter8021xWEP
};
enum network_type {
Ndis802_11FH,
Ndis802_11DS,
Ndis802_11OFDM5,
Ndis802_11OFDM24,
/* MSDN site uses Ndis802_11Automode, which is not mentioned
* in DDK, so add one and assign it to
* Ndis802_11NetworkTypeMax */
Ndis802_11Automode,
Ndis802_11NetworkTypeMax = Ndis802_11Automode
};
enum ndis_power {
NDIS_POWER_OFF = 0,
NDIS_POWER_MAX,
NDIS_POWER_MIN,
};
enum ndis_power_profile {
NdisPowerProfileBattery,
NdisPowerProfileAcOnLine
};
struct ndis_auth_req {
ULONG length;
mac_address bssid;
ULONG flags;
};
int add_wep_key(struct ndis_handle *handle, char *key, int key_len, int index);
extern const struct iw_handler_def ndis_handler_def;
int set_essid(struct ndis_handle *handle, const char *ssid, int ssid_len);
int set_infra_mode(struct ndis_handle *handle,
enum network_infrastructure mode);
int get_ap_address(struct ndis_handle *handle, mac_address mac);
int set_auth_mode(struct ndis_handle *handle, int auth_mode);
int set_encr_mode(struct ndis_handle *handle, int encr_mode);
int set_privacy_filter(struct ndis_handle *handle, int flags);
int set_scan(struct ndis_handle *handle);
/* WPA support */
#define PRIV_RESET SIOCIWFIRSTPRIV+16
#define PRIV_POWER_PROFILE SIOCIWFIRSTPRIV+17
#define PRIV_NETWORK_TYPE SIOCIWFIRSTPRIV+18
/* these have to match what is in wpa_supplicant */
typedef enum { WPA_ALG_NONE, WPA_ALG_WEP, WPA_ALG_TKIP, WPA_ALG_CCMP } wpa_alg;
typedef enum { CIPHER_NONE, CIPHER_WEP40, CIPHER_TKIP, CIPHER_CCMP,
CIPHER_WEP104 } wpa_cipher;
typedef enum { KEY_MGMT_802_1X, KEY_MGMT_PSK, KEY_MGMT_NONE,
KEY_MGMT_802_1X_NO_WPA, KEY_MGMT_WPA_NONE } wpa_key_mgmt;
#define AUTH_ALG_OPEN_SYSTEM 0x01
#define AUTH_ALG_SHARED_KEY 0x02
#define AUTH_ALG_LEAP 0x04
#define IEEE80211_MODE_INFRA 0
#define IEEE80211_MODE_IBSS 1
#define RSN_INFO_ELEM 0x30
struct wpa_key {
wpa_alg alg;
u8 *addr;
int key_index;
int set_tx;
u8 *seq;
size_t seq_len;
u8 *key;
size_t key_len;
};
struct wpa_assoc_info {
const u8 *bssid;
const u8 *ssid;
size_t ssid_len;
int freq;
const u8 *wpa_ie;
size_t wpa_ie_len;
wpa_cipher pairwise_suite;
wpa_cipher group_suite;
wpa_key_mgmt key_mgmt_suite;
int auth_alg;
int mode;
};
#define WPA_SET_WPA SIOCIWFIRSTPRIV+1
#define WPA_SET_KEY SIOCIWFIRSTPRIV+2
#define WPA_ASSOCIATE SIOCIWFIRSTPRIV+3
#define WPA_DISASSOCIATE SIOCIWFIRSTPRIV+4
#define WPA_DROP_UNENCRYPTED SIOCIWFIRSTPRIV+5
#define WPA_SET_COUNTERMEASURES SIOCIWFIRSTPRIV+6
#define WPA_DEAUTHENTICATE SIOCIWFIRSTPRIV+7
#define WPA_SET_AUTH_ALG SIOCIWFIRSTPRIV+8
#define WPA_INIT SIOCIWFIRSTPRIV+9
#define WPA_DEINIT SIOCIWFIRSTPRIV+10
#endif // IW_NDIS_H
|