george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 1 | //===- FuzzerTracePC.cpp - PC tracing--------------------------------------===// |
| 2 | // |
chandlerc | 4028449 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // Trace PCs. |
| 9 | // This module implements __sanitizer_cov_trace_pc_guard[_init], |
| 10 | // the callback required for -fsanitize-coverage=trace-pc-guard instrumentation. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "FuzzerTracePC.h" |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 15 | #include "FuzzerBuiltins.h" |
| 16 | #include "FuzzerBuiltinsMsvc.h" |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 17 | #include "FuzzerCorpus.h" |
| 18 | #include "FuzzerDefs.h" |
| 19 | #include "FuzzerDictionary.h" |
| 20 | #include "FuzzerExtFunctions.h" |
| 21 | #include "FuzzerIO.h" |
| 22 | #include "FuzzerUtil.h" |
| 23 | #include "FuzzerValueBitMap.h" |
| 24 | #include <set> |
| 25 | |
kcc | 1c0379f | 2017-08-22 01:28:32 +0000 | [diff] [blame] | 26 | // Used by -fsanitize-coverage=stack-depth to track stack depth |
morehouse | 68f4643 | 2018-08-30 15:54:44 +0000 | [diff] [blame] | 27 | ATTRIBUTES_INTERFACE_TLS_INITIAL_EXEC uintptr_t __sancov_lowest_stack; |
kcc | 1c0379f | 2017-08-22 01:28:32 +0000 | [diff] [blame] | 28 | |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 29 | namespace fuzzer { |
| 30 | |
| 31 | TracePC TPC; |
| 32 | |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 33 | size_t TracePC::GetTotalPCCoverage() { |
kcc | 569b3fa | 2019-01-29 23:53:28 +0000 | [diff] [blame] | 34 | return ObservedPCs.size(); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | |
| 38 | void TracePC::HandleInline8bitCountersInit(uint8_t *Start, uint8_t *Stop) { |
| 39 | if (Start == Stop) return; |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 40 | if (NumModules && |
| 41 | Modules[NumModules - 1].Start() == Start) |
| 42 | return; |
| 43 | assert(NumModules < |
| 44 | sizeof(Modules) / sizeof(Modules[0])); |
| 45 | auto &M = Modules[NumModules++]; |
| 46 | uint8_t *AlignedStart = RoundUpByPage(Start); |
| 47 | uint8_t *AlignedStop = RoundDownByPage(Stop); |
| 48 | size_t NumFullPages = AlignedStop > AlignedStart ? |
| 49 | (AlignedStop - AlignedStart) / PageSize() : 0; |
| 50 | bool NeedFirst = Start < AlignedStart || !NumFullPages; |
| 51 | bool NeedLast = Stop > AlignedStop && AlignedStop >= AlignedStart; |
| 52 | M.NumRegions = NumFullPages + NeedFirst + NeedLast;; |
| 53 | assert(M.NumRegions > 0); |
| 54 | M.Regions = new Module::Region[M.NumRegions]; |
| 55 | assert(M.Regions); |
| 56 | size_t R = 0; |
| 57 | if (NeedFirst) |
| 58 | M.Regions[R++] = {Start, std::min(Stop, AlignedStart), true, false}; |
| 59 | for (uint8_t *P = AlignedStart; P < AlignedStop; P += PageSize()) |
| 60 | M.Regions[R++] = {P, P + PageSize(), true, true}; |
| 61 | if (NeedLast) |
| 62 | M.Regions[R++] = {AlignedStop, Stop, true, false}; |
| 63 | assert(R == M.NumRegions); |
| 64 | assert(M.Size() == (size_t)(Stop - Start)); |
| 65 | assert(M.Stop() == Stop); |
| 66 | assert(M.Start() == Start); |
| 67 | NumInline8bitCounters += M.Size(); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 68 | } |
| 69 | |
kcc | da16893 | 2019-01-31 00:09:43 +0000 | [diff] [blame] | 70 | // Mark all full page counter regions as PROT_NONE and set Enabled=false. |
| 71 | // The first time the instrumented code hits such a protected/disabled |
| 72 | // counter region we should catch a SEGV and call UnprotectLazyCounters, |
| 73 | // which will mark the page as PROT_READ|PROT_WRITE and set Enabled=true. |
| 74 | // |
| 75 | // Whenever other functions iterate over the counters they should ignore |
| 76 | // regions with Enabled=false. |
| 77 | void TracePC::ProtectLazyCounters() { |
| 78 | size_t NumPagesProtected = 0; |
| 79 | IterateCounterRegions([&](Module::Region &R) { |
| 80 | if (!R.OneFullPage) return; |
| 81 | if (Mprotect(R.Start, R.Stop - R.Start, false)) { |
| 82 | R.Enabled = false; |
| 83 | NumPagesProtected++; |
| 84 | } |
| 85 | }); |
| 86 | if (NumPagesProtected) |
| 87 | Printf("INFO: %zd pages of counters where protected;" |
| 88 | " libFuzzer's SEGV handler must be installed\n", |
| 89 | NumPagesProtected); |
| 90 | } |
| 91 | |
| 92 | bool TracePC::UnprotectLazyCounters(void *CounterPtr) { |
| 93 | // Printf("UnprotectLazyCounters: %p\n", CounterPtr); |
| 94 | if (!CounterPtr) |
| 95 | return false; |
| 96 | bool Done = false; |
| 97 | uint8_t *Addr = reinterpret_cast<uint8_t *>(CounterPtr); |
| 98 | IterateCounterRegions([&](Module::Region &R) { |
| 99 | if (!R.OneFullPage || R.Enabled || Done) return; |
| 100 | if (Addr >= R.Start && Addr < R.Stop) |
| 101 | if (Mprotect(R.Start, R.Stop - R.Start, true)) { |
| 102 | R.Enabled = true; |
| 103 | Done = true; |
| 104 | } |
| 105 | }); |
| 106 | return Done; |
| 107 | } |
| 108 | |
kcc | 98957a1 | 2017-08-25 19:29:47 +0000 | [diff] [blame] | 109 | void TracePC::HandlePCsInit(const uintptr_t *Start, const uintptr_t *Stop) { |
| 110 | const PCTableEntry *B = reinterpret_cast<const PCTableEntry *>(Start); |
| 111 | const PCTableEntry *E = reinterpret_cast<const PCTableEntry *>(Stop); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 112 | if (NumPCTables && ModulePCTable[NumPCTables - 1].Start == B) return; |
| 113 | assert(NumPCTables < sizeof(ModulePCTable) / sizeof(ModulePCTable[0])); |
| 114 | ModulePCTable[NumPCTables++] = {B, E}; |
| 115 | NumPCsInPCTables += E - B; |
| 116 | } |
| 117 | |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 118 | void TracePC::PrintModuleInfo() { |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 119 | if (NumModules) { |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 120 | Printf("INFO: Loaded %zd modules (%zd inline 8-bit counters): ", |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 121 | NumModules, NumInline8bitCounters); |
| 122 | for (size_t i = 0; i < NumModules; i++) |
| 123 | Printf("%zd [%p, %p), ", Modules[i].Size(), Modules[i].Start(), |
| 124 | Modules[i].Stop()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 125 | Printf("\n"); |
| 126 | } |
| 127 | if (NumPCTables) { |
| 128 | Printf("INFO: Loaded %zd PC tables (%zd PCs): ", NumPCTables, |
| 129 | NumPCsInPCTables); |
| 130 | for (size_t i = 0; i < NumPCTables; i++) { |
| 131 | Printf("%zd [%p,%p), ", ModulePCTable[i].Stop - ModulePCTable[i].Start, |
| 132 | ModulePCTable[i].Start, ModulePCTable[i].Stop); |
| 133 | } |
| 134 | Printf("\n"); |
| 135 | |
kcc | 569b3fa | 2019-01-29 23:53:28 +0000 | [diff] [blame] | 136 | if (NumInline8bitCounters && NumInline8bitCounters != NumPCsInPCTables) { |
kcc | e220ebb | 2017-10-14 00:07:11 +0000 | [diff] [blame] | 137 | Printf("ERROR: The size of coverage PC tables does not match the\n" |
| 138 | "number of instrumented PCs. This might be a compiler bug,\n" |
| 139 | "please contact the libFuzzer developers.\n" |
| 140 | "Also check https://bugs.llvm.org/show_bug.cgi?id=34636\n" |
| 141 | "for possible workarounds (tl;dr: don't use the old GNU ld)\n"); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 142 | _Exit(1); |
| 143 | } |
| 144 | } |
delcypher | fcd19a8 | 2018-04-20 06:46:19 +0000 | [diff] [blame] | 145 | if (size_t NumExtraCounters = ExtraCountersEnd() - ExtraCountersBegin()) |
| 146 | Printf("INFO: %zd Extra Counters\n", NumExtraCounters); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | ATTRIBUTE_NO_SANITIZE_ALL |
| 150 | void TracePC::HandleCallerCallee(uintptr_t Caller, uintptr_t Callee) { |
| 151 | const uintptr_t kBits = 12; |
| 152 | const uintptr_t kMask = (1 << kBits) - 1; |
| 153 | uintptr_t Idx = (Caller & kMask) | ((Callee & kMask) << kBits); |
| 154 | ValueProfileMap.AddValueModPrime(Idx); |
| 155 | } |
| 156 | |
george.karpenkov | dc8a8c7 | 2018-10-10 00:57:44 +0000 | [diff] [blame] | 157 | /// \return the address of the previous instruction. |
| 158 | /// Note: the logic is copied from `sanitizer_common/sanitizer_stacktrace.h` |
| 159 | inline ALWAYS_INLINE uintptr_t GetPreviousInstructionPc(uintptr_t PC) { |
| 160 | #if defined(__arm__) |
| 161 | // T32 (Thumb) branch instructions might be 16 or 32 bit long, |
| 162 | // so we return (pc-2) in that case in order to be safe. |
| 163 | // For A32 mode we return (pc-4) because all instructions are 32 bit long. |
| 164 | return (PC - 3) & (~1); |
| 165 | #elif defined(__powerpc__) || defined(__powerpc64__) || defined(__aarch64__) |
| 166 | // PCs are always 4 byte aligned. |
| 167 | return PC - 4; |
| 168 | #elif defined(__sparc__) || defined(__mips__) |
| 169 | return PC - 8; |
| 170 | #else |
| 171 | return PC - 1; |
| 172 | #endif |
| 173 | } |
| 174 | |
| 175 | /// \return the address of the next instruction. |
nico | 3698eaf | 2019-07-31 18:51:27 +0000 | [diff] [blame] | 176 | /// Note: the logic is copied from `sanitizer_common/sanitizer_stacktrace.cpp` |
kcc | 9c0ed93 | 2019-02-15 01:22:00 +0000 | [diff] [blame] | 177 | ALWAYS_INLINE uintptr_t TracePC::GetNextInstructionPc(uintptr_t PC) { |
george.karpenkov | dc8a8c7 | 2018-10-10 00:57:44 +0000 | [diff] [blame] | 178 | #if defined(__mips__) |
| 179 | return PC + 8; |
| 180 | #elif defined(__powerpc__) || defined(__sparc__) || defined(__arm__) || \ |
| 181 | defined(__aarch64__) |
| 182 | return PC + 4; |
| 183 | #else |
| 184 | return PC + 1; |
| 185 | #endif |
| 186 | } |
| 187 | |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 188 | void TracePC::UpdateObservedPCs() { |
kcc | ec9da66 | 2017-08-28 22:52:22 +0000 | [diff] [blame] | 189 | Vector<uintptr_t> CoveredFuncs; |
kcc | 001e5f7 | 2019-02-14 23:12:33 +0000 | [diff] [blame] | 190 | auto ObservePC = [&](const PCTableEntry *TE) { |
| 191 | if (ObservedPCs.insert(TE).second && DoPrintNewPCs) { |
| 192 | PrintPC("\tNEW_PC: %p %F %L", "\tNEW_PC: %p", |
| 193 | GetNextInstructionPc(TE->PC)); |
kcc | 09b3e5f | 2018-07-06 19:47:00 +0000 | [diff] [blame] | 194 | Printf("\n"); |
| 195 | } |
kcc | 1c0379f | 2017-08-22 01:28:32 +0000 | [diff] [blame] | 196 | }; |
kcc | 00da648 | 2017-08-25 20:09:25 +0000 | [diff] [blame] | 197 | |
kcc | 001e5f7 | 2019-02-14 23:12:33 +0000 | [diff] [blame] | 198 | auto Observe = [&](const PCTableEntry *TE) { |
kcc | 9c0ed93 | 2019-02-15 01:22:00 +0000 | [diff] [blame] | 199 | if (PcIsFuncEntry(TE)) |
kcc | 001e5f7 | 2019-02-14 23:12:33 +0000 | [diff] [blame] | 200 | if (++ObservedFuncs[TE->PC] == 1 && NumPrintNewFuncs) |
| 201 | CoveredFuncs.push_back(TE->PC); |
| 202 | ObservePC(TE); |
kcc | 00da648 | 2017-08-25 20:09:25 +0000 | [diff] [blame] | 203 | }; |
| 204 | |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 205 | if (NumPCsInPCTables) { |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 206 | if (NumInline8bitCounters == NumPCsInPCTables) { |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 207 | for (size_t i = 0; i < NumModules; i++) { |
| 208 | auto &M = Modules[i]; |
| 209 | assert(M.Size() == |
metzman | b8a1ad5 | 2019-01-15 22:12:51 +0000 | [diff] [blame] | 210 | (size_t)(ModulePCTable[i].Stop - ModulePCTable[i].Start)); |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 211 | for (size_t r = 0; r < M.NumRegions; r++) { |
| 212 | auto &R = M.Regions[r]; |
| 213 | if (!R.Enabled) continue; |
| 214 | for (uint8_t *P = R.Start; P < R.Stop; P++) |
| 215 | if (*P) |
kcc | 001e5f7 | 2019-02-14 23:12:33 +0000 | [diff] [blame] | 216 | Observe(&ModulePCTable[i].Start[M.Idx(P)]); |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 217 | } |
metzman | b8a1ad5 | 2019-01-15 22:12:51 +0000 | [diff] [blame] | 218 | } |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 219 | } |
| 220 | } |
kcc | ec9da66 | 2017-08-28 22:52:22 +0000 | [diff] [blame] | 221 | |
kcc | b3080d0 | 2018-07-19 22:00:48 +0000 | [diff] [blame] | 222 | for (size_t i = 0, N = Min(CoveredFuncs.size(), NumPrintNewFuncs); i < N; |
| 223 | i++) { |
kcc | 873dc11 | 2018-06-07 21:15:24 +0000 | [diff] [blame] | 224 | Printf("\tNEW_FUNC[%zd/%zd]: ", i + 1, CoveredFuncs.size()); |
george.karpenkov | dc8a8c7 | 2018-10-10 00:57:44 +0000 | [diff] [blame] | 225 | PrintPC("%p %F %L", "%p", GetNextInstructionPc(CoveredFuncs[i])); |
kcc | 09b3e5f | 2018-07-06 19:47:00 +0000 | [diff] [blame] | 226 | Printf("\n"); |
kcc | ec9da66 | 2017-08-28 22:52:22 +0000 | [diff] [blame] | 227 | } |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 228 | } |
| 229 | |
kcc | 001e5f7 | 2019-02-14 23:12:33 +0000 | [diff] [blame] | 230 | uintptr_t TracePC::PCTableEntryIdx(const PCTableEntry *TE) { |
| 231 | size_t TotalTEs = 0; |
| 232 | for (size_t i = 0; i < NumPCTables; i++) { |
| 233 | auto &M = ModulePCTable[i]; |
| 234 | if (TE >= M.Start && TE < M.Stop) |
| 235 | return TotalTEs + TE - M.Start; |
| 236 | TotalTEs += M.Stop - M.Start; |
| 237 | } |
| 238 | assert(0); |
| 239 | return 0; |
| 240 | } |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 241 | |
kcc | 9c0ed93 | 2019-02-15 01:22:00 +0000 | [diff] [blame] | 242 | const TracePC::PCTableEntry *TracePC::PCTableEntryByIdx(uintptr_t Idx) { |
| 243 | for (size_t i = 0; i < NumPCTables; i++) { |
| 244 | auto &M = ModulePCTable[i]; |
| 245 | size_t Size = M.Stop - M.Start; |
| 246 | if (Idx < Size) return &M.Start[Idx]; |
| 247 | Idx -= Size; |
| 248 | } |
| 249 | return nullptr; |
| 250 | } |
| 251 | |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 252 | static std::string GetModuleName(uintptr_t PC) { |
| 253 | char ModulePathRaw[4096] = ""; // What's PATH_MAX in portable C++? |
| 254 | void *OffsetRaw = nullptr; |
| 255 | if (!EF->__sanitizer_get_module_and_offset_for_pc( |
| 256 | reinterpret_cast<void *>(PC), ModulePathRaw, |
| 257 | sizeof(ModulePathRaw), &OffsetRaw)) |
| 258 | return ""; |
| 259 | return ModulePathRaw; |
| 260 | } |
| 261 | |
kcc | 85cad3d | 2018-05-11 01:17:52 +0000 | [diff] [blame] | 262 | template<class CallBack> |
| 263 | void TracePC::IterateCoveredFunctions(CallBack CB) { |
| 264 | for (size_t i = 0; i < NumPCTables; i++) { |
| 265 | auto &M = ModulePCTable[i]; |
| 266 | assert(M.Start < M.Stop); |
| 267 | auto ModuleName = GetModuleName(M.Start->PC); |
| 268 | for (auto NextFE = M.Start; NextFE < M.Stop; ) { |
| 269 | auto FE = NextFE; |
kcc | 9c0ed93 | 2019-02-15 01:22:00 +0000 | [diff] [blame] | 270 | assert(PcIsFuncEntry(FE) && "Not a function entry point"); |
kcc | 85cad3d | 2018-05-11 01:17:52 +0000 | [diff] [blame] | 271 | do { |
| 272 | NextFE++; |
kcc | 9c0ed93 | 2019-02-15 01:22:00 +0000 | [diff] [blame] | 273 | } while (NextFE < M.Stop && !(PcIsFuncEntry(NextFE))); |
kcc | fb675a7 | 2019-01-26 01:33:09 +0000 | [diff] [blame] | 274 | CB(FE, NextFE, ObservedFuncs[FE->PC]); |
kcc | 85cad3d | 2018-05-11 01:17:52 +0000 | [diff] [blame] | 275 | } |
| 276 | } |
| 277 | } |
| 278 | |
kcc | 3acbe07 | 2018-05-16 23:26:37 +0000 | [diff] [blame] | 279 | void TracePC::SetFocusFunction(const std::string &FuncName) { |
| 280 | // This function should be called once. |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 281 | assert(!FocusFunctionCounterPtr); |
kcc | 3acbe07 | 2018-05-16 23:26:37 +0000 | [diff] [blame] | 282 | if (FuncName.empty()) |
| 283 | return; |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 284 | for (size_t M = 0; M < NumModules; M++) { |
kcc | 3acbe07 | 2018-05-16 23:26:37 +0000 | [diff] [blame] | 285 | auto &PCTE = ModulePCTable[M]; |
| 286 | size_t N = PCTE.Stop - PCTE.Start; |
| 287 | for (size_t I = 0; I < N; I++) { |
kcc | 9c0ed93 | 2019-02-15 01:22:00 +0000 | [diff] [blame] | 288 | if (!(PcIsFuncEntry(&PCTE.Start[I]))) continue; // not a function entry. |
kcc | 3acbe07 | 2018-05-16 23:26:37 +0000 | [diff] [blame] | 289 | auto Name = DescribePC("%F", GetNextInstructionPc(PCTE.Start[I].PC)); |
| 290 | if (Name[0] == 'i' && Name[1] == 'n' && Name[2] == ' ') |
| 291 | Name = Name.substr(3, std::string::npos); |
| 292 | if (FuncName != Name) continue; |
| 293 | Printf("INFO: Focus function is set to '%s'\n", Name.c_str()); |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 294 | FocusFunctionCounterPtr = Modules[M].Start() + I; |
kcc | 3acbe07 | 2018-05-16 23:26:37 +0000 | [diff] [blame] | 295 | return; |
| 296 | } |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | bool TracePC::ObservedFocusFunction() { |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 301 | return FocusFunctionCounterPtr && *FocusFunctionCounterPtr; |
kcc | 3acbe07 | 2018-05-16 23:26:37 +0000 | [diff] [blame] | 302 | } |
| 303 | |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 304 | void TracePC::PrintCoverage() { |
| 305 | if (!EF->__sanitizer_symbolize_pc || |
| 306 | !EF->__sanitizer_get_module_and_offset_for_pc) { |
| 307 | Printf("INFO: __sanitizer_symbolize_pc or " |
| 308 | "__sanitizer_get_module_and_offset_for_pc is not available," |
| 309 | " not printing coverage\n"); |
| 310 | return; |
| 311 | } |
| 312 | Printf("COVERAGE:\n"); |
kcc | b3080d0 | 2018-07-19 22:00:48 +0000 | [diff] [blame] | 313 | auto CoveredFunctionCallback = [&](const PCTableEntry *First, |
| 314 | const PCTableEntry *Last, |
| 315 | uintptr_t Counter) { |
kcc | 85cad3d | 2018-05-11 01:17:52 +0000 | [diff] [blame] | 316 | assert(First < Last); |
| 317 | auto VisualizePC = GetNextInstructionPc(First->PC); |
| 318 | std::string FileStr = DescribePC("%s", VisualizePC); |
kcc | b3080d0 | 2018-07-19 22:00:48 +0000 | [diff] [blame] | 319 | if (!IsInterestingCoverageFile(FileStr)) |
| 320 | return; |
kcc | 85cad3d | 2018-05-11 01:17:52 +0000 | [diff] [blame] | 321 | std::string FunctionStr = DescribePC("%F", VisualizePC); |
kcc | b3080d0 | 2018-07-19 22:00:48 +0000 | [diff] [blame] | 322 | if (FunctionStr.find("in ") == 0) |
| 323 | FunctionStr = FunctionStr.substr(3); |
kcc | 85cad3d | 2018-05-11 01:17:52 +0000 | [diff] [blame] | 324 | std::string LineStr = DescribePC("%l", VisualizePC); |
kcc | b3080d0 | 2018-07-19 22:00:48 +0000 | [diff] [blame] | 325 | size_t NumEdges = Last - First; |
morehouse | f64b940 | 2018-06-25 15:59:24 +0000 | [diff] [blame] | 326 | Vector<uintptr_t> UncoveredPCs; |
kcc | 85cad3d | 2018-05-11 01:17:52 +0000 | [diff] [blame] | 327 | for (auto TE = First; TE < Last; TE++) |
kcc | 001e5f7 | 2019-02-14 23:12:33 +0000 | [diff] [blame] | 328 | if (!ObservedPCs.count(TE)) |
kcc | 85cad3d | 2018-05-11 01:17:52 +0000 | [diff] [blame] | 329 | UncoveredPCs.push_back(TE->PC); |
kcc | fb675a7 | 2019-01-26 01:33:09 +0000 | [diff] [blame] | 330 | Printf("%sCOVERED_FUNC: hits: %zd", Counter ? "" : "UN", Counter); |
kcc | b3080d0 | 2018-07-19 22:00:48 +0000 | [diff] [blame] | 331 | Printf(" edges: %zd/%zd", NumEdges - UncoveredPCs.size(), NumEdges); |
kcc | 278174f | 2019-02-12 00:52:11 +0000 | [diff] [blame] | 332 | Printf(" %s %s:%s\n", FunctionStr.c_str(), FileStr.c_str(), |
| 333 | LineStr.c_str()); |
kcc | fb675a7 | 2019-01-26 01:33:09 +0000 | [diff] [blame] | 334 | if (Counter) |
| 335 | for (auto PC : UncoveredPCs) |
| 336 | Printf(" UNCOVERED_PC: %s\n", |
| 337 | DescribePC("%s:%l", GetNextInstructionPc(PC)).c_str()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 338 | }; |
| 339 | |
kcc | 85cad3d | 2018-05-11 01:17:52 +0000 | [diff] [blame] | 340 | IterateCoveredFunctions(CoveredFunctionCallback); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 341 | } |
| 342 | |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 343 | // Value profile. |
| 344 | // We keep track of various values that affect control flow. |
| 345 | // These values are inserted into a bit-set-based hash map. |
| 346 | // Every new bit in the map is treated as a new coverage. |
| 347 | // |
| 348 | // For memcmp/strcmp/etc the interesting value is the length of the common |
| 349 | // prefix of the parameters. |
| 350 | // For cmp instructions the interesting value is a XOR of the parameters. |
| 351 | // The interesting value is mixed up with the PC and is then added to the map. |
| 352 | |
| 353 | ATTRIBUTE_NO_SANITIZE_ALL |
| 354 | void TracePC::AddValueForMemcmp(void *caller_pc, const void *s1, const void *s2, |
| 355 | size_t n, bool StopAtZero) { |
| 356 | if (!n) return; |
| 357 | size_t Len = std::min(n, Word::GetMaxSize()); |
| 358 | const uint8_t *A1 = reinterpret_cast<const uint8_t *>(s1); |
| 359 | const uint8_t *A2 = reinterpret_cast<const uint8_t *>(s2); |
| 360 | uint8_t B1[Word::kMaxSize]; |
| 361 | uint8_t B2[Word::kMaxSize]; |
| 362 | // Copy the data into locals in this non-msan-instrumented function |
| 363 | // to avoid msan complaining further. |
| 364 | size_t Hash = 0; // Compute some simple hash of both strings. |
| 365 | for (size_t i = 0; i < Len; i++) { |
| 366 | B1[i] = A1[i]; |
| 367 | B2[i] = A2[i]; |
| 368 | size_t T = B1[i]; |
| 369 | Hash ^= (T << 8) | B2[i]; |
| 370 | } |
| 371 | size_t I = 0; |
kcc | 1280173 | 2019-05-09 22:09:25 +0000 | [diff] [blame] | 372 | uint8_t HammingDistance = 0; |
| 373 | for (; I < Len; I++) { |
| 374 | if (B1[I] != B2[I] || (StopAtZero && B1[I] == 0)) { |
| 375 | HammingDistance = Popcountll(B1[I] ^ B2[I]); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 376 | break; |
kcc | 1280173 | 2019-05-09 22:09:25 +0000 | [diff] [blame] | 377 | } |
| 378 | } |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 379 | size_t PC = reinterpret_cast<size_t>(caller_pc); |
| 380 | size_t Idx = (PC & 4095) | (I << 12); |
kcc | 1280173 | 2019-05-09 22:09:25 +0000 | [diff] [blame] | 381 | Idx += HammingDistance; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 382 | ValueProfileMap.AddValue(Idx); |
| 383 | TORCW.Insert(Idx ^ Hash, Word(B1, Len), Word(B2, Len)); |
| 384 | } |
| 385 | |
| 386 | template <class T> |
| 387 | ATTRIBUTE_TARGET_POPCNT ALWAYS_INLINE |
| 388 | ATTRIBUTE_NO_SANITIZE_ALL |
| 389 | void TracePC::HandleCmp(uintptr_t PC, T Arg1, T Arg2) { |
| 390 | uint64_t ArgXor = Arg1 ^ Arg2; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 391 | if (sizeof(T) == 4) |
dor1s | e6729cb | 2018-07-16 15:15:34 +0000 | [diff] [blame] | 392 | TORC4.Insert(ArgXor, Arg1, Arg2); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 393 | else if (sizeof(T) == 8) |
dor1s | e6729cb | 2018-07-16 15:15:34 +0000 | [diff] [blame] | 394 | TORC8.Insert(ArgXor, Arg1, Arg2); |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 395 | uint64_t HammingDistance = Popcountll(ArgXor); // [0,64] |
| 396 | uint64_t AbsoluteDistance = (Arg1 == Arg2 ? 0 : Clzll(Arg1 - Arg2) + 1); |
kcc | 6d3b8e9 | 2018-08-02 00:24:49 +0000 | [diff] [blame] | 397 | ValueProfileMap.AddValue(PC * 128 + HammingDistance); |
| 398 | ValueProfileMap.AddValue(PC * 128 + 64 + AbsoluteDistance); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | static size_t InternalStrnlen(const char *S, size_t MaxLen) { |
| 402 | size_t Len = 0; |
| 403 | for (; Len < MaxLen && S[Len]; Len++) {} |
| 404 | return Len; |
| 405 | } |
| 406 | |
| 407 | // Finds min of (strlen(S1), strlen(S2)). |
| 408 | // Needed bacause one of these strings may actually be non-zero terminated. |
| 409 | static size_t InternalStrnlen2(const char *S1, const char *S2) { |
| 410 | size_t Len = 0; |
| 411 | for (; S1[Len] && S2[Len]; Len++) {} |
| 412 | return Len; |
| 413 | } |
| 414 | |
| 415 | void TracePC::ClearInlineCounters() { |
kcc | e246920 | 2019-01-30 06:15:52 +0000 | [diff] [blame] | 416 | IterateCounterRegions([](const Module::Region &R){ |
| 417 | if (R.Enabled) |
| 418 | memset(R.Start, 0, R.Stop - R.Start); |
| 419 | }); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 420 | } |
| 421 | |
kcc | 0f3c031 | 2017-08-22 01:50:00 +0000 | [diff] [blame] | 422 | ATTRIBUTE_NO_SANITIZE_ALL |
kcc | 1c0379f | 2017-08-22 01:28:32 +0000 | [diff] [blame] | 423 | void TracePC::RecordInitialStack() { |
kcc | 0f3c031 | 2017-08-22 01:50:00 +0000 | [diff] [blame] | 424 | int stack; |
| 425 | __sancov_lowest_stack = InitialStack = reinterpret_cast<uintptr_t>(&stack); |
kcc | 1c0379f | 2017-08-22 01:28:32 +0000 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | uintptr_t TracePC::GetMaxStackOffset() const { |
| 429 | return InitialStack - __sancov_lowest_stack; // Stack grows down |
| 430 | } |
| 431 | |
kcc | 02db23c | 2019-01-29 23:37:20 +0000 | [diff] [blame] | 432 | void WarnAboutDeprecatedInstrumentation(const char *flag) { |
metzman | 23b5d20 | 2019-01-31 20:32:20 +0000 | [diff] [blame] | 433 | // Use RawPrint because Printf cannot be used on Windows before OutputFile is |
| 434 | // initialized. |
| 435 | RawPrint(flag); |
| 436 | RawPrint( |
| 437 | " is no longer supported by libFuzzer.\n" |
| 438 | "Please either migrate to a compiler that supports -fsanitize=fuzzer\n" |
| 439 | "or use an older version of libFuzzer\n"); |
kcc | 02db23c | 2019-01-29 23:37:20 +0000 | [diff] [blame] | 440 | exit(1); |
| 441 | } |
| 442 | |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 443 | } // namespace fuzzer |
| 444 | |
| 445 | extern "C" { |
| 446 | ATTRIBUTE_INTERFACE |
| 447 | ATTRIBUTE_NO_SANITIZE_ALL |
| 448 | void __sanitizer_cov_trace_pc_guard(uint32_t *Guard) { |
metzman | 23b5d20 | 2019-01-31 20:32:20 +0000 | [diff] [blame] | 449 | fuzzer::WarnAboutDeprecatedInstrumentation( |
| 450 | "-fsanitize-coverage=trace-pc-guard"); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | // Best-effort support for -fsanitize-coverage=trace-pc, which is available |
| 454 | // in both Clang and GCC. |
| 455 | ATTRIBUTE_INTERFACE |
| 456 | ATTRIBUTE_NO_SANITIZE_ALL |
| 457 | void __sanitizer_cov_trace_pc() { |
metzman | 23b5d20 | 2019-01-31 20:32:20 +0000 | [diff] [blame] | 458 | fuzzer::WarnAboutDeprecatedInstrumentation("-fsanitize-coverage=trace-pc"); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | ATTRIBUTE_INTERFACE |
| 462 | void __sanitizer_cov_trace_pc_guard_init(uint32_t *Start, uint32_t *Stop) { |
kcc | 02db23c | 2019-01-29 23:37:20 +0000 | [diff] [blame] | 463 | fuzzer::WarnAboutDeprecatedInstrumentation( |
| 464 | "-fsanitize-coverage=trace-pc-guard"); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | ATTRIBUTE_INTERFACE |
| 468 | void __sanitizer_cov_8bit_counters_init(uint8_t *Start, uint8_t *Stop) { |
| 469 | fuzzer::TPC.HandleInline8bitCountersInit(Start, Stop); |
| 470 | } |
| 471 | |
| 472 | ATTRIBUTE_INTERFACE |
kcc | 98957a1 | 2017-08-25 19:29:47 +0000 | [diff] [blame] | 473 | void __sanitizer_cov_pcs_init(const uintptr_t *pcs_beg, |
| 474 | const uintptr_t *pcs_end) { |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 475 | fuzzer::TPC.HandlePCsInit(pcs_beg, pcs_end); |
| 476 | } |
| 477 | |
| 478 | ATTRIBUTE_INTERFACE |
| 479 | ATTRIBUTE_NO_SANITIZE_ALL |
| 480 | void __sanitizer_cov_trace_pc_indir(uintptr_t Callee) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 481 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 482 | fuzzer::TPC.HandleCallerCallee(PC, Callee); |
| 483 | } |
| 484 | |
| 485 | ATTRIBUTE_INTERFACE |
| 486 | ATTRIBUTE_NO_SANITIZE_ALL |
| 487 | ATTRIBUTE_TARGET_POPCNT |
| 488 | void __sanitizer_cov_trace_cmp8(uint64_t Arg1, uint64_t Arg2) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 489 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 490 | fuzzer::TPC.HandleCmp(PC, Arg1, Arg2); |
| 491 | } |
| 492 | |
| 493 | ATTRIBUTE_INTERFACE |
| 494 | ATTRIBUTE_NO_SANITIZE_ALL |
| 495 | ATTRIBUTE_TARGET_POPCNT |
| 496 | // Now the __sanitizer_cov_trace_const_cmp[1248] callbacks just mimic |
| 497 | // the behaviour of __sanitizer_cov_trace_cmp[1248] ones. This, however, |
| 498 | // should be changed later to make full use of instrumentation. |
| 499 | void __sanitizer_cov_trace_const_cmp8(uint64_t Arg1, uint64_t Arg2) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 500 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 501 | fuzzer::TPC.HandleCmp(PC, Arg1, Arg2); |
| 502 | } |
| 503 | |
| 504 | ATTRIBUTE_INTERFACE |
| 505 | ATTRIBUTE_NO_SANITIZE_ALL |
| 506 | ATTRIBUTE_TARGET_POPCNT |
| 507 | void __sanitizer_cov_trace_cmp4(uint32_t Arg1, uint32_t Arg2) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 508 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 509 | fuzzer::TPC.HandleCmp(PC, Arg1, Arg2); |
| 510 | } |
| 511 | |
| 512 | ATTRIBUTE_INTERFACE |
| 513 | ATTRIBUTE_NO_SANITIZE_ALL |
| 514 | ATTRIBUTE_TARGET_POPCNT |
| 515 | void __sanitizer_cov_trace_const_cmp4(uint32_t Arg1, uint32_t Arg2) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 516 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 517 | fuzzer::TPC.HandleCmp(PC, Arg1, Arg2); |
| 518 | } |
| 519 | |
| 520 | ATTRIBUTE_INTERFACE |
| 521 | ATTRIBUTE_NO_SANITIZE_ALL |
| 522 | ATTRIBUTE_TARGET_POPCNT |
| 523 | void __sanitizer_cov_trace_cmp2(uint16_t Arg1, uint16_t Arg2) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 524 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 525 | fuzzer::TPC.HandleCmp(PC, Arg1, Arg2); |
| 526 | } |
| 527 | |
| 528 | ATTRIBUTE_INTERFACE |
| 529 | ATTRIBUTE_NO_SANITIZE_ALL |
| 530 | ATTRIBUTE_TARGET_POPCNT |
| 531 | void __sanitizer_cov_trace_const_cmp2(uint16_t Arg1, uint16_t Arg2) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 532 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 533 | fuzzer::TPC.HandleCmp(PC, Arg1, Arg2); |
| 534 | } |
| 535 | |
| 536 | ATTRIBUTE_INTERFACE |
| 537 | ATTRIBUTE_NO_SANITIZE_ALL |
| 538 | ATTRIBUTE_TARGET_POPCNT |
| 539 | void __sanitizer_cov_trace_cmp1(uint8_t Arg1, uint8_t Arg2) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 540 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 541 | fuzzer::TPC.HandleCmp(PC, Arg1, Arg2); |
| 542 | } |
| 543 | |
| 544 | ATTRIBUTE_INTERFACE |
| 545 | ATTRIBUTE_NO_SANITIZE_ALL |
| 546 | ATTRIBUTE_TARGET_POPCNT |
| 547 | void __sanitizer_cov_trace_const_cmp1(uint8_t Arg1, uint8_t Arg2) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 548 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 549 | fuzzer::TPC.HandleCmp(PC, Arg1, Arg2); |
| 550 | } |
| 551 | |
| 552 | ATTRIBUTE_INTERFACE |
| 553 | ATTRIBUTE_NO_SANITIZE_ALL |
| 554 | ATTRIBUTE_TARGET_POPCNT |
| 555 | void __sanitizer_cov_trace_switch(uint64_t Val, uint64_t *Cases) { |
| 556 | uint64_t N = Cases[0]; |
| 557 | uint64_t ValSizeInBits = Cases[1]; |
| 558 | uint64_t *Vals = Cases + 2; |
kcc | 59c3be4 | 2019-01-24 21:08:54 +0000 | [diff] [blame] | 559 | // Skip the most common and the most boring case: all switch values are small. |
| 560 | // We may want to skip this at compile-time, but it will make the |
| 561 | // instrumentation less general. |
| 562 | if (Vals[N - 1] < 256) |
| 563 | return; |
| 564 | // Also skip small inputs values, they won't give good signal. |
| 565 | if (Val < 256) |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 566 | return; |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 567 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 568 | size_t i; |
kcc | 59c3be4 | 2019-01-24 21:08:54 +0000 | [diff] [blame] | 569 | uint64_t Smaller = 0; |
| 570 | uint64_t Larger = ~(uint64_t)0; |
| 571 | // Find two switch values such that Smaller < Val < Larger. |
| 572 | // Use 0 and 0xfff..f as the defaults. |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 573 | for (i = 0; i < N; i++) { |
kcc | 59c3be4 | 2019-01-24 21:08:54 +0000 | [diff] [blame] | 574 | if (Val < Vals[i]) { |
| 575 | Larger = Vals[i]; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 576 | break; |
kcc | 59c3be4 | 2019-01-24 21:08:54 +0000 | [diff] [blame] | 577 | } |
| 578 | if (Val > Vals[i]) Smaller = Vals[i]; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 579 | } |
| 580 | |
kcc | 59c3be4 | 2019-01-24 21:08:54 +0000 | [diff] [blame] | 581 | // Apply HandleCmp to {Val,Smaller} and {Val, Larger}, |
| 582 | // use i as the PC modifier for HandleCmp. |
| 583 | if (ValSizeInBits == 16) { |
| 584 | fuzzer::TPC.HandleCmp(PC + 2 * i, static_cast<uint16_t>(Val), |
| 585 | (uint16_t)(Smaller)); |
| 586 | fuzzer::TPC.HandleCmp(PC + 2 * i + 1, static_cast<uint16_t>(Val), |
| 587 | (uint16_t)(Larger)); |
| 588 | } else if (ValSizeInBits == 32) { |
| 589 | fuzzer::TPC.HandleCmp(PC + 2 * i, static_cast<uint32_t>(Val), |
| 590 | (uint32_t)(Smaller)); |
| 591 | fuzzer::TPC.HandleCmp(PC + 2 * i + 1, static_cast<uint32_t>(Val), |
| 592 | (uint32_t)(Larger)); |
| 593 | } else { |
| 594 | fuzzer::TPC.HandleCmp(PC + 2*i, Val, Smaller); |
| 595 | fuzzer::TPC.HandleCmp(PC + 2*i + 1, Val, Larger); |
| 596 | } |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | ATTRIBUTE_INTERFACE |
| 600 | ATTRIBUTE_NO_SANITIZE_ALL |
| 601 | ATTRIBUTE_TARGET_POPCNT |
| 602 | void __sanitizer_cov_trace_div4(uint32_t Val) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 603 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 604 | fuzzer::TPC.HandleCmp(PC, Val, (uint32_t)0); |
| 605 | } |
| 606 | |
| 607 | ATTRIBUTE_INTERFACE |
| 608 | ATTRIBUTE_NO_SANITIZE_ALL |
| 609 | ATTRIBUTE_TARGET_POPCNT |
| 610 | void __sanitizer_cov_trace_div8(uint64_t Val) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 611 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 612 | fuzzer::TPC.HandleCmp(PC, Val, (uint64_t)0); |
| 613 | } |
| 614 | |
| 615 | ATTRIBUTE_INTERFACE |
| 616 | ATTRIBUTE_NO_SANITIZE_ALL |
| 617 | ATTRIBUTE_TARGET_POPCNT |
| 618 | void __sanitizer_cov_trace_gep(uintptr_t Idx) { |
metzman | 4013297 | 2019-01-09 21:46:09 +0000 | [diff] [blame] | 619 | uintptr_t PC = reinterpret_cast<uintptr_t>(GET_CALLER_PC()); |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 620 | fuzzer::TPC.HandleCmp(PC, Idx, (uintptr_t)0); |
| 621 | } |
| 622 | |
| 623 | ATTRIBUTE_INTERFACE ATTRIBUTE_NO_SANITIZE_MEMORY |
| 624 | void __sanitizer_weak_hook_memcmp(void *caller_pc, const void *s1, |
| 625 | const void *s2, size_t n, int result) { |
morehouse | c6ee875 | 2018-07-17 16:12:00 +0000 | [diff] [blame] | 626 | if (!fuzzer::RunningUserCallback) return; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 627 | if (result == 0) return; // No reason to mutate. |
| 628 | if (n <= 1) return; // Not interesting. |
| 629 | fuzzer::TPC.AddValueForMemcmp(caller_pc, s1, s2, n, /*StopAtZero*/false); |
| 630 | } |
| 631 | |
| 632 | ATTRIBUTE_INTERFACE ATTRIBUTE_NO_SANITIZE_MEMORY |
| 633 | void __sanitizer_weak_hook_strncmp(void *caller_pc, const char *s1, |
| 634 | const char *s2, size_t n, int result) { |
morehouse | c6ee875 | 2018-07-17 16:12:00 +0000 | [diff] [blame] | 635 | if (!fuzzer::RunningUserCallback) return; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 636 | if (result == 0) return; // No reason to mutate. |
| 637 | size_t Len1 = fuzzer::InternalStrnlen(s1, n); |
| 638 | size_t Len2 = fuzzer::InternalStrnlen(s2, n); |
| 639 | n = std::min(n, Len1); |
| 640 | n = std::min(n, Len2); |
| 641 | if (n <= 1) return; // Not interesting. |
| 642 | fuzzer::TPC.AddValueForMemcmp(caller_pc, s1, s2, n, /*StopAtZero*/true); |
| 643 | } |
| 644 | |
| 645 | ATTRIBUTE_INTERFACE ATTRIBUTE_NO_SANITIZE_MEMORY |
| 646 | void __sanitizer_weak_hook_strcmp(void *caller_pc, const char *s1, |
dor1s | e6729cb | 2018-07-16 15:15:34 +0000 | [diff] [blame] | 647 | const char *s2, int result) { |
morehouse | c6ee875 | 2018-07-17 16:12:00 +0000 | [diff] [blame] | 648 | if (!fuzzer::RunningUserCallback) return; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 649 | if (result == 0) return; // No reason to mutate. |
| 650 | size_t N = fuzzer::InternalStrnlen2(s1, s2); |
| 651 | if (N <= 1) return; // Not interesting. |
| 652 | fuzzer::TPC.AddValueForMemcmp(caller_pc, s1, s2, N, /*StopAtZero*/true); |
| 653 | } |
| 654 | |
| 655 | ATTRIBUTE_INTERFACE ATTRIBUTE_NO_SANITIZE_MEMORY |
| 656 | void __sanitizer_weak_hook_strncasecmp(void *called_pc, const char *s1, |
| 657 | const char *s2, size_t n, int result) { |
morehouse | c6ee875 | 2018-07-17 16:12:00 +0000 | [diff] [blame] | 658 | if (!fuzzer::RunningUserCallback) return; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 659 | return __sanitizer_weak_hook_strncmp(called_pc, s1, s2, n, result); |
| 660 | } |
| 661 | |
| 662 | ATTRIBUTE_INTERFACE ATTRIBUTE_NO_SANITIZE_MEMORY |
| 663 | void __sanitizer_weak_hook_strcasecmp(void *called_pc, const char *s1, |
| 664 | const char *s2, int result) { |
morehouse | c6ee875 | 2018-07-17 16:12:00 +0000 | [diff] [blame] | 665 | if (!fuzzer::RunningUserCallback) return; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 666 | return __sanitizer_weak_hook_strcmp(called_pc, s1, s2, result); |
| 667 | } |
| 668 | |
| 669 | ATTRIBUTE_INTERFACE ATTRIBUTE_NO_SANITIZE_MEMORY |
| 670 | void __sanitizer_weak_hook_strstr(void *called_pc, const char *s1, |
| 671 | const char *s2, char *result) { |
morehouse | c6ee875 | 2018-07-17 16:12:00 +0000 | [diff] [blame] | 672 | if (!fuzzer::RunningUserCallback) return; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 673 | fuzzer::TPC.MMT.Add(reinterpret_cast<const uint8_t *>(s2), strlen(s2)); |
| 674 | } |
| 675 | |
| 676 | ATTRIBUTE_INTERFACE ATTRIBUTE_NO_SANITIZE_MEMORY |
| 677 | void __sanitizer_weak_hook_strcasestr(void *called_pc, const char *s1, |
| 678 | const char *s2, char *result) { |
morehouse | c6ee875 | 2018-07-17 16:12:00 +0000 | [diff] [blame] | 679 | if (!fuzzer::RunningUserCallback) return; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 680 | fuzzer::TPC.MMT.Add(reinterpret_cast<const uint8_t *>(s2), strlen(s2)); |
| 681 | } |
| 682 | |
| 683 | ATTRIBUTE_INTERFACE ATTRIBUTE_NO_SANITIZE_MEMORY |
| 684 | void __sanitizer_weak_hook_memmem(void *called_pc, const void *s1, size_t len1, |
| 685 | const void *s2, size_t len2, void *result) { |
morehouse | c6ee875 | 2018-07-17 16:12:00 +0000 | [diff] [blame] | 686 | if (!fuzzer::RunningUserCallback) return; |
george.karpenkov | 29efa6d | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 687 | fuzzer::TPC.MMT.Add(reinterpret_cast<const uint8_t *>(s2), len2); |
| 688 | } |
| 689 | } // extern "C" |