wlantest.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. struct wlantest_sta {
  18. struct dl_list list;
  19. u8 addr[ETH_ALEN];
  20. enum {
  21. STATE1 /* not authenticated */,
  22. STATE2 /* authenticated */,
  23. STATE3 /* associated */
  24. } state;
  25. u16 aid;
  26. };
  27. struct wlantest_bss {
  28. struct dl_list list;
  29. u8 bssid[ETH_ALEN];
  30. u16 capab_info;
  31. u8 ssid[32];
  32. size_t ssid_len;
  33. int proberesp_seen;
  34. int parse_error_reported;
  35. u8 wpaie[257];
  36. u8 rsnie[257];
  37. struct dl_list sta; /* struct wlantest_sta */
  38. };
  39. struct wlantest {
  40. int monitor_sock;
  41. struct dl_list bss; /* struct wlantest_bss */
  42. unsigned int rx_mgmt;
  43. unsigned int rx_ctrl;
  44. unsigned int rx_data;
  45. unsigned int fcs_error;
  46. };
  47. int read_cap_file(struct wlantest *wt, const char *fname);
  48. void wlantest_process(struct wlantest *wt, const u8 *data, size_t len);
  49. u32 crc32(const u8 *frame, size_t frame_len);
  50. int monitor_init(struct wlantest *wt, const char *ifname);
  51. void monitor_deinit(struct wlantest *wt);
  52. struct wlantest_bss * bss_get(struct wlantest *wt, const u8 *bssid);
  53. void bss_deinit(struct wlantest_bss *bss);
  54. struct wlantest_sta * sta_get(struct wlantest_bss *bss, const u8 *addr);
  55. void sta_deinit(struct wlantest_sta *sta);
  56. #endif /* WLANTEST_H */