blob: 556465d153dc0259f68cab218164fd457b4b51d9 [file] [log] [blame]
Greg Clayton576d8832011-03-22 04:00:09 +00001//===-- GDBRemoteCommunicationClient.h --------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_GDBRemoteCommunicationClient_h_
11#define liblldb_GDBRemoteCommunicationClient_h_
12
13// C Includes
14// C++ Includes
Greg Claytonadc00cb2011-05-20 23:38:13 +000015#include <vector>
16
Greg Clayton576d8832011-03-22 04:00:09 +000017// Other libraries and framework includes
18// Project includes
19#include "lldb/Core/ArchSpec.h"
Greg Clayton46fb5582011-11-18 07:03:08 +000020#include "lldb/Target/Process.h"
Greg Clayton576d8832011-03-22 04:00:09 +000021
22#include "GDBRemoteCommunication.h"
23
Greg Clayton8b82f082011-04-12 05:54:46 +000024typedef enum
25{
26 eBreakpointSoftware = 0,
27 eBreakpointHardware,
28 eWatchpointWrite,
29 eWatchpointRead,
30 eWatchpointReadWrite
31} GDBStoppointType;
32
Greg Clayton576d8832011-03-22 04:00:09 +000033class GDBRemoteCommunicationClient : public GDBRemoteCommunication
34{
35public:
36 //------------------------------------------------------------------
37 // Constructors and Destructors
38 //------------------------------------------------------------------
Greg Clayton8b82f082011-04-12 05:54:46 +000039 GDBRemoteCommunicationClient(bool is_platform);
Greg Clayton576d8832011-03-22 04:00:09 +000040
Greg Clayton576d8832011-03-22 04:00:09 +000041 ~GDBRemoteCommunicationClient();
42
Greg Clayton1cb64962011-03-24 04:28:38 +000043 //------------------------------------------------------------------
44 // After connecting, send the handshake to the server to make sure
45 // we are communicating with it.
46 //------------------------------------------------------------------
47 bool
48 HandshakeWithServer (lldb_private::Error *error_ptr);
49
Greg Clayton3dedae12013-12-06 21:45:27 +000050 PacketResult
Greg Clayton576d8832011-03-22 04:00:09 +000051 SendPacketAndWaitForResponse (const char *send_payload,
52 StringExtractorGDBRemote &response,
53 bool send_async);
54
Greg Clayton3dedae12013-12-06 21:45:27 +000055 PacketResult
Greg Clayton576d8832011-03-22 04:00:09 +000056 SendPacketAndWaitForResponse (const char *send_payload,
57 size_t send_length,
58 StringExtractorGDBRemote &response,
59 bool send_async);
60
Steve Pucci5ae54ae2014-01-25 05:46:51 +000061 // For packets which specify a range of output to be returned,
62 // return all of the output via a series of request packets of the form
63 // <prefix>0,<size>
64 // <prefix><size>,<size>
65 // <prefix><size>*2,<size>
66 // <prefix><size>*3,<size>
67 // ...
68 // until a "$l..." packet is received, indicating the end.
69 // (size is in hex; this format is used by a standard gdbserver to
70 // return the given portion of the output specified by <prefix>;
71 // for example, "qXfer:libraries-svr4:read::fff,1000" means
72 // "return a chunk of the xml description file for shared
73 // library load addresses, where the chunk starts at offset 0xfff
74 // and continues for 0x1000 bytes").
75 // Concatenate the resulting server response packets together and
76 // return in response_string. If any packet fails, the return value
77 // indicates that failure and the returned string value is undefined.
78 PacketResult
79 SendPacketsAndConcatenateResponses (const char *send_payload_prefix,
80 std::string &response_string);
81
Greg Clayton576d8832011-03-22 04:00:09 +000082 lldb::StateType
83 SendContinuePacketAndWaitForResponse (ProcessGDBRemote *process,
84 const char *packet_payload,
85 size_t packet_length,
86 StringExtractorGDBRemote &response);
87
Greg Claytonfbb76342013-11-20 21:07:01 +000088 bool
Greg Clayton576d8832011-03-22 04:00:09 +000089 GetThreadSuffixSupported ();
90
Greg Claytonfb909312013-11-23 01:58:15 +000091 // This packet is usually sent first and the boolean return value
92 // indicates if the packet was send and any response was received
93 // even in the response is UNIMPLEMENTED. If the packet failed to
94 // get a response, then false is returned. This quickly tells us
95 // if we were able to connect and communicte with the remote GDB
96 // server
97 bool
Greg Clayton1cb64962011-03-24 04:28:38 +000098 QueryNoAckModeSupported ();
Greg Clayton576d8832011-03-22 04:00:09 +000099
Greg Clayton44633992012-04-10 03:22:03 +0000100 void
101 GetListThreadsInStopReplySupported ();
102
Greg Clayton576d8832011-03-22 04:00:09 +0000103 bool
104 SendAsyncSignal (int signo);
105
106 bool
107 SendInterrupt (lldb_private::Mutex::Locker &locker,
108 uint32_t seconds_to_wait_for_stop,
Greg Clayton576d8832011-03-22 04:00:09 +0000109 bool &timed_out);
110
111 lldb::pid_t
112 GetCurrentProcessID ();
113
114 bool
115 GetLaunchSuccess (std::string &error_str);
116
Greg Clayton8b82f082011-04-12 05:54:46 +0000117 uint16_t
Greg Claytondbf04572013-12-04 19:40:33 +0000118 LaunchGDBserverAndGetPort (lldb::pid_t &pid, const char *remote_accept_hostname);
Daniel Maleae0f8f572013-08-26 23:57:52 +0000119
120 bool
121 KillSpawnedProcess (lldb::pid_t pid);
Greg Clayton8b82f082011-04-12 05:54:46 +0000122
Greg Clayton576d8832011-03-22 04:00:09 +0000123 //------------------------------------------------------------------
124 /// Sends a GDB remote protocol 'A' packet that delivers program
125 /// arguments to the remote server.
126 ///
127 /// @param[in] argv
128 /// A NULL terminated array of const C strings to use as the
129 /// arguments.
130 ///
131 /// @return
132 /// Zero if the response was "OK", a positive value if the
133 /// the response was "Exx" where xx are two hex digits, or
134 /// -1 if the call is unsupported or any other unexpected
135 /// response was received.
136 //------------------------------------------------------------------
137 int
Greg Claytonfbb76342013-11-20 21:07:01 +0000138 SendArgumentsPacket (const lldb_private::ProcessLaunchInfo &launch_info);
Greg Clayton576d8832011-03-22 04:00:09 +0000139
140 //------------------------------------------------------------------
141 /// Sends a "QEnvironment:NAME=VALUE" packet that will build up the
142 /// environment that will get used when launching an application
143 /// in conjunction with the 'A' packet. This function can be called
144 /// multiple times in a row in order to pass on the desired
145 /// environment that the inferior should be launched with.
146 ///
147 /// @param[in] name_equal_value
148 /// A NULL terminated C string that contains a single environment
149 /// in the format "NAME=VALUE".
150 ///
151 /// @return
152 /// Zero if the response was "OK", a positive value if the
153 /// the response was "Exx" where xx are two hex digits, or
154 /// -1 if the call is unsupported or any other unexpected
155 /// response was received.
156 //------------------------------------------------------------------
157 int
158 SendEnvironmentPacket (char const *name_equal_value);
159
Greg Claytonc4103b32011-05-08 04:53:50 +0000160 int
161 SendLaunchArchPacket (const char *arch);
Jason Molendaa3329782014-03-29 18:54:20 +0000162
163 int
164 SendLaunchEventDataPacket (const char *data, bool *was_supported = NULL);
165
Greg Clayton576d8832011-03-22 04:00:09 +0000166 //------------------------------------------------------------------
167 /// Sends a "vAttach:PID" where PID is in hex.
168 ///
169 /// @param[in] pid
170 /// A process ID for the remote gdb server to attach to.
171 ///
172 /// @param[out] response
173 /// The response received from the gdb server. If the return
174 /// value is zero, \a response will contain a stop reply
175 /// packet.
176 ///
177 /// @return
178 /// Zero if the attach was successful, or an error indicating
179 /// an error code.
180 //------------------------------------------------------------------
181 int
182 SendAttach (lldb::pid_t pid,
183 StringExtractorGDBRemote& response);
184
185
186 //------------------------------------------------------------------
187 /// Sets the path to use for stdin/out/err for a process
188 /// that will be launched with the 'A' packet.
189 ///
190 /// @param[in] path
191 /// The path to use for stdin/out/err
192 ///
193 /// @return
194 /// Zero if the for success, or an error code for failure.
195 //------------------------------------------------------------------
196 int
197 SetSTDIN (char const *path);
198 int
199 SetSTDOUT (char const *path);
200 int
201 SetSTDERR (char const *path);
202
203 //------------------------------------------------------------------
204 /// Sets the disable ASLR flag to \a enable for a process that will
205 /// be launched with the 'A' packet.
206 ///
207 /// @param[in] enable
Jim Ingham106d0282014-06-25 02:32:56 +0000208 /// A boolean value indicating whether to disable ASLR or not.
Greg Clayton576d8832011-03-22 04:00:09 +0000209 ///
210 /// @return
211 /// Zero if the for success, or an error code for failure.
212 //------------------------------------------------------------------
213 int
214 SetDisableASLR (bool enable);
Jim Ingham106d0282014-06-25 02:32:56 +0000215
216 //------------------------------------------------------------------
217 /// Sets the DetachOnError flag to \a enable for the process controlled by the stub.
218 ///
219 /// @param[in] enable
220 /// A boolean value indicating whether to detach on error or not.
221 ///
222 /// @return
223 /// Zero if the for success, or an error code for failure.
224 //------------------------------------------------------------------
225 int
226 SetDetachOnError (bool enable);
Greg Clayton576d8832011-03-22 04:00:09 +0000227
228 //------------------------------------------------------------------
229 /// Sets the working directory to \a path for a process that will
Greg Claytonfbb76342013-11-20 21:07:01 +0000230 /// be launched with the 'A' packet for non platform based
231 /// connections. If this packet is sent to a GDB server that
232 /// implements the platform, it will change the current working
233 /// directory for the platform process.
Greg Clayton576d8832011-03-22 04:00:09 +0000234 ///
235 /// @param[in] path
236 /// The path to a directory to use when launching our processs
237 ///
238 /// @return
239 /// Zero if the for success, or an error code for failure.
240 //------------------------------------------------------------------
241 int
242 SetWorkingDir (char const *path);
243
Greg Claytonfbb76342013-11-20 21:07:01 +0000244 //------------------------------------------------------------------
245 /// Gets the current working directory of a remote platform GDB
246 /// server.
247 ///
248 /// @param[out] cwd
249 /// The current working directory on the remote platform.
250 ///
251 /// @return
252 /// Boolean for success
253 //------------------------------------------------------------------
254 bool
255 GetWorkingDir (std::string &cwd);
256
Greg Clayton576d8832011-03-22 04:00:09 +0000257 lldb::addr_t
258 AllocateMemory (size_t size, uint32_t permissions);
259
260 bool
261 DeallocateMemory (lldb::addr_t addr);
262
Jim Inghamacff8952013-05-02 00:27:30 +0000263 lldb_private::Error
264 Detach (bool keep_stopped);
Greg Clayton37a0a242012-04-11 00:24:49 +0000265
Greg Clayton46fb5582011-11-18 07:03:08 +0000266 lldb_private::Error
267 GetMemoryRegionInfo (lldb::addr_t addr,
268 lldb_private::MemoryRegionInfo &range_info);
269
Johnny Chen64637202012-05-23 21:09:52 +0000270 lldb_private::Error
271 GetWatchpointSupportInfo (uint32_t &num);
272
Enrico Granataf04a2192012-07-13 23:18:48 +0000273 lldb_private::Error
274 GetWatchpointSupportInfo (uint32_t &num, bool& after);
275
276 lldb_private::Error
277 GetWatchpointsTriggerAfterInstruction (bool &after);
278
Greg Clayton576d8832011-03-22 04:00:09 +0000279 const lldb_private::ArchSpec &
280 GetHostArchitecture ();
Greg Clayton9ac6d2d2013-10-25 18:13:17 +0000281
282 uint32_t
283 GetHostDefaultPacketTimeout();
Jason Molendaf17b5ac2012-12-19 02:54:03 +0000284
285 const lldb_private::ArchSpec &
286 GetProcessArchitecture ();
287
Steve Pucci5ae54ae2014-01-25 05:46:51 +0000288 void
289 GetRemoteQSupported();
290
Greg Clayton576d8832011-03-22 04:00:09 +0000291 bool
292 GetVContSupported (char flavor);
293
Jim Inghamcd16df92012-07-20 21:37:13 +0000294 bool
Sean Callananb1de1142013-09-04 23:24:15 +0000295 GetpPacketSupported (lldb::tid_t tid);
Hafiz Abid Qadeer9a78cdf2013-08-29 09:09:45 +0000296
297 bool
Jason Molendabdc4f122014-05-06 02:59:39 +0000298 GetxPacketSupported ();
299
300 bool
Jim Inghamcd16df92012-07-20 21:37:13 +0000301 GetVAttachOrWaitSupported ();
302
Jim Ingham279ceec2012-07-25 21:12:43 +0000303 bool
304 GetSyncThreadStateSupported();
305
Greg Clayton576d8832011-03-22 04:00:09 +0000306 void
307 ResetDiscoverableSettings();
308
309 bool
Greg Clayton9b1e1cd2011-04-04 18:18:57 +0000310 GetHostInfo (bool force = false);
Greg Clayton576d8832011-03-22 04:00:09 +0000311
312 bool
Greg Clayton1cb64962011-03-24 04:28:38 +0000313 GetOSVersion (uint32_t &major,
314 uint32_t &minor,
315 uint32_t &update);
316
317 bool
318 GetOSBuildString (std::string &s);
319
320 bool
321 GetOSKernelDescription (std::string &s);
322
323 lldb_private::ArchSpec
324 GetSystemArchitecture ();
325
326 bool
327 GetHostname (std::string &s);
328
Greg Clayton37a0a242012-04-11 00:24:49 +0000329 lldb::addr_t
330 GetShlibInfoAddr();
331
Greg Clayton1cb64962011-03-24 04:28:38 +0000332 bool
Greg Clayton576d8832011-03-22 04:00:09 +0000333 GetSupportsThreadSuffix ();
334
335 bool
Greg Clayton32e0a752011-03-30 18:16:51 +0000336 GetProcessInfo (lldb::pid_t pid,
Greg Clayton8b82f082011-04-12 05:54:46 +0000337 lldb_private::ProcessInstanceInfo &process_info);
Greg Clayton32e0a752011-03-30 18:16:51 +0000338
339 uint32_t
Greg Clayton8b82f082011-04-12 05:54:46 +0000340 FindProcesses (const lldb_private::ProcessInstanceInfoMatch &process_match_info,
341 lldb_private::ProcessInstanceInfoList &process_infos);
Greg Clayton32e0a752011-03-30 18:16:51 +0000342
343 bool
344 GetUserName (uint32_t uid, std::string &name);
345
346 bool
347 GetGroupName (uint32_t gid, std::string &name);
348
349 bool
Greg Clayton576d8832011-03-22 04:00:09 +0000350 HasFullVContSupport ()
351 {
352 return GetVContSupported ('A');
353 }
354
355 bool
356 HasAnyVContSupport ()
357 {
358 return GetVContSupported ('a');
359 }
360
Greg Clayton8b82f082011-04-12 05:54:46 +0000361 bool
362 GetStopReply (StringExtractorGDBRemote &response);
363
364 bool
Greg Claytonf402f782012-10-13 02:11:55 +0000365 GetThreadStopInfo (lldb::tid_t tid,
Greg Clayton8b82f082011-04-12 05:54:46 +0000366 StringExtractorGDBRemote &response);
367
368 bool
369 SupportsGDBStoppointPacket (GDBStoppointType type)
370 {
371 switch (type)
372 {
373 case eBreakpointSoftware: return m_supports_z0;
374 case eBreakpointHardware: return m_supports_z1;
375 case eWatchpointWrite: return m_supports_z2;
376 case eWatchpointRead: return m_supports_z3;
377 case eWatchpointReadWrite: return m_supports_z4;
Greg Clayton8b82f082011-04-12 05:54:46 +0000378 }
379 return false;
380 }
381 uint8_t
382 SendGDBStoppointTypePacket (GDBStoppointType type, // Type of breakpoint or watchpoint
383 bool insert, // Insert or remove?
384 lldb::addr_t addr, // Address of breakpoint or watchpoint
385 uint32_t length); // Byte Size of breakpoint or watchpoint
386
Greg Clayton9b1e1cd2011-04-04 18:18:57 +0000387 void
388 TestPacketSpeed (const uint32_t num_packets);
389
390 // This packet is for testing the speed of the interface only. Both
391 // the client and server need to support it, but this allows us to
392 // measure the packet speed without any other work being done on the
393 // other end and avoids any of that work affecting the packet send
394 // and response times.
395 bool
396 SendSpeedTestPacket (uint32_t send_size,
397 uint32_t recv_size);
Greg Clayton8b82f082011-04-12 05:54:46 +0000398
399 bool
Jason Molendae9ca4af2013-02-23 02:04:45 +0000400 SetCurrentThread (uint64_t tid);
Greg Clayton8b82f082011-04-12 05:54:46 +0000401
402 bool
Jason Molendae9ca4af2013-02-23 02:04:45 +0000403 SetCurrentThreadForRun (uint64_t tid);
Greg Clayton8b82f082011-04-12 05:54:46 +0000404
Steve Pucci5ae54ae2014-01-25 05:46:51 +0000405 bool
Steve Pucci03904ac2014-03-04 23:18:46 +0000406 GetQXferAuxvReadSupported ();
407
408 bool
Steve Pucci5ae54ae2014-01-25 05:46:51 +0000409 GetQXferLibrariesReadSupported ();
410
411 bool
412 GetQXferLibrariesSVR4ReadSupported ();
413
414 uint64_t
415 GetRemoteMaxPacketSize();
416
417 bool
418 GetAugmentedLibrariesSVR4ReadSupported ();
419
Greg Clayton2a48f522011-05-14 01:50:35 +0000420 lldb_private::LazyBool
Jim Ingham372787f2012-04-07 00:00:41 +0000421 SupportsAllocDeallocMemory () // const
Greg Clayton2a48f522011-05-14 01:50:35 +0000422 {
Jim Ingham372787f2012-04-07 00:00:41 +0000423 // Uncomment this to have lldb pretend the debug server doesn't respond to alloc/dealloc memory packets.
424 // m_supports_alloc_dealloc_memory = lldb_private::eLazyBoolNo;
Greg Clayton70b57652011-05-15 01:25:55 +0000425 return m_supports_alloc_dealloc_memory;
Greg Clayton2a48f522011-05-14 01:50:35 +0000426 }
427
Greg Claytonadc00cb2011-05-20 23:38:13 +0000428 size_t
429 GetCurrentThreadIDs (std::vector<lldb::tid_t> &thread_ids,
430 bool &sequence_mutex_unavailable);
431
Greg Clayton2687cd12012-03-29 01:55:41 +0000432 bool
433 GetInterruptWasSent () const
434 {
435 return m_interrupt_sent;
436 }
Han Ming Ong4b6459f2013-01-18 23:11:53 +0000437
Greg Claytonfbb76342013-11-20 21:07:01 +0000438 lldb::user_id_t
Daniel Maleae0f8f572013-08-26 23:57:52 +0000439 OpenFile (const lldb_private::FileSpec& file_spec,
440 uint32_t flags,
441 mode_t mode,
442 lldb_private::Error &error);
443
Greg Claytonfbb76342013-11-20 21:07:01 +0000444 bool
Daniel Maleae0f8f572013-08-26 23:57:52 +0000445 CloseFile (lldb::user_id_t fd,
446 lldb_private::Error &error);
447
Greg Claytonfbb76342013-11-20 21:07:01 +0000448 lldb::user_id_t
Daniel Maleae0f8f572013-08-26 23:57:52 +0000449 GetFileSize (const lldb_private::FileSpec& file_spec);
450
Greg Claytonfbb76342013-11-20 21:07:01 +0000451 lldb_private::Error
452 GetFilePermissions(const char *path, uint32_t &file_permissions);
Daniel Maleae0f8f572013-08-26 23:57:52 +0000453
Greg Claytonfbb76342013-11-20 21:07:01 +0000454 lldb_private::Error
455 SetFilePermissions(const char *path, uint32_t file_permissions);
456
457 uint64_t
Daniel Maleae0f8f572013-08-26 23:57:52 +0000458 ReadFile (lldb::user_id_t fd,
459 uint64_t offset,
460 void *dst,
461 uint64_t dst_len,
462 lldb_private::Error &error);
463
Greg Claytonfbb76342013-11-20 21:07:01 +0000464 uint64_t
Daniel Maleae0f8f572013-08-26 23:57:52 +0000465 WriteFile (lldb::user_id_t fd,
466 uint64_t offset,
467 const void* src,
468 uint64_t src_len,
469 lldb_private::Error &error);
470
Greg Claytonfbb76342013-11-20 21:07:01 +0000471 lldb_private::Error
472 CreateSymlink (const char *src,
473 const char *dst);
Daniel Maleae0f8f572013-08-26 23:57:52 +0000474
Greg Claytonfbb76342013-11-20 21:07:01 +0000475 lldb_private::Error
476 Unlink (const char *path);
477
478 lldb_private::Error
479 MakeDirectory (const char *path,
480 uint32_t mode);
481
482 bool
Daniel Maleae0f8f572013-08-26 23:57:52 +0000483 GetFileExists (const lldb_private::FileSpec& file_spec);
484
Greg Claytonfbb76342013-11-20 21:07:01 +0000485 lldb_private::Error
Daniel Maleae0f8f572013-08-26 23:57:52 +0000486 RunShellCommand (const char *command, // Shouldn't be NULL
487 const char *working_dir, // Pass NULL to use the current working directory
488 int *status_ptr, // Pass NULL if you don't want the process exit status
489 int *signo_ptr, // Pass NULL if you don't want the signal that caused the process to exit
490 std::string *command_output, // Pass NULL if you don't want the command output
491 uint32_t timeout_sec); // Timeout in seconds to wait for shell program to finish
492
Greg Claytonfbb76342013-11-20 21:07:01 +0000493 bool
Daniel Maleae0f8f572013-08-26 23:57:52 +0000494 CalculateMD5 (const lldb_private::FileSpec& file_spec,
495 uint64_t &high,
496 uint64_t &low);
497
Han Ming Ong4b6459f2013-01-18 23:11:53 +0000498 std::string
499 HarmonizeThreadIdsForProfileData (ProcessGDBRemote *process,
500 StringExtractorGDBRemote &inputStringExtractor);
Daniel Maleae0f8f572013-08-26 23:57:52 +0000501
Greg Claytonf74cf862013-11-13 23:28:31 +0000502 bool
503 ReadRegister(lldb::tid_t tid,
504 uint32_t reg_num,
505 StringExtractorGDBRemote &response);
506
507 bool
508 ReadAllRegisters (lldb::tid_t tid,
509 StringExtractorGDBRemote &response);
510
511 bool
512 SaveRegisterState (lldb::tid_t tid, uint32_t &save_id);
513
514 bool
515 RestoreRegisterState (lldb::tid_t tid, uint32_t save_id);
Jason Molendaa3329782014-03-29 18:54:20 +0000516
517 const char *
518 GetGDBServerProgramName();
Greg Claytonf74cf862013-11-13 23:28:31 +0000519
Jason Molendaa3329782014-03-29 18:54:20 +0000520 uint32_t
521 GetGDBServerProgramVersion();
522
523 bool
524 AvoidGPackets(ProcessGDBRemote *process);
525
Jason Molenda705b1802014-06-13 02:37:02 +0000526 bool
527 GetThreadExtendedInfoSupported();
528
Greg Clayton576d8832011-03-22 04:00:09 +0000529protected:
530
Greg Clayton3dedae12013-12-06 21:45:27 +0000531 PacketResult
532 SendPacketAndWaitForResponseNoLock (const char *payload,
533 size_t payload_length,
534 StringExtractorGDBRemote &response);
535
Jason Molendaf17b5ac2012-12-19 02:54:03 +0000536 bool
537 GetCurrentProcessInfo ();
538
Jason Molendaa3329782014-03-29 18:54:20 +0000539 bool
540 GetGDBServerVersion();
541
Greg Clayton576d8832011-03-22 04:00:09 +0000542 //------------------------------------------------------------------
543 // Classes that inherit from GDBRemoteCommunicationClient can see and modify these
544 //------------------------------------------------------------------
Greg Claytone0d378b2011-03-24 21:19:54 +0000545 lldb_private::LazyBool m_supports_not_sending_acks;
546 lldb_private::LazyBool m_supports_thread_suffix;
Greg Clayton44633992012-04-10 03:22:03 +0000547 lldb_private::LazyBool m_supports_threads_in_stop_reply;
Greg Claytone0d378b2011-03-24 21:19:54 +0000548 lldb_private::LazyBool m_supports_vCont_all;
549 lldb_private::LazyBool m_supports_vCont_any;
550 lldb_private::LazyBool m_supports_vCont_c;
551 lldb_private::LazyBool m_supports_vCont_C;
552 lldb_private::LazyBool m_supports_vCont_s;
553 lldb_private::LazyBool m_supports_vCont_S;
Greg Clayton32e0a752011-03-30 18:16:51 +0000554 lldb_private::LazyBool m_qHostInfo_is_valid;
Todd Fiala9f72b3a2014-05-07 19:28:21 +0000555 lldb_private::LazyBool m_curr_pid_is_valid;
Jason Molendaf17b5ac2012-12-19 02:54:03 +0000556 lldb_private::LazyBool m_qProcessInfo_is_valid;
Jason Molendaa3329782014-03-29 18:54:20 +0000557 lldb_private::LazyBool m_qGDBServerVersion_is_valid;
Greg Clayton70b57652011-05-15 01:25:55 +0000558 lldb_private::LazyBool m_supports_alloc_dealloc_memory;
Greg Clayton46fb5582011-11-18 07:03:08 +0000559 lldb_private::LazyBool m_supports_memory_region_info;
Johnny Chen64637202012-05-23 21:09:52 +0000560 lldb_private::LazyBool m_supports_watchpoint_support_info;
Jim Inghamacff8952013-05-02 00:27:30 +0000561 lldb_private::LazyBool m_supports_detach_stay_stopped;
Enrico Granataf04a2192012-07-13 23:18:48 +0000562 lldb_private::LazyBool m_watchpoints_trigger_after_instruction;
Jim Inghamcd16df92012-07-20 21:37:13 +0000563 lldb_private::LazyBool m_attach_or_wait_reply;
Jim Ingham279ceec2012-07-25 21:12:43 +0000564 lldb_private::LazyBool m_prepare_for_reg_writing_reply;
Hafiz Abid Qadeer9a78cdf2013-08-29 09:09:45 +0000565 lldb_private::LazyBool m_supports_p;
Jason Molendabdc4f122014-05-06 02:59:39 +0000566 lldb_private::LazyBool m_supports_x;
Jason Molendaa3329782014-03-29 18:54:20 +0000567 lldb_private::LazyBool m_avoid_g_packets;
Greg Claytonf74cf862013-11-13 23:28:31 +0000568 lldb_private::LazyBool m_supports_QSaveRegisterState;
Steve Pucci03904ac2014-03-04 23:18:46 +0000569 lldb_private::LazyBool m_supports_qXfer_auxv_read;
Steve Pucci5ae54ae2014-01-25 05:46:51 +0000570 lldb_private::LazyBool m_supports_qXfer_libraries_read;
571 lldb_private::LazyBool m_supports_qXfer_libraries_svr4_read;
572 lldb_private::LazyBool m_supports_augmented_libraries_svr4_read;
Jason Molenda705b1802014-06-13 02:37:02 +0000573 lldb_private::LazyBool m_supports_jThreadExtendedInfo;
Steve Pucci5ae54ae2014-01-25 05:46:51 +0000574
Greg Clayton8b82f082011-04-12 05:54:46 +0000575 bool
576 m_supports_qProcessInfoPID:1,
577 m_supports_qfProcessInfo:1,
578 m_supports_qUserName:1,
579 m_supports_qGroupName:1,
580 m_supports_qThreadStopInfo:1,
581 m_supports_z0:1,
582 m_supports_z1:1,
583 m_supports_z2:1,
584 m_supports_z3:1,
Greg Clayton89600582013-10-10 17:53:50 +0000585 m_supports_z4:1,
586 m_supports_QEnvironment:1,
587 m_supports_QEnvironmentHexEncoded:1;
Greg Clayton2a48f522011-05-14 01:50:35 +0000588
Todd Fiala9f72b3a2014-05-07 19:28:21 +0000589 lldb::pid_t m_curr_pid;
Greg Clayton8b82f082011-04-12 05:54:46 +0000590 lldb::tid_t m_curr_tid; // Current gdb remote protocol thread index for all other operations
591 lldb::tid_t m_curr_tid_run; // Current gdb remote protocol thread index for continue, step, etc
592
Greg Clayton576d8832011-03-22 04:00:09 +0000593
Johnny Chen64637202012-05-23 21:09:52 +0000594 uint32_t m_num_supported_hardware_watchpoints;
595
Greg Clayton576d8832011-03-22 04:00:09 +0000596 // If we need to send a packet while the target is running, the m_async_XXX
597 // member variables take care of making this happen.
598 lldb_private::Mutex m_async_mutex;
599 lldb_private::Predicate<bool> m_async_packet_predicate;
600 std::string m_async_packet;
Jim Inghama6195b72013-12-18 01:24:33 +0000601 PacketResult m_async_result;
Greg Clayton576d8832011-03-22 04:00:09 +0000602 StringExtractorGDBRemote m_async_response;
603 int m_async_signal; // We were asked to deliver a signal to the inferior process.
Greg Clayton2687cd12012-03-29 01:55:41 +0000604 bool m_interrupt_sent;
Han Ming Ong4b6459f2013-01-18 23:11:53 +0000605 std::string m_partial_profile_data;
606 std::map<uint64_t, uint32_t> m_thread_id_to_used_usec_map;
Greg Clayton576d8832011-03-22 04:00:09 +0000607
Greg Claytond314e812011-03-23 00:09:55 +0000608 lldb_private::ArchSpec m_host_arch;
Jason Molendaf17b5ac2012-12-19 02:54:03 +0000609 lldb_private::ArchSpec m_process_arch;
Greg Clayton1cb64962011-03-24 04:28:38 +0000610 uint32_t m_os_version_major;
611 uint32_t m_os_version_minor;
612 uint32_t m_os_version_update;
613 std::string m_os_build;
614 std::string m_os_kernel;
615 std::string m_hostname;
Jason Molendaa3329782014-03-29 18:54:20 +0000616 std::string m_gdb_server_name; // from reply to qGDBServerVersion, empty if qGDBServerVersion is not supported
617 uint32_t m_gdb_server_version; // from reply to qGDBServerVersion, zero if qGDBServerVersion is not supported
Greg Clayton9ac6d2d2013-10-25 18:13:17 +0000618 uint32_t m_default_packet_timeout;
Steve Pucci5ae54ae2014-01-25 05:46:51 +0000619 uint64_t m_max_packet_size; // as returned by qSupported
Greg Clayton576d8832011-03-22 04:00:09 +0000620
Greg Clayton32e0a752011-03-30 18:16:51 +0000621 bool
622 DecodeProcessInfoResponse (StringExtractorGDBRemote &response,
Greg Clayton8b82f082011-04-12 05:54:46 +0000623 lldb_private::ProcessInstanceInfo &process_info);
Greg Clayton576d8832011-03-22 04:00:09 +0000624private:
625 //------------------------------------------------------------------
626 // For GDBRemoteCommunicationClient only
627 //------------------------------------------------------------------
628 DISALLOW_COPY_AND_ASSIGN (GDBRemoteCommunicationClient);
629};
630
631#endif // liblldb_GDBRemoteCommunicationClient_h_