// This file Copyright © Mnemosyne LLC. // It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only), // or any future license endorsed by Mnemosyne LLC. // License text can be found in the licenses/ folder. #include #include #include #include #include #include #include #include #include "libtransmission/transmission.h" #include "libtransmission/crypto-utils.h" #include "libtransmission/log.h" #include "libtransmission/tr-assert.h" #include "libtransmission/utils.h" #ifndef WITH_WOLFSSL #error wolfssl module #endif #if LIBWOLFSSL_VERSION_HEX >= 0x04000000 // 4.0.0 using TR_WC_RNG = WC_RNG; #else using TR_WC_RNG = RNG; #endif #define TR_CRYPTO_X509_FALLBACK #include "crypto-utils-fallback.cc" // NOLINT(bugprone-suspicious-include) namespace { void log_wolfssl_error(int error_code, char const* file, int line) { if (tr_logLevelIsActive(TR_LOG_ERROR)) { tr_logAddMessage( file, line, TR_LOG_ERROR, fmt::format( _("{crypto_library} error: {error} ({error_code})"), fmt::arg("crypto_library", "WolfSSL"), fmt::arg("error", wc_GetErrorString(error_code)), fmt::arg("error_code", error_code))); } } bool check_wolfssl_result(int result, char const* file, int line) { bool const ret = result == 0; if (!ret) { log_wolfssl_error(result, file, line); } return ret; } #define check_result(result) check_wolfssl_result((result), __FILE__, __LINE__) // --- TR_WC_RNG* get_rng() { static TR_WC_RNG rng; static bool rng_initialized = false; if (!rng_initialized) { if (!check_result(wc_InitRng(&rng))) { return nullptr; } rng_initialized = true; } return &rng; } std::mutex rng_mutex_; } // namespace // --- sha1 tr_sha1::tr_sha1() { clear(); } tr_sha1::~tr_sha1() = default; void tr_sha1::clear() { wc_InitSha(&handle_); } void tr_sha1::add(void const* data, size_t data_length) { if (data_length > 0U) { wc_ShaUpdate(&handle_, static_cast(data), data_length); } } tr_sha1_digest_t tr_sha1::finish() { auto digest = tr_sha1_digest_t{}; wc_ShaFinal(&handle_, reinterpret_cast(std::data(digest))); clear(); return digest; } // --- sha256 tr_sha256::tr_sha256() { clear(); } tr_sha256::~tr_sha256() = default; void tr_sha256::clear() { wc_InitSha256(&handle_); } void tr_sha256::add(void const* data, size_t data_length) { if (data_length > 0U) { wc_Sha256Update(&handle_, static_cast(data), data_length); } } tr_sha256_digest_t tr_sha256::finish() { auto digest = tr_sha256_digest_t{}; wc_Sha256Final(&handle_, reinterpret_cast(std::data(digest))); clear(); return digest; } // --- bool tr_rand_buffer_crypto(void* buffer, size_t length) { if (length == 0) { return true; } TR_ASSERT(buffer != nullptr); auto const lock = std::lock_guard{ rng_mutex_ }; return check_result(wc_RNG_GenerateBlock(get_rng(), static_cast(buffer), length)); }