LLDB mainline
GDBRemoteClientBase.cpp
Go to the documentation of this file.
1//===-- GDBRemoteClientBase.cpp -------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
11#include "llvm/ADT/StringExtras.h"
12#include "llvm/Support/ErrorExtras.h"
13
16
17#include "ProcessGDBRemoteLog.h"
18
19using namespace lldb;
20using namespace lldb_private;
22using namespace std::chrono;
23
24// When we've sent a continue packet and are waiting for the target to stop,
25// we wake up the wait with this interval to make sure the stub hasn't gone
26// away while we were waiting.
27static const seconds kWakeupInterval(5);
28
29/////////////////////////
30// GDBRemoteClientBase //
31/////////////////////////
32
34
36 : GDBRemoteCommunication(), Broadcaster(nullptr, comm_name),
37 m_async_count(0), m_is_running(false), m_should_stop(false) {}
38
40 ContinueDelegate &delegate, const UnixSignals &signals,
41 llvm::StringRef payload, std::chrono::seconds interrupt_timeout,
42 StringExtractorGDBRemote &response) {
44 response.Clear();
45
46 {
47 std::lock_guard<std::mutex> lock(m_mutex);
48 m_continue_packet = std::string(payload);
49 m_should_stop = false;
50 }
51 ContinueLock cont_lock(*this);
52 if (!cont_lock)
53 return eStateInvalid;
54 OnRunPacketSent(true);
55 // The main ReadPacket loop wakes up at computed_timeout intervals, just to
56 // check that the connection hasn't dropped. When we wake up we also check
57 // whether there is an interrupt request that has reached its endpoint.
58 // If we want a shorter interrupt timeout that kWakeupInterval, we need to
59 // choose the shorter interval for the wake up as well.
60 std::chrono::seconds computed_timeout = std::min(interrupt_timeout,
62 for (;;) {
63 PacketResult read_result = ReadPacket(response, computed_timeout, false);
64 // Reset the computed_timeout to the default value in case we are going
65 // round again.
66 computed_timeout = std::min(interrupt_timeout, kWakeupInterval);
67 switch (read_result) {
69 std::lock_guard<std::mutex> lock(m_mutex);
70 if (m_async_count == 0) {
71 continue;
72 }
73 auto cur_time = steady_clock::now();
74 if (cur_time >= m_interrupt_endpoint)
75 return eStateInvalid;
76 else {
77 // We woke up and found an interrupt is in flight, but we haven't
78 // exceeded the interrupt wait time. So reset the wait time to the
79 // time left till the interrupt timeout. But don't wait longer
80 // than our wakeup timeout.
81 auto new_wait = m_interrupt_endpoint - cur_time;
82 computed_timeout = std::min(kWakeupInterval,
83 std::chrono::duration_cast<std::chrono::seconds>(new_wait));
84 continue;
85 }
86 break;
87 }
89 break;
90 default:
91 LLDB_LOGF(log, "GDBRemoteClientBase::%s () ReadPacket(...) => false",
92 __FUNCTION__);
93 return eStateInvalid;
94 }
95 if (response.Empty())
96 return eStateInvalid;
97
98 const char stop_type = response.GetChar();
99 LLDB_LOGF(log, "GDBRemoteClientBase::%s () got packet: %s", __FUNCTION__,
100 response.GetStringRef().data());
101
102 switch (stop_type) {
103 case 'W':
104 case 'X':
105 return eStateExited;
106 case 'E':
107 // ERROR
108 return eStateInvalid;
109 default:
110 LLDB_LOGF(log, "GDBRemoteClientBase::%s () unrecognized async packet",
111 __FUNCTION__);
112 return eStateInvalid;
113 case 'O': {
114 std::string inferior_stdout;
115 response.GetHexByteString(inferior_stdout);
116 delegate.HandleAsyncStdout(inferior_stdout);
117 break;
118 }
119 case 'A':
120 delegate.HandleAsyncMisc(
121 llvm::StringRef(response.GetStringRef()).substr(1));
122 break;
123 case 'J':
125 break;
126 case 'T':
127 case 'S':
128 // Do this with the continue lock held.
129 const bool should_stop = ShouldStop(signals, response);
130 response.SetFilePos(0);
131
132 // The packet we should resume with. In the future we should check our
133 // thread list and "do the right thing" for new threads that show up
134 // while we stop and run async packets. Setting the packet to 'c' to
135 // continue all threads is the right thing to do 99.99% of the time
136 // because if a thread was single stepping, and we sent an interrupt, we
137 // will notice above that we didn't stop due to an interrupt but stopped
138 // due to stepping and we would _not_ continue. This packet may get
139 // modified by the async actions (e.g. to send a signal).
140 m_continue_packet = 'c';
141 cont_lock.unlock();
142
143 delegate.HandleStopReply();
144 if (should_stop)
145 return eStateStopped;
146
147 switch (cont_lock.lock()) {
149 break;
151 return eStateInvalid;
153 return eStateStopped;
154 }
155 OnRunPacketSent(false);
156 break;
157 }
158 }
159}
160
162 int signo, std::chrono::seconds interrupt_timeout) {
163 Lock lock(*this, interrupt_timeout);
164 if (!lock || !lock.DidInterrupt())
165 return false;
166
167 m_continue_packet = 'C';
168 m_continue_packet += llvm::hexdigit((signo / 16) % 16);
169 m_continue_packet += llvm::hexdigit(signo % 16);
170 return true;
171}
172
173bool GDBRemoteClientBase::Interrupt(std::chrono::seconds interrupt_timeout) {
174 Lock lock(*this, interrupt_timeout);
175 if (!lock.DidInterrupt())
176 return false;
177 m_should_stop = true;
178 return true;
179}
180
183 llvm::StringRef payload, StringExtractorGDBRemote &response,
184 std::chrono::seconds interrupt_timeout, bool sync_on_timeout) {
185 Lock lock(*this, interrupt_timeout);
186 if (!lock) {
187 if (Log *log = GetLog(GDBRLog::Process))
188 LLDB_LOGF(log,
189 "GDBRemoteClientBase::%s failed to get mutex, not sending "
190 "packet '%.*s'",
191 __FUNCTION__, int(payload.size()), payload.data());
193 }
194
195 return SendPacketAndWaitForResponseNoLock(payload, response, sync_on_timeout);
196}
197
198llvm::Expected<StringExtractorGDBRemote>
200 llvm::StringRef payload, std::chrono::seconds interrupt_timeout) {
203 SendPacketAndWaitForResponse(payload, response, interrupt_timeout);
205 return llvm::createStringErrorV("failed to send packet: '{0}'", payload);
206
207 if (response.IsUnsupportedResponse())
208 return llvm::createStringErrorV("unsupported response: '{0}'",
209 response.GetStringRef());
210
211 return std::move(response);
212}
213
217 bool sync_on_timeout,
218 llvm::function_ref<void(llvm::StringRef)> output_callback) {
219 auto result = ReadPacket(response, timeout, sync_on_timeout);
220 while (result == PacketResult::Success && response.IsNormalResponse() &&
221 response.PeekChar() == 'O') {
222 response.GetChar();
223 std::string output;
224 if (response.GetHexByteString(output))
225 output_callback(output);
226 result = ReadPacket(response, timeout, sync_on_timeout);
227 }
228 return result;
229}
230
233 llvm::StringRef payload, StringExtractorGDBRemote &response,
234 std::chrono::seconds interrupt_timeout,
235 llvm::function_ref<void(llvm::StringRef)> output_callback) {
236 Lock lock(*this, interrupt_timeout);
237 if (!lock) {
238 if (Log *log = GetLog(GDBRLog::Process))
239 LLDB_LOGF(log,
240 "GDBRemoteClientBase::%s failed to get mutex, not sending "
241 "packet '%.*s'",
242 __FUNCTION__, int(payload.size()), payload.data());
244 }
245
246 PacketResult packet_result = SendPacketNoLock(payload);
247 if (packet_result != PacketResult::Success)
248 return packet_result;
249
250 return ReadPacketWithOutputSupport(response, GetPacketTimeout(), true,
251 output_callback);
252}
253
256 llvm::StringRef payload, StringExtractorGDBRemote &response,
257 bool sync_on_timeout) {
258 PacketResult packet_result = SendPacketNoLock(payload);
259 if (packet_result != PacketResult::Success)
260 return packet_result;
261
262 const size_t max_response_retries = 3;
263 for (size_t i = 0; i < max_response_retries; ++i) {
264 packet_result = ReadPacket(response, GetPacketTimeout(), sync_on_timeout);
265 // Make sure we received a response
266 if (packet_result != PacketResult::Success)
267 return packet_result;
268 // Make sure our response is valid for the payload that was sent
269 if (response.ValidateResponse())
270 return packet_result;
271 // Response says it wasn't valid
273 LLDB_LOGF(
274 log,
275 "error: packet with payload \"%.*s\" got invalid response \"%s\": %s",
276 int(payload.size()), payload.data(), response.GetStringRef().data(),
277 (i == (max_response_retries - 1))
278 ? "using invalid response and giving up"
279 : "ignoring response and waiting for another");
280 }
281 return packet_result;
282}
283
285 StringExtractorGDBRemote &response) {
286 std::lock_guard<std::mutex> lock(m_mutex);
287
288 if (m_async_count == 0)
289 return true; // We were not interrupted. The process stopped on its own.
290
291 // Older debugserver stubs (before April 2016) can return two stop-reply
292 // packets in response to a ^C packet. Additionally, all debugservers still
293 // return two stop replies if the inferior stops due to some other reason
294 // before the remote stub manages to interrupt it. We need to wait for this
295 // additional packet to make sure the packet sequence does not get skewed.
296 StringExtractorGDBRemote extra_stop_reply_packet;
297 ReadPacket(extra_stop_reply_packet, milliseconds(100), false);
298
299 // Interrupting is typically done using SIGSTOP or SIGINT, so if the process
300 // stops with some other signal, we definitely want to stop.
301 const uint8_t signo = response.GetHexU8(UINT8_MAX);
302 if (signo != signals.GetSignalNumberFromName("SIGSTOP") &&
303 signo != signals.GetSignalNumberFromName("SIGINT"))
304 return true;
305
306 // We probably only stopped to perform some async processing, so continue
307 // after that is done.
308 // TODO: This is not 100% correct, as the process may have been stopped with
309 // SIGINT or SIGSTOP that was not caused by us (e.g. raise(SIGINT)). This will
310 // normally cause a stop, but if it's done concurrently with a async
311 // interrupt, that stop will get eaten (llvm.org/pr20231).
312 return false;
313}
314
316 if (first)
318}
319
320///////////////////////////////////////
321// GDBRemoteClientBase::ContinueLock //
322///////////////////////////////////////
323
328
333
336 {
337 std::unique_lock<std::mutex> lock(m_comm.m_mutex);
338 m_comm.m_is_running = false;
339 }
340 m_comm.m_cv.notify_all();
341 m_acquired = false;
342}
343
347 LLDB_LOGF(log, "GDBRemoteClientBase::ContinueLock::%s() resuming with %s",
348 __FUNCTION__, m_comm.m_continue_packet.c_str());
349
351 std::unique_lock<std::mutex> lock(m_comm.m_mutex);
352 m_comm.m_cv.wait(lock, [this] { return m_comm.m_async_count == 0; });
353 if (m_comm.m_should_stop) {
354 m_comm.m_should_stop = false;
355 LLDB_LOGF(log, "GDBRemoteClientBase::ContinueLock::%s() cancelled",
356 __FUNCTION__);
358 }
359 if (m_comm.SendPacketNoLock(m_comm.m_continue_packet) !=
361 return LockResult::Failed;
362
363 lldbassert(!m_comm.m_is_running);
364 m_comm.m_is_running = true;
365 m_acquired = true;
366 return LockResult::Success;
367}
368
369///////////////////////////////
370// GDBRemoteClientBase::Lock //
371///////////////////////////////
372
374 std::chrono::seconds interrupt_timeout)
375 : m_async_lock(comm.m_async_mutex, std::defer_lock), m_comm(comm),
376 m_interrupt_timeout(interrupt_timeout), m_acquired(false),
377 m_did_interrupt(false) {
379 if (m_acquired)
380 m_async_lock.lock();
381}
382
385 std::unique_lock<std::mutex> lock(m_comm.m_mutex);
386 if (m_comm.m_is_running && m_interrupt_timeout == std::chrono::seconds(0))
387 return; // We were asked to avoid interrupting the sender. Lock is not
388 // acquired.
389
390 ++m_comm.m_async_count;
391 if (m_comm.m_is_running) {
392 if (m_comm.m_async_count == 1) {
393 // The sender has sent the continue packet and we are the first async
394 // packet. Let's interrupt it.
395 const char ctrl_c = '\x03';
397 size_t bytes_written = m_comm.Write(&ctrl_c, 1, status, nullptr);
398 if (bytes_written == 0) {
399 --m_comm.m_async_count;
400 LLDB_LOGF(log, "GDBRemoteClientBase::Lock::Lock failed to send "
401 "interrupt packet");
402 return;
403 }
404 m_comm.m_interrupt_endpoint = steady_clock::now() + m_interrupt_timeout;
405 if (log)
406 log->PutCString("GDBRemoteClientBase::Lock::Lock sent packet: \\x03");
407 }
408 m_comm.m_cv.wait(lock, [this] { return !m_comm.m_is_running; });
409 m_did_interrupt = true;
410 }
411 m_acquired = true;
412}
413
415 if (!m_acquired)
416 return;
417 {
418 std::unique_lock<std::mutex> lock(m_comm.m_mutex);
419 --m_comm.m_async_count;
420 }
421 m_comm.m_cv.notify_one();
422}
static const seconds kWakeupInterval(5)
#define lldbassert(x)
Definition LLDBAssert.h:16
#define LLDB_LOGF(log,...)
Definition Log.h:378
char PeekChar(char fail_value='\0')
void SetFilePos(uint32_t idx)
size_t GetHexByteString(std::string &str)
uint8_t GetHexU8(uint8_t fail_value=0, bool set_eof_on_fail=true)
char GetChar(char fail_value='\0')
llvm::StringRef GetStringRef() const
Broadcaster(lldb::BroadcasterManagerSP manager_sp, std::string name)
Construct with a broadcaster with a name.
void BroadcastEvent(lldb::EventSP &event_sp)
Broadcast an event which has no associated data.
void PutCString(const char *cstr)
Definition Log.cpp:145
int32_t GetSignalNumberFromName(const char *name) const
Lock(GDBRemoteClientBase &comm, std::chrono::seconds interrupt_timeout=std::chrono::seconds(0))
std::recursive_mutex m_async_mutex
This handles the synchronization between individual async threads.
bool SendAsyncSignal(int signo, std::chrono::seconds interrupt_timeout)
std::string m_continue_packet
Packet with which to resume after an async interrupt.
uint32_t m_async_count
Number of threads interested in sending.
bool Interrupt(std::chrono::seconds interrupt_timeout)
llvm::Expected< StringExtractorGDBRemote > SendPacketAndExpectResponse(llvm::StringRef payload, std::chrono::seconds interrupt_timeout=std::chrono::seconds(0))
Wrapper around SendPacketAndWaitForResponse that returns an Expected.
PacketResult SendPacketAndReceiveResponseWithOutputSupport(llvm::StringRef payload, StringExtractorGDBRemote &response, std::chrono::seconds interrupt_timeout, llvm::function_ref< void(llvm::StringRef)> output_callback)
bool ShouldStop(const UnixSignals &signals, StringExtractorGDBRemote &response)
PacketResult SendPacketAndWaitForResponse(llvm::StringRef payload, StringExtractorGDBRemote &response, std::chrono::seconds interrupt_timeout=std::chrono::seconds(0), bool sync_on_timeout=true)
std::mutex m_mutex
Variables handling synchronization between the Continue thread and any other threads wishing to send ...
std::chrono::time_point< std::chrono::steady_clock > m_interrupt_endpoint
When was the interrupt packet sent.
bool m_is_running
Whether the continue thread has control.
PacketResult ReadPacketWithOutputSupport(StringExtractorGDBRemote &response, Timeout< std::micro > timeout, bool sync_on_timeout, llvm::function_ref< void(llvm::StringRef)> output_callback)
bool m_should_stop
Whether we should resume after a stop.
PacketResult SendPacketAndWaitForResponseNoLock(llvm::StringRef payload, StringExtractorGDBRemote &response, bool sync_on_timeout=true)
lldb::StateType SendContinuePacketAndWaitForResponse(ContinueDelegate &delegate, const UnixSignals &signals, llvm::StringRef payload, std::chrono::seconds interrupt_timeout, StringExtractorGDBRemote &response)
PacketResult ReadPacket(StringExtractorGDBRemote &response, Timeout< std::micro > timeout, bool sync_on_timeout)
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.
Definition Log.h:327
ConnectionStatus
Connection Status Types.
@ eConnectionStatusSuccess
Success.
StateType
Process and Thread States.
@ eStateStopped
Process or thread is stopped and can be examined.
@ eStateExited
Process has exited and can't be examined.
virtual void HandleAsyncStructuredDataPacket(llvm::StringRef data)=0
Process asynchronously-received structured data.