blob: bb777a5c26a737cd4aeb2e7ed0fd268b8a8f7d85 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- GDBRemoteCommunication.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
Chris Lattner30fdc8d2010-06-08 16:52:24 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_GDBRemoteCommunication_h_
10#define liblldb_GDBRemoteCommunication_h_
11
Jonas Devlieghere9e046f02018-11-13 19:18:16 +000012#include "GDBRemoteCommunicationHistory.h"
13
Saleem Abdulrasool2d6a9ec2016-07-28 17:32:20 +000014#include <condition_variable>
15#include <mutex>
Ewan Crawfordfab40d32015-06-16 15:50:18 +000016#include <queue>
Kate Stoneb9c1b512016-09-06 20:57:50 +000017#include <string>
Eugene Zelenkoedb35d92015-10-24 01:08:35 +000018#include <vector>
Chris Lattner30fdc8d2010-06-08 16:52:24 +000019
Chris Lattner30fdc8d2010-06-08 16:52:24 +000020#include "lldb/Core/Communication.h"
Raphael Isemann46508f62019-01-25 08:21:47 +000021#include "lldb/Host/Config.h"
Zachary Turner39de3112014-09-09 20:54:56 +000022#include "lldb/Host/HostThread.h"
Pavel Labath145d95c2018-04-17 18:53:35 +000023#include "lldb/Utility/Args.h"
Pavel Labath181b8232018-12-14 15:59:49 +000024#include "lldb/Utility/Listener.h"
Raphael Isemann7fae4932018-08-30 17:51:10 +000025#include "lldb/Utility/Predicate.h"
Pavel Labath9af71b32018-03-20 16:14:00 +000026#include "lldb/Utility/StringExtractorGDBRemote.h"
Pavel Labath181b8232018-12-14 15:59:49 +000027#include "lldb/lldb-public.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000028
Tamas Berghammerdb264a62015-03-31 09:52:22 +000029namespace lldb_private {
30namespace process_gdb_remote {
31
Fangrui Songefe8e7e2019-05-14 08:55:50 +000032enum GDBStoppointType {
Kate Stoneb9c1b512016-09-06 20:57:50 +000033 eStoppointInvalid = -1,
34 eBreakpointSoftware = 0,
35 eBreakpointHardware,
36 eWatchpointWrite,
37 eWatchpointRead,
38 eWatchpointReadWrite
Fangrui Songefe8e7e2019-05-14 08:55:50 +000039};
Chaoren Lin18fe6402015-02-03 01:51:47 +000040
Kate Stoneb9c1b512016-09-06 20:57:50 +000041enum class CompressionType {
42 None = 0, // no compression
43 ZlibDeflate, // zlib's deflate compression scheme, requires zlib or Apple's
44 // libcompression
45 LZFSE, // an Apple compression scheme, requires Apple's libcompression
46 LZ4, // lz compression - called "lz4 raw" in libcompression terms, compat with
47 // https://code.google.com/p/lz4/
48 LZMA, // Lempel–Ziv–Markov chain algorithm
Jason Molenda91ffe0a2015-06-18 21:46:06 +000049};
50
Chris Lattner30fdc8d2010-06-08 16:52:24 +000051class ProcessGDBRemote;
52
Kate Stoneb9c1b512016-09-06 20:57:50 +000053class GDBRemoteCommunication : public Communication {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000054public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000055 enum {
56 eBroadcastBitRunPacketSent = kLoUserBroadcastBit,
57 eBroadcastBitGdbReadThreadGotNotify =
58 kLoUserBroadcastBit << 1 // Sent when we received a notify packet.
59 };
Ewan Crawford9aa2da002015-05-27 14:12:34 +000060
Kate Stoneb9c1b512016-09-06 20:57:50 +000061 enum class PacketType { Invalid = 0, Standard, Notify };
Ewan Crawford9aa2da002015-05-27 14:12:34 +000062
Kate Stoneb9c1b512016-09-06 20:57:50 +000063 enum class PacketResult {
64 Success = 0, // Success
Zachary Turner97206d52017-05-12 04:51:55 +000065 ErrorSendFailed, // Status sending the packet
Kate Stoneb9c1b512016-09-06 20:57:50 +000066 ErrorSendAck, // Didn't get an ack back after sending a packet
Zachary Turner97206d52017-05-12 04:51:55 +000067 ErrorReplyFailed, // Status getting the reply
Kate Stoneb9c1b512016-09-06 20:57:50 +000068 ErrorReplyTimeout, // Timed out waiting for reply
69 ErrorReplyInvalid, // Got a reply but it wasn't valid for the packet that
70 // was sent
71 ErrorReplyAck, // Sending reply ack failed
72 ErrorDisconnected, // We were disconnected
73 ErrorNoSequenceLock // We couldn't get the sequence lock for a multi-packet
74 // request
75 };
Tamas Berghammer912800c2015-02-24 10:23:39 +000076
Kate Stoneb9c1b512016-09-06 20:57:50 +000077 // Class to change the timeout for a given scope and restore it to the
78 // original value when the
79 // created ScopedTimeout object got out of scope
80 class ScopedTimeout {
81 public:
Pavel Labath3aa04912016-10-31 17:19:42 +000082 ScopedTimeout(GDBRemoteCommunication &gdb_comm,
83 std::chrono::seconds timeout);
Kate Stoneb9c1b512016-09-06 20:57:50 +000084 ~ScopedTimeout();
Tamas Berghammer912800c2015-02-24 10:23:39 +000085
Kate Stoneb9c1b512016-09-06 20:57:50 +000086 private:
87 GDBRemoteCommunication &m_gdb_comm;
Pavel Labath3aa04912016-10-31 17:19:42 +000088 std::chrono::seconds m_saved_timeout;
Greg Clayton84577092017-04-17 16:20:22 +000089 // Don't ever reduce the timeout for a packet, only increase it. If the
90 // requested timeout if less than the current timeout, we don't set it
91 // and won't need to restore it.
92 bool m_timeout_modified;
Kate Stoneb9c1b512016-09-06 20:57:50 +000093 };
Tamas Berghammer912800c2015-02-24 10:23:39 +000094
Kate Stoneb9c1b512016-09-06 20:57:50 +000095 GDBRemoteCommunication(const char *comm_name, const char *listener_name);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000096
Kate Stoneb9c1b512016-09-06 20:57:50 +000097 ~GDBRemoteCommunication() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000098
Kate Stoneb9c1b512016-09-06 20:57:50 +000099 PacketResult GetAck();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000100
Kate Stoneb9c1b512016-09-06 20:57:50 +0000101 size_t SendAck();
Greg Clayton6ed95942011-01-22 07:12:45 +0000102
Kate Stoneb9c1b512016-09-06 20:57:50 +0000103 size_t SendNack();
Greg Clayton6ed95942011-01-22 07:12:45 +0000104
Kate Stoneb9c1b512016-09-06 20:57:50 +0000105 char CalculcateChecksum(llvm::StringRef payload);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000106
Kate Stoneb9c1b512016-09-06 20:57:50 +0000107 PacketType CheckForPacket(const uint8_t *src, size_t src_len,
108 StringExtractorGDBRemote &packet);
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000109
Kate Stoneb9c1b512016-09-06 20:57:50 +0000110 bool GetSendAcks() { return m_send_acks; }
Greg Clayton1cb64962011-03-24 04:28:38 +0000111
Kate Stoneb9c1b512016-09-06 20:57:50 +0000112 // Set the global packet timeout.
113 //
114 // For clients, this is the timeout that gets used when sending
Pavel Labath3aa04912016-10-31 17:19:42 +0000115 // packets and waiting for responses. For servers, this is used when waiting
116 // for ACKs.
Pavel Labath3aa04912016-10-31 17:19:42 +0000117 std::chrono::seconds SetPacketTimeout(std::chrono::seconds packet_timeout) {
118 const auto old_packet_timeout = m_packet_timeout;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000119 m_packet_timeout = packet_timeout;
120 return old_packet_timeout;
121 }
Greg Clayton71fc2a32011-02-12 06:28:37 +0000122
Pavel Labath3aa04912016-10-31 17:19:42 +0000123 std::chrono::seconds GetPacketTimeout() const { return m_packet_timeout; }
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000124
Kate Stoneb9c1b512016-09-06 20:57:50 +0000125 // Start a debugserver instance on the current host using the
126 // supplied connection URL.
Zachary Turner97206d52017-05-12 04:51:55 +0000127 Status StartDebugserverProcess(
Kate Stoneb9c1b512016-09-06 20:57:50 +0000128 const char *url,
129 Platform *platform, // If non nullptr, then check with the platform for
130 // the GDB server binary if it can't be located
131 ProcessLaunchInfo &launch_info, uint16_t *port, const Args *inferior_args,
132 int pass_comm_fd); // Communication file descriptor to pass during
133 // fork/exec to avoid having to connect/accept
Greg Clayton8b82f082011-04-12 05:54:46 +0000134
Kate Stoneb9c1b512016-09-06 20:57:50 +0000135 void DumpHistory(Stream &strm);
Jonas Devlieghere9e046f02018-11-13 19:18:16 +0000136 void SetHistoryStream(llvm::raw_ostream *strm);
137
138 static llvm::Error ConnectLocally(GDBRemoteCommunication &client,
139 GDBRemoteCommunication &server);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000140
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000141protected:
Pavel Labath3aa04912016-10-31 17:19:42 +0000142 std::chrono::seconds m_packet_timeout;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000143 uint32_t m_echo_number;
144 LazyBool m_supports_qEcho;
Jonas Devlieghere9e046f02018-11-13 19:18:16 +0000145 GDBRemoteCommunicationHistory m_history;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000146 bool m_send_acks;
147 bool m_is_platform; // Set to true if this class represents a platform,
148 // false if this class represents a debug session for
149 // a single process
Ewan Crawfordfab40d32015-06-16 15:50:18 +0000150
Kate Stoneb9c1b512016-09-06 20:57:50 +0000151 CompressionType m_compression_type;
152
153 PacketResult SendPacketNoLock(llvm::StringRef payload);
Jonas Devlieghere9e046f02018-11-13 19:18:16 +0000154 PacketResult SendRawPacketNoLock(llvm::StringRef payload,
155 bool skip_ack = false);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000156
157 PacketResult ReadPacket(StringExtractorGDBRemote &response,
Pavel Labath1eff73c2016-11-24 10:54:49 +0000158 Timeout<std::micro> timeout, bool sync_on_timeout);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000159
Pavel Labath7da84752018-01-10 14:39:08 +0000160 PacketResult ReadPacketWithOutputSupport(
161 StringExtractorGDBRemote &response, Timeout<std::micro> timeout,
162 bool sync_on_timeout,
163 llvm::function_ref<void(llvm::StringRef)> output_callback);
164
Kate Stoneb9c1b512016-09-06 20:57:50 +0000165 // Pop a packet from the queue in a thread safe manner
166 PacketResult PopPacketFromQueue(StringExtractorGDBRemote &response,
Pavel Labath1eff73c2016-11-24 10:54:49 +0000167 Timeout<std::micro> timeout);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000168
Pavel Labath1eff73c2016-11-24 10:54:49 +0000169 PacketResult WaitForPacketNoLock(StringExtractorGDBRemote &response,
170 Timeout<std::micro> timeout,
171 bool sync_on_timeout);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000172
173 bool CompressionIsEnabled() {
174 return m_compression_type != CompressionType::None;
175 }
176
177 // If compression is enabled, decompress the packet in m_bytes and update
178 // m_bytes with the uncompressed version.
179 // Returns 'true' packet was decompressed and m_bytes is the now-decompressed
180 // text.
181 // Returns 'false' if unable to decompress or if the checksum was invalid.
182 //
183 // NB: Once the packet has been decompressed, checksum cannot be computed
184 // based
185 // on m_bytes. The checksum was for the compressed packet.
186 bool DecompressPacket();
187
Zachary Turner97206d52017-05-12 04:51:55 +0000188 Status StartListenThread(const char *hostname = "127.0.0.1",
189 uint16_t port = 0);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000190
191 bool JoinListenThread();
192
193 static lldb::thread_result_t ListenThread(lldb::thread_arg_t arg);
194
195 // GDB-Remote read thread
196 // . this thread constantly tries to read from the communication
197 // class and stores all packets received in a queue. The usual
198 // threads read requests simply pop packets off the queue in the
199 // usual order.
200 // This setup allows us to intercept and handle async packets, such
201 // as the notify packet.
202
203 // This method is defined as part of communication.h
204 // when the read thread gets any bytes it will pass them on to this function
205 void AppendBytesToCache(const uint8_t *bytes, size_t len, bool broadcast,
206 lldb::ConnectionStatus status) override;
Ewan Crawfordfab40d32015-06-16 15:50:18 +0000207
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000208private:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000209 std::queue<StringExtractorGDBRemote> m_packet_queue; // The packet queue
210 std::mutex m_packet_queue_mutex; // Mutex for accessing queue
211 std::condition_variable
212 m_condition_queue_not_empty; // Condition variable to wait for packets
Ewan Crawfordfab40d32015-06-16 15:50:18 +0000213
Kate Stoneb9c1b512016-09-06 20:57:50 +0000214 HostThread m_listen_thread;
215 std::string m_listen_url;
Greg Clayton00fe87b2013-12-05 22:58:22 +0000216
Raphael Isemann46508f62019-01-25 08:21:47 +0000217#if defined(HAVE_LIBCOMPRESSION)
218 CompressionType m_decompression_scratch_type = CompressionType::None;
219 void *m_decompression_scratch = nullptr;
220#endif
Jason Molenda4a793c82018-12-18 23:02:50 +0000221
Kate Stoneb9c1b512016-09-06 20:57:50 +0000222 DISALLOW_COPY_AND_ASSIGN(GDBRemoteCommunication);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000223};
224
Tamas Berghammerdb264a62015-03-31 09:52:22 +0000225} // namespace process_gdb_remote
226} // namespace lldb_private
227
Pavel Labath1ebc85f2017-11-09 15:45:09 +0000228namespace llvm {
229template <>
230struct format_provider<
231 lldb_private::process_gdb_remote::GDBRemoteCommunication::PacketResult> {
232 static void format(const lldb_private::process_gdb_remote::
233 GDBRemoteCommunication::PacketResult &state,
234 raw_ostream &Stream, StringRef Style);
235};
236} // namespace llvm
237
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000238#endif // liblldb_GDBRemoteCommunication_h_