|
@@ -703,7 +703,7 @@ void wps_registrar_deinit(struct wps_registrar *reg)
|
|
|
eloop_cancel_timeout(wps_registrar_pbc_timeout, reg, NULL);
|
|
|
eloop_cancel_timeout(wps_registrar_set_selected_timeout, reg, NULL);
|
|
|
wps_registrar_flush(reg);
|
|
|
- wpabuf_free(reg->extra_cred);
|
|
|
+ wpabuf_clear_free(reg->extra_cred);
|
|
|
os_free(reg);
|
|
|
}
|
|
|
|
|
@@ -1577,13 +1577,13 @@ int wps_build_credential_wrap(struct wpabuf *msg,
|
|
|
if (wbuf == NULL)
|
|
|
return -1;
|
|
|
if (wps_build_credential(wbuf, cred)) {
|
|
|
- wpabuf_free(wbuf);
|
|
|
+ wpabuf_clear_free(wbuf);
|
|
|
return -1;
|
|
|
}
|
|
|
wpabuf_put_be16(msg, ATTR_CRED);
|
|
|
wpabuf_put_be16(msg, wpabuf_len(wbuf));
|
|
|
wpabuf_put_buf(msg, wbuf);
|
|
|
- wpabuf_free(wbuf);
|
|
|
+ wpabuf_clear_free(wbuf);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -1751,14 +1751,14 @@ use_provided:
|
|
|
return -1;
|
|
|
|
|
|
if (wps_build_credential(cred, &wps->cred)) {
|
|
|
- wpabuf_free(cred);
|
|
|
+ wpabuf_clear_free(cred);
|
|
|
return -1;
|
|
|
}
|
|
|
|
|
|
wpabuf_put_be16(msg, ATTR_CRED);
|
|
|
wpabuf_put_be16(msg, wpabuf_len(cred));
|
|
|
wpabuf_put_buf(msg, cred);
|
|
|
- wpabuf_free(cred);
|
|
|
+ wpabuf_clear_free(cred);
|
|
|
|
|
|
skip_cred_build:
|
|
|
if (wps->wps->registrar->extra_cred) {
|
|
@@ -1796,7 +1796,7 @@ static struct wpabuf * wps_build_ap_cred(struct wps_data *wps)
|
|
|
}
|
|
|
|
|
|
if (wps_build_ap_settings(wps, plain)) {
|
|
|
- wpabuf_free(plain);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
wpabuf_free(msg);
|
|
|
return NULL;
|
|
|
}
|
|
@@ -1804,7 +1804,7 @@ static struct wpabuf * wps_build_ap_cred(struct wps_data *wps)
|
|
|
wpabuf_put_be16(msg, ATTR_CRED);
|
|
|
wpabuf_put_be16(msg, wpabuf_len(plain));
|
|
|
wpabuf_put_buf(msg, plain);
|
|
|
- wpabuf_free(plain);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
|
|
|
return msg;
|
|
|
}
|
|
@@ -1864,10 +1864,10 @@ static struct wpabuf * wps_build_m2(struct wps_data *wps)
|
|
|
wps_build_key_wrap_auth(wps, plain) ||
|
|
|
wps_build_encr_settings(wps, msg, plain)) {
|
|
|
wpabuf_free(msg);
|
|
|
- wpabuf_free(plain);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
return NULL;
|
|
|
}
|
|
|
- wpabuf_free(plain);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
config_in_m2 = 1;
|
|
|
}
|
|
|
#endif /* CONFIG_WPS_NFC */
|
|
@@ -1949,11 +1949,11 @@ static struct wpabuf * wps_build_m4(struct wps_data *wps)
|
|
|
wps_build_encr_settings(wps, msg, plain) ||
|
|
|
wps_build_wfa_ext(msg, 0, NULL, 0) ||
|
|
|
wps_build_authenticator(wps, msg)) {
|
|
|
- wpabuf_free(plain);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
wpabuf_free(msg);
|
|
|
return NULL;
|
|
|
}
|
|
|
- wpabuf_free(plain);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
|
|
|
wps->state = RECV_M5;
|
|
|
return msg;
|
|
@@ -1984,11 +1984,11 @@ static struct wpabuf * wps_build_m6(struct wps_data *wps)
|
|
|
wps_build_encr_settings(wps, msg, plain) ||
|
|
|
wps_build_wfa_ext(msg, 0, NULL, 0) ||
|
|
|
wps_build_authenticator(wps, msg)) {
|
|
|
- wpabuf_free(plain);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
wpabuf_free(msg);
|
|
|
return NULL;
|
|
|
}
|
|
|
- wpabuf_free(plain);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
|
|
|
wps->wps_pin_revealed = 1;
|
|
|
wps->state = RECV_M7;
|
|
@@ -2021,11 +2021,11 @@ static struct wpabuf * wps_build_m8(struct wps_data *wps)
|
|
|
wps_build_encr_settings(wps, msg, plain) ||
|
|
|
wps_build_wfa_ext(msg, 0, NULL, 0) ||
|
|
|
wps_build_authenticator(wps, msg)) {
|
|
|
- wpabuf_free(plain);
|
|
|
- wpabuf_free(msg);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
+ wpabuf_clear_free(msg);
|
|
|
return NULL;
|
|
|
}
|
|
|
- wpabuf_free(plain);
|
|
|
+ wpabuf_clear_free(plain);
|
|
|
|
|
|
wps->state = RECV_DONE;
|
|
|
return msg;
|
|
@@ -2785,7 +2785,7 @@ static enum wps_process_res wps_process_m5(struct wps_data *wps,
|
|
|
}
|
|
|
|
|
|
if (wps_validate_m5_encr(decrypted, attr->version2 != NULL) < 0) {
|
|
|
- wpabuf_free(decrypted);
|
|
|
+ wpabuf_clear_free(decrypted);
|
|
|
wps->state = SEND_WSC_NACK;
|
|
|
return WPS_CONTINUE;
|
|
|
}
|
|
@@ -2795,11 +2795,11 @@ static enum wps_process_res wps_process_m5(struct wps_data *wps,
|
|
|
if (wps_parse_msg(decrypted, &eattr) < 0 ||
|
|
|
wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
|
|
|
wps_process_e_snonce1(wps, eattr.e_snonce1)) {
|
|
|
- wpabuf_free(decrypted);
|
|
|
+ wpabuf_clear_free(decrypted);
|
|
|
wps->state = SEND_WSC_NACK;
|
|
|
return WPS_CONTINUE;
|
|
|
}
|
|
|
- wpabuf_free(decrypted);
|
|
|
+ wpabuf_clear_free(decrypted);
|
|
|
|
|
|
wps->state = SEND_M6;
|
|
|
return WPS_CONTINUE;
|
|
@@ -2937,7 +2937,7 @@ static enum wps_process_res wps_process_m7(struct wps_data *wps,
|
|
|
|
|
|
if (wps_validate_m7_encr(decrypted, wps->wps->ap || wps->er,
|
|
|
attr->version2 != NULL) < 0) {
|
|
|
- wpabuf_free(decrypted);
|
|
|
+ wpabuf_clear_free(decrypted);
|
|
|
wps->state = SEND_WSC_NACK;
|
|
|
return WPS_CONTINUE;
|
|
|
}
|
|
@@ -2948,12 +2948,12 @@ static enum wps_process_res wps_process_m7(struct wps_data *wps,
|
|
|
wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
|
|
|
wps_process_e_snonce2(wps, eattr.e_snonce2) ||
|
|
|
wps_process_ap_settings_r(wps, &eattr)) {
|
|
|
- wpabuf_free(decrypted);
|
|
|
+ wpabuf_clear_free(decrypted);
|
|
|
wps->state = SEND_WSC_NACK;
|
|
|
return WPS_CONTINUE;
|
|
|
}
|
|
|
|
|
|
- wpabuf_free(decrypted);
|
|
|
+ wpabuf_clear_free(decrypted);
|
|
|
|
|
|
wps->state = SEND_M8;
|
|
|
return WPS_CONTINUE;
|