1 //===-- ScriptInterpreterPython.cpp -----------------------------*- 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 #ifdef LLDB_DISABLE_PYTHON 11 12 // Python is disabled in this build 13 14 #else 15 16 // LLDB Python header must be included first 17 #include "lldb-python.h" 18 19 #include "PythonDataObjects.h" 20 #include "PythonExceptionState.h" 21 #include "ScriptInterpreterPython.h" 22 23 #include <stdio.h> 24 #include <stdlib.h> 25 26 #include <mutex> 27 #include <string> 28 29 #include "lldb/API/SBValue.h" 30 #include "lldb/Breakpoint/BreakpointLocation.h" 31 #include "lldb/Breakpoint/StoppointCallbackContext.h" 32 #include "lldb/Breakpoint/WatchpointOptions.h" 33 #include "lldb/Core/Communication.h" 34 #include "lldb/Core/Debugger.h" 35 #include "lldb/Core/PluginManager.h" 36 #include "lldb/Core/ValueObject.h" 37 #include "lldb/DataFormatters/TypeSummary.h" 38 #include "lldb/Host/ConnectionFileDescriptor.h" 39 #include "lldb/Host/FileSystem.h" 40 #include "lldb/Host/HostInfo.h" 41 #include "lldb/Host/Pipe.h" 42 #include "lldb/Interpreter/CommandInterpreter.h" 43 #include "lldb/Interpreter/CommandReturnObject.h" 44 #include "lldb/Target/Thread.h" 45 #include "lldb/Target/ThreadPlan.h" 46 #include "lldb/Utility/Timer.h" 47 48 #if defined(_WIN32) 49 #include "lldb/Host/windows/ConnectionGenericFileWindows.h" 50 #endif 51 52 #include "llvm/ADT/STLExtras.h" 53 #include "llvm/ADT/StringRef.h" 54 #include "llvm/Support/FileSystem.h" 55 56 using namespace lldb; 57 using namespace lldb_private; 58 59 static ScriptInterpreterPython::SWIGInitCallback g_swig_init_callback = nullptr; 60 static ScriptInterpreterPython::SWIGBreakpointCallbackFunction 61 g_swig_breakpoint_callback = nullptr; 62 static ScriptInterpreterPython::SWIGWatchpointCallbackFunction 63 g_swig_watchpoint_callback = nullptr; 64 static ScriptInterpreterPython::SWIGPythonTypeScriptCallbackFunction 65 g_swig_typescript_callback = nullptr; 66 static ScriptInterpreterPython::SWIGPythonCreateSyntheticProvider 67 g_swig_synthetic_script = nullptr; 68 static ScriptInterpreterPython::SWIGPythonCreateCommandObject 69 g_swig_create_cmd = nullptr; 70 static ScriptInterpreterPython::SWIGPythonCalculateNumChildren 71 g_swig_calc_children = nullptr; 72 static ScriptInterpreterPython::SWIGPythonGetChildAtIndex 73 g_swig_get_child_index = nullptr; 74 static ScriptInterpreterPython::SWIGPythonGetIndexOfChildWithName 75 g_swig_get_index_child = nullptr; 76 static ScriptInterpreterPython::SWIGPythonCastPyObjectToSBValue 77 g_swig_cast_to_sbvalue = nullptr; 78 static ScriptInterpreterPython::SWIGPythonGetValueObjectSPFromSBValue 79 g_swig_get_valobj_sp_from_sbvalue = nullptr; 80 static ScriptInterpreterPython::SWIGPythonUpdateSynthProviderInstance 81 g_swig_update_provider = nullptr; 82 static ScriptInterpreterPython::SWIGPythonMightHaveChildrenSynthProviderInstance 83 g_swig_mighthavechildren_provider = nullptr; 84 static ScriptInterpreterPython::SWIGPythonGetValueSynthProviderInstance 85 g_swig_getvalue_provider = nullptr; 86 static ScriptInterpreterPython::SWIGPythonCallCommand g_swig_call_command = 87 nullptr; 88 static ScriptInterpreterPython::SWIGPythonCallCommandObject 89 g_swig_call_command_object = nullptr; 90 static ScriptInterpreterPython::SWIGPythonCallModuleInit 91 g_swig_call_module_init = nullptr; 92 static ScriptInterpreterPython::SWIGPythonCreateOSPlugin 93 g_swig_create_os_plugin = nullptr; 94 static ScriptInterpreterPython::SWIGPythonScriptKeyword_Process 95 g_swig_run_script_keyword_process = nullptr; 96 static ScriptInterpreterPython::SWIGPythonScriptKeyword_Thread 97 g_swig_run_script_keyword_thread = nullptr; 98 static ScriptInterpreterPython::SWIGPythonScriptKeyword_Target 99 g_swig_run_script_keyword_target = nullptr; 100 static ScriptInterpreterPython::SWIGPythonScriptKeyword_Frame 101 g_swig_run_script_keyword_frame = nullptr; 102 static ScriptInterpreterPython::SWIGPythonScriptKeyword_Value 103 g_swig_run_script_keyword_value = nullptr; 104 static ScriptInterpreterPython::SWIGPython_GetDynamicSetting g_swig_plugin_get = 105 nullptr; 106 static ScriptInterpreterPython::SWIGPythonCreateScriptedThreadPlan 107 g_swig_thread_plan_script = nullptr; 108 static ScriptInterpreterPython::SWIGPythonCallThreadPlan 109 g_swig_call_thread_plan = nullptr; 110 111 static bool g_initialized = false; 112 113 namespace { 114 115 // Initializing Python is not a straightforward process. We cannot control what 116 // external code may have done before getting to this point in LLDB, including 117 // potentially having already initialized Python, so we need to do a lot of work 118 // to ensure that the existing state of the system is maintained across our 119 // initialization. We do this by using an RAII pattern where we save off 120 // initial 121 // state at the beginning, and restore it at the end 122 struct InitializePythonRAII { 123 public: 124 InitializePythonRAII() 125 : m_gil_state(PyGILState_UNLOCKED), m_was_already_initialized(false) { 126 // Python will muck with STDIN terminal state, so save off any current TTY 127 // settings so we can restore them. 128 m_stdin_tty_state.Save(STDIN_FILENO, false); 129 130 InitializePythonHome(); 131 132 // Python < 3.2 and Python >= 3.2 reversed the ordering requirements for 133 // calling `Py_Initialize` and `PyEval_InitThreads`. < 3.2 requires that you 134 // call `PyEval_InitThreads` first, and >= 3.2 requires that you call it last. 135 #if (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION >= 2) || (PY_MAJOR_VERSION > 3) 136 Py_InitializeEx(0); 137 InitializeThreadsPrivate(); 138 #else 139 InitializeThreadsPrivate(); 140 Py_InitializeEx(0); 141 #endif 142 } 143 144 ~InitializePythonRAII() { 145 if (m_was_already_initialized) { 146 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT)); 147 LLDB_LOGV(log, "Releasing PyGILState. Returning to state = {0}locked", 148 m_was_already_initialized == PyGILState_UNLOCKED ? "un" : ""); 149 PyGILState_Release(m_gil_state); 150 } else { 151 // We initialized the threads in this function, just unlock the GIL. 152 PyEval_SaveThread(); 153 } 154 155 m_stdin_tty_state.Restore(); 156 } 157 158 private: 159 void InitializePythonHome() { 160 #if defined(LLDB_PYTHON_HOME) 161 #if PY_MAJOR_VERSION >= 3 162 size_t size = 0; 163 static wchar_t *g_python_home = Py_DecodeLocale(LLDB_PYTHON_HOME, &size); 164 #else 165 static char g_python_home[] = LLDB_PYTHON_HOME; 166 #endif 167 Py_SetPythonHome(g_python_home); 168 #endif 169 } 170 171 void InitializeThreadsPrivate() { 172 if (PyEval_ThreadsInitialized()) { 173 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT)); 174 175 m_was_already_initialized = true; 176 m_gil_state = PyGILState_Ensure(); 177 LLDB_LOGV(log, "Ensured PyGILState. Previous state = {0}locked\n", 178 m_gil_state == PyGILState_UNLOCKED ? "un" : ""); 179 return; 180 } 181 182 // InitThreads acquires the GIL if it hasn't been called before. 183 PyEval_InitThreads(); 184 } 185 186 TerminalState m_stdin_tty_state; 187 PyGILState_STATE m_gil_state; 188 bool m_was_already_initialized; 189 }; 190 } 191 192 ScriptInterpreterPython::Locker::Locker(ScriptInterpreterPython *py_interpreter, 193 uint16_t on_entry, uint16_t on_leave, 194 FILE *in, FILE *out, FILE *err) 195 : ScriptInterpreterLocker(), 196 m_teardown_session((on_leave & TearDownSession) == TearDownSession), 197 m_python_interpreter(py_interpreter) { 198 DoAcquireLock(); 199 if ((on_entry & InitSession) == InitSession) { 200 if (DoInitSession(on_entry, in, out, err) == false) { 201 // Don't teardown the session if we didn't init it. 202 m_teardown_session = false; 203 } 204 } 205 } 206 207 bool ScriptInterpreterPython::Locker::DoAcquireLock() { 208 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT)); 209 m_GILState = PyGILState_Ensure(); 210 LLDB_LOGV(log, "Ensured PyGILState. Previous state = {0}locked", 211 m_GILState == PyGILState_UNLOCKED ? "un" : ""); 212 213 // we need to save the thread state when we first start the command 214 // because we might decide to interrupt it while some action is taking 215 // place outside of Python (e.g. printing to screen, waiting for the network, 216 // ...) 217 // in that case, _PyThreadState_Current will be NULL - and we would be unable 218 // to set the asynchronous exception - not a desirable situation 219 m_python_interpreter->SetThreadState(PyThreadState_Get()); 220 m_python_interpreter->IncrementLockCount(); 221 return true; 222 } 223 224 bool ScriptInterpreterPython::Locker::DoInitSession(uint16_t on_entry_flags, 225 FILE *in, FILE *out, 226 FILE *err) { 227 if (!m_python_interpreter) 228 return false; 229 return m_python_interpreter->EnterSession(on_entry_flags, in, out, err); 230 } 231 232 bool ScriptInterpreterPython::Locker::DoFreeLock() { 233 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT)); 234 LLDB_LOGV(log, "Releasing PyGILState. Returning to state = {0}locked", 235 m_GILState == PyGILState_UNLOCKED ? "un" : ""); 236 PyGILState_Release(m_GILState); 237 m_python_interpreter->DecrementLockCount(); 238 return true; 239 } 240 241 bool ScriptInterpreterPython::Locker::DoTearDownSession() { 242 if (!m_python_interpreter) 243 return false; 244 m_python_interpreter->LeaveSession(); 245 return true; 246 } 247 248 ScriptInterpreterPython::Locker::~Locker() { 249 if (m_teardown_session) 250 DoTearDownSession(); 251 DoFreeLock(); 252 } 253 254 ScriptInterpreterPython::ScriptInterpreterPython( 255 CommandInterpreter &interpreter) 256 : ScriptInterpreter(interpreter, eScriptLanguagePython), 257 IOHandlerDelegateMultiline("DONE"), m_saved_stdin(), m_saved_stdout(), 258 m_saved_stderr(), m_main_module(), m_lldb_module(), 259 m_session_dict(PyInitialValue::Invalid), 260 m_sys_module_dict(PyInitialValue::Invalid), m_run_one_line_function(), 261 m_run_one_line_str_global(), 262 m_dictionary_name( 263 interpreter.GetDebugger().GetInstanceName().AsCString()), 264 m_terminal_state(), m_active_io_handler(eIOHandlerNone), 265 m_session_is_active(false), m_pty_slave_is_open(false), 266 m_valid_session(true), m_lock_count(0), m_command_thread_state(nullptr) { 267 InitializePrivate(); 268 269 m_dictionary_name.append("_dict"); 270 StreamString run_string; 271 run_string.Printf("%s = dict()", m_dictionary_name.c_str()); 272 273 Locker locker(this, ScriptInterpreterPython::Locker::AcquireLock, 274 ScriptInterpreterPython::Locker::FreeAcquiredLock); 275 PyRun_SimpleString(run_string.GetData()); 276 277 run_string.Clear(); 278 run_string.Printf( 279 "run_one_line (%s, 'import copy, keyword, os, re, sys, uuid, lldb')", 280 m_dictionary_name.c_str()); 281 PyRun_SimpleString(run_string.GetData()); 282 283 // Reloading modules requires a different syntax in Python 2 and Python 3. 284 // This provides 285 // a consistent syntax no matter what version of Python. 286 run_string.Clear(); 287 run_string.Printf("run_one_line (%s, 'from six.moves import reload_module')", 288 m_dictionary_name.c_str()); 289 PyRun_SimpleString(run_string.GetData()); 290 291 // WARNING: temporary code that loads Cocoa formatters - this should be done 292 // on a per-platform basis rather than loading the whole set 293 // and letting the individual formatter classes exploit APIs to check whether 294 // they can/cannot do their task 295 run_string.Clear(); 296 run_string.Printf( 297 "run_one_line (%s, 'import lldb.formatters, lldb.formatters.cpp, pydoc')", 298 m_dictionary_name.c_str()); 299 PyRun_SimpleString(run_string.GetData()); 300 run_string.Clear(); 301 302 run_string.Printf("run_one_line (%s, 'import lldb.embedded_interpreter; from " 303 "lldb.embedded_interpreter import run_python_interpreter; " 304 "from lldb.embedded_interpreter import run_one_line')", 305 m_dictionary_name.c_str()); 306 PyRun_SimpleString(run_string.GetData()); 307 run_string.Clear(); 308 309 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64 310 "; pydoc.pager = pydoc.plainpager')", 311 m_dictionary_name.c_str(), 312 interpreter.GetDebugger().GetID()); 313 PyRun_SimpleString(run_string.GetData()); 314 } 315 316 ScriptInterpreterPython::~ScriptInterpreterPython() { 317 // the session dictionary may hold objects with complex state 318 // which means that they may need to be torn down with some level of smarts 319 // and that, in turn, requires a valid thread state 320 // force Python to procure itself such a thread state, nuke the session 321 // dictionary 322 // and then release it for others to use and proceed with the rest of the 323 // shutdown 324 auto gil_state = PyGILState_Ensure(); 325 m_session_dict.Reset(); 326 PyGILState_Release(gil_state); 327 } 328 329 void ScriptInterpreterPython::Initialize() { 330 static llvm::once_flag g_once_flag; 331 332 llvm::call_once(g_once_flag, []() { 333 PluginManager::RegisterPlugin(GetPluginNameStatic(), 334 GetPluginDescriptionStatic(), 335 lldb::eScriptLanguagePython, CreateInstance); 336 }); 337 } 338 339 void ScriptInterpreterPython::Terminate() {} 340 341 lldb::ScriptInterpreterSP 342 ScriptInterpreterPython::CreateInstance(CommandInterpreter &interpreter) { 343 return std::make_shared<ScriptInterpreterPython>(interpreter); 344 } 345 346 lldb_private::ConstString ScriptInterpreterPython::GetPluginNameStatic() { 347 static ConstString g_name("script-python"); 348 return g_name; 349 } 350 351 const char *ScriptInterpreterPython::GetPluginDescriptionStatic() { 352 return "Embedded Python interpreter"; 353 } 354 355 lldb_private::ConstString ScriptInterpreterPython::GetPluginName() { 356 return GetPluginNameStatic(); 357 } 358 359 uint32_t ScriptInterpreterPython::GetPluginVersion() { return 1; } 360 361 void ScriptInterpreterPython::IOHandlerActivated(IOHandler &io_handler) { 362 const char *instructions = nullptr; 363 364 switch (m_active_io_handler) { 365 case eIOHandlerNone: 366 break; 367 case eIOHandlerBreakpoint: 368 instructions = R"(Enter your Python command(s). Type 'DONE' to end. 369 def function (frame, bp_loc, internal_dict): 370 """frame: the lldb.SBFrame for the location at which you stopped 371 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information 372 internal_dict: an LLDB support object not to be used""" 373 )"; 374 break; 375 case eIOHandlerWatchpoint: 376 instructions = "Enter your Python command(s). Type 'DONE' to end.\n"; 377 break; 378 } 379 380 if (instructions) { 381 StreamFileSP output_sp(io_handler.GetOutputStreamFile()); 382 if (output_sp) { 383 output_sp->PutCString(instructions); 384 output_sp->Flush(); 385 } 386 } 387 } 388 389 void ScriptInterpreterPython::IOHandlerInputComplete(IOHandler &io_handler, 390 std::string &data) { 391 io_handler.SetIsDone(true); 392 bool batch_mode = m_interpreter.GetBatchCommandMode(); 393 394 switch (m_active_io_handler) { 395 case eIOHandlerNone: 396 break; 397 case eIOHandlerBreakpoint: { 398 std::vector<BreakpointOptions *> *bp_options_vec = 399 (std::vector<BreakpointOptions *> *)io_handler.GetUserData(); 400 for (auto bp_options : *bp_options_vec) { 401 if (!bp_options) 402 continue; 403 404 auto data_ap = llvm::make_unique<CommandDataPython>(); 405 if (!data_ap) 406 break; 407 data_ap->user_source.SplitIntoLines(data); 408 409 if (GenerateBreakpointCommandCallbackData(data_ap->user_source, 410 data_ap->script_source) 411 .Success()) { 412 auto baton_sp = std::make_shared<BreakpointOptions::CommandBaton>( 413 std::move(data_ap)); 414 bp_options->SetCallback( 415 ScriptInterpreterPython::BreakpointCallbackFunction, baton_sp); 416 } else if (!batch_mode) { 417 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); 418 if (error_sp) { 419 error_sp->Printf("Warning: No command attached to breakpoint.\n"); 420 error_sp->Flush(); 421 } 422 } 423 } 424 m_active_io_handler = eIOHandlerNone; 425 } break; 426 case eIOHandlerWatchpoint: { 427 WatchpointOptions *wp_options = 428 (WatchpointOptions *)io_handler.GetUserData(); 429 auto data_ap = llvm::make_unique<WatchpointOptions::CommandData>(); 430 data_ap->user_source.SplitIntoLines(data); 431 432 if (GenerateWatchpointCommandCallbackData(data_ap->user_source, 433 data_ap->script_source)) { 434 auto baton_sp = 435 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_ap)); 436 wp_options->SetCallback( 437 ScriptInterpreterPython::WatchpointCallbackFunction, baton_sp); 438 } else if (!batch_mode) { 439 StreamFileSP error_sp = io_handler.GetErrorStreamFile(); 440 if (error_sp) { 441 error_sp->Printf("Warning: No command attached to breakpoint.\n"); 442 error_sp->Flush(); 443 } 444 } 445 m_active_io_handler = eIOHandlerNone; 446 } break; 447 } 448 } 449 450 void ScriptInterpreterPython::ResetOutputFileHandle(FILE *fh) {} 451 452 void ScriptInterpreterPython::SaveTerminalState(int fd) { 453 // Python mucks with the terminal state of STDIN. If we can possibly avoid 454 // this by setting the file handles up correctly prior to entering the 455 // interpreter we should. For now we save and restore the terminal state 456 // on the input file handle. 457 m_terminal_state.Save(fd, false); 458 } 459 460 void ScriptInterpreterPython::RestoreTerminalState() { 461 // Python mucks with the terminal state of STDIN. If we can possibly avoid 462 // this by setting the file handles up correctly prior to entering the 463 // interpreter we should. For now we save and restore the terminal state 464 // on the input file handle. 465 m_terminal_state.Restore(); 466 } 467 468 void ScriptInterpreterPython::LeaveSession() { 469 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT)); 470 if (log) 471 log->PutCString("ScriptInterpreterPython::LeaveSession()"); 472 473 // checking that we have a valid thread state - since we use our own threading 474 // and locking 475 // in some (rare) cases during cleanup Python may end up believing we have no 476 // thread state 477 // and PyImport_AddModule will crash if that is the case - since that seems to 478 // only happen 479 // when destroying the SBDebugger, we can make do without clearing up stdout 480 // and stderr 481 482 // rdar://problem/11292882 483 // When the current thread state is NULL, PyThreadState_Get() issues a fatal 484 // error. 485 if (PyThreadState_GetDict()) { 486 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); 487 if (sys_module_dict.IsValid()) { 488 if (m_saved_stdin.IsValid()) { 489 sys_module_dict.SetItemForKey(PythonString("stdin"), m_saved_stdin); 490 m_saved_stdin.Reset(); 491 } 492 if (m_saved_stdout.IsValid()) { 493 sys_module_dict.SetItemForKey(PythonString("stdout"), m_saved_stdout); 494 m_saved_stdout.Reset(); 495 } 496 if (m_saved_stderr.IsValid()) { 497 sys_module_dict.SetItemForKey(PythonString("stderr"), m_saved_stderr); 498 m_saved_stderr.Reset(); 499 } 500 } 501 } 502 503 m_session_is_active = false; 504 } 505 506 bool ScriptInterpreterPython::SetStdHandle(File &file, const char *py_name, 507 PythonObject &save_file, 508 const char *mode) { 509 if (file.IsValid()) { 510 // Flush the file before giving it to python to avoid interleaved output. 511 file.Flush(); 512 513 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); 514 515 save_file = sys_module_dict.GetItemForKey(PythonString(py_name)); 516 517 PythonFile new_file(file, mode); 518 sys_module_dict.SetItemForKey(PythonString(py_name), new_file); 519 return true; 520 } else 521 save_file.Reset(); 522 return false; 523 } 524 525 bool ScriptInterpreterPython::EnterSession(uint16_t on_entry_flags, FILE *in, 526 FILE *out, FILE *err) { 527 // If we have already entered the session, without having officially 'left' 528 // it, then there is no need to 529 // 'enter' it again. 530 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT)); 531 if (m_session_is_active) { 532 if (log) 533 log->Printf( 534 "ScriptInterpreterPython::EnterSession(on_entry_flags=0x%" PRIx16 535 ") session is already active, returning without doing anything", 536 on_entry_flags); 537 return false; 538 } 539 540 if (log) 541 log->Printf( 542 "ScriptInterpreterPython::EnterSession(on_entry_flags=0x%" PRIx16 ")", 543 on_entry_flags); 544 545 m_session_is_active = true; 546 547 StreamString run_string; 548 549 if (on_entry_flags & Locker::InitGlobals) { 550 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64, 551 m_dictionary_name.c_str(), 552 GetCommandInterpreter().GetDebugger().GetID()); 553 run_string.Printf( 554 "; lldb.debugger = lldb.SBDebugger.FindDebuggerWithID (%" PRIu64 ")", 555 GetCommandInterpreter().GetDebugger().GetID()); 556 run_string.PutCString("; lldb.target = lldb.debugger.GetSelectedTarget()"); 557 run_string.PutCString("; lldb.process = lldb.target.GetProcess()"); 558 run_string.PutCString("; lldb.thread = lldb.process.GetSelectedThread ()"); 559 run_string.PutCString("; lldb.frame = lldb.thread.GetSelectedFrame ()"); 560 run_string.PutCString("')"); 561 } else { 562 // If we aren't initing the globals, we should still always set the debugger 563 // (since that is always unique.) 564 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64, 565 m_dictionary_name.c_str(), 566 GetCommandInterpreter().GetDebugger().GetID()); 567 run_string.Printf( 568 "; lldb.debugger = lldb.SBDebugger.FindDebuggerWithID (%" PRIu64 ")", 569 GetCommandInterpreter().GetDebugger().GetID()); 570 run_string.PutCString("')"); 571 } 572 573 PyRun_SimpleString(run_string.GetData()); 574 run_string.Clear(); 575 576 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); 577 if (sys_module_dict.IsValid()) { 578 File in_file(in, false); 579 File out_file(out, false); 580 File err_file(err, false); 581 582 lldb::StreamFileSP in_sp; 583 lldb::StreamFileSP out_sp; 584 lldb::StreamFileSP err_sp; 585 if (!in_file.IsValid() || !out_file.IsValid() || !err_file.IsValid()) 586 m_interpreter.GetDebugger().AdoptTopIOHandlerFilesIfInvalid(in_sp, out_sp, 587 err_sp); 588 589 if (on_entry_flags & Locker::NoSTDIN) { 590 m_saved_stdin.Reset(); 591 } else { 592 if (!SetStdHandle(in_file, "stdin", m_saved_stdin, "r")) { 593 if (in_sp) 594 SetStdHandle(in_sp->GetFile(), "stdin", m_saved_stdin, "r"); 595 } 596 } 597 598 if (!SetStdHandle(out_file, "stdout", m_saved_stdout, "w")) { 599 if (out_sp) 600 SetStdHandle(out_sp->GetFile(), "stdout", m_saved_stdout, "w"); 601 } 602 603 if (!SetStdHandle(err_file, "stderr", m_saved_stderr, "w")) { 604 if (err_sp) 605 SetStdHandle(err_sp->GetFile(), "stderr", m_saved_stderr, "w"); 606 } 607 } 608 609 if (PyErr_Occurred()) 610 PyErr_Clear(); 611 612 return true; 613 } 614 615 PythonObject &ScriptInterpreterPython::GetMainModule() { 616 if (!m_main_module.IsValid()) 617 m_main_module.Reset(PyRefType::Borrowed, PyImport_AddModule("__main__")); 618 return m_main_module; 619 } 620 621 PythonDictionary &ScriptInterpreterPython::GetSessionDictionary() { 622 if (m_session_dict.IsValid()) 623 return m_session_dict; 624 625 PythonObject &main_module = GetMainModule(); 626 if (!main_module.IsValid()) 627 return m_session_dict; 628 629 PythonDictionary main_dict(PyRefType::Borrowed, 630 PyModule_GetDict(main_module.get())); 631 if (!main_dict.IsValid()) 632 return m_session_dict; 633 634 PythonObject item = main_dict.GetItemForKey(PythonString(m_dictionary_name)); 635 m_session_dict.Reset(PyRefType::Borrowed, item.get()); 636 return m_session_dict; 637 } 638 639 PythonDictionary &ScriptInterpreterPython::GetSysModuleDictionary() { 640 if (m_sys_module_dict.IsValid()) 641 return m_sys_module_dict; 642 643 PythonObject sys_module(PyRefType::Borrowed, PyImport_AddModule("sys")); 644 if (sys_module.IsValid()) 645 m_sys_module_dict.Reset(PyRefType::Borrowed, 646 PyModule_GetDict(sys_module.get())); 647 return m_sys_module_dict; 648 } 649 650 static std::string GenerateUniqueName(const char *base_name_wanted, 651 uint32_t &functions_counter, 652 const void *name_token = nullptr) { 653 StreamString sstr; 654 655 if (!base_name_wanted) 656 return std::string(); 657 658 if (!name_token) 659 sstr.Printf("%s_%d", base_name_wanted, functions_counter++); 660 else 661 sstr.Printf("%s_%p", base_name_wanted, name_token); 662 663 return sstr.GetString(); 664 } 665 666 bool ScriptInterpreterPython::GetEmbeddedInterpreterModuleObjects() { 667 if (m_run_one_line_function.IsValid()) 668 return true; 669 670 PythonObject module(PyRefType::Borrowed, 671 PyImport_AddModule("lldb.embedded_interpreter")); 672 if (!module.IsValid()) 673 return false; 674 675 PythonDictionary module_dict(PyRefType::Borrowed, 676 PyModule_GetDict(module.get())); 677 if (!module_dict.IsValid()) 678 return false; 679 680 m_run_one_line_function = 681 module_dict.GetItemForKey(PythonString("run_one_line")); 682 m_run_one_line_str_global = 683 module_dict.GetItemForKey(PythonString("g_run_one_line_str")); 684 return m_run_one_line_function.IsValid(); 685 } 686 687 static void ReadThreadBytesReceived(void *baton, const void *src, 688 size_t src_len) { 689 if (src && src_len) { 690 Stream *strm = (Stream *)baton; 691 strm->Write(src, src_len); 692 strm->Flush(); 693 } 694 } 695 696 bool ScriptInterpreterPython::ExecuteOneLine( 697 const char *command, CommandReturnObject *result, 698 const ExecuteScriptOptions &options) { 699 if (!m_valid_session) 700 return false; 701 702 if (command && command[0]) { 703 // We want to call run_one_line, passing in the dictionary and the command 704 // string. We cannot do this through 705 // PyRun_SimpleString here because the command string may contain escaped 706 // characters, and putting it inside 707 // another string to pass to PyRun_SimpleString messes up the escaping. So 708 // we use the following more complicated 709 // method to pass the command string directly down to Python. 710 Debugger &debugger = m_interpreter.GetDebugger(); 711 712 StreamFileSP input_file_sp; 713 StreamFileSP output_file_sp; 714 StreamFileSP error_file_sp; 715 Communication output_comm( 716 "lldb.ScriptInterpreterPython.ExecuteOneLine.comm"); 717 bool join_read_thread = false; 718 if (options.GetEnableIO()) { 719 if (result) { 720 input_file_sp = debugger.GetInputFile(); 721 // Set output to a temporary file so we can forward the results on to 722 // the result object 723 724 Pipe pipe; 725 Status pipe_result = pipe.CreateNew(false); 726 if (pipe_result.Success()) { 727 #if defined(_WIN32) 728 lldb::file_t read_file = pipe.GetReadNativeHandle(); 729 pipe.ReleaseReadFileDescriptor(); 730 std::unique_ptr<ConnectionGenericFile> conn_ap( 731 new ConnectionGenericFile(read_file, true)); 732 #else 733 std::unique_ptr<ConnectionFileDescriptor> conn_ap( 734 new ConnectionFileDescriptor(pipe.ReleaseReadFileDescriptor(), 735 true)); 736 #endif 737 if (conn_ap->IsConnected()) { 738 output_comm.SetConnection(conn_ap.release()); 739 output_comm.SetReadThreadBytesReceivedCallback( 740 ReadThreadBytesReceived, &result->GetOutputStream()); 741 output_comm.StartReadThread(); 742 join_read_thread = true; 743 FILE *outfile_handle = 744 fdopen(pipe.ReleaseWriteFileDescriptor(), "w"); 745 output_file_sp.reset(new StreamFile(outfile_handle, true)); 746 error_file_sp = output_file_sp; 747 if (outfile_handle) 748 ::setbuf(outfile_handle, nullptr); 749 750 result->SetImmediateOutputFile( 751 debugger.GetOutputFile()->GetFile().GetStream()); 752 result->SetImmediateErrorFile( 753 debugger.GetErrorFile()->GetFile().GetStream()); 754 } 755 } 756 } 757 if (!input_file_sp || !output_file_sp || !error_file_sp) 758 debugger.AdoptTopIOHandlerFilesIfInvalid(input_file_sp, output_file_sp, 759 error_file_sp); 760 } else { 761 input_file_sp.reset(new StreamFile()); 762 input_file_sp->GetFile().Open(FileSystem::DEV_NULL, 763 File::eOpenOptionRead); 764 output_file_sp.reset(new StreamFile()); 765 output_file_sp->GetFile().Open(FileSystem::DEV_NULL, 766 File::eOpenOptionWrite); 767 error_file_sp = output_file_sp; 768 } 769 770 FILE *in_file = input_file_sp->GetFile().GetStream(); 771 FILE *out_file = output_file_sp->GetFile().GetStream(); 772 FILE *err_file = error_file_sp->GetFile().GetStream(); 773 bool success = false; 774 { 775 // WARNING! It's imperative that this RAII scope be as tight as possible. 776 // In particular, the 777 // scope must end *before* we try to join the read thread. The reason for 778 // this is that a 779 // pre-requisite for joining the read thread is that we close the write 780 // handle (to break the 781 // pipe and cause it to wake up and exit). But acquiring the GIL as below 782 // will redirect Python's 783 // stdio to use this same handle. If we close the handle while Python is 784 // still using it, bad 785 // things will happen. 786 Locker locker( 787 this, 788 ScriptInterpreterPython::Locker::AcquireLock | 789 ScriptInterpreterPython::Locker::InitSession | 790 (options.GetSetLLDBGlobals() 791 ? ScriptInterpreterPython::Locker::InitGlobals 792 : 0) | 793 ((result && result->GetInteractive()) ? 0 : Locker::NoSTDIN), 794 ScriptInterpreterPython::Locker::FreeAcquiredLock | 795 ScriptInterpreterPython::Locker::TearDownSession, 796 in_file, out_file, err_file); 797 798 // Find the correct script interpreter dictionary in the main module. 799 PythonDictionary &session_dict = GetSessionDictionary(); 800 if (session_dict.IsValid()) { 801 if (GetEmbeddedInterpreterModuleObjects()) { 802 if (PyCallable_Check(m_run_one_line_function.get())) { 803 PythonObject pargs( 804 PyRefType::Owned, 805 Py_BuildValue("(Os)", session_dict.get(), command)); 806 if (pargs.IsValid()) { 807 PythonObject return_value( 808 PyRefType::Owned, 809 PyObject_CallObject(m_run_one_line_function.get(), 810 pargs.get())); 811 if (return_value.IsValid()) 812 success = true; 813 else if (options.GetMaskoutErrors() && PyErr_Occurred()) { 814 PyErr_Print(); 815 PyErr_Clear(); 816 } 817 } 818 } 819 } 820 } 821 822 // Flush our output and error file handles 823 ::fflush(out_file); 824 if (out_file != err_file) 825 ::fflush(err_file); 826 } 827 828 if (join_read_thread) { 829 // Close the write end of the pipe since we are done with our 830 // one line script. This should cause the read thread that 831 // output_comm is using to exit 832 output_file_sp->GetFile().Close(); 833 // The close above should cause this thread to exit when it gets 834 // to the end of file, so let it get all its data 835 output_comm.JoinReadThread(); 836 // Now we can close the read end of the pipe 837 output_comm.Disconnect(); 838 } 839 840 if (success) 841 return true; 842 843 // The one-liner failed. Append the error message. 844 if (result) 845 result->AppendErrorWithFormat( 846 "python failed attempting to evaluate '%s'\n", command); 847 return false; 848 } 849 850 if (result) 851 result->AppendError("empty command passed to python\n"); 852 return false; 853 } 854 855 class IOHandlerPythonInterpreter : public IOHandler { 856 public: 857 IOHandlerPythonInterpreter(Debugger &debugger, 858 ScriptInterpreterPython *python) 859 : IOHandler(debugger, IOHandler::Type::PythonInterpreter), 860 m_python(python) {} 861 862 ~IOHandlerPythonInterpreter() override {} 863 864 ConstString GetControlSequence(char ch) override { 865 if (ch == 'd') 866 return ConstString("quit()\n"); 867 return ConstString(); 868 } 869 870 void Run() override { 871 if (m_python) { 872 int stdin_fd = GetInputFD(); 873 if (stdin_fd >= 0) { 874 Terminal terminal(stdin_fd); 875 TerminalState terminal_state; 876 const bool is_a_tty = terminal.IsATerminal(); 877 878 if (is_a_tty) { 879 terminal_state.Save(stdin_fd, false); 880 terminal.SetCanonical(false); 881 terminal.SetEcho(true); 882 } 883 884 ScriptInterpreterPython::Locker locker( 885 m_python, ScriptInterpreterPython::Locker::AcquireLock | 886 ScriptInterpreterPython::Locker::InitSession | 887 ScriptInterpreterPython::Locker::InitGlobals, 888 ScriptInterpreterPython::Locker::FreeAcquiredLock | 889 ScriptInterpreterPython::Locker::TearDownSession); 890 891 // The following call drops into the embedded interpreter loop and stays 892 // there until the 893 // user chooses to exit from the Python interpreter. 894 // This embedded interpreter will, as any Python code that performs I/O, 895 // unlock the GIL before 896 // a system call that can hang, and lock it when the syscall has 897 // returned. 898 899 // We need to surround the call to the embedded interpreter with calls 900 // to PyGILState_Ensure and 901 // PyGILState_Release (using the Locker above). This is because Python 902 // has a global lock which must be held whenever we want 903 // to touch any Python objects. Otherwise, if the user calls Python 904 // code, the interpreter state will be off, 905 // and things could hang (it's happened before). 906 907 StreamString run_string; 908 run_string.Printf("run_python_interpreter (%s)", 909 m_python->GetDictionaryName()); 910 PyRun_SimpleString(run_string.GetData()); 911 912 if (is_a_tty) 913 terminal_state.Restore(); 914 } 915 } 916 SetIsDone(true); 917 } 918 919 void Cancel() override {} 920 921 bool Interrupt() override { return m_python->Interrupt(); } 922 923 void GotEOF() override {} 924 925 protected: 926 ScriptInterpreterPython *m_python; 927 }; 928 929 void ScriptInterpreterPython::ExecuteInterpreterLoop() { 930 static Timer::Category func_cat(LLVM_PRETTY_FUNCTION); 931 Timer scoped_timer(func_cat, LLVM_PRETTY_FUNCTION); 932 933 Debugger &debugger = GetCommandInterpreter().GetDebugger(); 934 935 // At the moment, the only time the debugger does not have an input file 936 // handle is when this is called 937 // directly from Python, in which case it is both dangerous and unnecessary 938 // (not to mention confusing) to 939 // try to embed a running interpreter loop inside the already running Python 940 // interpreter loop, so we won't 941 // do it. 942 943 if (!debugger.GetInputFile()->GetFile().IsValid()) 944 return; 945 946 IOHandlerSP io_handler_sp(new IOHandlerPythonInterpreter(debugger, this)); 947 if (io_handler_sp) { 948 debugger.PushIOHandler(io_handler_sp); 949 } 950 } 951 952 bool ScriptInterpreterPython::Interrupt() { 953 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SCRIPT)); 954 955 if (IsExecutingPython()) { 956 PyThreadState *state = PyThreadState_GET(); 957 if (!state) 958 state = GetThreadState(); 959 if (state) { 960 long tid = state->thread_id; 961 PyThreadState_Swap(state); 962 int num_threads = PyThreadState_SetAsyncExc(tid, PyExc_KeyboardInterrupt); 963 if (log) 964 log->Printf("ScriptInterpreterPython::Interrupt() sending " 965 "PyExc_KeyboardInterrupt (tid = %li, num_threads = %i)...", 966 tid, num_threads); 967 return true; 968 } 969 } 970 if (log) 971 log->Printf("ScriptInterpreterPython::Interrupt() python code not running, " 972 "can't interrupt"); 973 return false; 974 } 975 bool ScriptInterpreterPython::ExecuteOneLineWithReturn( 976 const char *in_string, ScriptInterpreter::ScriptReturnType return_type, 977 void *ret_value, const ExecuteScriptOptions &options) { 978 979 Locker locker(this, ScriptInterpreterPython::Locker::AcquireLock | 980 ScriptInterpreterPython::Locker::InitSession | 981 (options.GetSetLLDBGlobals() 982 ? ScriptInterpreterPython::Locker::InitGlobals 983 : 0) | 984 Locker::NoSTDIN, 985 ScriptInterpreterPython::Locker::FreeAcquiredLock | 986 ScriptInterpreterPython::Locker::TearDownSession); 987 988 PythonObject py_return; 989 PythonObject &main_module = GetMainModule(); 990 PythonDictionary globals(PyRefType::Borrowed, 991 PyModule_GetDict(main_module.get())); 992 PythonObject py_error; 993 bool ret_success = false; 994 int success; 995 996 PythonDictionary locals = GetSessionDictionary(); 997 998 if (!locals.IsValid()) { 999 locals.Reset( 1000 PyRefType::Owned, 1001 PyObject_GetAttrString(globals.get(), m_dictionary_name.c_str())); 1002 } 1003 1004 if (!locals.IsValid()) 1005 locals = globals; 1006 1007 py_error.Reset(PyRefType::Borrowed, PyErr_Occurred()); 1008 if (py_error.IsValid()) 1009 PyErr_Clear(); 1010 1011 if (in_string != nullptr) { 1012 { // scope for PythonInputReaderManager 1013 // PythonInputReaderManager py_input(options.GetEnableIO() ? this : NULL); 1014 py_return.Reset( 1015 PyRefType::Owned, 1016 PyRun_String(in_string, Py_eval_input, globals.get(), locals.get())); 1017 if (!py_return.IsValid()) { 1018 py_error.Reset(PyRefType::Borrowed, PyErr_Occurred()); 1019 if (py_error.IsValid()) 1020 PyErr_Clear(); 1021 1022 py_return.Reset(PyRefType::Owned, 1023 PyRun_String(in_string, Py_single_input, globals.get(), 1024 locals.get())); 1025 } 1026 } 1027 1028 if (py_return.IsValid()) { 1029 switch (return_type) { 1030 case eScriptReturnTypeCharPtr: // "char *" 1031 { 1032 const char format[3] = "s#"; 1033 success = PyArg_Parse(py_return.get(), format, (char **)ret_value); 1034 break; 1035 } 1036 case eScriptReturnTypeCharStrOrNone: // char* or NULL if py_return == 1037 // Py_None 1038 { 1039 const char format[3] = "z"; 1040 success = PyArg_Parse(py_return.get(), format, (char **)ret_value); 1041 break; 1042 } 1043 case eScriptReturnTypeBool: { 1044 const char format[2] = "b"; 1045 success = PyArg_Parse(py_return.get(), format, (bool *)ret_value); 1046 break; 1047 } 1048 case eScriptReturnTypeShortInt: { 1049 const char format[2] = "h"; 1050 success = PyArg_Parse(py_return.get(), format, (short *)ret_value); 1051 break; 1052 } 1053 case eScriptReturnTypeShortIntUnsigned: { 1054 const char format[2] = "H"; 1055 success = 1056 PyArg_Parse(py_return.get(), format, (unsigned short *)ret_value); 1057 break; 1058 } 1059 case eScriptReturnTypeInt: { 1060 const char format[2] = "i"; 1061 success = PyArg_Parse(py_return.get(), format, (int *)ret_value); 1062 break; 1063 } 1064 case eScriptReturnTypeIntUnsigned: { 1065 const char format[2] = "I"; 1066 success = 1067 PyArg_Parse(py_return.get(), format, (unsigned int *)ret_value); 1068 break; 1069 } 1070 case eScriptReturnTypeLongInt: { 1071 const char format[2] = "l"; 1072 success = PyArg_Parse(py_return.get(), format, (long *)ret_value); 1073 break; 1074 } 1075 case eScriptReturnTypeLongIntUnsigned: { 1076 const char format[2] = "k"; 1077 success = 1078 PyArg_Parse(py_return.get(), format, (unsigned long *)ret_value); 1079 break; 1080 } 1081 case eScriptReturnTypeLongLong: { 1082 const char format[2] = "L"; 1083 success = PyArg_Parse(py_return.get(), format, (long long *)ret_value); 1084 break; 1085 } 1086 case eScriptReturnTypeLongLongUnsigned: { 1087 const char format[2] = "K"; 1088 success = PyArg_Parse(py_return.get(), format, 1089 (unsigned long long *)ret_value); 1090 break; 1091 } 1092 case eScriptReturnTypeFloat: { 1093 const char format[2] = "f"; 1094 success = PyArg_Parse(py_return.get(), format, (float *)ret_value); 1095 break; 1096 } 1097 case eScriptReturnTypeDouble: { 1098 const char format[2] = "d"; 1099 success = PyArg_Parse(py_return.get(), format, (double *)ret_value); 1100 break; 1101 } 1102 case eScriptReturnTypeChar: { 1103 const char format[2] = "c"; 1104 success = PyArg_Parse(py_return.get(), format, (char *)ret_value); 1105 break; 1106 } 1107 case eScriptReturnTypeOpaqueObject: { 1108 success = true; 1109 PyObject *saved_value = py_return.get(); 1110 Py_XINCREF(saved_value); 1111 *((PyObject **)ret_value) = saved_value; 1112 break; 1113 } 1114 } 1115 1116 if (success) 1117 ret_success = true; 1118 else 1119 ret_success = false; 1120 } 1121 } 1122 1123 py_error.Reset(PyRefType::Borrowed, PyErr_Occurred()); 1124 if (py_error.IsValid()) { 1125 ret_success = false; 1126 if (options.GetMaskoutErrors()) { 1127 if (PyErr_GivenExceptionMatches(py_error.get(), PyExc_SyntaxError)) 1128 PyErr_Print(); 1129 PyErr_Clear(); 1130 } 1131 } 1132 1133 return ret_success; 1134 } 1135 1136 Status ScriptInterpreterPython::ExecuteMultipleLines( 1137 const char *in_string, const ExecuteScriptOptions &options) { 1138 Status error; 1139 1140 Locker locker(this, ScriptInterpreterPython::Locker::AcquireLock | 1141 ScriptInterpreterPython::Locker::InitSession | 1142 (options.GetSetLLDBGlobals() 1143 ? ScriptInterpreterPython::Locker::InitGlobals 1144 : 0) | 1145 Locker::NoSTDIN, 1146 ScriptInterpreterPython::Locker::FreeAcquiredLock | 1147 ScriptInterpreterPython::Locker::TearDownSession); 1148 1149 PythonObject return_value; 1150 PythonObject &main_module = GetMainModule(); 1151 PythonDictionary globals(PyRefType::Borrowed, 1152 PyModule_GetDict(main_module.get())); 1153 PythonObject py_error; 1154 1155 PythonDictionary locals = GetSessionDictionary(); 1156 1157 if (!locals.IsValid()) 1158 locals.Reset( 1159 PyRefType::Owned, 1160 PyObject_GetAttrString(globals.get(), m_dictionary_name.c_str())); 1161 1162 if (!locals.IsValid()) 1163 locals = globals; 1164 1165 py_error.Reset(PyRefType::Borrowed, PyErr_Occurred()); 1166 if (py_error.IsValid()) 1167 PyErr_Clear(); 1168 1169 if (in_string != nullptr) { 1170 PythonObject code_object; 1171 code_object.Reset(PyRefType::Owned, 1172 Py_CompileString(in_string, "temp.py", Py_file_input)); 1173 1174 if (code_object.IsValid()) { 1175 // In Python 2.x, PyEval_EvalCode takes a PyCodeObject, but in Python 3.x, it 1176 // takes 1177 // a PyObject. They are convertible (hence the function 1178 // PyCode_Check(PyObject*), so 1179 // we have to do the cast for Python 2.x 1180 #if PY_MAJOR_VERSION >= 3 1181 PyObject *py_code_obj = code_object.get(); 1182 #else 1183 PyCodeObject *py_code_obj = 1184 reinterpret_cast<PyCodeObject *>(code_object.get()); 1185 #endif 1186 return_value.Reset( 1187 PyRefType::Owned, 1188 PyEval_EvalCode(py_code_obj, globals.get(), locals.get())); 1189 } 1190 } 1191 1192 PythonExceptionState exception_state(!options.GetMaskoutErrors()); 1193 if (exception_state.IsError()) 1194 error.SetErrorString(exception_state.Format().c_str()); 1195 1196 return error; 1197 } 1198 1199 void ScriptInterpreterPython::CollectDataForBreakpointCommandCallback( 1200 std::vector<BreakpointOptions *> &bp_options_vec, 1201 CommandReturnObject &result) { 1202 m_active_io_handler = eIOHandlerBreakpoint; 1203 m_interpreter.GetPythonCommandsFromIOHandler(" ", *this, true, 1204 &bp_options_vec); 1205 } 1206 1207 void ScriptInterpreterPython::CollectDataForWatchpointCommandCallback( 1208 WatchpointOptions *wp_options, CommandReturnObject &result) { 1209 m_active_io_handler = eIOHandlerWatchpoint; 1210 m_interpreter.GetPythonCommandsFromIOHandler(" ", *this, true, wp_options); 1211 } 1212 1213 void ScriptInterpreterPython::SetBreakpointCommandCallbackFunction( 1214 BreakpointOptions *bp_options, const char *function_name) { 1215 // For now just cons up a oneliner that calls the provided function. 1216 std::string oneliner("return "); 1217 oneliner += function_name; 1218 oneliner += "(frame, bp_loc, internal_dict)"; 1219 m_interpreter.GetScriptInterpreter()->SetBreakpointCommandCallback( 1220 bp_options, oneliner.c_str()); 1221 } 1222 1223 Status ScriptInterpreterPython::SetBreakpointCommandCallback( 1224 BreakpointOptions *bp_options, 1225 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) { 1226 Status error; 1227 error = GenerateBreakpointCommandCallbackData(cmd_data_up->user_source, 1228 cmd_data_up->script_source); 1229 if (error.Fail()) { 1230 return error; 1231 } 1232 auto baton_sp = 1233 std::make_shared<BreakpointOptions::CommandBaton>(std::move(cmd_data_up)); 1234 bp_options->SetCallback(ScriptInterpreterPython::BreakpointCallbackFunction, 1235 baton_sp); 1236 return error; 1237 } 1238 1239 // Set a Python one-liner as the callback for the breakpoint. 1240 Status ScriptInterpreterPython::SetBreakpointCommandCallback( 1241 BreakpointOptions *bp_options, const char *command_body_text) { 1242 auto data_ap = llvm::make_unique<CommandDataPython>(); 1243 1244 // Split the command_body_text into lines, and pass that to 1245 // GenerateBreakpointCommandCallbackData. That will 1246 // wrap the body in an auto-generated function, and return the function name 1247 // in script_source. That is what 1248 // the callback will actually invoke. 1249 1250 data_ap->user_source.SplitIntoLines(command_body_text); 1251 Status error = GenerateBreakpointCommandCallbackData(data_ap->user_source, 1252 data_ap->script_source); 1253 if (error.Success()) { 1254 auto baton_sp = 1255 std::make_shared<BreakpointOptions::CommandBaton>(std::move(data_ap)); 1256 bp_options->SetCallback(ScriptInterpreterPython::BreakpointCallbackFunction, 1257 baton_sp); 1258 return error; 1259 } else 1260 return error; 1261 } 1262 1263 // Set a Python one-liner as the callback for the watchpoint. 1264 void ScriptInterpreterPython::SetWatchpointCommandCallback( 1265 WatchpointOptions *wp_options, const char *oneliner) { 1266 auto data_ap = llvm::make_unique<WatchpointOptions::CommandData>(); 1267 1268 // It's necessary to set both user_source and script_source to the oneliner. 1269 // The former is used to generate callback description (as in watchpoint 1270 // command list) 1271 // while the latter is used for Python to interpret during the actual 1272 // callback. 1273 1274 data_ap->user_source.AppendString(oneliner); 1275 data_ap->script_source.assign(oneliner); 1276 1277 if (GenerateWatchpointCommandCallbackData(data_ap->user_source, 1278 data_ap->script_source)) { 1279 auto baton_sp = 1280 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_ap)); 1281 wp_options->SetCallback(ScriptInterpreterPython::WatchpointCallbackFunction, 1282 baton_sp); 1283 } 1284 1285 return; 1286 } 1287 1288 Status ScriptInterpreterPython::ExportFunctionDefinitionToInterpreter( 1289 StringList &function_def) { 1290 // Convert StringList to one long, newline delimited, const char *. 1291 std::string function_def_string(function_def.CopyList()); 1292 1293 Status error = ExecuteMultipleLines( 1294 function_def_string.c_str(), 1295 ScriptInterpreter::ExecuteScriptOptions().SetEnableIO(false)); 1296 return error; 1297 } 1298 1299 Status ScriptInterpreterPython::GenerateFunction(const char *signature, 1300 const StringList &input) { 1301 Status error; 1302 int num_lines = input.GetSize(); 1303 if (num_lines == 0) { 1304 error.SetErrorString("No input data."); 1305 return error; 1306 } 1307 1308 if (!signature || *signature == 0) { 1309 error.SetErrorString("No output function name."); 1310 return error; 1311 } 1312 1313 StreamString sstr; 1314 StringList auto_generated_function; 1315 auto_generated_function.AppendString(signature); 1316 auto_generated_function.AppendString( 1317 " global_dict = globals()"); // Grab the global dictionary 1318 auto_generated_function.AppendString( 1319 " new_keys = internal_dict.keys()"); // Make a list of keys in the 1320 // session dict 1321 auto_generated_function.AppendString( 1322 " old_keys = global_dict.keys()"); // Save list of keys in global dict 1323 auto_generated_function.AppendString( 1324 " global_dict.update (internal_dict)"); // Add the session dictionary 1325 // to the 1326 // global dictionary. 1327 1328 // Wrap everything up inside the function, increasing the indentation. 1329 1330 auto_generated_function.AppendString(" if True:"); 1331 for (int i = 0; i < num_lines; ++i) { 1332 sstr.Clear(); 1333 sstr.Printf(" %s", input.GetStringAtIndex(i)); 1334 auto_generated_function.AppendString(sstr.GetData()); 1335 } 1336 auto_generated_function.AppendString( 1337 " for key in new_keys:"); // Iterate over all the keys from session 1338 // dict 1339 auto_generated_function.AppendString( 1340 " internal_dict[key] = global_dict[key]"); // Update session dict 1341 // values 1342 auto_generated_function.AppendString( 1343 " if key not in old_keys:"); // If key was not originally in 1344 // global dict 1345 auto_generated_function.AppendString( 1346 " del global_dict[key]"); // ...then remove key/value from 1347 // global dict 1348 1349 // Verify that the results are valid Python. 1350 1351 error = ExportFunctionDefinitionToInterpreter(auto_generated_function); 1352 1353 return error; 1354 } 1355 1356 bool ScriptInterpreterPython::GenerateTypeScriptFunction( 1357 StringList &user_input, std::string &output, const void *name_token) { 1358 static uint32_t num_created_functions = 0; 1359 user_input.RemoveBlankLines(); 1360 StreamString sstr; 1361 1362 // Check to see if we have any data; if not, just return. 1363 if (user_input.GetSize() == 0) 1364 return false; 1365 1366 // Take what the user wrote, wrap it all up inside one big auto-generated 1367 // Python function, passing in the 1368 // ValueObject as parameter to the function. 1369 1370 std::string auto_generated_function_name( 1371 GenerateUniqueName("lldb_autogen_python_type_print_func", 1372 num_created_functions, name_token)); 1373 sstr.Printf("def %s (valobj, internal_dict):", 1374 auto_generated_function_name.c_str()); 1375 1376 if (!GenerateFunction(sstr.GetData(), user_input).Success()) 1377 return false; 1378 1379 // Store the name of the auto-generated function to be called. 1380 output.assign(auto_generated_function_name); 1381 return true; 1382 } 1383 1384 bool ScriptInterpreterPython::GenerateScriptAliasFunction( 1385 StringList &user_input, std::string &output) { 1386 static uint32_t num_created_functions = 0; 1387 user_input.RemoveBlankLines(); 1388 StreamString sstr; 1389 1390 // Check to see if we have any data; if not, just return. 1391 if (user_input.GetSize() == 0) 1392 return false; 1393 1394 std::string auto_generated_function_name(GenerateUniqueName( 1395 "lldb_autogen_python_cmd_alias_func", num_created_functions)); 1396 1397 sstr.Printf("def %s (debugger, args, result, internal_dict):", 1398 auto_generated_function_name.c_str()); 1399 1400 if (!GenerateFunction(sstr.GetData(), user_input).Success()) 1401 return false; 1402 1403 // Store the name of the auto-generated function to be called. 1404 output.assign(auto_generated_function_name); 1405 return true; 1406 } 1407 1408 bool ScriptInterpreterPython::GenerateTypeSynthClass(StringList &user_input, 1409 std::string &output, 1410 const void *name_token) { 1411 static uint32_t num_created_classes = 0; 1412 user_input.RemoveBlankLines(); 1413 int num_lines = user_input.GetSize(); 1414 StreamString sstr; 1415 1416 // Check to see if we have any data; if not, just return. 1417 if (user_input.GetSize() == 0) 1418 return false; 1419 1420 // Wrap all user input into a Python class 1421 1422 std::string auto_generated_class_name(GenerateUniqueName( 1423 "lldb_autogen_python_type_synth_class", num_created_classes, name_token)); 1424 1425 StringList auto_generated_class; 1426 1427 // Create the function name & definition string. 1428 1429 sstr.Printf("class %s:", auto_generated_class_name.c_str()); 1430 auto_generated_class.AppendString(sstr.GetString()); 1431 1432 // Wrap everything up inside the class, increasing the indentation. 1433 // we don't need to play any fancy indentation tricks here because there is no 1434 // surrounding code whose indentation we need to honor 1435 for (int i = 0; i < num_lines; ++i) { 1436 sstr.Clear(); 1437 sstr.Printf(" %s", user_input.GetStringAtIndex(i)); 1438 auto_generated_class.AppendString(sstr.GetString()); 1439 } 1440 1441 // Verify that the results are valid Python. 1442 // (even though the method is ExportFunctionDefinitionToInterpreter, a class 1443 // will actually be exported) 1444 // (TODO: rename that method to ExportDefinitionToInterpreter) 1445 if (!ExportFunctionDefinitionToInterpreter(auto_generated_class).Success()) 1446 return false; 1447 1448 // Store the name of the auto-generated class 1449 1450 output.assign(auto_generated_class_name); 1451 return true; 1452 } 1453 1454 StructuredData::GenericSP ScriptInterpreterPython::OSPlugin_CreatePluginObject( 1455 const char *class_name, lldb::ProcessSP process_sp) { 1456 if (class_name == nullptr || class_name[0] == '\0') 1457 return StructuredData::GenericSP(); 1458 1459 if (!process_sp) 1460 return StructuredData::GenericSP(); 1461 1462 void *ret_val; 1463 1464 { 1465 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, 1466 Locker::FreeLock); 1467 ret_val = g_swig_create_os_plugin(class_name, m_dictionary_name.c_str(), 1468 process_sp); 1469 } 1470 1471 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); 1472 } 1473 1474 StructuredData::DictionarySP ScriptInterpreterPython::OSPlugin_RegisterInfo( 1475 StructuredData::ObjectSP os_plugin_object_sp) { 1476 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); 1477 1478 static char callee_name[] = "get_register_info"; 1479 1480 if (!os_plugin_object_sp) 1481 return StructuredData::DictionarySP(); 1482 1483 StructuredData::Generic *generic = os_plugin_object_sp->GetAsGeneric(); 1484 if (!generic) 1485 return nullptr; 1486 1487 PythonObject implementor(PyRefType::Borrowed, 1488 (PyObject *)generic->GetValue()); 1489 1490 if (!implementor.IsAllocated()) 1491 return StructuredData::DictionarySP(); 1492 1493 PythonObject pmeth(PyRefType::Owned, 1494 PyObject_GetAttrString(implementor.get(), callee_name)); 1495 1496 if (PyErr_Occurred()) 1497 PyErr_Clear(); 1498 1499 if (!pmeth.IsAllocated()) 1500 return StructuredData::DictionarySP(); 1501 1502 if (PyCallable_Check(pmeth.get()) == 0) { 1503 if (PyErr_Occurred()) 1504 PyErr_Clear(); 1505 1506 return StructuredData::DictionarySP(); 1507 } 1508 1509 if (PyErr_Occurred()) 1510 PyErr_Clear(); 1511 1512 // right now we know this function exists and is callable.. 1513 PythonObject py_return( 1514 PyRefType::Owned, 1515 PyObject_CallMethod(implementor.get(), callee_name, nullptr)); 1516 1517 // if it fails, print the error but otherwise go on 1518 if (PyErr_Occurred()) { 1519 PyErr_Print(); 1520 PyErr_Clear(); 1521 } 1522 if (py_return.get()) { 1523 PythonDictionary result_dict(PyRefType::Borrowed, py_return.get()); 1524 return result_dict.CreateStructuredDictionary(); 1525 } 1526 return StructuredData::DictionarySP(); 1527 } 1528 1529 StructuredData::ArraySP ScriptInterpreterPython::OSPlugin_ThreadsInfo( 1530 StructuredData::ObjectSP os_plugin_object_sp) { 1531 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); 1532 1533 static char callee_name[] = "get_thread_info"; 1534 1535 if (!os_plugin_object_sp) 1536 return StructuredData::ArraySP(); 1537 1538 StructuredData::Generic *generic = os_plugin_object_sp->GetAsGeneric(); 1539 if (!generic) 1540 return nullptr; 1541 1542 PythonObject implementor(PyRefType::Borrowed, 1543 (PyObject *)generic->GetValue()); 1544 1545 if (!implementor.IsAllocated()) 1546 return StructuredData::ArraySP(); 1547 1548 PythonObject pmeth(PyRefType::Owned, 1549 PyObject_GetAttrString(implementor.get(), callee_name)); 1550 1551 if (PyErr_Occurred()) 1552 PyErr_Clear(); 1553 1554 if (!pmeth.IsAllocated()) 1555 return StructuredData::ArraySP(); 1556 1557 if (PyCallable_Check(pmeth.get()) == 0) { 1558 if (PyErr_Occurred()) 1559 PyErr_Clear(); 1560 1561 return StructuredData::ArraySP(); 1562 } 1563 1564 if (PyErr_Occurred()) 1565 PyErr_Clear(); 1566 1567 // right now we know this function exists and is callable.. 1568 PythonObject py_return( 1569 PyRefType::Owned, 1570 PyObject_CallMethod(implementor.get(), callee_name, nullptr)); 1571 1572 // if it fails, print the error but otherwise go on 1573 if (PyErr_Occurred()) { 1574 PyErr_Print(); 1575 PyErr_Clear(); 1576 } 1577 1578 if (py_return.get()) { 1579 PythonList result_list(PyRefType::Borrowed, py_return.get()); 1580 return result_list.CreateStructuredArray(); 1581 } 1582 return StructuredData::ArraySP(); 1583 } 1584 1585 // GetPythonValueFormatString provides a system independent type safe way to 1586 // convert a variable's type into a python value format. Python value formats 1587 // are defined in terms of builtin C types and could change from system to 1588 // as the underlying typedef for uint* types, size_t, off_t and other values 1589 // change. 1590 1591 template <typename T> const char *GetPythonValueFormatString(T t); 1592 template <> const char *GetPythonValueFormatString(char *) { return "s"; } 1593 template <> const char *GetPythonValueFormatString(char) { return "b"; } 1594 template <> const char *GetPythonValueFormatString(unsigned char) { 1595 return "B"; 1596 } 1597 template <> const char *GetPythonValueFormatString(short) { return "h"; } 1598 template <> const char *GetPythonValueFormatString(unsigned short) { 1599 return "H"; 1600 } 1601 template <> const char *GetPythonValueFormatString(int) { return "i"; } 1602 template <> const char *GetPythonValueFormatString(unsigned int) { return "I"; } 1603 template <> const char *GetPythonValueFormatString(long) { return "l"; } 1604 template <> const char *GetPythonValueFormatString(unsigned long) { 1605 return "k"; 1606 } 1607 template <> const char *GetPythonValueFormatString(long long) { return "L"; } 1608 template <> const char *GetPythonValueFormatString(unsigned long long) { 1609 return "K"; 1610 } 1611 template <> const char *GetPythonValueFormatString(float t) { return "f"; } 1612 template <> const char *GetPythonValueFormatString(double t) { return "d"; } 1613 1614 StructuredData::StringSP ScriptInterpreterPython::OSPlugin_RegisterContextData( 1615 StructuredData::ObjectSP os_plugin_object_sp, lldb::tid_t tid) { 1616 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); 1617 1618 static char callee_name[] = "get_register_data"; 1619 static char *param_format = 1620 const_cast<char *>(GetPythonValueFormatString(tid)); 1621 1622 if (!os_plugin_object_sp) 1623 return StructuredData::StringSP(); 1624 1625 StructuredData::Generic *generic = os_plugin_object_sp->GetAsGeneric(); 1626 if (!generic) 1627 return nullptr; 1628 PythonObject implementor(PyRefType::Borrowed, 1629 (PyObject *)generic->GetValue()); 1630 1631 if (!implementor.IsAllocated()) 1632 return StructuredData::StringSP(); 1633 1634 PythonObject pmeth(PyRefType::Owned, 1635 PyObject_GetAttrString(implementor.get(), callee_name)); 1636 1637 if (PyErr_Occurred()) 1638 PyErr_Clear(); 1639 1640 if (!pmeth.IsAllocated()) 1641 return StructuredData::StringSP(); 1642 1643 if (PyCallable_Check(pmeth.get()) == 0) { 1644 if (PyErr_Occurred()) 1645 PyErr_Clear(); 1646 return StructuredData::StringSP(); 1647 } 1648 1649 if (PyErr_Occurred()) 1650 PyErr_Clear(); 1651 1652 // right now we know this function exists and is callable.. 1653 PythonObject py_return( 1654 PyRefType::Owned, 1655 PyObject_CallMethod(implementor.get(), callee_name, param_format, tid)); 1656 1657 // if it fails, print the error but otherwise go on 1658 if (PyErr_Occurred()) { 1659 PyErr_Print(); 1660 PyErr_Clear(); 1661 } 1662 1663 if (py_return.get()) { 1664 PythonBytes result(PyRefType::Borrowed, py_return.get()); 1665 return result.CreateStructuredString(); 1666 } 1667 return StructuredData::StringSP(); 1668 } 1669 1670 StructuredData::DictionarySP ScriptInterpreterPython::OSPlugin_CreateThread( 1671 StructuredData::ObjectSP os_plugin_object_sp, lldb::tid_t tid, 1672 lldb::addr_t context) { 1673 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); 1674 1675 static char callee_name[] = "create_thread"; 1676 std::string param_format; 1677 param_format += GetPythonValueFormatString(tid); 1678 param_format += GetPythonValueFormatString(context); 1679 1680 if (!os_plugin_object_sp) 1681 return StructuredData::DictionarySP(); 1682 1683 StructuredData::Generic *generic = os_plugin_object_sp->GetAsGeneric(); 1684 if (!generic) 1685 return nullptr; 1686 1687 PythonObject implementor(PyRefType::Borrowed, 1688 (PyObject *)generic->GetValue()); 1689 1690 if (!implementor.IsAllocated()) 1691 return StructuredData::DictionarySP(); 1692 1693 PythonObject pmeth(PyRefType::Owned, 1694 PyObject_GetAttrString(implementor.get(), callee_name)); 1695 1696 if (PyErr_Occurred()) 1697 PyErr_Clear(); 1698 1699 if (!pmeth.IsAllocated()) 1700 return StructuredData::DictionarySP(); 1701 1702 if (PyCallable_Check(pmeth.get()) == 0) { 1703 if (PyErr_Occurred()) 1704 PyErr_Clear(); 1705 return StructuredData::DictionarySP(); 1706 } 1707 1708 if (PyErr_Occurred()) 1709 PyErr_Clear(); 1710 1711 // right now we know this function exists and is callable.. 1712 PythonObject py_return(PyRefType::Owned, 1713 PyObject_CallMethod(implementor.get(), callee_name, 1714 ¶m_format[0], tid, context)); 1715 1716 // if it fails, print the error but otherwise go on 1717 if (PyErr_Occurred()) { 1718 PyErr_Print(); 1719 PyErr_Clear(); 1720 } 1721 1722 if (py_return.get()) { 1723 PythonDictionary result_dict(PyRefType::Borrowed, py_return.get()); 1724 return result_dict.CreateStructuredDictionary(); 1725 } 1726 return StructuredData::DictionarySP(); 1727 } 1728 1729 StructuredData::ObjectSP ScriptInterpreterPython::CreateScriptedThreadPlan( 1730 const char *class_name, lldb::ThreadPlanSP thread_plan_sp) { 1731 if (class_name == nullptr || class_name[0] == '\0') 1732 return StructuredData::ObjectSP(); 1733 1734 if (!thread_plan_sp.get()) 1735 return StructuredData::ObjectSP(); 1736 1737 Debugger &debugger = thread_plan_sp->GetTarget().GetDebugger(); 1738 ScriptInterpreter *script_interpreter = 1739 debugger.GetCommandInterpreter().GetScriptInterpreter(); 1740 ScriptInterpreterPython *python_interpreter = 1741 static_cast<ScriptInterpreterPython *>(script_interpreter); 1742 1743 if (!script_interpreter) 1744 return StructuredData::ObjectSP(); 1745 1746 void *ret_val; 1747 1748 { 1749 Locker py_lock(this, 1750 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 1751 1752 ret_val = g_swig_thread_plan_script( 1753 class_name, python_interpreter->m_dictionary_name.c_str(), 1754 thread_plan_sp); 1755 } 1756 1757 return StructuredData::ObjectSP(new StructuredPythonObject(ret_val)); 1758 } 1759 1760 bool ScriptInterpreterPython::ScriptedThreadPlanExplainsStop( 1761 StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) { 1762 bool explains_stop = true; 1763 StructuredData::Generic *generic = nullptr; 1764 if (implementor_sp) 1765 generic = implementor_sp->GetAsGeneric(); 1766 if (generic) { 1767 Locker py_lock(this, 1768 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 1769 explains_stop = g_swig_call_thread_plan( 1770 generic->GetValue(), "explains_stop", event, script_error); 1771 if (script_error) 1772 return true; 1773 } 1774 return explains_stop; 1775 } 1776 1777 bool ScriptInterpreterPython::ScriptedThreadPlanShouldStop( 1778 StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) { 1779 bool should_stop = true; 1780 StructuredData::Generic *generic = nullptr; 1781 if (implementor_sp) 1782 generic = implementor_sp->GetAsGeneric(); 1783 if (generic) { 1784 Locker py_lock(this, 1785 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 1786 should_stop = g_swig_call_thread_plan(generic->GetValue(), "should_stop", 1787 event, script_error); 1788 if (script_error) 1789 return true; 1790 } 1791 return should_stop; 1792 } 1793 1794 bool ScriptInterpreterPython::ScriptedThreadPlanIsStale( 1795 StructuredData::ObjectSP implementor_sp, bool &script_error) { 1796 bool is_stale = true; 1797 StructuredData::Generic *generic = nullptr; 1798 if (implementor_sp) 1799 generic = implementor_sp->GetAsGeneric(); 1800 if (generic) { 1801 Locker py_lock(this, 1802 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 1803 is_stale = g_swig_call_thread_plan(generic->GetValue(), "is_stale", nullptr, 1804 script_error); 1805 if (script_error) 1806 return true; 1807 } 1808 return is_stale; 1809 } 1810 1811 lldb::StateType ScriptInterpreterPython::ScriptedThreadPlanGetRunState( 1812 StructuredData::ObjectSP implementor_sp, bool &script_error) { 1813 bool should_step = false; 1814 StructuredData::Generic *generic = nullptr; 1815 if (implementor_sp) 1816 generic = implementor_sp->GetAsGeneric(); 1817 if (generic) { 1818 Locker py_lock(this, 1819 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 1820 should_step = g_swig_call_thread_plan(generic->GetValue(), "should_step", 1821 NULL, script_error); 1822 if (script_error) 1823 should_step = true; 1824 } 1825 if (should_step) 1826 return lldb::eStateStepping; 1827 else 1828 return lldb::eStateRunning; 1829 } 1830 1831 StructuredData::ObjectSP 1832 ScriptInterpreterPython::LoadPluginModule(const FileSpec &file_spec, 1833 lldb_private::Status &error) { 1834 if (!file_spec.Exists()) { 1835 error.SetErrorString("no such file"); 1836 return StructuredData::ObjectSP(); 1837 } 1838 1839 StructuredData::ObjectSP module_sp; 1840 1841 if (LoadScriptingModule(file_spec.GetPath().c_str(), true, true, error, 1842 &module_sp)) 1843 return module_sp; 1844 1845 return StructuredData::ObjectSP(); 1846 } 1847 1848 StructuredData::DictionarySP ScriptInterpreterPython::GetDynamicSettings( 1849 StructuredData::ObjectSP plugin_module_sp, Target *target, 1850 const char *setting_name, lldb_private::Status &error) { 1851 if (!plugin_module_sp || !target || !setting_name || !setting_name[0] || 1852 !g_swig_plugin_get) 1853 return StructuredData::DictionarySP(); 1854 StructuredData::Generic *generic = plugin_module_sp->GetAsGeneric(); 1855 if (!generic) 1856 return StructuredData::DictionarySP(); 1857 1858 PythonObject reply_pyobj; 1859 Locker py_lock(this, 1860 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 1861 TargetSP target_sp(target->shared_from_this()); 1862 reply_pyobj.Reset(PyRefType::Owned, 1863 (PyObject *)g_swig_plugin_get(generic->GetValue(), 1864 setting_name, target_sp)); 1865 1866 PythonDictionary py_dict(PyRefType::Borrowed, reply_pyobj.get()); 1867 return py_dict.CreateStructuredDictionary(); 1868 } 1869 1870 StructuredData::ObjectSP 1871 ScriptInterpreterPython::CreateSyntheticScriptedProvider( 1872 const char *class_name, lldb::ValueObjectSP valobj) { 1873 if (class_name == nullptr || class_name[0] == '\0') 1874 return StructuredData::ObjectSP(); 1875 1876 if (!valobj.get()) 1877 return StructuredData::ObjectSP(); 1878 1879 ExecutionContext exe_ctx(valobj->GetExecutionContextRef()); 1880 Target *target = exe_ctx.GetTargetPtr(); 1881 1882 if (!target) 1883 return StructuredData::ObjectSP(); 1884 1885 Debugger &debugger = target->GetDebugger(); 1886 ScriptInterpreter *script_interpreter = 1887 debugger.GetCommandInterpreter().GetScriptInterpreter(); 1888 ScriptInterpreterPython *python_interpreter = 1889 (ScriptInterpreterPython *)script_interpreter; 1890 1891 if (!script_interpreter) 1892 return StructuredData::ObjectSP(); 1893 1894 void *ret_val = nullptr; 1895 1896 { 1897 Locker py_lock(this, 1898 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 1899 ret_val = g_swig_synthetic_script( 1900 class_name, python_interpreter->m_dictionary_name.c_str(), valobj); 1901 } 1902 1903 return StructuredData::ObjectSP(new StructuredPythonObject(ret_val)); 1904 } 1905 1906 StructuredData::GenericSP 1907 ScriptInterpreterPython::CreateScriptCommandObject(const char *class_name) { 1908 DebuggerSP debugger_sp( 1909 GetCommandInterpreter().GetDebugger().shared_from_this()); 1910 1911 if (class_name == nullptr || class_name[0] == '\0') 1912 return StructuredData::GenericSP(); 1913 1914 if (!debugger_sp.get()) 1915 return StructuredData::GenericSP(); 1916 1917 void *ret_val; 1918 1919 { 1920 Locker py_lock(this, 1921 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 1922 ret_val = 1923 g_swig_create_cmd(class_name, m_dictionary_name.c_str(), debugger_sp); 1924 } 1925 1926 return StructuredData::GenericSP(new StructuredPythonObject(ret_val)); 1927 } 1928 1929 bool ScriptInterpreterPython::GenerateTypeScriptFunction( 1930 const char *oneliner, std::string &output, const void *name_token) { 1931 StringList input; 1932 input.SplitIntoLines(oneliner, strlen(oneliner)); 1933 return GenerateTypeScriptFunction(input, output, name_token); 1934 } 1935 1936 bool ScriptInterpreterPython::GenerateTypeSynthClass(const char *oneliner, 1937 std::string &output, 1938 const void *name_token) { 1939 StringList input; 1940 input.SplitIntoLines(oneliner, strlen(oneliner)); 1941 return GenerateTypeSynthClass(input, output, name_token); 1942 } 1943 1944 Status ScriptInterpreterPython::GenerateBreakpointCommandCallbackData( 1945 StringList &user_input, std::string &output) { 1946 static uint32_t num_created_functions = 0; 1947 user_input.RemoveBlankLines(); 1948 StreamString sstr; 1949 Status error; 1950 if (user_input.GetSize() == 0) { 1951 error.SetErrorString("No input data."); 1952 return error; 1953 } 1954 1955 std::string auto_generated_function_name(GenerateUniqueName( 1956 "lldb_autogen_python_bp_callback_func_", num_created_functions)); 1957 sstr.Printf("def %s (frame, bp_loc, internal_dict):", 1958 auto_generated_function_name.c_str()); 1959 1960 error = GenerateFunction(sstr.GetData(), user_input); 1961 if (!error.Success()) 1962 return error; 1963 1964 // Store the name of the auto-generated function to be called. 1965 output.assign(auto_generated_function_name); 1966 return error; 1967 } 1968 1969 bool ScriptInterpreterPython::GenerateWatchpointCommandCallbackData( 1970 StringList &user_input, std::string &output) { 1971 static uint32_t num_created_functions = 0; 1972 user_input.RemoveBlankLines(); 1973 StreamString sstr; 1974 1975 if (user_input.GetSize() == 0) 1976 return false; 1977 1978 std::string auto_generated_function_name(GenerateUniqueName( 1979 "lldb_autogen_python_wp_callback_func_", num_created_functions)); 1980 sstr.Printf("def %s (frame, wp, internal_dict):", 1981 auto_generated_function_name.c_str()); 1982 1983 if (!GenerateFunction(sstr.GetData(), user_input).Success()) 1984 return false; 1985 1986 // Store the name of the auto-generated function to be called. 1987 output.assign(auto_generated_function_name); 1988 return true; 1989 } 1990 1991 bool ScriptInterpreterPython::GetScriptedSummary( 1992 const char *python_function_name, lldb::ValueObjectSP valobj, 1993 StructuredData::ObjectSP &callee_wrapper_sp, 1994 const TypeSummaryOptions &options, std::string &retval) { 1995 1996 static Timer::Category func_cat(LLVM_PRETTY_FUNCTION); 1997 Timer scoped_timer(func_cat, LLVM_PRETTY_FUNCTION); 1998 1999 if (!valobj.get()) { 2000 retval.assign("<no object>"); 2001 return false; 2002 } 2003 2004 void *old_callee = nullptr; 2005 StructuredData::Generic *generic = nullptr; 2006 if (callee_wrapper_sp) { 2007 generic = callee_wrapper_sp->GetAsGeneric(); 2008 if (generic) 2009 old_callee = generic->GetValue(); 2010 } 2011 void *new_callee = old_callee; 2012 2013 bool ret_val; 2014 if (python_function_name && *python_function_name) { 2015 { 2016 Locker py_lock(this, Locker::AcquireLock | Locker::InitSession | 2017 Locker::NoSTDIN); 2018 { 2019 TypeSummaryOptionsSP options_sp(new TypeSummaryOptions(options)); 2020 2021 static Timer::Category func_cat("g_swig_typescript_callback"); 2022 Timer scoped_timer(func_cat, "g_swig_typescript_callback"); 2023 ret_val = g_swig_typescript_callback( 2024 python_function_name, GetSessionDictionary().get(), valobj, 2025 &new_callee, options_sp, retval); 2026 } 2027 } 2028 } else { 2029 retval.assign("<no function name>"); 2030 return false; 2031 } 2032 2033 if (new_callee && old_callee != new_callee) 2034 callee_wrapper_sp.reset(new StructuredPythonObject(new_callee)); 2035 2036 return ret_val; 2037 } 2038 2039 void ScriptInterpreterPython::Clear() { 2040 // Release any global variables that might have strong references to 2041 // LLDB objects when clearing the python script interpreter. 2042 Locker locker(this, ScriptInterpreterPython::Locker::AcquireLock, 2043 ScriptInterpreterPython::Locker::FreeAcquiredLock); 2044 2045 // This may be called as part of Py_Finalize. In that case the modules are 2046 // destroyed in random 2047 // order and we can't guarantee that we can access these. 2048 if (Py_IsInitialized()) 2049 PyRun_SimpleString("lldb.debugger = None; lldb.target = None; lldb.process " 2050 "= None; lldb.thread = None; lldb.frame = None"); 2051 } 2052 2053 bool ScriptInterpreterPython::BreakpointCallbackFunction( 2054 void *baton, StoppointCallbackContext *context, user_id_t break_id, 2055 user_id_t break_loc_id) { 2056 CommandDataPython *bp_option_data = (CommandDataPython *)baton; 2057 const char *python_function_name = bp_option_data->script_source.c_str(); 2058 2059 if (!context) 2060 return true; 2061 2062 ExecutionContext exe_ctx(context->exe_ctx_ref); 2063 Target *target = exe_ctx.GetTargetPtr(); 2064 2065 if (!target) 2066 return true; 2067 2068 Debugger &debugger = target->GetDebugger(); 2069 ScriptInterpreter *script_interpreter = 2070 debugger.GetCommandInterpreter().GetScriptInterpreter(); 2071 ScriptInterpreterPython *python_interpreter = 2072 (ScriptInterpreterPython *)script_interpreter; 2073 2074 if (!script_interpreter) 2075 return true; 2076 2077 if (python_function_name && python_function_name[0]) { 2078 const StackFrameSP stop_frame_sp(exe_ctx.GetFrameSP()); 2079 BreakpointSP breakpoint_sp = target->GetBreakpointByID(break_id); 2080 if (breakpoint_sp) { 2081 const BreakpointLocationSP bp_loc_sp( 2082 breakpoint_sp->FindLocationByID(break_loc_id)); 2083 2084 if (stop_frame_sp && bp_loc_sp) { 2085 bool ret_val = true; 2086 { 2087 Locker py_lock(python_interpreter, Locker::AcquireLock | 2088 Locker::InitSession | 2089 Locker::NoSTDIN); 2090 ret_val = g_swig_breakpoint_callback( 2091 python_function_name, 2092 python_interpreter->m_dictionary_name.c_str(), stop_frame_sp, 2093 bp_loc_sp); 2094 } 2095 return ret_val; 2096 } 2097 } 2098 } 2099 // We currently always true so we stop in case anything goes wrong when 2100 // trying to call the script function 2101 return true; 2102 } 2103 2104 bool ScriptInterpreterPython::WatchpointCallbackFunction( 2105 void *baton, StoppointCallbackContext *context, user_id_t watch_id) { 2106 WatchpointOptions::CommandData *wp_option_data = 2107 (WatchpointOptions::CommandData *)baton; 2108 const char *python_function_name = wp_option_data->script_source.c_str(); 2109 2110 if (!context) 2111 return true; 2112 2113 ExecutionContext exe_ctx(context->exe_ctx_ref); 2114 Target *target = exe_ctx.GetTargetPtr(); 2115 2116 if (!target) 2117 return true; 2118 2119 Debugger &debugger = target->GetDebugger(); 2120 ScriptInterpreter *script_interpreter = 2121 debugger.GetCommandInterpreter().GetScriptInterpreter(); 2122 ScriptInterpreterPython *python_interpreter = 2123 (ScriptInterpreterPython *)script_interpreter; 2124 2125 if (!script_interpreter) 2126 return true; 2127 2128 if (python_function_name && python_function_name[0]) { 2129 const StackFrameSP stop_frame_sp(exe_ctx.GetFrameSP()); 2130 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); 2131 if (wp_sp) { 2132 if (stop_frame_sp && wp_sp) { 2133 bool ret_val = true; 2134 { 2135 Locker py_lock(python_interpreter, Locker::AcquireLock | 2136 Locker::InitSession | 2137 Locker::NoSTDIN); 2138 ret_val = g_swig_watchpoint_callback( 2139 python_function_name, 2140 python_interpreter->m_dictionary_name.c_str(), stop_frame_sp, 2141 wp_sp); 2142 } 2143 return ret_val; 2144 } 2145 } 2146 } 2147 // We currently always true so we stop in case anything goes wrong when 2148 // trying to call the script function 2149 return true; 2150 } 2151 2152 size_t ScriptInterpreterPython::CalculateNumChildren( 2153 const StructuredData::ObjectSP &implementor_sp, uint32_t max) { 2154 if (!implementor_sp) 2155 return 0; 2156 StructuredData::Generic *generic = implementor_sp->GetAsGeneric(); 2157 if (!generic) 2158 return 0; 2159 void *implementor = generic->GetValue(); 2160 if (!implementor) 2161 return 0; 2162 2163 if (!g_swig_calc_children) 2164 return 0; 2165 2166 size_t ret_val = 0; 2167 2168 { 2169 Locker py_lock(this, 2170 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2171 ret_val = g_swig_calc_children(implementor, max); 2172 } 2173 2174 return ret_val; 2175 } 2176 2177 lldb::ValueObjectSP ScriptInterpreterPython::GetChildAtIndex( 2178 const StructuredData::ObjectSP &implementor_sp, uint32_t idx) { 2179 if (!implementor_sp) 2180 return lldb::ValueObjectSP(); 2181 2182 StructuredData::Generic *generic = implementor_sp->GetAsGeneric(); 2183 if (!generic) 2184 return lldb::ValueObjectSP(); 2185 void *implementor = generic->GetValue(); 2186 if (!implementor) 2187 return lldb::ValueObjectSP(); 2188 2189 if (!g_swig_get_child_index || !g_swig_cast_to_sbvalue) 2190 return lldb::ValueObjectSP(); 2191 2192 lldb::ValueObjectSP ret_val; 2193 2194 { 2195 Locker py_lock(this, 2196 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2197 void *child_ptr = g_swig_get_child_index(implementor, idx); 2198 if (child_ptr != nullptr && child_ptr != Py_None) { 2199 lldb::SBValue *sb_value_ptr = 2200 (lldb::SBValue *)g_swig_cast_to_sbvalue(child_ptr); 2201 if (sb_value_ptr == nullptr) 2202 Py_XDECREF(child_ptr); 2203 else 2204 ret_val = g_swig_get_valobj_sp_from_sbvalue(sb_value_ptr); 2205 } else { 2206 Py_XDECREF(child_ptr); 2207 } 2208 } 2209 2210 return ret_val; 2211 } 2212 2213 int ScriptInterpreterPython::GetIndexOfChildWithName( 2214 const StructuredData::ObjectSP &implementor_sp, const char *child_name) { 2215 if (!implementor_sp) 2216 return UINT32_MAX; 2217 2218 StructuredData::Generic *generic = implementor_sp->GetAsGeneric(); 2219 if (!generic) 2220 return UINT32_MAX; 2221 void *implementor = generic->GetValue(); 2222 if (!implementor) 2223 return UINT32_MAX; 2224 2225 if (!g_swig_get_index_child) 2226 return UINT32_MAX; 2227 2228 int ret_val = UINT32_MAX; 2229 2230 { 2231 Locker py_lock(this, 2232 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2233 ret_val = g_swig_get_index_child(implementor, child_name); 2234 } 2235 2236 return ret_val; 2237 } 2238 2239 bool ScriptInterpreterPython::UpdateSynthProviderInstance( 2240 const StructuredData::ObjectSP &implementor_sp) { 2241 bool ret_val = false; 2242 2243 if (!implementor_sp) 2244 return ret_val; 2245 2246 StructuredData::Generic *generic = implementor_sp->GetAsGeneric(); 2247 if (!generic) 2248 return ret_val; 2249 void *implementor = generic->GetValue(); 2250 if (!implementor) 2251 return ret_val; 2252 2253 if (!g_swig_update_provider) 2254 return ret_val; 2255 2256 { 2257 Locker py_lock(this, 2258 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2259 ret_val = g_swig_update_provider(implementor); 2260 } 2261 2262 return ret_val; 2263 } 2264 2265 bool ScriptInterpreterPython::MightHaveChildrenSynthProviderInstance( 2266 const StructuredData::ObjectSP &implementor_sp) { 2267 bool ret_val = false; 2268 2269 if (!implementor_sp) 2270 return ret_val; 2271 2272 StructuredData::Generic *generic = implementor_sp->GetAsGeneric(); 2273 if (!generic) 2274 return ret_val; 2275 void *implementor = generic->GetValue(); 2276 if (!implementor) 2277 return ret_val; 2278 2279 if (!g_swig_mighthavechildren_provider) 2280 return ret_val; 2281 2282 { 2283 Locker py_lock(this, 2284 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2285 ret_val = g_swig_mighthavechildren_provider(implementor); 2286 } 2287 2288 return ret_val; 2289 } 2290 2291 lldb::ValueObjectSP ScriptInterpreterPython::GetSyntheticValue( 2292 const StructuredData::ObjectSP &implementor_sp) { 2293 lldb::ValueObjectSP ret_val(nullptr); 2294 2295 if (!implementor_sp) 2296 return ret_val; 2297 2298 StructuredData::Generic *generic = implementor_sp->GetAsGeneric(); 2299 if (!generic) 2300 return ret_val; 2301 void *implementor = generic->GetValue(); 2302 if (!implementor) 2303 return ret_val; 2304 2305 if (!g_swig_getvalue_provider || !g_swig_cast_to_sbvalue || 2306 !g_swig_get_valobj_sp_from_sbvalue) 2307 return ret_val; 2308 2309 { 2310 Locker py_lock(this, 2311 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2312 void *child_ptr = g_swig_getvalue_provider(implementor); 2313 if (child_ptr != nullptr && child_ptr != Py_None) { 2314 lldb::SBValue *sb_value_ptr = 2315 (lldb::SBValue *)g_swig_cast_to_sbvalue(child_ptr); 2316 if (sb_value_ptr == nullptr) 2317 Py_XDECREF(child_ptr); 2318 else 2319 ret_val = g_swig_get_valobj_sp_from_sbvalue(sb_value_ptr); 2320 } else { 2321 Py_XDECREF(child_ptr); 2322 } 2323 } 2324 2325 return ret_val; 2326 } 2327 2328 ConstString ScriptInterpreterPython::GetSyntheticTypeName( 2329 const StructuredData::ObjectSP &implementor_sp) { 2330 Locker py_lock(this, 2331 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2332 2333 static char callee_name[] = "get_type_name"; 2334 2335 ConstString ret_val; 2336 bool got_string = false; 2337 std::string buffer; 2338 2339 if (!implementor_sp) 2340 return ret_val; 2341 2342 StructuredData::Generic *generic = implementor_sp->GetAsGeneric(); 2343 if (!generic) 2344 return ret_val; 2345 PythonObject implementor(PyRefType::Borrowed, 2346 (PyObject *)generic->GetValue()); 2347 if (!implementor.IsAllocated()) 2348 return ret_val; 2349 2350 PythonObject pmeth(PyRefType::Owned, 2351 PyObject_GetAttrString(implementor.get(), callee_name)); 2352 2353 if (PyErr_Occurred()) 2354 PyErr_Clear(); 2355 2356 if (!pmeth.IsAllocated()) 2357 return ret_val; 2358 2359 if (PyCallable_Check(pmeth.get()) == 0) { 2360 if (PyErr_Occurred()) 2361 PyErr_Clear(); 2362 return ret_val; 2363 } 2364 2365 if (PyErr_Occurred()) 2366 PyErr_Clear(); 2367 2368 // right now we know this function exists and is callable.. 2369 PythonObject py_return( 2370 PyRefType::Owned, 2371 PyObject_CallMethod(implementor.get(), callee_name, nullptr)); 2372 2373 // if it fails, print the error but otherwise go on 2374 if (PyErr_Occurred()) { 2375 PyErr_Print(); 2376 PyErr_Clear(); 2377 } 2378 2379 if (py_return.IsAllocated() && PythonString::Check(py_return.get())) { 2380 PythonString py_string(PyRefType::Borrowed, py_return.get()); 2381 llvm::StringRef return_data(py_string.GetString()); 2382 if (!return_data.empty()) { 2383 buffer.assign(return_data.data(), return_data.size()); 2384 got_string = true; 2385 } 2386 } 2387 2388 if (got_string) 2389 ret_val.SetCStringWithLength(buffer.c_str(), buffer.size()); 2390 2391 return ret_val; 2392 } 2393 2394 bool ScriptInterpreterPython::RunScriptFormatKeyword(const char *impl_function, 2395 Process *process, 2396 std::string &output, 2397 Status &error) { 2398 bool ret_val; 2399 if (!process) { 2400 error.SetErrorString("no process"); 2401 return false; 2402 } 2403 if (!impl_function || !impl_function[0]) { 2404 error.SetErrorString("no function to execute"); 2405 return false; 2406 } 2407 if (!g_swig_run_script_keyword_process) { 2408 error.SetErrorString("internal helper function missing"); 2409 return false; 2410 } 2411 { 2412 ProcessSP process_sp(process->shared_from_this()); 2413 Locker py_lock(this, 2414 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2415 ret_val = g_swig_run_script_keyword_process( 2416 impl_function, m_dictionary_name.c_str(), process_sp, output); 2417 if (!ret_val) 2418 error.SetErrorString("python script evaluation failed"); 2419 } 2420 return ret_val; 2421 } 2422 2423 bool ScriptInterpreterPython::RunScriptFormatKeyword(const char *impl_function, 2424 Thread *thread, 2425 std::string &output, 2426 Status &error) { 2427 bool ret_val; 2428 if (!thread) { 2429 error.SetErrorString("no thread"); 2430 return false; 2431 } 2432 if (!impl_function || !impl_function[0]) { 2433 error.SetErrorString("no function to execute"); 2434 return false; 2435 } 2436 if (!g_swig_run_script_keyword_thread) { 2437 error.SetErrorString("internal helper function missing"); 2438 return false; 2439 } 2440 { 2441 ThreadSP thread_sp(thread->shared_from_this()); 2442 Locker py_lock(this, 2443 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2444 ret_val = g_swig_run_script_keyword_thread( 2445 impl_function, m_dictionary_name.c_str(), thread_sp, output); 2446 if (!ret_val) 2447 error.SetErrorString("python script evaluation failed"); 2448 } 2449 return ret_val; 2450 } 2451 2452 bool ScriptInterpreterPython::RunScriptFormatKeyword(const char *impl_function, 2453 Target *target, 2454 std::string &output, 2455 Status &error) { 2456 bool ret_val; 2457 if (!target) { 2458 error.SetErrorString("no thread"); 2459 return false; 2460 } 2461 if (!impl_function || !impl_function[0]) { 2462 error.SetErrorString("no function to execute"); 2463 return false; 2464 } 2465 if (!g_swig_run_script_keyword_target) { 2466 error.SetErrorString("internal helper function missing"); 2467 return false; 2468 } 2469 { 2470 TargetSP target_sp(target->shared_from_this()); 2471 Locker py_lock(this, 2472 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2473 ret_val = g_swig_run_script_keyword_target( 2474 impl_function, m_dictionary_name.c_str(), target_sp, output); 2475 if (!ret_val) 2476 error.SetErrorString("python script evaluation failed"); 2477 } 2478 return ret_val; 2479 } 2480 2481 bool ScriptInterpreterPython::RunScriptFormatKeyword(const char *impl_function, 2482 StackFrame *frame, 2483 std::string &output, 2484 Status &error) { 2485 bool ret_val; 2486 if (!frame) { 2487 error.SetErrorString("no frame"); 2488 return false; 2489 } 2490 if (!impl_function || !impl_function[0]) { 2491 error.SetErrorString("no function to execute"); 2492 return false; 2493 } 2494 if (!g_swig_run_script_keyword_frame) { 2495 error.SetErrorString("internal helper function missing"); 2496 return false; 2497 } 2498 { 2499 StackFrameSP frame_sp(frame->shared_from_this()); 2500 Locker py_lock(this, 2501 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2502 ret_val = g_swig_run_script_keyword_frame( 2503 impl_function, m_dictionary_name.c_str(), frame_sp, output); 2504 if (!ret_val) 2505 error.SetErrorString("python script evaluation failed"); 2506 } 2507 return ret_val; 2508 } 2509 2510 bool ScriptInterpreterPython::RunScriptFormatKeyword(const char *impl_function, 2511 ValueObject *value, 2512 std::string &output, 2513 Status &error) { 2514 bool ret_val; 2515 if (!value) { 2516 error.SetErrorString("no value"); 2517 return false; 2518 } 2519 if (!impl_function || !impl_function[0]) { 2520 error.SetErrorString("no function to execute"); 2521 return false; 2522 } 2523 if (!g_swig_run_script_keyword_value) { 2524 error.SetErrorString("internal helper function missing"); 2525 return false; 2526 } 2527 { 2528 ValueObjectSP value_sp(value->GetSP()); 2529 Locker py_lock(this, 2530 Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN); 2531 ret_val = g_swig_run_script_keyword_value( 2532 impl_function, m_dictionary_name.c_str(), value_sp, output); 2533 if (!ret_val) 2534 error.SetErrorString("python script evaluation failed"); 2535 } 2536 return ret_val; 2537 } 2538 2539 uint64_t replace_all(std::string &str, const std::string &oldStr, 2540 const std::string &newStr) { 2541 size_t pos = 0; 2542 uint64_t matches = 0; 2543 while ((pos = str.find(oldStr, pos)) != std::string::npos) { 2544 matches++; 2545 str.replace(pos, oldStr.length(), newStr); 2546 pos += newStr.length(); 2547 } 2548 return matches; 2549 } 2550 2551 bool ScriptInterpreterPython::LoadScriptingModule( 2552 const char *pathname, bool can_reload, bool init_session, 2553 lldb_private::Status &error, StructuredData::ObjectSP *module_sp) { 2554 if (!pathname || !pathname[0]) { 2555 error.SetErrorString("invalid pathname"); 2556 return false; 2557 } 2558 2559 if (!g_swig_call_module_init) { 2560 error.SetErrorString("internal helper function missing"); 2561 return false; 2562 } 2563 2564 lldb::DebuggerSP debugger_sp = m_interpreter.GetDebugger().shared_from_this(); 2565 2566 { 2567 FileSpec target_file(pathname, true); 2568 std::string basename(target_file.GetFilename().GetCString()); 2569 2570 StreamString command_stream; 2571 2572 // Before executing Python code, lock the GIL. 2573 Locker py_lock(this, Locker::AcquireLock | 2574 (init_session ? Locker::InitSession : 0) | 2575 Locker::NoSTDIN, 2576 Locker::FreeAcquiredLock | 2577 (init_session ? Locker::TearDownSession : 0)); 2578 namespace fs = llvm::sys::fs; 2579 fs::file_status st; 2580 std::error_code ec = status(target_file.GetPath(), st); 2581 2582 if (ec || st.type() == fs::file_type::status_error || 2583 st.type() == fs::file_type::type_unknown || 2584 st.type() == fs::file_type::file_not_found) { 2585 // if not a valid file of any sort, check if it might be a filename still 2586 // dot can't be used but / and \ can, and if either is found, reject 2587 if (strchr(pathname, '\\') || strchr(pathname, '/')) { 2588 error.SetErrorString("invalid pathname"); 2589 return false; 2590 } 2591 basename = pathname; // not a filename, probably a package of some sort, 2592 // let it go through 2593 } else if (is_directory(st) || is_regular_file(st)) { 2594 std::string directory = target_file.GetDirectory().GetCString(); 2595 replace_all(directory, "\\", "\\\\"); 2596 replace_all(directory, "'", "\\'"); 2597 2598 // now make sure that Python has "directory" in the search path 2599 StreamString command_stream; 2600 command_stream.Printf("if not (sys.path.__contains__('%s')):\n " 2601 "sys.path.insert(1,'%s');\n\n", 2602 directory.c_str(), directory.c_str()); 2603 bool syspath_retval = 2604 ExecuteMultipleLines(command_stream.GetData(), 2605 ScriptInterpreter::ExecuteScriptOptions() 2606 .SetEnableIO(false) 2607 .SetSetLLDBGlobals(false)) 2608 .Success(); 2609 if (!syspath_retval) { 2610 error.SetErrorString("Python sys.path handling failed"); 2611 return false; 2612 } 2613 2614 // strip .py or .pyc extension 2615 ConstString extension = target_file.GetFileNameExtension(); 2616 if (extension) { 2617 if (::strcmp(extension.GetCString(), "py") == 0) 2618 basename.resize(basename.length() - 3); 2619 else if (::strcmp(extension.GetCString(), "pyc") == 0) 2620 basename.resize(basename.length() - 4); 2621 } 2622 } else { 2623 error.SetErrorString("no known way to import this module specification"); 2624 return false; 2625 } 2626 2627 // check if the module is already import-ed 2628 command_stream.Clear(); 2629 command_stream.Printf("sys.modules.__contains__('%s')", basename.c_str()); 2630 bool does_contain = false; 2631 // this call will succeed if the module was ever imported in any Debugger in 2632 // the lifetime of the process 2633 // in which this LLDB framework is living 2634 bool was_imported_globally = 2635 (ExecuteOneLineWithReturn( 2636 command_stream.GetData(), 2637 ScriptInterpreterPython::eScriptReturnTypeBool, &does_contain, 2638 ScriptInterpreter::ExecuteScriptOptions() 2639 .SetEnableIO(false) 2640 .SetSetLLDBGlobals(false)) && 2641 does_contain); 2642 // this call will fail if the module was not imported in this Debugger 2643 // before 2644 command_stream.Clear(); 2645 command_stream.Printf("sys.getrefcount(%s)", basename.c_str()); 2646 bool was_imported_locally = GetSessionDictionary() 2647 .GetItemForKey(PythonString(basename)) 2648 .IsAllocated(); 2649 2650 bool was_imported = (was_imported_globally || was_imported_locally); 2651 2652 if (was_imported == true && can_reload == false) { 2653 error.SetErrorString("module already imported"); 2654 return false; 2655 } 2656 2657 // now actually do the import 2658 command_stream.Clear(); 2659 2660 if (was_imported) { 2661 if (!was_imported_locally) 2662 command_stream.Printf("import %s ; reload_module(%s)", basename.c_str(), 2663 basename.c_str()); 2664 else 2665 command_stream.Printf("reload_module(%s)", basename.c_str()); 2666 } else 2667 command_stream.Printf("import %s", basename.c_str()); 2668 2669 error = ExecuteMultipleLines(command_stream.GetData(), 2670 ScriptInterpreter::ExecuteScriptOptions() 2671 .SetEnableIO(false) 2672 .SetSetLLDBGlobals(false)); 2673 if (error.Fail()) 2674 return false; 2675 2676 // if we are here, everything worked 2677 // call __lldb_init_module(debugger,dict) 2678 if (!g_swig_call_module_init(basename.c_str(), m_dictionary_name.c_str(), 2679 debugger_sp)) { 2680 error.SetErrorString("calling __lldb_init_module failed"); 2681 return false; 2682 } 2683 2684 if (module_sp) { 2685 // everything went just great, now set the module object 2686 command_stream.Clear(); 2687 command_stream.Printf("%s", basename.c_str()); 2688 void *module_pyobj = nullptr; 2689 if (ExecuteOneLineWithReturn( 2690 command_stream.GetData(), 2691 ScriptInterpreter::eScriptReturnTypeOpaqueObject, 2692 &module_pyobj) && 2693 module_pyobj) 2694 module_sp->reset(new StructuredPythonObject(module_pyobj)); 2695 } 2696 2697 return true; 2698 } 2699 } 2700 2701 bool ScriptInterpreterPython::IsReservedWord(const char *word) { 2702 if (!word || !word[0]) 2703 return false; 2704 2705 llvm::StringRef word_sr(word); 2706 2707 // filter out a few characters that would just confuse us 2708 // and that are clearly not keyword material anyway 2709 if (word_sr.find_first_of("'\"") != llvm::StringRef::npos) 2710 return false; 2711 2712 StreamString command_stream; 2713 command_stream.Printf("keyword.iskeyword('%s')", word); 2714 bool result; 2715 ExecuteScriptOptions options; 2716 options.SetEnableIO(false); 2717 options.SetMaskoutErrors(true); 2718 options.SetSetLLDBGlobals(false); 2719 if (ExecuteOneLineWithReturn(command_stream.GetData(), 2720 ScriptInterpreter::eScriptReturnTypeBool, 2721 &result, options)) 2722 return result; 2723 return false; 2724 } 2725 2726 ScriptInterpreterPython::SynchronicityHandler::SynchronicityHandler( 2727 lldb::DebuggerSP debugger_sp, ScriptedCommandSynchronicity synchro) 2728 : m_debugger_sp(debugger_sp), m_synch_wanted(synchro), 2729 m_old_asynch(debugger_sp->GetAsyncExecution()) { 2730 if (m_synch_wanted == eScriptedCommandSynchronicitySynchronous) 2731 m_debugger_sp->SetAsyncExecution(false); 2732 else if (m_synch_wanted == eScriptedCommandSynchronicityAsynchronous) 2733 m_debugger_sp->SetAsyncExecution(true); 2734 } 2735 2736 ScriptInterpreterPython::SynchronicityHandler::~SynchronicityHandler() { 2737 if (m_synch_wanted != eScriptedCommandSynchronicityCurrentValue) 2738 m_debugger_sp->SetAsyncExecution(m_old_asynch); 2739 } 2740 2741 bool ScriptInterpreterPython::RunScriptBasedCommand( 2742 const char *impl_function, const char *args, 2743 ScriptedCommandSynchronicity synchronicity, 2744 lldb_private::CommandReturnObject &cmd_retobj, Status &error, 2745 const lldb_private::ExecutionContext &exe_ctx) { 2746 if (!impl_function) { 2747 error.SetErrorString("no function to execute"); 2748 return false; 2749 } 2750 2751 if (!g_swig_call_command) { 2752 error.SetErrorString("no helper function to run scripted commands"); 2753 return false; 2754 } 2755 2756 lldb::DebuggerSP debugger_sp = m_interpreter.GetDebugger().shared_from_this(); 2757 lldb::ExecutionContextRefSP exe_ctx_ref_sp(new ExecutionContextRef(exe_ctx)); 2758 2759 if (!debugger_sp.get()) { 2760 error.SetErrorString("invalid Debugger pointer"); 2761 return false; 2762 } 2763 2764 bool ret_val = false; 2765 2766 std::string err_msg; 2767 2768 { 2769 Locker py_lock(this, 2770 Locker::AcquireLock | Locker::InitSession | 2771 (cmd_retobj.GetInteractive() ? 0 : Locker::NoSTDIN), 2772 Locker::FreeLock | Locker::TearDownSession); 2773 2774 SynchronicityHandler synch_handler(debugger_sp, synchronicity); 2775 2776 ret_val = 2777 g_swig_call_command(impl_function, m_dictionary_name.c_str(), 2778 debugger_sp, args, cmd_retobj, exe_ctx_ref_sp); 2779 } 2780 2781 if (!ret_val) 2782 error.SetErrorString("unable to execute script function"); 2783 else 2784 error.Clear(); 2785 2786 return ret_val; 2787 } 2788 2789 bool ScriptInterpreterPython::RunScriptBasedCommand( 2790 StructuredData::GenericSP impl_obj_sp, const char *args, 2791 ScriptedCommandSynchronicity synchronicity, 2792 lldb_private::CommandReturnObject &cmd_retobj, Status &error, 2793 const lldb_private::ExecutionContext &exe_ctx) { 2794 if (!impl_obj_sp || !impl_obj_sp->IsValid()) { 2795 error.SetErrorString("no function to execute"); 2796 return false; 2797 } 2798 2799 if (!g_swig_call_command_object) { 2800 error.SetErrorString("no helper function to run scripted commands"); 2801 return false; 2802 } 2803 2804 lldb::DebuggerSP debugger_sp = m_interpreter.GetDebugger().shared_from_this(); 2805 lldb::ExecutionContextRefSP exe_ctx_ref_sp(new ExecutionContextRef(exe_ctx)); 2806 2807 if (!debugger_sp.get()) { 2808 error.SetErrorString("invalid Debugger pointer"); 2809 return false; 2810 } 2811 2812 bool ret_val = false; 2813 2814 std::string err_msg; 2815 2816 { 2817 Locker py_lock(this, 2818 Locker::AcquireLock | Locker::InitSession | 2819 (cmd_retobj.GetInteractive() ? 0 : Locker::NoSTDIN), 2820 Locker::FreeLock | Locker::TearDownSession); 2821 2822 SynchronicityHandler synch_handler(debugger_sp, synchronicity); 2823 2824 ret_val = g_swig_call_command_object(impl_obj_sp->GetValue(), debugger_sp, 2825 args, cmd_retobj, exe_ctx_ref_sp); 2826 } 2827 2828 if (!ret_val) 2829 error.SetErrorString("unable to execute script function"); 2830 else 2831 error.Clear(); 2832 2833 return ret_val; 2834 } 2835 2836 // in Python, a special attribute __doc__ contains the docstring 2837 // for an object (function, method, class, ...) if any is defined 2838 // Otherwise, the attribute's value is None 2839 bool ScriptInterpreterPython::GetDocumentationForItem(const char *item, 2840 std::string &dest) { 2841 dest.clear(); 2842 if (!item || !*item) 2843 return false; 2844 std::string command(item); 2845 command += ".__doc__"; 2846 2847 char *result_ptr = nullptr; // Python is going to point this to valid data if 2848 // ExecuteOneLineWithReturn returns successfully 2849 2850 if (ExecuteOneLineWithReturn( 2851 command.c_str(), ScriptInterpreter::eScriptReturnTypeCharStrOrNone, 2852 &result_ptr, 2853 ScriptInterpreter::ExecuteScriptOptions().SetEnableIO(false))) { 2854 if (result_ptr) 2855 dest.assign(result_ptr); 2856 return true; 2857 } else { 2858 StreamString str_stream; 2859 str_stream.Printf( 2860 "Function %s was not found. Containing module might be missing.", item); 2861 dest = str_stream.GetString(); 2862 return false; 2863 } 2864 } 2865 2866 bool ScriptInterpreterPython::GetShortHelpForCommandObject( 2867 StructuredData::GenericSP cmd_obj_sp, std::string &dest) { 2868 bool got_string = false; 2869 dest.clear(); 2870 2871 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); 2872 2873 static char callee_name[] = "get_short_help"; 2874 2875 if (!cmd_obj_sp) 2876 return false; 2877 2878 PythonObject implementor(PyRefType::Borrowed, 2879 (PyObject *)cmd_obj_sp->GetValue()); 2880 2881 if (!implementor.IsAllocated()) 2882 return false; 2883 2884 PythonObject pmeth(PyRefType::Owned, 2885 PyObject_GetAttrString(implementor.get(), callee_name)); 2886 2887 if (PyErr_Occurred()) 2888 PyErr_Clear(); 2889 2890 if (!pmeth.IsAllocated()) 2891 return false; 2892 2893 if (PyCallable_Check(pmeth.get()) == 0) { 2894 if (PyErr_Occurred()) 2895 PyErr_Clear(); 2896 return false; 2897 } 2898 2899 if (PyErr_Occurred()) 2900 PyErr_Clear(); 2901 2902 // right now we know this function exists and is callable.. 2903 PythonObject py_return( 2904 PyRefType::Owned, 2905 PyObject_CallMethod(implementor.get(), callee_name, nullptr)); 2906 2907 // if it fails, print the error but otherwise go on 2908 if (PyErr_Occurred()) { 2909 PyErr_Print(); 2910 PyErr_Clear(); 2911 } 2912 2913 if (py_return.IsAllocated() && PythonString::Check(py_return.get())) { 2914 PythonString py_string(PyRefType::Borrowed, py_return.get()); 2915 llvm::StringRef return_data(py_string.GetString()); 2916 dest.assign(return_data.data(), return_data.size()); 2917 got_string = true; 2918 } 2919 return got_string; 2920 } 2921 2922 uint32_t ScriptInterpreterPython::GetFlagsForCommandObject( 2923 StructuredData::GenericSP cmd_obj_sp) { 2924 uint32_t result = 0; 2925 2926 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); 2927 2928 static char callee_name[] = "get_flags"; 2929 2930 if (!cmd_obj_sp) 2931 return result; 2932 2933 PythonObject implementor(PyRefType::Borrowed, 2934 (PyObject *)cmd_obj_sp->GetValue()); 2935 2936 if (!implementor.IsAllocated()) 2937 return result; 2938 2939 PythonObject pmeth(PyRefType::Owned, 2940 PyObject_GetAttrString(implementor.get(), callee_name)); 2941 2942 if (PyErr_Occurred()) 2943 PyErr_Clear(); 2944 2945 if (!pmeth.IsAllocated()) 2946 return result; 2947 2948 if (PyCallable_Check(pmeth.get()) == 0) { 2949 if (PyErr_Occurred()) 2950 PyErr_Clear(); 2951 return result; 2952 } 2953 2954 if (PyErr_Occurred()) 2955 PyErr_Clear(); 2956 2957 // right now we know this function exists and is callable.. 2958 PythonObject py_return( 2959 PyRefType::Owned, 2960 PyObject_CallMethod(implementor.get(), callee_name, nullptr)); 2961 2962 // if it fails, print the error but otherwise go on 2963 if (PyErr_Occurred()) { 2964 PyErr_Print(); 2965 PyErr_Clear(); 2966 } 2967 2968 if (py_return.IsAllocated() && PythonInteger::Check(py_return.get())) { 2969 PythonInteger int_value(PyRefType::Borrowed, py_return.get()); 2970 result = int_value.GetInteger(); 2971 } 2972 2973 return result; 2974 } 2975 2976 bool ScriptInterpreterPython::GetLongHelpForCommandObject( 2977 StructuredData::GenericSP cmd_obj_sp, std::string &dest) { 2978 bool got_string = false; 2979 dest.clear(); 2980 2981 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); 2982 2983 static char callee_name[] = "get_long_help"; 2984 2985 if (!cmd_obj_sp) 2986 return false; 2987 2988 PythonObject implementor(PyRefType::Borrowed, 2989 (PyObject *)cmd_obj_sp->GetValue()); 2990 2991 if (!implementor.IsAllocated()) 2992 return false; 2993 2994 PythonObject pmeth(PyRefType::Owned, 2995 PyObject_GetAttrString(implementor.get(), callee_name)); 2996 2997 if (PyErr_Occurred()) 2998 PyErr_Clear(); 2999 3000 if (!pmeth.IsAllocated()) 3001 return false; 3002 3003 if (PyCallable_Check(pmeth.get()) == 0) { 3004 if (PyErr_Occurred()) 3005 PyErr_Clear(); 3006 3007 return false; 3008 } 3009 3010 if (PyErr_Occurred()) 3011 PyErr_Clear(); 3012 3013 // right now we know this function exists and is callable.. 3014 PythonObject py_return( 3015 PyRefType::Owned, 3016 PyObject_CallMethod(implementor.get(), callee_name, nullptr)); 3017 3018 // if it fails, print the error but otherwise go on 3019 if (PyErr_Occurred()) { 3020 PyErr_Print(); 3021 PyErr_Clear(); 3022 } 3023 3024 if (py_return.IsAllocated() && PythonString::Check(py_return.get())) { 3025 PythonString str(PyRefType::Borrowed, py_return.get()); 3026 llvm::StringRef str_data(str.GetString()); 3027 dest.assign(str_data.data(), str_data.size()); 3028 got_string = true; 3029 } 3030 3031 return got_string; 3032 } 3033 3034 std::unique_ptr<ScriptInterpreterLocker> 3035 ScriptInterpreterPython::AcquireInterpreterLock() { 3036 std::unique_ptr<ScriptInterpreterLocker> py_lock(new Locker( 3037 this, Locker::AcquireLock | Locker::InitSession | Locker::NoSTDIN, 3038 Locker::FreeLock | Locker::TearDownSession)); 3039 return py_lock; 3040 } 3041 3042 void ScriptInterpreterPython::InitializeInterpreter( 3043 SWIGInitCallback swig_init_callback, 3044 SWIGBreakpointCallbackFunction swig_breakpoint_callback, 3045 SWIGWatchpointCallbackFunction swig_watchpoint_callback, 3046 SWIGPythonTypeScriptCallbackFunction swig_typescript_callback, 3047 SWIGPythonCreateSyntheticProvider swig_synthetic_script, 3048 SWIGPythonCreateCommandObject swig_create_cmd, 3049 SWIGPythonCalculateNumChildren swig_calc_children, 3050 SWIGPythonGetChildAtIndex swig_get_child_index, 3051 SWIGPythonGetIndexOfChildWithName swig_get_index_child, 3052 SWIGPythonCastPyObjectToSBValue swig_cast_to_sbvalue, 3053 SWIGPythonGetValueObjectSPFromSBValue swig_get_valobj_sp_from_sbvalue, 3054 SWIGPythonUpdateSynthProviderInstance swig_update_provider, 3055 SWIGPythonMightHaveChildrenSynthProviderInstance 3056 swig_mighthavechildren_provider, 3057 SWIGPythonGetValueSynthProviderInstance swig_getvalue_provider, 3058 SWIGPythonCallCommand swig_call_command, 3059 SWIGPythonCallCommandObject swig_call_command_object, 3060 SWIGPythonCallModuleInit swig_call_module_init, 3061 SWIGPythonCreateOSPlugin swig_create_os_plugin, 3062 SWIGPythonScriptKeyword_Process swig_run_script_keyword_process, 3063 SWIGPythonScriptKeyword_Thread swig_run_script_keyword_thread, 3064 SWIGPythonScriptKeyword_Target swig_run_script_keyword_target, 3065 SWIGPythonScriptKeyword_Frame swig_run_script_keyword_frame, 3066 SWIGPythonScriptKeyword_Value swig_run_script_keyword_value, 3067 SWIGPython_GetDynamicSetting swig_plugin_get, 3068 SWIGPythonCreateScriptedThreadPlan swig_thread_plan_script, 3069 SWIGPythonCallThreadPlan swig_call_thread_plan) { 3070 g_swig_init_callback = swig_init_callback; 3071 g_swig_breakpoint_callback = swig_breakpoint_callback; 3072 g_swig_watchpoint_callback = swig_watchpoint_callback; 3073 g_swig_typescript_callback = swig_typescript_callback; 3074 g_swig_synthetic_script = swig_synthetic_script; 3075 g_swig_create_cmd = swig_create_cmd; 3076 g_swig_calc_children = swig_calc_children; 3077 g_swig_get_child_index = swig_get_child_index; 3078 g_swig_get_index_child = swig_get_index_child; 3079 g_swig_cast_to_sbvalue = swig_cast_to_sbvalue; 3080 g_swig_get_valobj_sp_from_sbvalue = swig_get_valobj_sp_from_sbvalue; 3081 g_swig_update_provider = swig_update_provider; 3082 g_swig_mighthavechildren_provider = swig_mighthavechildren_provider; 3083 g_swig_getvalue_provider = swig_getvalue_provider; 3084 g_swig_call_command = swig_call_command; 3085 g_swig_call_command_object = swig_call_command_object; 3086 g_swig_call_module_init = swig_call_module_init; 3087 g_swig_create_os_plugin = swig_create_os_plugin; 3088 g_swig_run_script_keyword_process = swig_run_script_keyword_process; 3089 g_swig_run_script_keyword_thread = swig_run_script_keyword_thread; 3090 g_swig_run_script_keyword_target = swig_run_script_keyword_target; 3091 g_swig_run_script_keyword_frame = swig_run_script_keyword_frame; 3092 g_swig_run_script_keyword_value = swig_run_script_keyword_value; 3093 g_swig_plugin_get = swig_plugin_get; 3094 g_swig_thread_plan_script = swig_thread_plan_script; 3095 g_swig_call_thread_plan = swig_call_thread_plan; 3096 } 3097 3098 void ScriptInterpreterPython::InitializePrivate() { 3099 if (g_initialized) 3100 return; 3101 3102 g_initialized = true; 3103 3104 static Timer::Category func_cat(LLVM_PRETTY_FUNCTION); 3105 Timer scoped_timer(func_cat, LLVM_PRETTY_FUNCTION); 3106 3107 // RAII-based initialization which correctly handles multiple-initialization, 3108 // version- 3109 // specific differences among Python 2 and Python 3, and saving and restoring 3110 // various 3111 // other pieces of state that can get mucked with during initialization. 3112 InitializePythonRAII initialize_guard; 3113 3114 if (g_swig_init_callback) 3115 g_swig_init_callback(); 3116 3117 // Update the path python uses to search for modules to include the current 3118 // directory. 3119 3120 PyRun_SimpleString("import sys"); 3121 AddToSysPath(AddLocation::End, "."); 3122 3123 FileSpec file_spec; 3124 // Don't denormalize paths when calling file_spec.GetPath(). On platforms 3125 // that use 3126 // a backslash as the path separator, this will result in executing python 3127 // code containing 3128 // paths with unescaped backslashes. But Python also accepts forward slashes, 3129 // so to make 3130 // life easier we just use that. 3131 if (HostInfo::GetLLDBPath(ePathTypePythonDir, file_spec)) 3132 AddToSysPath(AddLocation::Beginning, file_spec.GetPath(false)); 3133 if (HostInfo::GetLLDBPath(ePathTypeLLDBShlibDir, file_spec)) 3134 AddToSysPath(AddLocation::Beginning, file_spec.GetPath(false)); 3135 3136 PyRun_SimpleString("sys.dont_write_bytecode = 1; import " 3137 "lldb.embedded_interpreter; from " 3138 "lldb.embedded_interpreter import run_python_interpreter; " 3139 "from lldb.embedded_interpreter import run_one_line"); 3140 } 3141 3142 void ScriptInterpreterPython::AddToSysPath(AddLocation location, 3143 std::string path) { 3144 std::string path_copy; 3145 3146 std::string statement; 3147 if (location == AddLocation::Beginning) { 3148 statement.assign("sys.path.insert(0,\""); 3149 statement.append(path); 3150 statement.append("\")"); 3151 } else { 3152 statement.assign("sys.path.append(\""); 3153 statement.append(path); 3154 statement.append("\")"); 3155 } 3156 PyRun_SimpleString(statement.c_str()); 3157 } 3158 3159 // void 3160 // ScriptInterpreterPython::Terminate () 3161 //{ 3162 // // We are intentionally NOT calling Py_Finalize here (this would be the 3163 // logical place to call it). Calling 3164 // // Py_Finalize here causes test suite runs to seg fault: The test suite 3165 // runs in Python. It registers 3166 // // SBDebugger::Terminate to be called 'at_exit'. When the test suite 3167 // Python harness finishes up, it calls 3168 // // Py_Finalize, which calls all the 'at_exit' registered functions. 3169 // SBDebugger::Terminate calls Debugger::Terminate, 3170 // // which calls lldb::Terminate, which calls ScriptInterpreter::Terminate, 3171 // which calls 3172 // // ScriptInterpreterPython::Terminate. So if we call Py_Finalize here, we 3173 // end up with Py_Finalize being called from 3174 // // within Py_Finalize, which results in a seg fault. 3175 // // 3176 // // Since this function only gets called when lldb is shutting down and 3177 // going away anyway, the fact that we don't 3178 // // actually call Py_Finalize should not cause any problems (everything 3179 // should shut down/go away anyway when the 3180 // // process exits). 3181 // // 3182 //// Py_Finalize (); 3183 //} 3184 3185 #endif // #ifdef LLDB_DISABLE_PYTHON 3186