wlantest: Add replay detection for CCMP
[mech_eap.git] / wlantest / wlantest.h
1 /*
2  * wlantest - IEEE 802.11 protocol monitoring and testing tool
3  * Copyright (c) 2010, 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 WLANTEST_H
16 #define WLANTEST_H
17
18 #include "utils/list.h"
19 #include "common/wpa_common.h"
20
21 struct ieee802_11_elems;
22 struct radius_msg;
23 struct ieee80211_hdr;
24
25 #define MAX_RADIUS_SECRET_LEN 128
26
27 struct wlantest_radius_secret {
28         struct dl_list list;
29         char secret[MAX_RADIUS_SECRET_LEN];
30 };
31
32 struct wlantest_passphrase {
33         struct dl_list list;
34         char passphrase[64];
35         u8 ssid[32];
36         size_t ssid_len;
37         u8 bssid[ETH_ALEN];
38 };
39
40 struct wlantest_pmk {
41         struct dl_list list;
42         u8 pmk[32];
43 };
44
45 struct wlantest_sta {
46         struct dl_list list;
47         u8 addr[ETH_ALEN];
48         enum {
49                 STATE1 /* not authenticated */,
50                 STATE2 /* authenticated */,
51                 STATE3 /* associated */
52         } state;
53         u16 aid;
54         u8 rsnie[257]; /* WPA/RSN IE */
55         u8 anonce[32]; /* ANonce from the previous EAPOL-Key msg 1/4 or 3/4 */
56         u8 snonce[32]; /* SNonce from the previous EAPOL-Key msg 2/4 */
57         struct wpa_ptk ptk; /* Derived PTK */
58         int ptk_set;
59         u8 rsc_tods[16][6];
60         u8 rsc_fromds[16][6];
61 };
62
63 struct wlantest_bss {
64         struct dl_list list;
65         u8 bssid[ETH_ALEN];
66         u16 capab_info;
67         u8 ssid[32];
68         size_t ssid_len;
69         int proberesp_seen;
70         int parse_error_reported;
71         u8 wpaie[257];
72         u8 rsnie[257];
73         struct dl_list sta; /* struct wlantest_sta */
74         struct dl_list pmk; /* struct wlantest_pmk */
75         u8 gtk[4][32];
76         size_t gtk_len[4];
77         u8 rsc[4][6];
78         u8 igtk[6][16];
79         int igtk_set[6];
80         u8 ipn[6][6];
81 };
82
83 struct wlantest_radius {
84         struct dl_list list;
85         u32 srv;
86         u32 cli;
87         struct radius_msg *last_req;
88 };
89
90 struct wlantest {
91         int monitor_sock;
92         int monitor_wired;
93
94         struct dl_list passphrase; /* struct wlantest_passphrase */
95         struct dl_list bss; /* struct wlantest_bss */
96         struct dl_list secret; /* struct wlantest_radius_secret */
97         struct dl_list radius; /* struct wlantest_radius */
98         struct dl_list pmk; /* struct wlantest_pmk */
99
100         unsigned int rx_mgmt;
101         unsigned int rx_ctrl;
102         unsigned int rx_data;
103         unsigned int fcs_error;
104 };
105
106 int read_cap_file(struct wlantest *wt, const char *fname);
107 int read_wired_cap_file(struct wlantest *wt, const char *fname);
108 void wlantest_process(struct wlantest *wt, const u8 *data, size_t len);
109 void wlantest_process_wired(struct wlantest *wt, const u8 *data, size_t len);
110 u32 crc32(const u8 *frame, size_t frame_len);
111 int monitor_init(struct wlantest *wt, const char *ifname);
112 int monitor_init_wired(struct wlantest *wt, const char *ifname);
113 void monitor_deinit(struct wlantest *wt);
114 void rx_mgmt(struct wlantest *wt, const u8 *data, size_t len);
115 void rx_data(struct wlantest *wt, const u8 *data, size_t len);
116
117 struct wlantest_bss * bss_get(struct wlantest *wt, const u8 *bssid);
118 void bss_deinit(struct wlantest_bss *bss);
119 void bss_update(struct wlantest *wt, struct wlantest_bss *bss,
120                 struct ieee802_11_elems *elems);
121 void pmk_deinit(struct wlantest_pmk *pmk);
122
123 struct wlantest_sta * sta_get(struct wlantest_bss *bss, const u8 *addr);
124 void sta_deinit(struct wlantest_sta *sta);
125 void sta_update_assoc(struct wlantest_sta *sta,
126                       struct ieee802_11_elems *elems);
127
128 u8 * ccmp_decrypt(const u8 *tk, const struct ieee80211_hdr *hdr,
129                   const u8 *data, size_t data_len, size_t *decrypted_len);
130 void ccmp_get_pn(u8 *pn, const u8 *data);
131
132 #endif /* WLANTEST_H */