xref: /freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp (revision 5e801ac66d24704442eba426ed13c3effb8a34e7)
1 //===-- GDBRemoteCommunication.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 
9 #include "GDBRemoteCommunication.h"
10 
11 #include <climits>
12 #include <cstring>
13 #include <future>
14 #include <sys/stat.h>
15 
16 #include "lldb/Core/StreamFile.h"
17 #include "lldb/Host/Config.h"
18 #include "lldb/Host/ConnectionFileDescriptor.h"
19 #include "lldb/Host/FileSystem.h"
20 #include "lldb/Host/Host.h"
21 #include "lldb/Host/HostInfo.h"
22 #include "lldb/Host/Pipe.h"
23 #include "lldb/Host/ProcessLaunchInfo.h"
24 #include "lldb/Host/Socket.h"
25 #include "lldb/Host/ThreadLauncher.h"
26 #include "lldb/Host/common/TCPSocket.h"
27 #include "lldb/Host/posix/ConnectionFileDescriptorPosix.h"
28 #include "lldb/Target/Platform.h"
29 #include "lldb/Utility/Event.h"
30 #include "lldb/Utility/FileSpec.h"
31 #include "lldb/Utility/Log.h"
32 #include "lldb/Utility/RegularExpression.h"
33 #include "lldb/Utility/Reproducer.h"
34 #include "lldb/Utility/StreamString.h"
35 #include "llvm/ADT/SmallString.h"
36 #include "llvm/Support/ScopedPrinter.h"
37 
38 #include "ProcessGDBRemoteLog.h"
39 
40 #if defined(__APPLE__)
41 #define DEBUGSERVER_BASENAME "debugserver"
42 #elif defined(_WIN32)
43 #define DEBUGSERVER_BASENAME "lldb-server.exe"
44 #else
45 #define DEBUGSERVER_BASENAME "lldb-server"
46 #endif
47 
48 #if defined(HAVE_LIBCOMPRESSION)
49 #include <compression.h>
50 #endif
51 
52 #if LLVM_ENABLE_ZLIB
53 #include <zlib.h>
54 #endif
55 
56 using namespace lldb;
57 using namespace lldb_private;
58 using namespace lldb_private::process_gdb_remote;
59 
60 // GDBRemoteCommunication constructor
61 GDBRemoteCommunication::GDBRemoteCommunication(const char *comm_name,
62                                                const char *listener_name)
63     : Communication(comm_name),
64 #ifdef LLDB_CONFIGURATION_DEBUG
65       m_packet_timeout(1000),
66 #else
67       m_packet_timeout(1),
68 #endif
69       m_echo_number(0), m_supports_qEcho(eLazyBoolCalculate), m_history(512),
70       m_send_acks(true), m_compression_type(CompressionType::None),
71       m_listen_url() {
72 }
73 
74 // Destructor
75 GDBRemoteCommunication::~GDBRemoteCommunication() {
76   if (IsConnected()) {
77     Disconnect();
78   }
79 
80 #if defined(HAVE_LIBCOMPRESSION)
81   if (m_decompression_scratch)
82     free (m_decompression_scratch);
83 #endif
84 
85   // Stop the communications read thread which is used to parse all incoming
86   // packets.  This function will block until the read thread returns.
87   if (m_read_thread_enabled)
88     StopReadThread();
89 }
90 
91 char GDBRemoteCommunication::CalculcateChecksum(llvm::StringRef payload) {
92   int checksum = 0;
93 
94   for (char c : payload)
95     checksum += c;
96 
97   return checksum & 255;
98 }
99 
100 size_t GDBRemoteCommunication::SendAck() {
101   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
102   ConnectionStatus status = eConnectionStatusSuccess;
103   char ch = '+';
104   const size_t bytes_written = WriteAll(&ch, 1, status, nullptr);
105   LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch);
106   m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written);
107   return bytes_written;
108 }
109 
110 size_t GDBRemoteCommunication::SendNack() {
111   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
112   ConnectionStatus status = eConnectionStatusSuccess;
113   char ch = '-';
114   const size_t bytes_written = WriteAll(&ch, 1, status, nullptr);
115   LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch);
116   m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written);
117   return bytes_written;
118 }
119 
120 GDBRemoteCommunication::PacketResult
121 GDBRemoteCommunication::SendPacketNoLock(llvm::StringRef payload) {
122   StreamString packet(0, 4, eByteOrderBig);
123   packet.PutChar('$');
124   packet.Write(payload.data(), payload.size());
125   packet.PutChar('#');
126   packet.PutHex8(CalculcateChecksum(payload));
127   std::string packet_str = std::string(packet.GetString());
128 
129   return SendRawPacketNoLock(packet_str);
130 }
131 
132 GDBRemoteCommunication::PacketResult
133 GDBRemoteCommunication::SendRawPacketNoLock(llvm::StringRef packet,
134                                             bool skip_ack) {
135   if (IsConnected()) {
136     Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
137     ConnectionStatus status = eConnectionStatusSuccess;
138     const char *packet_data = packet.data();
139     const size_t packet_length = packet.size();
140     size_t bytes_written = WriteAll(packet_data, packet_length, status, nullptr);
141     if (log) {
142       size_t binary_start_offset = 0;
143       if (strncmp(packet_data, "$vFile:pwrite:", strlen("$vFile:pwrite:")) ==
144           0) {
145         const char *first_comma = strchr(packet_data, ',');
146         if (first_comma) {
147           const char *second_comma = strchr(first_comma + 1, ',');
148           if (second_comma)
149             binary_start_offset = second_comma - packet_data + 1;
150         }
151       }
152 
153       // If logging was just enabled and we have history, then dump out what we
154       // have to the log so we get the historical context. The Dump() call that
155       // logs all of the packet will set a boolean so that we don't dump this
156       // more than once
157       if (!m_history.DidDumpToLog())
158         m_history.Dump(log);
159 
160       if (binary_start_offset) {
161         StreamString strm;
162         // Print non binary data header
163         strm.Printf("<%4" PRIu64 "> send packet: %.*s", (uint64_t)bytes_written,
164                     (int)binary_start_offset, packet_data);
165         const uint8_t *p;
166         // Print binary data exactly as sent
167         for (p = (const uint8_t *)packet_data + binary_start_offset; *p != '#';
168              ++p)
169           strm.Printf("\\x%2.2x", *p);
170         // Print the checksum
171         strm.Printf("%*s", (int)3, p);
172         log->PutString(strm.GetString());
173       } else
174         LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %.*s",
175                   (uint64_t)bytes_written, (int)packet_length, packet_data);
176     }
177 
178     m_history.AddPacket(packet.str(), packet_length,
179                         GDBRemotePacket::ePacketTypeSend, bytes_written);
180 
181     if (bytes_written == packet_length) {
182       if (!skip_ack && GetSendAcks())
183         return GetAck();
184       else
185         return PacketResult::Success;
186     } else {
187       LLDB_LOGF(log, "error: failed to send packet: %.*s", (int)packet_length,
188                 packet_data);
189     }
190   }
191   return PacketResult::ErrorSendFailed;
192 }
193 
194 GDBRemoteCommunication::PacketResult GDBRemoteCommunication::GetAck() {
195   StringExtractorGDBRemote packet;
196   PacketResult result = ReadPacket(packet, GetPacketTimeout(), false);
197   if (result == PacketResult::Success) {
198     if (packet.GetResponseType() ==
199         StringExtractorGDBRemote::ResponseType::eAck)
200       return PacketResult::Success;
201     else
202       return PacketResult::ErrorSendAck;
203   }
204   return result;
205 }
206 
207 GDBRemoteCommunication::PacketResult
208 GDBRemoteCommunication::ReadPacketWithOutputSupport(
209     StringExtractorGDBRemote &response, Timeout<std::micro> timeout,
210     bool sync_on_timeout,
211     llvm::function_ref<void(llvm::StringRef)> output_callback) {
212   auto result = ReadPacket(response, timeout, sync_on_timeout);
213   while (result == PacketResult::Success && response.IsNormalResponse() &&
214          response.PeekChar() == 'O') {
215     response.GetChar();
216     std::string output;
217     if (response.GetHexByteString(output))
218       output_callback(output);
219     result = ReadPacket(response, timeout, sync_on_timeout);
220   }
221   return result;
222 }
223 
224 GDBRemoteCommunication::PacketResult
225 GDBRemoteCommunication::ReadPacket(StringExtractorGDBRemote &response,
226                                    Timeout<std::micro> timeout,
227                                    bool sync_on_timeout) {
228   if (m_read_thread_enabled)
229     return PopPacketFromQueue(response, timeout);
230   else
231     return WaitForPacketNoLock(response, timeout, sync_on_timeout);
232 }
233 
234 // This function is called when a packet is requested.
235 // A whole packet is popped from the packet queue and returned to the caller.
236 // Packets are placed into this queue from the communication read thread. See
237 // GDBRemoteCommunication::AppendBytesToCache.
238 GDBRemoteCommunication::PacketResult
239 GDBRemoteCommunication::PopPacketFromQueue(StringExtractorGDBRemote &response,
240                                            Timeout<std::micro> timeout) {
241   auto pred = [&] { return !m_packet_queue.empty() && IsConnected(); };
242   // lock down the packet queue
243   std::unique_lock<std::mutex> lock(m_packet_queue_mutex);
244 
245   if (!timeout)
246     m_condition_queue_not_empty.wait(lock, pred);
247   else {
248     if (!m_condition_queue_not_empty.wait_for(lock, *timeout, pred))
249       return PacketResult::ErrorReplyTimeout;
250     if (!IsConnected())
251       return PacketResult::ErrorDisconnected;
252   }
253 
254   // get the front element of the queue
255   response = m_packet_queue.front();
256 
257   // remove the front element
258   m_packet_queue.pop();
259 
260   // we got a packet
261   return PacketResult::Success;
262 }
263 
264 GDBRemoteCommunication::PacketResult
265 GDBRemoteCommunication::WaitForPacketNoLock(StringExtractorGDBRemote &packet,
266                                             Timeout<std::micro> timeout,
267                                             bool sync_on_timeout) {
268   uint8_t buffer[8192];
269   Status error;
270 
271   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
272 
273   // Check for a packet from our cache first without trying any reading...
274   if (CheckForPacket(nullptr, 0, packet) != PacketType::Invalid)
275     return PacketResult::Success;
276 
277   bool timed_out = false;
278   bool disconnected = false;
279   while (IsConnected() && !timed_out) {
280     lldb::ConnectionStatus status = eConnectionStatusNoConnection;
281     size_t bytes_read = Read(buffer, sizeof(buffer), timeout, status, &error);
282 
283     LLDB_LOGV(log,
284               "Read(buffer, sizeof(buffer), timeout = {0}, "
285               "status = {1}, error = {2}) => bytes_read = {3}",
286               timeout, Communication::ConnectionStatusAsString(status), error,
287               bytes_read);
288 
289     if (bytes_read > 0) {
290       if (CheckForPacket(buffer, bytes_read, packet) != PacketType::Invalid)
291         return PacketResult::Success;
292     } else {
293       switch (status) {
294       case eConnectionStatusTimedOut:
295       case eConnectionStatusInterrupted:
296         if (sync_on_timeout) {
297           /// Sync the remote GDB server and make sure we get a response that
298           /// corresponds to what we send.
299           ///
300           /// Sends a "qEcho" packet and makes sure it gets the exact packet
301           /// echoed back. If the qEcho packet isn't supported, we send a qC
302           /// packet and make sure we get a valid thread ID back. We use the
303           /// "qC" packet since its response if very unique: is responds with
304           /// "QC%x" where %x is the thread ID of the current thread. This
305           /// makes the response unique enough from other packet responses to
306           /// ensure we are back on track.
307           ///
308           /// This packet is needed after we time out sending a packet so we
309           /// can ensure that we are getting the response for the packet we
310           /// are sending. There are no sequence IDs in the GDB remote
311           /// protocol (there used to be, but they are not supported anymore)
312           /// so if you timeout sending packet "abc", you might then send
313           /// packet "cde" and get the response for the previous "abc" packet.
314           /// Many responses are "OK" or "" (unsupported) or "EXX" (error) so
315           /// many responses for packets can look like responses for other
316           /// packets. So if we timeout, we need to ensure that we can get
317           /// back on track. If we can't get back on track, we must
318           /// disconnect.
319           bool sync_success = false;
320           bool got_actual_response = false;
321           // We timed out, we need to sync back up with the
322           char echo_packet[32];
323           int echo_packet_len = 0;
324           RegularExpression response_regex;
325 
326           if (m_supports_qEcho == eLazyBoolYes) {
327             echo_packet_len = ::snprintf(echo_packet, sizeof(echo_packet),
328                                          "qEcho:%u", ++m_echo_number);
329             std::string regex_str = "^";
330             regex_str += echo_packet;
331             regex_str += "$";
332             response_regex = RegularExpression(regex_str);
333           } else {
334             echo_packet_len =
335                 ::snprintf(echo_packet, sizeof(echo_packet), "qC");
336             response_regex =
337                 RegularExpression(llvm::StringRef("^QC[0-9A-Fa-f]+$"));
338           }
339 
340           PacketResult echo_packet_result =
341               SendPacketNoLock(llvm::StringRef(echo_packet, echo_packet_len));
342           if (echo_packet_result == PacketResult::Success) {
343             const uint32_t max_retries = 3;
344             uint32_t successful_responses = 0;
345             for (uint32_t i = 0; i < max_retries; ++i) {
346               StringExtractorGDBRemote echo_response;
347               echo_packet_result =
348                   WaitForPacketNoLock(echo_response, timeout, false);
349               if (echo_packet_result == PacketResult::Success) {
350                 ++successful_responses;
351                 if (response_regex.Execute(echo_response.GetStringRef())) {
352                   sync_success = true;
353                   break;
354                 } else if (successful_responses == 1) {
355                   // We got something else back as the first successful
356                   // response, it probably is the  response to the packet we
357                   // actually wanted, so copy it over if this is the first
358                   // success and continue to try to get the qEcho response
359                   packet = echo_response;
360                   got_actual_response = true;
361                 }
362               } else if (echo_packet_result == PacketResult::ErrorReplyTimeout)
363                 continue; // Packet timed out, continue waiting for a response
364               else
365                 break; // Something else went wrong getting the packet back, we
366                        // failed and are done trying
367             }
368           }
369 
370           // We weren't able to sync back up with the server, we must abort
371           // otherwise all responses might not be from the right packets...
372           if (sync_success) {
373             // We timed out, but were able to recover
374             if (got_actual_response) {
375               // We initially timed out, but we did get a response that came in
376               // before the successful reply to our qEcho packet, so lets say
377               // everything is fine...
378               return PacketResult::Success;
379             }
380           } else {
381             disconnected = true;
382             Disconnect();
383           }
384         }
385         timed_out = true;
386         break;
387       case eConnectionStatusSuccess:
388         // printf ("status = success but error = %s\n",
389         // error.AsCString("<invalid>"));
390         break;
391 
392       case eConnectionStatusEndOfFile:
393       case eConnectionStatusNoConnection:
394       case eConnectionStatusLostConnection:
395       case eConnectionStatusError:
396         disconnected = true;
397         Disconnect();
398         break;
399       }
400     }
401   }
402   packet.Clear();
403   if (disconnected)
404     return PacketResult::ErrorDisconnected;
405   if (timed_out)
406     return PacketResult::ErrorReplyTimeout;
407   else
408     return PacketResult::ErrorReplyFailed;
409 }
410 
411 bool GDBRemoteCommunication::DecompressPacket() {
412   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
413 
414   if (!CompressionIsEnabled())
415     return true;
416 
417   size_t pkt_size = m_bytes.size();
418 
419   // Smallest possible compressed packet is $N#00 - an uncompressed empty
420   // reply, most commonly indicating an unsupported packet.  Anything less than
421   // 5 characters, it's definitely not a compressed packet.
422   if (pkt_size < 5)
423     return true;
424 
425   if (m_bytes[0] != '$' && m_bytes[0] != '%')
426     return true;
427   if (m_bytes[1] != 'C' && m_bytes[1] != 'N')
428     return true;
429 
430   size_t hash_mark_idx = m_bytes.find('#');
431   if (hash_mark_idx == std::string::npos)
432     return true;
433   if (hash_mark_idx + 2 >= m_bytes.size())
434     return true;
435 
436   if (!::isxdigit(m_bytes[hash_mark_idx + 1]) ||
437       !::isxdigit(m_bytes[hash_mark_idx + 2]))
438     return true;
439 
440   size_t content_length =
441       pkt_size -
442       5; // not counting '$', 'C' | 'N', '#', & the two hex checksum chars
443   size_t content_start = 2; // The first character of the
444                             // compressed/not-compressed text of the packet
445   size_t checksum_idx =
446       hash_mark_idx +
447       1; // The first character of the two hex checksum characters
448 
449   // Normally size_of_first_packet == m_bytes.size() but m_bytes may contain
450   // multiple packets. size_of_first_packet is the size of the initial packet
451   // which we'll replace with the decompressed version of, leaving the rest of
452   // m_bytes unmodified.
453   size_t size_of_first_packet = hash_mark_idx + 3;
454 
455   // Compressed packets ("$C") start with a base10 number which is the size of
456   // the uncompressed payload, then a : and then the compressed data.  e.g.
457   // $C1024:<binary>#00 Update content_start and content_length to only include
458   // the <binary> part of the packet.
459 
460   uint64_t decompressed_bufsize = ULONG_MAX;
461   if (m_bytes[1] == 'C') {
462     size_t i = content_start;
463     while (i < hash_mark_idx && isdigit(m_bytes[i]))
464       i++;
465     if (i < hash_mark_idx && m_bytes[i] == ':') {
466       i++;
467       content_start = i;
468       content_length = hash_mark_idx - content_start;
469       std::string bufsize_str(m_bytes.data() + 2, i - 2 - 1);
470       errno = 0;
471       decompressed_bufsize = ::strtoul(bufsize_str.c_str(), nullptr, 10);
472       if (errno != 0 || decompressed_bufsize == ULONG_MAX) {
473         m_bytes.erase(0, size_of_first_packet);
474         return false;
475       }
476     }
477   }
478 
479   if (GetSendAcks()) {
480     char packet_checksum_cstr[3];
481     packet_checksum_cstr[0] = m_bytes[checksum_idx];
482     packet_checksum_cstr[1] = m_bytes[checksum_idx + 1];
483     packet_checksum_cstr[2] = '\0';
484     long packet_checksum = strtol(packet_checksum_cstr, nullptr, 16);
485 
486     long actual_checksum = CalculcateChecksum(
487         llvm::StringRef(m_bytes).substr(1, hash_mark_idx - 1));
488     bool success = packet_checksum == actual_checksum;
489     if (!success) {
490       LLDB_LOGF(log,
491                 "error: checksum mismatch: %.*s expected 0x%2.2x, got 0x%2.2x",
492                 (int)(pkt_size), m_bytes.c_str(), (uint8_t)packet_checksum,
493                 (uint8_t)actual_checksum);
494     }
495     // Send the ack or nack if needed
496     if (!success) {
497       SendNack();
498       m_bytes.erase(0, size_of_first_packet);
499       return false;
500     } else {
501       SendAck();
502     }
503   }
504 
505   if (m_bytes[1] == 'N') {
506     // This packet was not compressed -- delete the 'N' character at the start
507     // and the packet may be processed as-is.
508     m_bytes.erase(1, 1);
509     return true;
510   }
511 
512   // Reverse the gdb-remote binary escaping that was done to the compressed
513   // text to guard characters like '$', '#', '}', etc.
514   std::vector<uint8_t> unescaped_content;
515   unescaped_content.reserve(content_length);
516   size_t i = content_start;
517   while (i < hash_mark_idx) {
518     if (m_bytes[i] == '}') {
519       i++;
520       unescaped_content.push_back(m_bytes[i] ^ 0x20);
521     } else {
522       unescaped_content.push_back(m_bytes[i]);
523     }
524     i++;
525   }
526 
527   uint8_t *decompressed_buffer = nullptr;
528   size_t decompressed_bytes = 0;
529 
530   if (decompressed_bufsize != ULONG_MAX) {
531     decompressed_buffer = (uint8_t *)malloc(decompressed_bufsize);
532     if (decompressed_buffer == nullptr) {
533       m_bytes.erase(0, size_of_first_packet);
534       return false;
535     }
536   }
537 
538 #if defined(HAVE_LIBCOMPRESSION)
539   if (m_compression_type == CompressionType::ZlibDeflate ||
540       m_compression_type == CompressionType::LZFSE ||
541       m_compression_type == CompressionType::LZ4 ||
542       m_compression_type == CompressionType::LZMA) {
543     compression_algorithm compression_type;
544     if (m_compression_type == CompressionType::LZFSE)
545       compression_type = COMPRESSION_LZFSE;
546     else if (m_compression_type == CompressionType::ZlibDeflate)
547       compression_type = COMPRESSION_ZLIB;
548     else if (m_compression_type == CompressionType::LZ4)
549       compression_type = COMPRESSION_LZ4_RAW;
550     else if (m_compression_type == CompressionType::LZMA)
551       compression_type = COMPRESSION_LZMA;
552 
553     if (m_decompression_scratch_type != m_compression_type) {
554       if (m_decompression_scratch) {
555         free (m_decompression_scratch);
556         m_decompression_scratch = nullptr;
557       }
558       size_t scratchbuf_size = 0;
559       if (m_compression_type == CompressionType::LZFSE)
560         scratchbuf_size = compression_decode_scratch_buffer_size (COMPRESSION_LZFSE);
561       else if (m_compression_type == CompressionType::LZ4)
562         scratchbuf_size = compression_decode_scratch_buffer_size (COMPRESSION_LZ4_RAW);
563       else if (m_compression_type == CompressionType::ZlibDeflate)
564         scratchbuf_size = compression_decode_scratch_buffer_size (COMPRESSION_ZLIB);
565       else if (m_compression_type == CompressionType::LZMA)
566         scratchbuf_size = compression_decode_scratch_buffer_size (COMPRESSION_LZMA);
567       else if (m_compression_type == CompressionType::LZFSE)
568         scratchbuf_size = compression_decode_scratch_buffer_size (COMPRESSION_LZFSE);
569       if (scratchbuf_size > 0) {
570         m_decompression_scratch = (void*) malloc (scratchbuf_size);
571         m_decompression_scratch_type = m_compression_type;
572       }
573     }
574 
575     if (decompressed_bufsize != ULONG_MAX && decompressed_buffer != nullptr) {
576       decompressed_bytes = compression_decode_buffer(
577           decompressed_buffer, decompressed_bufsize,
578           (uint8_t *)unescaped_content.data(), unescaped_content.size(),
579           m_decompression_scratch, compression_type);
580     }
581   }
582 #endif
583 
584 #if LLVM_ENABLE_ZLIB
585   if (decompressed_bytes == 0 && decompressed_bufsize != ULONG_MAX &&
586       decompressed_buffer != nullptr &&
587       m_compression_type == CompressionType::ZlibDeflate) {
588     z_stream stream;
589     memset(&stream, 0, sizeof(z_stream));
590     stream.next_in = (Bytef *)unescaped_content.data();
591     stream.avail_in = (uInt)unescaped_content.size();
592     stream.total_in = 0;
593     stream.next_out = (Bytef *)decompressed_buffer;
594     stream.avail_out = decompressed_bufsize;
595     stream.total_out = 0;
596     stream.zalloc = Z_NULL;
597     stream.zfree = Z_NULL;
598     stream.opaque = Z_NULL;
599 
600     if (inflateInit2(&stream, -15) == Z_OK) {
601       int status = inflate(&stream, Z_NO_FLUSH);
602       inflateEnd(&stream);
603       if (status == Z_STREAM_END) {
604         decompressed_bytes = stream.total_out;
605       }
606     }
607   }
608 #endif
609 
610   if (decompressed_bytes == 0 || decompressed_buffer == nullptr) {
611     if (decompressed_buffer)
612       free(decompressed_buffer);
613     m_bytes.erase(0, size_of_first_packet);
614     return false;
615   }
616 
617   std::string new_packet;
618   new_packet.reserve(decompressed_bytes + 6);
619   new_packet.push_back(m_bytes[0]);
620   new_packet.append((const char *)decompressed_buffer, decompressed_bytes);
621   new_packet.push_back('#');
622   if (GetSendAcks()) {
623     uint8_t decompressed_checksum = CalculcateChecksum(
624         llvm::StringRef((const char *)decompressed_buffer, decompressed_bytes));
625     char decompressed_checksum_str[3];
626     snprintf(decompressed_checksum_str, 3, "%02x", decompressed_checksum);
627     new_packet.append(decompressed_checksum_str);
628   } else {
629     new_packet.push_back('0');
630     new_packet.push_back('0');
631   }
632 
633   m_bytes.replace(0, size_of_first_packet, new_packet.data(),
634                   new_packet.size());
635 
636   free(decompressed_buffer);
637   return true;
638 }
639 
640 GDBRemoteCommunication::PacketType
641 GDBRemoteCommunication::CheckForPacket(const uint8_t *src, size_t src_len,
642                                        StringExtractorGDBRemote &packet) {
643   // Put the packet data into the buffer in a thread safe fashion
644   std::lock_guard<std::recursive_mutex> guard(m_bytes_mutex);
645 
646   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PACKETS));
647 
648   if (src && src_len > 0) {
649     if (log && log->GetVerbose()) {
650       StreamString s;
651       LLDB_LOGF(log, "GDBRemoteCommunication::%s adding %u bytes: %.*s",
652                 __FUNCTION__, (uint32_t)src_len, (uint32_t)src_len, src);
653     }
654     m_bytes.append((const char *)src, src_len);
655   }
656 
657   bool isNotifyPacket = false;
658 
659   // Parse up the packets into gdb remote packets
660   if (!m_bytes.empty()) {
661     // end_idx must be one past the last valid packet byte. Start it off with
662     // an invalid value that is the same as the current index.
663     size_t content_start = 0;
664     size_t content_length = 0;
665     size_t total_length = 0;
666     size_t checksum_idx = std::string::npos;
667 
668     // Size of packet before it is decompressed, for logging purposes
669     size_t original_packet_size = m_bytes.size();
670     if (CompressionIsEnabled()) {
671       if (!DecompressPacket()) {
672         packet.Clear();
673         return GDBRemoteCommunication::PacketType::Standard;
674       }
675     }
676 
677     switch (m_bytes[0]) {
678     case '+':                            // Look for ack
679     case '-':                            // Look for cancel
680     case '\x03':                         // ^C to halt target
681       content_length = total_length = 1; // The command is one byte long...
682       break;
683 
684     case '%': // Async notify packet
685       isNotifyPacket = true;
686       LLVM_FALLTHROUGH;
687 
688     case '$':
689       // Look for a standard gdb packet?
690       {
691         size_t hash_pos = m_bytes.find('#');
692         if (hash_pos != std::string::npos) {
693           if (hash_pos + 2 < m_bytes.size()) {
694             checksum_idx = hash_pos + 1;
695             // Skip the dollar sign
696             content_start = 1;
697             // Don't include the # in the content or the $ in the content
698             // length
699             content_length = hash_pos - 1;
700 
701             total_length =
702                 hash_pos + 3; // Skip the # and the two hex checksum bytes
703           } else {
704             // Checksum bytes aren't all here yet
705             content_length = std::string::npos;
706           }
707         }
708       }
709       break;
710 
711     default: {
712       // We have an unexpected byte and we need to flush all bad data that is
713       // in m_bytes, so we need to find the first byte that is a '+' (ACK), '-'
714       // (NACK), \x03 (CTRL+C interrupt), or '$' character (start of packet
715       // header) or of course, the end of the data in m_bytes...
716       const size_t bytes_len = m_bytes.size();
717       bool done = false;
718       uint32_t idx;
719       for (idx = 1; !done && idx < bytes_len; ++idx) {
720         switch (m_bytes[idx]) {
721         case '+':
722         case '-':
723         case '\x03':
724         case '%':
725         case '$':
726           done = true;
727           break;
728 
729         default:
730           break;
731         }
732       }
733       LLDB_LOGF(log, "GDBRemoteCommunication::%s tossing %u junk bytes: '%.*s'",
734                 __FUNCTION__, idx - 1, idx - 1, m_bytes.c_str());
735       m_bytes.erase(0, idx - 1);
736     } break;
737     }
738 
739     if (content_length == std::string::npos) {
740       packet.Clear();
741       return GDBRemoteCommunication::PacketType::Invalid;
742     } else if (total_length > 0) {
743 
744       // We have a valid packet...
745       assert(content_length <= m_bytes.size());
746       assert(total_length <= m_bytes.size());
747       assert(content_length <= total_length);
748       size_t content_end = content_start + content_length;
749 
750       bool success = true;
751       if (log) {
752         // If logging was just enabled and we have history, then dump out what
753         // we have to the log so we get the historical context. The Dump() call
754         // that logs all of the packet will set a boolean so that we don't dump
755         // this more than once
756         if (!m_history.DidDumpToLog())
757           m_history.Dump(log);
758 
759         bool binary = false;
760         // Only detect binary for packets that start with a '$' and have a
761         // '#CC' checksum
762         if (m_bytes[0] == '$' && total_length > 4) {
763           for (size_t i = 0; !binary && i < total_length; ++i) {
764             unsigned char c = m_bytes[i];
765             if (!llvm::isPrint(c) && !llvm::isSpace(c)) {
766               binary = true;
767             }
768           }
769         }
770         if (binary) {
771           StreamString strm;
772           // Packet header...
773           if (CompressionIsEnabled())
774             strm.Printf("<%4" PRIu64 ":%" PRIu64 "> read packet: %c",
775                         (uint64_t)original_packet_size, (uint64_t)total_length,
776                         m_bytes[0]);
777           else
778             strm.Printf("<%4" PRIu64 "> read packet: %c",
779                         (uint64_t)total_length, m_bytes[0]);
780           for (size_t i = content_start; i < content_end; ++i) {
781             // Remove binary escaped bytes when displaying the packet...
782             const char ch = m_bytes[i];
783             if (ch == 0x7d) {
784               // 0x7d is the escape character.  The next character is to be
785               // XOR'd with 0x20.
786               const char escapee = m_bytes[++i] ^ 0x20;
787               strm.Printf("%2.2x", escapee);
788             } else {
789               strm.Printf("%2.2x", (uint8_t)ch);
790             }
791           }
792           // Packet footer...
793           strm.Printf("%c%c%c", m_bytes[total_length - 3],
794                       m_bytes[total_length - 2], m_bytes[total_length - 1]);
795           log->PutString(strm.GetString());
796         } else {
797           if (CompressionIsEnabled())
798             LLDB_LOGF(log, "<%4" PRIu64 ":%" PRIu64 "> read packet: %.*s",
799                       (uint64_t)original_packet_size, (uint64_t)total_length,
800                       (int)(total_length), m_bytes.c_str());
801           else
802             LLDB_LOGF(log, "<%4" PRIu64 "> read packet: %.*s",
803                       (uint64_t)total_length, (int)(total_length),
804                       m_bytes.c_str());
805         }
806       }
807 
808       m_history.AddPacket(m_bytes, total_length,
809                           GDBRemotePacket::ePacketTypeRecv, total_length);
810 
811       // Copy the packet from m_bytes to packet_str expanding the run-length
812       // encoding in the process.
813       std ::string packet_str =
814           ExpandRLE(m_bytes.substr(content_start, content_end - content_start));
815       packet = StringExtractorGDBRemote(packet_str);
816 
817       if (m_bytes[0] == '$' || m_bytes[0] == '%') {
818         assert(checksum_idx < m_bytes.size());
819         if (::isxdigit(m_bytes[checksum_idx + 0]) ||
820             ::isxdigit(m_bytes[checksum_idx + 1])) {
821           if (GetSendAcks()) {
822             const char *packet_checksum_cstr = &m_bytes[checksum_idx];
823             char packet_checksum = strtol(packet_checksum_cstr, nullptr, 16);
824             char actual_checksum = CalculcateChecksum(
825                 llvm::StringRef(m_bytes).slice(content_start, content_end));
826             success = packet_checksum == actual_checksum;
827             if (!success) {
828               LLDB_LOGF(log,
829                         "error: checksum mismatch: %.*s expected 0x%2.2x, "
830                         "got 0x%2.2x",
831                         (int)(total_length), m_bytes.c_str(),
832                         (uint8_t)packet_checksum, (uint8_t)actual_checksum);
833             }
834             // Send the ack or nack if needed
835             if (!success)
836               SendNack();
837             else
838               SendAck();
839           }
840         } else {
841           success = false;
842           LLDB_LOGF(log, "error: invalid checksum in packet: '%s'\n",
843                     m_bytes.c_str());
844         }
845       }
846 
847       m_bytes.erase(0, total_length);
848       packet.SetFilePos(0);
849 
850       if (isNotifyPacket)
851         return GDBRemoteCommunication::PacketType::Notify;
852       else
853         return GDBRemoteCommunication::PacketType::Standard;
854     }
855   }
856   packet.Clear();
857   return GDBRemoteCommunication::PacketType::Invalid;
858 }
859 
860 Status GDBRemoteCommunication::StartListenThread(const char *hostname,
861                                                  uint16_t port) {
862   if (m_listen_thread.IsJoinable())
863     return Status("listen thread already running");
864 
865   char listen_url[512];
866   if (hostname && hostname[0])
867     snprintf(listen_url, sizeof(listen_url), "listen://%s:%i", hostname, port);
868   else
869     snprintf(listen_url, sizeof(listen_url), "listen://%i", port);
870   m_listen_url = listen_url;
871   SetConnection(std::make_unique<ConnectionFileDescriptor>());
872   llvm::Expected<HostThread> listen_thread = ThreadLauncher::LaunchThread(
873       listen_url, GDBRemoteCommunication::ListenThread, this);
874   if (!listen_thread)
875     return Status(listen_thread.takeError());
876   m_listen_thread = *listen_thread;
877 
878   return Status();
879 }
880 
881 bool GDBRemoteCommunication::JoinListenThread() {
882   if (m_listen_thread.IsJoinable())
883     m_listen_thread.Join(nullptr);
884   return true;
885 }
886 
887 lldb::thread_result_t
888 GDBRemoteCommunication::ListenThread(lldb::thread_arg_t arg) {
889   GDBRemoteCommunication *comm = (GDBRemoteCommunication *)arg;
890   Status error;
891   ConnectionFileDescriptor *connection =
892       (ConnectionFileDescriptor *)comm->GetConnection();
893 
894   if (connection) {
895     // Do the listen on another thread so we can continue on...
896     if (connection->Connect(
897             comm->m_listen_url.c_str(), [comm](llvm::StringRef port_str) {
898               uint16_t port = 0;
899               llvm::to_integer(port_str, port, 10);
900               comm->m_port_promise.set_value(port);
901             },
902             &error) != eConnectionStatusSuccess)
903       comm->SetConnection(nullptr);
904   }
905   return {};
906 }
907 
908 Status GDBRemoteCommunication::StartDebugserverProcess(
909     const char *url, Platform *platform, ProcessLaunchInfo &launch_info,
910     uint16_t *port, const Args *inferior_args, int pass_comm_fd) {
911   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
912   LLDB_LOGF(log, "GDBRemoteCommunication::%s(url=%s, port=%" PRIu16 ")",
913             __FUNCTION__, url ? url : "<empty>", port ? *port : uint16_t(0));
914 
915   Status error;
916   // If we locate debugserver, keep that located version around
917   static FileSpec g_debugserver_file_spec;
918 
919   char debugserver_path[PATH_MAX];
920   FileSpec &debugserver_file_spec = launch_info.GetExecutableFile();
921 
922   Environment host_env = Host::GetEnvironment();
923 
924   // Always check to see if we have an environment override for the path to the
925   // debugserver to use and use it if we do.
926   std::string env_debugserver_path = host_env.lookup("LLDB_DEBUGSERVER_PATH");
927   if (!env_debugserver_path.empty()) {
928     debugserver_file_spec.SetFile(env_debugserver_path,
929                                   FileSpec::Style::native);
930     LLDB_LOGF(log,
931               "GDBRemoteCommunication::%s() gdb-remote stub exe path set "
932               "from environment variable: %s",
933               __FUNCTION__, env_debugserver_path.c_str());
934   } else
935     debugserver_file_spec = g_debugserver_file_spec;
936   bool debugserver_exists =
937       FileSystem::Instance().Exists(debugserver_file_spec);
938   if (!debugserver_exists) {
939     // The debugserver binary is in the LLDB.framework/Resources directory.
940     debugserver_file_spec = HostInfo::GetSupportExeDir();
941     if (debugserver_file_spec) {
942       debugserver_file_spec.AppendPathComponent(DEBUGSERVER_BASENAME);
943       debugserver_exists = FileSystem::Instance().Exists(debugserver_file_spec);
944       if (debugserver_exists) {
945         LLDB_LOGF(log,
946                   "GDBRemoteCommunication::%s() found gdb-remote stub exe '%s'",
947                   __FUNCTION__, debugserver_file_spec.GetPath().c_str());
948 
949         g_debugserver_file_spec = debugserver_file_spec;
950       } else {
951         if (platform)
952           debugserver_file_spec =
953               platform->LocateExecutable(DEBUGSERVER_BASENAME);
954         else
955           debugserver_file_spec.Clear();
956         if (debugserver_file_spec) {
957           // Platform::LocateExecutable() wouldn't return a path if it doesn't
958           // exist
959           debugserver_exists = true;
960         } else {
961           LLDB_LOGF(log,
962                     "GDBRemoteCommunication::%s() could not find "
963                     "gdb-remote stub exe '%s'",
964                     __FUNCTION__, debugserver_file_spec.GetPath().c_str());
965         }
966         // Don't cache the platform specific GDB server binary as it could
967         // change from platform to platform
968         g_debugserver_file_spec.Clear();
969       }
970     }
971   }
972 
973   if (debugserver_exists) {
974     debugserver_file_spec.GetPath(debugserver_path, sizeof(debugserver_path));
975 
976     Args &debugserver_args = launch_info.GetArguments();
977     debugserver_args.Clear();
978 
979     // Start args with "debugserver /file/path -r --"
980     debugserver_args.AppendArgument(llvm::StringRef(debugserver_path));
981 
982 #if !defined(__APPLE__)
983     // First argument to lldb-server must be mode in which to run.
984     debugserver_args.AppendArgument(llvm::StringRef("gdbserver"));
985 #endif
986 
987     // If a url is supplied then use it
988     if (url)
989       debugserver_args.AppendArgument(llvm::StringRef(url));
990 
991     if (pass_comm_fd >= 0) {
992       StreamString fd_arg;
993       fd_arg.Printf("--fd=%i", pass_comm_fd);
994       debugserver_args.AppendArgument(fd_arg.GetString());
995       // Send "pass_comm_fd" down to the inferior so it can use it to
996       // communicate back with this process
997       launch_info.AppendDuplicateFileAction(pass_comm_fd, pass_comm_fd);
998     }
999 
1000     // use native registers, not the GDB registers
1001     debugserver_args.AppendArgument(llvm::StringRef("--native-regs"));
1002 
1003     if (launch_info.GetLaunchInSeparateProcessGroup()) {
1004       debugserver_args.AppendArgument(llvm::StringRef("--setsid"));
1005     }
1006 
1007     llvm::SmallString<128> named_pipe_path;
1008     // socket_pipe is used by debug server to communicate back either
1009     // TCP port or domain socket name which it listens on.
1010     // The second purpose of the pipe to serve as a synchronization point -
1011     // once data is written to the pipe, debug server is up and running.
1012     Pipe socket_pipe;
1013 
1014     // port is null when debug server should listen on domain socket - we're
1015     // not interested in port value but rather waiting for debug server to
1016     // become available.
1017     if (pass_comm_fd == -1) {
1018       if (url) {
1019 // Create a temporary file to get the stdout/stderr and redirect the output of
1020 // the command into this file. We will later read this file if all goes well
1021 // and fill the data into "command_output_ptr"
1022 #if defined(__APPLE__)
1023         // Binding to port zero, we need to figure out what port it ends up
1024         // using using a named pipe...
1025         error = socket_pipe.CreateWithUniqueName("debugserver-named-pipe",
1026                                                  false, named_pipe_path);
1027         if (error.Fail()) {
1028           LLDB_LOGF(log,
1029                     "GDBRemoteCommunication::%s() "
1030                     "named pipe creation failed: %s",
1031                     __FUNCTION__, error.AsCString());
1032           return error;
1033         }
1034         debugserver_args.AppendArgument(llvm::StringRef("--named-pipe"));
1035         debugserver_args.AppendArgument(named_pipe_path);
1036 #else
1037         // Binding to port zero, we need to figure out what port it ends up
1038         // using using an unnamed pipe...
1039         error = socket_pipe.CreateNew(true);
1040         if (error.Fail()) {
1041           LLDB_LOGF(log,
1042                     "GDBRemoteCommunication::%s() "
1043                     "unnamed pipe creation failed: %s",
1044                     __FUNCTION__, error.AsCString());
1045           return error;
1046         }
1047         pipe_t write = socket_pipe.GetWritePipe();
1048         debugserver_args.AppendArgument(llvm::StringRef("--pipe"));
1049         debugserver_args.AppendArgument(llvm::to_string(write));
1050         launch_info.AppendCloseFileAction(socket_pipe.GetReadFileDescriptor());
1051 #endif
1052       } else {
1053         // No host and port given, so lets listen on our end and make the
1054         // debugserver connect to us..
1055         error = StartListenThread("127.0.0.1", 0);
1056         if (error.Fail()) {
1057           LLDB_LOGF(log,
1058                     "GDBRemoteCommunication::%s() unable to start listen "
1059                     "thread: %s",
1060                     __FUNCTION__, error.AsCString());
1061           return error;
1062         }
1063 
1064         // Wait for 10 seconds to resolve the bound port
1065         std::future<uint16_t> port_future = m_port_promise.get_future();
1066         uint16_t port_ = port_future.wait_for(std::chrono::seconds(10)) ==
1067                                  std::future_status::ready
1068                              ? port_future.get()
1069                              : 0;
1070         if (port_ > 0) {
1071           char port_cstr[32];
1072           snprintf(port_cstr, sizeof(port_cstr), "127.0.0.1:%i", port_);
1073           // Send the host and port down that debugserver and specify an option
1074           // so that it connects back to the port we are listening to in this
1075           // process
1076           debugserver_args.AppendArgument(llvm::StringRef("--reverse-connect"));
1077           debugserver_args.AppendArgument(llvm::StringRef(port_cstr));
1078           if (port)
1079             *port = port_;
1080         } else {
1081           error.SetErrorString("failed to bind to port 0 on 127.0.0.1");
1082           LLDB_LOGF(log, "GDBRemoteCommunication::%s() failed: %s",
1083                     __FUNCTION__, error.AsCString());
1084           return error;
1085         }
1086       }
1087     }
1088     std::string env_debugserver_log_file =
1089         host_env.lookup("LLDB_DEBUGSERVER_LOG_FILE");
1090     if (!env_debugserver_log_file.empty()) {
1091       debugserver_args.AppendArgument(
1092           llvm::formatv("--log-file={0}", env_debugserver_log_file).str());
1093     }
1094 
1095 #if defined(__APPLE__)
1096     const char *env_debugserver_log_flags =
1097         getenv("LLDB_DEBUGSERVER_LOG_FLAGS");
1098     if (env_debugserver_log_flags) {
1099       debugserver_args.AppendArgument(
1100           llvm::formatv("--log-flags={0}", env_debugserver_log_flags).str());
1101     }
1102 #else
1103     std::string env_debugserver_log_channels =
1104         host_env.lookup("LLDB_SERVER_LOG_CHANNELS");
1105     if (!env_debugserver_log_channels.empty()) {
1106       debugserver_args.AppendArgument(
1107           llvm::formatv("--log-channels={0}", env_debugserver_log_channels)
1108               .str());
1109     }
1110 #endif
1111 
1112     // Add additional args, starting with LLDB_DEBUGSERVER_EXTRA_ARG_1 until an
1113     // env var doesn't come back.
1114     uint32_t env_var_index = 1;
1115     bool has_env_var;
1116     do {
1117       char env_var_name[64];
1118       snprintf(env_var_name, sizeof(env_var_name),
1119                "LLDB_DEBUGSERVER_EXTRA_ARG_%" PRIu32, env_var_index++);
1120       std::string extra_arg = host_env.lookup(env_var_name);
1121       has_env_var = !extra_arg.empty();
1122 
1123       if (has_env_var) {
1124         debugserver_args.AppendArgument(llvm::StringRef(extra_arg));
1125         LLDB_LOGF(log,
1126                   "GDBRemoteCommunication::%s adding env var %s contents "
1127                   "to stub command line (%s)",
1128                   __FUNCTION__, env_var_name, extra_arg.c_str());
1129       }
1130     } while (has_env_var);
1131 
1132     if (inferior_args && inferior_args->GetArgumentCount() > 0) {
1133       debugserver_args.AppendArgument(llvm::StringRef("--"));
1134       debugserver_args.AppendArguments(*inferior_args);
1135     }
1136 
1137     // Copy the current environment to the gdbserver/debugserver instance
1138     launch_info.GetEnvironment() = host_env;
1139 
1140     // Close STDIN, STDOUT and STDERR.
1141     launch_info.AppendCloseFileAction(STDIN_FILENO);
1142     launch_info.AppendCloseFileAction(STDOUT_FILENO);
1143     launch_info.AppendCloseFileAction(STDERR_FILENO);
1144 
1145     // Redirect STDIN, STDOUT and STDERR to "/dev/null".
1146     launch_info.AppendSuppressFileAction(STDIN_FILENO, true, false);
1147     launch_info.AppendSuppressFileAction(STDOUT_FILENO, false, true);
1148     launch_info.AppendSuppressFileAction(STDERR_FILENO, false, true);
1149 
1150     if (log) {
1151       StreamString string_stream;
1152       Platform *const platform = nullptr;
1153       launch_info.Dump(string_stream, platform);
1154       LLDB_LOGF(log, "launch info for gdb-remote stub:\n%s",
1155                 string_stream.GetData());
1156     }
1157     error = Host::LaunchProcess(launch_info);
1158 
1159     if (error.Success() &&
1160         (launch_info.GetProcessID() != LLDB_INVALID_PROCESS_ID) &&
1161         pass_comm_fd == -1) {
1162       if (named_pipe_path.size() > 0) {
1163         error = socket_pipe.OpenAsReader(named_pipe_path, false);
1164         if (error.Fail())
1165           LLDB_LOGF(log,
1166                     "GDBRemoteCommunication::%s() "
1167                     "failed to open named pipe %s for reading: %s",
1168                     __FUNCTION__, named_pipe_path.c_str(), error.AsCString());
1169       }
1170 
1171       if (socket_pipe.CanWrite())
1172         socket_pipe.CloseWriteFileDescriptor();
1173       if (socket_pipe.CanRead()) {
1174         char port_cstr[PATH_MAX] = {0};
1175         port_cstr[0] = '\0';
1176         size_t num_bytes = sizeof(port_cstr);
1177         // Read port from pipe with 10 second timeout.
1178         error = socket_pipe.ReadWithTimeout(
1179             port_cstr, num_bytes, std::chrono::seconds{10}, num_bytes);
1180         if (error.Success() && (port != nullptr)) {
1181           assert(num_bytes > 0 && port_cstr[num_bytes - 1] == '\0');
1182           uint16_t child_port = 0;
1183           // FIXME: improve error handling
1184           llvm::to_integer(port_cstr, child_port);
1185           if (*port == 0 || *port == child_port) {
1186             *port = child_port;
1187             LLDB_LOGF(log,
1188                       "GDBRemoteCommunication::%s() "
1189                       "debugserver listens %u port",
1190                       __FUNCTION__, *port);
1191           } else {
1192             LLDB_LOGF(log,
1193                       "GDBRemoteCommunication::%s() "
1194                       "debugserver listening on port "
1195                       "%d but requested port was %d",
1196                       __FUNCTION__, (uint32_t)child_port, (uint32_t)(*port));
1197           }
1198         } else {
1199           LLDB_LOGF(log,
1200                     "GDBRemoteCommunication::%s() "
1201                     "failed to read a port value from pipe %s: %s",
1202                     __FUNCTION__, named_pipe_path.c_str(), error.AsCString());
1203         }
1204         socket_pipe.Close();
1205       }
1206 
1207       if (named_pipe_path.size() > 0) {
1208         const auto err = socket_pipe.Delete(named_pipe_path);
1209         if (err.Fail()) {
1210           LLDB_LOGF(log,
1211                     "GDBRemoteCommunication::%s failed to delete pipe %s: %s",
1212                     __FUNCTION__, named_pipe_path.c_str(), err.AsCString());
1213         }
1214       }
1215 
1216       // Make sure we actually connect with the debugserver...
1217       JoinListenThread();
1218     }
1219   } else {
1220     error.SetErrorStringWithFormat("unable to locate " DEBUGSERVER_BASENAME);
1221   }
1222 
1223   if (error.Fail()) {
1224     LLDB_LOGF(log, "GDBRemoteCommunication::%s() failed: %s", __FUNCTION__,
1225               error.AsCString());
1226   }
1227 
1228   return error;
1229 }
1230 
1231 void GDBRemoteCommunication::DumpHistory(Stream &strm) { m_history.Dump(strm); }
1232 
1233 void GDBRemoteCommunication::SetPacketRecorder(
1234     repro::PacketRecorder *recorder) {
1235   m_history.SetRecorder(recorder);
1236 }
1237 
1238 llvm::Error
1239 GDBRemoteCommunication::ConnectLocally(GDBRemoteCommunication &client,
1240                                        GDBRemoteCommunication &server) {
1241   const bool child_processes_inherit = false;
1242   const int backlog = 5;
1243   TCPSocket listen_socket(true, child_processes_inherit);
1244   if (llvm::Error error =
1245           listen_socket.Listen("localhost:0", backlog).ToError())
1246     return error;
1247 
1248   Socket *accept_socket;
1249   std::future<Status> accept_status = std::async(
1250       std::launch::async, [&] { return listen_socket.Accept(accept_socket); });
1251 
1252   llvm::SmallString<32> remote_addr;
1253   llvm::raw_svector_ostream(remote_addr)
1254       << "connect://localhost:" << listen_socket.GetLocalPortNumber();
1255 
1256   std::unique_ptr<ConnectionFileDescriptor> conn_up(
1257       new ConnectionFileDescriptor());
1258   Status status;
1259   if (conn_up->Connect(remote_addr, &status) != lldb::eConnectionStatusSuccess)
1260     return llvm::createStringError(llvm::inconvertibleErrorCode(),
1261                                    "Unable to connect: %s", status.AsCString());
1262 
1263   client.SetConnection(std::move(conn_up));
1264   if (llvm::Error error = accept_status.get().ToError())
1265     return error;
1266 
1267   server.SetConnection(
1268       std::make_unique<ConnectionFileDescriptor>(accept_socket));
1269   return llvm::Error::success();
1270 }
1271 
1272 GDBRemoteCommunication::ScopedTimeout::ScopedTimeout(
1273     GDBRemoteCommunication &gdb_comm, std::chrono::seconds timeout)
1274     : m_gdb_comm(gdb_comm), m_timeout_modified(false) {
1275   auto curr_timeout = gdb_comm.GetPacketTimeout();
1276   // Only update the timeout if the timeout is greater than the current
1277   // timeout. If the current timeout is larger, then just use that.
1278   if (curr_timeout < timeout) {
1279     m_timeout_modified = true;
1280     m_saved_timeout = m_gdb_comm.SetPacketTimeout(timeout);
1281   }
1282 }
1283 
1284 GDBRemoteCommunication::ScopedTimeout::~ScopedTimeout() {
1285   // Only restore the timeout if we set it in the constructor.
1286   if (m_timeout_modified)
1287     m_gdb_comm.SetPacketTimeout(m_saved_timeout);
1288 }
1289 
1290 // This function is called via the Communications class read thread when bytes
1291 // become available for this connection. This function will consume all
1292 // incoming bytes and try to parse whole packets as they become available. Full
1293 // packets are placed in a queue, so that all packet requests can simply pop
1294 // from this queue. Async notification packets will be dispatched immediately
1295 // to the ProcessGDBRemote Async thread via an event.
1296 void GDBRemoteCommunication::AppendBytesToCache(const uint8_t *bytes,
1297                                                 size_t len, bool broadcast,
1298                                                 lldb::ConnectionStatus status) {
1299   StringExtractorGDBRemote packet;
1300 
1301   while (true) {
1302     PacketType type = CheckForPacket(bytes, len, packet);
1303 
1304     // scrub the data so we do not pass it back to CheckForPacket on future
1305     // passes of the loop
1306     bytes = nullptr;
1307     len = 0;
1308 
1309     // we may have received no packet so lets bail out
1310     if (type == PacketType::Invalid)
1311       break;
1312 
1313     if (type == PacketType::Standard) {
1314       // scope for the mutex
1315       {
1316         // lock down the packet queue
1317         std::lock_guard<std::mutex> guard(m_packet_queue_mutex);
1318         // push a new packet into the queue
1319         m_packet_queue.push(packet);
1320         // Signal condition variable that we have a packet
1321         m_condition_queue_not_empty.notify_one();
1322       }
1323     }
1324 
1325     if (type == PacketType::Notify) {
1326       // put this packet into an event
1327       const char *pdata = packet.GetStringRef().data();
1328 
1329       // as the communication class, we are a broadcaster and the async thread
1330       // is tuned to listen to us
1331       BroadcastEvent(eBroadcastBitGdbReadThreadGotNotify,
1332                      new EventDataBytes(pdata));
1333     }
1334   }
1335 }
1336 
1337 void llvm::format_provider<GDBRemoteCommunication::PacketResult>::format(
1338     const GDBRemoteCommunication::PacketResult &result, raw_ostream &Stream,
1339     StringRef Style) {
1340   using PacketResult = GDBRemoteCommunication::PacketResult;
1341 
1342   switch (result) {
1343   case PacketResult::Success:
1344     Stream << "Success";
1345     break;
1346   case PacketResult::ErrorSendFailed:
1347     Stream << "ErrorSendFailed";
1348     break;
1349   case PacketResult::ErrorSendAck:
1350     Stream << "ErrorSendAck";
1351     break;
1352   case PacketResult::ErrorReplyFailed:
1353     Stream << "ErrorReplyFailed";
1354     break;
1355   case PacketResult::ErrorReplyTimeout:
1356     Stream << "ErrorReplyTimeout";
1357     break;
1358   case PacketResult::ErrorReplyInvalid:
1359     Stream << "ErrorReplyInvalid";
1360     break;
1361   case PacketResult::ErrorReplyAck:
1362     Stream << "ErrorReplyAck";
1363     break;
1364   case PacketResult::ErrorDisconnected:
1365     Stream << "ErrorDisconnected";
1366     break;
1367   case PacketResult::ErrorNoSequenceLock:
1368     Stream << "ErrorNoSequenceLock";
1369     break;
1370   }
1371 }
1372 
1373 std::string GDBRemoteCommunication::ExpandRLE(std::string packet) {
1374   // Reserve enough byte for the most common case (no RLE used).
1375   std::string decoded;
1376   decoded.reserve(packet.size());
1377   for (std::string::const_iterator c = packet.begin(); c != packet.end(); ++c) {
1378     if (*c == '*') {
1379       // '*' indicates RLE. Next character will give us the repeat count and
1380       // previous character is what is to be repeated.
1381       char char_to_repeat = decoded.back();
1382       // Number of time the previous character is repeated.
1383       int repeat_count = *++c + 3 - ' ';
1384       // We have the char_to_repeat and repeat_count. Now push it in the
1385       // packet.
1386       for (int i = 0; i < repeat_count; ++i)
1387         decoded.push_back(char_to_repeat);
1388     } else if (*c == 0x7d) {
1389       // 0x7d is the escape character.  The next character is to be XOR'd with
1390       // 0x20.
1391       char escapee = *++c ^ 0x20;
1392       decoded.push_back(escapee);
1393     } else {
1394       decoded.push_back(*c);
1395     }
1396   }
1397   return decoded;
1398 }
1399