ap_config.h 12 KB

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