Add preliminary IEEE 802.11n support into hostapd
[libeap.git] / hostapd / ieee802_11.h
1 /*
2  * hostapd / IEEE 802.11 Management
3  * Copyright (c) 2002-2006, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #ifndef IEEE802_11_H
16 #define IEEE802_11_H
17
18 #include "ieee802_11_defs.h"
19
20 /* Parsed Information Elements */
21 struct ieee802_11_elems {
22         u8 *ssid;
23         u8 ssid_len;
24         u8 *supp_rates;
25         u8 supp_rates_len;
26         u8 *fh_params;
27         u8 fh_params_len;
28         u8 *ds_params;
29         u8 ds_params_len;
30         u8 *cf_params;
31         u8 cf_params_len;
32         u8 *tim;
33         u8 tim_len;
34         u8 *ibss_params;
35         u8 ibss_params_len;
36         u8 *challenge;
37         u8 challenge_len;
38         u8 *erp_info;
39         u8 erp_info_len;
40         u8 *ext_supp_rates;
41         u8 ext_supp_rates_len;
42         u8 *wpa_ie;
43         u8 wpa_ie_len;
44         u8 *rsn_ie;
45         u8 rsn_ie_len;
46         u8 *wme;
47         u8 wme_len;
48         u8 *wme_tspec;
49         u8 wme_tspec_len;
50         u8 *power_cap;
51         u8 power_cap_len;
52         u8 *supp_channels;
53         u8 supp_channels_len;
54         u8 *mdie;
55         u8 mdie_len;
56         u8 *ftie;
57         u8 ftie_len;
58         u8 *ht_capabilities;
59         u8 ht_capabilities_len;
60         u8 *ht_operation;
61         u8 ht_operation_len;
62 };
63
64 typedef enum { ParseOK = 0, ParseUnknown = 1, ParseFailed = -1 } ParseRes;
65
66
67 struct hostapd_frame_info {
68         u32 phytype;
69         u32 channel;
70         u32 datarate;
71         u32 ssi_signal;
72
73         unsigned int passive_scan:1;
74 };
75
76 struct hostapd_iface;
77 struct hostapd_data;
78 struct sta_info;
79
80 void ieee802_11_send_deauth(struct hostapd_data *hapd, u8 *addr, u16 reason);
81 void ieee802_11_mgmt(struct hostapd_data *hapd, u8 *buf, size_t len,
82                      u16 stype, struct hostapd_frame_info *fi);
83 void ieee802_11_mgmt_cb(struct hostapd_data *hapd, u8 *buf, size_t len,
84                         u16 stype, int ok);
85 ParseRes ieee802_11_parse_elems(struct hostapd_data *hapd, u8 *start,
86                                 size_t len,
87                                 struct ieee802_11_elems *elems,
88                                 int show_errors);
89 void ieee802_11_print_ssid(char *buf, const u8 *ssid, u8 len);
90 void ieee80211_michael_mic_failure(struct hostapd_data *hapd, const u8 *addr,
91                                    int local);
92 int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen);
93 int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
94                            char *buf, size_t buflen);
95 u16 hostapd_own_capab_info(struct hostapd_data *hapd, struct sta_info *sta,
96                            int probe);
97 u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid);
98 u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid);
99 u8 * hostapd_eid_ht_capabilities_info(struct hostapd_data *hapd, u8 *eid);
100 u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid);
101 int hostapd_ht_operation_update(struct hostapd_iface *iface);
102
103 #endif /* IEEE802_11_H */