-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[lldb] Add a fuzzer for the DWARF Expression Evaluator #114286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| add_subdirectory(lldb-commandinterpreter-fuzzer) | ||
| add_subdirectory(lldb-dwarf-expression-fuzzer) | ||
| add_subdirectory(lldb-expression-fuzzer) | ||
| add_subdirectory(lldb-target-fuzzer) | ||
| add_subdirectory(utils) |
34 changes: 34 additions & 0 deletions
34
lldb/tools/lldb-fuzzer/lldb-dwarf-expression-fuzzer/CMakeLists.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| set(LLVM_LINK_COMPONENTS | ||
| Support | ||
| ) | ||
|
|
||
| add_llvm_fuzzer(lldb-dwarf-expression-fuzzer | ||
| EXCLUDE_FROM_ALL | ||
| lldb-dwarf-expression-fuzzer.cpp | ||
| ) | ||
|
|
||
| include_directories(${LLDB_SOURCE_ROOT}) | ||
|
|
||
| if(TARGET lldb-dwarf-expression-fuzzer) | ||
| target_include_directories(lldb-dwarf-expression-fuzzer PRIVATE ..) | ||
| target_link_libraries(lldb-dwarf-expression-fuzzer | ||
| PRIVATE | ||
| lldbCore | ||
| lldbPluginExpressionParserClang | ||
| lldbPluginPlatformLinux | ||
| lldbPluginTypeSystemClang | ||
| lldbFuzzerUtils | ||
| ) | ||
|
|
||
| add_custom_command(TARGET lldb-dwarf-expression-fuzzer PRE_BUILD | ||
| COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/fuzzer-artifacts/dwarf-expression-artifacts | ||
| ) | ||
|
|
||
| add_custom_target(fuzz-lldb-dwarf-expression | ||
| COMMENT "Running the LLDB target fuzzer..." | ||
JDevlieghere marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/fuzzer-artifacts/dwarf-expression-artifacts | ||
| COMMAND $<TARGET_FILE:lldb-dwarf-expression-fuzzer> -artifact_prefix=dwarf-expression- | ||
| USES_TERMINAL | ||
| ) | ||
| set_target_properties(fuzz-lldb-dwarf-expression PROPERTIES FOLDER "LLDB/Fuzzer") | ||
| endif() | ||
83 changes: 83 additions & 0 deletions
83
lldb/tools/lldb-fuzzer/lldb-dwarf-expression-fuzzer/lldb-dwarf-expression-fuzzer.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,83 @@ | ||
| //===-- lldb-target-fuzzer.cpp - Fuzz target creation ---------------------===// | ||
JDevlieghere marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| // | ||
| // 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 | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
|
|
||
| #include "utils/TempFile.h" | ||
|
|
||
| #include "Plugins/Platform/Linux/PlatformLinux.h" | ||
| #include "lldb/Core/Debugger.h" | ||
| #include "lldb/Core/Value.h" | ||
| #include "lldb/Expression/DWARFExpression.h" | ||
| #include "lldb/Host/FileSystem.h" | ||
| #include "lldb/Host/HostInfo.h" | ||
| #include "lldb/Target/Target.h" | ||
|
|
||
| using namespace lldb; | ||
| using namespace lldb_private; | ||
| using namespace lldb_private::plugin::dwarf; | ||
| using namespace lldb_fuzzer; | ||
|
|
||
| extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv) { | ||
| FileSystem::Initialize(); | ||
| HostInfo::Initialize(); | ||
| platform_linux::PlatformLinux::Initialize(); | ||
| return 0; | ||
| } | ||
|
|
||
| static void Evaluate(llvm::ArrayRef<uint8_t> expr, | ||
| lldb::ModuleSP module_sp = {}, DWARFUnit *unit = nullptr, | ||
| ExecutionContext *exe_ctx = nullptr) { | ||
| DataExtractor extractor(expr.data(), expr.size(), lldb::eByteOrderLittle, | ||
| /*addr_size*/ 4); | ||
|
|
||
| llvm::Expected<Value> result = | ||
| DWARFExpression::Evaluate(exe_ctx, /*reg_ctx*/ nullptr, module_sp, | ||
| extractor, unit, lldb::eRegisterKindLLDB, | ||
| /*initial_value_ptr*/ nullptr, | ||
| /*object_address_ptr*/ nullptr); | ||
|
|
||
| if (!result) | ||
| llvm::consumeError(result.takeError()); | ||
| } | ||
|
|
||
| class MockTarget : public Target { | ||
| public: | ||
| MockTarget(Debugger &debugger, const ArchSpec &target_arch, | ||
| const lldb::PlatformSP &platform_sp, llvm::ArrayRef<uint8_t> data) | ||
| : Target(debugger, target_arch, platform_sp, true), m_data(data) {} | ||
|
|
||
| size_t ReadMemory(const Address &addr, void *dst, size_t dst_len, | ||
| Status &error, bool force_live_memory = false, | ||
| lldb::addr_t *load_addr_ptr = nullptr) override { | ||
| std::memcpy(dst, m_data.data(), m_data.size()); | ||
| return m_data.size(); | ||
| } | ||
|
|
||
| private: | ||
| llvm::ArrayRef<uint8_t> m_data; | ||
| }; | ||
|
|
||
| extern "C" int LLVMFuzzerTestOneInput(uint8_t *data, size_t size) { | ||
| // We're going to use the first half of the input data as the DWARF expression | ||
| // and the second half as memory. | ||
| const size_t partition = size / 2; | ||
| llvm::ArrayRef expression_data(data, partition); | ||
| llvm::ArrayRef memory_data(data + partition, size - partition); | ||
|
|
||
| // Create a mock target for reading memory. | ||
| ArchSpec arch("i386-pc-linux"); | ||
| Platform::SetHostPlatform( | ||
| platform_linux::PlatformLinux::CreateInstance(true, &arch)); | ||
| lldb::DebuggerSP debugger_sp = Debugger::CreateInstance(); | ||
| lldb::PlatformSP platform_sp; | ||
| auto target_sp = std::make_shared<MockTarget>(*debugger_sp, arch, platform_sp, | ||
| memory_data); | ||
| ExecutionContext exe_ctx(static_cast<lldb::TargetSP>(target_sp), false); | ||
|
|
||
| Evaluate(expression_data); | ||
| return 0; | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.