blob: a2f42b13713e6d21a94060a22611124ee005a363 [file] [log] [blame]
Pavel Labath8c1b6bd2016-08-09 12:04:46 +00001//===-- GDBRemoteClientBase.h -----------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Pavel Labath8c1b6bd2016-08-09 12:04:46 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_GDBRemoteClientBase_h_
10#define liblldb_GDBRemoteClientBase_h_
11
12#include "GDBRemoteCommunication.h"
13
14#include <condition_variable>
15
Kate Stoneb9c1b512016-09-06 20:57:50 +000016namespace lldb_private {
17namespace process_gdb_remote {
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000018
Kate Stoneb9c1b512016-09-06 20:57:50 +000019class GDBRemoteClientBase : public GDBRemoteCommunication {
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000020public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000021 struct ContinueDelegate {
22 virtual ~ContinueDelegate();
23 virtual void HandleAsyncStdout(llvm::StringRef out) = 0;
24 virtual void HandleAsyncMisc(llvm::StringRef data) = 0;
25 virtual void HandleStopReply() = 0;
Todd Fiala75930012016-08-19 04:21:48 +000026
Todd Fialafcdb1af2016-09-10 00:06:29 +000027 // =========================================================================
28 /// Process asynchronously-received structured data.
Kate Stoneb9c1b512016-09-06 20:57:50 +000029 ///
Todd Fialafcdb1af2016-09-10 00:06:29 +000030 /// @param[in] data
31 /// The complete data packet, expected to start with JSON-async.
32 // =========================================================================
33 virtual void HandleAsyncStructuredDataPacket(llvm::StringRef data) = 0;
Kate Stoneb9c1b512016-09-06 20:57:50 +000034 };
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000035
Kate Stoneb9c1b512016-09-06 20:57:50 +000036 GDBRemoteClientBase(const char *comm_name, const char *listener_name);
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000037
Kate Stoneb9c1b512016-09-06 20:57:50 +000038 bool SendAsyncSignal(int signo);
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000039
Kate Stoneb9c1b512016-09-06 20:57:50 +000040 bool Interrupt();
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000041
Kate Stoneb9c1b512016-09-06 20:57:50 +000042 lldb::StateType SendContinuePacketAndWaitForResponse(
43 ContinueDelegate &delegate, const UnixSignals &signals,
44 llvm::StringRef payload, StringExtractorGDBRemote &response);
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000045
Kate Stoneb9c1b512016-09-06 20:57:50 +000046 PacketResult SendPacketAndWaitForResponse(llvm::StringRef payload,
47 StringExtractorGDBRemote &response,
48 bool send_async);
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000049
Pavel Labath7da84752018-01-10 14:39:08 +000050 PacketResult SendPacketAndReceiveResponseWithOutputSupport(
51 llvm::StringRef payload, StringExtractorGDBRemote &response,
52 bool send_async,
53 llvm::function_ref<void(llvm::StringRef)> output_callback);
54
Kate Stoneb9c1b512016-09-06 20:57:50 +000055 bool SendvContPacket(llvm::StringRef payload,
56 StringExtractorGDBRemote &response);
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000057
Kate Stoneb9c1b512016-09-06 20:57:50 +000058 class Lock {
59 public:
60 Lock(GDBRemoteClientBase &comm, bool interrupt);
61 ~Lock();
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000062
Kate Stoneb9c1b512016-09-06 20:57:50 +000063 explicit operator bool() { return m_acquired; }
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000064
Kate Stoneb9c1b512016-09-06 20:57:50 +000065 // Whether we had to interrupt the continue thread to acquire the
66 // connection.
67 bool DidInterrupt() const { return m_did_interrupt; }
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000068
Kate Stoneb9c1b512016-09-06 20:57:50 +000069 private:
70 std::unique_lock<std::recursive_mutex> m_async_lock;
71 GDBRemoteClientBase &m_comm;
72 bool m_acquired;
73 bool m_did_interrupt;
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000074
Kate Stoneb9c1b512016-09-06 20:57:50 +000075 void SyncWithContinueThread(bool interrupt);
76 };
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000077
78protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +000079 PacketResult
80 SendPacketAndWaitForResponseNoLock(llvm::StringRef payload,
81 StringExtractorGDBRemote &response);
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000082
Kate Stoneb9c1b512016-09-06 20:57:50 +000083 virtual void OnRunPacketSent(bool first);
Pavel Labath8c1b6bd2016-08-09 12:04:46 +000084
85private:
Kate Stoneb9c1b512016-09-06 20:57:50 +000086 // Variables handling synchronization between the Continue thread and any
87 // other threads
88 // wishing to send packets over the connection. Either the continue thread has
89 // control over
90 // the connection (m_is_running == true) or the connection is free for an
91 // arbitrary number of
92 // other senders to take which indicate their interest by incrementing
93 // m_async_count.
94 // Semantics of individual states:
95 // - m_continue_packet == false, m_async_count == 0: connection is free
96 // - m_continue_packet == true, m_async_count == 0: only continue thread is
97 // present
98 // - m_continue_packet == true, m_async_count > 0: continue thread has
99 // control, async threads
100 // should interrupt it and wait for it to set m_continue_packet to false
101 // - m_continue_packet == false, m_async_count > 0: async threads have
102 // control, continue
103 // thread needs to wait for them to finish (m_async_count goes down to 0).
104 std::mutex m_mutex;
105 std::condition_variable m_cv;
106 // Packet with which to resume after an async interrupt. Can be changed by an
107 // async thread
108 // e.g. to inject a signal.
109 std::string m_continue_packet;
110 // When was the interrupt packet sent. Used to make sure we time out if the
111 // stub does not
112 // respond to interrupt requests.
113 std::chrono::time_point<std::chrono::steady_clock> m_interrupt_time;
114 uint32_t m_async_count;
115 bool m_is_running;
116 bool m_should_stop; // Whether we should resume after a stop.
117 // end of continue thread synchronization block
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000118
Kate Stoneb9c1b512016-09-06 20:57:50 +0000119 // This handles the synchronization between individual async threads. For now
120 // they just use a
121 // simple mutex.
122 std::recursive_mutex m_async_mutex;
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000123
Kate Stoneb9c1b512016-09-06 20:57:50 +0000124 bool ShouldStop(const UnixSignals &signals,
125 StringExtractorGDBRemote &response);
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000126
Kate Stoneb9c1b512016-09-06 20:57:50 +0000127 class ContinueLock {
128 public:
129 enum class LockResult { Success, Cancelled, Failed };
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000130
Kate Stoneb9c1b512016-09-06 20:57:50 +0000131 explicit ContinueLock(GDBRemoteClientBase &comm);
132 ~ContinueLock();
133 explicit operator bool() { return m_acquired; }
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000134
Kate Stoneb9c1b512016-09-06 20:57:50 +0000135 LockResult lock();
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000136
Kate Stoneb9c1b512016-09-06 20:57:50 +0000137 void unlock();
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000138
Kate Stoneb9c1b512016-09-06 20:57:50 +0000139 private:
140 GDBRemoteClientBase &m_comm;
141 bool m_acquired;
142 };
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000143};
144
145} // namespace process_gdb_remote
146} // namespace lldb_private
147
148#endif // liblldb_GDBRemoteCommunicationClient_h_