2012-06-04 08:30:45 +02:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2011-2016, Arvid Norberg
|
2012-06-04 08:30:45 +02:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-07-19 04:17:19 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
2011-02-26 18:59:34 +01:00
|
|
|
#include "libtorrent/random.hpp"
|
2016-08-30 02:28:42 +02:00
|
|
|
#include "libtorrent/error_code.hpp"
|
2016-09-07 23:51:18 +02:00
|
|
|
#include "libtorrent/aux_/openssl.hpp"
|
2017-01-29 21:37:42 +01:00
|
|
|
#include "libtorrent/aux_/throw.hpp"
|
2016-08-30 19:28:46 +02:00
|
|
|
|
2016-08-30 02:28:42 +02:00
|
|
|
#if TORRENT_USE_CRYPTOAPI
|
2017-01-07 07:53:39 +01:00
|
|
|
#include "libtorrent/aux_/win_crypto_provider.hpp"
|
2016-08-30 02:28:42 +02:00
|
|
|
|
|
|
|
#elif defined TORRENT_USE_LIBCRYPTO
|
2017-01-16 15:50:56 +01:00
|
|
|
|
2017-01-29 21:37:42 +01:00
|
|
|
#include "libtorrent/aux_/disable_warnings_push.hpp"
|
2016-08-30 02:28:42 +02:00
|
|
|
extern "C" {
|
|
|
|
#include <openssl/rand.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
}
|
2017-01-29 21:37:42 +01:00
|
|
|
#include "libtorrent/aux_/disable_warnings_pop.hpp"
|
2016-08-30 02:28:42 +02:00
|
|
|
|
|
|
|
#endif
|
2015-04-18 04:33:39 +02:00
|
|
|
|
2017-01-15 00:13:09 +01:00
|
|
|
#if TORRENT_USE_DEV_RANDOM
|
|
|
|
#include "libtorrent/aux_/dev_random.hpp"
|
|
|
|
#endif
|
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent { namespace aux {
|
|
|
|
|
2016-08-15 01:48:31 +02:00
|
|
|
std::mt19937& random_engine()
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_BUILD_SIMULATOR
|
|
|
|
// make sure random numbers are deterministic. Seed with a fixed number
|
|
|
|
static std::mt19937 rng(0x82daf973);
|
2015-08-09 06:56:37 +02:00
|
|
|
#else
|
2016-08-15 01:48:31 +02:00
|
|
|
static std::random_device dev;
|
|
|
|
static std::mt19937 rng(dev());
|
|
|
|
#endif
|
|
|
|
return rng;
|
|
|
|
}
|
2016-08-30 02:28:42 +02:00
|
|
|
|
|
|
|
void random_bytes(span<char> buffer)
|
|
|
|
{
|
2017-01-15 04:36:25 +01:00
|
|
|
#ifdef TORRENT_BUILD_SIMULATOR
|
|
|
|
// simulator
|
|
|
|
|
|
|
|
for (auto& b : buffer) b = char(random(0xff));
|
|
|
|
|
|
|
|
#elif TORRENT_USE_CRYPTOAPI
|
|
|
|
// windows
|
|
|
|
|
2017-01-07 07:53:39 +01:00
|
|
|
aux::crypt_gen_random(buffer);
|
2016-08-30 02:28:42 +02:00
|
|
|
|
2017-01-15 00:13:09 +01:00
|
|
|
#elif TORRENT_USE_DEV_RANDOM
|
|
|
|
// /dev/random
|
|
|
|
|
|
|
|
static dev_random dev;
|
|
|
|
dev.read(buffer);
|
|
|
|
|
2016-08-30 02:28:42 +02:00
|
|
|
#elif defined TORRENT_USE_LIBCRYPTO
|
2017-01-15 04:36:25 +01:00
|
|
|
// openssl
|
|
|
|
|
2016-08-30 02:28:42 +02:00
|
|
|
int r = RAND_bytes(reinterpret_cast<unsigned char*>(buffer.data())
|
|
|
|
, int(buffer.size()));
|
2017-01-29 21:37:42 +01:00
|
|
|
if (r != 1) aux::throw_ex<system_error>(errors::no_entropy);
|
2016-08-30 02:28:42 +02:00
|
|
|
#else
|
2017-01-15 04:36:25 +01:00
|
|
|
// fallback
|
|
|
|
|
2016-11-25 17:17:25 +01:00
|
|
|
for (auto& b : buffer) b = char(random(0xff));
|
2016-08-30 02:28:42 +02:00
|
|
|
#endif
|
|
|
|
}
|
2011-02-26 18:59:34 +01:00
|
|
|
}
|
2015-08-09 06:56:37 +02:00
|
|
|
|
2016-08-15 01:48:31 +02:00
|
|
|
std::uint32_t random(std::uint32_t max)
|
2015-11-11 07:17:36 +01:00
|
|
|
{
|
2016-08-15 01:48:31 +02:00
|
|
|
return std::uniform_int_distribution<std::uint32_t>(0, max)(aux::random_engine());
|
2015-11-11 07:17:36 +01:00
|
|
|
}
|
2011-02-26 18:59:34 +01:00
|
|
|
}
|