hostapd.h 5.1 KB

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