ap_config.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. /*
  2. * hostapd / Configuration definitions and helpers functions
  3. * Copyright (c) 2003-2009, 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_CONFIG_H
  15. #define HOSTAPD_CONFIG_H
  16. #include "common/defs.h"
  17. #include "ip_addr.h"
  18. #include "common/wpa_common.h"
  19. #define MAX_STA_COUNT 2007
  20. #define MAX_VLAN_ID 4094
  21. typedef u8 macaddr[ETH_ALEN];
  22. struct mac_acl_entry {
  23. macaddr addr;
  24. int vlan_id;
  25. };
  26. struct hostapd_radius_servers;
  27. struct ft_remote_r0kh;
  28. struct ft_remote_r1kh;
  29. #define HOSTAPD_MAX_SSID_LEN 32
  30. #define NUM_WEP_KEYS 4
  31. struct hostapd_wep_keys {
  32. u8 idx;
  33. u8 *key[NUM_WEP_KEYS];
  34. size_t len[NUM_WEP_KEYS];
  35. int keys_set;
  36. size_t default_len; /* key length used for dynamic key generation */
  37. };
  38. typedef enum hostap_security_policy {
  39. SECURITY_PLAINTEXT = 0,
  40. SECURITY_STATIC_WEP = 1,
  41. SECURITY_IEEE_802_1X = 2,
  42. SECURITY_WPA_PSK = 3,
  43. SECURITY_WPA = 4
  44. } secpolicy;
  45. struct hostapd_ssid {
  46. char ssid[HOSTAPD_MAX_SSID_LEN + 1];
  47. size_t ssid_len;
  48. int ssid_set;
  49. char vlan[IFNAMSIZ + 1];
  50. secpolicy security_policy;
  51. struct hostapd_wpa_psk *wpa_psk;
  52. char *wpa_passphrase;
  53. char *wpa_psk_file;
  54. struct hostapd_wep_keys wep;
  55. #define DYNAMIC_VLAN_DISABLED 0
  56. #define DYNAMIC_VLAN_OPTIONAL 1
  57. #define DYNAMIC_VLAN_REQUIRED 2
  58. int dynamic_vlan;
  59. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  60. char *vlan_tagged_interface;
  61. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  62. struct hostapd_wep_keys **dyn_vlan_keys;
  63. size_t max_dyn_vlan_keys;
  64. };
  65. #define VLAN_ID_WILDCARD -1
  66. struct hostapd_vlan {
  67. struct hostapd_vlan *next;
  68. int vlan_id; /* VLAN ID or -1 (VLAN_ID_WILDCARD) for wildcard entry */
  69. char ifname[IFNAMSIZ + 1];
  70. int dynamic_vlan;
  71. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  72. #define DVLAN_CLEAN_BR 0x1
  73. #define DVLAN_CLEAN_VLAN 0x2
  74. #define DVLAN_CLEAN_VLAN_PORT 0x4
  75. #define DVLAN_CLEAN_WLAN_PORT 0x8
  76. int clean;
  77. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  78. };
  79. #define PMK_LEN 32
  80. struct hostapd_wpa_psk {
  81. struct hostapd_wpa_psk *next;
  82. int group;
  83. u8 psk[PMK_LEN];
  84. u8 addr[ETH_ALEN];
  85. };
  86. #define EAP_USER_MAX_METHODS 8
  87. struct hostapd_eap_user {
  88. struct hostapd_eap_user *next;
  89. u8 *identity;
  90. size_t identity_len;
  91. struct {
  92. int vendor;
  93. u32 method;
  94. } methods[EAP_USER_MAX_METHODS];
  95. u8 *password;
  96. size_t password_len;
  97. int phase2;
  98. int force_version;
  99. unsigned int wildcard_prefix:1;
  100. unsigned int password_hash:1; /* whether password is hashed with
  101. * nt_password_hash() */
  102. int ttls_auth; /* EAP_TTLS_AUTH_* bitfield */
  103. };
  104. #define NUM_TX_QUEUES 8
  105. struct hostapd_tx_queue_params {
  106. int aifs;
  107. int cwmin;
  108. int cwmax;
  109. int burst; /* maximum burst time in 0.1 ms, i.e., 10 = 1 ms */
  110. int configured;
  111. };
  112. struct hostapd_wmm_ac_params {
  113. int cwmin;
  114. int cwmax;
  115. int aifs;
  116. int txop_limit; /* in units of 32us */
  117. int admission_control_mandatory;
  118. };
  119. /**
  120. * struct hostapd_bss_config - Per-BSS configuration
  121. */
  122. struct hostapd_bss_config {
  123. char iface[IFNAMSIZ + 1];
  124. char bridge[IFNAMSIZ + 1];
  125. enum hostapd_logger_level logger_syslog_level, logger_stdout_level;
  126. unsigned int logger_syslog; /* module bitfield */
  127. unsigned int logger_stdout; /* module bitfield */
  128. char *dump_log_name; /* file name for state dump (SIGUSR1) */
  129. int max_num_sta; /* maximum number of STAs in station table */
  130. int dtim_period;
  131. int ieee802_1x; /* use IEEE 802.1X */
  132. int eapol_version;
  133. int eap_server; /* Use internal EAP server instead of external
  134. * RADIUS server */
  135. struct hostapd_eap_user *eap_user;
  136. char *eap_sim_db;
  137. struct hostapd_ip_addr own_ip_addr;
  138. char *nas_identifier;
  139. struct hostapd_radius_servers *radius;
  140. int acct_interim_interval;
  141. struct hostapd_ssid ssid;
  142. char *eap_req_id_text; /* optional displayable message sent with
  143. * EAP Request-Identity */
  144. size_t eap_req_id_text_len;
  145. int eapol_key_index_workaround;
  146. size_t default_wep_key_len;
  147. int individual_wep_key_len;
  148. int wep_rekeying_period;
  149. int broadcast_key_idx_min, broadcast_key_idx_max;
  150. int eap_reauth_period;
  151. int ieee802_11f; /* use IEEE 802.11f (IAPP) */
  152. char iapp_iface[IFNAMSIZ + 1]; /* interface used with IAPP broadcast
  153. * frames */
  154. enum {
  155. ACCEPT_UNLESS_DENIED = 0,
  156. DENY_UNLESS_ACCEPTED = 1,
  157. USE_EXTERNAL_RADIUS_AUTH = 2
  158. } macaddr_acl;
  159. struct mac_acl_entry *accept_mac;
  160. int num_accept_mac;
  161. struct mac_acl_entry *deny_mac;
  162. int num_deny_mac;
  163. int wds_sta;
  164. int auth_algs; /* bitfield of allowed IEEE 802.11 authentication
  165. * algorithms, WPA_AUTH_ALG_{OPEN,SHARED,LEAP} */
  166. int wpa; /* bitfield of WPA_PROTO_WPA, WPA_PROTO_RSN */
  167. int wpa_key_mgmt;
  168. #ifdef CONFIG_IEEE80211W
  169. enum mfp_options ieee80211w;
  170. /* dot11AssociationSAQueryMaximumTimeout (in TUs) */
  171. unsigned int assoc_sa_query_max_timeout;
  172. /* dot11AssociationSAQueryRetryTimeout (in TUs) */
  173. int assoc_sa_query_retry_timeout;
  174. #endif /* CONFIG_IEEE80211W */
  175. int wpa_pairwise;
  176. int wpa_group;
  177. int wpa_group_rekey;
  178. int wpa_strict_rekey;
  179. int wpa_gmk_rekey;
  180. int wpa_ptk_rekey;
  181. int rsn_pairwise;
  182. int rsn_preauth;
  183. char *rsn_preauth_interfaces;
  184. int peerkey;
  185. #ifdef CONFIG_IEEE80211R
  186. /* IEEE 802.11r - Fast BSS Transition */
  187. u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
  188. u8 r1_key_holder[FT_R1KH_ID_LEN];
  189. u32 r0_key_lifetime;
  190. u32 reassociation_deadline;
  191. struct ft_remote_r0kh *r0kh_list;
  192. struct ft_remote_r1kh *r1kh_list;
  193. int pmk_r1_push;
  194. #endif /* CONFIG_IEEE80211R */
  195. char *ctrl_interface; /* directory for UNIX domain sockets */
  196. gid_t ctrl_interface_gid;
  197. int ctrl_interface_gid_set;
  198. char *ca_cert;
  199. char *server_cert;
  200. char *private_key;
  201. char *private_key_passwd;
  202. int check_crl;
  203. char *dh_file;
  204. u8 *pac_opaque_encr_key;
  205. u8 *eap_fast_a_id;
  206. size_t eap_fast_a_id_len;
  207. char *eap_fast_a_id_info;
  208. int eap_fast_prov;
  209. int pac_key_lifetime;
  210. int pac_key_refresh_time;
  211. int eap_sim_aka_result_ind;
  212. int tnc;
  213. char *radius_server_clients;
  214. int radius_server_auth_port;
  215. int radius_server_ipv6;
  216. char *test_socket; /* UNIX domain socket path for driver_test */
  217. int use_pae_group_addr; /* Whether to send EAPOL frames to PAE group
  218. * address instead of individual address
  219. * (for driver_wired.c).
  220. */
  221. int ap_max_inactivity;
  222. int ignore_broadcast_ssid;
  223. int wmm_enabled;
  224. struct hostapd_vlan *vlan, *vlan_tail;
  225. macaddr bssid;
  226. /*
  227. * Maximum listen interval that STAs can use when associating with this
  228. * BSS. If a STA tries to use larger value, the association will be
  229. * denied with status code 51.
  230. */
  231. u16 max_listen_interval;
  232. int okc; /* Opportunistic Key Caching */
  233. int wps_state;
  234. #ifdef CONFIG_WPS
  235. int ap_setup_locked;
  236. u8 uuid[16];
  237. char *wps_pin_requests;
  238. char *device_name;
  239. char *manufacturer;
  240. char *model_name;
  241. char *model_number;
  242. char *serial_number;
  243. char *device_type;
  244. char *config_methods;
  245. u8 os_version[4];
  246. char *ap_pin;
  247. int skip_cred_build;
  248. u8 *extra_cred;
  249. size_t extra_cred_len;
  250. int wps_cred_processing;
  251. u8 *ap_settings;
  252. size_t ap_settings_len;
  253. char *upnp_iface;
  254. char *friendly_name;
  255. char *manufacturer_url;
  256. char *model_description;
  257. char *model_url;
  258. char *upc;
  259. #endif /* CONFIG_WPS */
  260. };
  261. /**
  262. * struct hostapd_config - Per-radio interface configuration
  263. */
  264. struct hostapd_config {
  265. struct hostapd_bss_config *bss, *last_bss;
  266. size_t num_bss;
  267. u16 beacon_int;
  268. int rts_threshold;
  269. int fragm_threshold;
  270. u8 send_probe_response;
  271. u8 channel;
  272. hostapd_hw_mode hw_mode; /* HOSTAPD_MODE_IEEE80211A, .. */
  273. enum {
  274. LONG_PREAMBLE = 0,
  275. SHORT_PREAMBLE = 1
  276. } preamble;
  277. enum {
  278. CTS_PROTECTION_AUTOMATIC = 0,
  279. CTS_PROTECTION_FORCE_ENABLED = 1,
  280. CTS_PROTECTION_FORCE_DISABLED = 2,
  281. CTS_PROTECTION_AUTOMATIC_NO_OLBC = 3,
  282. } cts_protection_type;
  283. int *supported_rates;
  284. int *basic_rates;
  285. const struct wpa_driver_ops *driver;
  286. int ap_table_max_size;
  287. int ap_table_expiration_time;
  288. char country[3]; /* first two octets: country code as described in
  289. * ISO/IEC 3166-1. Third octet:
  290. * ' ' (ascii 32): all environments
  291. * 'O': Outdoor environemnt only
  292. * 'I': Indoor environment only
  293. */
  294. int ieee80211d;
  295. struct hostapd_tx_queue_params tx_queue[NUM_TX_QUEUES];
  296. /*
  297. * WMM AC parameters, in same order as 802.1D, i.e.
  298. * 0 = BE (best effort)
  299. * 1 = BK (background)
  300. * 2 = VI (video)
  301. * 3 = VO (voice)
  302. */
  303. struct hostapd_wmm_ac_params wmm_ac_params[4];
  304. int ht_op_mode_fixed;
  305. u16 ht_capab;
  306. int ieee80211n;
  307. int secondary_channel;
  308. };
  309. int hostapd_mac_comp(const void *a, const void *b);
  310. int hostapd_mac_comp_empty(const void *a);
  311. struct hostapd_config * hostapd_config_defaults(void);
  312. void hostapd_config_defaults_bss(struct hostapd_bss_config *bss);
  313. void hostapd_config_free(struct hostapd_config *conf);
  314. int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
  315. const u8 *addr, int *vlan_id);
  316. int hostapd_rate_found(int *list, int rate);
  317. int hostapd_wep_key_cmp(struct hostapd_wep_keys *a,
  318. struct hostapd_wep_keys *b);
  319. const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
  320. const u8 *addr, const u8 *prev_psk);
  321. int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf);
  322. const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan,
  323. int vlan_id);
  324. const struct hostapd_eap_user *
  325. hostapd_get_eap_user(const struct hostapd_bss_config *conf, const u8 *identity,
  326. size_t identity_len, int phase2);
  327. #endif /* HOSTAPD_CONFIG_H */