From: Kostya Serebryany Date: Thu, 29 Dec 2016 02:50:35 +0000 (+0000) Subject: [libFuzzer] make __sanitizer_cov_trace_switch more predictable X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e929bfc24b23927c7f782ee752a68c15cf9ed264;p=llvm [libFuzzer] make __sanitizer_cov_trace_switch more predictable git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@290703 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Fuzzer/FuzzerTracePC.cpp b/lib/Fuzzer/FuzzerTracePC.cpp index 81c084b5899..ad5f9f09d1e 100644 --- a/lib/Fuzzer/FuzzerTracePC.cpp +++ b/lib/Fuzzer/FuzzerTracePC.cpp @@ -295,32 +295,27 @@ void __sanitizer_cov_trace_cmp1(uint8_t Arg1, uint8_t Arg2) { __attribute__((visibility("default"))) void __sanitizer_cov_trace_switch(uint64_t Val, uint64_t *Cases) { - // Updates the value profile based on the relative position of Val and Cases. - // We want to handle one random case at every call (handling all is slow). - // Since none of the arguments contain any random bits we use a thread-local - // counter to choose the random case to handle. - static thread_local size_t Counter; - Counter++; uint64_t N = Cases[0]; + uint64_t ValSizeInBits = Cases[1]; uint64_t *Vals = Cases + 2; + // Skip the most common and the most boring case. + if (Vals[N - 1] < 256 && Val < 256) + return; char *PC = (char*)__builtin_return_address(0); - // We need a random number < N using Counter as a seed. But w/o DIV. - // * find a power of two >= N - // * mask Counter with this power of two. - // * maybe subtract N. - size_t Nlog = sizeof(long) * 8 - __builtin_clzl((long)N); - size_t PowerOfTwoGeN = 1U << Nlog; - assert(PowerOfTwoGeN >= N); - size_t Idx = Counter & (PowerOfTwoGeN - 1); - if (Idx >= N) - Idx -= N; - assert(Idx < N); - uint64_t TwoIn32 = 1ULL << 32; - if ((Val | Vals[Idx]) < TwoIn32) - fuzzer::TPC.HandleCmp(PC + Idx, static_cast(Val), - static_cast(Vals[Idx])); + size_t i; + uint64_t Token = 0; + for (i = 0; i < N; i++) { + Token = Val ^ Vals[i]; + if (Val < Vals[i]) + break; + } + + if (ValSizeInBits == 16) + fuzzer::TPC.HandleCmp(PC + i, static_cast(Token), (uint16_t)(0)); + else if (ValSizeInBits == 32) + fuzzer::TPC.HandleCmp(PC + i, static_cast(Token), (uint32_t)(0)); else - fuzzer::TPC.HandleCmp(PC + Idx, Val, Vals[Idx]); + fuzzer::TPC.HandleCmp(PC + i, Token, (uint64_t)(0)); } __attribute__((visibility("default"))) diff --git a/lib/Fuzzer/test/SwitchTest.cpp b/lib/Fuzzer/test/SwitchTest.cpp index 74e86c06cb4..3dc051ff7b5 100644 --- a/lib/Fuzzer/test/SwitchTest.cpp +++ b/lib/Fuzzer/test/SwitchTest.cpp @@ -20,8 +20,8 @@ bool Switch(const uint8_t *Data, size_t Size) { case 101: Sink = __LINE__; break; case 1001: Sink = __LINE__; break; case 10001: Sink = __LINE__; break; -// case 100001: Sink = __LINE__; break; -// case 1000001: Sink = __LINE__; break; + case 100001: Sink = __LINE__; break; + case 1000001: Sink = __LINE__; break; case 10000001: Sink = __LINE__; break; case 100000001: return true; }