ap_config.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826
  1. /*
  2. * hostapd / Configuration definitions and helpers functions
  3. * Copyright (c) 2003-2015, 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 "utils/list.h"
  12. #include "ip_addr.h"
  13. #include "common/wpa_common.h"
  14. #include "common/ieee802_11_defs.h"
  15. #include "common/ieee802_11_common.h"
  16. #include "wps/wps.h"
  17. #include "fst/fst.h"
  18. #include "vlan.h"
  19. /**
  20. * mesh_conf - local MBSS state and settings
  21. */
  22. struct mesh_conf {
  23. u8 meshid[32];
  24. u8 meshid_len;
  25. /* Active Path Selection Protocol Identifier */
  26. u8 mesh_pp_id;
  27. /* Active Path Selection Metric Identifier */
  28. u8 mesh_pm_id;
  29. /* Congestion Control Mode Identifier */
  30. u8 mesh_cc_id;
  31. /* Synchronization Protocol Identifier */
  32. u8 mesh_sp_id;
  33. /* Authentication Protocol Identifier */
  34. u8 mesh_auth_id;
  35. u8 *rsn_ie;
  36. int rsn_ie_len;
  37. #define MESH_CONF_SEC_NONE BIT(0)
  38. #define MESH_CONF_SEC_AUTH BIT(1)
  39. #define MESH_CONF_SEC_AMPE BIT(2)
  40. unsigned int security;
  41. enum mfp_options ieee80211w;
  42. unsigned int pairwise_cipher;
  43. unsigned int group_cipher;
  44. unsigned int mgmt_group_cipher;
  45. int dot11MeshMaxRetries;
  46. int dot11MeshRetryTimeout; /* msec */
  47. int dot11MeshConfirmTimeout; /* msec */
  48. int dot11MeshHoldingTimeout; /* msec */
  49. };
  50. #define MAX_STA_COUNT 2007
  51. #define MAX_VLAN_ID 4094
  52. typedef u8 macaddr[ETH_ALEN];
  53. struct mac_acl_entry {
  54. macaddr addr;
  55. struct vlan_description vlan_id;
  56. };
  57. struct hostapd_radius_servers;
  58. struct ft_remote_r0kh;
  59. struct ft_remote_r1kh;
  60. #define NUM_WEP_KEYS 4
  61. struct hostapd_wep_keys {
  62. u8 idx;
  63. u8 *key[NUM_WEP_KEYS];
  64. size_t len[NUM_WEP_KEYS];
  65. int keys_set;
  66. size_t default_len; /* key length used for dynamic key generation */
  67. };
  68. typedef enum hostap_security_policy {
  69. SECURITY_PLAINTEXT = 0,
  70. SECURITY_STATIC_WEP = 1,
  71. SECURITY_IEEE_802_1X = 2,
  72. SECURITY_WPA_PSK = 3,
  73. SECURITY_WPA = 4,
  74. SECURITY_OSEN = 5
  75. } secpolicy;
  76. struct hostapd_ssid {
  77. u8 ssid[SSID_MAX_LEN];
  78. size_t ssid_len;
  79. unsigned int ssid_set:1;
  80. unsigned int utf8_ssid:1;
  81. unsigned int wpa_passphrase_set:1;
  82. unsigned int wpa_psk_set:1;
  83. char vlan[IFNAMSIZ + 1];
  84. secpolicy security_policy;
  85. struct hostapd_wpa_psk *wpa_psk;
  86. char *wpa_passphrase;
  87. char *wpa_psk_file;
  88. struct hostapd_wep_keys wep;
  89. #define DYNAMIC_VLAN_DISABLED 0
  90. #define DYNAMIC_VLAN_OPTIONAL 1
  91. #define DYNAMIC_VLAN_REQUIRED 2
  92. int dynamic_vlan;
  93. #define DYNAMIC_VLAN_NAMING_WITHOUT_DEVICE 0
  94. #define DYNAMIC_VLAN_NAMING_WITH_DEVICE 1
  95. #define DYNAMIC_VLAN_NAMING_END 2
  96. int vlan_naming;
  97. int per_sta_vif;
  98. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  99. char *vlan_tagged_interface;
  100. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  101. };
  102. #define VLAN_ID_WILDCARD -1
  103. struct hostapd_vlan {
  104. struct hostapd_vlan *next;
  105. int vlan_id; /* VLAN ID or -1 (VLAN_ID_WILDCARD) for wildcard entry */
  106. struct vlan_description vlan_desc;
  107. char ifname[IFNAMSIZ + 1];
  108. int configured;
  109. int dynamic_vlan;
  110. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  111. #define DVLAN_CLEAN_WLAN_PORT 0x8
  112. int clean;
  113. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  114. };
  115. #define PMK_LEN 32
  116. #define MIN_PASSPHRASE_LEN 8
  117. #define MAX_PASSPHRASE_LEN 63
  118. struct hostapd_sta_wpa_psk_short {
  119. struct hostapd_sta_wpa_psk_short *next;
  120. unsigned int is_passphrase:1;
  121. u8 psk[PMK_LEN];
  122. char passphrase[MAX_PASSPHRASE_LEN + 1];
  123. int ref; /* (number of references held) - 1 */
  124. };
  125. struct hostapd_wpa_psk {
  126. struct hostapd_wpa_psk *next;
  127. int group;
  128. u8 psk[PMK_LEN];
  129. u8 addr[ETH_ALEN];
  130. u8 p2p_dev_addr[ETH_ALEN];
  131. };
  132. struct hostapd_eap_user {
  133. struct hostapd_eap_user *next;
  134. u8 *identity;
  135. size_t identity_len;
  136. struct {
  137. int vendor;
  138. u32 method;
  139. } methods[EAP_MAX_METHODS];
  140. u8 *password;
  141. size_t password_len;
  142. int phase2;
  143. int force_version;
  144. unsigned int wildcard_prefix:1;
  145. unsigned int password_hash:1; /* whether password is hashed with
  146. * nt_password_hash() */
  147. unsigned int remediation:1;
  148. unsigned int macacl:1;
  149. int ttls_auth; /* EAP_TTLS_AUTH_* bitfield */
  150. struct hostapd_radius_attr *accept_attr;
  151. };
  152. struct hostapd_radius_attr {
  153. u8 type;
  154. struct wpabuf *val;
  155. struct hostapd_radius_attr *next;
  156. };
  157. #define NUM_TX_QUEUES 4
  158. struct hostapd_tx_queue_params {
  159. int aifs;
  160. int cwmin;
  161. int cwmax;
  162. int burst; /* maximum burst time in 0.1 ms, i.e., 10 = 1 ms */
  163. };
  164. #define MAX_ROAMING_CONSORTIUM_LEN 15
  165. struct hostapd_roaming_consortium {
  166. u8 len;
  167. u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
  168. };
  169. struct hostapd_lang_string {
  170. u8 lang[3];
  171. u8 name_len;
  172. u8 name[252];
  173. };
  174. #define MAX_NAI_REALMS 10
  175. #define MAX_NAI_REALMLEN 255
  176. #define MAX_NAI_EAP_METHODS 5
  177. #define MAX_NAI_AUTH_TYPES 4
  178. struct hostapd_nai_realm_data {
  179. u8 encoding;
  180. char realm_buf[MAX_NAI_REALMLEN + 1];
  181. char *realm[MAX_NAI_REALMS];
  182. u8 eap_method_count;
  183. struct hostapd_nai_realm_eap {
  184. u8 eap_method;
  185. u8 num_auths;
  186. u8 auth_id[MAX_NAI_AUTH_TYPES];
  187. u8 auth_val[MAX_NAI_AUTH_TYPES];
  188. } eap_method[MAX_NAI_EAP_METHODS];
  189. };
  190. struct anqp_element {
  191. struct dl_list list;
  192. u16 infoid;
  193. struct wpabuf *payload;
  194. };
  195. struct fils_realm {
  196. struct dl_list list;
  197. u8 hash[2];
  198. char realm[];
  199. };
  200. /**
  201. * struct hostapd_bss_config - Per-BSS configuration
  202. */
  203. struct hostapd_bss_config {
  204. char iface[IFNAMSIZ + 1];
  205. char bridge[IFNAMSIZ + 1];
  206. char vlan_bridge[IFNAMSIZ + 1];
  207. char wds_bridge[IFNAMSIZ + 1];
  208. enum hostapd_logger_level logger_syslog_level, logger_stdout_level;
  209. unsigned int logger_syslog; /* module bitfield */
  210. unsigned int logger_stdout; /* module bitfield */
  211. int max_num_sta; /* maximum number of STAs in station table */
  212. int dtim_period;
  213. int bss_load_update_period;
  214. int ieee802_1x; /* use IEEE 802.1X */
  215. int eapol_version;
  216. int eap_server; /* Use internal EAP server instead of external
  217. * RADIUS server */
  218. struct hostapd_eap_user *eap_user;
  219. char *eap_user_sqlite;
  220. char *eap_sim_db;
  221. unsigned int eap_sim_db_timeout;
  222. int eap_server_erp; /* Whether ERP is enabled on internal EAP server */
  223. struct hostapd_ip_addr own_ip_addr;
  224. char *nas_identifier;
  225. struct hostapd_radius_servers *radius;
  226. int acct_interim_interval;
  227. int radius_request_cui;
  228. struct hostapd_radius_attr *radius_auth_req_attr;
  229. struct hostapd_radius_attr *radius_acct_req_attr;
  230. int radius_das_port;
  231. unsigned int radius_das_time_window;
  232. int radius_das_require_event_timestamp;
  233. int radius_das_require_message_authenticator;
  234. struct hostapd_ip_addr radius_das_client_addr;
  235. u8 *radius_das_shared_secret;
  236. size_t radius_das_shared_secret_len;
  237. struct hostapd_ssid ssid;
  238. char *eap_req_id_text; /* optional displayable message sent with
  239. * EAP Request-Identity */
  240. size_t eap_req_id_text_len;
  241. int eapol_key_index_workaround;
  242. size_t default_wep_key_len;
  243. int individual_wep_key_len;
  244. int wep_rekeying_period;
  245. int broadcast_key_idx_min, broadcast_key_idx_max;
  246. int eap_reauth_period;
  247. int erp_send_reauth_start;
  248. char *erp_domain;
  249. int ieee802_11f; /* use IEEE 802.11f (IAPP) */
  250. char iapp_iface[IFNAMSIZ + 1]; /* interface used with IAPP broadcast
  251. * frames */
  252. enum macaddr_acl {
  253. ACCEPT_UNLESS_DENIED = 0,
  254. DENY_UNLESS_ACCEPTED = 1,
  255. USE_EXTERNAL_RADIUS_AUTH = 2
  256. } macaddr_acl;
  257. struct mac_acl_entry *accept_mac;
  258. int num_accept_mac;
  259. struct mac_acl_entry *deny_mac;
  260. int num_deny_mac;
  261. int wds_sta;
  262. int isolate;
  263. int start_disabled;
  264. int auth_algs; /* bitfield of allowed IEEE 802.11 authentication
  265. * algorithms, WPA_AUTH_ALG_{OPEN,SHARED,LEAP} */
  266. int wpa; /* bitfield of WPA_PROTO_WPA, WPA_PROTO_RSN */
  267. int wpa_key_mgmt;
  268. #ifdef CONFIG_IEEE80211W
  269. enum mfp_options ieee80211w;
  270. int group_mgmt_cipher;
  271. /* dot11AssociationSAQueryMaximumTimeout (in TUs) */
  272. unsigned int assoc_sa_query_max_timeout;
  273. /* dot11AssociationSAQueryRetryTimeout (in TUs) */
  274. int assoc_sa_query_retry_timeout;
  275. #endif /* CONFIG_IEEE80211W */
  276. enum {
  277. PSK_RADIUS_IGNORED = 0,
  278. PSK_RADIUS_ACCEPTED = 1,
  279. PSK_RADIUS_REQUIRED = 2
  280. } wpa_psk_radius;
  281. int wpa_pairwise;
  282. int wpa_group;
  283. int wpa_group_rekey;
  284. int wpa_group_rekey_set;
  285. int wpa_strict_rekey;
  286. int wpa_gmk_rekey;
  287. int wpa_ptk_rekey;
  288. u32 wpa_group_update_count;
  289. u32 wpa_pairwise_update_count;
  290. int rsn_pairwise;
  291. int rsn_preauth;
  292. char *rsn_preauth_interfaces;
  293. #ifdef CONFIG_IEEE80211R_AP
  294. /* IEEE 802.11r - Fast BSS Transition */
  295. u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
  296. u8 r1_key_holder[FT_R1KH_ID_LEN];
  297. u32 r0_key_lifetime;
  298. int rkh_pos_timeout;
  299. int rkh_neg_timeout;
  300. int rkh_pull_timeout; /* ms */
  301. int rkh_pull_retries;
  302. u32 reassociation_deadline;
  303. struct ft_remote_r0kh *r0kh_list;
  304. struct ft_remote_r1kh *r1kh_list;
  305. int pmk_r1_push;
  306. int ft_over_ds;
  307. int ft_psk_generate_local;
  308. #endif /* CONFIG_IEEE80211R_AP */
  309. char *ctrl_interface; /* directory for UNIX domain sockets */
  310. #ifndef CONFIG_NATIVE_WINDOWS
  311. gid_t ctrl_interface_gid;
  312. #endif /* CONFIG_NATIVE_WINDOWS */
  313. int ctrl_interface_gid_set;
  314. char *ca_cert;
  315. char *server_cert;
  316. char *private_key;
  317. char *private_key_passwd;
  318. int check_crl;
  319. unsigned int tls_session_lifetime;
  320. unsigned int tls_flags;
  321. char *ocsp_stapling_response;
  322. char *ocsp_stapling_response_multi;
  323. char *dh_file;
  324. char *openssl_ciphers;
  325. u8 *pac_opaque_encr_key;
  326. u8 *eap_fast_a_id;
  327. size_t eap_fast_a_id_len;
  328. char *eap_fast_a_id_info;
  329. int eap_fast_prov;
  330. int pac_key_lifetime;
  331. int pac_key_refresh_time;
  332. int eap_sim_aka_result_ind;
  333. int tnc;
  334. int fragment_size;
  335. u16 pwd_group;
  336. char *radius_server_clients;
  337. int radius_server_auth_port;
  338. int radius_server_acct_port;
  339. int radius_server_ipv6;
  340. int use_pae_group_addr; /* Whether to send EAPOL frames to PAE group
  341. * address instead of individual address
  342. * (for driver_wired.c).
  343. */
  344. int ap_max_inactivity;
  345. int ignore_broadcast_ssid;
  346. int no_probe_resp_if_max_sta;
  347. int wmm_enabled;
  348. int wmm_uapsd;
  349. struct hostapd_vlan *vlan;
  350. macaddr bssid;
  351. /*
  352. * Maximum listen interval that STAs can use when associating with this
  353. * BSS. If a STA tries to use larger value, the association will be
  354. * denied with status code 51.
  355. */
  356. u16 max_listen_interval;
  357. int disable_pmksa_caching;
  358. int okc; /* Opportunistic Key Caching */
  359. int wps_state;
  360. #ifdef CONFIG_WPS
  361. int wps_independent;
  362. int ap_setup_locked;
  363. u8 uuid[16];
  364. char *wps_pin_requests;
  365. char *device_name;
  366. char *manufacturer;
  367. char *model_name;
  368. char *model_number;
  369. char *serial_number;
  370. u8 device_type[WPS_DEV_TYPE_LEN];
  371. char *config_methods;
  372. u8 os_version[4];
  373. char *ap_pin;
  374. int skip_cred_build;
  375. u8 *extra_cred;
  376. size_t extra_cred_len;
  377. int wps_cred_processing;
  378. int force_per_enrollee_psk;
  379. u8 *ap_settings;
  380. size_t ap_settings_len;
  381. char *upnp_iface;
  382. char *friendly_name;
  383. char *manufacturer_url;
  384. char *model_description;
  385. char *model_url;
  386. char *upc;
  387. struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXTENSIONS];
  388. int wps_nfc_pw_from_config;
  389. int wps_nfc_dev_pw_id;
  390. struct wpabuf *wps_nfc_dh_pubkey;
  391. struct wpabuf *wps_nfc_dh_privkey;
  392. struct wpabuf *wps_nfc_dev_pw;
  393. #endif /* CONFIG_WPS */
  394. int pbc_in_m1;
  395. char *server_id;
  396. #define P2P_ENABLED BIT(0)
  397. #define P2P_GROUP_OWNER BIT(1)
  398. #define P2P_GROUP_FORMATION BIT(2)
  399. #define P2P_MANAGE BIT(3)
  400. #define P2P_ALLOW_CROSS_CONNECTION BIT(4)
  401. int p2p;
  402. #ifdef CONFIG_P2P
  403. u8 ip_addr_go[4];
  404. u8 ip_addr_mask[4];
  405. u8 ip_addr_start[4];
  406. u8 ip_addr_end[4];
  407. #endif /* CONFIG_P2P */
  408. int disassoc_low_ack;
  409. int skip_inactivity_poll;
  410. #define TDLS_PROHIBIT BIT(0)
  411. #define TDLS_PROHIBIT_CHAN_SWITCH BIT(1)
  412. int tdls;
  413. int disable_11n;
  414. int disable_11ac;
  415. /* IEEE 802.11v */
  416. int time_advertisement;
  417. char *time_zone;
  418. int wnm_sleep_mode;
  419. int bss_transition;
  420. /* IEEE 802.11u - Interworking */
  421. int interworking;
  422. int access_network_type;
  423. int internet;
  424. int asra;
  425. int esr;
  426. int uesa;
  427. int venue_info_set;
  428. u8 venue_group;
  429. u8 venue_type;
  430. u8 hessid[ETH_ALEN];
  431. /* IEEE 802.11u - Roaming Consortium list */
  432. unsigned int roaming_consortium_count;
  433. struct hostapd_roaming_consortium *roaming_consortium;
  434. /* IEEE 802.11u - Venue Name duples */
  435. unsigned int venue_name_count;
  436. struct hostapd_lang_string *venue_name;
  437. /* IEEE 802.11u - Network Authentication Type */
  438. u8 *network_auth_type;
  439. size_t network_auth_type_len;
  440. /* IEEE 802.11u - IP Address Type Availability */
  441. u8 ipaddr_type_availability;
  442. u8 ipaddr_type_configured;
  443. /* IEEE 802.11u - 3GPP Cellular Network */
  444. u8 *anqp_3gpp_cell_net;
  445. size_t anqp_3gpp_cell_net_len;
  446. /* IEEE 802.11u - Domain Name */
  447. u8 *domain_name;
  448. size_t domain_name_len;
  449. unsigned int nai_realm_count;
  450. struct hostapd_nai_realm_data *nai_realm_data;
  451. struct dl_list anqp_elem; /* list of struct anqp_element */
  452. u16 gas_comeback_delay;
  453. size_t gas_frag_limit;
  454. int gas_address3;
  455. u8 qos_map_set[16 + 2 * 21];
  456. unsigned int qos_map_set_len;
  457. int osen;
  458. int proxy_arp;
  459. int na_mcast_to_ucast;
  460. #ifdef CONFIG_HS20
  461. int hs20;
  462. int disable_dgaf;
  463. u16 anqp_domain_id;
  464. unsigned int hs20_oper_friendly_name_count;
  465. struct hostapd_lang_string *hs20_oper_friendly_name;
  466. u8 *hs20_wan_metrics;
  467. u8 *hs20_connection_capability;
  468. size_t hs20_connection_capability_len;
  469. u8 *hs20_operating_class;
  470. u8 hs20_operating_class_len;
  471. struct hs20_icon {
  472. u16 width;
  473. u16 height;
  474. char language[3];
  475. char type[256];
  476. char name[256];
  477. char file[256];
  478. } *hs20_icons;
  479. size_t hs20_icons_count;
  480. u8 osu_ssid[SSID_MAX_LEN];
  481. size_t osu_ssid_len;
  482. struct hs20_osu_provider {
  483. unsigned int friendly_name_count;
  484. struct hostapd_lang_string *friendly_name;
  485. char *server_uri;
  486. int *method_list;
  487. char **icons;
  488. size_t icons_count;
  489. char *osu_nai;
  490. unsigned int service_desc_count;
  491. struct hostapd_lang_string *service_desc;
  492. } *hs20_osu_providers, *last_osu;
  493. size_t hs20_osu_providers_count;
  494. unsigned int hs20_deauth_req_timeout;
  495. char *subscr_remediation_url;
  496. u8 subscr_remediation_method;
  497. #endif /* CONFIG_HS20 */
  498. u8 wps_rf_bands; /* RF bands for WPS (WPS_RF_*) */
  499. #ifdef CONFIG_RADIUS_TEST
  500. char *dump_msk_file;
  501. #endif /* CONFIG_RADIUS_TEST */
  502. struct wpabuf *vendor_elements;
  503. struct wpabuf *assocresp_elements;
  504. unsigned int sae_anti_clogging_threshold;
  505. int *sae_groups;
  506. char *sae_password;
  507. char *wowlan_triggers; /* Wake-on-WLAN triggers */
  508. #ifdef CONFIG_TESTING_OPTIONS
  509. u8 bss_load_test[5];
  510. u8 bss_load_test_set;
  511. struct wpabuf *own_ie_override;
  512. int sae_reflection_attack;
  513. struct wpabuf *sae_commit_override;
  514. #endif /* CONFIG_TESTING_OPTIONS */
  515. #define MESH_ENABLED BIT(0)
  516. int mesh;
  517. u8 radio_measurements[RRM_CAPABILITIES_IE_LEN];
  518. int vendor_vht;
  519. int use_sta_nsts;
  520. char *no_probe_resp_if_seen_on;
  521. char *no_auth_if_seen_on;
  522. int pbss;
  523. #ifdef CONFIG_MBO
  524. int mbo_enabled;
  525. /**
  526. * oce - Enable OCE in AP and/or STA-CFON mode
  527. * - BIT(0) is Reserved
  528. * - Set BIT(1) to enable OCE in STA-CFON mode
  529. * - Set BIT(2) to enable OCE in AP mode
  530. */
  531. unsigned int oce;
  532. int mbo_cell_data_conn_pref;
  533. #endif /* CONFIG_MBO */
  534. int ftm_responder;
  535. int ftm_initiator;
  536. #ifdef CONFIG_FILS
  537. u8 fils_cache_id[FILS_CACHE_ID_LEN];
  538. int fils_cache_id_set;
  539. struct dl_list fils_realms; /* list of struct fils_realm */
  540. int fils_dh_group;
  541. struct hostapd_ip_addr dhcp_server;
  542. int dhcp_rapid_commit_proxy;
  543. unsigned int fils_hlp_wait_time;
  544. u16 dhcp_server_port;
  545. u16 dhcp_relay_port;
  546. #endif /* CONFIG_FILS */
  547. int multicast_to_unicast;
  548. int broadcast_deauth;
  549. #ifdef CONFIG_DPP
  550. char *dpp_connector;
  551. struct wpabuf *dpp_netaccesskey;
  552. unsigned int dpp_netaccesskey_expiry;
  553. struct wpabuf *dpp_csign;
  554. #endif /* CONFIG_DPP */
  555. #ifdef CONFIG_OWE
  556. macaddr owe_transition_bssid;
  557. u8 owe_transition_ssid[SSID_MAX_LEN];
  558. size_t owe_transition_ssid_len;
  559. char owe_transition_ifname[IFNAMSIZ + 1];
  560. int *owe_groups;
  561. #endif /* CONFIG_OWE */
  562. };
  563. /**
  564. * struct he_phy_capabilities_info - HE PHY capabilities
  565. */
  566. struct he_phy_capabilities_info {
  567. Boolean he_su_beamformer;
  568. Boolean he_su_beamformee;
  569. Boolean he_mu_beamformer;
  570. };
  571. /**
  572. * struct he_operation - HE operation
  573. */
  574. struct he_operation {
  575. u8 he_bss_color;
  576. u8 he_default_pe_duration;
  577. u8 he_twt_required;
  578. u8 he_rts_threshold;
  579. };
  580. /**
  581. * struct hostapd_config - Per-radio interface configuration
  582. */
  583. struct hostapd_config {
  584. struct hostapd_bss_config **bss, *last_bss;
  585. size_t num_bss;
  586. u16 beacon_int;
  587. int rts_threshold;
  588. int fragm_threshold;
  589. u8 send_probe_response;
  590. u8 channel;
  591. u8 acs;
  592. struct wpa_freq_range_list acs_ch_list;
  593. int acs_exclude_dfs;
  594. enum hostapd_hw_mode hw_mode; /* HOSTAPD_MODE_IEEE80211A, .. */
  595. enum {
  596. LONG_PREAMBLE = 0,
  597. SHORT_PREAMBLE = 1
  598. } preamble;
  599. int *supported_rates;
  600. int *basic_rates;
  601. unsigned int beacon_rate;
  602. enum beacon_rate_type rate_type;
  603. const struct wpa_driver_ops *driver;
  604. char *driver_params;
  605. int ap_table_max_size;
  606. int ap_table_expiration_time;
  607. unsigned int track_sta_max_num;
  608. unsigned int track_sta_max_age;
  609. char country[3]; /* first two octets: country code as described in
  610. * ISO/IEC 3166-1. Third octet:
  611. * ' ' (ascii 32): all environments
  612. * 'O': Outdoor environemnt only
  613. * 'I': Indoor environment only
  614. * 'X': Used with noncountry entity ("XXX")
  615. * 0x00..0x31: identifying IEEE 802.11 standard
  616. * Annex E table (0x04 = global table)
  617. */
  618. int ieee80211d;
  619. int ieee80211h; /* DFS */
  620. /*
  621. * Local power constraint is an octet encoded as an unsigned integer in
  622. * units of decibels. Invalid value -1 indicates that Power Constraint
  623. * element will not be added.
  624. */
  625. int local_pwr_constraint;
  626. /* Control Spectrum Management bit */
  627. int spectrum_mgmt_required;
  628. struct hostapd_tx_queue_params tx_queue[NUM_TX_QUEUES];
  629. /*
  630. * WMM AC parameters, in same order as 802.1D, i.e.
  631. * 0 = BE (best effort)
  632. * 1 = BK (background)
  633. * 2 = VI (video)
  634. * 3 = VO (voice)
  635. */
  636. struct hostapd_wmm_ac_params wmm_ac_params[4];
  637. int ht_op_mode_fixed;
  638. u16 ht_capab;
  639. int ieee80211n;
  640. int secondary_channel;
  641. int no_pri_sec_switch;
  642. int require_ht;
  643. int obss_interval;
  644. u32 vht_capab;
  645. int ieee80211ac;
  646. int require_vht;
  647. u8 vht_oper_chwidth;
  648. u8 vht_oper_centr_freq_seg0_idx;
  649. u8 vht_oper_centr_freq_seg1_idx;
  650. u8 ht40_plus_minus_allowed;
  651. /* Use driver-generated interface addresses when adding multiple BSSs */
  652. u8 use_driver_iface_addr;
  653. #ifdef CONFIG_FST
  654. struct fst_iface_cfg fst_cfg;
  655. #endif /* CONFIG_FST */
  656. #ifdef CONFIG_P2P
  657. u8 p2p_go_ctwindow;
  658. #endif /* CONFIG_P2P */
  659. #ifdef CONFIG_TESTING_OPTIONS
  660. double ignore_probe_probability;
  661. double ignore_auth_probability;
  662. double ignore_assoc_probability;
  663. double ignore_reassoc_probability;
  664. double corrupt_gtk_rekey_mic_probability;
  665. int ecsa_ie_only;
  666. #endif /* CONFIG_TESTING_OPTIONS */
  667. #ifdef CONFIG_ACS
  668. unsigned int acs_num_scans;
  669. struct acs_bias {
  670. int channel;
  671. double bias;
  672. } *acs_chan_bias;
  673. unsigned int num_acs_chan_bias;
  674. #endif /* CONFIG_ACS */
  675. struct wpabuf *lci;
  676. struct wpabuf *civic;
  677. int stationary_ap;
  678. int ieee80211ax;
  679. #ifdef CONFIG_IEEE80211AX
  680. struct he_phy_capabilities_info he_phy_capab;
  681. struct he_operation he_op;
  682. #endif /* CONFIG_IEEE80211AX */
  683. };
  684. int hostapd_mac_comp(const void *a, const void *b);
  685. struct hostapd_config * hostapd_config_defaults(void);
  686. void hostapd_config_defaults_bss(struct hostapd_bss_config *bss);
  687. void hostapd_config_free_eap_user(struct hostapd_eap_user *user);
  688. void hostapd_config_free_eap_users(struct hostapd_eap_user *user);
  689. void hostapd_config_clear_wpa_psk(struct hostapd_wpa_psk **p);
  690. void hostapd_config_free_bss(struct hostapd_bss_config *conf);
  691. void hostapd_config_free(struct hostapd_config *conf);
  692. int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
  693. const u8 *addr, struct vlan_description *vlan_id);
  694. int hostapd_rate_found(int *list, int rate);
  695. const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
  696. const u8 *addr, const u8 *p2p_dev_addr,
  697. const u8 *prev_psk);
  698. int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf);
  699. int hostapd_vlan_valid(struct hostapd_vlan *vlan,
  700. struct vlan_description *vlan_desc);
  701. const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan,
  702. int vlan_id);
  703. struct hostapd_radius_attr *
  704. hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type);
  705. int hostapd_config_check(struct hostapd_config *conf, int full_config);
  706. void hostapd_set_security_params(struct hostapd_bss_config *bss,
  707. int full_config);
  708. #endif /* HOSTAPD_CONFIG_H */