<rdar://problem/13723772> Modified the lldb_private::Thread to work much better with the OperatingSystem plug-ins. Operating system plug-ins can now return have a "core" key/value pair in each thread dictionary for the OperatingSystemPython plug-ins which allows the core threads to be contained with memory threads. It also allows these memory threads to be stepped, resumed, and controlled just as if they were the actual backing threads themselves. A few things are introduced: - lldb_private::Thread now has a GetProtocolID() method which returns the thread protocol ID for a given thread. The protocol ID (Thread::GetProtocolID()) is usually the same as the thread id (Thread::GetID()), but it can differ when a memory thread has its own id, but is backed by an actual API thread. - Cleaned up the Thread::WillResume() code to do the mandatory parts in Thread::ShouldResume(), and let the thread subclasses override the Thread::WillResume() which is now just a notification. - Cleaned up ClearStackFrames() implementations so that fewer thread subclasses needed to override them - Changed the POSIXThread class a bit since it overrode Thread::WillResume(). It is doing the wrong thing by calling "Thread::SetResumeState()" on its own, this shouldn't be done by thread subclasses, but the current code might rely on it so I left it in with a TODO comment with an explanation. llvm-svn: 180886
426 lines
16 KiB
C++
426 lines
16 KiB
C++
//===-- OperatingSystemPython.cpp --------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/lldb-python.h"
|
|
|
|
#ifndef LLDB_DISABLE_PYTHON
|
|
|
|
#include "OperatingSystemPython.h"
|
|
// C Includes
|
|
// C++ Includes
|
|
// Other libraries and framework includes
|
|
#include "lldb/Core/ArchSpec.h"
|
|
#include "lldb/Core/DataBufferHeap.h"
|
|
#include "lldb/Core/Debugger.h"
|
|
#include "lldb/Core/Module.h"
|
|
#include "lldb/Core/PluginManager.h"
|
|
#include "lldb/Core/RegisterValue.h"
|
|
#include "lldb/Core/ValueObjectVariable.h"
|
|
#include "lldb/Interpreter/CommandInterpreter.h"
|
|
#include "lldb/Interpreter/PythonDataObjects.h"
|
|
#include "lldb/Symbol/ClangNamespaceDecl.h"
|
|
#include "lldb/Symbol/ObjectFile.h"
|
|
#include "lldb/Symbol/VariableList.h"
|
|
#include "lldb/Target/Process.h"
|
|
#include "lldb/Target/StopInfo.h"
|
|
#include "lldb/Target/Target.h"
|
|
#include "lldb/Target/ThreadList.h"
|
|
#include "lldb/Target/Thread.h"
|
|
#include "Plugins/Process/Utility/DynamicRegisterInfo.h"
|
|
#include "Plugins/Process/Utility/RegisterContextDummy.h"
|
|
#include "Plugins/Process/Utility/RegisterContextMemory.h"
|
|
#include "Plugins/Process/Utility/ThreadMemory.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
void
|
|
OperatingSystemPython::Initialize()
|
|
{
|
|
PluginManager::RegisterPlugin (GetPluginNameStatic(),
|
|
GetPluginDescriptionStatic(),
|
|
CreateInstance);
|
|
}
|
|
|
|
void
|
|
OperatingSystemPython::Terminate()
|
|
{
|
|
PluginManager::UnregisterPlugin (CreateInstance);
|
|
}
|
|
|
|
OperatingSystem *
|
|
OperatingSystemPython::CreateInstance (Process *process, bool force)
|
|
{
|
|
// Python OperatingSystem plug-ins must be requested by name, so force must be true
|
|
FileSpec python_os_plugin_spec (process->GetPythonOSPluginPath());
|
|
if (python_os_plugin_spec && python_os_plugin_spec.Exists())
|
|
{
|
|
std::unique_ptr<OperatingSystemPython> os_ap (new OperatingSystemPython (process, python_os_plugin_spec));
|
|
if (os_ap.get() && os_ap->IsValid())
|
|
return os_ap.release();
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
const char *
|
|
OperatingSystemPython::GetPluginNameStatic()
|
|
{
|
|
return "python";
|
|
}
|
|
|
|
const char *
|
|
OperatingSystemPython::GetPluginDescriptionStatic()
|
|
{
|
|
return "Operating system plug-in that gathers OS information from a python class that implements the necessary OperatingSystem functionality.";
|
|
}
|
|
|
|
|
|
OperatingSystemPython::OperatingSystemPython (lldb_private::Process *process, const FileSpec &python_module_path) :
|
|
OperatingSystem (process),
|
|
m_thread_list_valobj_sp (),
|
|
m_register_info_ap (),
|
|
m_interpreter (NULL),
|
|
m_python_object_sp ()
|
|
{
|
|
if (!process)
|
|
return;
|
|
TargetSP target_sp = process->CalculateTarget();
|
|
if (!target_sp)
|
|
return;
|
|
m_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter();
|
|
if (m_interpreter)
|
|
{
|
|
|
|
std::string os_plugin_class_name (python_module_path.GetFilename().AsCString(""));
|
|
if (!os_plugin_class_name.empty())
|
|
{
|
|
const bool init_session = false;
|
|
const bool allow_reload = true;
|
|
char python_module_path_cstr[PATH_MAX];
|
|
python_module_path.GetPath(python_module_path_cstr, sizeof(python_module_path_cstr));
|
|
Error error;
|
|
if (m_interpreter->LoadScriptingModule (python_module_path_cstr, allow_reload, init_session, error))
|
|
{
|
|
// Strip the ".py" extension if there is one
|
|
size_t py_extension_pos = os_plugin_class_name.rfind(".py");
|
|
if (py_extension_pos != std::string::npos)
|
|
os_plugin_class_name.erase (py_extension_pos);
|
|
// Add ".OperatingSystemPlugIn" to the module name to get a string like "modulename.OperatingSystemPlugIn"
|
|
os_plugin_class_name += ".OperatingSystemPlugIn";
|
|
ScriptInterpreterObjectSP object_sp = m_interpreter->OSPlugin_CreatePluginObject(os_plugin_class_name.c_str(), process->CalculateProcess());
|
|
if (object_sp && object_sp->GetObject())
|
|
m_python_object_sp = object_sp;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
OperatingSystemPython::~OperatingSystemPython ()
|
|
{
|
|
}
|
|
|
|
DynamicRegisterInfo *
|
|
OperatingSystemPython::GetDynamicRegisterInfo ()
|
|
{
|
|
if (m_register_info_ap.get() == NULL)
|
|
{
|
|
if (!m_interpreter || !m_python_object_sp)
|
|
return NULL;
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
|
|
|
|
if (log)
|
|
log->Printf ("OperatingSystemPython::GetDynamicRegisterInfo() fetching thread register definitions from python for pid %" PRIu64, m_process->GetID());
|
|
|
|
PythonDictionary dictionary(m_interpreter->OSPlugin_RegisterInfo(m_python_object_sp));
|
|
if (!dictionary)
|
|
return NULL;
|
|
|
|
m_register_info_ap.reset (new DynamicRegisterInfo (dictionary));
|
|
assert (m_register_info_ap->GetNumRegisters() > 0);
|
|
assert (m_register_info_ap->GetNumRegisterSets() > 0);
|
|
}
|
|
return m_register_info_ap.get();
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
// PluginInterface protocol
|
|
//------------------------------------------------------------------
|
|
const char *
|
|
OperatingSystemPython::GetPluginName()
|
|
{
|
|
return "OperatingSystemPython";
|
|
}
|
|
|
|
const char *
|
|
OperatingSystemPython::GetShortPluginName()
|
|
{
|
|
return GetPluginNameStatic();
|
|
}
|
|
|
|
uint32_t
|
|
OperatingSystemPython::GetPluginVersion()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
bool
|
|
OperatingSystemPython::UpdateThreadList (ThreadList &old_thread_list, ThreadList &new_thread_list)
|
|
{
|
|
if (!m_interpreter || !m_python_object_sp)
|
|
return false;
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
|
|
|
|
// First thing we have to do is get the API lock, and the run lock. We're going to change the thread
|
|
// content of the process, and we're going to use python, which requires the API lock to do it.
|
|
// So get & hold that. This is a recursive lock so we can grant it to any Python code called on the stack below us.
|
|
Target &target = m_process->GetTarget();
|
|
Mutex::Locker api_locker (target.GetAPIMutex());
|
|
|
|
if (log)
|
|
log->Printf ("OperatingSystemPython::UpdateThreadList() fetching thread data from python for pid %" PRIu64, m_process->GetID());
|
|
|
|
// The threads that are in "new_thread_list" upon entry are the threads from the
|
|
// lldb_private::Process subclass, no memory threads will be in this list.
|
|
|
|
auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure threads_list stays alive
|
|
PythonList threads_list(m_interpreter->OSPlugin_ThreadsInfo(m_python_object_sp));
|
|
if (threads_list)
|
|
{
|
|
ThreadList core_thread_list(new_thread_list);
|
|
|
|
uint32_t i;
|
|
const uint32_t num_threads = threads_list.GetSize();
|
|
for (i=0; i<num_threads; ++i)
|
|
{
|
|
PythonDictionary thread_dict(threads_list.GetItemAtIndex(i));
|
|
if (thread_dict)
|
|
{
|
|
if (thread_dict.GetItemForKey("core"))
|
|
{
|
|
// We have some threads that are saying they are on a "core", which means
|
|
// they map the threads that are gotten from the lldb_private::Process subclass
|
|
// so clear the new threads list so the core threads don't show up
|
|
new_thread_list.Clear();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
for (i=0; i<num_threads; ++i)
|
|
{
|
|
PythonDictionary thread_dict(threads_list.GetItemAtIndex(i));
|
|
if (thread_dict)
|
|
{
|
|
ThreadSP thread_sp (CreateThreadFromThreadInfo (thread_dict, core_thread_list, old_thread_list, NULL));
|
|
if (thread_sp)
|
|
new_thread_list.AddThread(thread_sp);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
new_thread_list = old_thread_list;
|
|
}
|
|
return new_thread_list.GetSize(false) > 0;
|
|
}
|
|
|
|
ThreadSP
|
|
OperatingSystemPython::CreateThreadFromThreadInfo (PythonDictionary &thread_dict,
|
|
ThreadList &core_thread_list,
|
|
ThreadList &old_thread_list,
|
|
bool *did_create_ptr)
|
|
{
|
|
ThreadSP thread_sp;
|
|
if (thread_dict)
|
|
{
|
|
PythonString tid_pystr("tid");
|
|
const tid_t tid = thread_dict.GetItemForKeyAsInteger (tid_pystr, LLDB_INVALID_THREAD_ID);
|
|
if (tid != LLDB_INVALID_THREAD_ID)
|
|
{
|
|
PythonString core_pystr("core");
|
|
PythonString name_pystr("name");
|
|
PythonString queue_pystr("queue");
|
|
//PythonString state_pystr("state");
|
|
//PythonString stop_reason_pystr("stop_reason");
|
|
PythonString reg_data_addr_pystr ("register_data_addr");
|
|
|
|
const uint32_t core_number = thread_dict.GetItemForKeyAsInteger (core_pystr, UINT32_MAX);
|
|
const addr_t reg_data_addr = thread_dict.GetItemForKeyAsInteger (reg_data_addr_pystr, LLDB_INVALID_ADDRESS);
|
|
const char *name = thread_dict.GetItemForKeyAsString (name_pystr);
|
|
const char *queue = thread_dict.GetItemForKeyAsString (queue_pystr);
|
|
//const char *state = thread_dict.GetItemForKeyAsString (state_pystr);
|
|
//const char *stop_reason = thread_dict.GetItemForKeyAsString (stop_reason_pystr);
|
|
|
|
// See if a thread already exists for "tid"
|
|
thread_sp = old_thread_list.FindThreadByID (tid, false);
|
|
if (thread_sp)
|
|
{
|
|
// A thread already does exist for "tid", make sure it was an operating system
|
|
// plug-in generated thread.
|
|
if (!IsOperatingSystemPluginThread(thread_sp))
|
|
{
|
|
// We have thread ID overlap between the protocol threads and the
|
|
// operating system threads, clear the thread so we create an
|
|
// operating system thread for this.
|
|
thread_sp.reset();
|
|
}
|
|
}
|
|
|
|
if (!thread_sp)
|
|
{
|
|
if (did_create_ptr)
|
|
*did_create_ptr = true;
|
|
thread_sp.reset (new ThreadMemory (*m_process,
|
|
tid,
|
|
name,
|
|
queue,
|
|
reg_data_addr));
|
|
|
|
}
|
|
|
|
if (core_number < core_thread_list.GetSize(false))
|
|
{
|
|
ThreadSP core_thread_sp (core_thread_list.GetThreadAtIndex(core_number, false));
|
|
if (core_thread_sp)
|
|
{
|
|
ThreadSP backing_core_thread_sp (core_thread_sp->GetBackingThread());
|
|
if (backing_core_thread_sp)
|
|
{
|
|
thread_sp->SetBackingThread(backing_core_thread_sp);
|
|
}
|
|
else
|
|
{
|
|
thread_sp->SetBackingThread(core_thread_sp);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return thread_sp;
|
|
}
|
|
|
|
|
|
|
|
void
|
|
OperatingSystemPython::ThreadWasSelected (Thread *thread)
|
|
{
|
|
}
|
|
|
|
RegisterContextSP
|
|
OperatingSystemPython::CreateRegisterContextForThread (Thread *thread, addr_t reg_data_addr)
|
|
{
|
|
RegisterContextSP reg_ctx_sp;
|
|
if (!m_interpreter || !m_python_object_sp || !thread)
|
|
return reg_ctx_sp;
|
|
|
|
if (!IsOperatingSystemPluginThread(thread->shared_from_this()))
|
|
return reg_ctx_sp;
|
|
|
|
// First thing we have to do is get the API lock, and the run lock. We're going to change the thread
|
|
// content of the process, and we're going to use python, which requires the API lock to do it.
|
|
// So get & hold that. This is a recursive lock so we can grant it to any Python code called on the stack below us.
|
|
Target &target = m_process->GetTarget();
|
|
Mutex::Locker api_locker (target.GetAPIMutex());
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
|
|
|
|
auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure python objects stays alive
|
|
if (reg_data_addr != LLDB_INVALID_ADDRESS)
|
|
{
|
|
// The registers data is in contiguous memory, just create the register
|
|
// context using the address provided
|
|
if (log)
|
|
log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ", 0x%" PRIx64 ", reg_data_addr = 0x%" PRIx64 ") creating memory register context",
|
|
thread->GetID(),
|
|
thread->GetProtocolID(),
|
|
reg_data_addr);
|
|
reg_ctx_sp.reset (new RegisterContextMemory (*thread, 0, *GetDynamicRegisterInfo (), reg_data_addr));
|
|
}
|
|
else
|
|
{
|
|
// No register data address is provided, query the python plug-in to let
|
|
// it make up the data as it sees fit
|
|
if (log)
|
|
log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ", 0x%" PRIx64 ") fetching register data from python",
|
|
thread->GetID(),
|
|
thread->GetProtocolID());
|
|
|
|
PythonString reg_context_data(m_interpreter->OSPlugin_RegisterContextData (m_python_object_sp, thread->GetID()));
|
|
if (reg_context_data)
|
|
{
|
|
DataBufferSP data_sp (new DataBufferHeap (reg_context_data.GetString(),
|
|
reg_context_data.GetSize()));
|
|
if (data_sp->GetByteSize())
|
|
{
|
|
RegisterContextMemory *reg_ctx_memory = new RegisterContextMemory (*thread, 0, *GetDynamicRegisterInfo (), LLDB_INVALID_ADDRESS);
|
|
if (reg_ctx_memory)
|
|
{
|
|
reg_ctx_sp.reset(reg_ctx_memory);
|
|
reg_ctx_memory->SetAllRegisterData (data_sp);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// if we still have no register data, fallback on a dummy context to avoid crashing
|
|
if (!reg_ctx_sp)
|
|
{
|
|
if (log)
|
|
log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ") forcing a dummy register context", thread->GetID());
|
|
reg_ctx_sp.reset(new RegisterContextDummy(*thread,0,target.GetArchitecture().GetAddressByteSize()));
|
|
}
|
|
return reg_ctx_sp;
|
|
}
|
|
|
|
StopInfoSP
|
|
OperatingSystemPython::CreateThreadStopReason (lldb_private::Thread *thread)
|
|
{
|
|
// We should have gotten the thread stop info from the dictionary of data for
|
|
// the thread in the initial call to get_thread_info(), this should have been
|
|
// cached so we can return it here
|
|
StopInfoSP stop_info_sp; //(StopInfo::CreateStopReasonWithSignal (*thread, SIGSTOP));
|
|
return stop_info_sp;
|
|
}
|
|
|
|
lldb::ThreadSP
|
|
OperatingSystemPython::CreateThread (lldb::tid_t tid, addr_t context)
|
|
{
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
|
|
|
|
if (log)
|
|
log->Printf ("OperatingSystemPython::CreateThread (tid = 0x%" PRIx64 ", context = 0x%" PRIx64 ") fetching register data from python", tid, context);
|
|
|
|
if (m_interpreter && m_python_object_sp)
|
|
{
|
|
// First thing we have to do is get the API lock, and the run lock. We're going to change the thread
|
|
// content of the process, and we're going to use python, which requires the API lock to do it.
|
|
// So get & hold that. This is a recursive lock so we can grant it to any Python code called on the stack below us.
|
|
Target &target = m_process->GetTarget();
|
|
Mutex::Locker api_locker (target.GetAPIMutex());
|
|
|
|
auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure thread_info_dict stays alive
|
|
PythonDictionary thread_info_dict (m_interpreter->OSPlugin_CreateThread(m_python_object_sp, tid, context));
|
|
if (thread_info_dict)
|
|
{
|
|
ThreadList core_threads(m_process);
|
|
ThreadList &thread_list = m_process->GetThreadList();
|
|
bool did_create = false;
|
|
ThreadSP thread_sp (CreateThreadFromThreadInfo (thread_info_dict, core_threads, thread_list, &did_create));
|
|
if (did_create)
|
|
thread_list.AddThread(thread_sp);
|
|
return thread_sp;
|
|
}
|
|
}
|
|
return ThreadSP();
|
|
}
|
|
|
|
|
|
|
|
#endif // #ifndef LLDB_DISABLE_PYTHON
|