ClickHouse/dbms/Common/randomSeed.cpp

34 lines
729 B
C++
Raw Normal View History

2016-07-31 03:53:16 +00:00
#include <time.h>
2020-02-17 14:27:09 +00:00
#include <unistd.h>
2016-07-31 03:53:16 +00:00
#include <sys/types.h>
#include <Common/Exception.h>
#include <Common/randomSeed.h>
2018-03-03 15:36:20 +00:00
#include <Common/SipHash.h>
#include <Core/Types.h>
2016-07-31 03:53:16 +00:00
namespace DB
{
namespace ErrorCodes
{
extern const int CANNOT_CLOCK_GETTIME;
}
2016-07-31 03:53:16 +00:00
}
DB::UInt64 randomSeed()
2016-07-31 03:53:16 +00:00
{
struct timespec times;
if (clock_gettime(CLOCK_THREAD_CPUTIME_ID, &times))
DB::throwFromErrno("Cannot clock_gettime.", DB::ErrorCodes::CANNOT_CLOCK_GETTIME);
2018-03-03 15:36:20 +00:00
/// Not cryptographically secure as time, pid and stack address can be predictable.
SipHash hash;
hash.update(times.tv_nsec);
hash.update(times.tv_sec);
hash.update(getpid());
hash.update(&times);
return hash.get64();
2016-07-31 03:53:16 +00:00
}