2011-03-22 12:00:09 +08:00
|
|
|
//===-- GDBRemoteCommunicationClient.h --------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_GDBRemoteCommunicationClient_h_
|
|
|
|
#define liblldb_GDBRemoteCommunicationClient_h_
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
2011-05-21 07:38:13 +08:00
|
|
|
#include <vector>
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
|
|
|
#include "lldb/Core/ArchSpec.h"
|
2011-11-18 15:03:08 +08:00
|
|
|
#include "lldb/Target/Process.h"
|
2011-03-22 12:00:09 +08:00
|
|
|
|
|
|
|
#include "GDBRemoteCommunication.h"
|
|
|
|
|
2011-04-12 13:54:46 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
eBreakpointSoftware = 0,
|
|
|
|
eBreakpointHardware,
|
|
|
|
eWatchpointWrite,
|
|
|
|
eWatchpointRead,
|
|
|
|
eWatchpointReadWrite
|
|
|
|
} GDBStoppointType;
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
class GDBRemoteCommunicationClient : public GDBRemoteCommunication
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
// Constructors and Destructors
|
|
|
|
//------------------------------------------------------------------
|
2011-04-12 13:54:46 +08:00
|
|
|
GDBRemoteCommunicationClient(bool is_platform);
|
2011-03-22 12:00:09 +08:00
|
|
|
|
|
|
|
virtual
|
|
|
|
~GDBRemoteCommunicationClient();
|
|
|
|
|
2011-03-24 12:28:38 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
// After connecting, send the handshake to the server to make sure
|
|
|
|
// we are communicating with it.
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
bool
|
|
|
|
HandshakeWithServer (lldb_private::Error *error_ptr);
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
size_t
|
|
|
|
SendPacketAndWaitForResponse (const char *send_payload,
|
|
|
|
StringExtractorGDBRemote &response,
|
|
|
|
bool send_async);
|
|
|
|
|
|
|
|
size_t
|
|
|
|
SendPacketAndWaitForResponse (const char *send_payload,
|
|
|
|
size_t send_length,
|
|
|
|
StringExtractorGDBRemote &response,
|
|
|
|
bool send_async);
|
|
|
|
|
|
|
|
lldb::StateType
|
|
|
|
SendContinuePacketAndWaitForResponse (ProcessGDBRemote *process,
|
|
|
|
const char *packet_payload,
|
|
|
|
size_t packet_length,
|
|
|
|
StringExtractorGDBRemote &response);
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
GetThreadSuffixSupported ();
|
|
|
|
|
2011-03-24 12:28:38 +08:00
|
|
|
void
|
|
|
|
QueryNoAckModeSupported ();
|
2011-03-22 12:00:09 +08:00
|
|
|
|
2012-04-10 11:22:03 +08:00
|
|
|
void
|
|
|
|
GetListThreadsInStopReplySupported ();
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
bool
|
|
|
|
SendAsyncSignal (int signo);
|
|
|
|
|
|
|
|
bool
|
|
|
|
SendInterrupt (lldb_private::Mutex::Locker &locker,
|
|
|
|
uint32_t seconds_to_wait_for_stop,
|
|
|
|
bool &timed_out);
|
|
|
|
|
|
|
|
lldb::pid_t
|
|
|
|
GetCurrentProcessID ();
|
|
|
|
|
|
|
|
bool
|
|
|
|
GetLaunchSuccess (std::string &error_str);
|
|
|
|
|
2011-04-12 13:54:46 +08:00
|
|
|
uint16_t
|
2013-08-27 07:57:52 +08:00
|
|
|
LaunchGDBserverAndGetPort (lldb::pid_t &pid);
|
|
|
|
|
|
|
|
bool
|
|
|
|
KillSpawnedProcess (lldb::pid_t pid);
|
2011-04-12 13:54:46 +08:00
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
/// Sends a GDB remote protocol 'A' packet that delivers program
|
|
|
|
/// arguments to the remote server.
|
|
|
|
///
|
|
|
|
/// @param[in] argv
|
|
|
|
/// A NULL terminated array of const C strings to use as the
|
|
|
|
/// arguments.
|
|
|
|
///
|
|
|
|
/// @return
|
|
|
|
/// Zero if the response was "OK", a positive value if the
|
|
|
|
/// the response was "Exx" where xx are two hex digits, or
|
|
|
|
/// -1 if the call is unsupported or any other unexpected
|
|
|
|
/// response was received.
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
SendArgumentsPacket (char const *argv[]);
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
/// Sends a "QEnvironment:NAME=VALUE" packet that will build up the
|
|
|
|
/// environment that will get used when launching an application
|
|
|
|
/// in conjunction with the 'A' packet. This function can be called
|
|
|
|
/// multiple times in a row in order to pass on the desired
|
|
|
|
/// environment that the inferior should be launched with.
|
|
|
|
///
|
|
|
|
/// @param[in] name_equal_value
|
|
|
|
/// A NULL terminated C string that contains a single environment
|
|
|
|
/// in the format "NAME=VALUE".
|
|
|
|
///
|
|
|
|
/// @return
|
|
|
|
/// Zero if the response was "OK", a positive value if the
|
|
|
|
/// the response was "Exx" where xx are two hex digits, or
|
|
|
|
/// -1 if the call is unsupported or any other unexpected
|
|
|
|
/// response was received.
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
SendEnvironmentPacket (char const *name_equal_value);
|
|
|
|
|
2011-05-08 12:53:50 +08:00
|
|
|
int
|
|
|
|
SendLaunchArchPacket (const char *arch);
|
2011-03-22 12:00:09 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
/// Sends a "vAttach:PID" where PID is in hex.
|
|
|
|
///
|
|
|
|
/// @param[in] pid
|
|
|
|
/// A process ID for the remote gdb server to attach to.
|
|
|
|
///
|
|
|
|
/// @param[out] response
|
|
|
|
/// The response received from the gdb server. If the return
|
|
|
|
/// value is zero, \a response will contain a stop reply
|
|
|
|
/// packet.
|
|
|
|
///
|
|
|
|
/// @return
|
|
|
|
/// Zero if the attach was successful, or an error indicating
|
|
|
|
/// an error code.
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
SendAttach (lldb::pid_t pid,
|
|
|
|
StringExtractorGDBRemote& response);
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
/// Sets the path to use for stdin/out/err for a process
|
|
|
|
/// that will be launched with the 'A' packet.
|
|
|
|
///
|
|
|
|
/// @param[in] path
|
|
|
|
/// The path to use for stdin/out/err
|
|
|
|
///
|
|
|
|
/// @return
|
|
|
|
/// Zero if the for success, or an error code for failure.
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
SetSTDIN (char const *path);
|
|
|
|
int
|
|
|
|
SetSTDOUT (char const *path);
|
|
|
|
int
|
|
|
|
SetSTDERR (char const *path);
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
/// Sets the disable ASLR flag to \a enable for a process that will
|
|
|
|
/// be launched with the 'A' packet.
|
|
|
|
///
|
|
|
|
/// @param[in] enable
|
|
|
|
/// A boolean value indicating wether to disable ASLR or not.
|
|
|
|
///
|
|
|
|
/// @return
|
|
|
|
/// Zero if the for success, or an error code for failure.
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
SetDisableASLR (bool enable);
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
/// Sets the working directory to \a path for a process that will
|
|
|
|
/// be launched with the 'A' packet.
|
|
|
|
///
|
|
|
|
/// @param[in] path
|
|
|
|
/// The path to a directory to use when launching our processs
|
|
|
|
///
|
|
|
|
/// @return
|
|
|
|
/// Zero if the for success, or an error code for failure.
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
SetWorkingDir (char const *path);
|
|
|
|
|
|
|
|
lldb::addr_t
|
|
|
|
AllocateMemory (size_t size, uint32_t permissions);
|
|
|
|
|
|
|
|
bool
|
|
|
|
DeallocateMemory (lldb::addr_t addr);
|
|
|
|
|
2013-05-02 08:27:30 +08:00
|
|
|
lldb_private::Error
|
|
|
|
Detach (bool keep_stopped);
|
2012-04-11 08:24:49 +08:00
|
|
|
|
2011-11-18 15:03:08 +08:00
|
|
|
lldb_private::Error
|
|
|
|
GetMemoryRegionInfo (lldb::addr_t addr,
|
|
|
|
lldb_private::MemoryRegionInfo &range_info);
|
|
|
|
|
2012-05-24 05:09:52 +08:00
|
|
|
lldb_private::Error
|
|
|
|
GetWatchpointSupportInfo (uint32_t &num);
|
|
|
|
|
2012-07-14 07:18:48 +08:00
|
|
|
lldb_private::Error
|
|
|
|
GetWatchpointSupportInfo (uint32_t &num, bool& after);
|
|
|
|
|
|
|
|
lldb_private::Error
|
|
|
|
GetWatchpointsTriggerAfterInstruction (bool &after);
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
const lldb_private::ArchSpec &
|
|
|
|
GetHostArchitecture ();
|
2012-12-19 10:54:03 +08:00
|
|
|
|
|
|
|
const lldb_private::ArchSpec &
|
|
|
|
GetProcessArchitecture ();
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
bool
|
|
|
|
GetVContSupported (char flavor);
|
|
|
|
|
2013-08-29 17:09:45 +08:00
|
|
|
bool
|
2013-09-05 07:24:15 +08:00
|
|
|
GetpPacketSupported (lldb::tid_t tid);
|
2013-08-29 17:09:45 +08:00
|
|
|
|
2012-07-21 05:37:13 +08:00
|
|
|
bool
|
|
|
|
GetVAttachOrWaitSupported ();
|
|
|
|
|
2012-07-26 05:12:43 +08:00
|
|
|
bool
|
|
|
|
GetSyncThreadStateSupported();
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
void
|
|
|
|
ResetDiscoverableSettings();
|
|
|
|
|
|
|
|
bool
|
2011-04-05 02:18:57 +08:00
|
|
|
GetHostInfo (bool force = false);
|
2011-03-22 12:00:09 +08:00
|
|
|
|
2011-03-24 12:28:38 +08:00
|
|
|
bool
|
|
|
|
GetOSVersion (uint32_t &major,
|
|
|
|
uint32_t &minor,
|
|
|
|
uint32_t &update);
|
|
|
|
|
|
|
|
bool
|
|
|
|
GetOSBuildString (std::string &s);
|
|
|
|
|
|
|
|
bool
|
|
|
|
GetOSKernelDescription (std::string &s);
|
|
|
|
|
|
|
|
lldb_private::ArchSpec
|
|
|
|
GetSystemArchitecture ();
|
|
|
|
|
|
|
|
bool
|
|
|
|
GetHostname (std::string &s);
|
|
|
|
|
2012-04-11 08:24:49 +08:00
|
|
|
lldb::addr_t
|
|
|
|
GetShlibInfoAddr();
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
bool
|
|
|
|
GetSupportsThreadSuffix ();
|
|
|
|
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
bool
|
|
|
|
GetProcessInfo (lldb::pid_t pid,
|
2011-04-12 13:54:46 +08:00
|
|
|
lldb_private::ProcessInstanceInfo &process_info);
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
|
|
|
|
uint32_t
|
2011-04-12 13:54:46 +08:00
|
|
|
FindProcesses (const lldb_private::ProcessInstanceInfoMatch &process_match_info,
|
|
|
|
lldb_private::ProcessInstanceInfoList &process_infos);
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
|
|
|
|
bool
|
|
|
|
GetUserName (uint32_t uid, std::string &name);
|
|
|
|
|
|
|
|
bool
|
|
|
|
GetGroupName (uint32_t gid, std::string &name);
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
bool
|
|
|
|
HasFullVContSupport ()
|
|
|
|
{
|
|
|
|
return GetVContSupported ('A');
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
HasAnyVContSupport ()
|
|
|
|
{
|
|
|
|
return GetVContSupported ('a');
|
|
|
|
}
|
|
|
|
|
2011-04-12 13:54:46 +08:00
|
|
|
bool
|
|
|
|
GetStopReply (StringExtractorGDBRemote &response);
|
|
|
|
|
|
|
|
bool
|
2012-10-13 10:11:55 +08:00
|
|
|
GetThreadStopInfo (lldb::tid_t tid,
|
2011-04-12 13:54:46 +08:00
|
|
|
StringExtractorGDBRemote &response);
|
|
|
|
|
|
|
|
bool
|
|
|
|
SupportsGDBStoppointPacket (GDBStoppointType type)
|
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case eBreakpointSoftware: return m_supports_z0;
|
|
|
|
case eBreakpointHardware: return m_supports_z1;
|
|
|
|
case eWatchpointWrite: return m_supports_z2;
|
|
|
|
case eWatchpointRead: return m_supports_z3;
|
|
|
|
case eWatchpointReadWrite: return m_supports_z4;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
uint8_t
|
|
|
|
SendGDBStoppointTypePacket (GDBStoppointType type, // Type of breakpoint or watchpoint
|
|
|
|
bool insert, // Insert or remove?
|
|
|
|
lldb::addr_t addr, // Address of breakpoint or watchpoint
|
|
|
|
uint32_t length); // Byte Size of breakpoint or watchpoint
|
|
|
|
|
2011-04-05 02:18:57 +08:00
|
|
|
void
|
|
|
|
TestPacketSpeed (const uint32_t num_packets);
|
|
|
|
|
|
|
|
// This packet is for testing the speed of the interface only. Both
|
|
|
|
// the client and server need to support it, but this allows us to
|
|
|
|
// measure the packet speed without any other work being done on the
|
|
|
|
// other end and avoids any of that work affecting the packet send
|
|
|
|
// and response times.
|
|
|
|
bool
|
|
|
|
SendSpeedTestPacket (uint32_t send_size,
|
|
|
|
uint32_t recv_size);
|
2011-04-12 13:54:46 +08:00
|
|
|
|
|
|
|
bool
|
2013-02-23 10:04:45 +08:00
|
|
|
SetCurrentThread (uint64_t tid);
|
2011-04-12 13:54:46 +08:00
|
|
|
|
|
|
|
bool
|
2013-02-23 10:04:45 +08:00
|
|
|
SetCurrentThreadForRun (uint64_t tid);
|
2011-04-12 13:54:46 +08:00
|
|
|
|
2011-05-14 09:50:35 +08:00
|
|
|
lldb_private::LazyBool
|
2012-04-07 08:00:41 +08:00
|
|
|
SupportsAllocDeallocMemory () // const
|
2011-05-14 09:50:35 +08:00
|
|
|
{
|
2012-04-07 08:00:41 +08:00
|
|
|
// Uncomment this to have lldb pretend the debug server doesn't respond to alloc/dealloc memory packets.
|
|
|
|
// m_supports_alloc_dealloc_memory = lldb_private::eLazyBoolNo;
|
2011-05-15 09:25:55 +08:00
|
|
|
return m_supports_alloc_dealloc_memory;
|
2011-05-14 09:50:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-21 07:38:13 +08:00
|
|
|
size_t
|
|
|
|
GetCurrentThreadIDs (std::vector<lldb::tid_t> &thread_ids,
|
|
|
|
bool &sequence_mutex_unavailable);
|
|
|
|
|
2012-03-29 09:55:41 +08:00
|
|
|
bool
|
|
|
|
GetInterruptWasSent () const
|
|
|
|
{
|
|
|
|
return m_interrupt_sent;
|
|
|
|
}
|
2013-01-19 07:11:53 +08:00
|
|
|
|
2013-08-27 07:57:52 +08:00
|
|
|
virtual lldb::user_id_t
|
|
|
|
OpenFile (const lldb_private::FileSpec& file_spec,
|
|
|
|
uint32_t flags,
|
|
|
|
mode_t mode,
|
|
|
|
lldb_private::Error &error);
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
CloseFile (lldb::user_id_t fd,
|
|
|
|
lldb_private::Error &error);
|
|
|
|
|
|
|
|
virtual lldb::user_id_t
|
|
|
|
GetFileSize (const lldb_private::FileSpec& file_spec);
|
|
|
|
|
|
|
|
virtual uint32_t
|
|
|
|
GetFilePermissions(const lldb_private::FileSpec& file_spec,
|
|
|
|
lldb_private::Error &error);
|
|
|
|
|
|
|
|
virtual uint64_t
|
|
|
|
ReadFile (lldb::user_id_t fd,
|
|
|
|
uint64_t offset,
|
|
|
|
void *dst,
|
|
|
|
uint64_t dst_len,
|
|
|
|
lldb_private::Error &error);
|
|
|
|
|
|
|
|
virtual uint64_t
|
|
|
|
WriteFile (lldb::user_id_t fd,
|
|
|
|
uint64_t offset,
|
|
|
|
const void* src,
|
|
|
|
uint64_t src_len,
|
|
|
|
lldb_private::Error &error);
|
|
|
|
|
|
|
|
virtual uint32_t
|
|
|
|
MakeDirectory (const std::string &path,
|
|
|
|
mode_t mode);
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
GetFileExists (const lldb_private::FileSpec& file_spec);
|
|
|
|
|
|
|
|
virtual lldb_private::Error
|
|
|
|
RunShellCommand (const char *command, // Shouldn't be NULL
|
|
|
|
const char *working_dir, // Pass NULL to use the current working directory
|
|
|
|
int *status_ptr, // Pass NULL if you don't want the process exit status
|
|
|
|
int *signo_ptr, // Pass NULL if you don't want the signal that caused the process to exit
|
|
|
|
std::string *command_output, // Pass NULL if you don't want the command output
|
|
|
|
uint32_t timeout_sec); // Timeout in seconds to wait for shell program to finish
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
CalculateMD5 (const lldb_private::FileSpec& file_spec,
|
|
|
|
uint64_t &high,
|
|
|
|
uint64_t &low);
|
|
|
|
|
2013-01-19 07:11:53 +08:00
|
|
|
std::string
|
|
|
|
HarmonizeThreadIdsForProfileData (ProcessGDBRemote *process,
|
|
|
|
StringExtractorGDBRemote &inputStringExtractor);
|
2013-08-27 07:57:52 +08:00
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
protected:
|
|
|
|
|
2012-12-19 10:54:03 +08:00
|
|
|
bool
|
|
|
|
GetCurrentProcessInfo ();
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
// Classes that inherit from GDBRemoteCommunicationClient can see and modify these
|
|
|
|
//------------------------------------------------------------------
|
2011-03-25 05:19:54 +08:00
|
|
|
lldb_private::LazyBool m_supports_not_sending_acks;
|
|
|
|
lldb_private::LazyBool m_supports_thread_suffix;
|
2012-04-10 11:22:03 +08:00
|
|
|
lldb_private::LazyBool m_supports_threads_in_stop_reply;
|
2011-03-25 05:19:54 +08:00
|
|
|
lldb_private::LazyBool m_supports_vCont_all;
|
|
|
|
lldb_private::LazyBool m_supports_vCont_any;
|
|
|
|
lldb_private::LazyBool m_supports_vCont_c;
|
|
|
|
lldb_private::LazyBool m_supports_vCont_C;
|
|
|
|
lldb_private::LazyBool m_supports_vCont_s;
|
|
|
|
lldb_private::LazyBool m_supports_vCont_S;
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
lldb_private::LazyBool m_qHostInfo_is_valid;
|
2012-12-19 10:54:03 +08:00
|
|
|
lldb_private::LazyBool m_qProcessInfo_is_valid;
|
2011-05-15 09:25:55 +08:00
|
|
|
lldb_private::LazyBool m_supports_alloc_dealloc_memory;
|
2011-11-18 15:03:08 +08:00
|
|
|
lldb_private::LazyBool m_supports_memory_region_info;
|
2012-05-24 05:09:52 +08:00
|
|
|
lldb_private::LazyBool m_supports_watchpoint_support_info;
|
2013-05-02 08:27:30 +08:00
|
|
|
lldb_private::LazyBool m_supports_detach_stay_stopped;
|
2012-07-14 07:18:48 +08:00
|
|
|
lldb_private::LazyBool m_watchpoints_trigger_after_instruction;
|
2012-07-21 05:37:13 +08:00
|
|
|
lldb_private::LazyBool m_attach_or_wait_reply;
|
2012-07-26 05:12:43 +08:00
|
|
|
lldb_private::LazyBool m_prepare_for_reg_writing_reply;
|
2013-08-29 17:09:45 +08:00
|
|
|
lldb_private::LazyBool m_supports_p;
|
2012-07-21 05:37:13 +08:00
|
|
|
|
2011-04-12 13:54:46 +08:00
|
|
|
bool
|
|
|
|
m_supports_qProcessInfoPID:1,
|
|
|
|
m_supports_qfProcessInfo:1,
|
|
|
|
m_supports_qUserName:1,
|
|
|
|
m_supports_qGroupName:1,
|
|
|
|
m_supports_qThreadStopInfo:1,
|
|
|
|
m_supports_z0:1,
|
|
|
|
m_supports_z1:1,
|
|
|
|
m_supports_z2:1,
|
|
|
|
m_supports_z3:1,
|
2013-10-11 01:53:50 +08:00
|
|
|
m_supports_z4:1,
|
|
|
|
m_supports_QEnvironment:1,
|
|
|
|
m_supports_QEnvironmentHexEncoded:1;
|
2011-05-14 09:50:35 +08:00
|
|
|
|
2011-04-12 13:54:46 +08:00
|
|
|
|
|
|
|
lldb::tid_t m_curr_tid; // Current gdb remote protocol thread index for all other operations
|
|
|
|
lldb::tid_t m_curr_tid_run; // Current gdb remote protocol thread index for continue, step, etc
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
|
2012-05-24 05:09:52 +08:00
|
|
|
uint32_t m_num_supported_hardware_watchpoints;
|
|
|
|
|
2011-03-22 12:00:09 +08:00
|
|
|
// If we need to send a packet while the target is running, the m_async_XXX
|
|
|
|
// member variables take care of making this happen.
|
|
|
|
lldb_private::Mutex m_async_mutex;
|
|
|
|
lldb_private::Predicate<bool> m_async_packet_predicate;
|
|
|
|
std::string m_async_packet;
|
|
|
|
StringExtractorGDBRemote m_async_response;
|
|
|
|
int m_async_signal; // We were asked to deliver a signal to the inferior process.
|
2012-03-29 09:55:41 +08:00
|
|
|
bool m_interrupt_sent;
|
2013-01-19 07:11:53 +08:00
|
|
|
std::string m_partial_profile_data;
|
|
|
|
std::map<uint64_t, uint32_t> m_thread_id_to_used_usec_map;
|
2011-03-22 12:00:09 +08:00
|
|
|
|
2011-03-23 08:09:55 +08:00
|
|
|
lldb_private::ArchSpec m_host_arch;
|
2012-12-19 10:54:03 +08:00
|
|
|
lldb_private::ArchSpec m_process_arch;
|
2011-03-24 12:28:38 +08:00
|
|
|
uint32_t m_os_version_major;
|
|
|
|
uint32_t m_os_version_minor;
|
|
|
|
uint32_t m_os_version_update;
|
|
|
|
std::string m_os_build;
|
|
|
|
std::string m_os_kernel;
|
|
|
|
std::string m_hostname;
|
2011-03-22 12:00:09 +08:00
|
|
|
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
bool
|
|
|
|
DecodeProcessInfoResponse (StringExtractorGDBRemote &response,
|
2011-04-12 13:54:46 +08:00
|
|
|
lldb_private::ProcessInstanceInfo &process_info);
|
2011-03-22 12:00:09 +08:00
|
|
|
private:
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
// For GDBRemoteCommunicationClient only
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
DISALLOW_COPY_AND_ASSIGN (GDBRemoteCommunicationClient);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // liblldb_GDBRemoteCommunicationClient_h_
|