ap_config.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. /*
  2. * hostapd / Configuration definitions and helpers functions
  3. * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef HOSTAPD_CONFIG_H
  9. #define HOSTAPD_CONFIG_H
  10. #include "common/defs.h"
  11. #include "ip_addr.h"
  12. #include "common/wpa_common.h"
  13. #include "wps/wps.h"
  14. #define MAX_STA_COUNT 2007
  15. #define MAX_VLAN_ID 4094
  16. typedef u8 macaddr[ETH_ALEN];
  17. struct mac_acl_entry {
  18. macaddr addr;
  19. int vlan_id;
  20. };
  21. struct hostapd_radius_servers;
  22. struct ft_remote_r0kh;
  23. struct ft_remote_r1kh;
  24. #define HOSTAPD_MAX_SSID_LEN 32
  25. #define NUM_WEP_KEYS 4
  26. struct hostapd_wep_keys {
  27. u8 idx;
  28. u8 *key[NUM_WEP_KEYS];
  29. size_t len[NUM_WEP_KEYS];
  30. int keys_set;
  31. size_t default_len; /* key length used for dynamic key generation */
  32. };
  33. typedef enum hostap_security_policy {
  34. SECURITY_PLAINTEXT = 0,
  35. SECURITY_STATIC_WEP = 1,
  36. SECURITY_IEEE_802_1X = 2,
  37. SECURITY_WPA_PSK = 3,
  38. SECURITY_WPA = 4
  39. } secpolicy;
  40. struct hostapd_ssid {
  41. char ssid[HOSTAPD_MAX_SSID_LEN + 1];
  42. size_t ssid_len;
  43. int ssid_set;
  44. char vlan[IFNAMSIZ + 1];
  45. secpolicy security_policy;
  46. struct hostapd_wpa_psk *wpa_psk;
  47. char *wpa_passphrase;
  48. char *wpa_psk_file;
  49. struct hostapd_wep_keys wep;
  50. #define DYNAMIC_VLAN_DISABLED 0
  51. #define DYNAMIC_VLAN_OPTIONAL 1
  52. #define DYNAMIC_VLAN_REQUIRED 2
  53. int dynamic_vlan;
  54. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  55. char *vlan_tagged_interface;
  56. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  57. struct hostapd_wep_keys **dyn_vlan_keys;
  58. size_t max_dyn_vlan_keys;
  59. };
  60. #define VLAN_ID_WILDCARD -1
  61. struct hostapd_vlan {
  62. struct hostapd_vlan *next;
  63. int vlan_id; /* VLAN ID or -1 (VLAN_ID_WILDCARD) for wildcard entry */
  64. char ifname[IFNAMSIZ + 1];
  65. int dynamic_vlan;
  66. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  67. #define DVLAN_CLEAN_BR 0x1
  68. #define DVLAN_CLEAN_VLAN 0x2
  69. #define DVLAN_CLEAN_VLAN_PORT 0x4
  70. #define DVLAN_CLEAN_WLAN_PORT 0x8
  71. int clean;
  72. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  73. };
  74. #define PMK_LEN 32
  75. struct hostapd_wpa_psk {
  76. struct hostapd_wpa_psk *next;
  77. int group;
  78. u8 psk[PMK_LEN];
  79. u8 addr[ETH_ALEN];
  80. };
  81. struct hostapd_eap_user {
  82. struct hostapd_eap_user *next;
  83. u8 *identity;
  84. size_t identity_len;
  85. struct {
  86. int vendor;
  87. u32 method;
  88. } methods[EAP_MAX_METHODS];
  89. u8 *password;
  90. size_t password_len;
  91. int phase2;
  92. int force_version;
  93. unsigned int wildcard_prefix:1;
  94. unsigned int password_hash:1; /* whether password is hashed with
  95. * nt_password_hash() */
  96. int ttls_auth; /* EAP_TTLS_AUTH_* bitfield */
  97. };
  98. struct hostapd_radius_attr {
  99. u8 type;
  100. struct wpabuf *val;
  101. struct hostapd_radius_attr *next;
  102. };
  103. #define NUM_TX_QUEUES 4
  104. struct hostapd_tx_queue_params {
  105. int aifs;
  106. int cwmin;
  107. int cwmax;
  108. int burst; /* maximum burst time in 0.1 ms, i.e., 10 = 1 ms */
  109. };
  110. struct hostapd_wmm_ac_params {
  111. int cwmin;
  112. int cwmax;
  113. int aifs;
  114. int txop_limit; /* in units of 32us */
  115. int admission_control_mandatory;
  116. };
  117. #define MAX_ROAMING_CONSORTIUM_LEN 15
  118. struct hostapd_roaming_consortium {
  119. u8 len;
  120. u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
  121. };
  122. struct hostapd_venue_name {
  123. u8 lang[3];
  124. u8 name_len;
  125. u8 name[252];
  126. };
  127. /**
  128. * struct hostapd_bss_config - Per-BSS configuration
  129. */
  130. struct hostapd_bss_config {
  131. char iface[IFNAMSIZ + 1];
  132. char bridge[IFNAMSIZ + 1];
  133. char wds_bridge[IFNAMSIZ + 1];
  134. enum hostapd_logger_level logger_syslog_level, logger_stdout_level;
  135. unsigned int logger_syslog; /* module bitfield */
  136. unsigned int logger_stdout; /* module bitfield */
  137. char *dump_log_name; /* file name for state dump (SIGUSR1) */
  138. int max_num_sta; /* maximum number of STAs in station table */
  139. int dtim_period;
  140. int ieee802_1x; /* use IEEE 802.1X */
  141. int eapol_version;
  142. int eap_server; /* Use internal EAP server instead of external
  143. * RADIUS server */
  144. struct hostapd_eap_user *eap_user;
  145. char *eap_sim_db;
  146. struct hostapd_ip_addr own_ip_addr;
  147. char *nas_identifier;
  148. struct hostapd_radius_servers *radius;
  149. int acct_interim_interval;
  150. int radius_request_cui;
  151. struct hostapd_radius_attr *radius_auth_req_attr;
  152. struct hostapd_radius_attr *radius_acct_req_attr;
  153. int radius_das_port;
  154. unsigned int radius_das_time_window;
  155. int radius_das_require_event_timestamp;
  156. struct hostapd_ip_addr radius_das_client_addr;
  157. u8 *radius_das_shared_secret;
  158. size_t radius_das_shared_secret_len;
  159. struct hostapd_ssid ssid;
  160. char *eap_req_id_text; /* optional displayable message sent with
  161. * EAP Request-Identity */
  162. size_t eap_req_id_text_len;
  163. int eapol_key_index_workaround;
  164. size_t default_wep_key_len;
  165. int individual_wep_key_len;
  166. int wep_rekeying_period;
  167. int broadcast_key_idx_min, broadcast_key_idx_max;
  168. int eap_reauth_period;
  169. int ieee802_11f; /* use IEEE 802.11f (IAPP) */
  170. char iapp_iface[IFNAMSIZ + 1]; /* interface used with IAPP broadcast
  171. * frames */
  172. enum {
  173. ACCEPT_UNLESS_DENIED = 0,
  174. DENY_UNLESS_ACCEPTED = 1,
  175. USE_EXTERNAL_RADIUS_AUTH = 2
  176. } macaddr_acl;
  177. struct mac_acl_entry *accept_mac;
  178. int num_accept_mac;
  179. struct mac_acl_entry *deny_mac;
  180. int num_deny_mac;
  181. int wds_sta;
  182. int isolate;
  183. int auth_algs; /* bitfield of allowed IEEE 802.11 authentication
  184. * algorithms, WPA_AUTH_ALG_{OPEN,SHARED,LEAP} */
  185. int wpa; /* bitfield of WPA_PROTO_WPA, WPA_PROTO_RSN */
  186. int wpa_key_mgmt;
  187. #ifdef CONFIG_IEEE80211W
  188. enum mfp_options ieee80211w;
  189. /* dot11AssociationSAQueryMaximumTimeout (in TUs) */
  190. unsigned int assoc_sa_query_max_timeout;
  191. /* dot11AssociationSAQueryRetryTimeout (in TUs) */
  192. int assoc_sa_query_retry_timeout;
  193. #endif /* CONFIG_IEEE80211W */
  194. enum {
  195. PSK_RADIUS_IGNORED = 0,
  196. PSK_RADIUS_ACCEPTED = 1,
  197. PSK_RADIUS_REQUIRED = 2
  198. } wpa_psk_radius;
  199. int wpa_pairwise;
  200. int wpa_group;
  201. int wpa_group_rekey;
  202. int wpa_strict_rekey;
  203. int wpa_gmk_rekey;
  204. int wpa_ptk_rekey;
  205. int rsn_pairwise;
  206. int rsn_preauth;
  207. char *rsn_preauth_interfaces;
  208. int peerkey;
  209. #ifdef CONFIG_IEEE80211R
  210. /* IEEE 802.11r - Fast BSS Transition */
  211. u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
  212. u8 r1_key_holder[FT_R1KH_ID_LEN];
  213. u32 r0_key_lifetime;
  214. u32 reassociation_deadline;
  215. struct ft_remote_r0kh *r0kh_list;
  216. struct ft_remote_r1kh *r1kh_list;
  217. int pmk_r1_push;
  218. int ft_over_ds;
  219. #endif /* CONFIG_IEEE80211R */
  220. char *ctrl_interface; /* directory for UNIX domain sockets */
  221. #ifndef CONFIG_NATIVE_WINDOWS
  222. gid_t ctrl_interface_gid;
  223. #endif /* CONFIG_NATIVE_WINDOWS */
  224. int ctrl_interface_gid_set;
  225. char *ca_cert;
  226. char *server_cert;
  227. char *private_key;
  228. char *private_key_passwd;
  229. int check_crl;
  230. char *dh_file;
  231. u8 *pac_opaque_encr_key;
  232. u8 *eap_fast_a_id;
  233. size_t eap_fast_a_id_len;
  234. char *eap_fast_a_id_info;
  235. int eap_fast_prov;
  236. int pac_key_lifetime;
  237. int pac_key_refresh_time;
  238. int eap_sim_aka_result_ind;
  239. int tnc;
  240. int fragment_size;
  241. u16 pwd_group;
  242. char *radius_server_clients;
  243. int radius_server_auth_port;
  244. int radius_server_ipv6;
  245. char *test_socket; /* UNIX domain socket path for driver_test */
  246. int use_pae_group_addr; /* Whether to send EAPOL frames to PAE group
  247. * address instead of individual address
  248. * (for driver_wired.c).
  249. */
  250. int ap_max_inactivity;
  251. int ignore_broadcast_ssid;
  252. int wmm_enabled;
  253. int wmm_uapsd;
  254. struct hostapd_vlan *vlan, *vlan_tail;
  255. macaddr bssid;
  256. /*
  257. * Maximum listen interval that STAs can use when associating with this
  258. * BSS. If a STA tries to use larger value, the association will be
  259. * denied with status code 51.
  260. */
  261. u16 max_listen_interval;
  262. int disable_pmksa_caching;
  263. int okc; /* Opportunistic Key Caching */
  264. int wps_state;
  265. #ifdef CONFIG_WPS
  266. int ap_setup_locked;
  267. u8 uuid[16];
  268. char *wps_pin_requests;
  269. char *device_name;
  270. char *manufacturer;
  271. char *model_name;
  272. char *model_number;
  273. char *serial_number;
  274. u8 device_type[WPS_DEV_TYPE_LEN];
  275. char *config_methods;
  276. u8 os_version[4];
  277. char *ap_pin;
  278. int skip_cred_build;
  279. u8 *extra_cred;
  280. size_t extra_cred_len;
  281. int wps_cred_processing;
  282. u8 *ap_settings;
  283. size_t ap_settings_len;
  284. char *upnp_iface;
  285. char *friendly_name;
  286. char *manufacturer_url;
  287. char *model_description;
  288. char *model_url;
  289. char *upc;
  290. struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXTENSIONS];
  291. int wps_nfc_dev_pw_id;
  292. struct wpabuf *wps_nfc_dh_pubkey;
  293. struct wpabuf *wps_nfc_dh_privkey;
  294. struct wpabuf *wps_nfc_dev_pw;
  295. #endif /* CONFIG_WPS */
  296. int pbc_in_m1;
  297. #define P2P_ENABLED BIT(0)
  298. #define P2P_GROUP_OWNER BIT(1)
  299. #define P2P_GROUP_FORMATION BIT(2)
  300. #define P2P_MANAGE BIT(3)
  301. #define P2P_ALLOW_CROSS_CONNECTION BIT(4)
  302. int p2p;
  303. int disassoc_low_ack;
  304. int skip_inactivity_poll;
  305. #define TDLS_PROHIBIT BIT(0)
  306. #define TDLS_PROHIBIT_CHAN_SWITCH BIT(1)
  307. int tdls;
  308. int disable_11n;
  309. int disable_11ac;
  310. /* IEEE 802.11v */
  311. int time_advertisement;
  312. char *time_zone;
  313. /* IEEE 802.11u - Interworking */
  314. int interworking;
  315. int access_network_type;
  316. int internet;
  317. int asra;
  318. int esr;
  319. int uesa;
  320. int venue_info_set;
  321. u8 venue_group;
  322. u8 venue_type;
  323. u8 hessid[ETH_ALEN];
  324. /* IEEE 802.11u - Roaming Consortium list */
  325. unsigned int roaming_consortium_count;
  326. struct hostapd_roaming_consortium *roaming_consortium;
  327. /* IEEE 802.11u - Venue Name duples */
  328. unsigned int venue_name_count;
  329. struct hostapd_venue_name *venue_name;
  330. u16 gas_comeback_delay;
  331. int gas_frag_limit;
  332. #ifdef CONFIG_HS20
  333. int hs20;
  334. #endif /* CONFIG_HS20 */
  335. u8 wps_rf_bands; /* RF bands for WPS (WPS_RF_*) */
  336. #ifdef CONFIG_RADIUS_TEST
  337. char *dump_msk_file;
  338. #endif /* CONFIG_RADIUS_TEST */
  339. };
  340. /**
  341. * struct hostapd_config - Per-radio interface configuration
  342. */
  343. struct hostapd_config {
  344. struct hostapd_bss_config *bss, *last_bss;
  345. size_t num_bss;
  346. u16 beacon_int;
  347. int rts_threshold;
  348. int fragm_threshold;
  349. u8 send_probe_response;
  350. u8 channel;
  351. enum hostapd_hw_mode hw_mode; /* HOSTAPD_MODE_IEEE80211A, .. */
  352. enum {
  353. LONG_PREAMBLE = 0,
  354. SHORT_PREAMBLE = 1
  355. } preamble;
  356. int *supported_rates;
  357. int *basic_rates;
  358. const struct wpa_driver_ops *driver;
  359. int ap_table_max_size;
  360. int ap_table_expiration_time;
  361. char country[3]; /* first two octets: country code as described in
  362. * ISO/IEC 3166-1. Third octet:
  363. * ' ' (ascii 32): all environments
  364. * 'O': Outdoor environemnt only
  365. * 'I': Indoor environment only
  366. */
  367. int ieee80211d;
  368. struct hostapd_tx_queue_params tx_queue[NUM_TX_QUEUES];
  369. /*
  370. * WMM AC parameters, in same order as 802.1D, i.e.
  371. * 0 = BE (best effort)
  372. * 1 = BK (background)
  373. * 2 = VI (video)
  374. * 3 = VO (voice)
  375. */
  376. struct hostapd_wmm_ac_params wmm_ac_params[4];
  377. int ht_op_mode_fixed;
  378. u16 ht_capab;
  379. int ieee80211n;
  380. int secondary_channel;
  381. int require_ht;
  382. u32 vht_capab;
  383. int ieee80211ac;
  384. u8 vht_oper_chwidth;
  385. };
  386. int hostapd_mac_comp(const void *a, const void *b);
  387. int hostapd_mac_comp_empty(const void *a);
  388. struct hostapd_config * hostapd_config_defaults(void);
  389. void hostapd_config_defaults_bss(struct hostapd_bss_config *bss);
  390. void hostapd_config_free(struct hostapd_config *conf);
  391. int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
  392. const u8 *addr, int *vlan_id);
  393. int hostapd_rate_found(int *list, int rate);
  394. int hostapd_wep_key_cmp(struct hostapd_wep_keys *a,
  395. struct hostapd_wep_keys *b);
  396. const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
  397. const u8 *addr, const u8 *prev_psk);
  398. int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf);
  399. const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan,
  400. int vlan_id);
  401. const struct hostapd_eap_user *
  402. hostapd_get_eap_user(const struct hostapd_bss_config *conf, const u8 *identity,
  403. size_t identity_len, int phase2);
  404. struct hostapd_radius_attr *
  405. hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type);
  406. #endif /* HOSTAPD_CONFIG_H */