[Lldb-commits] [PATCH] D124814: Fix debugserver translation check
Alexandre Perez via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu May 5 11:31:48 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGeb3136f022b3: Fix debugserver translation check (authored by aperez).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124814/new/
https://reviews.llvm.org/D124814
Files:
lldb/tools/debugserver/source/DNB.cpp
lldb/tools/debugserver/source/DNBDefs.h
lldb/tools/debugserver/source/RNBRemote.cpp
Index: lldb/tools/debugserver/source/RNBRemote.cpp
===================================================================
--- lldb/tools/debugserver/source/RNBRemote.cpp
+++ lldb/tools/debugserver/source/RNBRemote.cpp
@@ -3753,17 +3753,6 @@
char err_str[1024] = {'\0'};
std::string attach_name;
- if (DNBDebugserverIsTranslated()) {
- DNBLogError("debugserver is x86_64 binary running in translation, attach "
- "failed.");
- std::string return_message = "E96;";
- return_message +=
- cstring_to_asciihex_string("debugserver is x86_64 binary running in "
- "translation, attached failed.");
- SendPacket(return_message);
- return rnb_err;
- }
-
if (strstr(p, "vAttachWait;") == p) {
p += strlen("vAttachWait;");
if (!GetProcessNameFrom_vAttach(p, attach_name)) {
@@ -3823,6 +3812,17 @@
return HandlePacket_UNIMPLEMENTED(p);
}
+ if (attach_pid == INVALID_NUB_PROCESS_ARCH) {
+ DNBLogError("debugserver is x86_64 binary running in translation, attach "
+ "failed.");
+ std::string return_message = "E96;";
+ return_message +=
+ cstring_to_asciihex_string("debugserver is x86_64 binary running in "
+ "translation, attach failed.");
+ SendPacket(return_message.c_str());
+ return rnb_err;
+ }
+
if (attach_pid != INVALID_NUB_PROCESS) {
if (m_ctx.ProcessID() != attach_pid)
m_ctx.SetProcessID(attach_pid);
Index: lldb/tools/debugserver/source/DNBDefs.h
===================================================================
--- lldb/tools/debugserver/source/DNBDefs.h
+++ lldb/tools/debugserver/source/DNBDefs.h
@@ -54,6 +54,7 @@
typedef uint32_t nub_bool_t;
#define INVALID_NUB_PROCESS ((nub_process_t)0)
+#define INVALID_NUB_PROCESS_ARCH ((nub_process_t)-1)
#define INVALID_NUB_THREAD ((nub_thread_t)0)
#define INVALID_NUB_WATCH_ID ((nub_watch_t)0)
#define INVALID_NUB_HW_INDEX UINT32_MAX
Index: lldb/tools/debugserver/source/DNB.cpp
===================================================================
--- lldb/tools/debugserver/source/DNB.cpp
+++ lldb/tools/debugserver/source/DNB.cpp
@@ -477,6 +477,10 @@
}
}
+ if (DNBDebugserverIsTranslated()) {
+ return INVALID_NUB_PROCESS_ARCH;
+ }
+
pid_t pid = INVALID_NUB_PROCESS;
MachProcessSP processSP(new MachProcess);
if (processSP.get()) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124814.427403.patch
Type: text/x-patch
Size: 2463 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220505/620e920b/attachment-0001.bin>
More information about the lldb-commits
mailing list