forked from pool/wpa_supplicant
- update to 2.10.0: * SAE changes - improved protection against side channel attacks [https://w1.fi/security/2022-1/] - added support for the hash-to-element mechanism (sae_pwe=1 or sae_pwe=2); this is currently disabled by default, but will likely get enabled by default in the future - fixed PMKSA caching with OKC - added support for SAE-PK * EAP-pwd changes - improved protection against side channel attacks [https://w1.fi/security/2022-1/] * fixed P2P provision discovery processing of a specially constructed invalid frame [https://w1.fi/security/2021-1/] * fixed P2P group information processing of a specially constructed invalid frame [https://w1.fi/security/2020-2/] * fixed PMF disconnection protection bypass in AP mode [https://w1.fi/security/2019-7/] * added support for using OpenSSL 3.0 * increased the maximum number of EAP message exchanges (mainly to support cases with very large certificates) * fixed various issues in experimental support for EAP-TEAP peer * added support for DPP release 2 (Wi-Fi Device Provisioning Protocol) * a number of MKA/MACsec fixes and extensions * added support for SAE (WPA3-Personal) AP mode configuration * added P2P support for EDMG (IEEE 802.11ay) channels * fixed EAP-FAST peer with TLS GCM/CCM ciphers * improved throughput estimation and BSS selection OBS-URL: https://build.opensuse.org/request/show/948384 OBS-URL: https://build.opensuse.org/package/show/hardware/wpa_supplicant?expand=0&rev=130
57 lines
1.7 KiB
Diff
57 lines
1.7 KiB
Diff
Index: wpa_supplicant-2.10/src/utils/wpa_debug.c
|
|
===================================================================
|
|
--- wpa_supplicant-2.10.orig/src/utils/wpa_debug.c
|
|
+++ wpa_supplicant-2.10/src/utils/wpa_debug.c
|
|
@@ -76,9 +76,11 @@ void wpa_debug_print_timestamp(void)
|
|
|
|
os_get_time(&tv);
|
|
#ifdef CONFIG_DEBUG_FILE
|
|
- if (out_file)
|
|
+ if (out_file) {
|
|
fprintf(out_file, "%ld.%06u: ", (long) tv.sec,
|
|
(unsigned int) tv.usec);
|
|
+ fflush(out_file);
|
|
+ }
|
|
#endif /* CONFIG_DEBUG_FILE */
|
|
if (!out_file && !wpa_debug_syslog)
|
|
printf("%ld.%06u: ", (long) tv.sec, (unsigned int) tv.usec);
|
|
@@ -231,6 +233,7 @@ void wpa_printf(int level, const char *f
|
|
vfprintf(out_file, fmt, ap);
|
|
fprintf(out_file, "\n");
|
|
va_end(ap);
|
|
+ fflush(out_file);
|
|
}
|
|
#endif /* CONFIG_DEBUG_FILE */
|
|
if (!wpa_debug_syslog && !out_file) {
|
|
@@ -365,6 +368,7 @@ static void _wpa_hexdump(int level, cons
|
|
fprintf(out_file, " [REMOVED]");
|
|
}
|
|
fprintf(out_file, "\n");
|
|
+ fflush(out_file);
|
|
}
|
|
#endif /* CONFIG_DEBUG_FILE */
|
|
if (!wpa_debug_syslog && !out_file) {
|
|
@@ -436,12 +440,14 @@ static void _wpa_hexdump_ascii(int level
|
|
fprintf(out_file,
|
|
"%s - hexdump_ascii(len=%lu): [REMOVED]\n",
|
|
title, (unsigned long) len);
|
|
+ fflush(out_file);
|
|
goto file_done;
|
|
}
|
|
if (buf == NULL) {
|
|
fprintf(out_file,
|
|
"%s - hexdump_ascii(len=%lu): [NULL]\n",
|
|
title, (unsigned long) len);
|
|
+ fflush(out_file);
|
|
goto file_done;
|
|
}
|
|
fprintf(out_file, "%s - hexdump_ascii(len=%lu):\n",
|
|
@@ -466,6 +472,7 @@ static void _wpa_hexdump_ascii(int level
|
|
pos += llen;
|
|
len -= llen;
|
|
}
|
|
+ fflush(out_file);
|
|
}
|
|
file_done:
|
|
#endif /* CONFIG_DEBUG_FILE */
|