mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-30 16:13:55 +00:00
Replace libcrypto RAND_ with our own to avoid valgrind errors.
This commit is contained in:
parent
67acba4bc9
commit
93a7eef2a5
38
main.cpp
38
main.cpp
@ -34,7 +34,9 @@
|
|||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#ifdef _WIN32
|
#include "node/Constants.hpp"
|
||||||
|
|
||||||
|
#ifdef __WINDOWS__
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
#else
|
#else
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
@ -44,6 +46,8 @@
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <openssl/rand.h>
|
||||||
|
|
||||||
#include "node/Node.hpp"
|
#include "node/Node.hpp"
|
||||||
#include "node/Utils.hpp"
|
#include "node/Utils.hpp"
|
||||||
|
|
||||||
@ -51,6 +55,36 @@
|
|||||||
|
|
||||||
using namespace ZeroTier;
|
using namespace ZeroTier;
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
// Override libcrypto default RAND_ with Utils::getSecureRandom(), which uses
|
||||||
|
// a system strong random source. This is because OpenSSL libcrypto's default
|
||||||
|
// RAND_ implementation uses uninitialized memory as one of its entropy
|
||||||
|
// sources, which plays havoc with all kinds of debuggers and auditing tools.
|
||||||
|
|
||||||
|
static void _zeroTier_rand_cleanup() {}
|
||||||
|
static void _zeroTier_rand_add(const void *buf, int num, double add_entropy) {}
|
||||||
|
static int _zeroTier_rand_status() { return 1; }
|
||||||
|
static void _zeroTier_rand_seed(const void *buf, int num) {}
|
||||||
|
static int _zeroTier_rand_bytes(unsigned char *buf, int num)
|
||||||
|
{
|
||||||
|
Utils::getSecureRandom(buf,num);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
static RAND_METHOD _zeroTierRandMethod = {
|
||||||
|
_zeroTier_rand_seed,
|
||||||
|
_zeroTier_rand_bytes,
|
||||||
|
_zeroTier_rand_cleanup,
|
||||||
|
_zeroTier_rand_add,
|
||||||
|
_zeroTier_rand_bytes,
|
||||||
|
_zeroTier_rand_status
|
||||||
|
};
|
||||||
|
static void _initLibCrypto()
|
||||||
|
{
|
||||||
|
RAND_set_rand_method(&_zeroTierRandMethod);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
static Node *node = (Node *)0;
|
static Node *node = (Node *)0;
|
||||||
|
|
||||||
static void printHelp(const char *cn,FILE *out)
|
static void printHelp(const char *cn,FILE *out)
|
||||||
@ -81,6 +115,8 @@ int main(int argc,char **argv)
|
|||||||
signal(SIGQUIT,&sighandlerQuit);
|
signal(SIGQUIT,&sighandlerQuit);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
_initLibCrypto();
|
||||||
|
|
||||||
if (argc < 2) {
|
if (argc < 2) {
|
||||||
printHelp(argv[0],stderr);
|
printHelp(argv[0],stderr);
|
||||||
return ZT_EXEC_RETURN_VALUE_NORMAL_TERMINATION;
|
return ZT_EXEC_RETURN_VALUE_NORMAL_TERMINATION;
|
||||||
|
@ -37,16 +37,6 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
#include <Windows.h>
|
|
||||||
#else
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <signal.h>
|
|
||||||
#include <sys/file.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "Condition.hpp"
|
#include "Condition.hpp"
|
||||||
#include "Node.hpp"
|
#include "Node.hpp"
|
||||||
#include "Topology.hpp"
|
#include "Topology.hpp"
|
||||||
@ -71,6 +61,16 @@
|
|||||||
#include "CMWC4096.hpp"
|
#include "CMWC4096.hpp"
|
||||||
#include "Service.hpp"
|
#include "Service.hpp"
|
||||||
|
|
||||||
|
#ifdef __WINDOWS__
|
||||||
|
#include <Windows.h>
|
||||||
|
#else
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <sys/file.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "../version.h"
|
#include "../version.h"
|
||||||
|
|
||||||
namespace ZeroTier {
|
namespace ZeroTier {
|
||||||
|
33
selftest.cpp
33
selftest.cpp
@ -47,8 +47,40 @@
|
|||||||
#include "node/NodeConfig.hpp"
|
#include "node/NodeConfig.hpp"
|
||||||
#include "node/Dictionary.hpp"
|
#include "node/Dictionary.hpp"
|
||||||
|
|
||||||
|
#include <openssl/rand.h>
|
||||||
|
|
||||||
using namespace ZeroTier;
|
using namespace ZeroTier;
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
// Override libcrypto default RAND_ with Utils::getSecureRandom(), which uses
|
||||||
|
// a system strong random source. This is because OpenSSL libcrypto's default
|
||||||
|
// RAND_ implementation uses uninitialized memory as one of its entropy
|
||||||
|
// sources, which plays havoc with all kinds of debuggers and auditing tools.
|
||||||
|
|
||||||
|
static void _zeroTier_rand_cleanup() {}
|
||||||
|
static void _zeroTier_rand_add(const void *buf, int num, double add_entropy) {}
|
||||||
|
static int _zeroTier_rand_status() { return 1; }
|
||||||
|
static void _zeroTier_rand_seed(const void *buf, int num) {}
|
||||||
|
static int _zeroTier_rand_bytes(unsigned char *buf, int num)
|
||||||
|
{
|
||||||
|
Utils::getSecureRandom(buf,num);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
static RAND_METHOD _zeroTierRandMethod = {
|
||||||
|
_zeroTier_rand_seed,
|
||||||
|
_zeroTier_rand_bytes,
|
||||||
|
_zeroTier_rand_cleanup,
|
||||||
|
_zeroTier_rand_add,
|
||||||
|
_zeroTier_rand_bytes,
|
||||||
|
_zeroTier_rand_status
|
||||||
|
};
|
||||||
|
static void _initLibCrypto()
|
||||||
|
{
|
||||||
|
RAND_set_rand_method(&_zeroTierRandMethod);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
static unsigned char fuzzbuf[1048576];
|
static unsigned char fuzzbuf[1048576];
|
||||||
|
|
||||||
static const char *hmacShaTV0Key = "key";
|
static const char *hmacShaTV0Key = "key";
|
||||||
@ -332,6 +364,7 @@ int main(int argc,char **argv)
|
|||||||
{
|
{
|
||||||
int r = 0;
|
int r = 0;
|
||||||
|
|
||||||
|
_initLibCrypto();
|
||||||
srand(time(0));
|
srand(time(0));
|
||||||
|
|
||||||
r |= testCrypto();
|
r |= testCrypto();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user