diff options
author | Hugo Landau <hlandau@openssl.org> | 2023-05-22 14:24:38 +0200 |
---|---|---|
committer | Hugo Landau <hlandau@openssl.org> | 2023-05-24 11:34:55 +0200 |
commit | 2fa90442984349b41401e008df26ee707b6c851d (patch) | |
tree | 0a26cc58c954c420650b8880b2aa6ea852cc9dc5 | |
parent | QUIC APL: Unlock mutex before freeing (clang tsan error) (diff) | |
download | openssl-2fa90442984349b41401e008df26ee707b6c851d.tar.xz openssl-2fa90442984349b41401e008df26ee707b6c851d.zip |
Make testutil text output functions thread safe (tsan)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20856)
-rw-r--r-- | test/testutil/basic_output.c | 93 |
1 files changed, 85 insertions, 8 deletions
diff --git a/test/testutil/basic_output.c b/test/testutil/basic_output.c index 92f3de9300..2266b6fda0 100644 --- a/test/testutil/basic_output.c +++ b/test/testutil/basic_output.c @@ -22,6 +22,10 @@ BIO *bio_err = NULL; static BIO *tap_out = NULL; static BIO *tap_err = NULL; +#if defined(OPENSSL_THREADS) +static CRYPTO_RWLOCK *io_lock = NULL; +#endif + void test_open_streams(void) { tap_out = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT); @@ -38,8 +42,15 @@ void test_open_streams(void) BIO_set_prefix(bio_out, "# "); BIO_set_prefix(bio_err, "# "); +#if defined(OPENSSL_THREADS) + io_lock = CRYPTO_THREAD_lock_new(); +#endif + OPENSSL_assert(bio_out != NULL); OPENSSL_assert(bio_err != NULL); +#if defined(OPENSSL_THREADS) + OPENSSL_assert(io_lock != NULL); +#endif } void test_adjust_streams_tap_level(int level) @@ -59,44 +70,110 @@ void test_close_streams(void) BIO_free_all(tap_out); BIO_free_all(tap_err); + +#if defined(OPENSSL_THREADS) + CRYPTO_THREAD_lock_free(io_lock); +#endif +} + +static ossl_inline void lock(void) +{ +#if defined(OPENSSL_THREADS) + OPENSSL_assert(CRYPTO_THREAD_write_lock(io_lock) > 0); +#endif +} + +static ossl_inline void unlock(void) +{ +#if defined(OPENSSL_THREADS) + CRYPTO_THREAD_unlock(io_lock); +#endif } int test_vprintf_stdout(const char *fmt, va_list ap) { - return BIO_vprintf(bio_out, fmt, ap); + int r; + + lock(); + r = BIO_vprintf(bio_out, fmt, ap); + unlock(); + + return r; } int test_vprintf_stderr(const char *fmt, va_list ap) { - return BIO_vprintf(bio_err, fmt, ap); + int r; + + lock(); + r = BIO_vprintf(bio_err, fmt, ap); + unlock(); + + return r; } int test_flush_stdout(void) { - return BIO_flush(bio_out); + int r; + + lock(); + r = BIO_flush(bio_out); + unlock(); + + return r; } int test_flush_stderr(void) { - return BIO_flush(bio_err); + int r; + + lock(); + r = BIO_flush(bio_err); + unlock(); + + return r; } int test_vprintf_tapout(const char *fmt, va_list ap) { - return BIO_vprintf(tap_out, fmt, ap); + int r; + + lock(); + r = BIO_vprintf(tap_out, fmt, ap); + unlock(); + + return r; } int test_vprintf_taperr(const char *fmt, va_list ap) { - return BIO_vprintf(tap_err, fmt, ap); + int r; + + lock(); + r = BIO_vprintf(tap_err, fmt, ap); + unlock(); + + return r; } int test_flush_tapout(void) { - return BIO_flush(tap_out); + int r; + + lock(); + r = BIO_flush(tap_out); + unlock(); + + return r; } int test_flush_taperr(void) { - return BIO_flush(tap_err); + int r; + + lock(); + r = BIO_flush(tap_err); + unlock(); + + return r; } |