20#define PATHCCH_MAX_CCH 0x8000
40#include "llvm/ADT/ScopeExit.h"
41#include "llvm/Support/ConvertUTF.h"
42#include "llvm/Support/Error.h"
43#include "llvm/Support/FormatAdapters.h"
44#include "llvm/Support/FormatVariadic.h"
56 return std::chrono::microseconds(process->GetUtilityExpressionTimeout()) / 2;
61#define LLDB_PROPERTIES_windows
62#include "PlatformWindowsProperties.inc"
65#define LLDB_PROPERTIES_windows
66#include "PlatformWindowsPropertiesEnum.inc"
72 m_collection_sp = std::make_shared<OptionValueProperties>(
"windows");
73 m_collection_sp->Initialize(g_windows_properties_def);
76 bool DisableDebugHeap()
const {
77 return GetPropertyAtIndexAs<bool>(ePropertyDisableDebugHeap,
true);
82 static PluginProperties g_settings;
92 const bool is_host =
false;
95 if (!create && arch && arch->
IsValid()) {
96 const llvm::Triple &triple = arch->
GetTriple();
97 switch (triple.getVendor()) {
98 case llvm::Triple::PC:
102 case llvm::Triple::UnknownVendor:
111 switch (triple.getOS()) {
112 case llvm::Triple::Win32:
115 case llvm::Triple::UnknownOS:
131 return is_host ?
"Local Windows user platform plug-in."
132 :
"Remote Windows user platform plug-in.";
139 "Properties for the Windows platform plugin.",
151 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture());
173 const auto &AddArch = [&](
const ArchSpec &spec) {
175 return spec.IsExactMatch(rhs);
181 AddArch(HostInfo::GetArchitecture(HostInfo::eArchKindDefault));
182 AddArch(HostInfo::GetArchitecture(HostInfo::eArchKind32));
183 AddArch(HostInfo::GetArchitecture(HostInfo::eArchKind64));
189 "can't connect to the host platform '{0}', always connected",
199 "failed to create a 'remote-gdb-server' platform");
210 const std::vector<std::string> *paths,
215 loaded_image->
Clear();
220 "LoadLibrary error: no thread available to invoke LoadLibrary");
225 thread->CalculateExecutionContext(context);
232 if (loader ==
nullptr)
238 "LoadLibrary error: could not get function caller");
243 llvm::SmallVector<llvm::UTF16, 261> name;
244 if (!llvm::convertUTF8ToUTF16String(remote_file.
GetPath(), name)) {
246 "LoadLibrary error: could not convert path to UCS2");
249 name.emplace_back(L
'\0');
254 ePermissionsReadable | ePermissionsWritable,
258 "LoadLibrary error: unable to allocate memory for name: %s",
263 llvm::scope_exit name_cleanup(
267 name.size() *
sizeof(llvm::UTF16), status);
270 "LoadLibrary error: unable to write name: %s", status.
AsCString());
276 std::optional<llvm::scope_exit<std::function<void()>>> paths_cleanup;
278 llvm::SmallVector<llvm::UTF16, 261> search_paths;
280 for (
const auto &path : *paths) {
284 llvm::SmallVector<llvm::UTF16, 261> buffer;
285 if (!llvm::convertUTF8ToUTF16String(path, buffer))
288 search_paths.append(std::begin(buffer), std::end(buffer));
289 search_paths.emplace_back(L
'\0');
291 search_paths.emplace_back(L
'\0');
294 process->
AllocateMemory(search_paths.size() *
sizeof(llvm::UTF16),
295 ePermissionsReadable | ePermissionsWritable,
299 "LoadLibrary error: unable to allocate memory for paths: %s",
304 paths_cleanup.emplace([process, injected_paths]() {
308 process->
WriteMemory(injected_paths, search_paths.data(),
309 search_paths.size() *
sizeof(llvm::UTF16), status);
312 "LoadLibrary error: unable to write paths: %s", status.
AsCString());
321 unsigned injected_length =
MAX_PATH;
324 (injected_length + 1) *
sizeof(llvm::UTF16),
325 ePermissionsReadable | ePermissionsWritable, status);
328 "LoadLibrary error: unable to allocate memory for module location: %s",
333 llvm::scope_exit injected_module_path_cleanup(
334 [process, injected_module_path]() {
342 ePermissionsReadable | ePermissionsWritable,
346 "LoadLibrary error: could not allocate memory for result: %s",
351 llvm::scope_exit result_cleanup([process, injected_result]() {
355 std::vector<lldb::addr_t> grown_path_buffers;
356 llvm::scope_exit grown_path_cleanup([&]() {
364 "LoadLibrary error: could not initialize result: %s",
370 injected_module_path, status);
373 "LoadLibrary error: could not initialize result: %s",
380 Scalar{injected_length},
sizeof(unsigned),
384 "LoadLibrary error: could not initialize result: %s",
398 parameters, diagnostics)) {
401 "LoadLibrary error: unable to write function parameters:"));
405 llvm::scope_exit parameter_cleanup(
406 [invocation, &context, injected_parameters]() {
412 if (!scratch_ts_sp) {
414 "LoadLibrary error: unable to get (clang) type system");
445 llvm::formatv(
"failed to execute LoadLibrary helper "
453 llvm::Expected<lldb::addr_t> token_or_err =
457 "LoadLibrary error: could not read the result: {0}",
458 llvm::fmt_consume(token_or_err.takeError()));
466 injected_result + 2 *
word_size +
sizeof(
unsigned),
sizeof(
unsigned), 0,
470 "LoadLibrary error: could not read error status: %s",
481 unsigned capacity = injected_length;
483 injected_result + 2 *
word_size,
sizeof(
unsigned), 0, status);
484 while (status.
Success() && path_length >= capacity &&
488 (capacity + 1) *
sizeof(llvm::UTF16),
489 ePermissionsReadable | ePermissionsWritable, status);
492 grown_path_buffers.push_back(buffer);
498 Scalar{capacity},
sizeof(unsigned), status);
503 if (invocation->
ExecuteFunction(context, &injected_parameters, options,
506 module_path_addr = buffer;
508 injected_result + 2 *
word_size,
sizeof(
unsigned), 0, status);
511 llvm::SmallVector<llvm::UTF16, MAX_PATH> wide_path(path_length);
513 process->
ReadMemory(module_path_addr, wide_path.data(),
514 path_length *
sizeof(llvm::UTF16), status);
517 "LoadLibrary error: could not read module path: %s",
522 std::string module_path;
523 if (!llvm::convertUTF16ToUTF8String(
524 llvm::ArrayRef<llvm::UTF16>(wide_path.data(), wide_path.size()),
527 "LoadLibrary error: could not convert module path to UTF-8");
532 loaded_image->
SetFile(module_path, llvm::sys::path::Style::native);
542 expression.
Printf(
"FreeLibrary((HMODULE)0x%" PRIx64
")", address);
550 if (value->GetError().Fail())
551 return value->GetError().Clone();
554 if (value->ResolveValue(scalar)) {
569 "can't disconnect from the host platform '{0}', always connected",
615 return Attach(attach_info, debugger, &target,
error);
620 !env.contains(
"_NO_DEBUG_HEAP")) {
621 env.try_emplace(
"_NO_DEBUG_HEAP",
"1");
634 error = process_sp->Launch(launch_info);
636 if (
error.Success()) {
637 process_sp->SetPseudoConsoleHandle();
640 LLDB_LOGF(log,
"Platform::%s LaunchProcess() failed: %s", __FUNCTION__,
663 if (target ==
nullptr) {
667 target = new_target_sp.get();
670 if (!target ||
error.Fail())
679 error = process_sp->Attach(attach_info);
688 llvm::VersionTuple version = HostInfo::GetOSVersion();
689 strm <<
" Host: Windows " << version.getAsString() <<
'\n';
696 if (basename.empty())
697 return basename.str();
699 return llvm::formatv(
"{0}.dll", basename).str();
707 const uint8_t *trap_opcode =
nullptr;
708 size_t trap_opcode_size = 0;
711 case llvm::Triple::aarch64: {
712 static const uint8_t g_aarch64_opcode[] = {0x00, 0x00, 0x3e, 0xd4};
713 trap_opcode = g_aarch64_opcode;
714 trap_opcode_size =
sizeof(g_aarch64_opcode);
717 return trap_opcode_size;
721 case llvm::Triple::arm:
722 case llvm::Triple::thumb: {
723 static const uint8_t g_thumb_opcode[] = {0xfe, 0xde};
724 trap_opcode = g_thumb_opcode;
725 trap_opcode_size =
sizeof(g_thumb_opcode);
728 return trap_opcode_size;
737std::unique_ptr<UtilityFunction>
741 static constexpr const char kLoaderDecls[] = R
"(
745// `LOAD_LIBRARY_SEARCH_APPLICATION_DIR | LOAD_LIBRARY_SEARCH_SYSTEM32 | LOAD_LIBRARY_SEARCH_USER_DIRS`
747// Directories in the standard search path are not searched. This value cannot
748// be combined with `LOAD_WITH_ALTERED_SEARCH_PATH`.
750// This value represents the recommended maximum number of directories an
751// application should include in its DLL search path.
752#define LOAD_LIBRARY_SEARCH_DEFAULT_DIRS 0x00001000
754// If this value is used, and lpFileName specifies an absolute path, the system
755// uses the alternate file search strategy to find associated executable
757#define LOAD_WITH_ALTERED_SEARCH_PATH 0x00000008
759// WINBASEAPI DWORD WINAPI GetLastError(VOID);
760/* __declspec(dllimport) */ uint32_t __stdcall GetLastError();
764// WINBASEAPI DLL_DIRECTORY_COOKIE WINAPI AddDllDirectory(LPCWSTR);
765/* __declspec(dllimport) */ void * __stdcall AddDllDirectory(const wchar_t *);
767// WINBASEAPI BOOL WINAPI FreeModule(HMODULE);
768/* __declspec(dllimport) */ int __stdcall FreeModule(void *hLibModule);
770// WINBASEAPI DWORD WINAPI GetModuleFileNameW(HMODULE hModule, LPWSTR lpFilename, DWORD nSize);
771/* __declspec(dllimport) */ uint32_t GetModuleFileNameW(void *, wchar_t *, uint32_t);
773// WINBASEAPI HMODULE WINAPI LoadLibraryExW(LPCWSTR, HANDLE, DWORD);
774/* __declspec(dllimport) */ void * __stdcall LoadLibraryExW(const wchar_t *, void *, uint32_t);
778// _ACRTIMP size_t __cdecl wcslen(wchar_t const *_String);
779/* __declspec(dllimport) */ size_t __cdecl wcslen(const wchar_t *);
783struct __lldb_LoadLibraryResult {
790_Static_assert(sizeof(struct __lldb_LoadLibraryResult) <= 3 * sizeof(void *),
791 "__lldb_LoadLibraryResult size mismatch");
793void * __lldb_LoadLibraryHelper(const wchar_t *name, const wchar_t *paths,
794 __lldb_LoadLibraryResult *result) {
795 // When the caller presets ImageBase the module is already loaded and we are
796 // only re-querying its path with a larger buffer. Skip LoadLibrary in that
797 // case so we do not take an extra reference on the module.
798 if (result->ImageBase == nullptr) {
799 for (const wchar_t *path = paths; path && *path; ) {
800 (void)AddDllDirectory(path);
801 path += wcslen(path) + 1;
804 result->ImageBase = LoadLibraryExW(name, nullptr,
805 LOAD_LIBRARY_SEARCH_DEFAULT_DIRS);
807 // Fallback: if the AddDllDirectory + LOAD_LIBRARY_SEARCH_DEFAULT_DIRS path
808 // failed to find the library, iterate the search paths ourselves and
809 // load by absolute path using LOAD_WITH_ALTERED_SEARCH_PATH, which makes
810 // Windows use the loaded DLL's own directory to resolve its sibling imports.
811 if (result->ImageBase == nullptr) {
813 for (const wchar_t *path = paths; path && *path; path += wcslen(path) + 1) {
814 size_t plen = wcslen(path);
815 size_t nlen = wcslen(name);
816 // Need room for: path + '\\' + name + '\0'
817 if (plen + 1 + nlen + 1 > 4096)
820 for (size_t i = 0; i < plen; ++i)
823 for (size_t i = 0; i <= nlen; ++i) // Copy name including trailing '\0'.
825 result->ImageBase = LoadLibraryExW(full, nullptr,
826 LOAD_WITH_ALTERED_SEARCH_PATH);
827 if (result->ImageBase != nullptr)
833 if (result->ImageBase == nullptr)
834 result->ErrorCode = GetLastError();
836 result->Length = GetModuleFileNameW(result->ImageBase, result->ModulePath,
839 return result->ImageBase;
844 static constexpr const char kName[] =
"__lldb_LoadLibraryHelper";
847 Target &target = process->GetTarget();
853 std::string
error = llvm::toString(function.takeError());
855 "LoadLibrary error: could not create utility function: %s",
883 std::unique_ptr<UtilityFunction> utility{std::move(*function)};
884 utility->MakeFunctionCaller(VoidPtrTy, parameters, context.
GetThreadSP(),
888 "LoadLibrary error: could not create function caller: %s",
893 if (!utility->GetFunctionCaller()) {
895 "LoadLibrary error: could not get function caller");
903 const char *expression,
906 static constexpr const char kLoaderDecls[] = R
"(
910// WINBASEAPI DLL_DIRECTORY_COOKIE WINAPI AddDllDirectory(LPCWSTR);
911/* __declspec(dllimport) */ void * __stdcall AddDllDirectory(const wchar_t *);
913// WINBASEAPI BOOL WINAPI FreeModule(HMODULE);
914/* __declspec(dllimport) */ int __stdcall FreeModule(void *);
916// WINBASEAPI DWORD WINAPI GetModuleFileNameW(HMODULE, LPWSTR, DWORD);
917/* __declspec(dllimport) */ uint32_t GetModuleFileNameW(void *, wchar_t *, uint32_t);
919// WINBASEAPI HMODULE WINAPI LoadLibraryExW(LPCWSTR, HANDLE, DWORD);
920/* __declspec(dllimport) */ void * __stdcall LoadLibraryExW(const wchar_t *, void *, uint32_t);
925 Status result = loader->CanLoadImage();
938 ExecutionContext context;
939 frame->CalculateExecutionContext(context);
941 EvaluateExpressionOptions options;
954 context, options, expression, kLoaderDecls, value);
957 ? value->GetError().Clone()
959 "failed to execute loader helper ({0})",
toString(result));
961 if (value && value->GetError().Fail())
962 return value->GetError().Clone();
static const size_t word_size
static llvm::raw_ostream & error(Stream &strm)
static DynamicLoaderDarwinKernelProperties & GetGlobalProperties()
#define LLDB_LOGF(log,...)
#define LLDB_PLUGIN_DEFINE(PluginName)
static constexpr llvm::StringLiteral kName
An architecture specification class.
bool IsValid() const
Tests if this ArchSpec is valid.
llvm::Triple & GetTriple()
Architecture triple accessor.
llvm::Triple::ArchType GetMachine() const
Returns a machine family for the current architecture.
bool TripleVendorWasSpecified() const
bool TripleOSWasSpecified() const
A command line argument class.
Class that manages the actual breakpoint that will be inserted into the running program.
bool SetTrapOpcode(const uint8_t *trap_opcode, uint32_t trap_opcode_size)
Sets the trap opcode.
Generic representation of a type in a programming language.
CompilerType GetPointerType() const
Return a new CompilerType that is a pointer to this type.
A class to manage flag bits.
TargetList & GetTargetList()
Get accessor for the target list.
llvm::Error GetAsError(lldb::ExpressionResults result, llvm::Twine message={}) const
Returns an ExpressionError with arg as error code.
void SetOneThreadTimeout(const Timeout< std::micro > &timeout)
void SetUnwindOnError(bool unwind=false)
void SetExecutionPolicy(ExecutionPolicy policy=eExecutionPolicyAlways)
void SetLanguage(lldb::LanguageType language_type)
void SetTrapExceptions(bool b)
void SetTimeout(const Timeout< std::micro > &timeout)
void SetIsForUtilityExpr(bool b)
void SetIgnoreBreakpoints(bool ignore=false)
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
const lldb::ProcessSP & GetProcessSP() const
Get accessor to get the process shared pointer.
const lldb::ThreadSP & GetThreadSP() const
Get accessor to get the thread shared pointer.
void SetFile(llvm::StringRef path, Style style)
Change the file specified with a new path.
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
void Clear()
Clears the object state.
ValueType Set(ValueType mask)
Set one or more flags by logical OR'ing mask with the current flags.
Encapsulates a function that can be called.
ValueList GetArgumentValues() const
void DeallocateFunctionResults(ExecutionContext &exe_ctx, lldb::addr_t args_addr)
Deallocate the arguments structure.
lldb::ExpressionResults ExecuteFunction(ExecutionContext &exe_ctx, lldb::addr_t *args_addr_ptr, const EvaluateExpressionOptions &options, DiagnosticManager &diagnostic_manager, Value &results)
Run the function this FunctionCaller was created with.
bool WriteFunctionArguments(ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, DiagnosticManager &diagnostic_manager)
Insert the default function argument struct.
static bool RegisterPlugin(llvm::StringRef name, llvm::StringRef description, ABICreateInstance create_callback)
static lldb::OptionValuePropertiesSP GetSettingForPlatformPlugin(Debugger &debugger, llvm::StringRef setting_name)
static bool CreateSettingForPlatformPlugin(Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp, llvm::StringRef description, bool is_global_property)
static bool UnregisterPlugin(ABICreateInstance create_callback)
lldb::ListenerSP GetListenerForProcess(Debugger &debugger)
llvm::StringRef GetProcessPluginName() const
lldb::ListenerSP GetHijackListener() const
lldb::pid_t GetProcessID() const
lldb::ListenerSP GetListener() const
Environment & GetEnvironment()
llvm::StringRef GetProcessPluginName() const
std::chrono::seconds GetUtilityExpressionTimeout() const
A plug-in interface definition class for debugging a process.
UtilityFunction * GetLoadImageUtilityFunction(Platform *platform, llvm::function_ref< std::unique_ptr< UtilityFunction >()> factory)
Get the cached UtilityFunction that assists in loading binary images into the process.
void ResetImageToken(size_t token)
ThreadList & GetThreadList()
lldb::addr_t AllocateMemory(size_t size, uint32_t permissions, Status &error)
The public interface to allocating memory in the process.
virtual size_t ReadMemory(const ProcessAddress &process_addr, void *buf, size_t size, Status &error)
Read of memory from a process.
bool WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value, Status &error)
size_t AddImageToken(lldb::addr_t image_ptr)
llvm::Expected< lldb::addr_t > ReadPointerFromMemory(lldb::addr_t vm_addr)
uint64_t ReadUnsignedIntegerFromMemory(lldb::addr_t load_addr, size_t byte_size, uint64_t fail_value, Status &error)
Reads an unsigned integer of the specified byte size from process memory.
Status DeallocateMemory(lldb::addr_t ptr)
The public interface to deallocating memory in the process.
lldb::addr_t GetImagePtrFromToken(size_t token) const
uint32_t GetAddressByteSize() const
size_t WriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size, Status &error)
Write memory to a process.
virtual DynamicLoader * GetDynamicLoader()
Get the dynamic loader plug-in for this process.
size_t WriteScalarToMemory(lldb::addr_t vm_addr, const Scalar &scalar, size_t size, Status &error)
Write all or part of a scalar value to memory.
Target & GetTarget()
Get the target object pointer for this module.
unsigned int UInt(unsigned int fail_value=0) const
static lldb::TypeSystemClangSP GetForTarget(Target &target, std::optional< IsolatedASTKind > ast_kind=DefaultAST, bool create_on_demand=true)
Returns the scratch TypeSystemClang for the given target.
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
static Status FromErrorString(const char *str)
bool Fail() const
Test for error condition.
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
static Status static Status FromErrorStringWithFormatv(const char *format, Args &&...args)
static Status FromError(llvm::Error error)
Avoid using this in new code. Migrate APIs to llvm::Expected instead.
bool Success() const
Test for success condition.
const char * GetData() const
A stream class that can stream formatted output to a file.
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Status CreateTarget(Debugger &debugger, llvm::StringRef user_exe_path, llvm::StringRef triple_str, LoadDependentFiles get_dependent_modules, const OptionGroupPlatform *platform_options, lldb::TargetSP &target_sp)
Create a new Target.
const lldb::ProcessSP & CreateProcess(lldb::ListenerSP listener_sp, llvm::StringRef plugin_name, const FileSpec *crash_file, bool can_connect)
llvm::Expected< std::unique_ptr< UtilityFunction > > CreateUtilityFunction(std::string expression, std::string name, lldb::LanguageType language, ExecutionContext &exe_ctx)
Creates and installs a UtilityFunction for the given language.
const ArchSpec & GetArchitecture() const
lldb::ThreadSP GetExpressionExecutionThread()
static lldb::ExpressionResults Evaluate(ExecutionContext &exe_ctx, const EvaluateExpressionOptions &options, llvm::StringRef expr_cstr, llvm::StringRef expr_prefix, lldb::ValueObjectSP &result_valobj_sp, std::string *fixed_expression=nullptr, ValueObject *ctx_obj=nullptr)
Evaluate one expression in the scratch context of the target passed in the exe_ctx and return its res...
"lldb/Expression/UtilityFunction.h" Encapsulates a bit of source code that provides a function that i...
FunctionCaller * GetFunctionCaller()
void PushValue(const Value &value)
Value * GetValueAtIndex(size_t idx)
const Scalar & GetScalar() const
See comment on m_scalar to understand what GetScalar returns.
@ Scalar
A raw scalar value.
void SetCompilerType(const CompilerType &compiler_type)
void SetValueType(ValueType value_type)
#define LLDB_INVALID_IMAGE_TOKEN
#define LLDB_INVALID_ADDRESS
#define LLDB_INVALID_PROCESS_ID
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
std::string toString(FormatterBytecode::OpCodes op)
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
std::shared_ptr< lldb_private::Platform > PlatformSP
@ eLanguageTypeC_plus_plus
ISO C++:1998.
ExpressionResults
The results of expression evaluation.
std::shared_ptr< lldb_private::Process > ProcessSP
std::shared_ptr< lldb_private::TypeSystemClang > TypeSystemClangSP
std::shared_ptr< lldb_private::Target > TargetSP