wlantest.h 3.5 KB

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