1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_GWP_ASAN_CLIENT_THREAD_LOCAL_RANDOM_BIT_GENERATOR_H_
#define COMPONENTS_GWP_ASAN_CLIENT_THREAD_LOCAL_RANDOM_BIT_GENERATOR_H_
#include <limits>
#include <random>
#include "base/compiler_specific.h"
#include "base/rand_util.h"
#include "components/gwp_asan/client/thread_local_state.h"
namespace gwp_asan::internal {
namespace {
template <std::size_t N>
struct XorShiftImpl;
template <>
struct XorShiftImpl<8> {
static uint64_t apply(uint64_t x) {
x ^= x << 13;
x ^= x >> 7;
x ^= x << 17;
return x;
}
};
template <>
struct XorShiftImpl<4> {
static uint32_t apply(uint32_t x) {
x ^= x << 13;
x ^= x >> 17;
x ^= x << 5;
return x;
}
};
template <typename result_type>
result_type XorShift(result_type x) {
static_assert(sizeof(result_type) == 4 || sizeof(result_type) == 8,
"Unsupported size");
return XorShiftImpl<sizeof(result_type)>::apply(x);
}
} // namespace
// Efficient pseudo-random number generator (PRNG) tailored for Thread-Local
// Storage (TLS) slots. Chooses between XorShift 64 and XorShift 32 based on
// TLS slot size.
//
// Note: GWP-ASan previously relied on a high-entropy source with the intent of
// preventing attackers from identifying allocations originating from GWP-ASan.
// However, it seems like there are more practical methods for attackers to
// achieve this, bypassing the need to crack the PRNG state. Additionally, an
// attacker can simply neutralize GWP-ASan by making numerous small allocations,
// exhausting all available slots.
class ThreadLocalRandomBitGenerator
: ThreadLocalState<ThreadLocalRandomBitGenerator> {
using TLS = ThreadLocalState<ThreadLocalRandomBitGenerator>;
public:
using result_type = uintptr_t;
static constexpr result_type min() { return 0; }
static constexpr result_type max() {
return std::numeric_limits<result_type>::max();
}
// Classes that use this generator need to call this function first. Safe to
// call multiple times.
static void InitIfNeeded() { TLS::InitIfNeeded(); }
result_type operator()() const {
result_type x = static_cast<result_type>(TLS::GetState());
if (!x) [[unlikely]] {
std::uniform_int_distribution<result_type> distribution;
base::NonAllocatingRandomBitGenerator generator;
x = distribution(generator);
}
x = XorShift(x);
TLS::SetState(x);
return x;
}
ThreadLocalRandomBitGenerator() = default;
~ThreadLocalRandomBitGenerator() = default;
};
} // namespace gwp_asan::internal
#endif // COMPONENTS_GWP_ASAN_CLIENT_THREAD_LOCAL_RANDOM_BIT_GENERATOR_H_
|