SAE: Allow SAE-only network profile with sae_password to be written
The commita34ca59e
(SAE: Allow SAE password to be configured separately (STA)) added sae_password configuration option. We should also consider sae_password in the wpa_config_write() function which stores the valid network block details to an external database. Fixes:a34ca59e4d
("SAE: Allow SAE password to be configured separately (STA)") Signed-off-by: Sachin Shelke <sachin.shelke@nxp.com> Signed-off-by: Cathy Luo <xiaohua.luo@nxp.com> Signed-off-by: Ganapathi Bhat <ganapathi.bhat@nxp.com>
This commit is contained in:
parent
5bad300565
commit
21f835e640
2 changed files with 12 additions and 2 deletions
|
@ -82,6 +82,13 @@ static inline int wpa_key_mgmt_wpa_ieee8021x(int akm)
|
|||
WPA_KEY_MGMT_FT_FILS_SHA384));
|
||||
}
|
||||
|
||||
static inline int wpa_key_mgmt_wpa_psk_no_sae(int akm)
|
||||
{
|
||||
return !!(akm & (WPA_KEY_MGMT_PSK |
|
||||
WPA_KEY_MGMT_FT_PSK |
|
||||
WPA_KEY_MGMT_PSK_SHA256));
|
||||
}
|
||||
|
||||
static inline int wpa_key_mgmt_wpa_psk(int akm)
|
||||
{
|
||||
return !!(akm & (WPA_KEY_MGMT_PSK |
|
||||
|
|
|
@ -1642,8 +1642,11 @@ int wpa_config_write(const char *name, struct wpa_config *config)
|
|||
for (ssid = config->ssid; ssid; ssid = ssid->next) {
|
||||
if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
|
||||
continue; /* do not save temporary networks */
|
||||
if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
|
||||
!ssid->passphrase)
|
||||
if (wpa_key_mgmt_wpa_psk_no_sae(ssid->key_mgmt) &&
|
||||
!ssid->psk_set && !ssid->passphrase)
|
||||
continue; /* do not save invalid network */
|
||||
if (wpa_key_mgmt_sae(ssid->key_mgmt) &&
|
||||
!ssid->passphrase && !ssid->sae_password)
|
||||
continue; /* do not save invalid network */
|
||||
fprintf(f, "\nnetwork={\n");
|
||||
wpa_config_write_network(f, ssid);
|
||||
|
|
Loading…
Reference in a new issue