123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194 |
- //===-- sancov.cpp --------------------------------------------------------===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- // This file is a command-line tool for reading and analyzing sanitizer
- // coverage.
- //===----------------------------------------------------------------------===//
- #include "llvm/ADT/STLExtras.h"
- #include "llvm/ADT/StringExtras.h"
- #include "llvm/ADT/Twine.h"
- #include "llvm/DebugInfo/Symbolize/Symbolize.h"
- #include "llvm/MC/MCAsmInfo.h"
- #include "llvm/MC/MCContext.h"
- #include "llvm/MC/MCDisassembler/MCDisassembler.h"
- #include "llvm/MC/MCInst.h"
- #include "llvm/MC/MCInstrAnalysis.h"
- #include "llvm/MC/MCInstrInfo.h"
- #include "llvm/MC/MCObjectFileInfo.h"
- #include "llvm/MC/MCRegisterInfo.h"
- #include "llvm/MC/MCSubtargetInfo.h"
- #include "llvm/MC/MCTargetOptions.h"
- #include "llvm/MC/TargetRegistry.h"
- #include "llvm/Object/Archive.h"
- #include "llvm/Object/Binary.h"
- #include "llvm/Object/COFF.h"
- #include "llvm/Object/MachO.h"
- #include "llvm/Object/ObjectFile.h"
- #include "llvm/Support/Casting.h"
- #include "llvm/Support/CommandLine.h"
- #include "llvm/Support/Errc.h"
- #include "llvm/Support/ErrorOr.h"
- #include "llvm/Support/FileSystem.h"
- #include "llvm/Support/InitLLVM.h"
- #include "llvm/Support/JSON.h"
- #include "llvm/Support/MD5.h"
- #include "llvm/Support/MemoryBuffer.h"
- #include "llvm/Support/Path.h"
- #include "llvm/Support/Regex.h"
- #include "llvm/Support/SHA1.h"
- #include "llvm/Support/SourceMgr.h"
- #include "llvm/Support/SpecialCaseList.h"
- #include "llvm/Support/TargetSelect.h"
- #include "llvm/Support/VirtualFileSystem.h"
- #include "llvm/Support/YAMLParser.h"
- #include "llvm/Support/raw_ostream.h"
- #include <set>
- #include <vector>
- using namespace llvm;
- namespace {
- // --------- COMMAND LINE FLAGS ---------
- enum ActionType {
- CoveredFunctionsAction,
- HtmlReportAction,
- MergeAction,
- NotCoveredFunctionsAction,
- PrintAction,
- PrintCovPointsAction,
- StatsAction,
- SymbolizeAction
- };
- cl::opt<ActionType> Action(
- cl::desc("Action (required)"), cl::Required,
- cl::values(
- clEnumValN(PrintAction, "print", "Print coverage addresses"),
- clEnumValN(PrintCovPointsAction, "print-coverage-pcs",
- "Print coverage instrumentation points addresses."),
- clEnumValN(CoveredFunctionsAction, "covered-functions",
- "Print all covered funcions."),
- clEnumValN(NotCoveredFunctionsAction, "not-covered-functions",
- "Print all not covered funcions."),
- clEnumValN(StatsAction, "print-coverage-stats",
- "Print coverage statistics."),
- clEnumValN(HtmlReportAction, "html-report",
- "REMOVED. Use -symbolize & coverage-report-server.py."),
- clEnumValN(SymbolizeAction, "symbolize",
- "Produces a symbolized JSON report from binary report."),
- clEnumValN(MergeAction, "merge", "Merges reports.")));
- static cl::list<std::string>
- ClInputFiles(cl::Positional, cl::OneOrMore,
- cl::desc("<action> <binary files...> <.sancov files...> "
- "<.symcov files...>"));
- static cl::opt<bool> ClDemangle("demangle", cl::init(true),
- cl::desc("Print demangled function name."));
- static cl::opt<bool>
- ClSkipDeadFiles("skip-dead-files", cl::init(true),
- cl::desc("Do not list dead source files in reports."));
- static cl::opt<std::string> ClStripPathPrefix(
- "strip_path_prefix", cl::init(""),
- cl::desc("Strip this prefix from file paths in reports."));
- static cl::opt<std::string>
- ClBlacklist("blacklist", cl::init(""),
- cl::desc("Blacklist file (sanitizer blacklist format)."));
- static cl::opt<bool> ClUseDefaultBlacklist(
- "use_default_blacklist", cl::init(true), cl::Hidden,
- cl::desc("Controls if default blacklist should be used."));
- static const char *const DefaultBlacklistStr = "fun:__sanitizer_.*\n"
- "src:/usr/include/.*\n"
- "src:.*/libc\\+\\+/.*\n";
- // --------- FORMAT SPECIFICATION ---------
- struct FileHeader {
- uint32_t Bitness;
- uint32_t Magic;
- };
- static const uint32_t BinCoverageMagic = 0xC0BFFFFF;
- static const uint32_t Bitness32 = 0xFFFFFF32;
- static const uint32_t Bitness64 = 0xFFFFFF64;
- static const Regex SancovFileRegex("(.*)\\.[0-9]+\\.sancov");
- static const Regex SymcovFileRegex(".*\\.symcov");
- // --------- MAIN DATASTRUCTURES ----------
- // Contents of .sancov file: list of coverage point addresses that were
- // executed.
- struct RawCoverage {
- explicit RawCoverage(std::unique_ptr<std::set<uint64_t>> Addrs)
- : Addrs(std::move(Addrs)) {}
- // Read binary .sancov file.
- static ErrorOr<std::unique_ptr<RawCoverage>>
- read(const std::string &FileName);
- std::unique_ptr<std::set<uint64_t>> Addrs;
- };
- // Coverage point has an opaque Id and corresponds to multiple source locations.
- struct CoveragePoint {
- explicit CoveragePoint(const std::string &Id) : Id(Id) {}
- std::string Id;
- SmallVector<DILineInfo, 1> Locs;
- };
- // Symcov file content: set of covered Ids plus information about all available
- // coverage points.
- struct SymbolizedCoverage {
- // Read json .symcov file.
- static std::unique_ptr<SymbolizedCoverage> read(const std::string &InputFile);
- std::set<std::string> CoveredIds;
- std::string BinaryHash;
- std::vector<CoveragePoint> Points;
- };
- struct CoverageStats {
- size_t AllPoints;
- size_t CovPoints;
- size_t AllFns;
- size_t CovFns;
- };
- // --------- ERROR HANDLING ---------
- static void fail(const llvm::Twine &E) {
- errs() << "ERROR: " << E << "\n";
- exit(1);
- }
- static void failIf(bool B, const llvm::Twine &E) {
- if (B)
- fail(E);
- }
- static void failIfError(std::error_code Error) {
- if (!Error)
- return;
- errs() << "ERROR: " << Error.message() << "(" << Error.value() << ")\n";
- exit(1);
- }
- template <typename T> static void failIfError(const ErrorOr<T> &E) {
- failIfError(E.getError());
- }
- static void failIfError(Error Err) {
- if (Err) {
- logAllUnhandledErrors(std::move(Err), errs(), "ERROR: ");
- exit(1);
- }
- }
- template <typename T> static void failIfError(Expected<T> &E) {
- failIfError(E.takeError());
- }
- static void failIfNotEmpty(const llvm::Twine &E) {
- if (E.str().empty())
- return;
- fail(E);
- }
- template <typename T>
- static void failIfEmpty(const std::unique_ptr<T> &Ptr,
- const std::string &Message) {
- if (Ptr.get())
- return;
- fail(Message);
- }
- // ----------- Coverage I/O ----------
- template <typename T>
- static void readInts(const char *Start, const char *End,
- std::set<uint64_t> *Ints) {
- const T *S = reinterpret_cast<const T *>(Start);
- const T *E = reinterpret_cast<const T *>(End);
- std::copy(S, E, std::inserter(*Ints, Ints->end()));
- }
- ErrorOr<std::unique_ptr<RawCoverage>>
- RawCoverage::read(const std::string &FileName) {
- ErrorOr<std::unique_ptr<MemoryBuffer>> BufOrErr =
- MemoryBuffer::getFile(FileName);
- if (!BufOrErr)
- return BufOrErr.getError();
- std::unique_ptr<MemoryBuffer> Buf = std::move(BufOrErr.get());
- if (Buf->getBufferSize() < 8) {
- errs() << "File too small (<8): " << Buf->getBufferSize() << '\n';
- return make_error_code(errc::illegal_byte_sequence);
- }
- const FileHeader *Header =
- reinterpret_cast<const FileHeader *>(Buf->getBufferStart());
- if (Header->Magic != BinCoverageMagic) {
- errs() << "Wrong magic: " << Header->Magic << '\n';
- return make_error_code(errc::illegal_byte_sequence);
- }
- auto Addrs = std::make_unique<std::set<uint64_t>>();
- switch (Header->Bitness) {
- case Bitness64:
- readInts<uint64_t>(Buf->getBufferStart() + 8, Buf->getBufferEnd(),
- Addrs.get());
- break;
- case Bitness32:
- readInts<uint32_t>(Buf->getBufferStart() + 8, Buf->getBufferEnd(),
- Addrs.get());
- break;
- default:
- errs() << "Unsupported bitness: " << Header->Bitness << '\n';
- return make_error_code(errc::illegal_byte_sequence);
- }
- // Ignore slots that are zero, so a runtime implementation is not required
- // to compactify the data.
- Addrs->erase(0);
- return std::unique_ptr<RawCoverage>(new RawCoverage(std::move(Addrs)));
- }
- // Print coverage addresses.
- raw_ostream &operator<<(raw_ostream &OS, const RawCoverage &CoverageData) {
- for (auto Addr : *CoverageData.Addrs) {
- OS << "0x";
- OS.write_hex(Addr);
- OS << "\n";
- }
- return OS;
- }
- static raw_ostream &operator<<(raw_ostream &OS, const CoverageStats &Stats) {
- OS << "all-edges: " << Stats.AllPoints << "\n";
- OS << "cov-edges: " << Stats.CovPoints << "\n";
- OS << "all-functions: " << Stats.AllFns << "\n";
- OS << "cov-functions: " << Stats.CovFns << "\n";
- return OS;
- }
- // Output symbolized information for coverage points in JSON.
- // Format:
- // {
- // '<file_name>' : {
- // '<function_name>' : {
- // '<point_id'> : '<line_number>:'<column_number'.
- // ....
- // }
- // }
- // }
- static void operator<<(json::OStream &W,
- const std::vector<CoveragePoint> &Points) {
- // Group points by file.
- std::map<std::string, std::vector<const CoveragePoint *>> PointsByFile;
- for (const auto &Point : Points) {
- for (const DILineInfo &Loc : Point.Locs) {
- PointsByFile[Loc.FileName].push_back(&Point);
- }
- }
- for (const auto &P : PointsByFile) {
- std::string FileName = P.first;
- std::map<std::string, std::vector<const CoveragePoint *>> PointsByFn;
- for (auto PointPtr : P.second) {
- for (const DILineInfo &Loc : PointPtr->Locs) {
- PointsByFn[Loc.FunctionName].push_back(PointPtr);
- }
- }
- W.attributeObject(P.first, [&] {
- // Group points by function.
- for (const auto &P : PointsByFn) {
- std::string FunctionName = P.first;
- std::set<std::string> WrittenIds;
- W.attributeObject(FunctionName, [&] {
- for (const CoveragePoint *Point : P.second) {
- for (const auto &Loc : Point->Locs) {
- if (Loc.FileName != FileName || Loc.FunctionName != FunctionName)
- continue;
- if (WrittenIds.find(Point->Id) != WrittenIds.end())
- continue;
- // Output <point_id> : "<line>:<col>".
- WrittenIds.insert(Point->Id);
- W.attribute(Point->Id,
- (utostr(Loc.Line) + ":" + utostr(Loc.Column)));
- }
- }
- });
- }
- });
- }
- }
- static void operator<<(json::OStream &W, const SymbolizedCoverage &C) {
- W.object([&] {
- W.attributeArray("covered-points", [&] {
- for (const std::string &P : C.CoveredIds) {
- W.value(P);
- }
- });
- W.attribute("binary-hash", C.BinaryHash);
- W.attributeObject("point-symbol-info", [&] { W << C.Points; });
- });
- }
- static std::string parseScalarString(yaml::Node *N) {
- SmallString<64> StringStorage;
- yaml::ScalarNode *S = dyn_cast<yaml::ScalarNode>(N);
- failIf(!S, "expected string");
- return std::string(S->getValue(StringStorage));
- }
- std::unique_ptr<SymbolizedCoverage>
- SymbolizedCoverage::read(const std::string &InputFile) {
- auto Coverage(std::make_unique<SymbolizedCoverage>());
- std::map<std::string, CoveragePoint> Points;
- ErrorOr<std::unique_ptr<MemoryBuffer>> BufOrErr =
- MemoryBuffer::getFile(InputFile);
- failIfError(BufOrErr);
- SourceMgr SM;
- yaml::Stream S(**BufOrErr, SM);
- yaml::document_iterator DI = S.begin();
- failIf(DI == S.end(), "empty document: " + InputFile);
- yaml::Node *Root = DI->getRoot();
- failIf(!Root, "expecting root node: " + InputFile);
- yaml::MappingNode *Top = dyn_cast<yaml::MappingNode>(Root);
- failIf(!Top, "expecting mapping node: " + InputFile);
- for (auto &KVNode : *Top) {
- auto Key = parseScalarString(KVNode.getKey());
- if (Key == "covered-points") {
- yaml::SequenceNode *Points =
- dyn_cast<yaml::SequenceNode>(KVNode.getValue());
- failIf(!Points, "expected array: " + InputFile);
- for (auto I = Points->begin(), E = Points->end(); I != E; ++I) {
- Coverage->CoveredIds.insert(parseScalarString(&*I));
- }
- } else if (Key == "binary-hash") {
- Coverage->BinaryHash = parseScalarString(KVNode.getValue());
- } else if (Key == "point-symbol-info") {
- yaml::MappingNode *PointSymbolInfo =
- dyn_cast<yaml::MappingNode>(KVNode.getValue());
- failIf(!PointSymbolInfo, "expected mapping node: " + InputFile);
- for (auto &FileKVNode : *PointSymbolInfo) {
- auto Filename = parseScalarString(FileKVNode.getKey());
- yaml::MappingNode *FileInfo =
- dyn_cast<yaml::MappingNode>(FileKVNode.getValue());
- failIf(!FileInfo, "expected mapping node: " + InputFile);
- for (auto &FunctionKVNode : *FileInfo) {
- auto FunctionName = parseScalarString(FunctionKVNode.getKey());
- yaml::MappingNode *FunctionInfo =
- dyn_cast<yaml::MappingNode>(FunctionKVNode.getValue());
- failIf(!FunctionInfo, "expected mapping node: " + InputFile);
- for (auto &PointKVNode : *FunctionInfo) {
- auto PointId = parseScalarString(PointKVNode.getKey());
- auto Loc = parseScalarString(PointKVNode.getValue());
- size_t ColonPos = Loc.find(':');
- failIf(ColonPos == std::string::npos, "expected ':': " + InputFile);
- auto LineStr = Loc.substr(0, ColonPos);
- auto ColStr = Loc.substr(ColonPos + 1, Loc.size());
- if (Points.find(PointId) == Points.end())
- Points.insert(std::make_pair(PointId, CoveragePoint(PointId)));
- DILineInfo LineInfo;
- LineInfo.FileName = Filename;
- LineInfo.FunctionName = FunctionName;
- char *End;
- LineInfo.Line = std::strtoul(LineStr.c_str(), &End, 10);
- LineInfo.Column = std::strtoul(ColStr.c_str(), &End, 10);
- CoveragePoint *CoveragePoint = &Points.find(PointId)->second;
- CoveragePoint->Locs.push_back(LineInfo);
- }
- }
- }
- } else {
- errs() << "Ignoring unknown key: " << Key << "\n";
- }
- }
- for (auto &KV : Points) {
- Coverage->Points.push_back(KV.second);
- }
- return Coverage;
- }
- // ---------- MAIN FUNCTIONALITY ----------
- std::string stripPathPrefix(std::string Path) {
- if (ClStripPathPrefix.empty())
- return Path;
- size_t Pos = Path.find(ClStripPathPrefix);
- if (Pos == std::string::npos)
- return Path;
- return Path.substr(Pos + ClStripPathPrefix.size());
- }
- static std::unique_ptr<symbolize::LLVMSymbolizer> createSymbolizer() {
- symbolize::LLVMSymbolizer::Options SymbolizerOptions;
- SymbolizerOptions.Demangle = ClDemangle;
- SymbolizerOptions.UseSymbolTable = true;
- return std::unique_ptr<symbolize::LLVMSymbolizer>(
- new symbolize::LLVMSymbolizer(SymbolizerOptions));
- }
- static std::string normalizeFilename(const std::string &FileName) {
- SmallString<256> S(FileName);
- sys::path::remove_dots(S, /* remove_dot_dot */ true);
- return stripPathPrefix(sys::path::convert_to_slash(std::string(S)));
- }
- class Blacklists {
- public:
- Blacklists()
- : DefaultBlacklist(createDefaultBlacklist()),
- UserBlacklist(createUserBlacklist()) {}
- bool isBlacklisted(const DILineInfo &I) {
- if (DefaultBlacklist &&
- DefaultBlacklist->inSection("sancov", "fun", I.FunctionName))
- return true;
- if (DefaultBlacklist &&
- DefaultBlacklist->inSection("sancov", "src", I.FileName))
- return true;
- if (UserBlacklist &&
- UserBlacklist->inSection("sancov", "fun", I.FunctionName))
- return true;
- if (UserBlacklist && UserBlacklist->inSection("sancov", "src", I.FileName))
- return true;
- return false;
- }
- private:
- static std::unique_ptr<SpecialCaseList> createDefaultBlacklist() {
- if (!ClUseDefaultBlacklist)
- return std::unique_ptr<SpecialCaseList>();
- std::unique_ptr<MemoryBuffer> MB =
- MemoryBuffer::getMemBuffer(DefaultBlacklistStr);
- std::string Error;
- auto Blacklist = SpecialCaseList::create(MB.get(), Error);
- failIfNotEmpty(Error);
- return Blacklist;
- }
- static std::unique_ptr<SpecialCaseList> createUserBlacklist() {
- if (ClBlacklist.empty())
- return std::unique_ptr<SpecialCaseList>();
- return SpecialCaseList::createOrDie({{ClBlacklist}},
- *vfs::getRealFileSystem());
- }
- std::unique_ptr<SpecialCaseList> DefaultBlacklist;
- std::unique_ptr<SpecialCaseList> UserBlacklist;
- };
- static std::vector<CoveragePoint>
- getCoveragePoints(const std::string &ObjectFile,
- const std::set<uint64_t> &Addrs,
- const std::set<uint64_t> &CoveredAddrs) {
- std::vector<CoveragePoint> Result;
- auto Symbolizer(createSymbolizer());
- Blacklists B;
- std::set<std::string> CoveredFiles;
- if (ClSkipDeadFiles) {
- for (auto Addr : CoveredAddrs) {
- // TODO: it would be neccessary to set proper section index here.
- // object::SectionedAddress::UndefSection works for only absolute
- // addresses.
- object::SectionedAddress ModuleAddress = {
- Addr, object::SectionedAddress::UndefSection};
- auto LineInfo = Symbolizer->symbolizeCode(ObjectFile, ModuleAddress);
- failIfError(LineInfo);
- CoveredFiles.insert(LineInfo->FileName);
- auto InliningInfo =
- Symbolizer->symbolizeInlinedCode(ObjectFile, ModuleAddress);
- failIfError(InliningInfo);
- for (uint32_t I = 0; I < InliningInfo->getNumberOfFrames(); ++I) {
- auto FrameInfo = InliningInfo->getFrame(I);
- CoveredFiles.insert(FrameInfo.FileName);
- }
- }
- }
- for (auto Addr : Addrs) {
- std::set<DILineInfo> Infos; // deduplicate debug info.
- // TODO: it would be neccessary to set proper section index here.
- // object::SectionedAddress::UndefSection works for only absolute addresses.
- object::SectionedAddress ModuleAddress = {
- Addr, object::SectionedAddress::UndefSection};
- auto LineInfo = Symbolizer->symbolizeCode(ObjectFile, ModuleAddress);
- failIfError(LineInfo);
- if (ClSkipDeadFiles &&
- CoveredFiles.find(LineInfo->FileName) == CoveredFiles.end())
- continue;
- LineInfo->FileName = normalizeFilename(LineInfo->FileName);
- if (B.isBlacklisted(*LineInfo))
- continue;
- auto Id = utohexstr(Addr, true);
- auto Point = CoveragePoint(Id);
- Infos.insert(*LineInfo);
- Point.Locs.push_back(*LineInfo);
- auto InliningInfo =
- Symbolizer->symbolizeInlinedCode(ObjectFile, ModuleAddress);
- failIfError(InliningInfo);
- for (uint32_t I = 0; I < InliningInfo->getNumberOfFrames(); ++I) {
- auto FrameInfo = InliningInfo->getFrame(I);
- if (ClSkipDeadFiles &&
- CoveredFiles.find(FrameInfo.FileName) == CoveredFiles.end())
- continue;
- FrameInfo.FileName = normalizeFilename(FrameInfo.FileName);
- if (B.isBlacklisted(FrameInfo))
- continue;
- if (Infos.find(FrameInfo) == Infos.end()) {
- Infos.insert(FrameInfo);
- Point.Locs.push_back(FrameInfo);
- }
- }
- Result.push_back(Point);
- }
- return Result;
- }
- static bool isCoveragePointSymbol(StringRef Name) {
- return Name == "__sanitizer_cov" || Name == "__sanitizer_cov_with_check" ||
- Name == "__sanitizer_cov_trace_func_enter" ||
- Name == "__sanitizer_cov_trace_pc_guard" ||
- // Mac has '___' prefix
- Name == "___sanitizer_cov" || Name == "___sanitizer_cov_with_check" ||
- Name == "___sanitizer_cov_trace_func_enter" ||
- Name == "___sanitizer_cov_trace_pc_guard";
- }
- // Locate __sanitizer_cov* function addresses inside the stubs table on MachO.
- static void findMachOIndirectCovFunctions(const object::MachOObjectFile &O,
- std::set<uint64_t> *Result) {
- MachO::dysymtab_command Dysymtab = O.getDysymtabLoadCommand();
- MachO::symtab_command Symtab = O.getSymtabLoadCommand();
- for (const auto &Load : O.load_commands()) {
- if (Load.C.cmd == MachO::LC_SEGMENT_64) {
- MachO::segment_command_64 Seg = O.getSegment64LoadCommand(Load);
- for (unsigned J = 0; J < Seg.nsects; ++J) {
- MachO::section_64 Sec = O.getSection64(Load, J);
- uint32_t SectionType = Sec.flags & MachO::SECTION_TYPE;
- if (SectionType == MachO::S_SYMBOL_STUBS) {
- uint32_t Stride = Sec.reserved2;
- uint32_t Cnt = Sec.size / Stride;
- uint32_t N = Sec.reserved1;
- for (uint32_t J = 0; J < Cnt && N + J < Dysymtab.nindirectsyms; J++) {
- uint32_t IndirectSymbol =
- O.getIndirectSymbolTableEntry(Dysymtab, N + J);
- uint64_t Addr = Sec.addr + J * Stride;
- if (IndirectSymbol < Symtab.nsyms) {
- object::SymbolRef Symbol = *(O.getSymbolByIndex(IndirectSymbol));
- Expected<StringRef> Name = Symbol.getName();
- failIfError(Name);
- if (isCoveragePointSymbol(Name.get())) {
- Result->insert(Addr);
- }
- }
- }
- }
- }
- }
- if (Load.C.cmd == MachO::LC_SEGMENT) {
- errs() << "ERROR: 32 bit MachO binaries not supported\n";
- }
- }
- }
- // Locate __sanitizer_cov* function addresses that are used for coverage
- // reporting.
- static std::set<uint64_t>
- findSanitizerCovFunctions(const object::ObjectFile &O) {
- std::set<uint64_t> Result;
- for (const object::SymbolRef &Symbol : O.symbols()) {
- Expected<uint64_t> AddressOrErr = Symbol.getAddress();
- failIfError(AddressOrErr);
- uint64_t Address = AddressOrErr.get();
- Expected<StringRef> NameOrErr = Symbol.getName();
- failIfError(NameOrErr);
- StringRef Name = NameOrErr.get();
- Expected<uint32_t> FlagsOrErr = Symbol.getFlags();
- // TODO: Test this error.
- failIfError(FlagsOrErr);
- uint32_t Flags = FlagsOrErr.get();
- if (!(Flags & object::BasicSymbolRef::SF_Undefined) &&
- isCoveragePointSymbol(Name)) {
- Result.insert(Address);
- }
- }
- if (const auto *CO = dyn_cast<object::COFFObjectFile>(&O)) {
- for (const object::ExportDirectoryEntryRef &Export :
- CO->export_directories()) {
- uint32_t RVA;
- failIfError(Export.getExportRVA(RVA));
- StringRef Name;
- failIfError(Export.getSymbolName(Name));
- if (isCoveragePointSymbol(Name))
- Result.insert(CO->getImageBase() + RVA);
- }
- }
- if (const auto *MO = dyn_cast<object::MachOObjectFile>(&O)) {
- findMachOIndirectCovFunctions(*MO, &Result);
- }
- return Result;
- }
- static uint64_t getPreviousInstructionPc(uint64_t PC,
- Triple TheTriple) {
- if (TheTriple.isARM()) {
- return (PC - 3) & (~1);
- } else if (TheTriple.isAArch64()) {
- return PC - 4;
- } else if (TheTriple.isMIPS()) {
- return PC - 8;
- } else {
- return PC - 1;
- }
- }
- // Locate addresses of all coverage points in a file. Coverage point
- // is defined as the 'address of instruction following __sanitizer_cov
- // call - 1'.
- static void getObjectCoveragePoints(const object::ObjectFile &O,
- std::set<uint64_t> *Addrs) {
- Triple TheTriple("unknown-unknown-unknown");
- TheTriple.setArch(Triple::ArchType(O.getArch()));
- auto TripleName = TheTriple.getTriple();
- std::string Error;
- const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
- failIfNotEmpty(Error);
- std::unique_ptr<const MCSubtargetInfo> STI(
- TheTarget->createMCSubtargetInfo(TripleName, "", ""));
- failIfEmpty(STI, "no subtarget info for target " + TripleName);
- std::unique_ptr<const MCRegisterInfo> MRI(
- TheTarget->createMCRegInfo(TripleName));
- failIfEmpty(MRI, "no register info for target " + TripleName);
- MCTargetOptions MCOptions;
- std::unique_ptr<const MCAsmInfo> AsmInfo(
- TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
- failIfEmpty(AsmInfo, "no asm info for target " + TripleName);
- MCContext Ctx(TheTriple, AsmInfo.get(), MRI.get(), STI.get());
- std::unique_ptr<MCDisassembler> DisAsm(
- TheTarget->createMCDisassembler(*STI, Ctx));
- failIfEmpty(DisAsm, "no disassembler info for target " + TripleName);
- std::unique_ptr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo());
- failIfEmpty(MII, "no instruction info for target " + TripleName);
- std::unique_ptr<const MCInstrAnalysis> MIA(
- TheTarget->createMCInstrAnalysis(MII.get()));
- failIfEmpty(MIA, "no instruction analysis info for target " + TripleName);
- auto SanCovAddrs = findSanitizerCovFunctions(O);
- if (SanCovAddrs.empty())
- fail("__sanitizer_cov* functions not found");
- for (object::SectionRef Section : O.sections()) {
- if (Section.isVirtual() || !Section.isText()) // llvm-objdump does the same.
- continue;
- uint64_t SectionAddr = Section.getAddress();
- uint64_t SectSize = Section.getSize();
- if (!SectSize)
- continue;
- Expected<StringRef> BytesStr = Section.getContents();
- failIfError(BytesStr);
- ArrayRef<uint8_t> Bytes = arrayRefFromStringRef(*BytesStr);
- for (uint64_t Index = 0, Size = 0; Index < Section.getSize();
- Index += Size) {
- MCInst Inst;
- if (!DisAsm->getInstruction(Inst, Size, Bytes.slice(Index),
- SectionAddr + Index, nulls())) {
- if (Size == 0)
- Size = 1;
- continue;
- }
- uint64_t Addr = Index + SectionAddr;
- // Sanitizer coverage uses the address of the next instruction - 1.
- uint64_t CovPoint = getPreviousInstructionPc(Addr + Size, TheTriple);
- uint64_t Target;
- if (MIA->isCall(Inst) &&
- MIA->evaluateBranch(Inst, SectionAddr + Index, Size, Target) &&
- SanCovAddrs.find(Target) != SanCovAddrs.end())
- Addrs->insert(CovPoint);
- }
- }
- }
- static void
- visitObjectFiles(const object::Archive &A,
- function_ref<void(const object::ObjectFile &)> Fn) {
- Error Err = Error::success();
- for (auto &C : A.children(Err)) {
- Expected<std::unique_ptr<object::Binary>> ChildOrErr = C.getAsBinary();
- failIfError(ChildOrErr);
- if (auto *O = dyn_cast<object::ObjectFile>(&*ChildOrErr.get()))
- Fn(*O);
- else
- failIfError(object::object_error::invalid_file_type);
- }
- failIfError(std::move(Err));
- }
- static void
- visitObjectFiles(const std::string &FileName,
- function_ref<void(const object::ObjectFile &)> Fn) {
- Expected<object::OwningBinary<object::Binary>> BinaryOrErr =
- object::createBinary(FileName);
- if (!BinaryOrErr)
- failIfError(BinaryOrErr);
- object::Binary &Binary = *BinaryOrErr.get().getBinary();
- if (object::Archive *A = dyn_cast<object::Archive>(&Binary))
- visitObjectFiles(*A, Fn);
- else if (object::ObjectFile *O = dyn_cast<object::ObjectFile>(&Binary))
- Fn(*O);
- else
- failIfError(object::object_error::invalid_file_type);
- }
- static std::set<uint64_t>
- findSanitizerCovFunctions(const std::string &FileName) {
- std::set<uint64_t> Result;
- visitObjectFiles(FileName, [&](const object::ObjectFile &O) {
- auto Addrs = findSanitizerCovFunctions(O);
- Result.insert(Addrs.begin(), Addrs.end());
- });
- return Result;
- }
- // Locate addresses of all coverage points in a file. Coverage point
- // is defined as the 'address of instruction following __sanitizer_cov
- // call - 1'.
- static std::set<uint64_t> findCoveragePointAddrs(const std::string &FileName) {
- std::set<uint64_t> Result;
- visitObjectFiles(FileName, [&](const object::ObjectFile &O) {
- getObjectCoveragePoints(O, &Result);
- });
- return Result;
- }
- static void printCovPoints(const std::string &ObjFile, raw_ostream &OS) {
- for (uint64_t Addr : findCoveragePointAddrs(ObjFile)) {
- OS << "0x";
- OS.write_hex(Addr);
- OS << "\n";
- }
- }
- static ErrorOr<bool> isCoverageFile(const std::string &FileName) {
- auto ShortFileName = llvm::sys::path::filename(FileName);
- if (!SancovFileRegex.match(ShortFileName))
- return false;
- ErrorOr<std::unique_ptr<MemoryBuffer>> BufOrErr =
- MemoryBuffer::getFile(FileName);
- if (!BufOrErr) {
- errs() << "Warning: " << BufOrErr.getError().message() << "("
- << BufOrErr.getError().value()
- << "), filename: " << llvm::sys::path::filename(FileName) << "\n";
- return BufOrErr.getError();
- }
- std::unique_ptr<MemoryBuffer> Buf = std::move(BufOrErr.get());
- if (Buf->getBufferSize() < 8) {
- return false;
- }
- const FileHeader *Header =
- reinterpret_cast<const FileHeader *>(Buf->getBufferStart());
- return Header->Magic == BinCoverageMagic;
- }
- static bool isSymbolizedCoverageFile(const std::string &FileName) {
- auto ShortFileName = llvm::sys::path::filename(FileName);
- return SymcovFileRegex.match(ShortFileName);
- }
- static std::unique_ptr<SymbolizedCoverage>
- symbolize(const RawCoverage &Data, const std::string ObjectFile) {
- auto Coverage = std::make_unique<SymbolizedCoverage>();
- ErrorOr<std::unique_ptr<MemoryBuffer>> BufOrErr =
- MemoryBuffer::getFile(ObjectFile);
- failIfError(BufOrErr);
- SHA1 Hasher;
- Hasher.update((*BufOrErr)->getBuffer());
- Coverage->BinaryHash = toHex(Hasher.final());
- Blacklists B;
- auto Symbolizer(createSymbolizer());
- for (uint64_t Addr : *Data.Addrs) {
- // TODO: it would be neccessary to set proper section index here.
- // object::SectionedAddress::UndefSection works for only absolute addresses.
- auto LineInfo = Symbolizer->symbolizeCode(
- ObjectFile, {Addr, object::SectionedAddress::UndefSection});
- failIfError(LineInfo);
- if (B.isBlacklisted(*LineInfo))
- continue;
- Coverage->CoveredIds.insert(utohexstr(Addr, true));
- }
- std::set<uint64_t> AllAddrs = findCoveragePointAddrs(ObjectFile);
- if (!std::includes(AllAddrs.begin(), AllAddrs.end(), Data.Addrs->begin(),
- Data.Addrs->end())) {
- fail("Coverage points in binary and .sancov file do not match.");
- }
- Coverage->Points = getCoveragePoints(ObjectFile, AllAddrs, *Data.Addrs);
- return Coverage;
- }
- struct FileFn {
- bool operator<(const FileFn &RHS) const {
- return std::tie(FileName, FunctionName) <
- std::tie(RHS.FileName, RHS.FunctionName);
- }
- std::string FileName;
- std::string FunctionName;
- };
- static std::set<FileFn>
- computeFunctions(const std::vector<CoveragePoint> &Points) {
- std::set<FileFn> Fns;
- for (const auto &Point : Points) {
- for (const auto &Loc : Point.Locs) {
- Fns.insert(FileFn{Loc.FileName, Loc.FunctionName});
- }
- }
- return Fns;
- }
- static std::set<FileFn>
- computeNotCoveredFunctions(const SymbolizedCoverage &Coverage) {
- auto Fns = computeFunctions(Coverage.Points);
- for (const auto &Point : Coverage.Points) {
- if (Coverage.CoveredIds.find(Point.Id) == Coverage.CoveredIds.end())
- continue;
- for (const auto &Loc : Point.Locs) {
- Fns.erase(FileFn{Loc.FileName, Loc.FunctionName});
- }
- }
- return Fns;
- }
- static std::set<FileFn>
- computeCoveredFunctions(const SymbolizedCoverage &Coverage) {
- auto AllFns = computeFunctions(Coverage.Points);
- std::set<FileFn> Result;
- for (const auto &Point : Coverage.Points) {
- if (Coverage.CoveredIds.find(Point.Id) == Coverage.CoveredIds.end())
- continue;
- for (const auto &Loc : Point.Locs) {
- Result.insert(FileFn{Loc.FileName, Loc.FunctionName});
- }
- }
- return Result;
- }
- typedef std::map<FileFn, std::pair<uint32_t, uint32_t>> FunctionLocs;
- // finds first location in a file for each function.
- static FunctionLocs resolveFunctions(const SymbolizedCoverage &Coverage,
- const std::set<FileFn> &Fns) {
- FunctionLocs Result;
- for (const auto &Point : Coverage.Points) {
- for (const auto &Loc : Point.Locs) {
- FileFn Fn = FileFn{Loc.FileName, Loc.FunctionName};
- if (Fns.find(Fn) == Fns.end())
- continue;
- auto P = std::make_pair(Loc.Line, Loc.Column);
- auto I = Result.find(Fn);
- if (I == Result.end() || I->second > P) {
- Result[Fn] = P;
- }
- }
- }
- return Result;
- }
- static void printFunctionLocs(const FunctionLocs &FnLocs, raw_ostream &OS) {
- for (const auto &P : FnLocs) {
- OS << stripPathPrefix(P.first.FileName) << ":" << P.second.first << " "
- << P.first.FunctionName << "\n";
- }
- }
- CoverageStats computeStats(const SymbolizedCoverage &Coverage) {
- CoverageStats Stats = {Coverage.Points.size(), Coverage.CoveredIds.size(),
- computeFunctions(Coverage.Points).size(),
- computeCoveredFunctions(Coverage).size()};
- return Stats;
- }
- // Print list of covered functions.
- // Line format: <file_name>:<line> <function_name>
- static void printCoveredFunctions(const SymbolizedCoverage &CovData,
- raw_ostream &OS) {
- auto CoveredFns = computeCoveredFunctions(CovData);
- printFunctionLocs(resolveFunctions(CovData, CoveredFns), OS);
- }
- // Print list of not covered functions.
- // Line format: <file_name>:<line> <function_name>
- static void printNotCoveredFunctions(const SymbolizedCoverage &CovData,
- raw_ostream &OS) {
- auto NotCoveredFns = computeNotCoveredFunctions(CovData);
- printFunctionLocs(resolveFunctions(CovData, NotCoveredFns), OS);
- }
- // Read list of files and merges their coverage info.
- static void readAndPrintRawCoverage(const std::vector<std::string> &FileNames,
- raw_ostream &OS) {
- std::vector<std::unique_ptr<RawCoverage>> Covs;
- for (const auto &FileName : FileNames) {
- auto Cov = RawCoverage::read(FileName);
- if (!Cov)
- continue;
- OS << *Cov.get();
- }
- }
- static std::unique_ptr<SymbolizedCoverage>
- merge(const std::vector<std::unique_ptr<SymbolizedCoverage>> &Coverages) {
- if (Coverages.empty())
- return nullptr;
- auto Result = std::make_unique<SymbolizedCoverage>();
- for (size_t I = 0; I < Coverages.size(); ++I) {
- const SymbolizedCoverage &Coverage = *Coverages[I];
- std::string Prefix;
- if (Coverages.size() > 1) {
- // prefix is not needed when there's only one file.
- Prefix = utostr(I);
- }
- for (const auto &Id : Coverage.CoveredIds) {
- Result->CoveredIds.insert(Prefix + Id);
- }
- for (const auto &CovPoint : Coverage.Points) {
- CoveragePoint NewPoint(CovPoint);
- NewPoint.Id = Prefix + CovPoint.Id;
- Result->Points.push_back(NewPoint);
- }
- }
- if (Coverages.size() == 1) {
- Result->BinaryHash = Coverages[0]->BinaryHash;
- }
- return Result;
- }
- static std::unique_ptr<SymbolizedCoverage>
- readSymbolizeAndMergeCmdArguments(std::vector<std::string> FileNames) {
- std::vector<std::unique_ptr<SymbolizedCoverage>> Coverages;
- {
- // Short name => file name.
- std::map<std::string, std::string> ObjFiles;
- std::string FirstObjFile;
- std::set<std::string> CovFiles;
- // Partition input values into coverage/object files.
- for (const auto &FileName : FileNames) {
- if (isSymbolizedCoverageFile(FileName)) {
- Coverages.push_back(SymbolizedCoverage::read(FileName));
- }
- auto ErrorOrIsCoverage = isCoverageFile(FileName);
- if (!ErrorOrIsCoverage)
- continue;
- if (ErrorOrIsCoverage.get()) {
- CovFiles.insert(FileName);
- } else {
- auto ShortFileName = llvm::sys::path::filename(FileName);
- if (ObjFiles.find(std::string(ShortFileName)) != ObjFiles.end()) {
- fail("Duplicate binary file with a short name: " + ShortFileName);
- }
- ObjFiles[std::string(ShortFileName)] = FileName;
- if (FirstObjFile.empty())
- FirstObjFile = FileName;
- }
- }
- SmallVector<StringRef, 2> Components;
- // Object file => list of corresponding coverage file names.
- std::map<std::string, std::vector<std::string>> CoverageByObjFile;
- for (const auto &FileName : CovFiles) {
- auto ShortFileName = llvm::sys::path::filename(FileName);
- auto Ok = SancovFileRegex.match(ShortFileName, &Components);
- if (!Ok) {
- fail("Can't match coverage file name against "
- "<module_name>.<pid>.sancov pattern: " +
- FileName);
- }
- auto Iter = ObjFiles.find(std::string(Components[1]));
- if (Iter == ObjFiles.end()) {
- fail("Object file for coverage not found: " + FileName);
- }
- CoverageByObjFile[Iter->second].push_back(FileName);
- };
- for (const auto &Pair : ObjFiles) {
- auto FileName = Pair.second;
- if (CoverageByObjFile.find(FileName) == CoverageByObjFile.end())
- errs() << "WARNING: No coverage file for " << FileName << "\n";
- }
- // Read raw coverage and symbolize it.
- for (const auto &Pair : CoverageByObjFile) {
- if (findSanitizerCovFunctions(Pair.first).empty()) {
- errs()
- << "WARNING: Ignoring " << Pair.first
- << " and its coverage because __sanitizer_cov* functions were not "
- "found.\n";
- continue;
- }
- for (const std::string &CoverageFile : Pair.second) {
- auto DataOrError = RawCoverage::read(CoverageFile);
- failIfError(DataOrError);
- Coverages.push_back(symbolize(*DataOrError.get(), Pair.first));
- }
- }
- }
- return merge(Coverages);
- }
- } // namespace
- int main(int Argc, char **Argv) {
- llvm::InitLLVM X(Argc, Argv);
- llvm::InitializeAllTargetInfos();
- llvm::InitializeAllTargetMCs();
- llvm::InitializeAllDisassemblers();
- cl::ParseCommandLineOptions(Argc, Argv,
- "Sanitizer Coverage Processing Tool (sancov)\n\n"
- " This tool can extract various coverage-related information from: \n"
- " coverage-instrumented binary files, raw .sancov files and their "
- "symbolized .symcov version.\n"
- " Depending on chosen action the tool expects different input files:\n"
- " -print-coverage-pcs - coverage-instrumented binary files\n"
- " -print-coverage - .sancov files\n"
- " <other actions> - .sancov files & corresponding binary "
- "files, .symcov files\n"
- );
- // -print doesn't need object files.
- if (Action == PrintAction) {
- readAndPrintRawCoverage(ClInputFiles, outs());
- return 0;
- } else if (Action == PrintCovPointsAction) {
- // -print-coverage-points doesn't need coverage files.
- for (const std::string &ObjFile : ClInputFiles) {
- printCovPoints(ObjFile, outs());
- }
- return 0;
- }
- auto Coverage = readSymbolizeAndMergeCmdArguments(ClInputFiles);
- failIf(!Coverage, "No valid coverage files given.");
- switch (Action) {
- case CoveredFunctionsAction: {
- printCoveredFunctions(*Coverage, outs());
- return 0;
- }
- case NotCoveredFunctionsAction: {
- printNotCoveredFunctions(*Coverage, outs());
- return 0;
- }
- case StatsAction: {
- outs() << computeStats(*Coverage);
- return 0;
- }
- case MergeAction:
- case SymbolizeAction: { // merge & symbolize are synonims.
- json::OStream W(outs(), 2);
- W << *Coverage;
- return 0;
- }
- case HtmlReportAction:
- errs() << "-html-report option is removed: "
- "use -symbolize & coverage-report-server.py instead\n";
- return 1;
- case PrintAction:
- case PrintCovPointsAction:
- llvm_unreachable("unsupported action");
- }
- }
|