mesh: Make inactivity timer configurable
[mech_eap.git] / wpa_supplicant / config_file.c
index 7ad3f93..9c9685a 100644 (file)
@@ -143,6 +143,15 @@ static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
                ssid->group_cipher &= ~WPA_CIPHER_CCMP;
        }
 
+       if (ssid->mode == WPAS_MODE_MESH &&
+           (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
+           ssid->key_mgmt != WPA_KEY_MGMT_SAE)) {
+               wpa_printf(MSG_ERROR,
+                          "Line %d: key_mgmt for mesh network should be open or SAE",
+                          line);
+               errors++;
+       }
+
        return errors;
 }
 
@@ -219,6 +228,7 @@ static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
        if (cred == NULL)
                return NULL;
        cred->id = id;
+       cred->sim_num = DEFAULT_USER_SELECTED_SIM;
 
        while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
                if (os_strcmp(pos, "}") == 0) {
@@ -351,8 +361,8 @@ struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
        FILE *f;
        char buf[512], *pos;
        int errors = 0, line = 0;
-       struct wpa_ssid *ssid, *tail = NULL, *head = NULL;
-       struct wpa_cred *cred, *cred_tail = NULL, *cred_head = NULL;
+       struct wpa_ssid *ssid, *tail, *head;
+       struct wpa_cred *cred, *cred_tail, *cred_head;
        struct wpa_config *config;
        int id = 0;
        int cred_id = 0;
@@ -368,8 +378,12 @@ struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
                           "structure");
                return NULL;
        }
-       head = config->ssid;
-       cred_head = config->cred;
+       tail = head = config->ssid;
+       while (tail && tail->next)
+               tail = tail->next;
+       cred_tail = cred_head = config->cred;
+       while (cred_tail && cred_tail->next)
+               cred_tail = cred_tail->next;
 
        wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
        f = fopen(name, "r");
@@ -594,7 +608,7 @@ static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
        int res;
 
        res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
-       if (res < 0 || (size_t) res >= sizeof(field))
+       if (os_snprintf_error(sizeof(field), res))
                return;
        value = wpa_config_get(ssid, field);
        if (value) {
@@ -677,6 +691,7 @@ static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
        STR(subject_match);
        STR(altsubject_match);
        STR(domain_suffix_match);
+       STR(domain_match);
        STR(ca_cert2);
        STR(ca_path2);
        STR(client_cert2);
@@ -686,6 +701,7 @@ static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
        STR(subject_match2);
        STR(altsubject_match2);
        STR(domain_suffix_match2);
+       STR(domain_match2);
        STR(phase1);
        STR(phase2);
        STR(pcsc);
@@ -702,6 +718,7 @@ static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
        INTe(engine);
        INTe(engine2);
        INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
+       INTe(erp);
 #endif /* IEEE8021X_EAPOL */
        for (i = 0; i < 4; i++)
                write_wep_key(f, i, ssid);
@@ -711,6 +728,8 @@ static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
        INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
        STR(pac_file);
        INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
+       INTe(ocsp);
+       INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM);
 #endif /* IEEE8021X_EAPOL */
        INT(mode);
        INT(frequency);
@@ -729,6 +748,20 @@ static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
 #endif /* CONFIG_P2P */
        INT(dtim_period);
        INT(beacon_int);
+#ifdef CONFIG_MACSEC
+       INT(macsec_policy);
+#endif /* CONFIG_MACSEC */
+#ifdef CONFIG_HS20
+       INT(update_identifier);
+#endif /* CONFIG_HS20 */
+       write_int(f, "mac_addr", ssid->mac_addr, -1);
+#ifdef CONFIG_MESH
+       STR(mesh_basic_rates);
+       INT_DEF(dot11MeshMaxRetries, DEFAULT_MESH_MAX_RETRIES);
+       INT_DEF(dot11MeshRetryTimeout, DEFAULT_MESH_RETRY_TIMEOUT);
+       INT_DEF(dot11MeshConfirmTimeout, DEFAULT_MESH_CONFIRM_TIMEOUT);
+       INT_DEF(dot11MeshHoldingTimeout, DEFAULT_MESH_HOLDING_TIMEOUT);
+#endif /* CONFIG_MESH */
 
 #undef STR
 #undef INT
@@ -768,7 +801,7 @@ static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
        for (i = 0; i < cred->num_domain; i++)
                fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
        if (cred->domain_suffix_match)
-               fprintf(f, "\tdomain_suffix_match=\"%s\"",
+               fprintf(f, "\tdomain_suffix_match=\"%s\"\n",
                        cred->domain_suffix_match);
        if (cred->roaming_consortium_len) {
                fprintf(f, "\troaming_consortium=");
@@ -780,7 +813,8 @@ static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
                const char *name;
                name = eap_get_name(cred->eap_method[0].vendor,
                                    cred->eap_method[0].method);
-               fprintf(f, "\teap=%s\n", name);
+               if (name)
+                       fprintf(f, "\teap=%s\n", name);
        }
        if (cred->phase1)
                fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
@@ -806,6 +840,60 @@ static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
        }
        if (cred->update_identifier)
                fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
+
+       if (cred->provisioning_sp)
+               fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
+       if (cred->sp_priority)
+               fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
+
+       if (cred->min_dl_bandwidth_home)
+               fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
+                       cred->min_dl_bandwidth_home);
+       if (cred->min_ul_bandwidth_home)
+               fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
+                       cred->min_ul_bandwidth_home);
+       if (cred->min_dl_bandwidth_roaming)
+               fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
+                       cred->min_dl_bandwidth_roaming);
+       if (cred->min_ul_bandwidth_roaming)
+               fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
+                       cred->min_ul_bandwidth_roaming);
+
+       if (cred->max_bss_load)
+               fprintf(f, "\tmax_bss_load=%u\n",
+                       cred->max_bss_load);
+
+       if (cred->ocsp)
+               fprintf(f, "\tocsp=%d\n", cred->ocsp);
+
+       if (cred->num_req_conn_capab) {
+               for (i = 0; i < cred->num_req_conn_capab; i++) {
+                       int *ports;
+
+                       fprintf(f, "\treq_conn_capab=%u",
+                               cred->req_conn_capab_proto[i]);
+                       ports = cred->req_conn_capab_port[i];
+                       if (ports) {
+                               int j;
+                               for (j = 0; ports[j] != -1; j++) {
+                                       fprintf(f, "%s%d", j > 0 ? "," : ":",
+                                               ports[j]);
+                               }
+                       }
+                       fprintf(f, "\n");
+               }
+       }
+
+       if (cred->required_roaming_consortium_len) {
+               fprintf(f, "\trequired_roaming_consortium=");
+               for (i = 0; i < cred->required_roaming_consortium_len; i++)
+                       fprintf(f, "%02x",
+                               cred->required_roaming_consortium[i]);
+               fprintf(f, "\n");
+       }
+
+       if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
+               fprintf(f, "\tsim_num=%d\n", cred->sim_num);
 }
 
 
@@ -869,6 +957,8 @@ static void wpa_config_write_global(FILE *f, struct wpa_config *config)
        if (config->pkcs11_module_path)
                fprintf(f, "pkcs11_module_path=%s\n",
                        config->pkcs11_module_path);
+       if (config->openssl_ciphers)
+               fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers);
        if (config->pcsc_reader)
                fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
        if (config->pcsc_pin)
@@ -951,6 +1041,9 @@ static void wpa_config_write_global(FILE *f, struct wpa_config *config)
                fprintf(f, "p2p_intra_bss=%u\n", config->p2p_intra_bss);
        if (config->p2p_group_idle)
                fprintf(f, "p2p_group_idle=%u\n", config->p2p_group_idle);
+       if (config->p2p_passphrase_len)
+               fprintf(f, "p2p_passphrase_len=%u\n",
+                       config->p2p_passphrase_len);
        if (config->p2p_pref_chan) {
                unsigned int i;
                fprintf(f, "p2p_pref_chan=");
@@ -970,6 +1063,10 @@ static void wpa_config_write_global(FILE *f, struct wpa_config *config)
        }
        if (config->p2p_add_cli_chan)
                fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
+       if (config->p2p_optimize_listen_chan !=
+           DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN)
+               fprintf(f, "p2p_optimize_listen_chan=%d\n",
+                       config->p2p_optimize_listen_chan);
        if (config->p2p_go_ht40)
                fprintf(f, "p2p_go_ht40=%u\n", config->p2p_go_ht40);
        if (config->p2p_go_vht)
@@ -1093,6 +1190,43 @@ static void wpa_config_write_global(FILE *f, struct wpa_config *config)
        if (config->tdls_external_control)
                fprintf(f, "tdls_external_control=%d\n",
                        config->tdls_external_control);
+
+       if (config->wowlan_triggers)
+               fprintf(f, "wowlan_triggers=%s\n",
+                       config->wowlan_triggers);
+
+       if (config->bgscan)
+               fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
+
+       if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY)
+               fprintf(f, "p2p_search_delay=%u\n",
+                       config->p2p_search_delay);
+
+       if (config->mac_addr)
+               fprintf(f, "mac_addr=%d\n", config->mac_addr);
+
+       if (config->rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
+               fprintf(f, "rand_addr_lifetime=%u\n",
+                       config->rand_addr_lifetime);
+
+       if (config->preassoc_mac_addr)
+               fprintf(f, "preassoc_mac_addr=%d\n", config->preassoc_mac_addr);
+
+       if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD)
+               fprintf(f, "key_mgmt_offload=%u\n", config->key_mgmt_offload);
+
+       if (config->user_mpm != DEFAULT_USER_MPM)
+               fprintf(f, "user_mpm=%d\n", config->user_mpm);
+
+       if (config->max_peer_links != DEFAULT_MAX_PEER_LINKS)
+               fprintf(f, "max_peer_links=%d\n", config->max_peer_links);
+
+       if (config->cert_in_cb != DEFAULT_CERT_IN_CB)
+               fprintf(f, "cert_in_cb=%d\n", config->cert_in_cb);
+
+       if (config->mesh_max_inactivity != DEFAULT_MESH_MAX_INACTIVITY)
+               fprintf(f, "mesh_max_inactivity=%d\n",
+                       config->mesh_max_inactivity);
 }
 
 #endif /* CONFIG_NO_CONFIG_WRITE */