#pragma once #ifdef __GNUC__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-parameter" #endif //===--- TargetProcessControl.h - Target process control APIs ---*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // // Utilities for interacting with target processes. // //===----------------------------------------------------------------------===// #ifndef LLVM_EXECUTIONENGINE_ORC_TARGETPROCESSCONTROL_H #define LLVM_EXECUTIONENGINE_ORC_TARGETPROCESSCONTROL_H #include "llvm/ADT/Optional.h" #include "llvm/ADT/StringRef.h" #include "llvm/ADT/Triple.h" #include "llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h" #include "llvm/ExecutionEngine/Orc/Core.h" #include "llvm/ExecutionEngine/Orc/Shared/TargetProcessControlTypes.h" #include "llvm/Support/DynamicLibrary.h" #include "llvm/Support/MSVCErrorWorkarounds.h" #include #include namespace llvm { namespace orc { /// TargetProcessControl supports interaction with a JIT target process. class TargetProcessControl { public: /// APIs for manipulating memory in the target process. class MemoryAccess { public: /// Callback function for asynchronous writes. using WriteResultFn = unique_function; virtual ~MemoryAccess(); virtual void writeUInt8s(ArrayRef Ws, WriteResultFn OnWriteComplete) = 0; virtual void writeUInt16s(ArrayRef Ws, WriteResultFn OnWriteComplete) = 0; virtual void writeUInt32s(ArrayRef Ws, WriteResultFn OnWriteComplete) = 0; virtual void writeUInt64s(ArrayRef Ws, WriteResultFn OnWriteComplete) = 0; virtual void writeBuffers(ArrayRef Ws, WriteResultFn OnWriteComplete) = 0; Error writeUInt8s(ArrayRef Ws) { std::promise ResultP; auto ResultF = ResultP.get_future(); writeUInt8s(Ws, [&](Error Err) { ResultP.set_value(std::move(Err)); }); return ResultF.get(); } Error writeUInt16s(ArrayRef Ws) { std::promise ResultP; auto ResultF = ResultP.get_future(); writeUInt16s(Ws, [&](Error Err) { ResultP.set_value(std::move(Err)); }); return ResultF.get(); } Error writeUInt32s(ArrayRef Ws) { std::promise ResultP; auto ResultF = ResultP.get_future(); writeUInt32s(Ws, [&](Error Err) { ResultP.set_value(std::move(Err)); }); return ResultF.get(); } Error writeUInt64s(ArrayRef Ws) { std::promise ResultP; auto ResultF = ResultP.get_future(); writeUInt64s(Ws, [&](Error Err) { ResultP.set_value(std::move(Err)); }); return ResultF.get(); } Error writeBuffers(ArrayRef Ws) { std::promise ResultP; auto ResultF = ResultP.get_future(); writeBuffers(Ws, [&](Error Err) { ResultP.set_value(std::move(Err)); }); return ResultF.get(); } }; /// A pair of a dylib and a set of symbols to be looked up. struct LookupRequest { LookupRequest(tpctypes::DylibHandle Handle, const SymbolLookupSet &Symbols) : Handle(Handle), Symbols(Symbols) {} tpctypes::DylibHandle Handle; const SymbolLookupSet &Symbols; }; virtual ~TargetProcessControl(); /// Intern a symbol name in the SymbolStringPool. SymbolStringPtr intern(StringRef SymName) { return SSP->intern(SymName); } /// Return a shared pointer to the SymbolStringPool for this instance. std::shared_ptr getSymbolStringPool() const { return SSP; } /// Return the Triple for the target process. const Triple &getTargetTriple() const { return TargetTriple; } /// Get the page size for the target process. unsigned getPageSize() const { return PageSize; } /// Return a MemoryAccess object for the target process. MemoryAccess &getMemoryAccess() const { return *MemAccess; } /// Return a JITLinkMemoryManager for the target process. jitlink::JITLinkMemoryManager &getMemMgr() const { return *MemMgr; } /// Load the dynamic library at the given path and return a handle to it. /// If LibraryPath is null this function will return the global handle for /// the target process. virtual Expected loadDylib(const char *DylibPath) = 0; /// Search for symbols in the target process. /// /// The result of the lookup is a 2-dimentional array of target addresses /// that correspond to the lookup order. If a required symbol is not /// found then this method will return an error. If a weakly referenced /// symbol is not found then it be assigned a '0' value in the result. /// that correspond to the lookup order. virtual Expected> lookupSymbols(ArrayRef Request) = 0; /// Run function with a main-like signature. virtual Expected runAsMain(JITTargetAddress MainFnAddr, ArrayRef Args) = 0; /// Run a wrapper function with signature: /// /// \code{.cpp} /// CWrapperFunctionResult fn(uint8_t *Data, uint64_t Size); /// \endcode{.cpp} /// virtual Expected runWrapper(JITTargetAddress WrapperFnAddr, ArrayRef ArgBuffer) = 0; /// Disconnect from the target process. /// /// This should be called after the JIT session is shut down. virtual Error disconnect() = 0; protected: TargetProcessControl(std::shared_ptr SSP) : SSP(std::move(SSP)) {} std::shared_ptr SSP; Triple TargetTriple; unsigned PageSize = 0; MemoryAccess *MemAccess = nullptr; jitlink::JITLinkMemoryManager *MemMgr = nullptr; }; /// A TargetProcessControl implementation targeting the current process. class SelfTargetProcessControl : public TargetProcessControl, private TargetProcessControl::MemoryAccess { public: SelfTargetProcessControl( std::shared_ptr SSP, Triple TargetTriple, unsigned PageSize, std::unique_ptr MemMgr); /// Create a SelfTargetProcessControl with the given memory manager. /// If no memory manager is given a jitlink::InProcessMemoryManager will /// be used by default. static Expected> Create(std::shared_ptr SSP, std::unique_ptr MemMgr = nullptr); Expected loadDylib(const char *DylibPath) override; Expected> lookupSymbols(ArrayRef Request) override; Expected runAsMain(JITTargetAddress MainFnAddr, ArrayRef Args) override; Expected runWrapper(JITTargetAddress WrapperFnAddr, ArrayRef ArgBuffer) override; Error disconnect() override; private: void writeUInt8s(ArrayRef Ws, WriteResultFn OnWriteComplete) override; void writeUInt16s(ArrayRef Ws, WriteResultFn OnWriteComplete) override; void writeUInt32s(ArrayRef Ws, WriteResultFn OnWriteComplete) override; void writeUInt64s(ArrayRef Ws, WriteResultFn OnWriteComplete) override; void writeBuffers(ArrayRef Ws, WriteResultFn OnWriteComplete) override; std::unique_ptr OwnedMemMgr; char GlobalManglingPrefix = 0; std::vector> DynamicLibraries; }; } // end namespace orc } // end namespace llvm #endif // LLVM_EXECUTIONENGINE_ORC_TARGETPROCESSCONTROL_H #ifdef __GNUC__ #pragma GCC diagnostic pop #endif