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