hostapd.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. * hostapd / Initialization and configuration
  3. * Copyright (c) 2002-2008, 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 HOSTAPD_H
  15. #define HOSTAPD_H
  16. #define MAX_VLAN_ID 4094
  17. struct wpa_driver_ops;
  18. struct wpa_ctrl_dst;
  19. struct radius_server_data;
  20. struct upnp_wps_device_sm;
  21. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  22. struct full_dynamic_vlan;
  23. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  24. struct hostapd_probereq_cb {
  25. void (*cb)(void *ctx, const u8 *sa, const u8 *ie, size_t ie_len);
  26. void *ctx;
  27. };
  28. /**
  29. * struct hostapd_data - hostapd per-BSS data structure
  30. */
  31. struct hostapd_data {
  32. struct hostapd_iface *iface;
  33. struct hostapd_config *iconf;
  34. struct hostapd_bss_config *conf;
  35. int interface_added; /* virtual interface added for this BSS */
  36. u8 own_addr[ETH_ALEN];
  37. int num_sta; /* number of entries in sta_list */
  38. struct sta_info *sta_list; /* STA info list head */
  39. #define STA_HASH_SIZE 256
  40. #define STA_HASH(sta) (sta[5])
  41. struct sta_info *sta_hash[STA_HASH_SIZE];
  42. /*
  43. * Bitfield for indicating which AIDs are allocated. Only AID values
  44. * 1-2007 are used and as such, the bit at index 0 corresponds to AID
  45. * 1.
  46. */
  47. #define AID_WORDS ((2008 + 31) / 32)
  48. u32 sta_aid[AID_WORDS];
  49. const struct wpa_driver_ops *driver;
  50. void *drv_priv;
  51. void *msg_ctx; /* ctx for wpa_msg() calls */
  52. struct radius_client_data *radius;
  53. u32 acct_session_id_hi, acct_session_id_lo;
  54. struct iapp_data *iapp;
  55. struct hostapd_cached_radius_acl *acl_cache;
  56. struct hostapd_acl_query_data *acl_queries;
  57. struct wpa_authenticator *wpa_auth;
  58. struct eapol_authenticator *eapol_auth;
  59. struct rsn_preauth_interface *preauth_iface;
  60. time_t michael_mic_failure;
  61. int michael_mic_failures;
  62. int tkip_countermeasures;
  63. int ctrl_sock;
  64. struct wpa_ctrl_dst *ctrl_dst;
  65. void *ssl_ctx;
  66. void *eap_sim_db_priv;
  67. struct radius_server_data *radius_srv;
  68. int parameter_set_count;
  69. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  70. struct full_dynamic_vlan *full_dynamic_vlan;
  71. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  72. struct l2_packet_data *l2;
  73. struct wps_context *wps;
  74. #ifdef CONFIG_WPS
  75. u8 *wps_beacon_ie;
  76. size_t wps_beacon_ie_len;
  77. u8 *wps_probe_resp_ie;
  78. size_t wps_probe_resp_ie_len;
  79. unsigned int ap_pin_failures;
  80. struct upnp_wps_device_sm *wps_upnp;
  81. #endif /* CONFIG_WPS */
  82. struct hostapd_probereq_cb *probereq_cb;
  83. size_t num_probereq_cb;
  84. };
  85. /**
  86. * struct hostapd_iface - hostapd per-interface data structure
  87. */
  88. struct hostapd_iface {
  89. void *owner;
  90. char *config_fname;
  91. struct hostapd_config *conf;
  92. size_t num_bss;
  93. struct hostapd_data **bss;
  94. int num_ap; /* number of entries in ap_list */
  95. struct ap_info *ap_list; /* AP info list head */
  96. struct ap_info *ap_hash[STA_HASH_SIZE];
  97. struct ap_info *ap_iter_list;
  98. struct hostapd_hw_modes *hw_features;
  99. int num_hw_features;
  100. struct hostapd_hw_modes *current_mode;
  101. /* Rates that are currently used (i.e., filtered copy of
  102. * current_mode->channels */
  103. int num_rates;
  104. struct hostapd_rate_data *current_rates;
  105. u16 hw_flags;
  106. /* Number of associated Non-ERP stations (i.e., stations using 802.11b
  107. * in 802.11g BSS) */
  108. int num_sta_non_erp;
  109. /* Number of associated stations that do not support Short Slot Time */
  110. int num_sta_no_short_slot_time;
  111. /* Number of associated stations that do not support Short Preamble */
  112. int num_sta_no_short_preamble;
  113. int olbc; /* Overlapping Legacy BSS Condition */
  114. /* Number of HT associated stations that do not support greenfield */
  115. int num_sta_ht_no_gf;
  116. /* Number of associated non-HT stations */
  117. int num_sta_no_ht;
  118. /* Number of HT associated stations 20 MHz */
  119. int num_sta_ht_20mhz;
  120. /* Overlapping BSS information */
  121. int olbc_ht;
  122. u16 ht_op_mode;
  123. void (*scan_cb)(struct hostapd_iface *iface);
  124. };
  125. int hostapd_reload_config(struct hostapd_iface *iface);
  126. struct hostapd_data *
  127. hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
  128. struct hostapd_config *conf,
  129. struct hostapd_bss_config *bss);
  130. int hostapd_setup_interface(struct hostapd_iface *iface);
  131. int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
  132. void hostapd_interface_deinit(struct hostapd_iface *iface);
  133. int handle_reload_iface(struct hostapd_iface *iface, void *ctx);
  134. int handle_dump_state_iface(struct hostapd_iface *iface, void *ctx);
  135. int hostapd_for_each_interface(int (*cb)(struct hostapd_iface *iface,
  136. void *ctx), void *ctx);
  137. int hostapd_register_probereq_cb(struct hostapd_data *hapd,
  138. void (*cb)(void *ctx, const u8 *sa,
  139. const u8 *ie, size_t ie_len),
  140. void *ctx);
  141. int eap_server_register_methods(void);
  142. #endif /* HOSTAPD_H */