ap_config.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787
  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_strict_rekey;
  285. int wpa_gmk_rekey;
  286. int wpa_ptk_rekey;
  287. u32 wpa_group_update_count;
  288. u32 wpa_pairwise_update_count;
  289. int rsn_pairwise;
  290. int rsn_preauth;
  291. char *rsn_preauth_interfaces;
  292. int peerkey;
  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. u32 reassociation_deadline;
  299. struct ft_remote_r0kh *r0kh_list;
  300. struct ft_remote_r1kh *r1kh_list;
  301. int pmk_r1_push;
  302. int ft_over_ds;
  303. int ft_psk_generate_local;
  304. #endif /* CONFIG_IEEE80211R_AP */
  305. char *ctrl_interface; /* directory for UNIX domain sockets */
  306. #ifndef CONFIG_NATIVE_WINDOWS
  307. gid_t ctrl_interface_gid;
  308. #endif /* CONFIG_NATIVE_WINDOWS */
  309. int ctrl_interface_gid_set;
  310. char *ca_cert;
  311. char *server_cert;
  312. char *private_key;
  313. char *private_key_passwd;
  314. int check_crl;
  315. unsigned int tls_session_lifetime;
  316. char *ocsp_stapling_response;
  317. char *ocsp_stapling_response_multi;
  318. char *dh_file;
  319. char *openssl_ciphers;
  320. u8 *pac_opaque_encr_key;
  321. u8 *eap_fast_a_id;
  322. size_t eap_fast_a_id_len;
  323. char *eap_fast_a_id_info;
  324. int eap_fast_prov;
  325. int pac_key_lifetime;
  326. int pac_key_refresh_time;
  327. int eap_sim_aka_result_ind;
  328. int tnc;
  329. int fragment_size;
  330. u16 pwd_group;
  331. char *radius_server_clients;
  332. int radius_server_auth_port;
  333. int radius_server_acct_port;
  334. int radius_server_ipv6;
  335. int use_pae_group_addr; /* Whether to send EAPOL frames to PAE group
  336. * address instead of individual address
  337. * (for driver_wired.c).
  338. */
  339. int ap_max_inactivity;
  340. int ignore_broadcast_ssid;
  341. int no_probe_resp_if_max_sta;
  342. int wmm_enabled;
  343. int wmm_uapsd;
  344. struct hostapd_vlan *vlan;
  345. macaddr bssid;
  346. /*
  347. * Maximum listen interval that STAs can use when associating with this
  348. * BSS. If a STA tries to use larger value, the association will be
  349. * denied with status code 51.
  350. */
  351. u16 max_listen_interval;
  352. int disable_pmksa_caching;
  353. int okc; /* Opportunistic Key Caching */
  354. int wps_state;
  355. #ifdef CONFIG_WPS
  356. int wps_independent;
  357. int ap_setup_locked;
  358. u8 uuid[16];
  359. char *wps_pin_requests;
  360. char *device_name;
  361. char *manufacturer;
  362. char *model_name;
  363. char *model_number;
  364. char *serial_number;
  365. u8 device_type[WPS_DEV_TYPE_LEN];
  366. char *config_methods;
  367. u8 os_version[4];
  368. char *ap_pin;
  369. int skip_cred_build;
  370. u8 *extra_cred;
  371. size_t extra_cred_len;
  372. int wps_cred_processing;
  373. int force_per_enrollee_psk;
  374. u8 *ap_settings;
  375. size_t ap_settings_len;
  376. char *upnp_iface;
  377. char *friendly_name;
  378. char *manufacturer_url;
  379. char *model_description;
  380. char *model_url;
  381. char *upc;
  382. struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXTENSIONS];
  383. int wps_nfc_pw_from_config;
  384. int wps_nfc_dev_pw_id;
  385. struct wpabuf *wps_nfc_dh_pubkey;
  386. struct wpabuf *wps_nfc_dh_privkey;
  387. struct wpabuf *wps_nfc_dev_pw;
  388. #endif /* CONFIG_WPS */
  389. int pbc_in_m1;
  390. char *server_id;
  391. #define P2P_ENABLED BIT(0)
  392. #define P2P_GROUP_OWNER BIT(1)
  393. #define P2P_GROUP_FORMATION BIT(2)
  394. #define P2P_MANAGE BIT(3)
  395. #define P2P_ALLOW_CROSS_CONNECTION BIT(4)
  396. int p2p;
  397. #ifdef CONFIG_P2P
  398. u8 ip_addr_go[4];
  399. u8 ip_addr_mask[4];
  400. u8 ip_addr_start[4];
  401. u8 ip_addr_end[4];
  402. #endif /* CONFIG_P2P */
  403. int disassoc_low_ack;
  404. int skip_inactivity_poll;
  405. #define TDLS_PROHIBIT BIT(0)
  406. #define TDLS_PROHIBIT_CHAN_SWITCH BIT(1)
  407. int tdls;
  408. int disable_11n;
  409. int disable_11ac;
  410. /* IEEE 802.11v */
  411. int time_advertisement;
  412. char *time_zone;
  413. int wnm_sleep_mode;
  414. int bss_transition;
  415. /* IEEE 802.11u - Interworking */
  416. int interworking;
  417. int access_network_type;
  418. int internet;
  419. int asra;
  420. int esr;
  421. int uesa;
  422. int venue_info_set;
  423. u8 venue_group;
  424. u8 venue_type;
  425. u8 hessid[ETH_ALEN];
  426. /* IEEE 802.11u - Roaming Consortium list */
  427. unsigned int roaming_consortium_count;
  428. struct hostapd_roaming_consortium *roaming_consortium;
  429. /* IEEE 802.11u - Venue Name duples */
  430. unsigned int venue_name_count;
  431. struct hostapd_lang_string *venue_name;
  432. /* IEEE 802.11u - Network Authentication Type */
  433. u8 *network_auth_type;
  434. size_t network_auth_type_len;
  435. /* IEEE 802.11u - IP Address Type Availability */
  436. u8 ipaddr_type_availability;
  437. u8 ipaddr_type_configured;
  438. /* IEEE 802.11u - 3GPP Cellular Network */
  439. u8 *anqp_3gpp_cell_net;
  440. size_t anqp_3gpp_cell_net_len;
  441. /* IEEE 802.11u - Domain Name */
  442. u8 *domain_name;
  443. size_t domain_name_len;
  444. unsigned int nai_realm_count;
  445. struct hostapd_nai_realm_data *nai_realm_data;
  446. struct dl_list anqp_elem; /* list of struct anqp_element */
  447. u16 gas_comeback_delay;
  448. size_t gas_frag_limit;
  449. int gas_address3;
  450. u8 qos_map_set[16 + 2 * 21];
  451. unsigned int qos_map_set_len;
  452. int osen;
  453. int proxy_arp;
  454. int na_mcast_to_ucast;
  455. #ifdef CONFIG_HS20
  456. int hs20;
  457. int disable_dgaf;
  458. u16 anqp_domain_id;
  459. unsigned int hs20_oper_friendly_name_count;
  460. struct hostapd_lang_string *hs20_oper_friendly_name;
  461. u8 *hs20_wan_metrics;
  462. u8 *hs20_connection_capability;
  463. size_t hs20_connection_capability_len;
  464. u8 *hs20_operating_class;
  465. u8 hs20_operating_class_len;
  466. struct hs20_icon {
  467. u16 width;
  468. u16 height;
  469. char language[3];
  470. char type[256];
  471. char name[256];
  472. char file[256];
  473. } *hs20_icons;
  474. size_t hs20_icons_count;
  475. u8 osu_ssid[SSID_MAX_LEN];
  476. size_t osu_ssid_len;
  477. struct hs20_osu_provider {
  478. unsigned int friendly_name_count;
  479. struct hostapd_lang_string *friendly_name;
  480. char *server_uri;
  481. int *method_list;
  482. char **icons;
  483. size_t icons_count;
  484. char *osu_nai;
  485. unsigned int service_desc_count;
  486. struct hostapd_lang_string *service_desc;
  487. } *hs20_osu_providers, *last_osu;
  488. size_t hs20_osu_providers_count;
  489. unsigned int hs20_deauth_req_timeout;
  490. char *subscr_remediation_url;
  491. u8 subscr_remediation_method;
  492. #endif /* CONFIG_HS20 */
  493. u8 wps_rf_bands; /* RF bands for WPS (WPS_RF_*) */
  494. #ifdef CONFIG_RADIUS_TEST
  495. char *dump_msk_file;
  496. #endif /* CONFIG_RADIUS_TEST */
  497. struct wpabuf *vendor_elements;
  498. struct wpabuf *assocresp_elements;
  499. unsigned int sae_anti_clogging_threshold;
  500. int *sae_groups;
  501. char *wowlan_triggers; /* Wake-on-WLAN triggers */
  502. #ifdef CONFIG_TESTING_OPTIONS
  503. u8 bss_load_test[5];
  504. u8 bss_load_test_set;
  505. struct wpabuf *own_ie_override;
  506. #endif /* CONFIG_TESTING_OPTIONS */
  507. #define MESH_ENABLED BIT(0)
  508. int mesh;
  509. u8 radio_measurements[RRM_CAPABILITIES_IE_LEN];
  510. int vendor_vht;
  511. int use_sta_nsts;
  512. char *no_probe_resp_if_seen_on;
  513. char *no_auth_if_seen_on;
  514. int pbss;
  515. #ifdef CONFIG_MBO
  516. int mbo_enabled;
  517. #endif /* CONFIG_MBO */
  518. int ftm_responder;
  519. int ftm_initiator;
  520. #ifdef CONFIG_FILS
  521. u8 fils_cache_id[FILS_CACHE_ID_LEN];
  522. int fils_cache_id_set;
  523. struct dl_list fils_realms; /* list of struct fils_realm */
  524. struct hostapd_ip_addr dhcp_server;
  525. int dhcp_rapid_commit_proxy;
  526. unsigned int fils_hlp_wait_time;
  527. u16 dhcp_server_port;
  528. u16 dhcp_relay_port;
  529. #endif /* CONFIG_FILS */
  530. int multicast_to_unicast;
  531. };
  532. /**
  533. * struct he_phy_capabilities_info - HE PHY capabilities
  534. */
  535. struct he_phy_capabilities_info {
  536. Boolean he_su_beamformer;
  537. Boolean he_su_beamformee;
  538. Boolean he_mu_beamformer;
  539. };
  540. /**
  541. * struct he_operation - HE operation
  542. */
  543. struct he_operation {
  544. u8 he_bss_color;
  545. u8 he_default_pe_duration;
  546. u8 he_twt_required;
  547. u8 he_rts_threshold;
  548. };
  549. /**
  550. * struct hostapd_config - Per-radio interface configuration
  551. */
  552. struct hostapd_config {
  553. struct hostapd_bss_config **bss, *last_bss;
  554. size_t num_bss;
  555. u16 beacon_int;
  556. int rts_threshold;
  557. int fragm_threshold;
  558. u8 send_probe_response;
  559. u8 channel;
  560. u8 acs;
  561. struct wpa_freq_range_list acs_ch_list;
  562. enum hostapd_hw_mode hw_mode; /* HOSTAPD_MODE_IEEE80211A, .. */
  563. enum {
  564. LONG_PREAMBLE = 0,
  565. SHORT_PREAMBLE = 1
  566. } preamble;
  567. int *supported_rates;
  568. int *basic_rates;
  569. unsigned int beacon_rate;
  570. enum beacon_rate_type rate_type;
  571. const struct wpa_driver_ops *driver;
  572. char *driver_params;
  573. int ap_table_max_size;
  574. int ap_table_expiration_time;
  575. unsigned int track_sta_max_num;
  576. unsigned int track_sta_max_age;
  577. char country[3]; /* first two octets: country code as described in
  578. * ISO/IEC 3166-1. Third octet:
  579. * ' ' (ascii 32): all environments
  580. * 'O': Outdoor environemnt only
  581. * 'I': Indoor environment only
  582. */
  583. int ieee80211d;
  584. int ieee80211h; /* DFS */
  585. /*
  586. * Local power constraint is an octet encoded as an unsigned integer in
  587. * units of decibels. Invalid value -1 indicates that Power Constraint
  588. * element will not be added.
  589. */
  590. int local_pwr_constraint;
  591. /* Control Spectrum Management bit */
  592. int spectrum_mgmt_required;
  593. struct hostapd_tx_queue_params tx_queue[NUM_TX_QUEUES];
  594. /*
  595. * WMM AC parameters, in same order as 802.1D, i.e.
  596. * 0 = BE (best effort)
  597. * 1 = BK (background)
  598. * 2 = VI (video)
  599. * 3 = VO (voice)
  600. */
  601. struct hostapd_wmm_ac_params wmm_ac_params[4];
  602. int ht_op_mode_fixed;
  603. u16 ht_capab;
  604. int ieee80211n;
  605. int secondary_channel;
  606. int no_pri_sec_switch;
  607. int require_ht;
  608. int obss_interval;
  609. u32 vht_capab;
  610. int ieee80211ac;
  611. int require_vht;
  612. u8 vht_oper_chwidth;
  613. u8 vht_oper_centr_freq_seg0_idx;
  614. u8 vht_oper_centr_freq_seg1_idx;
  615. /* Use driver-generated interface addresses when adding multiple BSSs */
  616. u8 use_driver_iface_addr;
  617. #ifdef CONFIG_FST
  618. struct fst_iface_cfg fst_cfg;
  619. #endif /* CONFIG_FST */
  620. #ifdef CONFIG_P2P
  621. u8 p2p_go_ctwindow;
  622. #endif /* CONFIG_P2P */
  623. #ifdef CONFIG_TESTING_OPTIONS
  624. double ignore_probe_probability;
  625. double ignore_auth_probability;
  626. double ignore_assoc_probability;
  627. double ignore_reassoc_probability;
  628. double corrupt_gtk_rekey_mic_probability;
  629. int ecsa_ie_only;
  630. #endif /* CONFIG_TESTING_OPTIONS */
  631. #ifdef CONFIG_ACS
  632. unsigned int acs_num_scans;
  633. struct acs_bias {
  634. int channel;
  635. double bias;
  636. } *acs_chan_bias;
  637. unsigned int num_acs_chan_bias;
  638. #endif /* CONFIG_ACS */
  639. struct wpabuf *lci;
  640. struct wpabuf *civic;
  641. int stationary_ap;
  642. int ieee80211ax;
  643. #ifdef CONFIG_IEEE80211AX
  644. struct he_phy_capabilities_info he_phy_capab;
  645. struct he_operation he_op;
  646. #endif /* CONFIG_IEEE80211AX */
  647. };
  648. int hostapd_mac_comp(const void *a, const void *b);
  649. struct hostapd_config * hostapd_config_defaults(void);
  650. void hostapd_config_defaults_bss(struct hostapd_bss_config *bss);
  651. void hostapd_config_free_eap_user(struct hostapd_eap_user *user);
  652. void hostapd_config_free_eap_users(struct hostapd_eap_user *user);
  653. void hostapd_config_clear_wpa_psk(struct hostapd_wpa_psk **p);
  654. void hostapd_config_free_bss(struct hostapd_bss_config *conf);
  655. void hostapd_config_free(struct hostapd_config *conf);
  656. int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
  657. const u8 *addr, struct vlan_description *vlan_id);
  658. int hostapd_rate_found(int *list, int rate);
  659. const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
  660. const u8 *addr, const u8 *p2p_dev_addr,
  661. const u8 *prev_psk);
  662. int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf);
  663. int hostapd_vlan_valid(struct hostapd_vlan *vlan,
  664. struct vlan_description *vlan_desc);
  665. const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan,
  666. int vlan_id);
  667. struct hostapd_radius_attr *
  668. hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type);
  669. int hostapd_config_check(struct hostapd_config *conf, int full_config);
  670. void hostapd_set_security_params(struct hostapd_bss_config *bss,
  671. int full_config);
  672. #endif /* HOSTAPD_CONFIG_H */