blob: 8340c4055c189c7e3eacd217d31856a848aa8aad [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- Process.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
Eugene Zelenko8f30a652015-10-23 18:39:37 +000010// C Includes
11// C++ Includes
Greg Clayton5cc45e02016-02-26 19:41:49 +000012#include <atomic>
Greg Clayton04df8ee2016-02-26 19:38:18 +000013#include <mutex>
Eugene Zelenko8f30a652015-10-23 18:39:37 +000014// Other libraries and framework includes
15// Project includes
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016#include "lldb/Target/Process.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017#include "lldb/Breakpoint/StoppointCallbackContext.h"
18#include "lldb/Breakpoint/BreakpointLocation.h"
19#include "lldb/Core/Event.h"
20#include "lldb/Core/Debugger.h"
21#include "lldb/Core/Log.h"
Greg Clayton1f746072012-08-29 21:13:06 +000022#include "lldb/Core/Module.h"
Tamas Berghammer7cb18bf2015-03-24 11:15:23 +000023#include "lldb/Core/ModuleSpec.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000024#include "lldb/Core/PluginManager.h"
25#include "lldb/Core/State.h"
Greg Clayton44d93782014-01-27 23:43:24 +000026#include "lldb/Core/StreamFile.h"
Jim Ingham151c0322015-09-15 21:13:50 +000027#include "lldb/Expression/UserExpression.h"
Zachary Turner93749ab2015-03-03 21:51:25 +000028#include "lldb/Expression/IRDynamicChecks.h"
Zachary Turner93a66fc2014-10-06 21:22:36 +000029#include "lldb/Host/ConnectionFileDescriptor.h"
Zachary Turner4eff2d32015-10-14 21:37:36 +000030#include "lldb/Host/FileSystem.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000031#include "lldb/Host/Host.h"
Zachary Turner39de3112014-09-09 20:54:56 +000032#include "lldb/Host/HostInfo.h"
Greg Clayton100eb932014-07-02 21:10:39 +000033#include "lldb/Host/Pipe.h"
Greg Clayton44d93782014-01-27 23:43:24 +000034#include "lldb/Host/Terminal.h"
Zachary Turner39de3112014-09-09 20:54:56 +000035#include "lldb/Host/ThreadLauncher.h"
Zachary Turner93a66fc2014-10-06 21:22:36 +000036#include "lldb/Interpreter/CommandInterpreter.h"
Zachary Turner633a29c2015-03-04 01:58:01 +000037#include "lldb/Interpreter/OptionValueProperties.h"
Jason Molenda484900b2015-08-10 07:55:25 +000038#include "lldb/Symbol/Function.h"
Zachary Turner93a66fc2014-10-06 21:22:36 +000039#include "lldb/Symbol/Symbol.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000040#include "lldb/Target/ABI.h"
Greg Clayton8f343b02010-11-04 01:54:29 +000041#include "lldb/Target/DynamicLoader.h"
Zachary Turner93749ab2015-03-03 21:51:25 +000042#include "lldb/Target/InstrumentationRuntime.h"
Andrew MacPherson17220c12014-03-05 10:12:43 +000043#include "lldb/Target/JITLoader.h"
Zachary Turner93749ab2015-03-03 21:51:25 +000044#include "lldb/Target/JITLoaderList.h"
Kuba Breckaa51ea382014-09-06 01:33:13 +000045#include "lldb/Target/MemoryHistory.h"
Zachary Turner93749ab2015-03-03 21:51:25 +000046#include "lldb/Target/MemoryRegionInfo.h"
Greg Clayton56d9a1b2011-08-22 02:49:39 +000047#include "lldb/Target/OperatingSystem.h"
Jim Ingham22777012010-09-23 02:01:19 +000048#include "lldb/Target/LanguageRuntime.h"
49#include "lldb/Target/CPPLanguageRuntime.h"
50#include "lldb/Target/ObjCLanguageRuntime.h"
Greg Claytone996fd32011-03-08 22:40:15 +000051#include "lldb/Target/Platform.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000052#include "lldb/Target/RegisterContext.h"
Greg Claytonf4b47e12010-08-04 01:40:35 +000053#include "lldb/Target/StopInfo.h"
Jason Molendaeef51062013-11-05 03:57:19 +000054#include "lldb/Target/SystemRuntime.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000055#include "lldb/Target/Target.h"
56#include "lldb/Target/TargetList.h"
57#include "lldb/Target/Thread.h"
58#include "lldb/Target/ThreadPlan.h"
Jim Ingham076b3042012-04-10 01:21:57 +000059#include "lldb/Target/ThreadPlanBase.h"
Zachary Turner93749ab2015-03-03 21:51:25 +000060#include "lldb/Target/UnixSignals.h"
Zachary Turner50232572015-03-18 21:31:45 +000061#include "lldb/Utility/NameMatches.h"
Jim Ingham1460e4b2014-01-10 23:46:59 +000062#include "Plugins/Process/Utility/InferiorCallPOSIX.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000063
64using namespace lldb;
65using namespace lldb_private;
66
Greg Clayton67cc0632012-08-22 17:17:09 +000067// Comment out line below to disable memory caching, overriding the process setting
68// target.process.disable-memory-cache
69#define ENABLE_MEMORY_CACHING
70
71#ifdef ENABLE_MEMORY_CACHING
72#define DISABLE_MEM_CACHE_DEFAULT false
73#else
74#define DISABLE_MEM_CACHE_DEFAULT true
75#endif
76
77class ProcessOptionValueProperties : public OptionValueProperties
78{
79public:
80 ProcessOptionValueProperties (const ConstString &name) :
81 OptionValueProperties (name)
82 {
83 }
84
85 // This constructor is used when creating ProcessOptionValueProperties when it
86 // is part of a new lldb_private::Process instance. It will copy all current
87 // global property values as needed
88 ProcessOptionValueProperties (ProcessProperties *global_properties) :
89 OptionValueProperties(*global_properties->GetValueProperties())
90 {
91 }
92
Eugene Zelenko8f30a652015-10-23 18:39:37 +000093 const Property *
94 GetPropertyAtIndex(const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const override
Greg Clayton67cc0632012-08-22 17:17:09 +000095 {
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +000096 // When getting the value for a key from the process options, we will always
Greg Clayton67cc0632012-08-22 17:17:09 +000097 // try and grab the setting from the current process if there is one. Else we just
98 // use the one from this instance.
99 if (exe_ctx)
100 {
101 Process *process = exe_ctx->GetProcessPtr();
102 if (process)
103 {
104 ProcessOptionValueProperties *instance_properties = static_cast<ProcessOptionValueProperties *>(process->GetValueProperties().get());
105 if (this != instance_properties)
106 return instance_properties->ProtectedGetPropertyAtIndex (idx);
107 }
108 }
109 return ProtectedGetPropertyAtIndex (idx);
110 }
111};
112
113static PropertyDefinition
114g_properties[] =
115{
116 { "disable-memory-cache" , OptionValue::eTypeBoolean, false, DISABLE_MEM_CACHE_DEFAULT, NULL, NULL, "Disable reading and caching of memory in fixed-size units." },
Jim Ingham8c3f2762012-11-29 00:41:12 +0000117 { "extra-startup-command", OptionValue::eTypeArray , false, OptionValue::eTypeString, NULL, NULL, "A list containing extra commands understood by the particular process plugin used. "
118 "For instance, to turn on debugserver logging set this to \"QSetLogging:bitmask=LOG_DEFAULT;\"" },
Jim Inghamafc1b122013-01-31 19:48:57 +0000119 { "ignore-breakpoints-in-expressions", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, breakpoints will be ignored during expression evaluation." },
120 { "unwind-on-error-in-expressions", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, errors in expression evaluation will unwind the stack back to the state before the call." },
Greg Claytone1e835c2012-11-29 18:48:47 +0000121 { "python-os-plugin-path", OptionValue::eTypeFileSpec, false, true, NULL, NULL, "A path to a python OS plug-in module file that contains a OperatingSystemPlugIn class." },
Jim Ingham29950772013-01-26 02:19:28 +0000122 { "stop-on-sharedlibrary-events" , OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, stop when a shared library is loaded or unloaded." },
Jim Inghamacff8952013-05-02 00:27:30 +0000123 { "detach-keeps-stopped" , OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, detach will attempt to keep the process stopped." },
Jason Molendaf0340c92014-09-03 22:30:54 +0000124 { "memory-cache-line-size" , OptionValue::eTypeUInt64, false, 512, NULL, NULL, "The memory cache line size" },
Jason Molendaef7d6412015-08-06 03:27:10 +0000125 { "optimization-warnings" , OptionValue::eTypeBoolean, false, true, NULL, NULL, "If true, warn when stopped in code that is optimized where stepping and variable availability may not behave as expected." },
Greg Clayton67cc0632012-08-22 17:17:09 +0000126 { NULL , OptionValue::eTypeInvalid, false, 0, NULL, NULL, NULL }
127};
128
129enum {
130 ePropertyDisableMemCache,
Greg Claytonc9d645d2012-10-18 22:40:37 +0000131 ePropertyExtraStartCommand,
Jim Ingham184e9812013-01-15 02:47:48 +0000132 ePropertyIgnoreBreakpointsInExpressions,
133 ePropertyUnwindOnErrorInExpressions,
Jim Ingham29950772013-01-26 02:19:28 +0000134 ePropertyPythonOSPluginPath,
Jim Inghamacff8952013-05-02 00:27:30 +0000135 ePropertyStopOnSharedLibraryEvents,
Jason Molendaf0340c92014-09-03 22:30:54 +0000136 ePropertyDetachKeepsStopped,
Jason Molendaef7d6412015-08-06 03:27:10 +0000137 ePropertyMemCacheLineSize,
138 ePropertyWarningOptimization
Greg Clayton67cc0632012-08-22 17:17:09 +0000139};
140
Greg Clayton332e8b12015-01-13 21:13:08 +0000141ProcessProperties::ProcessProperties (lldb_private::Process *process) :
142 Properties (),
143 m_process (process) // Can be NULL for global ProcessProperties
Greg Clayton67cc0632012-08-22 17:17:09 +0000144{
Greg Clayton332e8b12015-01-13 21:13:08 +0000145 if (process == NULL)
Greg Clayton67cc0632012-08-22 17:17:09 +0000146 {
Greg Clayton332e8b12015-01-13 21:13:08 +0000147 // Global process properties, set them up one time
Greg Clayton67cc0632012-08-22 17:17:09 +0000148 m_collection_sp.reset (new ProcessOptionValueProperties(ConstString("process")));
149 m_collection_sp->Initialize(g_properties);
150 m_collection_sp->AppendProperty(ConstString("thread"),
Jim Ingham29950772013-01-26 02:19:28 +0000151 ConstString("Settings specific to threads."),
Greg Clayton67cc0632012-08-22 17:17:09 +0000152 true,
153 Thread::GetGlobalProperties()->GetValueProperties());
154 }
155 else
Greg Clayton332e8b12015-01-13 21:13:08 +0000156 {
Greg Clayton67cc0632012-08-22 17:17:09 +0000157 m_collection_sp.reset (new ProcessOptionValueProperties(Process::GetGlobalProperties().get()));
Greg Clayton332e8b12015-01-13 21:13:08 +0000158 m_collection_sp->SetValueChangedCallback(ePropertyPythonOSPluginPath, ProcessProperties::OptionValueChangedCallback, this);
159 }
Greg Clayton67cc0632012-08-22 17:17:09 +0000160}
161
Eugene Zelenko8f30a652015-10-23 18:39:37 +0000162ProcessProperties::~ProcessProperties() = default;
Greg Clayton67cc0632012-08-22 17:17:09 +0000163
Greg Clayton332e8b12015-01-13 21:13:08 +0000164void
165ProcessProperties::OptionValueChangedCallback (void *baton, OptionValue *option_value)
166{
167 ProcessProperties *properties = (ProcessProperties *)baton;
168 if (properties->m_process)
169 properties->m_process->LoadOperatingSystemPlugin(true);
170}
171
Greg Clayton67cc0632012-08-22 17:17:09 +0000172bool
173ProcessProperties::GetDisableMemoryCache() const
174{
175 const uint32_t idx = ePropertyDisableMemCache;
176 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
177}
178
Jason Molendaf0340c92014-09-03 22:30:54 +0000179uint64_t
180ProcessProperties::GetMemoryCacheLineSize() const
181{
182 const uint32_t idx = ePropertyMemCacheLineSize;
183 return m_collection_sp->GetPropertyAtIndexAsUInt64 (NULL, idx, g_properties[idx].default_uint_value);
184}
185
Greg Clayton67cc0632012-08-22 17:17:09 +0000186Args
187ProcessProperties::GetExtraStartupCommands () const
188{
189 Args args;
190 const uint32_t idx = ePropertyExtraStartCommand;
191 m_collection_sp->GetPropertyAtIndexAsArgs(NULL, idx, args);
192 return args;
193}
194
195void
196ProcessProperties::SetExtraStartupCommands (const Args &args)
197{
198 const uint32_t idx = ePropertyExtraStartCommand;
199 m_collection_sp->SetPropertyAtIndexFromArgs(NULL, idx, args);
200}
201
Greg Claytonc9d645d2012-10-18 22:40:37 +0000202FileSpec
203ProcessProperties::GetPythonOSPluginPath () const
204{
205 const uint32_t idx = ePropertyPythonOSPluginPath;
206 return m_collection_sp->GetPropertyAtIndexAsFileSpec(NULL, idx);
207}
208
209void
210ProcessProperties::SetPythonOSPluginPath (const FileSpec &file)
211{
212 const uint32_t idx = ePropertyPythonOSPluginPath;
213 m_collection_sp->SetPropertyAtIndexAsFileSpec(NULL, idx, file);
214}
215
Jim Ingham184e9812013-01-15 02:47:48 +0000216bool
217ProcessProperties::GetIgnoreBreakpointsInExpressions () const
218{
219 const uint32_t idx = ePropertyIgnoreBreakpointsInExpressions;
220 return m_collection_sp->GetPropertyAtIndexAsBoolean(NULL, idx, g_properties[idx].default_uint_value != 0);
221}
222
223void
224ProcessProperties::SetIgnoreBreakpointsInExpressions (bool ignore)
225{
226 const uint32_t idx = ePropertyIgnoreBreakpointsInExpressions;
227 m_collection_sp->SetPropertyAtIndexAsBoolean(NULL, idx, ignore);
228}
229
230bool
231ProcessProperties::GetUnwindOnErrorInExpressions () const
232{
233 const uint32_t idx = ePropertyUnwindOnErrorInExpressions;
234 return m_collection_sp->GetPropertyAtIndexAsBoolean(NULL, idx, g_properties[idx].default_uint_value != 0);
235}
236
237void
238ProcessProperties::SetUnwindOnErrorInExpressions (bool ignore)
239{
240 const uint32_t idx = ePropertyUnwindOnErrorInExpressions;
241 m_collection_sp->SetPropertyAtIndexAsBoolean(NULL, idx, ignore);
242}
243
Jim Ingham29950772013-01-26 02:19:28 +0000244bool
245ProcessProperties::GetStopOnSharedLibraryEvents () const
246{
247 const uint32_t idx = ePropertyStopOnSharedLibraryEvents;
248 return m_collection_sp->GetPropertyAtIndexAsBoolean(NULL, idx, g_properties[idx].default_uint_value != 0);
249}
250
251void
252ProcessProperties::SetStopOnSharedLibraryEvents (bool stop)
253{
254 const uint32_t idx = ePropertyStopOnSharedLibraryEvents;
255 m_collection_sp->SetPropertyAtIndexAsBoolean(NULL, idx, stop);
256}
257
Jim Inghamacff8952013-05-02 00:27:30 +0000258bool
259ProcessProperties::GetDetachKeepsStopped () const
260{
261 const uint32_t idx = ePropertyDetachKeepsStopped;
262 return m_collection_sp->GetPropertyAtIndexAsBoolean(NULL, idx, g_properties[idx].default_uint_value != 0);
263}
264
265void
266ProcessProperties::SetDetachKeepsStopped (bool stop)
267{
268 const uint32_t idx = ePropertyDetachKeepsStopped;
269 m_collection_sp->SetPropertyAtIndexAsBoolean(NULL, idx, stop);
270}
271
Jason Molendaef7d6412015-08-06 03:27:10 +0000272bool
273ProcessProperties::GetWarningsOptimization () const
274{
275 const uint32_t idx = ePropertyWarningOptimization;
276 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
277}
278
Greg Clayton32e0a752011-03-30 18:16:51 +0000279void
Greg Clayton8b82f082011-04-12 05:54:46 +0000280ProcessInstanceInfo::Dump (Stream &s, Platform *platform) const
Greg Clayton32e0a752011-03-30 18:16:51 +0000281{
282 const char *cstr;
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000283 if (m_pid != LLDB_INVALID_PROCESS_ID)
Daniel Malead01b2952012-11-29 21:49:15 +0000284 s.Printf (" pid = %" PRIu64 "\n", m_pid);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000285
286 if (m_parent_pid != LLDB_INVALID_PROCESS_ID)
Daniel Malead01b2952012-11-29 21:49:15 +0000287 s.Printf (" parent = %" PRIu64 "\n", m_parent_pid);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000288
289 if (m_executable)
290 {
291 s.Printf (" name = %s\n", m_executable.GetFilename().GetCString());
292 s.PutCString (" file = ");
293 m_executable.Dump(&s);
294 s.EOL();
295 }
Greg Clayton8b82f082011-04-12 05:54:46 +0000296 const uint32_t argc = m_arguments.GetArgumentCount();
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000297 if (argc > 0)
298 {
299 for (uint32_t i=0; i<argc; i++)
300 {
Greg Clayton8b82f082011-04-12 05:54:46 +0000301 const char *arg = m_arguments.GetArgumentAtIndex(i);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000302 if (i < 10)
Greg Clayton8b82f082011-04-12 05:54:46 +0000303 s.Printf (" arg[%u] = %s\n", i, arg);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000304 else
Greg Clayton8b82f082011-04-12 05:54:46 +0000305 s.Printf ("arg[%u] = %s\n", i, arg);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000306 }
307 }
Greg Clayton8b82f082011-04-12 05:54:46 +0000308
309 const uint32_t envc = m_environment.GetArgumentCount();
310 if (envc > 0)
311 {
312 for (uint32_t i=0; i<envc; i++)
313 {
314 const char *env = m_environment.GetArgumentAtIndex(i);
315 if (i < 10)
316 s.Printf (" env[%u] = %s\n", i, env);
317 else
318 s.Printf ("env[%u] = %s\n", i, env);
319 }
320 }
321
Todd Fiala7df337f2015-10-13 23:41:19 +0000322 if (m_arch.IsValid())
323 {
324 s.Printf (" arch = ");
325 m_arch.DumpTriple(s);
326 s.EOL();
327 }
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000328
Greg Clayton8b82f082011-04-12 05:54:46 +0000329 if (m_uid != UINT32_MAX)
Greg Clayton32e0a752011-03-30 18:16:51 +0000330 {
Greg Clayton8b82f082011-04-12 05:54:46 +0000331 cstr = platform->GetUserName (m_uid);
332 s.Printf (" uid = %-5u (%s)\n", m_uid, cstr ? cstr : "");
Greg Clayton32e0a752011-03-30 18:16:51 +0000333 }
Greg Clayton8b82f082011-04-12 05:54:46 +0000334 if (m_gid != UINT32_MAX)
Greg Clayton32e0a752011-03-30 18:16:51 +0000335 {
Greg Clayton8b82f082011-04-12 05:54:46 +0000336 cstr = platform->GetGroupName (m_gid);
337 s.Printf (" gid = %-5u (%s)\n", m_gid, cstr ? cstr : "");
Greg Clayton32e0a752011-03-30 18:16:51 +0000338 }
Greg Clayton8b82f082011-04-12 05:54:46 +0000339 if (m_euid != UINT32_MAX)
Greg Clayton32e0a752011-03-30 18:16:51 +0000340 {
Greg Clayton8b82f082011-04-12 05:54:46 +0000341 cstr = platform->GetUserName (m_euid);
342 s.Printf (" euid = %-5u (%s)\n", m_euid, cstr ? cstr : "");
Greg Clayton32e0a752011-03-30 18:16:51 +0000343 }
Greg Clayton8b82f082011-04-12 05:54:46 +0000344 if (m_egid != UINT32_MAX)
Greg Clayton32e0a752011-03-30 18:16:51 +0000345 {
Greg Clayton8b82f082011-04-12 05:54:46 +0000346 cstr = platform->GetGroupName (m_egid);
347 s.Printf (" egid = %-5u (%s)\n", m_egid, cstr ? cstr : "");
Greg Clayton32e0a752011-03-30 18:16:51 +0000348 }
349}
350
351void
Greg Clayton8b82f082011-04-12 05:54:46 +0000352ProcessInstanceInfo::DumpTableHeader (Stream &s, Platform *platform, bool show_args, bool verbose)
Greg Clayton32e0a752011-03-30 18:16:51 +0000353{
Greg Clayton8b82f082011-04-12 05:54:46 +0000354 const char *label;
355 if (show_args || verbose)
356 label = "ARGUMENTS";
357 else
358 label = "NAME";
359
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000360 if (verbose)
361 {
Greg Clayton8b82f082011-04-12 05:54:46 +0000362 s.Printf ("PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE %s\n", label);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000363 s.PutCString ("====== ====== ========== ========== ========== ========== ======================== ============================\n");
364 }
365 else
366 {
Jim Ingham368ac222014-08-15 17:05:27 +0000367 s.Printf ("PID PARENT USER TRIPLE %s\n", label);
368 s.PutCString ("====== ====== ========== ======================== ============================\n");
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000369 }
Greg Clayton32e0a752011-03-30 18:16:51 +0000370}
371
372void
Greg Clayton8b82f082011-04-12 05:54:46 +0000373ProcessInstanceInfo::DumpAsTableRow (Stream &s, Platform *platform, bool show_args, bool verbose) const
Greg Clayton32e0a752011-03-30 18:16:51 +0000374{
375 if (m_pid != LLDB_INVALID_PROCESS_ID)
376 {
377 const char *cstr;
Daniel Malead01b2952012-11-29 21:49:15 +0000378 s.Printf ("%-6" PRIu64 " %-6" PRIu64 " ", m_pid, m_parent_pid);
Greg Clayton32e0a752011-03-30 18:16:51 +0000379
Todd Fiala7df337f2015-10-13 23:41:19 +0000380 StreamString arch_strm;
381 if (m_arch.IsValid())
382 m_arch.DumpTriple(arch_strm);
383
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000384 if (verbose)
385 {
Greg Clayton8b82f082011-04-12 05:54:46 +0000386 cstr = platform->GetUserName (m_uid);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000387 if (cstr && cstr[0]) // Watch for empty string that indicates lookup failed
388 s.Printf ("%-10s ", cstr);
389 else
Greg Clayton8b82f082011-04-12 05:54:46 +0000390 s.Printf ("%-10u ", m_uid);
Greg Clayton32e0a752011-03-30 18:16:51 +0000391
Greg Clayton8b82f082011-04-12 05:54:46 +0000392 cstr = platform->GetGroupName (m_gid);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000393 if (cstr && cstr[0]) // Watch for empty string that indicates lookup failed
394 s.Printf ("%-10s ", cstr);
395 else
Greg Clayton8b82f082011-04-12 05:54:46 +0000396 s.Printf ("%-10u ", m_gid);
Greg Clayton32e0a752011-03-30 18:16:51 +0000397
Greg Clayton8b82f082011-04-12 05:54:46 +0000398 cstr = platform->GetUserName (m_euid);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000399 if (cstr && cstr[0]) // Watch for empty string that indicates lookup failed
400 s.Printf ("%-10s ", cstr);
401 else
Greg Clayton8b82f082011-04-12 05:54:46 +0000402 s.Printf ("%-10u ", m_euid);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000403
Greg Clayton8b82f082011-04-12 05:54:46 +0000404 cstr = platform->GetGroupName (m_egid);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000405 if (cstr && cstr[0]) // Watch for empty string that indicates lookup failed
406 s.Printf ("%-10s ", cstr);
407 else
Greg Clayton8b82f082011-04-12 05:54:46 +0000408 s.Printf ("%-10u ", m_egid);
Todd Fiala7df337f2015-10-13 23:41:19 +0000409
410 s.Printf ("%-24s ", arch_strm.GetString().c_str());
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000411 }
412 else
413 {
Jim Ingham368ac222014-08-15 17:05:27 +0000414 s.Printf ("%-10s %-24s ",
Greg Clayton8b82f082011-04-12 05:54:46 +0000415 platform->GetUserName (m_euid),
Todd Fiala7df337f2015-10-13 23:41:19 +0000416 arch_strm.GetString().c_str());
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000417 }
418
Greg Clayton8b82f082011-04-12 05:54:46 +0000419 if (verbose || show_args)
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000420 {
Greg Clayton8b82f082011-04-12 05:54:46 +0000421 const uint32_t argc = m_arguments.GetArgumentCount();
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000422 if (argc > 0)
423 {
424 for (uint32_t i=0; i<argc; i++)
425 {
426 if (i > 0)
427 s.PutChar (' ');
Greg Clayton8b82f082011-04-12 05:54:46 +0000428 s.PutCString (m_arguments.GetArgumentAtIndex(i));
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000429 }
430 }
431 }
432 else
433 {
434 s.PutCString (GetName());
435 }
436
437 s.EOL();
Greg Clayton32e0a752011-03-30 18:16:51 +0000438 }
439}
440
Greg Clayton8b82f082011-04-12 05:54:46 +0000441Error
Greg Claytonf6b8b582011-04-13 00:18:08 +0000442ProcessLaunchCommandOptions::SetOptionValue (uint32_t option_idx, const char *option_arg)
Greg Clayton8b82f082011-04-12 05:54:46 +0000443{
444 Error error;
Greg Clayton3bcdfc02012-12-04 00:32:51 +0000445 const int short_option = m_getopt_table[option_idx].val;
Greg Clayton8b82f082011-04-12 05:54:46 +0000446
447 switch (short_option)
448 {
449 case 's': // Stop at program entry point
450 launch_info.GetFlags().Set (eLaunchFlagStopAtEntry);
451 break;
452
Greg Clayton8b82f082011-04-12 05:54:46 +0000453 case 'i': // STDIN for read only
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000454 {
455 FileAction action;
Chaoren Lind3173f32015-05-29 19:52:29 +0000456 if (action.Open(STDIN_FILENO, FileSpec{option_arg, false}, true, false))
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000457 launch_info.AppendFileAction (action);
Greg Clayton8b82f082011-04-12 05:54:46 +0000458 break;
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000459 }
Greg Clayton8b82f082011-04-12 05:54:46 +0000460
461 case 'o': // Open STDOUT for write only
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000462 {
463 FileAction action;
Chaoren Lind3173f32015-05-29 19:52:29 +0000464 if (action.Open(STDOUT_FILENO, FileSpec{option_arg, false}, false, true))
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000465 launch_info.AppendFileAction (action);
Greg Clayton9845a8d2012-03-06 04:01:04 +0000466 break;
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000467 }
Greg Clayton9845a8d2012-03-06 04:01:04 +0000468
469 case 'e': // STDERR for write only
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000470 {
471 FileAction action;
Chaoren Lind3173f32015-05-29 19:52:29 +0000472 if (action.Open(STDERR_FILENO, FileSpec{option_arg, false}, false, true))
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000473 launch_info.AppendFileAction (action);
Greg Clayton8b82f082011-04-12 05:54:46 +0000474 break;
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000475 }
Greg Clayton9845a8d2012-03-06 04:01:04 +0000476
Greg Clayton8b82f082011-04-12 05:54:46 +0000477 case 'p': // Process plug-in name
478 launch_info.SetProcessPluginName (option_arg);
479 break;
480
481 case 'n': // Disable STDIO
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000482 {
483 FileAction action;
Zachary Turner4eff2d32015-10-14 21:37:36 +0000484 const FileSpec dev_null{FileSystem::DEV_NULL, false};
Chaoren Lind3173f32015-05-29 19:52:29 +0000485 if (action.Open(STDIN_FILENO, dev_null, true, false))
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000486 launch_info.AppendFileAction (action);
Chaoren Lind3173f32015-05-29 19:52:29 +0000487 if (action.Open(STDOUT_FILENO, dev_null, false, true))
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000488 launch_info.AppendFileAction (action);
Chaoren Lind3173f32015-05-29 19:52:29 +0000489 if (action.Open(STDERR_FILENO, dev_null, false, true))
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000490 launch_info.AppendFileAction (action);
Greg Clayton8b82f082011-04-12 05:54:46 +0000491 break;
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000492 }
Greg Clayton8b82f082011-04-12 05:54:46 +0000493
494 case 'w':
Chaoren Lind3173f32015-05-29 19:52:29 +0000495 launch_info.SetWorkingDirectory(FileSpec{option_arg, false});
Greg Clayton8b82f082011-04-12 05:54:46 +0000496 break;
497
498 case 't': // Open process in new terminal window
499 launch_info.GetFlags().Set (eLaunchFlagLaunchInTTY);
500 break;
501
502 case 'a':
Greg Clayton70512312012-05-08 01:45:38 +0000503 if (!launch_info.GetArchitecture().SetTriple (option_arg, m_interpreter.GetPlatform(true).get()))
504 launch_info.GetArchitecture().SetTriple (option_arg);
Greg Clayton8b82f082011-04-12 05:54:46 +0000505 break;
506
Todd Fiala51637922014-08-19 17:40:43 +0000507 case 'A': // Disable ASLR.
508 {
509 bool success;
510 const bool disable_aslr_arg = Args::StringToBoolean (option_arg, true, &success);
511 if (success)
512 disable_aslr = disable_aslr_arg ? eLazyBoolYes : eLazyBoolNo;
513 else
514 error.SetErrorStringWithFormat ("Invalid boolean value for disable-aslr option: '%s'", option_arg ? option_arg : "<null>");
Greg Clayton8b82f082011-04-12 05:54:46 +0000515 break;
Todd Fiala51637922014-08-19 17:40:43 +0000516 }
517
Enrico Granatab38ef8c2015-02-20 22:20:30 +0000518 case 'X': // shell expand args.
Enrico Granatad7a83a92015-02-10 03:06:24 +0000519 {
520 bool success;
Enrico Granatab38ef8c2015-02-20 22:20:30 +0000521 const bool expand_args = Args::StringToBoolean (option_arg, true, &success);
Enrico Granatad7a83a92015-02-10 03:06:24 +0000522 if (success)
Enrico Granatab38ef8c2015-02-20 22:20:30 +0000523 launch_info.SetShellExpandArguments(expand_args);
Enrico Granatad7a83a92015-02-10 03:06:24 +0000524 else
Enrico Granatab38ef8c2015-02-20 22:20:30 +0000525 error.SetErrorStringWithFormat ("Invalid boolean value for shell-expand-args option: '%s'", option_arg ? option_arg : "<null>");
Enrico Granatad7a83a92015-02-10 03:06:24 +0000526 break;
527 }
528
Todd Fiala51637922014-08-19 17:40:43 +0000529 case 'c':
Greg Clayton144f3a92011-11-15 03:53:30 +0000530 if (option_arg && option_arg[0])
Zachary Turner10687b02014-10-20 17:46:43 +0000531 launch_info.SetShell (FileSpec(option_arg, false));
Greg Clayton144f3a92011-11-15 03:53:30 +0000532 else
Zachary Turner10687b02014-10-20 17:46:43 +0000533 launch_info.SetShell (HostInfo::GetDefaultShell());
Greg Clayton982c9762011-11-03 21:22:33 +0000534 break;
535
Greg Clayton8b82f082011-04-12 05:54:46 +0000536 case 'v':
537 launch_info.GetEnvironmentEntries().AppendArgument(option_arg);
538 break;
539
540 default:
Greg Clayton86edbf42011-10-26 00:56:27 +0000541 error.SetErrorStringWithFormat("unrecognized short option character '%c'", short_option);
Greg Clayton8b82f082011-04-12 05:54:46 +0000542 break;
Greg Clayton8b82f082011-04-12 05:54:46 +0000543 }
544 return error;
545}
546
547OptionDefinition
548ProcessLaunchCommandOptions::g_option_table[] =
549{
Zachary Turnerd37221d2014-07-09 16:31:49 +0000550{ LLDB_OPT_SET_ALL, false, "stop-at-entry", 's', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Stop at the entry point of the program when launching a process."},
Todd Fiala51637922014-08-19 17:40:43 +0000551{ LLDB_OPT_SET_ALL, false, "disable-aslr", 'A', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, "Set whether to disable address space layout randomization when launching a process."},
Zachary Turnerd37221d2014-07-09 16:31:49 +0000552{ LLDB_OPT_SET_ALL, false, "plugin", 'p', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypePlugin, "Name of the process plugin you want to use."},
553{ LLDB_OPT_SET_ALL, false, "working-dir", 'w', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeDirectoryName, "Set the current working directory to <path> when running the inferior."},
554{ LLDB_OPT_SET_ALL, false, "arch", 'a', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeArchitecture, "Set the architecture for the process to launch when ambiguous."},
555{ LLDB_OPT_SET_ALL, false, "environment", 'v', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeNone, "Specify an environment variable name/value string (--environment NAME=VALUE). Can be specified multiple times for subsequent environment entries."},
Enrico Granatad7a83a92015-02-10 03:06:24 +0000556{ LLDB_OPT_SET_1|LLDB_OPT_SET_2|LLDB_OPT_SET_3, false, "shell", 'c', OptionParser::eOptionalArgument, NULL, NULL, 0, eArgTypeFilename, "Run the process in a shell (not supported on all platforms)."},
Greg Clayton8b82f082011-04-12 05:54:46 +0000557
Zachary Turnerd37221d2014-07-09 16:31:49 +0000558{ LLDB_OPT_SET_1 , false, "stdin", 'i', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeFilename, "Redirect stdin for the process to <filename>."},
559{ LLDB_OPT_SET_1 , false, "stdout", 'o', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeFilename, "Redirect stdout for the process to <filename>."},
560{ LLDB_OPT_SET_1 , false, "stderr", 'e', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeFilename, "Redirect stderr for the process to <filename>."},
Greg Clayton8b82f082011-04-12 05:54:46 +0000561
Zachary Turnerd37221d2014-07-09 16:31:49 +0000562{ LLDB_OPT_SET_2 , false, "tty", 't', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Start the process in a terminal (not supported on all platforms)."},
Greg Clayton8b82f082011-04-12 05:54:46 +0000563
Zachary Turnerd37221d2014-07-09 16:31:49 +0000564{ LLDB_OPT_SET_3 , false, "no-stdio", 'n', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Do not set up for terminal I/O to go to running process."},
Enrico Granatab38ef8c2015-02-20 22:20:30 +0000565{ LLDB_OPT_SET_4, false, "shell-expand-args", 'X', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, "Set whether to shell expand arguments to the process when launching."},
Zachary Turnerd37221d2014-07-09 16:31:49 +0000566{ 0 , false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL }
Greg Clayton8b82f082011-04-12 05:54:46 +0000567};
568
Greg Clayton8b82f082011-04-12 05:54:46 +0000569bool
570ProcessInstanceInfoMatch::NameMatches (const char *process_name) const
Greg Clayton32e0a752011-03-30 18:16:51 +0000571{
572 if (m_name_match_type == eNameMatchIgnore || process_name == NULL)
573 return true;
574 const char *match_name = m_match_info.GetName();
575 if (!match_name)
576 return true;
577
578 return lldb_private::NameMatches (process_name, m_name_match_type, match_name);
579}
580
581bool
Greg Clayton8b82f082011-04-12 05:54:46 +0000582ProcessInstanceInfoMatch::Matches (const ProcessInstanceInfo &proc_info) const
Greg Clayton32e0a752011-03-30 18:16:51 +0000583{
584 if (!NameMatches (proc_info.GetName()))
585 return false;
586
587 if (m_match_info.ProcessIDIsValid() &&
588 m_match_info.GetProcessID() != proc_info.GetProcessID())
589 return false;
590
591 if (m_match_info.ParentProcessIDIsValid() &&
592 m_match_info.GetParentProcessID() != proc_info.GetParentProcessID())
593 return false;
594
Greg Clayton8b82f082011-04-12 05:54:46 +0000595 if (m_match_info.UserIDIsValid () &&
596 m_match_info.GetUserID() != proc_info.GetUserID())
Greg Clayton32e0a752011-03-30 18:16:51 +0000597 return false;
598
Greg Clayton8b82f082011-04-12 05:54:46 +0000599 if (m_match_info.GroupIDIsValid () &&
600 m_match_info.GetGroupID() != proc_info.GetGroupID())
Greg Clayton32e0a752011-03-30 18:16:51 +0000601 return false;
602
603 if (m_match_info.EffectiveUserIDIsValid () &&
604 m_match_info.GetEffectiveUserID() != proc_info.GetEffectiveUserID())
605 return false;
606
607 if (m_match_info.EffectiveGroupIDIsValid () &&
608 m_match_info.GetEffectiveGroupID() != proc_info.GetEffectiveGroupID())
609 return false;
610
611 if (m_match_info.GetArchitecture().IsValid() &&
Sean Callananbf4b7be2012-12-13 22:07:14 +0000612 !m_match_info.GetArchitecture().IsCompatibleMatch(proc_info.GetArchitecture()))
Greg Clayton32e0a752011-03-30 18:16:51 +0000613 return false;
614 return true;
615}
616
617bool
Greg Clayton8b82f082011-04-12 05:54:46 +0000618ProcessInstanceInfoMatch::MatchAllProcesses () const
Greg Clayton32e0a752011-03-30 18:16:51 +0000619{
620 if (m_name_match_type != eNameMatchIgnore)
621 return false;
622
623 if (m_match_info.ProcessIDIsValid())
624 return false;
625
626 if (m_match_info.ParentProcessIDIsValid())
627 return false;
628
Greg Clayton8b82f082011-04-12 05:54:46 +0000629 if (m_match_info.UserIDIsValid ())
Greg Clayton32e0a752011-03-30 18:16:51 +0000630 return false;
631
Greg Clayton8b82f082011-04-12 05:54:46 +0000632 if (m_match_info.GroupIDIsValid ())
Greg Clayton32e0a752011-03-30 18:16:51 +0000633 return false;
634
635 if (m_match_info.EffectiveUserIDIsValid ())
636 return false;
637
638 if (m_match_info.EffectiveGroupIDIsValid ())
639 return false;
640
641 if (m_match_info.GetArchitecture().IsValid())
642 return false;
643
644 if (m_match_all_users)
645 return false;
646
647 return true;
Greg Clayton32e0a752011-03-30 18:16:51 +0000648}
649
650void
Greg Clayton8b82f082011-04-12 05:54:46 +0000651ProcessInstanceInfoMatch::Clear()
Greg Clayton32e0a752011-03-30 18:16:51 +0000652{
653 m_match_info.Clear();
654 m_name_match_type = eNameMatchIgnore;
655 m_match_all_users = false;
656}
Greg Clayton58be07b2011-01-07 06:08:19 +0000657
Greg Claytonc3776bf2012-02-09 06:16:32 +0000658ProcessSP
Zachary Turner7529df92015-09-01 20:02:29 +0000659Process::FindPlugin (lldb::TargetSP target_sp, const char *plugin_name, Listener &listener, const FileSpec *crash_file_path)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000660{
Greg Clayton949e8222013-01-16 17:29:04 +0000661 static uint32_t g_process_unique_id = 0;
662
Greg Claytonc3776bf2012-02-09 06:16:32 +0000663 ProcessSP process_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000664 ProcessCreateInstance create_callback = NULL;
665 if (plugin_name)
666 {
Greg Clayton57abc5d2013-05-10 21:47:16 +0000667 ConstString const_plugin_name(plugin_name);
668 create_callback = PluginManager::GetProcessCreateCallbackForPluginName (const_plugin_name);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000669 if (create_callback)
670 {
Zachary Turner7529df92015-09-01 20:02:29 +0000671 process_sp = create_callback(target_sp, listener, crash_file_path);
Greg Claytonc3776bf2012-02-09 06:16:32 +0000672 if (process_sp)
673 {
Zachary Turner7529df92015-09-01 20:02:29 +0000674 if (process_sp->CanDebug(target_sp, true))
Greg Clayton949e8222013-01-16 17:29:04 +0000675 {
676 process_sp->m_process_unique_id = ++g_process_unique_id;
677 }
678 else
Greg Claytonc3776bf2012-02-09 06:16:32 +0000679 process_sp.reset();
680 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000681 }
682 }
683 else
684 {
Greg Claytonc982c762010-07-09 20:39:50 +0000685 for (uint32_t idx = 0; (create_callback = PluginManager::GetProcessCreateCallbackAtIndex(idx)) != NULL; ++idx)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000686 {
Zachary Turner7529df92015-09-01 20:02:29 +0000687 process_sp = create_callback(target_sp, listener, crash_file_path);
Greg Claytonc3776bf2012-02-09 06:16:32 +0000688 if (process_sp)
689 {
Zachary Turner7529df92015-09-01 20:02:29 +0000690 if (process_sp->CanDebug(target_sp, false))
Greg Clayton949e8222013-01-16 17:29:04 +0000691 {
692 process_sp->m_process_unique_id = ++g_process_unique_id;
Greg Claytonc3776bf2012-02-09 06:16:32 +0000693 break;
Greg Clayton949e8222013-01-16 17:29:04 +0000694 }
695 else
696 process_sp.reset();
Greg Claytonc3776bf2012-02-09 06:16:32 +0000697 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000698 }
699 }
Greg Claytonc3776bf2012-02-09 06:16:32 +0000700 return process_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000701}
702
Jim Ingham4bddaeb2012-02-16 06:50:00 +0000703ConstString &
704Process::GetStaticBroadcasterClass ()
705{
706 static ConstString class_name ("lldb.process");
707 return class_name;
708}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000709
Zachary Turner7529df92015-09-01 20:02:29 +0000710Process::Process(lldb::TargetSP target_sp, Listener &listener) :
711 Process(target_sp, listener, UnixSignals::Create(HostInfo::GetArchitecture()))
Todd Fiala4ceced32014-08-29 17:35:57 +0000712{
713 // This constructor just delegates to the full Process constructor,
714 // defaulting to using the Host's UnixSignals.
715}
716
Zachary Turner7529df92015-09-01 20:02:29 +0000717Process::Process(lldb::TargetSP target_sp, Listener &listener, const UnixSignalsSP &unix_signals_sp) :
Greg Clayton332e8b12015-01-13 21:13:08 +0000718 ProcessProperties (this),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000719 UserID (LLDB_INVALID_PROCESS_ID),
Zachary Turner7529df92015-09-01 20:02:29 +0000720 Broadcaster (&(target_sp->GetDebugger()), Process::GetStaticBroadcasterClass().AsCString()),
721 m_target_sp (target_sp),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000722 m_public_state (eStateUnloaded),
723 m_private_state (eStateUnloaded),
Jim Ingham4bddaeb2012-02-16 06:50:00 +0000724 m_private_state_broadcaster (NULL, "lldb.process.internal_state_broadcaster"),
725 m_private_state_control_broadcaster (NULL, "lldb.process.internal_state_control_broadcaster"),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000726 m_private_state_listener ("lldb.process.internal_state_listener"),
727 m_private_state_control_wait(),
Jim Ingham4b536182011-08-09 02:12:22 +0000728 m_mod_id (),
Greg Clayton949e8222013-01-16 17:29:04 +0000729 m_process_unique_id(0),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000730 m_thread_index_id (0),
Han Ming Ongc2c423e2013-01-08 22:10:01 +0000731 m_thread_id_to_index_id_map (),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000732 m_exit_status (-1),
733 m_exit_string (),
Todd Fiala7b0917a2014-09-15 20:07:33 +0000734 m_exit_status_mutex(),
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000735 m_thread_mutex (Mutex::eMutexTypeRecursive),
736 m_thread_list_real (this),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000737 m_thread_list (this),
Jason Molenda864f1cc2013-11-11 05:20:44 +0000738 m_extended_thread_list (this),
Jason Molenda4ff13262013-11-20 00:31:38 +0000739 m_extended_thread_stop_id (0),
Jason Molenda5e8dce42013-12-13 00:29:16 +0000740 m_queue_list (this),
741 m_queue_list_stop_id (0),
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000742 m_notifications (),
Greg Clayton3af9ea52010-11-18 05:57:03 +0000743 m_image_tokens (),
744 m_listener (listener),
745 m_breakpoint_site_list (),
Greg Clayton3af9ea52010-11-18 05:57:03 +0000746 m_dynamic_checkers_ap (),
Todd Fiala4ceced32014-08-29 17:35:57 +0000747 m_unix_signals_sp (unix_signals_sp),
Greg Clayton3af9ea52010-11-18 05:57:03 +0000748 m_abi_sp (),
Caroline Ticeef5c6d02010-11-16 05:07:41 +0000749 m_process_input_reader (),
Greg Clayton3e06bd92011-01-09 21:07:35 +0000750 m_stdio_communication ("process.stdio"),
Greg Clayton3af9ea52010-11-18 05:57:03 +0000751 m_stdio_communication_mutex (Mutex::eMutexTypeRecursive),
Vince Harrondf3f00f2015-02-10 21:09:04 +0000752 m_stdin_forward (false),
Greg Clayton58be07b2011-01-07 06:08:19 +0000753 m_stdout_data (),
Greg Clayton93e86192011-11-13 04:45:22 +0000754 m_stderr_data (),
Han Ming Ongab3b8b22012-11-17 00:21:04 +0000755 m_profile_data_comm_mutex (Mutex::eMutexTypeRecursive),
756 m_profile_data (),
Pavel Labath44464872015-05-27 12:40:32 +0000757 m_iohandler_sync (0),
Greg Claytond495c532011-05-17 03:37:42 +0000758 m_memory_cache (*this),
759 m_allocated_memory_cache (*this),
Greg Claytone24c4ac2011-11-17 04:46:02 +0000760 m_should_detach (false),
Sean Callanan90539452011-09-20 23:01:51 +0000761 m_next_event_action_ap(),
Greg Clayton96249852013-04-18 16:57:27 +0000762 m_public_run_lock (),
Greg Clayton96249852013-04-18 16:57:27 +0000763 m_private_run_lock (),
Greg Claytona97c4d22014-12-09 23:31:02 +0000764 m_stop_info_override_callback (NULL),
Greg Claytonc00ca312015-04-02 18:44:58 +0000765 m_finalizing (false),
766 m_finalize_called (false),
Greg Claytonf9b57b92013-05-10 23:48:10 +0000767 m_clear_thread_plans_on_stop (false),
Greg Claytonc00ca312015-04-02 18:44:58 +0000768 m_force_next_event_delivery (false),
Jim Ingham0161b492013-02-09 01:29:05 +0000769 m_last_broadcast_state (eStateInvalid),
Jason Molenda69b6b632013-03-05 03:33:59 +0000770 m_destroy_in_process (false),
Ewan Crawford90ff7912015-07-14 10:56:58 +0000771 m_can_interpret_function_calls(false),
Jason Molendaef7d6412015-08-06 03:27:10 +0000772 m_warnings_issued (),
Jason Molenda69b6b632013-03-05 03:33:59 +0000773 m_can_jit(eCanJITDontKnow)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000774{
Jim Ingham4bddaeb2012-02-16 06:50:00 +0000775 CheckInWithManager ();
Caroline Tice1559a462010-09-27 00:30:10 +0000776
Greg Clayton5160ce52013-03-27 23:08:40 +0000777 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000778 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000779 log->Printf ("%p Process::Process()", static_cast<void*>(this));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000780
Todd Fiala4ceced32014-08-29 17:35:57 +0000781 if (!m_unix_signals_sp)
Chaoren Lin98d0a4b2015-07-14 01:09:28 +0000782 m_unix_signals_sp = std::make_shared<UnixSignals>();
Todd Fiala4ceced32014-08-29 17:35:57 +0000783
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000784 SetEventName (eBroadcastBitStateChanged, "state-changed");
785 SetEventName (eBroadcastBitInterrupt, "interrupt");
786 SetEventName (eBroadcastBitSTDOUT, "stdout-available");
787 SetEventName (eBroadcastBitSTDERR, "stderr-available");
Han Ming Ongab3b8b22012-11-17 00:21:04 +0000788 SetEventName (eBroadcastBitProfileData, "profile-data-available");
Chaoren Lin98d0a4b2015-07-14 01:09:28 +0000789
Greg Clayton35a4cc52012-10-29 20:52:08 +0000790 m_private_state_control_broadcaster.SetEventName (eBroadcastInternalStateControlStop , "control-stop" );
791 m_private_state_control_broadcaster.SetEventName (eBroadcastInternalStateControlPause , "control-pause" );
792 m_private_state_control_broadcaster.SetEventName (eBroadcastInternalStateControlResume, "control-resume");
793
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000794 listener.StartListeningForEvents (this,
795 eBroadcastBitStateChanged |
796 eBroadcastBitInterrupt |
797 eBroadcastBitSTDOUT |
Han Ming Ongab3b8b22012-11-17 00:21:04 +0000798 eBroadcastBitSTDERR |
799 eBroadcastBitProfileData);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000800
801 m_private_state_listener.StartListeningForEvents(&m_private_state_broadcaster,
Jim Inghamcfc09352012-07-27 23:57:19 +0000802 eBroadcastBitStateChanged |
803 eBroadcastBitInterrupt);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000804
805 m_private_state_listener.StartListeningForEvents(&m_private_state_control_broadcaster,
806 eBroadcastInternalStateControlStop |
807 eBroadcastInternalStateControlPause |
808 eBroadcastInternalStateControlResume);
Todd Fiala4ceced32014-08-29 17:35:57 +0000809 // We need something valid here, even if just the default UnixSignalsSP.
810 assert (m_unix_signals_sp && "null m_unix_signals_sp after initialization");
Pavel Labathf2991482015-10-20 10:33:17 +0000811
812 // Allow the platform to override the default cache line size
813 OptionValueSP value_sp =
814 m_collection_sp->GetPropertyAtIndex(nullptr, true, ePropertyMemCacheLineSize)->GetValue();
815 uint32_t platform_cache_line_size = target_sp->GetPlatform()->GetDefaultMemoryCacheLineSize();
816 if (! value_sp->OptionWasSet() && platform_cache_line_size != 0)
817 value_sp->SetUInt64Value(platform_cache_line_size);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000818}
819
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000820Process::~Process()
821{
Greg Clayton5160ce52013-03-27 23:08:40 +0000822 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000823 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000824 log->Printf ("%p Process::~Process()", static_cast<void*>(this));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000825 StopPrivateStateThread();
Zachary Turner39de3112014-09-09 20:54:56 +0000826
827 // ThreadList::Clear() will try to acquire this process's mutex, so
828 // explicitly clear the thread list here to ensure that the mutex
829 // is not destroyed before the thread list.
830 m_thread_list.Clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000831}
832
Greg Clayton67cc0632012-08-22 17:17:09 +0000833const ProcessPropertiesSP &
834Process::GetGlobalProperties()
835{
Greg Claytoncc2e27f2016-02-26 23:20:08 +0000836 // NOTE: intentional leak so we don't crash if global destructor chain gets
837 // called as other threads still use the result of this function
838 static ProcessPropertiesSP *g_settings_sp_ptr = nullptr;
Greg Clayton04df8ee2016-02-26 19:38:18 +0000839 static std::once_flag g_once_flag;
840 std::call_once(g_once_flag, []() {
Greg Claytoncc2e27f2016-02-26 23:20:08 +0000841 g_settings_sp_ptr = new ProcessPropertiesSP(new ProcessProperties (NULL));
Greg Clayton04df8ee2016-02-26 19:38:18 +0000842 });
Greg Claytoncc2e27f2016-02-26 23:20:08 +0000843 return *g_settings_sp_ptr;
Greg Clayton67cc0632012-08-22 17:17:09 +0000844}
845
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000846void
847Process::Finalize()
848{
Greg Claytonc00ca312015-04-02 18:44:58 +0000849 m_finalizing = true;
850
Ilia Kc7efd562015-03-26 07:40:40 +0000851 // Destroy this process if needed
852 switch (GetPrivateState())
853 {
854 case eStateConnected:
855 case eStateAttaching:
856 case eStateLaunching:
857 case eStateStopped:
858 case eStateRunning:
859 case eStateStepping:
860 case eStateCrashed:
861 case eStateSuspended:
Jason Molendaede31932015-04-17 05:01:58 +0000862 Destroy(false);
Ilia Kc7efd562015-03-26 07:40:40 +0000863 break;
864
865 case eStateInvalid:
866 case eStateUnloaded:
867 case eStateDetached:
868 case eStateExited:
869 break;
870 }
Greg Claytone24c4ac2011-11-17 04:46:02 +0000871
Greg Clayton1ed54f52011-10-01 00:45:15 +0000872 // Clear our broadcaster before we proceed with destroying
873 Broadcaster::Clear();
874
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000875 // Do any cleanup needed prior to being destructed... Subclasses
876 // that override this method should call this superclass method as well.
Jim Inghamd0a3e122011-02-16 17:54:55 +0000877
878 // We need to destroy the loader before the derived Process class gets destroyed
879 // since it is very likely that undoing the loader will require access to the real process.
Greg Clayton894f82f2012-01-20 23:08:34 +0000880 m_dynamic_checkers_ap.reset();
881 m_abi_sp.reset();
Greg Clayton56d9a1b2011-08-22 02:49:39 +0000882 m_os_ap.reset();
Jason Molendaeef51062013-11-05 03:57:19 +0000883 m_system_runtime_ap.reset();
Greg Clayton894f82f2012-01-20 23:08:34 +0000884 m_dyld_ap.reset();
Andrew MacPherson17220c12014-03-05 10:12:43 +0000885 m_jit_loaders_ap.reset();
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000886 m_thread_list_real.Destroy();
Greg Claytone1cd1be2012-01-29 20:56:30 +0000887 m_thread_list.Destroy();
Jason Molenda864f1cc2013-11-11 05:20:44 +0000888 m_extended_thread_list.Destroy();
Jason Molenda5e8dce42013-12-13 00:29:16 +0000889 m_queue_list.Clear();
890 m_queue_list_stop_id = 0;
Greg Clayton894f82f2012-01-20 23:08:34 +0000891 std::vector<Notifications> empty_notifications;
892 m_notifications.swap(empty_notifications);
893 m_image_tokens.clear();
894 m_memory_cache.Clear();
895 m_allocated_memory_cache.Clear();
896 m_language_runtimes.clear();
Kuba Breckaafdf8422014-10-10 23:43:03 +0000897 m_instrumentation_runtimes.clear();
Greg Clayton894f82f2012-01-20 23:08:34 +0000898 m_next_event_action_ap.reset();
Greg Claytona97c4d22014-12-09 23:31:02 +0000899 m_stop_info_override_callback = NULL;
Greg Clayton08765fa2015-05-28 03:24:30 +0000900 // Clear the last natural stop ID since it has a strong
901 // reference to this process
902 m_mod_id.SetStopEventForLastNaturalStopID(EventSP());
Greg Clayton35a4cc52012-10-29 20:52:08 +0000903//#ifdef LLDB_CONFIGURATION_DEBUG
904// StreamFile s(stdout, false);
905// EventSP event_sp;
906// while (m_private_state_listener.GetNextEvent(event_sp))
907// {
908// event_sp->Dump (&s);
909// s.EOL();
910// }
911//#endif
912 // We have to be very careful here as the m_private_state_listener might
913 // contain events that have ProcessSP values in them which can keep this
914 // process around forever. These events need to be cleared out.
915 m_private_state_listener.Clear();
Ed Maste64fad602013-07-29 20:58:06 +0000916 m_public_run_lock.TrySetRunning(); // This will do nothing if already locked
917 m_public_run_lock.SetStopped();
918 m_private_run_lock.TrySetRunning(); // This will do nothing if already locked
919 m_private_run_lock.SetStopped();
Jim Ingham4fc6cb92012-08-22 21:34:33 +0000920 m_finalize_called = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000921}
922
923void
924Process::RegisterNotificationCallbacks (const Notifications& callbacks)
925{
926 m_notifications.push_back(callbacks);
927 if (callbacks.initialize != NULL)
928 callbacks.initialize (callbacks.baton, this);
929}
930
931bool
932Process::UnregisterNotificationCallbacks(const Notifications& callbacks)
933{
934 std::vector<Notifications>::iterator pos, end = m_notifications.end();
935 for (pos = m_notifications.begin(); pos != end; ++pos)
936 {
937 if (pos->baton == callbacks.baton &&
938 pos->initialize == callbacks.initialize &&
939 pos->process_state_changed == callbacks.process_state_changed)
940 {
941 m_notifications.erase(pos);
942 return true;
943 }
944 }
945 return false;
946}
947
948void
949Process::SynchronouslyNotifyStateChanged (StateType state)
950{
951 std::vector<Notifications>::iterator notification_pos, notification_end = m_notifications.end();
952 for (notification_pos = m_notifications.begin(); notification_pos != notification_end; ++notification_pos)
953 {
954 if (notification_pos->process_state_changed)
955 notification_pos->process_state_changed (notification_pos->baton, this, state);
956 }
957}
958
959// FIXME: We need to do some work on events before the general Listener sees them.
960// For instance if we are continuing from a breakpoint, we need to ensure that we do
961// the little "insert real insn, step & stop" trick. But we can't do that when the
962// event is delivered by the broadcaster - since that is done on the thread that is
963// waiting for new events, so if we needed more than one event for our handling, we would
964// stall. So instead we do it when we fetch the event off of the queue.
965//
966
967StateType
968Process::GetNextEvent (EventSP &event_sp)
969{
970 StateType state = eStateInvalid;
971
972 if (m_listener.GetNextEventForBroadcaster (this, event_sp) && event_sp)
973 state = Process::ProcessEventData::GetStateFromEvent (event_sp.get());
974
975 return state;
976}
977
Pavel Labath44464872015-05-27 12:40:32 +0000978void
979Process::SyncIOHandler (uint32_t iohandler_id, uint64_t timeout_msec)
Todd Fialaa3b89e22014-08-12 14:33:19 +0000980{
Todd Fialaa3b89e22014-08-12 14:33:19 +0000981 // don't sync (potentially context switch) in case where there is no process IO
Pavel Labath44464872015-05-27 12:40:32 +0000982 if (! m_process_input_reader)
983 return;
Todd Fialaa3b89e22014-08-12 14:33:19 +0000984
Pavel Labath44464872015-05-27 12:40:32 +0000985 TimeValue timeout = TimeValue::Now();
986 timeout.OffsetWithMicroSeconds(timeout_msec*1000);
987 uint32_t new_iohandler_id = 0;
988 m_iohandler_sync.WaitForValueNotEqualTo(iohandler_id, new_iohandler_id, &timeout);
Todd Fialaa3b89e22014-08-12 14:33:19 +0000989
Pavel Labath44464872015-05-27 12:40:32 +0000990 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
991 if (log)
992 log->Printf("Process::%s waited for m_iohandler_sync to change from %u, new value is %u", __FUNCTION__, iohandler_id, new_iohandler_id);
Todd Fialaa3b89e22014-08-12 14:33:19 +0000993}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000994
995StateType
Greg Claytondc6224e2014-10-21 01:00:42 +0000996Process::WaitForProcessToStop (const TimeValue *timeout,
997 EventSP *event_sp_ptr,
998 bool wait_always,
999 Listener *hijack_listener,
Pavel Labath19da1f12015-12-07 12:36:52 +00001000 Stream *stream,
1001 bool use_run_lock)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001002{
Jim Ingham4b536182011-08-09 02:12:22 +00001003 // We can't just wait for a "stopped" event, because the stopped event may have restarted the target.
1004 // We have to actually check each event, and in the case of a stopped event check the restarted flag
1005 // on the event.
Greg Clayton85fb1b92012-09-11 02:33:37 +00001006 if (event_sp_ptr)
1007 event_sp_ptr->reset();
Jim Ingham4b536182011-08-09 02:12:22 +00001008 StateType state = GetState();
1009 // If we are exited or detached, we won't ever get back to any
1010 // other valid state...
1011 if (state == eStateDetached || state == eStateExited)
1012 return state;
1013
Daniel Malea9e9919f2013-10-09 16:56:28 +00001014 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1015 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001016 log->Printf ("Process::%s (timeout = %p)", __FUNCTION__,
1017 static_cast<const void*>(timeout));
Daniel Malea9e9919f2013-10-09 16:56:28 +00001018
1019 if (!wait_always &&
1020 StateIsStoppedState(state, true) &&
Jim Ingham5b4c5eb2015-04-22 17:48:24 +00001021 StateIsStoppedState(GetPrivateState(), true))
1022 {
Daniel Malea9e9919f2013-10-09 16:56:28 +00001023 if (log)
1024 log->Printf("Process::%s returning without waiting for events; process private and public states are already 'stopped'.",
1025 __FUNCTION__);
Pavel Labath78521ef2015-03-06 10:52:47 +00001026 // We need to toggle the run lock as this won't get done in
1027 // SetPublicState() if the process is hijacked.
Pavel Labath19da1f12015-12-07 12:36:52 +00001028 if (hijack_listener && use_run_lock)
Pavel Labath78521ef2015-03-06 10:52:47 +00001029 m_public_run_lock.SetStopped();
Daniel Malea9e9919f2013-10-09 16:56:28 +00001030 return state;
1031 }
1032
Jim Ingham4b536182011-08-09 02:12:22 +00001033 while (state != eStateInvalid)
1034 {
Greg Clayton85fb1b92012-09-11 02:33:37 +00001035 EventSP event_sp;
Greg Clayton44d93782014-01-27 23:43:24 +00001036 state = WaitForStateChangedEvents (timeout, event_sp, hijack_listener);
Greg Clayton85fb1b92012-09-11 02:33:37 +00001037 if (event_sp_ptr && event_sp)
1038 *event_sp_ptr = event_sp;
1039
Greg Claytondc6224e2014-10-21 01:00:42 +00001040 bool pop_process_io_handler = hijack_listener != NULL;
1041 Process::HandleProcessStateChangedEvent (event_sp, stream, pop_process_io_handler);
1042
Jim Ingham4b536182011-08-09 02:12:22 +00001043 switch (state)
1044 {
1045 case eStateCrashed:
1046 case eStateDetached:
1047 case eStateExited:
1048 case eStateUnloaded:
Greg Clayton44d93782014-01-27 23:43:24 +00001049 // We need to toggle the run lock as this won't get done in
1050 // SetPublicState() if the process is hijacked.
Pavel Labath19da1f12015-12-07 12:36:52 +00001051 if (hijack_listener && use_run_lock)
Greg Clayton44d93782014-01-27 23:43:24 +00001052 m_public_run_lock.SetStopped();
Jim Ingham4b536182011-08-09 02:12:22 +00001053 return state;
1054 case eStateStopped:
1055 if (Process::ProcessEventData::GetRestartedFromEvent(event_sp.get()))
1056 continue;
1057 else
Greg Clayton44d93782014-01-27 23:43:24 +00001058 {
1059 // We need to toggle the run lock as this won't get done in
1060 // SetPublicState() if the process is hijacked.
Pavel Labath19da1f12015-12-07 12:36:52 +00001061 if (hijack_listener && use_run_lock)
Greg Clayton44d93782014-01-27 23:43:24 +00001062 m_public_run_lock.SetStopped();
Jim Ingham4b536182011-08-09 02:12:22 +00001063 return state;
Greg Clayton44d93782014-01-27 23:43:24 +00001064 }
Jim Ingham4b536182011-08-09 02:12:22 +00001065 default:
1066 continue;
1067 }
1068 }
1069 return state;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001070}
1071
Greg Claytondc6224e2014-10-21 01:00:42 +00001072bool
1073Process::HandleProcessStateChangedEvent (const EventSP &event_sp,
1074 Stream *stream,
1075 bool &pop_process_io_handler)
1076{
1077 const bool handle_pop = pop_process_io_handler == true;
1078
1079 pop_process_io_handler = false;
1080 ProcessSP process_sp = Process::ProcessEventData::GetProcessFromEvent(event_sp.get());
1081
1082 if (!process_sp)
1083 return false;
1084
1085 StateType event_state = Process::ProcessEventData::GetStateFromEvent (event_sp.get());
1086 if (event_state == eStateInvalid)
1087 return false;
1088
1089 switch (event_state)
1090 {
1091 case eStateInvalid:
1092 case eStateUnloaded:
Greg Claytondc6224e2014-10-21 01:00:42 +00001093 case eStateAttaching:
1094 case eStateLaunching:
1095 case eStateStepping:
1096 case eStateDetached:
1097 {
1098 if (stream)
1099 stream->Printf ("Process %" PRIu64 " %s\n",
1100 process_sp->GetID(),
1101 StateAsCString (event_state));
1102
1103 if (event_state == eStateDetached)
1104 pop_process_io_handler = true;
1105 }
1106 break;
1107
Stephane Sezerf2ef94e2014-12-13 05:23:51 +00001108 case eStateConnected:
Greg Claytondc6224e2014-10-21 01:00:42 +00001109 case eStateRunning:
1110 // Don't be chatty when we run...
1111 break;
1112
1113 case eStateExited:
1114 if (stream)
1115 process_sp->GetStatus(*stream);
1116 pop_process_io_handler = true;
1117 break;
1118
1119 case eStateStopped:
1120 case eStateCrashed:
1121 case eStateSuspended:
1122 // Make sure the program hasn't been auto-restarted:
1123 if (Process::ProcessEventData::GetRestartedFromEvent (event_sp.get()))
1124 {
1125 if (stream)
1126 {
1127 size_t num_reasons = Process::ProcessEventData::GetNumRestartedReasons(event_sp.get());
1128 if (num_reasons > 0)
1129 {
1130 // FIXME: Do we want to report this, or would that just be annoyingly chatty?
1131 if (num_reasons == 1)
1132 {
1133 const char *reason = Process::ProcessEventData::GetRestartedReasonAtIndex (event_sp.get(), 0);
1134 stream->Printf ("Process %" PRIu64 " stopped and restarted: %s\n",
1135 process_sp->GetID(),
1136 reason ? reason : "<UNKNOWN REASON>");
1137 }
1138 else
1139 {
1140 stream->Printf ("Process %" PRIu64 " stopped and restarted, reasons:\n",
1141 process_sp->GetID());
1142
1143
1144 for (size_t i = 0; i < num_reasons; i++)
1145 {
1146 const char *reason = Process::ProcessEventData::GetRestartedReasonAtIndex (event_sp.get(), i);
1147 stream->Printf("\t%s\n", reason ? reason : "<UNKNOWN REASON>");
1148 }
1149 }
1150 }
1151 }
1152 }
1153 else
1154 {
1155 // Lock the thread list so it doesn't change on us, this is the scope for the locker:
1156 {
1157 ThreadList &thread_list = process_sp->GetThreadList();
1158 Mutex::Locker locker (thread_list.GetMutex());
1159
1160 ThreadSP curr_thread (thread_list.GetSelectedThread());
1161 ThreadSP thread;
1162 StopReason curr_thread_stop_reason = eStopReasonInvalid;
1163 if (curr_thread)
1164 curr_thread_stop_reason = curr_thread->GetStopReason();
1165 if (!curr_thread ||
1166 !curr_thread->IsValid() ||
1167 curr_thread_stop_reason == eStopReasonInvalid ||
1168 curr_thread_stop_reason == eStopReasonNone)
1169 {
1170 // Prefer a thread that has just completed its plan over another thread as current thread.
1171 ThreadSP plan_thread;
1172 ThreadSP other_thread;
Jim Inghamce400d92015-07-08 00:06:30 +00001173
Greg Claytondc6224e2014-10-21 01:00:42 +00001174 const size_t num_threads = thread_list.GetSize();
1175 size_t i;
1176 for (i = 0; i < num_threads; ++i)
1177 {
1178 thread = thread_list.GetThreadAtIndex(i);
1179 StopReason thread_stop_reason = thread->GetStopReason();
1180 switch (thread_stop_reason)
1181 {
1182 case eStopReasonInvalid:
1183 case eStopReasonNone:
1184 break;
1185
Jim Inghamce400d92015-07-08 00:06:30 +00001186 case eStopReasonSignal:
1187 {
1188 // Don't select a signal thread if we weren't going to stop at that
1189 // signal. We have to have had another reason for stopping here, and
1190 // the user doesn't want to see this thread.
1191 uint64_t signo = thread->GetStopInfo()->GetValue();
Chaoren Lin98d0a4b2015-07-14 01:09:28 +00001192 if (process_sp->GetUnixSignals()->GetShouldStop(signo))
Jim Inghamce400d92015-07-08 00:06:30 +00001193 {
1194 if (!other_thread)
1195 other_thread = thread;
1196 }
1197 break;
1198 }
Greg Claytondc6224e2014-10-21 01:00:42 +00001199 case eStopReasonTrace:
1200 case eStopReasonBreakpoint:
1201 case eStopReasonWatchpoint:
Greg Claytondc6224e2014-10-21 01:00:42 +00001202 case eStopReasonException:
1203 case eStopReasonExec:
1204 case eStopReasonThreadExiting:
1205 case eStopReasonInstrumentation:
1206 if (!other_thread)
1207 other_thread = thread;
1208 break;
1209 case eStopReasonPlanComplete:
1210 if (!plan_thread)
1211 plan_thread = thread;
1212 break;
1213 }
1214 }
1215 if (plan_thread)
1216 thread_list.SetSelectedThreadByID (plan_thread->GetID());
1217 else if (other_thread)
1218 thread_list.SetSelectedThreadByID (other_thread->GetID());
1219 else
1220 {
1221 if (curr_thread && curr_thread->IsValid())
1222 thread = curr_thread;
1223 else
1224 thread = thread_list.GetThreadAtIndex(0);
1225
1226 if (thread)
1227 thread_list.SetSelectedThreadByID (thread->GetID());
1228 }
1229 }
1230 }
1231 // Drop the ThreadList mutex by here, since GetThreadStatus below might have to run code,
1232 // e.g. for Data formatters, and if we hold the ThreadList mutex, then the process is going to
1233 // have a hard time restarting the process.
1234 if (stream)
1235 {
1236 Debugger &debugger = process_sp->GetTarget().GetDebugger();
1237 if (debugger.GetTargetList().GetSelectedTarget().get() == &process_sp->GetTarget())
1238 {
1239 const bool only_threads_with_stop_reason = true;
1240 const uint32_t start_frame = 0;
1241 const uint32_t num_frames = 1;
1242 const uint32_t num_frames_with_source = 1;
1243 process_sp->GetStatus(*stream);
1244 process_sp->GetThreadStatus (*stream,
1245 only_threads_with_stop_reason,
1246 start_frame,
1247 num_frames,
1248 num_frames_with_source);
1249 }
1250 else
1251 {
1252 uint32_t target_idx = debugger.GetTargetList().GetIndexOfTarget(process_sp->GetTarget().shared_from_this());
1253 if (target_idx != UINT32_MAX)
1254 stream->Printf ("Target %d: (", target_idx);
1255 else
1256 stream->Printf ("Target <unknown index>: (");
1257 process_sp->GetTarget().Dump (stream, eDescriptionLevelBrief);
1258 stream->Printf (") stopped.\n");
1259 }
1260 }
1261
1262 // Pop the process IO handler
1263 pop_process_io_handler = true;
1264 }
1265 break;
1266 }
1267
1268 if (handle_pop && pop_process_io_handler)
1269 process_sp->PopProcessIOHandler();
1270
1271 return true;
1272}
1273
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001274StateType
Eugene Zelenko8f30a652015-10-23 18:39:37 +00001275Process::WaitForState(const TimeValue *timeout,
1276 const StateType *match_states,
1277 const uint32_t num_match_states)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001278{
1279 EventSP event_sp;
1280 uint32_t i;
Greg Clayton05faeb72010-10-07 04:19:01 +00001281 StateType state = GetState();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001282 while (state != eStateInvalid)
1283 {
Greg Clayton05faeb72010-10-07 04:19:01 +00001284 // If we are exited or detached, we won't ever get back to any
1285 // other valid state...
1286 if (state == eStateDetached || state == eStateExited)
1287 return state;
1288
Greg Clayton44d93782014-01-27 23:43:24 +00001289 state = WaitForStateChangedEvents (timeout, event_sp, NULL);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001290
1291 for (i=0; i<num_match_states; ++i)
1292 {
1293 if (match_states[i] == state)
1294 return state;
1295 }
1296 }
1297 return state;
1298}
1299
Jim Ingham30f9b212010-10-11 23:53:14 +00001300bool
1301Process::HijackProcessEvents (Listener *listener)
1302{
1303 if (listener != NULL)
1304 {
Jim Inghamcfc09352012-07-27 23:57:19 +00001305 return HijackBroadcaster(listener, eBroadcastBitStateChanged | eBroadcastBitInterrupt);
Jim Ingham30f9b212010-10-11 23:53:14 +00001306 }
1307 else
1308 return false;
1309}
1310
1311void
1312Process::RestoreProcessEvents ()
1313{
1314 RestoreBroadcaster();
1315}
1316
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001317StateType
Greg Clayton44d93782014-01-27 23:43:24 +00001318Process::WaitForStateChangedEvents (const TimeValue *timeout, EventSP &event_sp, Listener *hijack_listener)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001319{
Greg Clayton5160ce52013-03-27 23:08:40 +00001320 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001321
1322 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001323 log->Printf ("Process::%s (timeout = %p, event_sp)...", __FUNCTION__,
1324 static_cast<const void*>(timeout));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001325
Greg Clayton44d93782014-01-27 23:43:24 +00001326 Listener *listener = hijack_listener;
1327 if (listener == NULL)
1328 listener = &m_listener;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001329
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001330 StateType state = eStateInvalid;
Greg Clayton44d93782014-01-27 23:43:24 +00001331 if (listener->WaitForEventForBroadcasterWithType (timeout,
1332 this,
1333 eBroadcastBitStateChanged | eBroadcastBitInterrupt,
1334 event_sp))
Jim Inghamcfc09352012-07-27 23:57:19 +00001335 {
1336 if (event_sp && event_sp->GetType() == eBroadcastBitStateChanged)
1337 state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
1338 else if (log)
1339 log->Printf ("Process::%s got no event or was interrupted.", __FUNCTION__);
1340 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001341
1342 if (log)
1343 log->Printf ("Process::%s (timeout = %p, event_sp) => %s",
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001344 __FUNCTION__, static_cast<const void*>(timeout),
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001345 StateAsCString(state));
1346 return state;
1347}
1348
1349Event *
1350Process::PeekAtStateChangedEvents ()
1351{
Greg Clayton5160ce52013-03-27 23:08:40 +00001352 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001353
1354 if (log)
1355 log->Printf ("Process::%s...", __FUNCTION__);
1356
1357 Event *event_ptr;
Greg Clayton3fcbed62010-10-19 03:25:40 +00001358 event_ptr = m_listener.PeekAtNextEventForBroadcasterWithType (this,
1359 eBroadcastBitStateChanged);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001360 if (log)
1361 {
1362 if (event_ptr)
1363 {
1364 log->Printf ("Process::%s (event_ptr) => %s",
1365 __FUNCTION__,
1366 StateAsCString(ProcessEventData::GetStateFromEvent (event_ptr)));
1367 }
1368 else
1369 {
1370 log->Printf ("Process::%s no events found",
1371 __FUNCTION__);
1372 }
1373 }
1374 return event_ptr;
1375}
1376
1377StateType
1378Process::WaitForStateChangedEventsPrivate (const TimeValue *timeout, EventSP &event_sp)
1379{
Greg Clayton5160ce52013-03-27 23:08:40 +00001380 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001381
1382 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001383 log->Printf ("Process::%s (timeout = %p, event_sp)...", __FUNCTION__,
1384 static_cast<const void*>(timeout));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001385
1386 StateType state = eStateInvalid;
Greg Clayton6779606a2011-01-22 23:43:18 +00001387 if (m_private_state_listener.WaitForEventForBroadcasterWithType (timeout,
1388 &m_private_state_broadcaster,
Jim Inghamcfc09352012-07-27 23:57:19 +00001389 eBroadcastBitStateChanged | eBroadcastBitInterrupt,
Greg Clayton6779606a2011-01-22 23:43:18 +00001390 event_sp))
Jim Inghamcfc09352012-07-27 23:57:19 +00001391 if (event_sp && event_sp->GetType() == eBroadcastBitStateChanged)
1392 state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001393
1394 // This is a bit of a hack, but when we wait here we could very well return
1395 // to the command-line, and that could disable the log, which would render the
1396 // log we got above invalid.
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001397 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001398 log->Printf ("Process::%s (timeout = %p, event_sp) => %s",
1399 __FUNCTION__, static_cast<const void *>(timeout),
1400 state == eStateInvalid ? "TIMEOUT" : StateAsCString(state));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001401 return state;
1402}
1403
1404bool
1405Process::WaitForEventsPrivate (const TimeValue *timeout, EventSP &event_sp, bool control_only)
1406{
Greg Clayton5160ce52013-03-27 23:08:40 +00001407 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001408
1409 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001410 log->Printf ("Process::%s (timeout = %p, event_sp)...", __FUNCTION__,
1411 static_cast<const void*>(timeout));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001412
1413 if (control_only)
1414 return m_private_state_listener.WaitForEventForBroadcaster(timeout, &m_private_state_control_broadcaster, event_sp);
1415 else
1416 return m_private_state_listener.WaitForEvent(timeout, event_sp);
1417}
1418
1419bool
1420Process::IsRunning () const
1421{
1422 return StateIsRunningState (m_public_state.GetValue());
1423}
1424
1425int
1426Process::GetExitStatus ()
1427{
Todd Fiala7b0917a2014-09-15 20:07:33 +00001428 Mutex::Locker locker (m_exit_status_mutex);
1429
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001430 if (m_public_state.GetValue() == eStateExited)
1431 return m_exit_status;
1432 return -1;
1433}
1434
1435const char *
1436Process::GetExitDescription ()
1437{
Todd Fiala7b0917a2014-09-15 20:07:33 +00001438 Mutex::Locker locker (m_exit_status_mutex);
1439
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001440 if (m_public_state.GetValue() == eStateExited && !m_exit_string.empty())
1441 return m_exit_string.c_str();
1442 return NULL;
1443}
1444
Greg Clayton6779606a2011-01-22 23:43:18 +00001445bool
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001446Process::SetExitStatus (int status, const char *cstr)
1447{
Greg Clayton81e2b6b2015-06-01 23:14:09 +00001448 // Use a mutex to protect setting the exit status.
1449 Mutex::Locker locker (m_exit_status_mutex);
1450
Greg Clayton5160ce52013-03-27 23:08:40 +00001451 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STATE | LIBLLDB_LOG_PROCESS));
Greg Clayton414f5d32011-01-25 02:58:48 +00001452 if (log)
1453 log->Printf("Process::SetExitStatus (status=%i (0x%8.8x), description=%s%s%s)",
1454 status, status,
1455 cstr ? "\"" : "",
1456 cstr ? cstr : "NULL",
1457 cstr ? "\"" : "");
1458
Greg Clayton6779606a2011-01-22 23:43:18 +00001459 // We were already in the exited state
1460 if (m_private_state.GetValue() == eStateExited)
Greg Clayton414f5d32011-01-25 02:58:48 +00001461 {
Greg Clayton385d6032011-01-26 23:47:29 +00001462 if (log)
1463 log->Printf("Process::SetExitStatus () ignoring exit status because state was already set to eStateExited");
Greg Clayton6779606a2011-01-22 23:43:18 +00001464 return false;
Greg Clayton414f5d32011-01-25 02:58:48 +00001465 }
Todd Fiala7b0917a2014-09-15 20:07:33 +00001466
Greg Clayton81e2b6b2015-06-01 23:14:09 +00001467 m_exit_status = status;
1468 if (cstr)
1469 m_exit_string = cstr;
1470 else
1471 m_exit_string.clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001472
Pavel Labatha9a43372015-09-03 09:30:17 +00001473 // When we exit, we don't need the input reader anymore
Greg Clayton5df78fa2015-05-23 03:54:53 +00001474 if (m_process_input_reader)
1475 {
1476 m_process_input_reader->SetIsDone(true);
1477 m_process_input_reader->Cancel();
1478 m_process_input_reader.reset();
1479 }
Greg Clayton10177aa2010-12-08 05:08:21 +00001480
Greg Clayton08765fa2015-05-28 03:24:30 +00001481 // Clear the last natural stop ID since it has a strong
1482 // reference to this process
1483 m_mod_id.SetStopEventForLastNaturalStopID(EventSP());
1484
Greg Clayton6779606a2011-01-22 23:43:18 +00001485 SetPrivateState (eStateExited);
Greg Clayton5df78fa2015-05-23 03:54:53 +00001486
1487 // Allow subclasses to do some cleanup
1488 DidExit ();
1489
Greg Clayton6779606a2011-01-22 23:43:18 +00001490 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001491}
1492
Jason Molendaa814f702015-11-05 23:03:44 +00001493bool
1494Process::IsAlive ()
1495{
1496 switch (m_private_state.GetValue())
1497 {
Jason Molendaa814f702015-11-05 23:03:44 +00001498 case eStateConnected:
1499 case eStateAttaching:
1500 case eStateLaunching:
1501 case eStateStopped:
1502 case eStateRunning:
1503 case eStateStepping:
1504 case eStateCrashed:
1505 case eStateSuspended:
1506 return true;
Davide Italiano13fe2a92016-01-19 22:47:51 +00001507 default:
1508 return false;
Jason Molendaa814f702015-11-05 23:03:44 +00001509 }
1510}
1511
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001512// This static callback can be used to watch for local child processes on
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +00001513// the current host. The child process exits, the process will be
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001514// found in the global target list (we want to be completely sure that the
1515// lldb_private::Process doesn't go away before we can deliver the signal.
1516bool
Greg Claytone4e45922011-11-16 05:37:56 +00001517Process::SetProcessExitStatus (void *callback_baton,
1518 lldb::pid_t pid,
1519 bool exited,
1520 int signo, // Zero for no signal
1521 int exit_status // Exit value of process if signal is zero
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001522)
1523{
Greg Clayton5160ce52013-03-27 23:08:40 +00001524 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_PROCESS));
Greg Claytone4e45922011-11-16 05:37:56 +00001525 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +00001526 log->Printf ("Process::SetProcessExitStatus (baton=%p, pid=%" PRIu64 ", exited=%i, signal=%i, exit_status=%i)\n",
Greg Claytone4e45922011-11-16 05:37:56 +00001527 callback_baton,
1528 pid,
1529 exited,
1530 signo,
1531 exit_status);
1532
1533 if (exited)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001534 {
Greg Clayton66111032010-06-23 01:19:29 +00001535 TargetSP target_sp(Debugger::FindTargetWithProcessID (pid));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001536 if (target_sp)
1537 {
1538 ProcessSP process_sp (target_sp->GetProcessSP());
1539 if (process_sp)
1540 {
1541 const char *signal_cstr = NULL;
1542 if (signo)
Chaoren Lin98d0a4b2015-07-14 01:09:28 +00001543 signal_cstr = process_sp->GetUnixSignals()->GetSignalAsCString(signo);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001544
1545 process_sp->SetExitStatus (exit_status, signal_cstr);
1546 }
1547 }
1548 return true;
1549 }
1550 return false;
1551}
1552
Greg Clayton56d9a1b2011-08-22 02:49:39 +00001553void
1554Process::UpdateThreadListIfNeeded ()
1555{
1556 const uint32_t stop_id = GetStopID();
1557 if (m_thread_list.GetSize(false) == 0 || stop_id != m_thread_list.GetStopID())
1558 {
Greg Clayton2637f822011-11-17 01:23:07 +00001559 const StateType state = GetPrivateState();
1560 if (StateIsStoppedState (state, true))
1561 {
1562 Mutex::Locker locker (m_thread_list.GetMutex ());
Greg Claytone24c4ac2011-11-17 04:46:02 +00001563 // m_thread_list does have its own mutex, but we need to
1564 // hold onto the mutex between the call to UpdateThreadList(...)
1565 // and the os->UpdateThreadList(...) so it doesn't change on us
Andrew Kaylorba4e61d2013-05-07 18:35:34 +00001566 ThreadList &old_thread_list = m_thread_list;
1567 ThreadList real_thread_list(this);
Greg Clayton2637f822011-11-17 01:23:07 +00001568 ThreadList new_thread_list(this);
1569 // Always update the thread list with the protocol specific
Greg Clayton9fc13552012-04-10 00:18:59 +00001570 // thread list, but only update if "true" is returned
Andrew Kaylorba4e61d2013-05-07 18:35:34 +00001571 if (UpdateThreadList (m_thread_list_real, real_thread_list))
Greg Clayton9fc13552012-04-10 00:18:59 +00001572 {
Jim Ingham09437922013-03-01 20:04:25 +00001573 // Don't call into the OperatingSystem to update the thread list if we are shutting down, since
1574 // that may call back into the SBAPI's, requiring the API lock which is already held by whoever is
1575 // shutting us down, causing a deadlock.
Pavel Labath862432c2015-11-03 16:05:18 +00001576 OperatingSystem *os = GetOperatingSystem ();
1577 if (os && !m_destroy_in_process)
Jim Ingham09437922013-03-01 20:04:25 +00001578 {
Pavel Labath862432c2015-11-03 16:05:18 +00001579 // Clear any old backing threads where memory threads might have been
1580 // backed by actual threads from the lldb_private::Process subclass
1581 size_t num_old_threads = old_thread_list.GetSize(false);
1582 for (size_t i=0; i<num_old_threads; ++i)
1583 old_thread_list.GetThreadAtIndex(i, false)->ClearBackingThread();
Greg Claytonb3ae8762013-04-12 20:07:46 +00001584
Pavel Labath862432c2015-11-03 16:05:18 +00001585 // Turn off dynamic types to ensure we don't run any expressions. Objective C
1586 // can run an expression to determine if a SBValue is a dynamic type or not
1587 // and we need to avoid this. OperatingSystem plug-ins can't run expressions
1588 // that require running code...
Greg Clayton15484402015-05-15 18:40:24 +00001589
Pavel Labath862432c2015-11-03 16:05:18 +00001590 Target &target = GetTarget();
1591 const lldb::DynamicValueType saved_prefer_dynamic = target.GetPreferDynamicValue ();
1592 if (saved_prefer_dynamic != lldb::eNoDynamicValues)
1593 target.SetPreferDynamicValue(lldb::eNoDynamicValues);
Greg Clayton15484402015-05-15 18:40:24 +00001594
Pavel Labath862432c2015-11-03 16:05:18 +00001595 // Now let the OperatingSystem plug-in update the thread list
Greg Clayton15484402015-05-15 18:40:24 +00001596
Pavel Labath862432c2015-11-03 16:05:18 +00001597 os->UpdateThreadList (old_thread_list, // Old list full of threads created by OS plug-in
1598 real_thread_list, // The actual thread list full of threads created by each lldb_private::Process subclass
1599 new_thread_list); // The new thread list that we will show to the user that gets filled in
Greg Clayton15484402015-05-15 18:40:24 +00001600
Pavel Labath862432c2015-11-03 16:05:18 +00001601 if (saved_prefer_dynamic != lldb::eNoDynamicValues)
1602 target.SetPreferDynamicValue(saved_prefer_dynamic);
1603 }
1604 else
1605 {
1606 // No OS plug-in, the new thread list is the same as the real thread list
1607 new_thread_list = real_thread_list;
Jim Ingham09437922013-03-01 20:04:25 +00001608 }
Jim Ingham02ff8e02013-06-22 00:55:02 +00001609
1610 m_thread_list_real.Update(real_thread_list);
Andrew Kaylorba4e61d2013-05-07 18:35:34 +00001611 m_thread_list.Update (new_thread_list);
1612 m_thread_list.SetStopID (stop_id);
Jason Molendaa6e91302013-11-19 05:44:41 +00001613
Jason Molenda4ff13262013-11-20 00:31:38 +00001614 if (GetLastNaturalStopID () != m_extended_thread_stop_id)
1615 {
1616 // Clear any extended threads that we may have accumulated previously
1617 m_extended_thread_list.Clear();
1618 m_extended_thread_stop_id = GetLastNaturalStopID ();
Jason Molenda5e8dce42013-12-13 00:29:16 +00001619
1620 m_queue_list.Clear();
1621 m_queue_list_stop_id = GetLastNaturalStopID ();
Jason Molenda4ff13262013-11-20 00:31:38 +00001622 }
Greg Clayton9fc13552012-04-10 00:18:59 +00001623 }
Greg Clayton2637f822011-11-17 01:23:07 +00001624 }
Greg Clayton56d9a1b2011-08-22 02:49:39 +00001625 }
1626}
1627
Jason Molenda5e8dce42013-12-13 00:29:16 +00001628void
1629Process::UpdateQueueListIfNeeded ()
1630{
1631 if (m_system_runtime_ap.get())
1632 {
1633 if (m_queue_list.GetSize() == 0 || m_queue_list_stop_id != GetLastNaturalStopID())
1634 {
1635 const StateType state = GetPrivateState();
1636 if (StateIsStoppedState (state, true))
1637 {
1638 m_system_runtime_ap->PopulateQueueList (m_queue_list);
1639 m_queue_list_stop_id = GetLastNaturalStopID();
1640 }
1641 }
1642 }
1643}
1644
Greg Claytona4d87472013-01-18 23:41:08 +00001645ThreadSP
1646Process::CreateOSPluginThread (lldb::tid_t tid, lldb::addr_t context)
1647{
1648 OperatingSystem *os = GetOperatingSystem ();
1649 if (os)
1650 return os->CreateThread(tid, context);
1651 return ThreadSP();
1652}
1653
Han Ming Ongc2c423e2013-01-08 22:10:01 +00001654uint32_t
1655Process::GetNextThreadIndexID (uint64_t thread_id)
1656{
1657 return AssignIndexIDToThread(thread_id);
1658}
1659
1660bool
1661Process::HasAssignedIndexIDToThread(uint64_t thread_id)
1662{
Eugene Zelenko8f30a652015-10-23 18:39:37 +00001663 return (m_thread_id_to_index_id_map.find(thread_id) != m_thread_id_to_index_id_map.end());
Han Ming Ongc2c423e2013-01-08 22:10:01 +00001664}
1665
1666uint32_t
1667Process::AssignIndexIDToThread(uint64_t thread_id)
1668{
1669 uint32_t result = 0;
1670 std::map<uint64_t, uint32_t>::iterator iterator = m_thread_id_to_index_id_map.find(thread_id);
1671 if (iterator == m_thread_id_to_index_id_map.end())
1672 {
1673 result = ++m_thread_index_id;
1674 m_thread_id_to_index_id_map[thread_id] = result;
1675 }
1676 else
1677 {
1678 result = iterator->second;
1679 }
1680
1681 return result;
1682}
1683
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001684StateType
1685Process::GetState()
1686{
1687 // If any other threads access this we will need a mutex for it
1688 return m_public_state.GetValue ();
1689}
1690
Greg Claytondc6224e2014-10-21 01:00:42 +00001691bool
1692Process::StateChangedIsExternallyHijacked()
1693{
1694 if (IsHijackedForEvent(eBroadcastBitStateChanged))
1695 {
1696 if (strcmp(m_hijacking_listeners.back()->GetName(), "lldb.Process.ResumeSynchronous.hijack"))
1697 return true;
1698 }
1699 return false;
1700}
1701
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001702void
Jim Ingham221d51c2013-05-08 00:35:16 +00001703Process::SetPublicState (StateType new_state, bool restarted)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001704{
Greg Clayton5160ce52013-03-27 23:08:40 +00001705 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STATE | LIBLLDB_LOG_PROCESS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001706 if (log)
Jim Ingham221d51c2013-05-08 00:35:16 +00001707 log->Printf("Process::SetPublicState (state = %s, restarted = %i)", StateAsCString(new_state), restarted);
Greg Clayton7fdf9ef2012-04-05 16:12:35 +00001708 const StateType old_state = m_public_state.GetValue();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001709 m_public_state.SetValue (new_state);
Jim Ingham3b8285d2012-04-19 01:40:33 +00001710
1711 // On the transition from Run to Stopped, we unlock the writer end of the
1712 // run lock. The lock gets locked in Resume, which is the public API
1713 // to tell the program to run.
Greg Claytondc6224e2014-10-21 01:00:42 +00001714 if (!StateChangedIsExternallyHijacked())
Greg Clayton7fdf9ef2012-04-05 16:12:35 +00001715 {
Sean Callanan8b0737f2012-06-02 01:16:20 +00001716 if (new_state == eStateDetached)
Greg Clayton7fdf9ef2012-04-05 16:12:35 +00001717 {
Sean Callanan8b0737f2012-06-02 01:16:20 +00001718 if (log)
1719 log->Printf("Process::SetPublicState (%s) -- unlocking run lock for detach", StateAsCString(new_state));
Ed Maste64fad602013-07-29 20:58:06 +00001720 m_public_run_lock.SetStopped();
Sean Callanan8b0737f2012-06-02 01:16:20 +00001721 }
1722 else
1723 {
1724 const bool old_state_is_stopped = StateIsStoppedState(old_state, false);
1725 const bool new_state_is_stopped = StateIsStoppedState(new_state, false);
Jim Ingham221d51c2013-05-08 00:35:16 +00001726 if ((old_state_is_stopped != new_state_is_stopped))
Greg Clayton7fdf9ef2012-04-05 16:12:35 +00001727 {
Jim Ingham221d51c2013-05-08 00:35:16 +00001728 if (new_state_is_stopped && !restarted)
Sean Callanan8b0737f2012-06-02 01:16:20 +00001729 {
1730 if (log)
1731 log->Printf("Process::SetPublicState (%s) -- unlocking run lock", StateAsCString(new_state));
Ed Maste64fad602013-07-29 20:58:06 +00001732 m_public_run_lock.SetStopped();
Sean Callanan8b0737f2012-06-02 01:16:20 +00001733 }
Greg Clayton7fdf9ef2012-04-05 16:12:35 +00001734 }
Greg Clayton7fdf9ef2012-04-05 16:12:35 +00001735 }
1736 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001737}
1738
Jim Ingham3b8285d2012-04-19 01:40:33 +00001739Error
1740Process::Resume ()
1741{
Greg Clayton5160ce52013-03-27 23:08:40 +00001742 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STATE | LIBLLDB_LOG_PROCESS));
Jim Ingham3b8285d2012-04-19 01:40:33 +00001743 if (log)
1744 log->Printf("Process::Resume -- locking run lock");
Ed Maste64fad602013-07-29 20:58:06 +00001745 if (!m_public_run_lock.TrySetRunning())
Jim Ingham3b8285d2012-04-19 01:40:33 +00001746 {
1747 Error error("Resume request failed - process still running.");
1748 if (log)
Ed Maste64fad602013-07-29 20:58:06 +00001749 log->Printf ("Process::Resume: -- TrySetRunning failed, not resuming.");
Jim Ingham3b8285d2012-04-19 01:40:33 +00001750 return error;
1751 }
1752 return PrivateResume();
1753}
1754
Greg Claytondc6224e2014-10-21 01:00:42 +00001755Error
1756Process::ResumeSynchronous (Stream *stream)
1757{
1758 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STATE | LIBLLDB_LOG_PROCESS));
1759 if (log)
1760 log->Printf("Process::ResumeSynchronous -- locking run lock");
1761 if (!m_public_run_lock.TrySetRunning())
1762 {
1763 Error error("Resume request failed - process still running.");
1764 if (log)
1765 log->Printf ("Process::Resume: -- TrySetRunning failed, not resuming.");
1766 return error;
1767 }
1768
1769 ListenerSP listener_sp (new Listener("lldb.Process.ResumeSynchronous.hijack"));
1770 HijackProcessEvents(listener_sp.get());
1771
1772 Error error = PrivateResume();
Ilia Kd8c14752015-04-30 13:10:32 +00001773 if (error.Success())
1774 {
1775 StateType state = WaitForProcessToStop (NULL, NULL, true, listener_sp.get(), stream);
1776 const bool must_be_alive = false; // eStateExited is ok, so this must be false
1777 if (!StateIsStoppedState(state, must_be_alive))
1778 error.SetErrorStringWithFormat("process not in stopped state after synchronous resume: %s", StateAsCString(state));
1779 }
Greg Claytondc6224e2014-10-21 01:00:42 +00001780
1781 // Undo the hijacking of process events...
1782 RestoreProcessEvents();
1783
Greg Claytondc6224e2014-10-21 01:00:42 +00001784 return error;
1785}
1786
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001787StateType
1788Process::GetPrivateState ()
1789{
1790 return m_private_state.GetValue();
1791}
1792
1793void
1794Process::SetPrivateState (StateType new_state)
1795{
Greg Claytonfb8b37a2014-07-14 23:09:29 +00001796 if (m_finalize_called)
1797 return;
1798
Greg Clayton5160ce52013-03-27 23:08:40 +00001799 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STATE | LIBLLDB_LOG_PROCESS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001800 bool state_changed = false;
1801
1802 if (log)
1803 log->Printf("Process::SetPrivateState (%s)", StateAsCString(new_state));
1804
Andrew Kaylor29d65742013-05-10 17:19:04 +00001805 Mutex::Locker thread_locker(m_thread_list.GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001806 Mutex::Locker locker(m_private_state.GetMutex());
1807
1808 const StateType old_state = m_private_state.GetValueNoLock ();
1809 state_changed = old_state != new_state;
Ed Mastec29693f2013-07-02 16:35:47 +00001810
Greg Claytonaa49c832013-05-03 22:25:56 +00001811 const bool old_state_is_stopped = StateIsStoppedState(old_state, false);
1812 const bool new_state_is_stopped = StateIsStoppedState(new_state, false);
1813 if (old_state_is_stopped != new_state_is_stopped)
1814 {
1815 if (new_state_is_stopped)
Ed Maste64fad602013-07-29 20:58:06 +00001816 m_private_run_lock.SetStopped();
Greg Claytonaa49c832013-05-03 22:25:56 +00001817 else
Ed Maste64fad602013-07-29 20:58:06 +00001818 m_private_run_lock.SetRunning();
Greg Claytonaa49c832013-05-03 22:25:56 +00001819 }
Andrew Kaylor93132f52013-05-28 23:04:25 +00001820
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001821 if (state_changed)
1822 {
1823 m_private_state.SetValueNoLock (new_state);
Ilia K38810f42015-05-20 10:15:47 +00001824 EventSP event_sp (new Event (eBroadcastBitStateChanged, new ProcessEventData (shared_from_this(), new_state)));
Greg Clayton2637f822011-11-17 01:23:07 +00001825 if (StateIsStoppedState(new_state, false))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001826 {
Andrew Kaylor29d65742013-05-10 17:19:04 +00001827 // Note, this currently assumes that all threads in the list
1828 // stop when the process stops. In the future we will want to
1829 // support a debugging model where some threads continue to run
1830 // while others are stopped. When that happens we will either need
1831 // a way for the thread list to identify which threads are stopping
1832 // or create a special thread list containing only threads which
1833 // actually stopped.
1834 //
1835 // The process plugin is responsible for managing the actual
1836 // behavior of the threads and should have stopped any threads
1837 // that are going to stop before we get here.
1838 m_thread_list.DidStop();
1839
Jim Ingham4b536182011-08-09 02:12:22 +00001840 m_mod_id.BumpStopID();
Ilia K38810f42015-05-20 10:15:47 +00001841 if (!m_mod_id.IsLastResumeForUserExpression())
1842 m_mod_id.SetStopEventForLastNaturalStopID(event_sp);
Greg Clayton58be07b2011-01-07 06:08:19 +00001843 m_memory_cache.Clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001844 if (log)
Jim Ingham4b536182011-08-09 02:12:22 +00001845 log->Printf("Process::SetPrivateState (%s) stop_id = %u", StateAsCString(new_state), m_mod_id.GetStopID());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001846 }
Ilia K38810f42015-05-20 10:15:47 +00001847
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001848 // Use our target to get a shared pointer to ourselves...
Greg Clayton35a4cc52012-10-29 20:52:08 +00001849 if (m_finalize_called && PrivateStateThreadIsValid() == false)
Ilia K38810f42015-05-20 10:15:47 +00001850 BroadcastEvent (event_sp);
Greg Clayton35a4cc52012-10-29 20:52:08 +00001851 else
Ilia K38810f42015-05-20 10:15:47 +00001852 m_private_state_broadcaster.BroadcastEvent (event_sp);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001853 }
1854 else
1855 {
1856 if (log)
Jason Molendafd54b362011-09-20 21:44:10 +00001857 log->Printf("Process::SetPrivateState (%s) state didn't change. Ignoring...", StateAsCString(new_state));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001858 }
1859}
1860
Jim Ingham0faa43f2011-11-08 03:00:11 +00001861void
1862Process::SetRunningUserExpression (bool on)
1863{
1864 m_mod_id.SetRunningUserExpression (on);
1865}
1866
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001867addr_t
1868Process::GetImageInfoAddress()
1869{
1870 return LLDB_INVALID_ADDRESS;
1871}
1872
Greg Clayton31f1d2f2011-05-11 18:39:18 +00001873const lldb::ABISP &
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001874Process::GetABI()
1875{
Greg Clayton31f1d2f2011-05-11 18:39:18 +00001876 if (!m_abi_sp)
Zachary Turner7529df92015-09-01 20:02:29 +00001877 m_abi_sp = ABI::FindPlugin(GetTarget().GetArchitecture());
Greg Clayton31f1d2f2011-05-11 18:39:18 +00001878 return m_abi_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001879}
1880
Jim Ingham22777012010-09-23 02:01:19 +00001881LanguageRuntime *
Jim Inghamab175242012-03-10 00:22:19 +00001882Process::GetLanguageRuntime(lldb::LanguageType language, bool retry_if_null)
Jim Ingham22777012010-09-23 02:01:19 +00001883{
Greg Claytonc00ca312015-04-02 18:44:58 +00001884 if (m_finalizing)
1885 return nullptr;
1886
Jim Ingham22777012010-09-23 02:01:19 +00001887 LanguageRuntimeCollection::iterator pos;
1888 pos = m_language_runtimes.find (language);
Jim Inghamab175242012-03-10 00:22:19 +00001889 if (pos == m_language_runtimes.end() || (retry_if_null && !(*pos).second))
Jim Ingham22777012010-09-23 02:01:19 +00001890 {
Jim Inghamab175242012-03-10 00:22:19 +00001891 lldb::LanguageRuntimeSP runtime_sp(LanguageRuntime::FindPlugin(this, language));
Jim Ingham22777012010-09-23 02:01:19 +00001892
Jim Inghamab175242012-03-10 00:22:19 +00001893 m_language_runtimes[language] = runtime_sp;
1894 return runtime_sp.get();
Jim Ingham22777012010-09-23 02:01:19 +00001895 }
1896 else
1897 return (*pos).second.get();
1898}
1899
1900CPPLanguageRuntime *
Jim Inghamab175242012-03-10 00:22:19 +00001901Process::GetCPPLanguageRuntime (bool retry_if_null)
Jim Ingham22777012010-09-23 02:01:19 +00001902{
Jim Inghamab175242012-03-10 00:22:19 +00001903 LanguageRuntime *runtime = GetLanguageRuntime(eLanguageTypeC_plus_plus, retry_if_null);
Jim Ingham22777012010-09-23 02:01:19 +00001904 if (runtime != NULL && runtime->GetLanguageType() == eLanguageTypeC_plus_plus)
1905 return static_cast<CPPLanguageRuntime *> (runtime);
1906 return NULL;
1907}
1908
1909ObjCLanguageRuntime *
Jim Inghamab175242012-03-10 00:22:19 +00001910Process::GetObjCLanguageRuntime (bool retry_if_null)
Jim Ingham22777012010-09-23 02:01:19 +00001911{
Jim Inghamab175242012-03-10 00:22:19 +00001912 LanguageRuntime *runtime = GetLanguageRuntime(eLanguageTypeObjC, retry_if_null);
Jim Ingham22777012010-09-23 02:01:19 +00001913 if (runtime != NULL && runtime->GetLanguageType() == eLanguageTypeObjC)
1914 return static_cast<ObjCLanguageRuntime *> (runtime);
1915 return NULL;
1916}
1917
Enrico Granatafd4c84e2012-05-21 16:51:35 +00001918bool
1919Process::IsPossibleDynamicValue (ValueObject& in_value)
1920{
Greg Claytonc00ca312015-04-02 18:44:58 +00001921 if (m_finalizing)
1922 return false;
1923
Enrico Granatafd4c84e2012-05-21 16:51:35 +00001924 if (in_value.IsDynamic())
1925 return false;
1926 LanguageType known_type = in_value.GetObjectRuntimeLanguage();
1927
1928 if (known_type != eLanguageTypeUnknown && known_type != eLanguageTypeC)
1929 {
1930 LanguageRuntime *runtime = GetLanguageRuntime (known_type);
1931 return runtime ? runtime->CouldHaveDynamicValue(in_value) : false;
1932 }
1933
1934 LanguageRuntime *cpp_runtime = GetLanguageRuntime (eLanguageTypeC_plus_plus);
1935 if (cpp_runtime && cpp_runtime->CouldHaveDynamicValue(in_value))
1936 return true;
1937
1938 LanguageRuntime *objc_runtime = GetLanguageRuntime (eLanguageTypeObjC);
1939 return objc_runtime ? objc_runtime->CouldHaveDynamicValue(in_value) : false;
1940}
1941
Zachary Turner93749ab2015-03-03 21:51:25 +00001942void
1943Process::SetDynamicCheckers(DynamicCheckerFunctions *dynamic_checkers)
1944{
1945 m_dynamic_checkers_ap.reset(dynamic_checkers);
1946}
1947
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001948BreakpointSiteList &
1949Process::GetBreakpointSiteList()
1950{
1951 return m_breakpoint_site_list;
1952}
1953
1954const BreakpointSiteList &
1955Process::GetBreakpointSiteList() const
1956{
1957 return m_breakpoint_site_list;
1958}
1959
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001960void
1961Process::DisableAllBreakpointSites ()
1962{
Greg Claytond8cf1a12013-06-12 00:46:38 +00001963 m_breakpoint_site_list.ForEach([this](BreakpointSite *bp_site) -> void {
1964// bp_site->SetEnabled(true);
1965 DisableBreakpointSite(bp_site);
1966 });
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001967}
1968
1969Error
1970Process::ClearBreakpointSiteByID (lldb::user_id_t break_id)
1971{
1972 Error error (DisableBreakpointSiteByID (break_id));
1973
1974 if (error.Success())
1975 m_breakpoint_site_list.Remove(break_id);
1976
1977 return error;
1978}
1979
1980Error
1981Process::DisableBreakpointSiteByID (lldb::user_id_t break_id)
1982{
1983 Error error;
1984 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID (break_id);
1985 if (bp_site_sp)
1986 {
1987 if (bp_site_sp->IsEnabled())
Jim Ingham299c0c12013-02-15 02:06:30 +00001988 error = DisableBreakpointSite (bp_site_sp.get());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001989 }
1990 else
1991 {
Daniel Malead01b2952012-11-29 21:49:15 +00001992 error.SetErrorStringWithFormat("invalid breakpoint site ID: %" PRIu64, break_id);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001993 }
1994
1995 return error;
1996}
1997
1998Error
1999Process::EnableBreakpointSiteByID (lldb::user_id_t break_id)
2000{
2001 Error error;
2002 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID (break_id);
2003 if (bp_site_sp)
2004 {
2005 if (!bp_site_sp->IsEnabled())
Jim Ingham299c0c12013-02-15 02:06:30 +00002006 error = EnableBreakpointSite (bp_site_sp.get());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002007 }
2008 else
2009 {
Daniel Malead01b2952012-11-29 21:49:15 +00002010 error.SetErrorStringWithFormat("invalid breakpoint site ID: %" PRIu64, break_id);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002011 }
2012 return error;
2013}
2014
Stephen Wilson50bd94f2010-07-17 00:56:13 +00002015lldb::break_id_t
Greg Claytone1cd1be2012-01-29 20:56:30 +00002016Process::CreateBreakpointSite (const BreakpointLocationSP &owner, bool use_hardware)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002017{
Jim Ingham1460e4b2014-01-10 23:46:59 +00002018 addr_t load_addr = LLDB_INVALID_ADDRESS;
2019
2020 bool show_error = true;
2021 switch (GetState())
2022 {
2023 case eStateInvalid:
2024 case eStateUnloaded:
2025 case eStateConnected:
2026 case eStateAttaching:
2027 case eStateLaunching:
2028 case eStateDetached:
2029 case eStateExited:
2030 show_error = false;
2031 break;
2032
2033 case eStateStopped:
2034 case eStateRunning:
2035 case eStateStepping:
2036 case eStateCrashed:
2037 case eStateSuspended:
2038 show_error = IsAlive();
2039 break;
2040 }
2041
2042 // Reset the IsIndirect flag here, in case the location changes from
2043 // pointing to a indirect symbol to a regular symbol.
2044 owner->SetIsIndirect (false);
2045
2046 if (owner->ShouldResolveIndirectFunctions())
2047 {
2048 Symbol *symbol = owner->GetAddress().CalculateSymbolContextSymbol();
2049 if (symbol && symbol->IsIndirect())
2050 {
2051 Error error;
Greg Clayton358cf1e2015-06-25 21:46:34 +00002052 Address symbol_address = symbol->GetAddress();
2053 load_addr = ResolveIndirectFunction (&symbol_address, error);
Jim Ingham1460e4b2014-01-10 23:46:59 +00002054 if (!error.Success() && show_error)
2055 {
Zachary Turner7529df92015-09-01 20:02:29 +00002056 GetTarget().GetDebugger().GetErrorFile()->Printf ("warning: failed to resolve indirect function at 0x%" PRIx64 " for breakpoint %i.%i: %s\n",
2057 symbol->GetLoadAddress(&GetTarget()),
2058 owner->GetBreakpoint().GetID(),
2059 owner->GetID(),
2060 error.AsCString() ? error.AsCString() : "unknown error");
Jim Ingham1460e4b2014-01-10 23:46:59 +00002061 return LLDB_INVALID_BREAK_ID;
2062 }
2063 Address resolved_address(load_addr);
Zachary Turner7529df92015-09-01 20:02:29 +00002064 load_addr = resolved_address.GetOpcodeLoadAddress (&GetTarget());
Jim Ingham1460e4b2014-01-10 23:46:59 +00002065 owner->SetIsIndirect(true);
2066 }
2067 else
Zachary Turner7529df92015-09-01 20:02:29 +00002068 load_addr = owner->GetAddress().GetOpcodeLoadAddress (&GetTarget());
Jim Ingham1460e4b2014-01-10 23:46:59 +00002069 }
2070 else
Zachary Turner7529df92015-09-01 20:02:29 +00002071 load_addr = owner->GetAddress().GetOpcodeLoadAddress (&GetTarget());
Jim Ingham1460e4b2014-01-10 23:46:59 +00002072
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002073 if (load_addr != LLDB_INVALID_ADDRESS)
2074 {
2075 BreakpointSiteSP bp_site_sp;
2076
2077 // Look up this breakpoint site. If it exists, then add this new owner, otherwise
2078 // create a new breakpoint site and add it.
2079
2080 bp_site_sp = m_breakpoint_site_list.FindByAddress (load_addr);
2081
2082 if (bp_site_sp)
2083 {
2084 bp_site_sp->AddOwner (owner);
2085 owner->SetBreakpointSite (bp_site_sp);
2086 return bp_site_sp->GetID();
2087 }
2088 else
2089 {
Greg Claytonc7bece562013-01-25 18:06:21 +00002090 bp_site_sp.reset (new BreakpointSite (&m_breakpoint_site_list, owner, load_addr, use_hardware));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002091 if (bp_site_sp)
2092 {
Greg Claytoneb023e72013-10-11 19:48:25 +00002093 Error error = EnableBreakpointSite (bp_site_sp.get());
2094 if (error.Success())
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002095 {
2096 owner->SetBreakpointSite (bp_site_sp);
2097 return m_breakpoint_site_list.Add (bp_site_sp);
2098 }
Greg Claytoneb023e72013-10-11 19:48:25 +00002099 else
2100 {
Greg Claytonfbb76342013-11-20 21:07:01 +00002101 if (show_error)
2102 {
2103 // Report error for setting breakpoint...
Zachary Turner7529df92015-09-01 20:02:29 +00002104 GetTarget().GetDebugger().GetErrorFile()->Printf ("warning: failed to set breakpoint site at 0x%" PRIx64 " for breakpoint %i.%i: %s\n",
2105 load_addr,
2106 owner->GetBreakpoint().GetID(),
2107 owner->GetID(),
2108 error.AsCString() ? error.AsCString() : "unknown error");
Greg Claytonfbb76342013-11-20 21:07:01 +00002109 }
Greg Claytoneb023e72013-10-11 19:48:25 +00002110 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002111 }
2112 }
2113 }
2114 // We failed to enable the breakpoint
2115 return LLDB_INVALID_BREAK_ID;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002116}
2117
2118void
2119Process::RemoveOwnerFromBreakpointSite (lldb::user_id_t owner_id, lldb::user_id_t owner_loc_id, BreakpointSiteSP &bp_site_sp)
2120{
2121 uint32_t num_owners = bp_site_sp->RemoveOwner (owner_id, owner_loc_id);
2122 if (num_owners == 0)
2123 {
Jim Inghamf1ff3bb2013-04-06 00:16:39 +00002124 // Don't try to disable the site if we don't have a live process anymore.
2125 if (IsAlive())
2126 DisableBreakpointSite (bp_site_sp.get());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002127 m_breakpoint_site_list.RemoveByAddress(bp_site_sp->GetLoadAddress());
2128 }
2129}
2130
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002131size_t
2132Process::RemoveBreakpointOpcodesFromBuffer (addr_t bp_addr, size_t size, uint8_t *buf) const
2133{
2134 size_t bytes_removed = 0;
Jim Ingham20c77192011-06-29 19:42:28 +00002135 BreakpointSiteList bp_sites_in_range;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002136
Jim Ingham20c77192011-06-29 19:42:28 +00002137 if (m_breakpoint_site_list.FindInRange (bp_addr, bp_addr + size, bp_sites_in_range))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002138 {
Greg Claytond8cf1a12013-06-12 00:46:38 +00002139 bp_sites_in_range.ForEach([bp_addr, size, buf, &bytes_removed](BreakpointSite *bp_site) -> void {
2140 if (bp_site->GetType() == BreakpointSite::eSoftware)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002141 {
Greg Claytond8cf1a12013-06-12 00:46:38 +00002142 addr_t intersect_addr;
2143 size_t intersect_size;
2144 size_t opcode_offset;
2145 if (bp_site->IntersectsRange(bp_addr, size, &intersect_addr, &intersect_size, &opcode_offset))
Jim Ingham20c77192011-06-29 19:42:28 +00002146 {
2147 assert(bp_addr <= intersect_addr && intersect_addr < bp_addr + size);
2148 assert(bp_addr < intersect_addr + intersect_size && intersect_addr + intersect_size <= bp_addr + size);
Greg Claytond8cf1a12013-06-12 00:46:38 +00002149 assert(opcode_offset + intersect_size <= bp_site->GetByteSize());
Jim Ingham20c77192011-06-29 19:42:28 +00002150 size_t buf_offset = intersect_addr - bp_addr;
Greg Claytond8cf1a12013-06-12 00:46:38 +00002151 ::memcpy(buf + buf_offset, bp_site->GetSavedOpcodeBytes() + opcode_offset, intersect_size);
Jim Ingham20c77192011-06-29 19:42:28 +00002152 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002153 }
Greg Claytond8cf1a12013-06-12 00:46:38 +00002154 });
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002155 }
2156 return bytes_removed;
2157}
2158
Greg Claytonded470d2011-03-19 01:12:21 +00002159size_t
2160Process::GetSoftwareBreakpointTrapOpcode (BreakpointSite* bp_site)
2161{
Zachary Turner7529df92015-09-01 20:02:29 +00002162 PlatformSP platform_sp (GetTarget().GetPlatform());
Greg Claytonded470d2011-03-19 01:12:21 +00002163 if (platform_sp)
Zachary Turner7529df92015-09-01 20:02:29 +00002164 return platform_sp->GetSoftwareBreakpointTrapOpcode (GetTarget(), bp_site);
Greg Claytonded470d2011-03-19 01:12:21 +00002165 return 0;
2166}
2167
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002168Error
2169Process::EnableSoftwareBreakpoint (BreakpointSite *bp_site)
2170{
2171 Error error;
2172 assert (bp_site != NULL);
Greg Clayton5160ce52013-03-27 23:08:40 +00002173 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002174 const addr_t bp_addr = bp_site->GetLoadAddress();
2175 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +00002176 log->Printf ("Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64, bp_site->GetID(), (uint64_t)bp_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002177 if (bp_site->IsEnabled())
2178 {
2179 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +00002180 log->Printf ("Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64 " -- already enabled", bp_site->GetID(), (uint64_t)bp_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002181 return error;
2182 }
2183
2184 if (bp_addr == LLDB_INVALID_ADDRESS)
2185 {
2186 error.SetErrorString("BreakpointSite contains an invalid load address.");
2187 return error;
2188 }
2189 // Ask the lldb::Process subclass to fill in the correct software breakpoint
2190 // trap for the breakpoint site
2191 const size_t bp_opcode_size = GetSoftwareBreakpointTrapOpcode(bp_site);
2192
2193 if (bp_opcode_size == 0)
2194 {
Daniel Malead01b2952012-11-29 21:49:15 +00002195 error.SetErrorStringWithFormat ("Process::GetSoftwareBreakpointTrapOpcode() returned zero, unable to get breakpoint trap for address 0x%" PRIx64, bp_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002196 }
2197 else
2198 {
2199 const uint8_t * const bp_opcode_bytes = bp_site->GetTrapOpcodeBytes();
2200
2201 if (bp_opcode_bytes == NULL)
2202 {
2203 error.SetErrorString ("BreakpointSite doesn't contain a valid breakpoint trap opcode.");
2204 return error;
2205 }
2206
2207 // Save the original opcode by reading it
2208 if (DoReadMemory(bp_addr, bp_site->GetSavedOpcodeBytes(), bp_opcode_size, error) == bp_opcode_size)
2209 {
2210 // Write a software breakpoint in place of the original opcode
2211 if (DoWriteMemory(bp_addr, bp_opcode_bytes, bp_opcode_size, error) == bp_opcode_size)
2212 {
2213 uint8_t verify_bp_opcode_bytes[64];
2214 if (DoReadMemory(bp_addr, verify_bp_opcode_bytes, bp_opcode_size, error) == bp_opcode_size)
2215 {
2216 if (::memcmp(bp_opcode_bytes, verify_bp_opcode_bytes, bp_opcode_size) == 0)
2217 {
2218 bp_site->SetEnabled(true);
2219 bp_site->SetType (BreakpointSite::eSoftware);
2220 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +00002221 log->Printf ("Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64 " -- SUCCESS",
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002222 bp_site->GetID(),
2223 (uint64_t)bp_addr);
2224 }
2225 else
Greg Clayton86edbf42011-10-26 00:56:27 +00002226 error.SetErrorString("failed to verify the breakpoint trap in memory.");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002227 }
2228 else
2229 error.SetErrorString("Unable to read memory to verify breakpoint trap.");
2230 }
2231 else
2232 error.SetErrorString("Unable to write breakpoint trap to memory.");
2233 }
2234 else
2235 error.SetErrorString("Unable to read memory at breakpoint address.");
2236 }
Stephen Wilson78a4feb2011-01-12 04:20:03 +00002237 if (log && error.Fail())
Daniel Malead01b2952012-11-29 21:49:15 +00002238 log->Printf ("Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64 " -- FAILED: %s",
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002239 bp_site->GetID(),
2240 (uint64_t)bp_addr,
2241 error.AsCString());
2242 return error;
2243}
2244
2245Error
2246Process::DisableSoftwareBreakpoint (BreakpointSite *bp_site)
2247{
2248 Error error;
2249 assert (bp_site != NULL);
Greg Clayton5160ce52013-03-27 23:08:40 +00002250 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002251 addr_t bp_addr = bp_site->GetLoadAddress();
2252 lldb::user_id_t breakID = bp_site->GetID();
2253 if (log)
Jim Ingham299c0c12013-02-15 02:06:30 +00002254 log->Printf ("Process::DisableSoftwareBreakpoint (breakID = %" PRIu64 ") addr = 0x%" PRIx64, breakID, (uint64_t)bp_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002255
2256 if (bp_site->IsHardware())
2257 {
2258 error.SetErrorString("Breakpoint site is a hardware breakpoint.");
2259 }
2260 else if (bp_site->IsEnabled())
2261 {
2262 const size_t break_op_size = bp_site->GetByteSize();
2263 const uint8_t * const break_op = bp_site->GetTrapOpcodeBytes();
2264 if (break_op_size > 0)
2265 {
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +00002266 // Clear a software breakpoint instruction
Greg Claytonc982c762010-07-09 20:39:50 +00002267 uint8_t curr_break_op[8];
Stephen Wilson4ab47682010-07-20 18:41:11 +00002268 assert (break_op_size <= sizeof(curr_break_op));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002269 bool break_op_found = false;
2270
2271 // Read the breakpoint opcode
2272 if (DoReadMemory (bp_addr, curr_break_op, break_op_size, error) == break_op_size)
2273 {
2274 bool verify = false;
Bruce Mitchener58ef3912015-06-18 05:27:05 +00002275 // Make sure the breakpoint opcode exists at this address
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002276 if (::memcmp (curr_break_op, break_op, break_op_size) == 0)
2277 {
2278 break_op_found = true;
2279 // We found a valid breakpoint opcode at this address, now restore
2280 // the saved opcode.
2281 if (DoWriteMemory (bp_addr, bp_site->GetSavedOpcodeBytes(), break_op_size, error) == break_op_size)
2282 {
2283 verify = true;
2284 }
2285 else
2286 error.SetErrorString("Memory write failed when restoring original opcode.");
2287 }
2288 else
2289 {
2290 error.SetErrorString("Original breakpoint trap is no longer in memory.");
2291 // Set verify to true and so we can check if the original opcode has already been restored
2292 verify = true;
2293 }
2294
2295 if (verify)
2296 {
Greg Claytonc982c762010-07-09 20:39:50 +00002297 uint8_t verify_opcode[8];
Stephen Wilson4ab47682010-07-20 18:41:11 +00002298 assert (break_op_size < sizeof(verify_opcode));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002299 // Verify that our original opcode made it back to the inferior
2300 if (DoReadMemory (bp_addr, verify_opcode, break_op_size, error) == break_op_size)
2301 {
2302 // compare the memory we just read with the original opcode
2303 if (::memcmp (bp_site->GetSavedOpcodeBytes(), verify_opcode, break_op_size) == 0)
2304 {
2305 // SUCCESS
2306 bp_site->SetEnabled(false);
2307 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +00002308 log->Printf ("Process::DisableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64 " -- SUCCESS", bp_site->GetID(), (uint64_t)bp_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002309 return error;
2310 }
2311 else
2312 {
2313 if (break_op_found)
2314 error.SetErrorString("Failed to restore original opcode.");
2315 }
2316 }
2317 else
2318 error.SetErrorString("Failed to read memory to verify that breakpoint trap was restored.");
2319 }
2320 }
2321 else
2322 error.SetErrorString("Unable to read memory that should contain the breakpoint trap.");
2323 }
2324 }
2325 else
2326 {
2327 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +00002328 log->Printf ("Process::DisableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64 " -- already disabled", bp_site->GetID(), (uint64_t)bp_addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002329 return error;
2330 }
2331
2332 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +00002333 log->Printf ("Process::DisableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64 " -- FAILED: %s",
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002334 bp_site->GetID(),
2335 (uint64_t)bp_addr,
2336 error.AsCString());
2337 return error;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002338}
2339
Greg Clayton58be07b2011-01-07 06:08:19 +00002340// Uncomment to verify memory caching works after making changes to caching code
2341//#define VERIFY_MEMORY_READS
2342
Sean Callanan64c0cf22012-06-07 22:26:42 +00002343size_t
2344Process::ReadMemory (addr_t addr, void *buf, size_t size, Error &error)
2345{
Jason Molendaa7b5afa2013-11-15 00:17:32 +00002346 error.Clear();
Sean Callanan64c0cf22012-06-07 22:26:42 +00002347 if (!GetDisableMemoryCache())
2348 {
Greg Clayton58be07b2011-01-07 06:08:19 +00002349#if defined (VERIFY_MEMORY_READS)
Sean Callanan64c0cf22012-06-07 22:26:42 +00002350 // Memory caching is enabled, with debug verification
2351
2352 if (buf && size)
2353 {
2354 // Uncomment the line below to make sure memory caching is working.
2355 // I ran this through the test suite and got no assertions, so I am
2356 // pretty confident this is working well. If any changes are made to
2357 // memory caching, uncomment the line below and test your changes!
2358
2359 // Verify all memory reads by using the cache first, then redundantly
2360 // reading the same memory from the inferior and comparing to make sure
2361 // everything is exactly the same.
2362 std::string verify_buf (size, '\0');
2363 assert (verify_buf.size() == size);
2364 const size_t cache_bytes_read = m_memory_cache.Read (this, addr, buf, size, error);
2365 Error verify_error;
2366 const size_t verify_bytes_read = ReadMemoryFromInferior (addr, const_cast<char *>(verify_buf.data()), verify_buf.size(), verify_error);
2367 assert (cache_bytes_read == verify_bytes_read);
2368 assert (memcmp(buf, verify_buf.data(), verify_buf.size()) == 0);
2369 assert (verify_error.Success() == error.Success());
2370 return cache_bytes_read;
2371 }
2372 return 0;
2373#else // !defined(VERIFY_MEMORY_READS)
2374 // Memory caching is enabled, without debug verification
2375
2376 return m_memory_cache.Read (addr, buf, size, error);
2377#endif // defined (VERIFY_MEMORY_READS)
Greg Clayton58be07b2011-01-07 06:08:19 +00002378 }
Sean Callanan64c0cf22012-06-07 22:26:42 +00002379 else
2380 {
2381 // Memory caching is disabled
2382
2383 return ReadMemoryFromInferior (addr, buf, size, error);
2384 }
Greg Clayton58be07b2011-01-07 06:08:19 +00002385}
Greg Clayton58be07b2011-01-07 06:08:19 +00002386
Greg Clayton4c82d422012-05-18 23:20:01 +00002387size_t
2388Process::ReadCStringFromMemory (addr_t addr, std::string &out_str, Error &error)
2389{
Greg Claytonde87c0f2012-05-19 00:18:00 +00002390 char buf[256];
Greg Clayton4c82d422012-05-18 23:20:01 +00002391 out_str.clear();
2392 addr_t curr_addr = addr;
2393 while (1)
2394 {
2395 size_t length = ReadCStringFromMemory (curr_addr, buf, sizeof(buf), error);
2396 if (length == 0)
2397 break;
2398 out_str.append(buf, length);
2399 // If we got "length - 1" bytes, we didn't get the whole C string, we
2400 // need to read some more characters
2401 if (length == sizeof(buf) - 1)
2402 curr_addr += length;
2403 else
2404 break;
2405 }
2406 return out_str.size();
2407}
2408
Greg Clayton58be07b2011-01-07 06:08:19 +00002409size_t
Ashok Thirumurthi6ac9d132013-04-19 15:58:38 +00002410Process::ReadStringFromMemory (addr_t addr, char *dst, size_t max_bytes, Error &error,
2411 size_t type_width)
2412{
2413 size_t total_bytes_read = 0;
2414 if (dst && max_bytes && type_width && max_bytes >= type_width)
2415 {
2416 // Ensure a null terminator independent of the number of bytes that is read.
2417 memset (dst, 0, max_bytes);
2418 size_t bytes_left = max_bytes - type_width;
2419
2420 const char terminator[4] = {'\0', '\0', '\0', '\0'};
2421 assert(sizeof(terminator) >= type_width &&
2422 "Attempting to validate a string with more than 4 bytes per character!");
2423
2424 addr_t curr_addr = addr;
2425 const size_t cache_line_size = m_memory_cache.GetMemoryCacheLineSize();
2426 char *curr_dst = dst;
2427
2428 error.Clear();
2429 while (bytes_left > 0 && error.Success())
2430 {
2431 addr_t cache_line_bytes_left = cache_line_size - (curr_addr % cache_line_size);
2432 addr_t bytes_to_read = std::min<addr_t>(bytes_left, cache_line_bytes_left);
2433 size_t bytes_read = ReadMemory (curr_addr, curr_dst, bytes_to_read, error);
2434
2435 if (bytes_read == 0)
2436 break;
2437
2438 // Search for a null terminator of correct size and alignment in bytes_read
2439 size_t aligned_start = total_bytes_read - total_bytes_read % type_width;
2440 for (size_t i = aligned_start; i + type_width <= total_bytes_read + bytes_read; i += type_width)
2441 if (::strncmp(&dst[i], terminator, type_width) == 0)
2442 {
2443 error.Clear();
2444 return i;
2445 }
2446
2447 total_bytes_read += bytes_read;
2448 curr_dst += bytes_read;
2449 curr_addr += bytes_read;
2450 bytes_left -= bytes_read;
2451 }
2452 }
2453 else
2454 {
2455 if (max_bytes)
2456 error.SetErrorString("invalid arguments");
2457 }
2458 return total_bytes_read;
2459}
2460
2461// Deprecated in favor of ReadStringFromMemory which has wchar support and correct code to find
2462// null terminators.
2463size_t
Greg Claytone91b7952011-12-15 03:14:23 +00002464Process::ReadCStringFromMemory (addr_t addr, char *dst, size_t dst_max_len, Error &result_error)
Greg Clayton8b82f082011-04-12 05:54:46 +00002465{
2466 size_t total_cstr_len = 0;
2467 if (dst && dst_max_len)
2468 {
Greg Claytone91b7952011-12-15 03:14:23 +00002469 result_error.Clear();
Greg Clayton8b82f082011-04-12 05:54:46 +00002470 // NULL out everything just to be safe
2471 memset (dst, 0, dst_max_len);
2472 Error error;
2473 addr_t curr_addr = addr;
2474 const size_t cache_line_size = m_memory_cache.GetMemoryCacheLineSize();
2475 size_t bytes_left = dst_max_len - 1;
2476 char *curr_dst = dst;
2477
2478 while (bytes_left > 0)
2479 {
2480 addr_t cache_line_bytes_left = cache_line_size - (curr_addr % cache_line_size);
2481 addr_t bytes_to_read = std::min<addr_t>(bytes_left, cache_line_bytes_left);
2482 size_t bytes_read = ReadMemory (curr_addr, curr_dst, bytes_to_read, error);
2483
2484 if (bytes_read == 0)
2485 {
Greg Claytone91b7952011-12-15 03:14:23 +00002486 result_error = error;
Greg Clayton8b82f082011-04-12 05:54:46 +00002487 dst[total_cstr_len] = '\0';
2488 break;
2489 }
2490 const size_t len = strlen(curr_dst);
2491
2492 total_cstr_len += len;
2493
2494 if (len < bytes_to_read)
2495 break;
2496
2497 curr_dst += bytes_read;
2498 curr_addr += bytes_read;
2499 bytes_left -= bytes_read;
2500 }
2501 }
Greg Claytone91b7952011-12-15 03:14:23 +00002502 else
2503 {
2504 if (dst == NULL)
2505 result_error.SetErrorString("invalid arguments");
2506 else
2507 result_error.Clear();
2508 }
Greg Clayton8b82f082011-04-12 05:54:46 +00002509 return total_cstr_len;
2510}
2511
2512size_t
Greg Clayton58be07b2011-01-07 06:08:19 +00002513Process::ReadMemoryFromInferior (addr_t addr, void *buf, size_t size, Error &error)
2514{
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002515 if (buf == NULL || size == 0)
2516 return 0;
2517
2518 size_t bytes_read = 0;
2519 uint8_t *bytes = (uint8_t *)buf;
2520
2521 while (bytes_read < size)
2522 {
2523 const size_t curr_size = size - bytes_read;
2524 const size_t curr_bytes_read = DoReadMemory (addr + bytes_read,
2525 bytes + bytes_read,
2526 curr_size,
2527 error);
2528 bytes_read += curr_bytes_read;
2529 if (curr_bytes_read == curr_size || curr_bytes_read == 0)
2530 break;
2531 }
2532
2533 // Replace any software breakpoint opcodes that fall into this range back
2534 // into "buf" before we return
2535 if (bytes_read > 0)
2536 RemoveBreakpointOpcodesFromBuffer (addr, bytes_read, (uint8_t *)buf);
2537 return bytes_read;
2538}
2539
Greg Clayton58a4c462010-12-16 20:01:20 +00002540uint64_t
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002541Process::ReadUnsignedIntegerFromMemory (lldb::addr_t vm_addr, size_t integer_byte_size, uint64_t fail_value, Error &error)
Greg Clayton58a4c462010-12-16 20:01:20 +00002542{
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002543 Scalar scalar;
2544 if (ReadScalarIntegerFromMemory(vm_addr, integer_byte_size, false, scalar, error))
2545 return scalar.ULongLong(fail_value);
2546 return fail_value;
2547}
2548
2549addr_t
2550Process::ReadPointerFromMemory (lldb::addr_t vm_addr, Error &error)
2551{
2552 Scalar scalar;
2553 if (ReadScalarIntegerFromMemory(vm_addr, GetAddressByteSize(), false, scalar, error))
2554 return scalar.ULongLong(LLDB_INVALID_ADDRESS);
2555 return LLDB_INVALID_ADDRESS;
2556}
2557
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002558bool
2559Process::WritePointerToMemory (lldb::addr_t vm_addr,
2560 lldb::addr_t ptr_value,
2561 Error &error)
2562{
2563 Scalar scalar;
2564 const uint32_t addr_byte_size = GetAddressByteSize();
2565 if (addr_byte_size <= 4)
2566 scalar = (uint32_t)ptr_value;
Greg Clayton58a4c462010-12-16 20:01:20 +00002567 else
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002568 scalar = ptr_value;
2569 return WriteScalarToMemory(vm_addr, scalar, addr_byte_size, error) == addr_byte_size;
Greg Clayton58a4c462010-12-16 20:01:20 +00002570}
2571
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002572size_t
2573Process::WriteMemoryPrivate (addr_t addr, const void *buf, size_t size, Error &error)
2574{
2575 size_t bytes_written = 0;
2576 const uint8_t *bytes = (const uint8_t *)buf;
2577
2578 while (bytes_written < size)
2579 {
2580 const size_t curr_size = size - bytes_written;
2581 const size_t curr_bytes_written = DoWriteMemory (addr + bytes_written,
2582 bytes + bytes_written,
2583 curr_size,
2584 error);
2585 bytes_written += curr_bytes_written;
2586 if (curr_bytes_written == curr_size || curr_bytes_written == 0)
2587 break;
2588 }
2589 return bytes_written;
2590}
2591
2592size_t
2593Process::WriteMemory (addr_t addr, const void *buf, size_t size, Error &error)
2594{
Greg Clayton58be07b2011-01-07 06:08:19 +00002595#if defined (ENABLE_MEMORY_CACHING)
2596 m_memory_cache.Flush (addr, size);
2597#endif
2598
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002599 if (buf == NULL || size == 0)
2600 return 0;
Jim Ingham78a685a2011-04-16 00:01:13 +00002601
Jim Ingham4b536182011-08-09 02:12:22 +00002602 m_mod_id.BumpMemoryID();
Jim Ingham78a685a2011-04-16 00:01:13 +00002603
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002604 // We need to write any data that would go where any current software traps
2605 // (enabled software breakpoints) any software traps (breakpoints) that we
2606 // may have placed in our tasks memory.
2607
Greg Claytond8cf1a12013-06-12 00:46:38 +00002608 BreakpointSiteList bp_sites_in_range;
2609
2610 if (m_breakpoint_site_list.FindInRange (addr, addr + size, bp_sites_in_range))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002611 {
Greg Claytond8cf1a12013-06-12 00:46:38 +00002612 // No breakpoint sites overlap
2613 if (bp_sites_in_range.IsEmpty())
2614 return WriteMemoryPrivate (addr, buf, size, error);
2615 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002616 {
Greg Claytond8cf1a12013-06-12 00:46:38 +00002617 const uint8_t *ubuf = (const uint8_t *)buf;
2618 uint64_t bytes_written = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002619
Greg Claytond8cf1a12013-06-12 00:46:38 +00002620 bp_sites_in_range.ForEach([this, addr, size, &bytes_written, &ubuf, &error](BreakpointSite *bp) -> void {
2621
2622 if (error.Success())
2623 {
2624 addr_t intersect_addr;
2625 size_t intersect_size;
2626 size_t opcode_offset;
2627 const bool intersects = bp->IntersectsRange(addr, size, &intersect_addr, &intersect_size, &opcode_offset);
Bruce Mitchener8a67bf72015-07-24 00:23:29 +00002628 UNUSED_IF_ASSERT_DISABLED(intersects);
Greg Claytond8cf1a12013-06-12 00:46:38 +00002629 assert(intersects);
2630 assert(addr <= intersect_addr && intersect_addr < addr + size);
2631 assert(addr < intersect_addr + intersect_size && intersect_addr + intersect_size <= addr + size);
2632 assert(opcode_offset + intersect_size <= bp->GetByteSize());
2633
2634 // Check for bytes before this breakpoint
2635 const addr_t curr_addr = addr + bytes_written;
2636 if (intersect_addr > curr_addr)
2637 {
2638 // There are some bytes before this breakpoint that we need to
2639 // just write to memory
2640 size_t curr_size = intersect_addr - curr_addr;
2641 size_t curr_bytes_written = WriteMemoryPrivate (curr_addr,
2642 ubuf + bytes_written,
2643 curr_size,
2644 error);
2645 bytes_written += curr_bytes_written;
2646 if (curr_bytes_written != curr_size)
2647 {
2648 // We weren't able to write all of the requested bytes, we
2649 // are done looping and will return the number of bytes that
2650 // we have written so far.
2651 if (error.Success())
2652 error.SetErrorToGenericError();
2653 }
2654 }
2655 // Now write any bytes that would cover up any software breakpoints
2656 // directly into the breakpoint opcode buffer
2657 ::memcpy(bp->GetSavedOpcodeBytes() + opcode_offset, ubuf + bytes_written, intersect_size);
2658 bytes_written += intersect_size;
2659 }
2660 });
2661
2662 if (bytes_written < size)
Jason Molenda8b5f2cf2014-10-16 07:49:27 +00002663 WriteMemoryPrivate (addr + bytes_written,
2664 ubuf + bytes_written,
2665 size - bytes_written,
2666 error);
Greg Claytond8cf1a12013-06-12 00:46:38 +00002667 }
2668 }
2669 else
2670 {
2671 return WriteMemoryPrivate (addr, buf, size, error);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002672 }
2673
2674 // Write any remaining bytes after the last breakpoint if we have any left
Greg Claytond8cf1a12013-06-12 00:46:38 +00002675 return 0; //bytes_written;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002676}
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002677
2678size_t
Greg Claytonc7bece562013-01-25 18:06:21 +00002679Process::WriteScalarToMemory (addr_t addr, const Scalar &scalar, size_t byte_size, Error &error)
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002680{
2681 if (byte_size == UINT32_MAX)
2682 byte_size = scalar.GetByteSize();
2683 if (byte_size > 0)
2684 {
2685 uint8_t buf[32];
2686 const size_t mem_size = scalar.GetAsMemoryData (buf, byte_size, GetByteOrder(), error);
2687 if (mem_size > 0)
2688 return WriteMemory(addr, buf, mem_size, error);
2689 else
2690 error.SetErrorString ("failed to get scalar as memory data");
2691 }
2692 else
2693 {
2694 error.SetErrorString ("invalid scalar value");
2695 }
2696 return 0;
2697}
2698
2699size_t
2700Process::ReadScalarIntegerFromMemory (addr_t addr,
2701 uint32_t byte_size,
2702 bool is_signed,
2703 Scalar &scalar,
2704 Error &error)
2705{
Greg Clayton7060f892013-05-01 23:41:30 +00002706 uint64_t uval = 0;
2707 if (byte_size == 0)
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002708 {
Greg Clayton7060f892013-05-01 23:41:30 +00002709 error.SetErrorString ("byte size is zero");
2710 }
2711 else if (byte_size & (byte_size - 1))
2712 {
2713 error.SetErrorStringWithFormat ("byte size %u is not a power of 2", byte_size);
2714 }
2715 else if (byte_size <= sizeof(uval))
2716 {
2717 const size_t bytes_read = ReadMemory (addr, &uval, byte_size, error);
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002718 if (bytes_read == byte_size)
2719 {
2720 DataExtractor data (&uval, sizeof(uval), GetByteOrder(), GetAddressByteSize());
Greg Claytonc7bece562013-01-25 18:06:21 +00002721 lldb::offset_t offset = 0;
Greg Clayton7060f892013-05-01 23:41:30 +00002722 if (byte_size <= 4)
2723 scalar = data.GetMaxU32 (&offset, byte_size);
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002724 else
Greg Clayton7060f892013-05-01 23:41:30 +00002725 scalar = data.GetMaxU64 (&offset, byte_size);
Greg Claytonf3ef3d22011-05-22 22:46:53 +00002726 if (is_signed)
2727 scalar.SignExtend(byte_size * 8);
2728 return bytes_read;
2729 }
2730 }
2731 else
2732 {
2733 error.SetErrorStringWithFormat ("byte size of %u is too large for integer scalar type", byte_size);
2734 }
2735 return 0;
2736}
2737
Greg Claytond495c532011-05-17 03:37:42 +00002738#define USE_ALLOCATE_MEMORY_CACHE 1
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002739addr_t
2740Process::AllocateMemory(size_t size, uint32_t permissions, Error &error)
2741{
Jim Inghamf72ce3a2011-06-20 17:32:44 +00002742 if (GetPrivateState() != eStateStopped)
2743 return LLDB_INVALID_ADDRESS;
2744
Greg Claytond495c532011-05-17 03:37:42 +00002745#if defined (USE_ALLOCATE_MEMORY_CACHE)
2746 return m_allocated_memory_cache.AllocateMemory(size, permissions, error);
2747#else
Greg Claytonb2daec92011-01-23 19:58:49 +00002748 addr_t allocated_addr = DoAllocateMemory (size, permissions, error);
Greg Clayton5160ce52013-03-27 23:08:40 +00002749 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Greg Claytonb2daec92011-01-23 19:58:49 +00002750 if (log)
Greg Clayton45989072013-10-23 18:24:30 +00002751 log->Printf("Process::AllocateMemory(size=%" PRIu64 ", permissions=%s) => 0x%16.16" PRIx64 " (m_stop_id = %u m_memory_id = %u)",
Deepak Panickald66b50c2013-10-22 12:27:43 +00002752 (uint64_t)size,
Greg Claytond495c532011-05-17 03:37:42 +00002753 GetPermissionsAsCString (permissions),
Greg Claytonb2daec92011-01-23 19:58:49 +00002754 (uint64_t)allocated_addr,
Jim Ingham4b536182011-08-09 02:12:22 +00002755 m_mod_id.GetStopID(),
2756 m_mod_id.GetMemoryID());
Greg Claytonb2daec92011-01-23 19:58:49 +00002757 return allocated_addr;
Greg Claytond495c532011-05-17 03:37:42 +00002758#endif
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002759}
2760
Jim Ingham2c381412015-11-04 20:32:27 +00002761addr_t
2762Process::CallocateMemory(size_t size, uint32_t permissions, Error &error)
2763{
2764 addr_t return_addr = AllocateMemory(size, permissions, error);
2765 if (error.Success())
2766 {
2767 std::string buffer(size, 0);
2768 WriteMemory(return_addr, buffer.c_str(), size, error);
2769 }
2770 return return_addr;
2771}
2772
Sean Callanan90539452011-09-20 23:01:51 +00002773bool
2774Process::CanJIT ()
2775{
Sean Callanana7b443a2012-02-14 22:50:38 +00002776 if (m_can_jit == eCanJITDontKnow)
2777 {
Todd Fialaaf245d12014-06-30 21:05:18 +00002778 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Sean Callanana7b443a2012-02-14 22:50:38 +00002779 Error err;
2780
2781 uint64_t allocated_memory = AllocateMemory(8,
2782 ePermissionsReadable | ePermissionsWritable | ePermissionsExecutable,
2783 err);
2784
2785 if (err.Success())
Todd Fialaaf245d12014-06-30 21:05:18 +00002786 {
Sean Callanana7b443a2012-02-14 22:50:38 +00002787 m_can_jit = eCanJITYes;
Todd Fialaaf245d12014-06-30 21:05:18 +00002788 if (log)
2789 log->Printf ("Process::%s pid %" PRIu64 " allocation test passed, CanJIT () is true", __FUNCTION__, GetID ());
2790 }
Sean Callanana7b443a2012-02-14 22:50:38 +00002791 else
Todd Fialaaf245d12014-06-30 21:05:18 +00002792 {
Sean Callanana7b443a2012-02-14 22:50:38 +00002793 m_can_jit = eCanJITNo;
Todd Fialaaf245d12014-06-30 21:05:18 +00002794 if (log)
2795 log->Printf ("Process::%s pid %" PRIu64 " allocation test failed, CanJIT () is false: %s", __FUNCTION__, GetID (), err.AsCString ());
2796 }
Sean Callanana7b443a2012-02-14 22:50:38 +00002797
2798 DeallocateMemory (allocated_memory);
2799 }
2800
Sean Callanan90539452011-09-20 23:01:51 +00002801 return m_can_jit == eCanJITYes;
2802}
2803
2804void
2805Process::SetCanJIT (bool can_jit)
2806{
2807 m_can_jit = (can_jit ? eCanJITYes : eCanJITNo);
2808}
2809
Ewan Crawford90ff7912015-07-14 10:56:58 +00002810void
2811Process::SetCanRunCode (bool can_run_code)
2812{
2813 SetCanJIT(can_run_code);
2814 m_can_interpret_function_calls = can_run_code;
2815}
2816
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002817Error
2818Process::DeallocateMemory (addr_t ptr)
2819{
Greg Claytond495c532011-05-17 03:37:42 +00002820 Error error;
2821#if defined (USE_ALLOCATE_MEMORY_CACHE)
2822 if (!m_allocated_memory_cache.DeallocateMemory(ptr))
2823 {
Daniel Malead01b2952012-11-29 21:49:15 +00002824 error.SetErrorStringWithFormat ("deallocation of memory at 0x%" PRIx64 " failed.", (uint64_t)ptr);
Greg Claytond495c532011-05-17 03:37:42 +00002825 }
2826#else
2827 error = DoDeallocateMemory (ptr);
Greg Claytonb2daec92011-01-23 19:58:49 +00002828
Greg Clayton5160ce52013-03-27 23:08:40 +00002829 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Greg Claytonb2daec92011-01-23 19:58:49 +00002830 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +00002831 log->Printf("Process::DeallocateMemory(addr=0x%16.16" PRIx64 ") => err = %s (m_stop_id = %u, m_memory_id = %u)",
Greg Claytonb2daec92011-01-23 19:58:49 +00002832 ptr,
2833 error.AsCString("SUCCESS"),
Jim Ingham4b536182011-08-09 02:12:22 +00002834 m_mod_id.GetStopID(),
2835 m_mod_id.GetMemoryID());
Greg Claytond495c532011-05-17 03:37:42 +00002836#endif
Greg Claytonb2daec92011-01-23 19:58:49 +00002837 return error;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002838}
2839
Greg Claytonc9660542012-02-05 02:38:54 +00002840ModuleSP
Greg Claytonc859e2d2012-02-13 23:10:39 +00002841Process::ReadModuleFromMemory (const FileSpec& file_spec,
Andrew MacPherson17220c12014-03-05 10:12:43 +00002842 lldb::addr_t header_addr,
2843 size_t size_to_read)
Greg Claytonc9660542012-02-05 02:38:54 +00002844{
Jason Molenda08a32582015-07-25 02:39:42 +00002845 Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST);
2846 if (log)
2847 {
2848 log->Printf ("Process::ReadModuleFromMemory reading %s binary from memory", file_spec.GetPath().c_str());
2849 }
Greg Claytonc7f09cc2012-02-24 21:55:59 +00002850 ModuleSP module_sp (new Module (file_spec, ArchSpec()));
Greg Claytonc9660542012-02-05 02:38:54 +00002851 if (module_sp)
2852 {
Greg Claytonc7f09cc2012-02-24 21:55:59 +00002853 Error error;
Andrew MacPherson17220c12014-03-05 10:12:43 +00002854 ObjectFile *objfile = module_sp->GetMemoryObjectFile (shared_from_this(), header_addr, error, size_to_read);
Greg Claytonc7f09cc2012-02-24 21:55:59 +00002855 if (objfile)
Greg Claytonc7f09cc2012-02-24 21:55:59 +00002856 return module_sp;
Greg Claytonc9660542012-02-05 02:38:54 +00002857 }
Greg Claytonc7f09cc2012-02-24 21:55:59 +00002858 return ModuleSP();
Greg Claytonc9660542012-02-05 02:38:54 +00002859}
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002860
Zachary Turner93749ab2015-03-03 21:51:25 +00002861bool
2862Process::GetLoadAddressPermissions (lldb::addr_t load_addr, uint32_t &permissions)
2863{
2864 MemoryRegionInfo range_info;
2865 permissions = 0;
2866 Error error (GetMemoryRegionInfo (load_addr, range_info));
2867 if (!error.Success())
2868 return false;
2869 if (range_info.GetReadable() == MemoryRegionInfo::eDontKnow
2870 || range_info.GetWritable() == MemoryRegionInfo::eDontKnow
2871 || range_info.GetExecutable() == MemoryRegionInfo::eDontKnow)
2872 {
2873 return false;
2874 }
2875
2876 if (range_info.GetReadable() == MemoryRegionInfo::eYes)
2877 permissions |= lldb::ePermissionsReadable;
2878
2879 if (range_info.GetWritable() == MemoryRegionInfo::eYes)
2880 permissions |= lldb::ePermissionsWritable;
2881
2882 if (range_info.GetExecutable() == MemoryRegionInfo::eYes)
2883 permissions |= lldb::ePermissionsExecutable;
2884
2885 return true;
2886}
2887
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002888Error
Jim Ingham1b5792e2012-12-18 02:03:49 +00002889Process::EnableWatchpoint (Watchpoint *watchpoint, bool notify)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002890{
2891 Error error;
2892 error.SetErrorString("watchpoints are not supported");
2893 return error;
2894}
2895
2896Error
Jim Ingham1b5792e2012-12-18 02:03:49 +00002897Process::DisableWatchpoint (Watchpoint *watchpoint, bool notify)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002898{
2899 Error error;
2900 error.SetErrorString("watchpoints are not supported");
2901 return error;
2902}
2903
2904StateType
2905Process::WaitForProcessStopPrivate (const TimeValue *timeout, EventSP &event_sp)
2906{
2907 StateType state;
2908 // Now wait for the process to launch and return control to us, and then
2909 // call DidLaunch:
2910 while (1)
2911 {
Greg Clayton6779606a2011-01-22 23:43:18 +00002912 event_sp.reset();
2913 state = WaitForStateChangedEventsPrivate (timeout, event_sp);
2914
Greg Clayton2637f822011-11-17 01:23:07 +00002915 if (StateIsStoppedState(state, false))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002916 break;
Greg Clayton6779606a2011-01-22 23:43:18 +00002917
2918 // If state is invalid, then we timed out
2919 if (state == eStateInvalid)
2920 break;
2921
2922 if (event_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002923 HandlePrivateEvent (event_sp);
2924 }
2925 return state;
2926}
2927
Greg Clayton332e8b12015-01-13 21:13:08 +00002928void
2929Process::LoadOperatingSystemPlugin(bool flush)
2930{
2931 if (flush)
2932 m_thread_list.Clear();
2933 m_os_ap.reset (OperatingSystem::FindPlugin (this, NULL));
2934 if (flush)
2935 Flush();
2936}
2937
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002938Error
Greg Claytonfbb76342013-11-20 21:07:01 +00002939Process::Launch (ProcessLaunchInfo &launch_info)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002940{
2941 Error error;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002942 m_abi_sp.reset();
Greg Clayton93d3c8332011-02-16 04:46:07 +00002943 m_dyld_ap.reset();
Andrew MacPherson17220c12014-03-05 10:12:43 +00002944 m_jit_loaders_ap.reset();
Jason Molendaeef51062013-11-05 03:57:19 +00002945 m_system_runtime_ap.reset();
Greg Clayton56d9a1b2011-08-22 02:49:39 +00002946 m_os_ap.reset();
Caroline Ticeef5c6d02010-11-16 05:07:41 +00002947 m_process_input_reader.reset();
Greg Claytona97c4d22014-12-09 23:31:02 +00002948 m_stop_info_override_callback = NULL;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002949
Zachary Turner7529df92015-09-01 20:02:29 +00002950 Module *exe_module = GetTarget().GetExecutableModulePointer();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002951 if (exe_module)
2952 {
Greg Clayton2289fa42011-04-30 01:09:13 +00002953 char local_exec_file_path[PATH_MAX];
2954 char platform_exec_file_path[PATH_MAX];
2955 exe_module->GetFileSpec().GetPath(local_exec_file_path, sizeof(local_exec_file_path));
2956 exe_module->GetPlatformFileSpec().GetPath(platform_exec_file_path, sizeof(platform_exec_file_path));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002957 if (exe_module->GetFileSpec().Exists())
2958 {
Greg Claytonfbb76342013-11-20 21:07:01 +00002959 // Install anything that might need to be installed prior to launching.
2960 // For host systems, this will do nothing, but if we are connected to a
2961 // remote platform it will install any needed binaries
2962 error = GetTarget().Install(&launch_info);
2963 if (error.Fail())
2964 return error;
2965
Greg Clayton71337622011-02-24 22:24:29 +00002966 if (PrivateStateThreadIsValid ())
2967 PausePrivateStateThread ();
2968
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002969 error = WillLaunch (exe_module);
2970 if (error.Success())
2971 {
Jim Ingham221d51c2013-05-08 00:35:16 +00002972 const bool restarted = false;
2973 SetPublicState (eStateLaunching, restarted);
Greg Claytone24c4ac2011-11-17 04:46:02 +00002974 m_should_detach = false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002975
Ed Maste64fad602013-07-29 20:58:06 +00002976 if (m_public_run_lock.TrySetRunning())
Greg Clayton69fd4be2012-09-04 20:29:05 +00002977 {
2978 // Now launch using these arguments.
2979 error = DoLaunch (exe_module, launch_info);
2980 }
2981 else
2982 {
2983 // This shouldn't happen
2984 error.SetErrorString("failed to acquire process run lock");
2985 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002986
2987 if (error.Fail())
2988 {
2989 if (GetID() != LLDB_INVALID_PROCESS_ID)
2990 {
2991 SetID (LLDB_INVALID_PROCESS_ID);
2992 const char *error_string = error.AsCString();
2993 if (error_string == NULL)
2994 error_string = "launch failed";
2995 SetExitStatus (-1, error_string);
2996 }
2997 }
2998 else
2999 {
3000 EventSP event_sp;
Greg Clayton1a38ea72011-06-22 01:42:17 +00003001 TimeValue timeout_time;
3002 timeout_time = TimeValue::Now();
3003 timeout_time.OffsetWithSeconds(10);
3004 StateType state = WaitForProcessStopPrivate(&timeout_time, event_sp);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003005
Greg Clayton1a38ea72011-06-22 01:42:17 +00003006 if (state == eStateInvalid || event_sp.get() == NULL)
3007 {
3008 // We were able to launch the process, but we failed to
3009 // catch the initial stop.
Tamas Berghammer04e63142015-02-23 10:59:54 +00003010 error.SetErrorString ("failed to catch stop after launch");
Greg Clayton1a38ea72011-06-22 01:42:17 +00003011 SetExitStatus (0, "failed to catch stop after launch");
Jason Molendaede31932015-04-17 05:01:58 +00003012 Destroy(false);
Greg Clayton1a38ea72011-06-22 01:42:17 +00003013 }
3014 else if (state == eStateStopped || state == eStateCrashed)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003015 {
3016 DidLaunch ();
3017
Greg Claytonc859e2d2012-02-13 23:10:39 +00003018 DynamicLoader *dyld = GetDynamicLoader ();
3019 if (dyld)
3020 dyld->DidLaunch();
Greg Clayton93d3c8332011-02-16 04:46:07 +00003021
Andrew MacPhersoneb4d0602014-03-13 09:37:02 +00003022 GetJITLoaders().DidLaunch();
Andrew MacPherson17220c12014-03-05 10:12:43 +00003023
Jason Molendaeef51062013-11-05 03:57:19 +00003024 SystemRuntime *system_runtime = GetSystemRuntime ();
3025 if (system_runtime)
3026 system_runtime->DidLaunch();
3027
Greg Clayton332e8b12015-01-13 21:13:08 +00003028 LoadOperatingSystemPlugin(false);
Todd Fialaf72fa672014-10-07 16:05:21 +00003029
3030 // Note, the stop event was consumed above, but not handled. This was done
3031 // to give DidLaunch a chance to run. The target is either stopped or crashed.
3032 // Directly set the state. This is done to prevent a stop message with a bunch
3033 // of spurious output on thread status, as well as not pop a ProcessIOHandler.
3034 SetPublicState(state, false);
Greg Clayton71337622011-02-24 22:24:29 +00003035
3036 if (PrivateStateThreadIsValid ())
3037 ResumePrivateStateThread ();
3038 else
3039 StartPrivateStateThread ();
Greg Claytona97c4d22014-12-09 23:31:02 +00003040
3041 m_stop_info_override_callback = GetTarget().GetArchitecture().GetStopInfoOverrideCallback();
Ilia K6af632f2015-02-06 18:15:05 +00003042
3043 // Target was stopped at entry as was intended. Need to notify the listeners
3044 // about it.
Ilia K333fc182015-02-11 11:24:20 +00003045 if (state == eStateStopped && launch_info.GetFlags().Test(eLaunchFlagStopAtEntry))
Ilia K6af632f2015-02-06 18:15:05 +00003046 HandlePrivateEvent(event_sp);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003047 }
3048 else if (state == eStateExited)
3049 {
3050 // We exited while trying to launch somehow. Don't call DidLaunch as that's
3051 // not likely to work, and return an invalid pid.
3052 HandlePrivateEvent (event_sp);
3053 }
3054 }
3055 }
3056 }
3057 else
3058 {
Greg Clayton86edbf42011-10-26 00:56:27 +00003059 error.SetErrorStringWithFormat("file doesn't exist: '%s'", local_exec_file_path);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003060 }
3061 }
3062 return error;
3063}
3064
Greg Claytonc3776bf2012-02-09 06:16:32 +00003065Error
3066Process::LoadCore ()
3067{
3068 Error error = DoLoadCore();
3069 if (error.Success())
3070 {
Greg Clayton35824e32015-02-20 20:59:47 +00003071 Listener listener ("lldb.process.load_core_listener");
Greg Clayton338d0bd2015-02-20 21:51:06 +00003072 HijackProcessEvents(&listener);
Greg Clayton35824e32015-02-20 20:59:47 +00003073
Greg Claytonc3776bf2012-02-09 06:16:32 +00003074 if (PrivateStateThreadIsValid ())
3075 ResumePrivateStateThread ();
3076 else
3077 StartPrivateStateThread ();
3078
Greg Claytonc859e2d2012-02-13 23:10:39 +00003079 DynamicLoader *dyld = GetDynamicLoader ();
3080 if (dyld)
3081 dyld->DidAttach();
Andrew MacPherson17220c12014-03-05 10:12:43 +00003082
Andrew MacPhersoneb4d0602014-03-13 09:37:02 +00003083 GetJITLoaders().DidAttach();
Greg Claytonc859e2d2012-02-13 23:10:39 +00003084
Jason Molendaeef51062013-11-05 03:57:19 +00003085 SystemRuntime *system_runtime = GetSystemRuntime ();
3086 if (system_runtime)
3087 system_runtime->DidAttach();
3088
Greg Claytonc859e2d2012-02-13 23:10:39 +00003089 m_os_ap.reset (OperatingSystem::FindPlugin (this, NULL));
Greg Claytonc3776bf2012-02-09 06:16:32 +00003090 // We successfully loaded a core file, now pretend we stopped so we can
3091 // show all of the threads in the core file and explore the crashed
3092 // state.
3093 SetPrivateState (eStateStopped);
Greg Clayton35824e32015-02-20 20:59:47 +00003094
3095 // Wait indefinitely for a stopped event since we just posted one above...
3096 lldb::EventSP event_sp;
3097 listener.WaitForEvent (NULL, event_sp);
3098 StateType state = ProcessEventData::GetStateFromEvent(event_sp.get());
3099
3100 if (!StateIsStoppedState (state, false))
3101 {
3102 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3103 if (log)
3104 log->Printf("Process::Halt() failed to stop, state is: %s", StateAsCString(state));
3105 error.SetErrorString ("Did not get stopped event after loading the core file.");
3106 }
Greg Clayton338d0bd2015-02-20 21:51:06 +00003107 RestoreProcessEvents ();
Greg Claytonc3776bf2012-02-09 06:16:32 +00003108 }
3109 return error;
3110}
3111
Greg Claytonc859e2d2012-02-13 23:10:39 +00003112DynamicLoader *
3113Process::GetDynamicLoader ()
3114{
3115 if (m_dyld_ap.get() == NULL)
3116 m_dyld_ap.reset (DynamicLoader::FindPlugin(this, NULL));
3117 return m_dyld_ap.get();
3118}
Greg Claytonc3776bf2012-02-09 06:16:32 +00003119
Todd Fialaaf245d12014-06-30 21:05:18 +00003120const lldb::DataBufferSP
3121Process::GetAuxvData()
3122{
3123 return DataBufferSP ();
3124}
3125
Andrew MacPherson17220c12014-03-05 10:12:43 +00003126JITLoaderList &
3127Process::GetJITLoaders ()
3128{
3129 if (!m_jit_loaders_ap)
3130 {
3131 m_jit_loaders_ap.reset(new JITLoaderList());
3132 JITLoader::LoadPlugins(this, *m_jit_loaders_ap);
3133 }
3134 return *m_jit_loaders_ap;
3135}
3136
Jason Molendaeef51062013-11-05 03:57:19 +00003137SystemRuntime *
3138Process::GetSystemRuntime ()
3139{
3140 if (m_system_runtime_ap.get() == NULL)
3141 m_system_runtime_ap.reset (SystemRuntime::FindPlugin(this));
3142 return m_system_runtime_ap.get();
3143}
3144
Todd Fiala76e0fc92014-08-27 22:58:26 +00003145Process::AttachCompletionHandler::AttachCompletionHandler (Process *process, uint32_t exec_count) :
3146 NextEventAction (process),
3147 m_exec_count (exec_count)
3148{
3149 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3150 if (log)
3151 log->Printf ("Process::AttachCompletionHandler::%s process=%p, exec_count=%" PRIu32, __FUNCTION__, static_cast<void*>(process), exec_count);
3152}
Greg Claytonc3776bf2012-02-09 06:16:32 +00003153
Jim Inghambb3a2832011-01-29 01:49:25 +00003154Process::NextEventAction::EventActionResult
3155Process::AttachCompletionHandler::PerformAction (lldb::EventSP &event_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003156{
Todd Fiala76e0fc92014-08-27 22:58:26 +00003157 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3158
Jim Inghambb3a2832011-01-29 01:49:25 +00003159 StateType state = ProcessEventData::GetStateFromEvent (event_sp.get());
Todd Fiala76e0fc92014-08-27 22:58:26 +00003160 if (log)
3161 log->Printf ("Process::AttachCompletionHandler::%s called with state %s (%d)", __FUNCTION__, StateAsCString(state), static_cast<int> (state));
3162
3163 switch (state)
Greg Clayton19388cf2010-10-18 01:45:30 +00003164 {
Zachary Turnerc62733b2015-05-20 18:31:17 +00003165 case eStateAttaching:
3166 return eEventActionSuccess;
3167
Greg Clayton513c26c2011-01-29 07:10:55 +00003168 case eStateRunning:
Greg Clayton71337622011-02-24 22:24:29 +00003169 case eStateConnected:
Greg Clayton513c26c2011-01-29 07:10:55 +00003170 return eEventActionRetry;
3171
3172 case eStateStopped:
3173 case eStateCrashed:
Greg Claytonc9ed4782011-11-12 02:10:56 +00003174 {
3175 // During attach, prior to sending the eStateStopped event,
Jim Inghamb1e2e842012-04-12 18:49:31 +00003176 // lldb_private::Process subclasses must set the new process ID.
Greg Claytonc9ed4782011-11-12 02:10:56 +00003177 assert (m_process->GetID() != LLDB_INVALID_PROCESS_ID);
Jim Ingham221d51c2013-05-08 00:35:16 +00003178 // We don't want these events to be reported, so go set the ShouldReportStop here:
3179 m_process->GetThreadList().SetShouldReportStop (eVoteNo);
3180
Greg Claytonc9ed4782011-11-12 02:10:56 +00003181 if (m_exec_count > 0)
3182 {
3183 --m_exec_count;
Todd Fiala76e0fc92014-08-27 22:58:26 +00003184
3185 if (log)
3186 log->Printf ("Process::AttachCompletionHandler::%s state %s: reduced remaining exec count to %" PRIu32 ", requesting resume", __FUNCTION__, StateAsCString(state), m_exec_count);
3187
Jim Ingham221d51c2013-05-08 00:35:16 +00003188 RequestResume();
Greg Claytonc9ed4782011-11-12 02:10:56 +00003189 return eEventActionRetry;
3190 }
3191 else
3192 {
Todd Fiala76e0fc92014-08-27 22:58:26 +00003193 if (log)
3194 log->Printf ("Process::AttachCompletionHandler::%s state %s: no more execs expected to start, continuing with attach", __FUNCTION__, StateAsCString(state));
3195
Greg Claytonc9ed4782011-11-12 02:10:56 +00003196 m_process->CompleteAttach ();
3197 return eEventActionSuccess;
3198 }
3199 }
Greg Clayton513c26c2011-01-29 07:10:55 +00003200 break;
Greg Claytonc9ed4782011-11-12 02:10:56 +00003201
Greg Clayton513c26c2011-01-29 07:10:55 +00003202 default:
3203 case eStateExited:
3204 case eStateInvalid:
Greg Clayton513c26c2011-01-29 07:10:55 +00003205 break;
Jim Inghambb3a2832011-01-29 01:49:25 +00003206 }
Greg Claytonc9ed4782011-11-12 02:10:56 +00003207
3208 m_exit_string.assign ("No valid Process");
3209 return eEventActionExit;
Jim Inghambb3a2832011-01-29 01:49:25 +00003210}
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003211
Jim Inghambb3a2832011-01-29 01:49:25 +00003212Process::NextEventAction::EventActionResult
3213Process::AttachCompletionHandler::HandleBeingInterrupted()
3214{
3215 return eEventActionSuccess;
3216}
3217
3218const char *
3219Process::AttachCompletionHandler::GetExitString ()
3220{
3221 return m_exit_string.c_str();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003222}
3223
Greg Clayton8012cad2014-11-17 19:39:20 +00003224Listener &
3225ProcessAttachInfo::GetListenerForProcess (Debugger &debugger)
3226{
3227 if (m_listener_sp)
3228 return *m_listener_sp;
3229 else
3230 return debugger.GetListener();
3231}
3232
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003233Error
Greg Clayton144f3a92011-11-15 03:53:30 +00003234Process::Attach (ProcessAttachInfo &attach_info)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003235{
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003236 m_abi_sp.reset();
Caroline Ticeef5c6d02010-11-16 05:07:41 +00003237 m_process_input_reader.reset();
Greg Clayton93d3c8332011-02-16 04:46:07 +00003238 m_dyld_ap.reset();
Andrew MacPherson17220c12014-03-05 10:12:43 +00003239 m_jit_loaders_ap.reset();
Jason Molendaeef51062013-11-05 03:57:19 +00003240 m_system_runtime_ap.reset();
Greg Clayton56d9a1b2011-08-22 02:49:39 +00003241 m_os_ap.reset();
Greg Claytona97c4d22014-12-09 23:31:02 +00003242 m_stop_info_override_callback = NULL;
Jim Ingham5aee1622010-08-09 23:31:02 +00003243
Greg Clayton144f3a92011-11-15 03:53:30 +00003244 lldb::pid_t attach_pid = attach_info.GetProcessID();
Greg Claytone996fd32011-03-08 22:40:15 +00003245 Error error;
Greg Clayton144f3a92011-11-15 03:53:30 +00003246 if (attach_pid == LLDB_INVALID_PROCESS_ID)
Jim Ingham5aee1622010-08-09 23:31:02 +00003247 {
Greg Clayton144f3a92011-11-15 03:53:30 +00003248 char process_name[PATH_MAX];
Jim Ingham4299fdb2011-09-15 01:10:17 +00003249
Greg Clayton144f3a92011-11-15 03:53:30 +00003250 if (attach_info.GetExecutableFile().GetPath (process_name, sizeof(process_name)))
Jim Ingham2ecb7422010-08-17 21:54:19 +00003251 {
Greg Clayton144f3a92011-11-15 03:53:30 +00003252 const bool wait_for_launch = attach_info.GetWaitForLaunch();
3253
3254 if (wait_for_launch)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003255 {
Greg Clayton144f3a92011-11-15 03:53:30 +00003256 error = WillAttachToProcessWithName(process_name, wait_for_launch);
3257 if (error.Success())
3258 {
Ed Maste64fad602013-07-29 20:58:06 +00003259 if (m_public_run_lock.TrySetRunning())
Greg Clayton926cce72012-10-12 16:10:12 +00003260 {
3261 m_should_detach = true;
Jim Ingham221d51c2013-05-08 00:35:16 +00003262 const bool restarted = false;
3263 SetPublicState (eStateAttaching, restarted);
Greg Clayton926cce72012-10-12 16:10:12 +00003264 // Now attach using these arguments.
Jean-Daniel Dupas9c517c02013-12-23 22:32:54 +00003265 error = DoAttachToProcessWithName (process_name, attach_info);
Greg Clayton926cce72012-10-12 16:10:12 +00003266 }
3267 else
3268 {
3269 // This shouldn't happen
3270 error.SetErrorString("failed to acquire process run lock");
3271 }
Greg Claytone24c4ac2011-11-17 04:46:02 +00003272
Greg Clayton144f3a92011-11-15 03:53:30 +00003273 if (error.Fail())
3274 {
3275 if (GetID() != LLDB_INVALID_PROCESS_ID)
3276 {
3277 SetID (LLDB_INVALID_PROCESS_ID);
3278 if (error.AsCString() == NULL)
3279 error.SetErrorString("attach failed");
3280
3281 SetExitStatus(-1, error.AsCString());
3282 }
3283 }
3284 else
3285 {
3286 SetNextEventAction(new Process::AttachCompletionHandler(this, attach_info.GetResumeCount()));
3287 StartPrivateStateThread();
3288 }
3289 return error;
3290 }
Greg Claytone996fd32011-03-08 22:40:15 +00003291 }
Greg Clayton144f3a92011-11-15 03:53:30 +00003292 else
Greg Claytone996fd32011-03-08 22:40:15 +00003293 {
Greg Clayton144f3a92011-11-15 03:53:30 +00003294 ProcessInstanceInfoList process_infos;
Zachary Turner7529df92015-09-01 20:02:29 +00003295 PlatformSP platform_sp (GetTarget().GetPlatform ());
Greg Clayton144f3a92011-11-15 03:53:30 +00003296
3297 if (platform_sp)
3298 {
3299 ProcessInstanceInfoMatch match_info;
3300 match_info.GetProcessInfo() = attach_info;
3301 match_info.SetNameMatchType (eNameMatchEquals);
3302 platform_sp->FindProcesses (match_info, process_infos);
3303 const uint32_t num_matches = process_infos.GetSize();
3304 if (num_matches == 1)
3305 {
3306 attach_pid = process_infos.GetProcessIDAtIndex(0);
3307 // Fall through and attach using the above process ID
3308 }
3309 else
3310 {
3311 match_info.GetProcessInfo().GetExecutableFile().GetPath (process_name, sizeof(process_name));
3312 if (num_matches > 1)
Jim Ingham368ac222014-08-15 17:05:27 +00003313 {
3314 StreamString s;
3315 ProcessInstanceInfo::DumpTableHeader (s, platform_sp.get(), true, false);
3316 for (size_t i = 0; i < num_matches; i++)
3317 {
3318 process_infos.GetProcessInfoAtIndex(i).DumpAsTableRow(s, platform_sp.get(), true, false);
3319 }
3320 error.SetErrorStringWithFormat ("more than one process named %s:\n%s",
3321 process_name,
3322 s.GetData());
3323 }
Greg Clayton144f3a92011-11-15 03:53:30 +00003324 else
3325 error.SetErrorStringWithFormat ("could not find a process named %s", process_name);
3326 }
3327 }
3328 else
3329 {
3330 error.SetErrorString ("invalid platform, can't find processes by name");
3331 return error;
3332 }
Greg Claytone996fd32011-03-08 22:40:15 +00003333 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003334 }
3335 else
Greg Clayton144f3a92011-11-15 03:53:30 +00003336 {
3337 error.SetErrorString ("invalid process name");
Greg Claytone996fd32011-03-08 22:40:15 +00003338 }
3339 }
Greg Clayton144f3a92011-11-15 03:53:30 +00003340
3341 if (attach_pid != LLDB_INVALID_PROCESS_ID)
Greg Claytone996fd32011-03-08 22:40:15 +00003342 {
Greg Clayton144f3a92011-11-15 03:53:30 +00003343 error = WillAttachToProcessWithID(attach_pid);
Greg Claytone996fd32011-03-08 22:40:15 +00003344 if (error.Success())
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003345 {
Greg Clayton144f3a92011-11-15 03:53:30 +00003346
Ed Maste64fad602013-07-29 20:58:06 +00003347 if (m_public_run_lock.TrySetRunning())
Greg Clayton926cce72012-10-12 16:10:12 +00003348 {
3349 // Now attach using these arguments.
3350 m_should_detach = true;
Jim Ingham221d51c2013-05-08 00:35:16 +00003351 const bool restarted = false;
3352 SetPublicState (eStateAttaching, restarted);
Greg Clayton926cce72012-10-12 16:10:12 +00003353 error = DoAttachToProcessWithID (attach_pid, attach_info);
3354 }
3355 else
3356 {
3357 // This shouldn't happen
3358 error.SetErrorString("failed to acquire process run lock");
3359 }
3360
Greg Clayton144f3a92011-11-15 03:53:30 +00003361 if (error.Success())
3362 {
3363
3364 SetNextEventAction(new Process::AttachCompletionHandler(this, attach_info.GetResumeCount()));
3365 StartPrivateStateThread();
3366 }
3367 else
Greg Claytone996fd32011-03-08 22:40:15 +00003368 {
3369 if (GetID() != LLDB_INVALID_PROCESS_ID)
Greg Claytone996fd32011-03-08 22:40:15 +00003370 SetID (LLDB_INVALID_PROCESS_ID);
Greg Claytone996fd32011-03-08 22:40:15 +00003371
Oleksiy Vyalov5d064742014-11-19 18:27:45 +00003372 const char *error_string = error.AsCString();
3373 if (error_string == NULL)
3374 error_string = "attach failed";
3375
3376 SetExitStatus(-1, error_string);
Greg Claytone996fd32011-03-08 22:40:15 +00003377 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003378 }
3379 }
3380 return error;
3381}
3382
Greg Clayton93d3c8332011-02-16 04:46:07 +00003383void
3384Process::CompleteAttach ()
3385{
Todd Fiala76e0fc92014-08-27 22:58:26 +00003386 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3387 if (log)
3388 log->Printf ("Process::%s()", __FUNCTION__);
3389
Greg Clayton93d3c8332011-02-16 04:46:07 +00003390 // Let the process subclass figure out at much as it can about the process
3391 // before we go looking for a dynamic loader plug-in.
Jim Inghambb006ce2014-08-02 00:33:35 +00003392 ArchSpec process_arch;
3393 DidAttach(process_arch);
3394
3395 if (process_arch.IsValid())
Todd Fiala76e0fc92014-08-27 22:58:26 +00003396 {
Zachary Turner7529df92015-09-01 20:02:29 +00003397 GetTarget().SetArchitecture(process_arch);
Todd Fiala76e0fc92014-08-27 22:58:26 +00003398 if (log)
3399 {
3400 const char *triple_str = process_arch.GetTriple().getTriple().c_str ();
3401 log->Printf ("Process::%s replacing process architecture with DidAttach() architecture: %s",
3402 __FUNCTION__,
3403 triple_str ? triple_str : "<null>");
3404 }
3405 }
Greg Clayton93d3c8332011-02-16 04:46:07 +00003406
Jim Ingham4299fdb2011-09-15 01:10:17 +00003407 // We just attached. If we have a platform, ask it for the process architecture, and if it isn't
3408 // the same as the one we've already set, switch architectures.
Zachary Turner7529df92015-09-01 20:02:29 +00003409 PlatformSP platform_sp (GetTarget().GetPlatform ());
Jim Ingham4299fdb2011-09-15 01:10:17 +00003410 assert (platform_sp.get());
3411 if (platform_sp)
3412 {
Zachary Turner7529df92015-09-01 20:02:29 +00003413 const ArchSpec &target_arch = GetTarget().GetArchitecture();
Greg Clayton1e0c8842013-01-11 20:49:54 +00003414 if (target_arch.IsValid() && !platform_sp->IsCompatibleArchitecture (target_arch, false, NULL))
Greg Clayton70512312012-05-08 01:45:38 +00003415 {
3416 ArchSpec platform_arch;
3417 platform_sp = platform_sp->GetPlatformForArchitecture (target_arch, &platform_arch);
3418 if (platform_sp)
3419 {
Zachary Turner7529df92015-09-01 20:02:29 +00003420 GetTarget().SetPlatform (platform_sp);
3421 GetTarget().SetArchitecture(platform_arch);
Todd Fiala76e0fc92014-08-27 22:58:26 +00003422 if (log)
3423 log->Printf ("Process::%s switching platform to %s and architecture to %s based on info from attach", __FUNCTION__, platform_sp->GetName().AsCString (""), platform_arch.GetTriple().getTriple().c_str ());
Greg Clayton70512312012-05-08 01:45:38 +00003424 }
3425 }
Jim Inghambb006ce2014-08-02 00:33:35 +00003426 else if (!process_arch.IsValid())
Greg Clayton70512312012-05-08 01:45:38 +00003427 {
3428 ProcessInstanceInfo process_info;
3429 platform_sp->GetProcessInfo (GetID(), process_info);
3430 const ArchSpec &process_arch = process_info.GetArchitecture();
Zachary Turner7529df92015-09-01 20:02:29 +00003431 if (process_arch.IsValid() && !GetTarget().GetArchitecture().IsExactMatch(process_arch))
Todd Fiala76e0fc92014-08-27 22:58:26 +00003432 {
Zachary Turner7529df92015-09-01 20:02:29 +00003433 GetTarget().SetArchitecture (process_arch);
Todd Fiala76e0fc92014-08-27 22:58:26 +00003434 if (log)
3435 log->Printf ("Process::%s switching architecture to %s based on info the platform retrieved for pid %" PRIu64, __FUNCTION__, process_arch.GetTriple().getTriple().c_str (), GetID ());
3436 }
Greg Clayton70512312012-05-08 01:45:38 +00003437 }
Jim Ingham4299fdb2011-09-15 01:10:17 +00003438 }
3439
3440 // We have completed the attach, now it is time to find the dynamic loader
Greg Clayton93d3c8332011-02-16 04:46:07 +00003441 // plug-in
Greg Claytonc859e2d2012-02-13 23:10:39 +00003442 DynamicLoader *dyld = GetDynamicLoader ();
3443 if (dyld)
Todd Fiala76e0fc92014-08-27 22:58:26 +00003444 {
Greg Claytonc859e2d2012-02-13 23:10:39 +00003445 dyld->DidAttach();
Todd Fiala76e0fc92014-08-27 22:58:26 +00003446 if (log)
3447 {
Zachary Turner7529df92015-09-01 20:02:29 +00003448 ModuleSP exe_module_sp = GetTarget().GetExecutableModule ();
Todd Fiala76e0fc92014-08-27 22:58:26 +00003449 log->Printf ("Process::%s after DynamicLoader::DidAttach(), target executable is %s (using %s plugin)",
3450 __FUNCTION__,
3451 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str () : "<none>",
3452 dyld->GetPluginName().AsCString ("<unnamed>"));
3453 }
3454 }
Greg Clayton93d3c8332011-02-16 04:46:07 +00003455
Andrew MacPhersoneb4d0602014-03-13 09:37:02 +00003456 GetJITLoaders().DidAttach();
Andrew MacPherson17220c12014-03-05 10:12:43 +00003457
Jason Molendaeef51062013-11-05 03:57:19 +00003458 SystemRuntime *system_runtime = GetSystemRuntime ();
3459 if (system_runtime)
Todd Fiala76e0fc92014-08-27 22:58:26 +00003460 {
Jason Molendaeef51062013-11-05 03:57:19 +00003461 system_runtime->DidAttach();
Todd Fiala76e0fc92014-08-27 22:58:26 +00003462 if (log)
3463 {
Zachary Turner7529df92015-09-01 20:02:29 +00003464 ModuleSP exe_module_sp = GetTarget().GetExecutableModule ();
Todd Fiala76e0fc92014-08-27 22:58:26 +00003465 log->Printf ("Process::%s after SystemRuntime::DidAttach(), target executable is %s (using %s plugin)",
3466 __FUNCTION__,
3467 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str () : "<none>",
3468 system_runtime->GetPluginName().AsCString("<unnamed>"));
3469 }
3470 }
Jason Molendaeef51062013-11-05 03:57:19 +00003471
Greg Clayton56d9a1b2011-08-22 02:49:39 +00003472 m_os_ap.reset (OperatingSystem::FindPlugin (this, NULL));
Greg Clayton93d3c8332011-02-16 04:46:07 +00003473 // Figure out which one is the executable, and set that in our target:
Zachary Turner7529df92015-09-01 20:02:29 +00003474 const ModuleList &target_modules = GetTarget().GetImages();
Jim Ingham3ee12ef2012-05-30 02:19:25 +00003475 Mutex::Locker modules_locker(target_modules.GetMutex());
3476 size_t num_modules = target_modules.GetSize();
3477 ModuleSP new_executable_module_sp;
Greg Clayton93d3c8332011-02-16 04:46:07 +00003478
Andy Gibbsa297a972013-06-19 19:04:53 +00003479 for (size_t i = 0; i < num_modules; i++)
Greg Clayton93d3c8332011-02-16 04:46:07 +00003480 {
Jim Ingham3ee12ef2012-05-30 02:19:25 +00003481 ModuleSP module_sp (target_modules.GetModuleAtIndexUnlocked (i));
Greg Clayton8b82f082011-04-12 05:54:46 +00003482 if (module_sp && module_sp->IsExecutable())
Greg Clayton93d3c8332011-02-16 04:46:07 +00003483 {
Zachary Turner7529df92015-09-01 20:02:29 +00003484 if (GetTarget().GetExecutableModulePointer() != module_sp.get())
Jim Ingham3ee12ef2012-05-30 02:19:25 +00003485 new_executable_module_sp = module_sp;
Greg Clayton93d3c8332011-02-16 04:46:07 +00003486 break;
3487 }
3488 }
Jim Ingham3ee12ef2012-05-30 02:19:25 +00003489 if (new_executable_module_sp)
Todd Fiala76e0fc92014-08-27 22:58:26 +00003490 {
Zachary Turner7529df92015-09-01 20:02:29 +00003491 GetTarget().SetExecutableModule (new_executable_module_sp, false);
Todd Fiala76e0fc92014-08-27 22:58:26 +00003492 if (log)
3493 {
Zachary Turner7529df92015-09-01 20:02:29 +00003494 ModuleSP exe_module_sp = GetTarget().GetExecutableModule ();
Todd Fiala76e0fc92014-08-27 22:58:26 +00003495 log->Printf ("Process::%s after looping through modules, target executable is %s",
3496 __FUNCTION__,
3497 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str () : "<none>");
3498 }
3499 }
Greg Claytona97c4d22014-12-09 23:31:02 +00003500
3501 m_stop_info_override_callback = process_arch.GetStopInfoOverrideCallback();
Greg Clayton93d3c8332011-02-16 04:46:07 +00003502}
3503
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003504Error
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00003505Process::ConnectRemote (Stream *strm, const char *remote_url)
Greg Claytonb766a732011-02-04 01:58:07 +00003506{
Greg Claytonb766a732011-02-04 01:58:07 +00003507 m_abi_sp.reset();
3508 m_process_input_reader.reset();
3509
3510 // Find the process and its architecture. Make sure it matches the architecture
3511 // of the current Target, and if not adjust it.
3512
Jason Molenda4bd4e7e2012-09-29 04:02:01 +00003513 Error error (DoConnectRemote (strm, remote_url));
Greg Claytonb766a732011-02-04 01:58:07 +00003514 if (error.Success())
3515 {
Greg Clayton71337622011-02-24 22:24:29 +00003516 if (GetID() != LLDB_INVALID_PROCESS_ID)
3517 {
Greg Clayton32e0a752011-03-30 18:16:51 +00003518 EventSP event_sp;
3519 StateType state = WaitForProcessStopPrivate(NULL, event_sp);
3520
3521 if (state == eStateStopped || state == eStateCrashed)
3522 {
3523 // If we attached and actually have a process on the other end, then
3524 // this ended up being the equivalent of an attach.
3525 CompleteAttach ();
3526
3527 // This delays passing the stopped event to listeners till
3528 // CompleteAttach gets a chance to complete...
3529 HandlePrivateEvent (event_sp);
3530
3531 }
Greg Clayton71337622011-02-24 22:24:29 +00003532 }
Greg Clayton32e0a752011-03-30 18:16:51 +00003533
3534 if (PrivateStateThreadIsValid ())
3535 ResumePrivateStateThread ();
3536 else
3537 StartPrivateStateThread ();
Greg Claytonb766a732011-02-04 01:58:07 +00003538 }
3539 return error;
3540}
3541
Greg Claytonb766a732011-02-04 01:58:07 +00003542Error
Jim Ingham3b8285d2012-04-19 01:40:33 +00003543Process::PrivateResume ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003544{
Greg Clayton5160ce52013-03-27 23:08:40 +00003545 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_PROCESS|LIBLLDB_LOG_STEP));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003546 if (log)
Jim Ingham0161b492013-02-09 01:29:05 +00003547 log->Printf("Process::PrivateResume() m_stop_id = %u, public state: %s private state: %s",
Jim Ingham4b536182011-08-09 02:12:22 +00003548 m_mod_id.GetStopID(),
Jim Ingham444586b2011-01-24 06:34:17 +00003549 StateAsCString(m_public_state.GetValue()),
3550 StateAsCString(m_private_state.GetValue()));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003551
3552 Error error (WillResume());
3553 // Tell the process it is about to resume before the thread list
3554 if (error.Success())
3555 {
Johnny Chenc4221e42010-12-02 20:53:05 +00003556 // Now let the thread list know we are about to resume so it
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003557 // can let all of our threads know that they are about to be
3558 // resumed. Threads will each be called with
3559 // Thread::WillResume(StateType) where StateType contains the state
3560 // that they are supposed to have when the process is resumed
3561 // (suspended/running/stepping). Threads should also check
3562 // their resume signal in lldb::Thread::GetResumeSignal()
Jim Ingham221d51c2013-05-08 00:35:16 +00003563 // to see if they are supposed to start back up with a signal.
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003564 if (m_thread_list.WillResume())
3565 {
Jim Ingham372787f2012-04-07 00:00:41 +00003566 // Last thing, do the PreResumeActions.
3567 if (!RunPreResumeActions())
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003568 {
Jim Ingham0161b492013-02-09 01:29:05 +00003569 error.SetErrorStringWithFormat ("Process::PrivateResume PreResumeActions failed, not resuming.");
Jim Ingham372787f2012-04-07 00:00:41 +00003570 }
3571 else
3572 {
3573 m_mod_id.BumpResumeID();
3574 error = DoResume();
3575 if (error.Success())
3576 {
3577 DidResume();
3578 m_thread_list.DidResume();
3579 if (log)
3580 log->Printf ("Process thinks the process has resumed.");
3581 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003582 }
3583 }
3584 else
3585 {
Jim Inghamd5ac1ab2015-01-19 23:51:51 +00003586 // Somebody wanted to run without running (e.g. we were faking a step from one frame of a set of inlined
3587 // frames that share the same PC to another.) So generate a continue & a stopped event,
Jim Ingham513c6bb2012-09-01 01:02:41 +00003588 // and let the world handle them.
3589 if (log)
3590 log->Printf ("Process::PrivateResume() asked to simulate a start & stop.");
3591
3592 SetPrivateState(eStateRunning);
3593 SetPrivateState(eStateStopped);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003594 }
3595 }
Jim Ingham444586b2011-01-24 06:34:17 +00003596 else if (log)
Jim Ingham0161b492013-02-09 01:29:05 +00003597 log->Printf ("Process::PrivateResume() got an error \"%s\".", error.AsCString("<unknown error>"));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003598 return error;
3599}
3600
3601Error
Pavel Labath19da1f12015-12-07 12:36:52 +00003602Process::Halt (bool clear_thread_plans, bool use_run_lock)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003603{
Pavel Labath19da1f12015-12-07 12:36:52 +00003604 if (! StateIsRunningState(m_public_state.GetValue()))
3605 return Error("Process is not running.");
3606
Greg Claytonf9b57b92013-05-10 23:48:10 +00003607 // Don't clear the m_clear_thread_plans_on_stop, only set it to true if
3608 // in case it was already set and some thread plan logic calls halt on its
3609 // own.
3610 m_clear_thread_plans_on_stop |= clear_thread_plans;
3611
Jim Ingham0f16e732011-02-08 05:20:59 +00003612 Listener halt_listener ("lldb.process.halt_listener");
Pavel Labath19da1f12015-12-07 12:36:52 +00003613 HijackProcessEvents(&halt_listener);
Greg Clayton3af9ea52010-11-18 05:57:03 +00003614
Jim Inghambb3a2832011-01-29 01:49:25 +00003615 EventSP event_sp;
Jim Inghambb3a2832011-01-29 01:49:25 +00003616
Pavel Labath19da1f12015-12-07 12:36:52 +00003617 SendAsyncInterrupt();
3618
3619 if (m_public_state.GetValue() == eStateAttaching)
Jim Inghambb3a2832011-01-29 01:49:25 +00003620 {
Pavel Labath19da1f12015-12-07 12:36:52 +00003621 // Don't hijack and eat the eStateExited as the code that was doing
3622 // the attach will be waiting for this event...
3623 RestoreProcessEvents();
3624 SetExitStatus(SIGKILL, "Cancelled async attach.");
3625 Destroy (false);
3626 return Error();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003627 }
Jim Inghambb3a2832011-01-29 01:49:25 +00003628
Pavel Labath19da1f12015-12-07 12:36:52 +00003629 // Wait for 10 second for the process to stop.
3630 TimeValue timeout_time;
3631 timeout_time = TimeValue::Now();
3632 timeout_time.OffsetWithSeconds(10);
3633 StateType state = WaitForProcessToStop(&timeout_time, &event_sp, true, &halt_listener,
3634 nullptr, use_run_lock);
3635 RestoreProcessEvents();
Jim Inghambb3a2832011-01-29 01:49:25 +00003636
Pavel Labath19da1f12015-12-07 12:36:52 +00003637 if (state == eStateInvalid || ! event_sp)
3638 {
3639 // We timed out and didn't get a stop event...
3640 return Error("Halt timed out. State = %s", StateAsCString(GetState()));
3641 }
3642
3643 BroadcastEvent(event_sp);
3644
3645 return Error();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003646}
3647
3648Error
Pavel Labathfcc7f662015-10-07 15:11:11 +00003649Process::StopForDestroyOrDetach(lldb::EventSP &exit_event_sp)
Jim Ingham8af3b9c2013-03-29 01:18:12 +00003650{
3651 Error error;
3652 if (m_public_state.GetValue() == eStateRunning)
3653 {
3654 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3655 if (log)
Pavel Labathfcc7f662015-10-07 15:11:11 +00003656 log->Printf("Process::%s() About to stop.", __FUNCTION__);
3657
3658 ListenerSP listener_sp (new Listener("lldb.Process.StopForDestroyOrDetach.hijack"));
3659 HijackProcessEvents(listener_sp.get());
3660
3661 SendAsyncInterrupt();
3662
3663 // Consume the interrupt event.
3664 TimeValue timeout (TimeValue::Now());
3665 timeout.OffsetWithSeconds(10);
3666
3667 StateType state = WaitForProcessToStop (&timeout, &exit_event_sp, true, listener_sp.get());
3668
3669 RestoreProcessEvents();
3670
3671 // If the process exited while we were waiting for it to stop, put the exited event into
3672 // the shared pointer passed in and return. Our caller doesn't need to do anything else, since
3673 // they don't have a process anymore...
3674
3675 if (state == eStateExited || m_private_state.GetValue() == eStateExited)
Pavel Labathc8c77d42015-09-28 09:37:51 +00003676 {
3677 if (log)
Pavel Labathfcc7f662015-10-07 15:11:11 +00003678 log->Printf("Process::%s() Process exited while waiting to stop.", __FUNCTION__);
3679 return error;
3680 }
3681 else
3682 exit_event_sp.reset(); // It is ok to consume any non-exit stop events
3683
3684 if (state != eStateStopped)
3685 {
3686 if (log)
3687 log->Printf("Process::%s() failed to stop, state is: %s", __FUNCTION__, StateAsCString(state));
3688 // If we really couldn't stop the process then we should just error out here, but if the
3689 // lower levels just bobbled sending the event and we really are stopped, then continue on.
3690 StateType private_state = m_private_state.GetValue();
3691 if (private_state != eStateStopped)
3692 {
3693 return error;
3694 }
Jim Ingham8af3b9c2013-03-29 01:18:12 +00003695 }
3696 }
3697 return error;
3698}
3699
3700Error
Jim Inghamacff8952013-05-02 00:27:30 +00003701Process::Detach (bool keep_stopped)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003702{
Jim Ingham8af3b9c2013-03-29 01:18:12 +00003703 EventSP exit_event_sp;
3704 Error error;
3705 m_destroy_in_process = true;
3706
3707 error = WillDetach();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003708
3709 if (error.Success())
3710 {
Jim Ingham8af3b9c2013-03-29 01:18:12 +00003711 if (DetachRequiresHalt())
3712 {
Pavel Labathfcc7f662015-10-07 15:11:11 +00003713 error = StopForDestroyOrDetach (exit_event_sp);
Jim Ingham8af3b9c2013-03-29 01:18:12 +00003714 if (!error.Success())
3715 {
3716 m_destroy_in_process = false;
3717 return error;
3718 }
3719 else if (exit_event_sp)
3720 {
3721 // We shouldn't need to do anything else here. There's no process left to detach from...
3722 StopPrivateStateThread();
3723 m_destroy_in_process = false;
3724 return error;
3725 }
3726 }
3727
Andrew MacPhersonc3826b52014-03-25 19:59:36 +00003728 m_thread_list.DiscardThreadPlans();
3729 DisableAllBreakpointSites();
3730
Jim Inghamacff8952013-05-02 00:27:30 +00003731 error = DoDetach(keep_stopped);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003732 if (error.Success())
3733 {
3734 DidDetach();
3735 StopPrivateStateThread();
3736 }
Jim Inghamacff8952013-05-02 00:27:30 +00003737 else
3738 {
3739 return error;
3740 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003741 }
Jim Ingham8af3b9c2013-03-29 01:18:12 +00003742 m_destroy_in_process = false;
3743
3744 // If we exited when we were waiting for a process to stop, then
3745 // forward the event here so we don't lose the event
3746 if (exit_event_sp)
3747 {
3748 // Directly broadcast our exited event because we shut down our
3749 // private state thread above
3750 BroadcastEvent(exit_event_sp);
3751 }
3752
3753 // If we have been interrupted (to kill us) in the middle of running, we may not end up propagating
3754 // the last events through the event system, in which case we might strand the write lock. Unlock
3755 // it here so when we do to tear down the process we don't get an error destroying the lock.
3756
Ed Maste64fad602013-07-29 20:58:06 +00003757 m_public_run_lock.SetStopped();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003758 return error;
3759}
3760
3761Error
Jason Molendaede31932015-04-17 05:01:58 +00003762Process::Destroy (bool force_kill)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003763{
Pavel Labath19da1f12015-12-07 12:36:52 +00003764
Jim Ingham09437922013-03-01 20:04:25 +00003765 // Tell ourselves we are in the process of destroying the process, so that we don't do any unnecessary work
3766 // that might hinder the destruction. Remember to set this back to false when we are done. That way if the attempt
3767 // failed and the process stays around for some reason it won't be in a confused state.
Jason Molendaede31932015-04-17 05:01:58 +00003768
3769 if (force_kill)
3770 m_should_detach = false;
Jim Ingham09437922013-03-01 20:04:25 +00003771
Ilia Kfcc89a02015-03-26 07:08:47 +00003772 if (GetShouldDetach())
3773 {
3774 // FIXME: This will have to be a process setting:
3775 bool keep_stopped = false;
3776 Detach(keep_stopped);
3777 }
3778
Jim Ingham09437922013-03-01 20:04:25 +00003779 m_destroy_in_process = true;
3780
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003781 Error error (WillDestroy());
3782 if (error.Success())
3783 {
Greg Clayton85fb1b92012-09-11 02:33:37 +00003784 EventSP exit_event_sp;
Jim Ingham8af3b9c2013-03-29 01:18:12 +00003785 if (DestroyRequiresHalt())
Jim Ingham04e0a222012-05-23 15:46:31 +00003786 {
Pavel Labathfcc7f662015-10-07 15:11:11 +00003787 error = StopForDestroyOrDetach(exit_event_sp);
Jim Ingham04e0a222012-05-23 15:46:31 +00003788 }
Jim Ingham8af3b9c2013-03-29 01:18:12 +00003789
Jim Inghamaacc3182012-06-06 00:29:30 +00003790 if (m_public_state.GetValue() != eStateRunning)
3791 {
3792 // Ditch all thread plans, and remove all our breakpoints: in case we have to restart the target to
3793 // kill it, we don't want it hitting a breakpoint...
3794 // Only do this if we've stopped, however, since if we didn't manage to halt it above, then
3795 // we're not going to have much luck doing this now.
3796 m_thread_list.DiscardThreadPlans();
3797 DisableAllBreakpointSites();
3798 }
Jim Ingham8af3b9c2013-03-29 01:18:12 +00003799
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003800 error = DoDestroy();
3801 if (error.Success())
3802 {
3803 DidDestroy();
3804 StopPrivateStateThread();
3805 }
Caroline Ticeef5c6d02010-11-16 05:07:41 +00003806 m_stdio_communication.Disconnect();
Greg Clayton23d54f42015-06-03 00:34:01 +00003807 m_stdio_communication.StopReadThread();
Vince Harrondf3f00f2015-02-10 21:09:04 +00003808 m_stdin_forward = false;
Greg Claytonb4874f12014-02-28 18:22:24 +00003809
Caroline Ticeef5c6d02010-11-16 05:07:41 +00003810 if (m_process_input_reader)
Greg Claytonb4874f12014-02-28 18:22:24 +00003811 {
3812 m_process_input_reader->SetIsDone(true);
3813 m_process_input_reader->Cancel();
Caroline Ticeef5c6d02010-11-16 05:07:41 +00003814 m_process_input_reader.reset();
Greg Claytonb4874f12014-02-28 18:22:24 +00003815 }
3816
Greg Clayton85fb1b92012-09-11 02:33:37 +00003817 // If we exited when we were waiting for a process to stop, then
3818 // forward the event here so we don't lose the event
3819 if (exit_event_sp)
3820 {
3821 // Directly broadcast our exited event because we shut down our
3822 // private state thread above
3823 BroadcastEvent(exit_event_sp);
3824 }
3825
Jim Inghamb1e2e842012-04-12 18:49:31 +00003826 // If we have been interrupted (to kill us) in the middle of running, we may not end up propagating
3827 // the last events through the event system, in which case we might strand the write lock. Unlock
3828 // it here so when we do to tear down the process we don't get an error destroying the lock.
Ed Maste64fad602013-07-29 20:58:06 +00003829 m_public_run_lock.SetStopped();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003830 }
Jim Ingham09437922013-03-01 20:04:25 +00003831
3832 m_destroy_in_process = false;
3833
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003834 return error;
3835}
3836
3837Error
3838Process::Signal (int signal)
3839{
3840 Error error (WillSignal());
3841 if (error.Success())
3842 {
3843 error = DoSignal(signal);
3844 if (error.Success())
3845 DidSignal();
3846 }
3847 return error;
3848}
3849
Zachary Turner93749ab2015-03-03 21:51:25 +00003850void
Chaoren Linc963a222015-09-01 16:58:45 +00003851Process::SetUnixSignals(UnixSignalsSP &&signals_sp)
Zachary Turner93749ab2015-03-03 21:51:25 +00003852{
3853 assert (signals_sp && "null signals_sp");
3854 m_unix_signals_sp = signals_sp;
3855}
3856
Chaoren Lin98d0a4b2015-07-14 01:09:28 +00003857const lldb::UnixSignalsSP &
Zachary Turner93749ab2015-03-03 21:51:25 +00003858Process::GetUnixSignals ()
3859{
3860 assert (m_unix_signals_sp && "null m_unix_signals_sp");
Chaoren Lin98d0a4b2015-07-14 01:09:28 +00003861 return m_unix_signals_sp;
Zachary Turner93749ab2015-03-03 21:51:25 +00003862}
3863
Greg Clayton514487e2011-02-15 21:59:32 +00003864lldb::ByteOrder
3865Process::GetByteOrder () const
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003866{
Zachary Turner7529df92015-09-01 20:02:29 +00003867 return GetTarget().GetArchitecture().GetByteOrder();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003868}
3869
3870uint32_t
Greg Clayton514487e2011-02-15 21:59:32 +00003871Process::GetAddressByteSize () const
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003872{
Zachary Turner7529df92015-09-01 20:02:29 +00003873 return GetTarget().GetArchitecture().GetAddressByteSize();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003874}
3875
3876bool
3877Process::ShouldBroadcastEvent (Event *event_ptr)
3878{
3879 const StateType state = Process::ProcessEventData::GetStateFromEvent (event_ptr);
3880 bool return_value = true;
Greg Clayton5160ce52013-03-27 23:08:40 +00003881 Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_EVENTS | LIBLLDB_LOG_PROCESS));
Jim Ingham0161b492013-02-09 01:29:05 +00003882
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003883 switch (state)
3884 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003885 case eStateDetached:
3886 case eStateExited:
3887 case eStateUnloaded:
Pavel Labath3f5df532015-03-12 10:12:41 +00003888 m_stdio_communication.SynchronizeWithReadThread();
Pavel Labatha9a43372015-09-03 09:30:17 +00003889 m_stdio_communication.Disconnect();
3890 m_stdio_communication.StopReadThread();
3891 m_stdin_forward = false;
3892
Jason Molenda62e06812016-02-16 04:14:33 +00003893 LLVM_FALLTHROUGH;
Pavel Labath3f5df532015-03-12 10:12:41 +00003894 case eStateConnected:
3895 case eStateAttaching:
3896 case eStateLaunching:
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003897 // These events indicate changes in the state of the debugging session, always report them.
3898 return_value = true;
3899 break;
3900 case eStateInvalid:
3901 // We stopped for no apparent reason, don't report it.
3902 return_value = false;
3903 break;
3904 case eStateRunning:
3905 case eStateStepping:
3906 // If we've started the target running, we handle the cases where we
3907 // are already running and where there is a transition from stopped to
3908 // running differently.
3909 // running -> running: Automatically suppress extra running events
3910 // stopped -> running: Report except when there is one or more no votes
3911 // and no yes votes.
3912 SynchronouslyNotifyStateChanged (state);
Jim Ingham1460e4b2014-01-10 23:46:59 +00003913 if (m_force_next_event_delivery)
3914 return_value = true;
3915 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003916 {
Jim Ingham1460e4b2014-01-10 23:46:59 +00003917 switch (m_last_broadcast_state)
3918 {
3919 case eStateRunning:
3920 case eStateStepping:
3921 // We always suppress multiple runnings with no PUBLIC stop in between.
3922 return_value = false;
3923 break;
3924 default:
3925 // TODO: make this work correctly. For now always report
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +00003926 // run if we aren't running so we don't miss any running
Jim Ingham1460e4b2014-01-10 23:46:59 +00003927 // events. If I run the lldb/test/thread/a.out file and
3928 // break at main.cpp:58, run and hit the breakpoints on
3929 // multiple threads, then somehow during the stepping over
3930 // of all breakpoints no run gets reported.
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003931
Jim Ingham1460e4b2014-01-10 23:46:59 +00003932 // This is a transition from stop to run.
3933 switch (m_thread_list.ShouldReportRun (event_ptr))
3934 {
3935 case eVoteYes:
3936 case eVoteNoOpinion:
3937 return_value = true;
3938 break;
3939 case eVoteNo:
3940 return_value = false;
3941 break;
3942 }
3943 break;
3944 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003945 }
3946 break;
3947 case eStateStopped:
3948 case eStateCrashed:
3949 case eStateSuspended:
3950 {
3951 // We've stopped. First see if we're going to restart the target.
3952 // If we are going to stop, then we always broadcast the event.
3953 // If we aren't going to stop, let the thread plans decide if we're going to report this event.
Jim Inghamb01e7422010-06-19 04:45:32 +00003954 // If no thread has an opinion, we don't report it.
Jim Ingham221d51c2013-05-08 00:35:16 +00003955
Pavel Labath3f5df532015-03-12 10:12:41 +00003956 m_stdio_communication.SynchronizeWithReadThread();
Jim Inghamcb4ca112012-05-16 01:32:14 +00003957 RefreshStateAfterStop ();
Jim Ingham0d8bcc72010-11-17 02:32:00 +00003958 if (ProcessEventData::GetInterruptedFromEvent (event_ptr))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003959 {
Greg Clayton3af9ea52010-11-18 05:57:03 +00003960 if (log)
Jim Ingham0161b492013-02-09 01:29:05 +00003961 log->Printf ("Process::ShouldBroadcastEvent (%p) stopped due to an interrupt, state: %s",
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00003962 static_cast<void*>(event_ptr),
Jim Ingham0161b492013-02-09 01:29:05 +00003963 StateAsCString(state));
Jim Ingham35878c42014-04-08 21:33:21 +00003964 // Even though we know we are going to stop, we should let the threads have a look at the stop,
3965 // so they can properly set their state.
3966 m_thread_list.ShouldStop (event_ptr);
Jim Ingham0161b492013-02-09 01:29:05 +00003967 return_value = true;
Jim Ingham0d8bcc72010-11-17 02:32:00 +00003968 }
3969 else
3970 {
Jim Ingham221d51c2013-05-08 00:35:16 +00003971 bool was_restarted = ProcessEventData::GetRestartedFromEvent (event_ptr);
3972 bool should_resume = false;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00003973
Jim Ingham0161b492013-02-09 01:29:05 +00003974 // It makes no sense to ask "ShouldStop" if we've already been restarted...
3975 // Asking the thread list is also not likely to go well, since we are running again.
3976 // So in that case just report the event.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00003977
Jim Ingham0161b492013-02-09 01:29:05 +00003978 if (!was_restarted)
3979 should_resume = m_thread_list.ShouldStop (event_ptr) == false;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00003980
Jim Ingham221d51c2013-05-08 00:35:16 +00003981 if (was_restarted || should_resume || m_resume_requested)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003982 {
Jim Ingham0161b492013-02-09 01:29:05 +00003983 Vote stop_vote = m_thread_list.ShouldReportStop (event_ptr);
3984 if (log)
Pavel Labath2acc4882016-01-05 17:55:32 +00003985 log->Printf ("Process::ShouldBroadcastEvent: should_resume: %i state: %s was_restarted: %i stop_vote: %d.",
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00003986 should_resume, StateAsCString(state),
3987 was_restarted, stop_vote);
3988
Jim Ingham0161b492013-02-09 01:29:05 +00003989 switch (stop_vote)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003990 {
3991 case eVoteYes:
Jim Ingham0161b492013-02-09 01:29:05 +00003992 return_value = true;
3993 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003994 case eVoteNoOpinion:
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003995 case eVoteNo:
3996 return_value = false;
3997 break;
3998 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00003999
Jim Inghamcb95f342012-09-05 21:13:56 +00004000 if (!was_restarted)
Jim Ingham0161b492013-02-09 01:29:05 +00004001 {
4002 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004003 log->Printf ("Process::ShouldBroadcastEvent (%p) Restarting process from state: %s",
4004 static_cast<void*>(event_ptr),
4005 StateAsCString(state));
Jim Ingham0161b492013-02-09 01:29:05 +00004006 ProcessEventData::SetRestartedInEvent(event_ptr, true);
Jim Inghamcb95f342012-09-05 21:13:56 +00004007 PrivateResume ();
Jim Ingham0161b492013-02-09 01:29:05 +00004008 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004009 }
4010 else
4011 {
4012 return_value = true;
4013 SynchronouslyNotifyStateChanged (state);
4014 }
4015 }
4016 }
Jim Ingham0161b492013-02-09 01:29:05 +00004017 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004018 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004019
Jim Ingham1460e4b2014-01-10 23:46:59 +00004020 // Forcing the next event delivery is a one shot deal. So reset it here.
4021 m_force_next_event_delivery = false;
4022
Jim Ingham0161b492013-02-09 01:29:05 +00004023 // We do some coalescing of events (for instance two consecutive running events get coalesced.)
4024 // But we only coalesce against events we actually broadcast. So we use m_last_broadcast_state
4025 // to track that. NB - you can't use "m_public_state.GetValue()" for that purpose, as was originally done,
4026 // because the PublicState reflects the last event pulled off the queue, and there may be several
4027 // events stacked up on the queue unserviced. So the PublicState may not reflect the last broadcasted event
4028 // yet. m_last_broadcast_state gets updated here.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004029
Jim Ingham0161b492013-02-09 01:29:05 +00004030 if (return_value)
4031 m_last_broadcast_state = state;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004032
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004033 if (log)
Jim Ingham0161b492013-02-09 01:29:05 +00004034 log->Printf ("Process::ShouldBroadcastEvent (%p) => new state: %s, last broadcast state: %s - %s",
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004035 static_cast<void*>(event_ptr), StateAsCString(state),
Jim Ingham0161b492013-02-09 01:29:05 +00004036 StateAsCString(m_last_broadcast_state),
4037 return_value ? "YES" : "NO");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004038 return return_value;
4039}
4040
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004041bool
Jim Ingham60c915e2015-06-23 21:02:45 +00004042Process::StartPrivateStateThread (bool is_secondary_thread)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004043{
Greg Clayton5160ce52013-03-27 23:08:40 +00004044 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004045
Greg Clayton8b82f082011-04-12 05:54:46 +00004046 bool already_running = PrivateStateThreadIsValid ();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004047 if (log)
Greg Clayton8b82f082011-04-12 05:54:46 +00004048 log->Printf ("Process::%s()%s ", __FUNCTION__, already_running ? " already running" : " starting private state thread");
4049
Jim Ingham60c915e2015-06-23 21:02:45 +00004050 if (!is_secondary_thread && already_running)
Greg Clayton8b82f082011-04-12 05:54:46 +00004051 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004052
4053 // Create a thread that watches our internal state and controls which
4054 // events make it to clients (into the DCProcess event queue).
Greg Clayton3e06bd92011-01-09 21:07:35 +00004055 char thread_name[1024];
Todd Fiala17096d72014-07-16 19:03:16 +00004056
Zachary Turner39de3112014-09-09 20:54:56 +00004057 if (HostInfo::GetMaxThreadNameLength() <= 30)
Todd Fiala17096d72014-07-16 19:03:16 +00004058 {
Zachary Turner39de3112014-09-09 20:54:56 +00004059 // On platforms with abbreviated thread name lengths, choose thread names that fit within the limit.
4060 if (already_running)
4061 snprintf(thread_name, sizeof(thread_name), "intern-state-OV");
4062 else
4063 snprintf(thread_name, sizeof(thread_name), "intern-state");
Todd Fiala17096d72014-07-16 19:03:16 +00004064 }
Jim Ingham372787f2012-04-07 00:00:41 +00004065 else
Todd Fiala17096d72014-07-16 19:03:16 +00004066 {
4067 if (already_running)
Zachary Turner39de3112014-09-09 20:54:56 +00004068 snprintf(thread_name, sizeof(thread_name), "<lldb.process.internal-state-override(pid=%" PRIu64 ")>", GetID());
Todd Fiala17096d72014-07-16 19:03:16 +00004069 else
Zachary Turner39de3112014-09-09 20:54:56 +00004070 snprintf(thread_name, sizeof(thread_name), "<lldb.process.internal-state(pid=%" PRIu64 ")>", GetID());
Todd Fiala17096d72014-07-16 19:03:16 +00004071 }
4072
Jim Ingham076b3042012-04-10 01:21:57 +00004073 // Create the private state thread, and start it running.
Jim Inghama1ca8142016-02-04 01:34:33 +00004074 PrivateStateThreadArgs *args_ptr = new PrivateStateThreadArgs(this, is_secondary_thread);
4075 m_private_state_thread = ThreadLauncher::LaunchThread(thread_name, Process::PrivateStateThread, (void *) args_ptr, NULL, 8 * 1024 * 1024);
Zachary Turneracee96a2014-09-23 18:32:09 +00004076 if (m_private_state_thread.IsJoinable())
Jim Ingham076b3042012-04-10 01:21:57 +00004077 {
4078 ResumePrivateStateThread();
4079 return true;
4080 }
4081 else
4082 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004083}
4084
4085void
4086Process::PausePrivateStateThread ()
4087{
4088 ControlPrivateStateThread (eBroadcastInternalStateControlPause);
4089}
4090
4091void
4092Process::ResumePrivateStateThread ()
4093{
4094 ControlPrivateStateThread (eBroadcastInternalStateControlResume);
4095}
4096
4097void
4098Process::StopPrivateStateThread ()
4099{
Greg Clayton8b82f082011-04-12 05:54:46 +00004100 if (PrivateStateThreadIsValid ())
4101 ControlPrivateStateThread (eBroadcastInternalStateControlStop);
Jim Inghamb1e2e842012-04-12 18:49:31 +00004102 else
4103 {
Greg Clayton5160ce52013-03-27 23:08:40 +00004104 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
Jim Inghamb1e2e842012-04-12 18:49:31 +00004105 if (log)
Jim Ingham0161b492013-02-09 01:29:05 +00004106 log->Printf ("Went to stop the private state thread, but it was already invalid.");
Jim Inghamb1e2e842012-04-12 18:49:31 +00004107 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004108}
4109
4110void
4111Process::ControlPrivateStateThread (uint32_t signal)
4112{
Greg Clayton5160ce52013-03-27 23:08:40 +00004113 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004114
4115 assert (signal == eBroadcastInternalStateControlStop ||
4116 signal == eBroadcastInternalStateControlPause ||
4117 signal == eBroadcastInternalStateControlResume);
4118
4119 if (log)
Greg Clayton7ecb3a02011-01-22 17:43:17 +00004120 log->Printf ("Process::%s (signal = %d)", __FUNCTION__, signal);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004121
Greg Clayton7ecb3a02011-01-22 17:43:17 +00004122 // Signal the private state thread. First we should copy this is case the
4123 // thread starts exiting since the private state thread will NULL this out
4124 // when it exits
Zachary Turner39de3112014-09-09 20:54:56 +00004125 HostThread private_state_thread(m_private_state_thread);
Zachary Turneracee96a2014-09-23 18:32:09 +00004126 if (private_state_thread.IsJoinable())
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004127 {
4128 TimeValue timeout_time;
4129 bool timed_out;
4130
4131 m_private_state_control_broadcaster.BroadcastEvent (signal, NULL);
4132
4133 timeout_time = TimeValue::Now();
4134 timeout_time.OffsetWithSeconds(2);
Jim Inghamb1e2e842012-04-12 18:49:31 +00004135 if (log)
4136 log->Printf ("Sending control event of type: %d.", signal);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004137 m_private_state_control_wait.WaitForValueEqualTo (true, &timeout_time, &timed_out);
4138 m_private_state_control_wait.SetValue (false, eBroadcastNever);
4139
4140 if (signal == eBroadcastInternalStateControlStop)
4141 {
4142 if (timed_out)
Jim Inghamb1e2e842012-04-12 18:49:31 +00004143 {
Zachary Turner39de3112014-09-09 20:54:56 +00004144 Error error = private_state_thread.Cancel();
Jim Inghamb1e2e842012-04-12 18:49:31 +00004145 if (log)
4146 log->Printf ("Timed out responding to the control event, cancel got error: \"%s\".", error.AsCString());
4147 }
4148 else
4149 {
4150 if (log)
4151 log->Printf ("The control event killed the private state thread without having to cancel.");
4152 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004153
4154 thread_result_t result = NULL;
Zachary Turner39de3112014-09-09 20:54:56 +00004155 private_state_thread.Join(&result);
4156 m_private_state_thread.Reset();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004157 }
4158 }
Jim Inghamb1e2e842012-04-12 18:49:31 +00004159 else
4160 {
4161 if (log)
4162 log->Printf ("Private state thread already dead, no need to signal it to stop.");
4163 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004164}
4165
4166void
Jim Inghamcfc09352012-07-27 23:57:19 +00004167Process::SendAsyncInterrupt ()
4168{
4169 if (PrivateStateThreadIsValid())
4170 m_private_state_broadcaster.BroadcastEvent (Process::eBroadcastBitInterrupt, NULL);
4171 else
4172 BroadcastEvent (Process::eBroadcastBitInterrupt, NULL);
4173}
4174
4175void
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004176Process::HandlePrivateEvent (EventSP &event_sp)
4177{
Greg Clayton5160ce52013-03-27 23:08:40 +00004178 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Jim Ingham221d51c2013-05-08 00:35:16 +00004179 m_resume_requested = false;
4180
Greg Clayton414f5d32011-01-25 02:58:48 +00004181 const StateType new_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
Jim Inghambb3a2832011-01-29 01:49:25 +00004182
4183 // First check to see if anybody wants a shot at this event:
Jim Ingham754ab982011-01-29 04:05:41 +00004184 if (m_next_event_action_ap.get() != NULL)
Jim Inghambb3a2832011-01-29 01:49:25 +00004185 {
Jim Ingham754ab982011-01-29 04:05:41 +00004186 NextEventAction::EventActionResult action_result = m_next_event_action_ap->PerformAction(event_sp);
Jim Ingham0161b492013-02-09 01:29:05 +00004187 if (log)
4188 log->Printf ("Ran next event action, result was %d.", action_result);
4189
Jim Inghambb3a2832011-01-29 01:49:25 +00004190 switch (action_result)
4191 {
4192 case NextEventAction::eEventActionSuccess:
4193 SetNextEventAction(NULL);
4194 break;
Greg Claytonc9ed4782011-11-12 02:10:56 +00004195
Jim Inghambb3a2832011-01-29 01:49:25 +00004196 case NextEventAction::eEventActionRetry:
4197 break;
Greg Claytonc9ed4782011-11-12 02:10:56 +00004198
Jim Inghambb3a2832011-01-29 01:49:25 +00004199 case NextEventAction::eEventActionExit:
Jim Ingham2a5fdd42011-01-29 01:57:31 +00004200 // Handle Exiting Here. If we already got an exited event,
4201 // we should just propagate it. Otherwise, swallow this event,
4202 // and set our state to exit so the next event will kill us.
4203 if (new_state != eStateExited)
4204 {
4205 // FIXME: should cons up an exited event, and discard this one.
Jim Ingham754ab982011-01-29 04:05:41 +00004206 SetExitStatus(0, m_next_event_action_ap->GetExitString());
Jim Ingham2a5fdd42011-01-29 01:57:31 +00004207 SetNextEventAction(NULL);
4208 return;
4209 }
4210 SetNextEventAction(NULL);
Jim Inghambb3a2832011-01-29 01:49:25 +00004211 break;
4212 }
4213 }
4214
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004215 // See if we should broadcast this state to external clients?
4216 const bool should_broadcast = ShouldBroadcastEvent (event_sp.get());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004217
4218 if (should_broadcast)
4219 {
Greg Claytonb4874f12014-02-28 18:22:24 +00004220 const bool is_hijacked = IsHijackedForEvent(eBroadcastBitStateChanged);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004221 if (log)
4222 {
Daniel Malead01b2952012-11-29 21:49:15 +00004223 log->Printf ("Process::%s (pid = %" PRIu64 ") broadcasting new state %s (old state %s) to %s",
Greg Clayton414f5d32011-01-25 02:58:48 +00004224 __FUNCTION__,
4225 GetID(),
4226 StateAsCString(new_state),
4227 StateAsCString (GetState ()),
Greg Claytonb4874f12014-02-28 18:22:24 +00004228 is_hijacked ? "hijacked" : "public");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004229 }
Jim Ingham9575d842011-03-11 03:53:59 +00004230 Process::ProcessEventData::SetUpdateStateOnRemoval(event_sp.get());
Greg Clayton414f5d32011-01-25 02:58:48 +00004231 if (StateIsRunningState (new_state))
Greg Clayton44d93782014-01-27 23:43:24 +00004232 {
4233 // Only push the input handler if we aren't fowarding events,
4234 // as this means the curses GUI is in use...
Todd Fialaf72fa672014-10-07 16:05:21 +00004235 // Or don't push it if we are launching since it will come up stopped.
Zachary Turnerc62733b2015-05-20 18:31:17 +00004236 if (!GetTarget().GetDebugger().IsForwardingEvents() && new_state != eStateLaunching &&
4237 new_state != eStateAttaching)
Pavel Labath44464872015-05-27 12:40:32 +00004238 {
Greg Clayton44d93782014-01-27 23:43:24 +00004239 PushProcessIOHandler ();
Pavel Labath44464872015-05-27 12:40:32 +00004240 m_iohandler_sync.SetValue(m_iohandler_sync.GetValue()+1, eBroadcastAlways);
4241 if (log)
4242 log->Printf("Process::%s updated m_iohandler_sync to %d", __FUNCTION__, m_iohandler_sync.GetValue());
4243 }
Greg Clayton44d93782014-01-27 23:43:24 +00004244 }
Greg Claytonb4874f12014-02-28 18:22:24 +00004245 else if (StateIsStoppedState(new_state, false))
4246 {
4247 if (!Process::ProcessEventData::GetRestartedFromEvent(event_sp.get()))
4248 {
4249 // If the lldb_private::Debugger is handling the events, we don't
4250 // want to pop the process IOHandler here, we want to do it when
4251 // we receive the stopped event so we can carefully control when
4252 // the process IOHandler is popped because when we stop we want to
4253 // display some text stating how and why we stopped, then maybe some
4254 // process/thread/frame info, and then we want the "(lldb) " prompt
4255 // to show up. If we pop the process IOHandler here, then we will
4256 // cause the command interpreter to become the top IOHandler after
4257 // the process pops off and it will update its prompt right away...
4258 // See the Debugger.cpp file where it calls the function as
4259 // "process_sp->PopProcessIOHandler()" to see where I am talking about.
4260 // Otherwise we end up getting overlapping "(lldb) " prompts and
4261 // garbled output.
4262 //
4263 // If we aren't handling the events in the debugger (which is indicated
4264 // by "m_target.GetDebugger().IsHandlingEvents()" returning false) or we
4265 // are hijacked, then we always pop the process IO handler manually.
4266 // Hijacking happens when the internal process state thread is running
4267 // thread plans, or when commands want to run in synchronous mode
4268 // and they call "process->WaitForProcessToStop()". An example of something
4269 // that will hijack the events is a simple expression:
4270 //
4271 // (lldb) expr (int)puts("hello")
4272 //
4273 // This will cause the internal process state thread to resume and halt
4274 // the process (and _it_ will hijack the eBroadcastBitStateChanged
4275 // events) and we do need the IO handler to be pushed and popped
4276 // correctly.
4277
Zachary Turner7529df92015-09-01 20:02:29 +00004278 if (is_hijacked || GetTarget().GetDebugger().IsHandlingEvents() == false)
Greg Claytonb4874f12014-02-28 18:22:24 +00004279 PopProcessIOHandler ();
4280 }
4281 }
Jim Ingham9575d842011-03-11 03:53:59 +00004282
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004283 BroadcastEvent (event_sp);
4284 }
4285 else
4286 {
4287 if (log)
4288 {
Daniel Malead01b2952012-11-29 21:49:15 +00004289 log->Printf ("Process::%s (pid = %" PRIu64 ") suppressing state %s (old state %s): should_broadcast == false",
Greg Clayton414f5d32011-01-25 02:58:48 +00004290 __FUNCTION__,
4291 GetID(),
4292 StateAsCString(new_state),
Jason Molendafd54b362011-09-20 21:44:10 +00004293 StateAsCString (GetState ()));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004294 }
4295 }
Pavel Labath19da1f12015-12-07 12:36:52 +00004296}
4297
4298Error
4299Process::HaltPrivate()
4300{
4301 EventSP event_sp;
4302 Error error (WillHalt());
4303 if (error.Fail())
4304 return error;
4305
4306 // Ask the process subclass to actually halt our process
4307 bool caused_stop;
4308 error = DoHalt(caused_stop);
4309
4310 DidHalt();
4311 return error;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004312}
4313
Virgile Bellob2f1fb22013-08-23 12:44:05 +00004314thread_result_t
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004315Process::PrivateStateThread (void *arg)
4316{
Jim Inghama1ca8142016-02-04 01:34:33 +00004317 PrivateStateThreadArgs real_args = *static_cast<PrivateStateThreadArgs *> (arg);
4318 free (arg);
4319 thread_result_t result = real_args.process->RunPrivateStateThread(real_args.is_secondary_thread);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004320 return result;
4321}
4322
Virgile Bellob2f1fb22013-08-23 12:44:05 +00004323thread_result_t
Jim Ingham60c915e2015-06-23 21:02:45 +00004324Process::RunPrivateStateThread (bool is_secondary_thread)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004325{
Jim Ingham076b3042012-04-10 01:21:57 +00004326 bool control_only = true;
Jim Inghamb1e2e842012-04-12 18:49:31 +00004327 m_private_state_control_wait.SetValue (false, eBroadcastNever);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004328
Greg Clayton5160ce52013-03-27 23:08:40 +00004329 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004330 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004331 log->Printf ("Process::%s (arg = %p, pid = %" PRIu64 ") thread starting...",
4332 __FUNCTION__, static_cast<void*>(this), GetID());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004333
4334 bool exit_now = false;
Pavel Labath19da1f12015-12-07 12:36:52 +00004335 bool interrupt_requested = false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004336 while (!exit_now)
4337 {
4338 EventSP event_sp;
4339 WaitForEventsPrivate (NULL, event_sp, control_only);
4340 if (event_sp->BroadcasterIs(&m_private_state_control_broadcaster))
4341 {
Jim Inghamb1e2e842012-04-12 18:49:31 +00004342 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004343 log->Printf ("Process::%s (arg = %p, pid = %" PRIu64 ") got a control event: %d",
4344 __FUNCTION__, static_cast<void*>(this), GetID(),
4345 event_sp->GetType());
Jim Inghamb1e2e842012-04-12 18:49:31 +00004346
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004347 switch (event_sp->GetType())
4348 {
4349 case eBroadcastInternalStateControlStop:
4350 exit_now = true;
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +00004351 break; // doing any internal state management below
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004352
4353 case eBroadcastInternalStateControlPause:
4354 control_only = true;
4355 break;
4356
4357 case eBroadcastInternalStateControlResume:
4358 control_only = false;
4359 break;
4360 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004361
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004362 m_private_state_control_wait.SetValue (true, eBroadcastAlways);
Jim Ingham0d8bcc72010-11-17 02:32:00 +00004363 continue;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004364 }
Jim Inghamcfc09352012-07-27 23:57:19 +00004365 else if (event_sp->GetType() == eBroadcastBitInterrupt)
4366 {
4367 if (m_public_state.GetValue() == eStateAttaching)
4368 {
4369 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004370 log->Printf ("Process::%s (arg = %p, pid = %" PRIu64 ") woke up with an interrupt while attaching - forwarding interrupt.",
4371 __FUNCTION__, static_cast<void*>(this),
4372 GetID());
Jim Inghamcfc09352012-07-27 23:57:19 +00004373 BroadcastEvent (eBroadcastBitInterrupt, NULL);
4374 }
Pavel Labath19da1f12015-12-07 12:36:52 +00004375 else if(StateIsRunningState(m_last_broadcast_state))
Jim Inghamcfc09352012-07-27 23:57:19 +00004376 {
4377 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004378 log->Printf ("Process::%s (arg = %p, pid = %" PRIu64 ") woke up with an interrupt - Halting.",
4379 __FUNCTION__, static_cast<void*>(this),
4380 GetID());
Pavel Labath19da1f12015-12-07 12:36:52 +00004381 Error error = HaltPrivate();
4382 if (error.Fail() && log)
4383 log->Printf ("Process::%s (arg = %p, pid = %" PRIu64 ") failed to halt the process: %s",
4384 __FUNCTION__, static_cast<void*>(this),
4385 GetID(), error.AsCString());
4386 // Halt should generate a stopped event. Make a note of the fact that we were
4387 // doing the interrupt, so we can set the interrupted flag after we receive the
4388 // event. We deliberately set this to true even if HaltPrivate failed, so that we
4389 // can interrupt on the next natural stop.
4390 interrupt_requested = true;
4391 }
4392 else
4393 {
4394 // This can happen when someone (e.g. Process::Halt) sees that we are running and
4395 // sends an interrupt request, but the process actually stops before we receive
4396 // it. In that case, we can just ignore the request. We use
4397 // m_last_broadcast_state, because the Stopped event may not have been popped of
4398 // the event queue yet, which is when the public state gets updated.
4399 if (log)
4400 log->Printf("Process::%s ignoring interrupt as we have already stopped.", __FUNCTION__);
Jim Inghamcfc09352012-07-27 23:57:19 +00004401 }
4402 continue;
4403 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004404
4405 const StateType internal_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
4406
4407 if (internal_state != eStateInvalid)
4408 {
Greg Claytonf9b57b92013-05-10 23:48:10 +00004409 if (m_clear_thread_plans_on_stop &&
4410 StateIsStoppedState(internal_state, true))
4411 {
4412 m_clear_thread_plans_on_stop = false;
4413 m_thread_list.DiscardThreadPlans();
4414 }
Pavel Labath19da1f12015-12-07 12:36:52 +00004415
4416 if (interrupt_requested)
4417 {
4418 if (StateIsStoppedState (internal_state, true))
4419 {
4420 // We requested the interrupt, so mark this as such in the stop event so
4421 // clients can tell an interrupted process from a natural stop
4422 ProcessEventData::SetInterruptedInEvent (event_sp.get(), true);
4423 interrupt_requested = false;
4424 }
4425 else if (log)
4426 {
4427 log->Printf("Process::%s interrupt_requested, but a non-stopped state '%s' received.",
4428 __FUNCTION__, StateAsCString(internal_state));
4429 }
4430 }
4431
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004432 HandlePrivateEvent (event_sp);
4433 }
4434
Greg Clayton58d1c9a2010-10-18 04:14:23 +00004435 if (internal_state == eStateInvalid ||
4436 internal_state == eStateExited ||
4437 internal_state == eStateDetached )
Jim Ingham0d8bcc72010-11-17 02:32:00 +00004438 {
Jim Ingham0d8bcc72010-11-17 02:32:00 +00004439 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004440 log->Printf ("Process::%s (arg = %p, pid = %" PRIu64 ") about to exit with internal state %s...",
4441 __FUNCTION__, static_cast<void*>(this), GetID(),
4442 StateAsCString(internal_state));
Jim Ingham0d8bcc72010-11-17 02:32:00 +00004443
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004444 break;
Jim Ingham0d8bcc72010-11-17 02:32:00 +00004445 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004446 }
4447
Caroline Tice20ad3c42010-10-29 21:48:37 +00004448 // Verify log is still enabled before attempting to write to it...
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004449 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004450 log->Printf ("Process::%s (arg = %p, pid = %" PRIu64 ") thread exiting...",
4451 __FUNCTION__, static_cast<void*>(this), GetID());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004452
Jim Ingham60c915e2015-06-23 21:02:45 +00004453 // If we are a secondary thread, then the primary thread we are working for will have already
4454 // acquired the public_run_lock, and isn't done with what it was doing yet, so don't
4455 // try to change it on the way out.
4456 if (!is_secondary_thread)
4457 m_public_run_lock.SetStopped();
Greg Clayton6ed95942011-01-22 07:12:45 +00004458 m_private_state_control_wait.SetValue (true, eBroadcastAlways);
Zachary Turner39de3112014-09-09 20:54:56 +00004459 m_private_state_thread.Reset();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004460 return NULL;
4461}
4462
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004463//------------------------------------------------------------------
4464// Process Event Data
4465//------------------------------------------------------------------
4466
4467Process::ProcessEventData::ProcessEventData () :
4468 EventData (),
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004469 m_process_wp (),
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004470 m_state (eStateInvalid),
Greg Claytonc982c762010-07-09 20:39:50 +00004471 m_restarted (false),
Jim Inghama8604692011-05-22 21:45:01 +00004472 m_update_state (0),
Jim Ingham0d8bcc72010-11-17 02:32:00 +00004473 m_interrupted (false)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004474{
4475}
4476
4477Process::ProcessEventData::ProcessEventData (const ProcessSP &process_sp, StateType state) :
4478 EventData (),
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004479 m_process_wp (),
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004480 m_state (state),
Greg Claytonc982c762010-07-09 20:39:50 +00004481 m_restarted (false),
Jim Inghama8604692011-05-22 21:45:01 +00004482 m_update_state (0),
Jim Ingham0d8bcc72010-11-17 02:32:00 +00004483 m_interrupted (false)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004484{
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004485 if (process_sp)
4486 m_process_wp = process_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004487}
4488
Eugene Zelenko8f30a652015-10-23 18:39:37 +00004489Process::ProcessEventData::~ProcessEventData() = default;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004490
4491const ConstString &
4492Process::ProcessEventData::GetFlavorString ()
4493{
4494 static ConstString g_flavor ("Process::ProcessEventData");
4495 return g_flavor;
4496}
4497
4498const ConstString &
4499Process::ProcessEventData::GetFlavor () const
4500{
4501 return ProcessEventData::GetFlavorString ();
4502}
4503
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004504void
4505Process::ProcessEventData::DoOnRemoval (Event *event_ptr)
4506{
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004507 ProcessSP process_sp(m_process_wp.lock());
4508
4509 if (!process_sp)
4510 return;
4511
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004512 // This function gets called twice for each event, once when the event gets pulled
Jim Inghama8604692011-05-22 21:45:01 +00004513 // off of the private process event queue, and then any number of times, first when it gets pulled off of
4514 // the public event queue, then other times when we're pretending that this is where we stopped at the
4515 // end of expression evaluation. m_update_state is used to distinguish these
4516 // three cases; it is 0 when we're just pulling it off for private handling,
Jim Ingham221d51c2013-05-08 00:35:16 +00004517 // and > 1 for expression evaluation, and we don't want to do the breakpoint command handling then.
Jim Inghama8604692011-05-22 21:45:01 +00004518 if (m_update_state != 1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004519 return;
Jim Ingham0161b492013-02-09 01:29:05 +00004520
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004521 process_sp->SetPublicState (m_state, Process::ProcessEventData::GetRestartedFromEvent(event_ptr));
Jim Ingham35878c42014-04-08 21:33:21 +00004522
4523 // If this is a halt event, even if the halt stopped with some reason other than a plain interrupt (e.g. we had
4524 // already stopped for a breakpoint when the halt request came through) don't do the StopInfo actions, as they may
4525 // end up restarting the process.
4526 if (m_interrupted)
4527 return;
4528
4529 // If we're stopped and haven't restarted, then do the StopInfo actions here:
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004530 if (m_state == eStateStopped && ! m_restarted)
Greg Clayton2e309072015-07-17 23:42:28 +00004531 {
4532 // Let process subclasses know we are about to do a public stop and
4533 // do anything they might need to in order to speed up register and
4534 // memory accesses.
4535 process_sp->WillPublicStop();
4536
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004537 ThreadList &curr_thread_list = process_sp->GetThreadList();
Greg Clayton61e7a582011-12-01 23:28:38 +00004538 uint32_t num_threads = curr_thread_list.GetSize();
4539 uint32_t idx;
Greg Claytonf4b47e12010-08-04 01:40:35 +00004540
Jim Ingham4b536182011-08-09 02:12:22 +00004541 // The actions might change one of the thread's stop_info's opinions about whether we should
4542 // stop the process, so we need to query that as we go.
Jim Ingham0faa43f2011-11-08 03:00:11 +00004543
4544 // One other complication here, is that we try to catch any case where the target has run (except for expressions)
4545 // and immediately exit, but if we get that wrong (which is possible) then the thread list might have changed, and
4546 // that would cause our iteration here to crash. We could make a copy of the thread list, but we'd really like
4547 // to also know if it has changed at all, so we make up a vector of the thread ID's and check what we get back
4548 // against this list & bag out if anything differs.
Greg Clayton61e7a582011-12-01 23:28:38 +00004549 std::vector<uint32_t> thread_index_array(num_threads);
Jim Ingham0faa43f2011-11-08 03:00:11 +00004550 for (idx = 0; idx < num_threads; ++idx)
4551 thread_index_array[idx] = curr_thread_list.GetThreadAtIndex(idx)->GetIndexID();
4552
Jim Inghamc7078c22012-12-13 22:24:15 +00004553 // Use this to track whether we should continue from here. We will only continue the target running if
4554 // no thread says we should stop. Of course if some thread's PerformAction actually sets the target running,
4555 // then it doesn't matter what the other threads say...
4556
4557 bool still_should_stop = false;
Jim Ingham4b536182011-08-09 02:12:22 +00004558
Jim Ingham0ad7e052013-04-25 02:04:59 +00004559 // Sometimes - for instance if we have a bug in the stub we are talking to, we stop but no thread has a
4560 // valid stop reason. In that case we should just stop, because we have no way of telling what the right
4561 // thing to do is, and it's better to let the user decide than continue behind their backs.
4562
4563 bool does_anybody_have_an_opinion = false;
4564
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004565 for (idx = 0; idx < num_threads; ++idx)
4566 {
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004567 curr_thread_list = process_sp->GetThreadList();
Jim Ingham0faa43f2011-11-08 03:00:11 +00004568 if (curr_thread_list.GetSize() != num_threads)
4569 {
Greg Clayton5160ce52013-03-27 23:08:40 +00004570 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP | LIBLLDB_LOG_PROCESS));
Jim Ingham87c665f2011-12-01 20:26:15 +00004571 if (log)
Greg Clayton61e7a582011-12-01 23:28:38 +00004572 log->Printf("Number of threads changed from %u to %u while processing event.", num_threads, curr_thread_list.GetSize());
Jim Ingham0faa43f2011-11-08 03:00:11 +00004573 break;
4574 }
4575
4576 lldb::ThreadSP thread_sp = curr_thread_list.GetThreadAtIndex(idx);
4577
4578 if (thread_sp->GetIndexID() != thread_index_array[idx])
4579 {
Greg Clayton5160ce52013-03-27 23:08:40 +00004580 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP | LIBLLDB_LOG_PROCESS));
Jim Ingham87c665f2011-12-01 20:26:15 +00004581 if (log)
Greg Clayton61e7a582011-12-01 23:28:38 +00004582 log->Printf("The thread at position %u changed from %u to %u while processing event.",
Jim Ingham87c665f2011-12-01 20:26:15 +00004583 idx,
4584 thread_index_array[idx],
4585 thread_sp->GetIndexID());
Jim Ingham0faa43f2011-11-08 03:00:11 +00004586 break;
4587 }
4588
Jim Inghamb15bfc72010-10-20 00:39:53 +00004589 StopInfoSP stop_info_sp = thread_sp->GetStopInfo ();
Jim Ingham5d88a062012-10-16 00:09:33 +00004590 if (stop_info_sp && stop_info_sp->IsValid())
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004591 {
Jim Ingham0ad7e052013-04-25 02:04:59 +00004592 does_anybody_have_an_opinion = true;
Jim Ingham0161b492013-02-09 01:29:05 +00004593 bool this_thread_wants_to_stop;
4594 if (stop_info_sp->GetOverrideShouldStop())
Jim Ingham4b536182011-08-09 02:12:22 +00004595 {
Jim Ingham0161b492013-02-09 01:29:05 +00004596 this_thread_wants_to_stop = stop_info_sp->GetOverriddenShouldStopValue();
4597 }
4598 else
4599 {
4600 stop_info_sp->PerformAction(event_ptr);
4601 // The stop action might restart the target. If it does, then we want to mark that in the
4602 // event so that whoever is receiving it will know to wait for the running event and reflect
4603 // that state appropriately.
4604 // We also need to stop processing actions, since they aren't expecting the target to be running.
4605
4606 // FIXME: we might have run.
4607 if (stop_info_sp->HasTargetRunSinceMe())
4608 {
4609 SetRestarted (true);
4610 break;
4611 }
4612
4613 this_thread_wants_to_stop = stop_info_sp->ShouldStop(event_ptr);
Jim Ingham4b536182011-08-09 02:12:22 +00004614 }
Jim Inghamc7078c22012-12-13 22:24:15 +00004615
Jim Inghamc7078c22012-12-13 22:24:15 +00004616 if (still_should_stop == false)
4617 still_should_stop = this_thread_wants_to_stop;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004618 }
4619 }
Ashok Thirumurthicf7c55e2013-04-18 14:38:20 +00004620
Jim Inghama8ca6e22013-05-03 23:04:37 +00004621 if (!GetRestarted())
Jim Ingham9575d842011-03-11 03:53:59 +00004622 {
Jim Ingham0ad7e052013-04-25 02:04:59 +00004623 if (!still_should_stop && does_anybody_have_an_opinion)
Jim Ingham4b536182011-08-09 02:12:22 +00004624 {
4625 // We've been asked to continue, so do that here.
Jim Ingham9575d842011-03-11 03:53:59 +00004626 SetRestarted(true);
Jim Ingham3b8285d2012-04-19 01:40:33 +00004627 // Use the public resume method here, since this is just
4628 // extending a public resume.
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004629 process_sp->PrivateResume();
Jim Ingham4b536182011-08-09 02:12:22 +00004630 }
4631 else
4632 {
4633 // If we didn't restart, run the Stop Hooks here:
4634 // They might also restart the target, so watch for that.
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004635 process_sp->GetTarget().RunStopHooks();
4636 if (process_sp->GetPrivateState() == eStateRunning)
Jim Ingham4b536182011-08-09 02:12:22 +00004637 SetRestarted(true);
4638 }
Jim Ingham9575d842011-03-11 03:53:59 +00004639 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004640 }
4641}
4642
4643void
4644Process::ProcessEventData::Dump (Stream *s) const
4645{
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004646 ProcessSP process_sp(m_process_wp.lock());
4647
4648 if (process_sp)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004649 s->Printf(" process = %p (pid = %" PRIu64 "), ",
Greg Claytonaeb3b8b2015-05-29 03:20:37 +00004650 static_cast<void*>(process_sp.get()), process_sp->GetID());
4651 else
4652 s->PutCString(" process = NULL, ");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004653
Greg Clayton8b82f082011-04-12 05:54:46 +00004654 s->Printf("state = %s", StateAsCString(GetState()));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004655}
4656
4657const Process::ProcessEventData *
4658Process::ProcessEventData::GetEventDataFromEvent (const Event *event_ptr)
4659{
4660 if (event_ptr)
4661 {
4662 const EventData *event_data = event_ptr->GetData();
4663 if (event_data && event_data->GetFlavor() == ProcessEventData::GetFlavorString())
4664 return static_cast <const ProcessEventData *> (event_ptr->GetData());
4665 }
4666 return NULL;
4667}
4668
4669ProcessSP
4670Process::ProcessEventData::GetProcessFromEvent (const Event *event_ptr)
4671{
4672 ProcessSP process_sp;
4673 const ProcessEventData *data = GetEventDataFromEvent (event_ptr);
4674 if (data)
4675 process_sp = data->GetProcessSP();
4676 return process_sp;
4677}
4678
4679StateType
4680Process::ProcessEventData::GetStateFromEvent (const Event *event_ptr)
4681{
4682 const ProcessEventData *data = GetEventDataFromEvent (event_ptr);
4683 if (data == NULL)
4684 return eStateInvalid;
4685 else
4686 return data->GetState();
4687}
4688
4689bool
4690Process::ProcessEventData::GetRestartedFromEvent (const Event *event_ptr)
4691{
4692 const ProcessEventData *data = GetEventDataFromEvent (event_ptr);
4693 if (data == NULL)
4694 return false;
4695 else
4696 return data->GetRestarted();
4697}
4698
4699void
4700Process::ProcessEventData::SetRestartedInEvent (Event *event_ptr, bool new_value)
4701{
4702 ProcessEventData *data = const_cast<ProcessEventData *>(GetEventDataFromEvent (event_ptr));
4703 if (data != NULL)
4704 data->SetRestarted(new_value);
4705}
4706
Jim Ingham0161b492013-02-09 01:29:05 +00004707size_t
4708Process::ProcessEventData::GetNumRestartedReasons(const Event *event_ptr)
4709{
4710 ProcessEventData *data = const_cast<ProcessEventData *>(GetEventDataFromEvent (event_ptr));
4711 if (data != NULL)
4712 return data->GetNumRestartedReasons();
4713 else
4714 return 0;
4715}
4716
4717const char *
4718Process::ProcessEventData::GetRestartedReasonAtIndex(const Event *event_ptr, size_t idx)
4719{
4720 ProcessEventData *data = const_cast<ProcessEventData *>(GetEventDataFromEvent (event_ptr));
4721 if (data != NULL)
4722 return data->GetRestartedReasonAtIndex(idx);
4723 else
4724 return NULL;
4725}
4726
4727void
4728Process::ProcessEventData::AddRestartedReason (Event *event_ptr, const char *reason)
4729{
4730 ProcessEventData *data = const_cast<ProcessEventData *>(GetEventDataFromEvent (event_ptr));
4731 if (data != NULL)
4732 data->AddRestartedReason(reason);
4733}
4734
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004735bool
Jim Ingham0d8bcc72010-11-17 02:32:00 +00004736Process::ProcessEventData::GetInterruptedFromEvent (const Event *event_ptr)
4737{
4738 const ProcessEventData *data = GetEventDataFromEvent (event_ptr);
4739 if (data == NULL)
4740 return false;
4741 else
4742 return data->GetInterrupted ();
4743}
4744
4745void
4746Process::ProcessEventData::SetInterruptedInEvent (Event *event_ptr, bool new_value)
4747{
4748 ProcessEventData *data = const_cast<ProcessEventData *>(GetEventDataFromEvent (event_ptr));
4749 if (data != NULL)
4750 data->SetInterrupted(new_value);
4751}
4752
4753bool
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004754Process::ProcessEventData::SetUpdateStateOnRemoval (Event *event_ptr)
4755{
4756 ProcessEventData *data = const_cast<ProcessEventData *>(GetEventDataFromEvent (event_ptr));
4757 if (data)
4758 {
4759 data->SetUpdateStateOnRemoval();
4760 return true;
4761 }
4762 return false;
4763}
4764
Greg Claytond9e416c2012-02-18 05:35:26 +00004765lldb::TargetSP
4766Process::CalculateTarget ()
4767{
Zachary Turner7529df92015-09-01 20:02:29 +00004768 return m_target_sp.lock();
Greg Claytond9e416c2012-02-18 05:35:26 +00004769}
4770
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004771void
Greg Clayton0603aa92010-10-04 01:05:56 +00004772Process::CalculateExecutionContext (ExecutionContext &exe_ctx)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004773{
Zachary Turner7529df92015-09-01 20:02:29 +00004774 exe_ctx.SetTargetPtr (&GetTarget());
Greg Claytonc14ee322011-09-22 04:58:26 +00004775 exe_ctx.SetProcessPtr (this);
4776 exe_ctx.SetThreadPtr(NULL);
4777 exe_ctx.SetFramePtr (NULL);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00004778}
4779
Greg Claytone996fd32011-03-08 22:40:15 +00004780//uint32_t
4781//Process::ListProcessesMatchingName (const char *name, StringList &matches, std::vector<lldb::pid_t> &pids)
4782//{
4783// return 0;
4784//}
4785//
4786//ArchSpec
4787//Process::GetArchSpecForExistingProcess (lldb::pid_t pid)
4788//{
4789// return Host::GetArchSpecForExistingProcess (pid);
4790//}
4791//
4792//ArchSpec
4793//Process::GetArchSpecForExistingProcess (const char *process_name)
4794//{
4795// return Host::GetArchSpecForExistingProcess (process_name);
4796//}
4797//
Caroline Ticeef5c6d02010-11-16 05:07:41 +00004798void
4799Process::AppendSTDOUT (const char * s, size_t len)
4800{
Greg Clayton3af9ea52010-11-18 05:57:03 +00004801 Mutex::Locker locker (m_stdio_communication_mutex);
Caroline Ticeef5c6d02010-11-16 05:07:41 +00004802 m_stdout_data.append (s, len);
Greg Clayton35a4cc52012-10-29 20:52:08 +00004803 BroadcastEventIfUnique (eBroadcastBitSTDOUT, new ProcessEventData (shared_from_this(), GetState()));
Caroline Ticeef5c6d02010-11-16 05:07:41 +00004804}
4805
4806void
Greg Clayton93e86192011-11-13 04:45:22 +00004807Process::AppendSTDERR (const char * s, size_t len)
4808{
4809 Mutex::Locker locker (m_stdio_communication_mutex);
4810 m_stderr_data.append (s, len);
Greg Clayton35a4cc52012-10-29 20:52:08 +00004811 BroadcastEventIfUnique (eBroadcastBitSTDERR, new ProcessEventData (shared_from_this(), GetState()));
Greg Clayton93e86192011-11-13 04:45:22 +00004812}
4813
Han Ming Ongab3b8b22012-11-17 00:21:04 +00004814void
Han Ming Ong91ed6b82013-06-24 18:15:05 +00004815Process::BroadcastAsyncProfileData(const std::string &one_profile_data)
Han Ming Ongab3b8b22012-11-17 00:21:04 +00004816{
4817 Mutex::Locker locker (m_profile_data_comm_mutex);
Han Ming Ong91ed6b82013-06-24 18:15:05 +00004818 m_profile_data.push_back(one_profile_data);
Han Ming Ongab3b8b22012-11-17 00:21:04 +00004819 BroadcastEventIfUnique (eBroadcastBitProfileData, new ProcessEventData (shared_from_this(), GetState()));
4820}
4821
4822size_t
4823Process::GetAsyncProfileData (char *buf, size_t buf_size, Error &error)
4824{
4825 Mutex::Locker locker(m_profile_data_comm_mutex);
Han Ming Ong929a94f2012-11-29 22:14:45 +00004826 if (m_profile_data.empty())
4827 return 0;
Han Ming Ong91ed6b82013-06-24 18:15:05 +00004828
4829 std::string &one_profile_data = m_profile_data.front();
4830 size_t bytes_available = one_profile_data.size();
Han Ming Ongab3b8b22012-11-17 00:21:04 +00004831 if (bytes_available > 0)
4832 {
Greg Clayton5160ce52013-03-27 23:08:40 +00004833 Log *log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Han Ming Ongab3b8b22012-11-17 00:21:04 +00004834 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004835 log->Printf ("Process::GetProfileData (buf = %p, size = %" PRIu64 ")",
4836 static_cast<void*>(buf),
4837 static_cast<uint64_t>(buf_size));
Han Ming Ongab3b8b22012-11-17 00:21:04 +00004838 if (bytes_available > buf_size)
4839 {
Han Ming Ong91ed6b82013-06-24 18:15:05 +00004840 memcpy(buf, one_profile_data.c_str(), buf_size);
4841 one_profile_data.erase(0, buf_size);
Han Ming Ongab3b8b22012-11-17 00:21:04 +00004842 bytes_available = buf_size;
4843 }
4844 else
4845 {
Han Ming Ong91ed6b82013-06-24 18:15:05 +00004846 memcpy(buf, one_profile_data.c_str(), bytes_available);
Han Ming Ong929a94f2012-11-29 22:14:45 +00004847 m_profile_data.erase(m_profile_data.begin());
Han Ming Ongab3b8b22012-11-17 00:21:04 +00004848 }
4849 }
4850 return bytes_available;
4851}
4852
Greg Clayton93e86192011-11-13 04:45:22 +00004853//------------------------------------------------------------------
4854// Process STDIO
4855//------------------------------------------------------------------
4856
4857size_t
4858Process::GetSTDOUT (char *buf, size_t buf_size, Error &error)
4859{
4860 Mutex::Locker locker(m_stdio_communication_mutex);
4861 size_t bytes_available = m_stdout_data.size();
4862 if (bytes_available > 0)
4863 {
Greg Clayton5160ce52013-03-27 23:08:40 +00004864 Log *log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Greg Clayton93e86192011-11-13 04:45:22 +00004865 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004866 log->Printf ("Process::GetSTDOUT (buf = %p, size = %" PRIu64 ")",
4867 static_cast<void*>(buf),
4868 static_cast<uint64_t>(buf_size));
Greg Clayton93e86192011-11-13 04:45:22 +00004869 if (bytes_available > buf_size)
4870 {
4871 memcpy(buf, m_stdout_data.c_str(), buf_size);
4872 m_stdout_data.erase(0, buf_size);
4873 bytes_available = buf_size;
4874 }
4875 else
4876 {
4877 memcpy(buf, m_stdout_data.c_str(), bytes_available);
4878 m_stdout_data.clear();
4879 }
4880 }
4881 return bytes_available;
4882}
4883
Greg Clayton93e86192011-11-13 04:45:22 +00004884size_t
4885Process::GetSTDERR (char *buf, size_t buf_size, Error &error)
4886{
4887 Mutex::Locker locker(m_stdio_communication_mutex);
4888 size_t bytes_available = m_stderr_data.size();
4889 if (bytes_available > 0)
4890 {
Greg Clayton5160ce52013-03-27 23:08:40 +00004891 Log *log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Greg Clayton93e86192011-11-13 04:45:22 +00004892 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00004893 log->Printf ("Process::GetSTDERR (buf = %p, size = %" PRIu64 ")",
4894 static_cast<void*>(buf),
4895 static_cast<uint64_t>(buf_size));
Greg Clayton93e86192011-11-13 04:45:22 +00004896 if (bytes_available > buf_size)
4897 {
4898 memcpy(buf, m_stderr_data.c_str(), buf_size);
4899 m_stderr_data.erase(0, buf_size);
4900 bytes_available = buf_size;
4901 }
4902 else
4903 {
4904 memcpy(buf, m_stderr_data.c_str(), bytes_available);
4905 m_stderr_data.clear();
4906 }
4907 }
4908 return bytes_available;
4909}
4910
4911void
Caroline Ticeef5c6d02010-11-16 05:07:41 +00004912Process::STDIOReadThreadBytesReceived (void *baton, const void *src, size_t src_len)
4913{
4914 Process *process = (Process *) baton;
4915 process->AppendSTDOUT (static_cast<const char *>(src), src_len);
4916}
4917
Greg Clayton44d93782014-01-27 23:43:24 +00004918class IOHandlerProcessSTDIO :
4919 public IOHandler
4920{
4921public:
4922 IOHandlerProcessSTDIO (Process *process,
4923 int write_fd) :
Kate Stonee30f11d2014-11-17 19:06:59 +00004924 IOHandler(process->GetTarget().GetDebugger(), IOHandler::Type::ProcessIO),
Greg Clayton44d93782014-01-27 23:43:24 +00004925 m_process (process),
4926 m_read_file (),
4927 m_write_file (write_fd, false),
Greg Clayton100eb932014-07-02 21:10:39 +00004928 m_pipe ()
Greg Clayton44d93782014-01-27 23:43:24 +00004929 {
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004930 m_pipe.CreateNew(false);
Greg Clayton44d93782014-01-27 23:43:24 +00004931 m_read_file.SetDescriptor(GetInputFD(), false);
4932 }
4933
Eugene Zelenko8f30a652015-10-23 18:39:37 +00004934 ~IOHandlerProcessSTDIO() override = default;
4935
Greg Clayton44d93782014-01-27 23:43:24 +00004936 // Each IOHandler gets to run until it is done. It should read data
4937 // from the "in" and place output into "out" and "err and return
4938 // when done.
Pavel Labath44464872015-05-27 12:40:32 +00004939 void
4940 Run () override
Greg Clayton44d93782014-01-27 23:43:24 +00004941 {
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004942 if (!m_read_file.IsValid() || !m_write_file.IsValid() || !m_pipe.CanRead() || !m_pipe.CanWrite())
Greg Clayton44d93782014-01-27 23:43:24 +00004943 {
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004944 SetIsDone(true);
4945 return;
4946 }
4947
4948 SetIsDone(false);
4949 const int read_fd = m_read_file.GetDescriptor();
4950 TerminalState terminal_state;
4951 terminal_state.Save (read_fd, false);
4952 Terminal terminal(read_fd);
4953 terminal.SetCanonical(false);
4954 terminal.SetEcho(false);
Deepak Panickal914b8d92014-01-31 18:48:46 +00004955// FD_ZERO, FD_SET are not supported on windows
Hafiz Abid Qadeer6eff1012014-03-12 10:45:23 +00004956#ifndef _WIN32
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004957 const int pipe_read_fd = m_pipe.GetReadFileDescriptor();
Greg Clayton860582f2016-02-26 17:36:44 +00004958 m_is_running = true;
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004959 while (!GetIsDone())
4960 {
4961 fd_set read_fdset;
4962 FD_ZERO (&read_fdset);
4963 FD_SET (read_fd, &read_fdset);
4964 FD_SET (pipe_read_fd, &read_fdset);
4965 const int nfds = std::max<int>(read_fd, pipe_read_fd) + 1;
4966 int num_set_fds = select (nfds, &read_fdset, NULL, NULL, NULL);
Greg Clayton860582f2016-02-26 17:36:44 +00004967
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004968 if (num_set_fds < 0)
4969 {
4970 const int select_errno = errno;
4971
4972 if (select_errno != EINTR)
4973 SetIsDone(true);
4974 }
4975 else if (num_set_fds > 0)
4976 {
4977 char ch = 0;
4978 size_t n;
4979 if (FD_ISSET (read_fd, &read_fdset))
Greg Clayton44d93782014-01-27 23:43:24 +00004980 {
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004981 n = 1;
4982 if (m_read_file.Read(&ch, n).Success() && n == 1)
Greg Clayton44d93782014-01-27 23:43:24 +00004983 {
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004984 if (m_write_file.Write(&ch, n).Fail() || n != 1)
Greg Clayton44d93782014-01-27 23:43:24 +00004985 SetIsDone(true);
4986 }
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004987 else
4988 SetIsDone(true);
4989 }
4990 if (FD_ISSET (pipe_read_fd, &read_fdset))
4991 {
4992 size_t bytes_read;
4993 // Consume the interrupt byte
4994 Error error = m_pipe.Read(&ch, 1, bytes_read);
4995 if (error.Success())
Greg Clayton44d93782014-01-27 23:43:24 +00004996 {
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004997 switch (ch)
Greg Clayton44d93782014-01-27 23:43:24 +00004998 {
Pavel Labathfb7d5b82015-05-28 13:41:08 +00004999 case 'q':
Greg Clayton44d93782014-01-27 23:43:24 +00005000 SetIsDone(true);
Pavel Labathfb7d5b82015-05-28 13:41:08 +00005001 break;
5002 case 'i':
5003 if (StateIsRunningState(m_process->GetState()))
Pavel Labathfcc7f662015-10-07 15:11:11 +00005004 m_process->SendAsyncInterrupt();
Pavel Labathfb7d5b82015-05-28 13:41:08 +00005005 break;
Greg Clayton44d93782014-01-27 23:43:24 +00005006 }
5007 }
5008 }
Greg Clayton44d93782014-01-27 23:43:24 +00005009 }
Greg Clayton44d93782014-01-27 23:43:24 +00005010 }
Greg Clayton860582f2016-02-26 17:36:44 +00005011 m_is_running = false;
Pavel Labathfb7d5b82015-05-28 13:41:08 +00005012#endif
5013 terminal_state.Restore();
Greg Clayton44d93782014-01-27 23:43:24 +00005014 }
5015
Pavel Labath44464872015-05-27 12:40:32 +00005016 void
5017 Cancel () override
Greg Clayton44d93782014-01-27 23:43:24 +00005018 {
Greg Clayton860582f2016-02-26 17:36:44 +00005019 SetIsDone(true);
5020 // Only write to our pipe to cancel if we are in IOHandlerProcessSTDIO::Run().
5021 // We can end up with a python command that is being run from the command
5022 // interpreter:
5023 //
5024 // (lldb) step_process_thousands_of_times
5025 //
5026 // In this case the command interpreter will be in the middle of handling
5027 // the command and if the process pushes and pops the IOHandler thousands
5028 // of times, we can end up writing to m_pipe without ever consuming the
5029 // bytes from the pipe in IOHandlerProcessSTDIO::Run() and end up
5030 // deadlocking when the pipe gets fed up and blocks until data is consumed.
5031 if (m_is_running)
5032 {
5033 char ch = 'q'; // Send 'q' for quit
5034 size_t bytes_written = 0;
5035 m_pipe.Write(&ch, 1, bytes_written);
5036 }
Greg Clayton44d93782014-01-27 23:43:24 +00005037 }
Greg Claytone68f5d62014-02-24 22:50:57 +00005038
Pavel Labath44464872015-05-27 12:40:32 +00005039 bool
5040 Interrupt () override
Greg Claytone68f5d62014-02-24 22:50:57 +00005041 {
Greg Clayton19e11352014-02-26 22:47:33 +00005042 // Do only things that are safe to do in an interrupt context (like in
5043 // a SIGINT handler), like write 1 byte to a file descriptor. This will
5044 // interrupt the IOHandlerProcessSTDIO::Run() and we can look at the byte
Pavel Labathfcc7f662015-10-07 15:11:11 +00005045 // that was written to the pipe and then call m_process->SendAsyncInterrupt()
5046 // from a much safer location in code.
Greg Clayton0fdd3ae2014-07-16 21:05:41 +00005047 if (m_active)
5048 {
5049 char ch = 'i'; // Send 'i' for interrupt
Zachary Turner0b9d3ee2014-12-17 18:02:19 +00005050 size_t bytes_written = 0;
5051 Error result = m_pipe.Write(&ch, 1, bytes_written);
5052 return result.Success();
Greg Clayton0fdd3ae2014-07-16 21:05:41 +00005053 }
5054 else
5055 {
5056 // This IOHandler might be pushed on the stack, but not being run currently
5057 // so do the right thing if we aren't actively watching for STDIN by sending
5058 // the interrupt to the process. Otherwise the write to the pipe above would
5059 // do nothing. This can happen when the command interpreter is running and
5060 // gets a "expression ...". It will be on the IOHandler thread and sending
5061 // the input is complete to the delegate which will cause the expression to
5062 // run, which will push the process IO handler, but not run it.
5063
5064 if (StateIsRunningState(m_process->GetState()))
5065 {
5066 m_process->SendAsyncInterrupt();
5067 return true;
5068 }
5069 }
5070 return false;
Greg Claytone68f5d62014-02-24 22:50:57 +00005071 }
Greg Clayton44d93782014-01-27 23:43:24 +00005072
Pavel Labath44464872015-05-27 12:40:32 +00005073 void
5074 GotEOF() override
Greg Clayton44d93782014-01-27 23:43:24 +00005075 {
Greg Clayton44d93782014-01-27 23:43:24 +00005076 }
5077
5078protected:
5079 Process *m_process;
5080 File m_read_file; // Read from this file (usually actual STDIN for LLDB
5081 File m_write_file; // Write to this file (usually the master pty for getting io to debuggee)
Greg Clayton100eb932014-07-02 21:10:39 +00005082 Pipe m_pipe;
Greg Clayton860582f2016-02-26 17:36:44 +00005083 std::atomic<bool> m_is_running;
Greg Clayton44d93782014-01-27 23:43:24 +00005084};
5085
Caroline Ticeef5c6d02010-11-16 05:07:41 +00005086void
Greg Clayton44d93782014-01-27 23:43:24 +00005087Process::SetSTDIOFileDescriptor (int fd)
Caroline Ticeef5c6d02010-11-16 05:07:41 +00005088{
5089 // First set up the Read Thread for reading/handling process I/O
5090
Greg Clayton44d93782014-01-27 23:43:24 +00005091 std::unique_ptr<ConnectionFileDescriptor> conn_ap (new ConnectionFileDescriptor (fd, true));
Caroline Ticeef5c6d02010-11-16 05:07:41 +00005092
5093 if (conn_ap.get())
5094 {
5095 m_stdio_communication.SetConnection (conn_ap.release());
5096 if (m_stdio_communication.IsConnected())
5097 {
5098 m_stdio_communication.SetReadThreadBytesReceivedCallback (STDIOReadThreadBytesReceived, this);
5099 m_stdio_communication.StartReadThread();
5100
5101 // Now read thread is set up, set up input reader.
5102
5103 if (!m_process_input_reader.get())
Greg Clayton44d93782014-01-27 23:43:24 +00005104 m_process_input_reader.reset (new IOHandlerProcessSTDIO (this, fd));
Caroline Ticeef5c6d02010-11-16 05:07:41 +00005105 }
5106 }
5107}
5108
Greg Claytonb4874f12014-02-28 18:22:24 +00005109bool
Greg Clayton6fea17e2014-03-03 19:15:20 +00005110Process::ProcessIOHandlerIsActive ()
5111{
5112 IOHandlerSP io_handler_sp (m_process_input_reader);
5113 if (io_handler_sp)
Zachary Turner7529df92015-09-01 20:02:29 +00005114 return GetTarget().GetDebugger().IsTopIOHandler (io_handler_sp);
Greg Clayton6fea17e2014-03-03 19:15:20 +00005115 return false;
5116}
5117bool
Greg Clayton44d93782014-01-27 23:43:24 +00005118Process::PushProcessIOHandler ()
Caroline Ticeef5c6d02010-11-16 05:07:41 +00005119{
Greg Clayton44d93782014-01-27 23:43:24 +00005120 IOHandlerSP io_handler_sp (m_process_input_reader);
5121 if (io_handler_sp)
5122 {
Pavel Labath44464872015-05-27 12:40:32 +00005123 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
5124 if (log)
5125 log->Printf("Process::%s pushing IO handler", __FUNCTION__);
5126
Greg Clayton44d93782014-01-27 23:43:24 +00005127 io_handler_sp->SetIsDone(false);
Zachary Turner7529df92015-09-01 20:02:29 +00005128 GetTarget().GetDebugger().PushIOHandler (io_handler_sp);
Greg Claytonb4874f12014-02-28 18:22:24 +00005129 return true;
Greg Clayton44d93782014-01-27 23:43:24 +00005130 }
Greg Claytonb4874f12014-02-28 18:22:24 +00005131 return false;
Caroline Ticeef5c6d02010-11-16 05:07:41 +00005132}
5133
Greg Claytonb4874f12014-02-28 18:22:24 +00005134bool
Greg Clayton44d93782014-01-27 23:43:24 +00005135Process::PopProcessIOHandler ()
Caroline Ticeef5c6d02010-11-16 05:07:41 +00005136{
Greg Clayton44d93782014-01-27 23:43:24 +00005137 IOHandlerSP io_handler_sp (m_process_input_reader);
5138 if (io_handler_sp)
Zachary Turner7529df92015-09-01 20:02:29 +00005139 return GetTarget().GetDebugger().PopIOHandler (io_handler_sp);
Greg Claytonb4874f12014-02-28 18:22:24 +00005140 return false;
Caroline Ticeef5c6d02010-11-16 05:07:41 +00005141}
5142
Greg Claytonbfe5f3b2011-02-18 01:44:25 +00005143// The process needs to know about installed plug-ins
Greg Clayton99d0faf2010-11-18 23:32:35 +00005144void
Caroline Tice20bd37f2011-03-10 22:14:10 +00005145Process::SettingsInitialize ()
Caroline Tice3df9a8d2010-09-04 00:03:46 +00005146{
Greg Clayton6920b522012-08-22 18:39:03 +00005147 Thread::SettingsInitialize ();
Greg Clayton99d0faf2010-11-18 23:32:35 +00005148}
Caroline Tice3df9a8d2010-09-04 00:03:46 +00005149
Greg Clayton99d0faf2010-11-18 23:32:35 +00005150void
Caroline Tice20bd37f2011-03-10 22:14:10 +00005151Process::SettingsTerminate ()
Greg Claytonbfe5f3b2011-02-18 01:44:25 +00005152{
Greg Clayton6920b522012-08-22 18:39:03 +00005153 Thread::SettingsTerminate ();
Greg Clayton99d0faf2010-11-18 23:32:35 +00005154}
Caroline Tice3df9a8d2010-09-04 00:03:46 +00005155
Jim Inghamc60963c2015-10-12 19:11:03 +00005156namespace
5157{
5158 // RestorePlanState is used to record the "is private", "is master" and "okay to discard" fields of
5159 // the plan we are running, and reset it on Clean or on destruction.
5160 // It will only reset the state once, so you can call Clean and then monkey with the state and it
5161 // won't get reset on you again.
5162
5163 class RestorePlanState
5164 {
5165 public:
5166 RestorePlanState (lldb::ThreadPlanSP thread_plan_sp) :
5167 m_thread_plan_sp(thread_plan_sp),
5168 m_already_reset(false)
5169 {
5170 if (m_thread_plan_sp)
5171 {
5172 m_private = m_thread_plan_sp->GetPrivate();
5173 m_is_master = m_thread_plan_sp->IsMasterPlan();
5174 m_okay_to_discard = m_thread_plan_sp->OkayToDiscard();
5175 }
5176 }
5177
5178 ~RestorePlanState()
5179 {
5180 Clean();
5181 }
5182
5183 void
5184 Clean ()
5185 {
5186 if (!m_already_reset && m_thread_plan_sp)
5187 {
5188 m_already_reset = true;
5189 m_thread_plan_sp->SetPrivate(m_private);
5190 m_thread_plan_sp->SetIsMasterPlan (m_is_master);
5191 m_thread_plan_sp->SetOkayToDiscard(m_okay_to_discard);
5192 }
5193 }
Eugene Zelenko8f30a652015-10-23 18:39:37 +00005194
Jim Inghamc60963c2015-10-12 19:11:03 +00005195 private:
5196 lldb::ThreadPlanSP m_thread_plan_sp;
5197 bool m_already_reset;
5198 bool m_private;
5199 bool m_is_master;
5200 bool m_okay_to_discard;
5201 };
Eugene Zelenko8f30a652015-10-23 18:39:37 +00005202} // anonymous namespace
Jim Inghamc60963c2015-10-12 19:11:03 +00005203
Jim Ingham1624a2d2014-05-05 02:26:40 +00005204ExpressionResults
Jim Inghamf48169b2010-11-30 02:22:11 +00005205Process::RunThreadPlan (ExecutionContext &exe_ctx,
Jim Ingham372787f2012-04-07 00:00:41 +00005206 lldb::ThreadPlanSP &thread_plan_sp,
Jim Ingham6fbc48b2013-11-07 00:11:47 +00005207 const EvaluateExpressionOptions &options,
Jim Inghamf48169b2010-11-30 02:22:11 +00005208 Stream &errors)
5209{
Jim Ingham8646d3c2014-05-05 02:47:44 +00005210 ExpressionResults return_value = eExpressionSetupError;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005211
Jim Ingham77787032011-01-20 02:03:18 +00005212 if (thread_plan_sp.get() == NULL)
5213 {
5214 errors.Printf("RunThreadPlan called with empty thread plan.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005215 return eExpressionSetupError;
Jim Ingham77787032011-01-20 02:03:18 +00005216 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005217
Jim Ingham7d7931d2013-03-28 00:05:34 +00005218 if (!thread_plan_sp->ValidatePlan(NULL))
5219 {
5220 errors.Printf ("RunThreadPlan called with an invalid thread plan.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005221 return eExpressionSetupError;
Jim Ingham7d7931d2013-03-28 00:05:34 +00005222 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005223
Greg Claytonc14ee322011-09-22 04:58:26 +00005224 if (exe_ctx.GetProcessPtr() != this)
5225 {
5226 errors.Printf("RunThreadPlan called on wrong process.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005227 return eExpressionSetupError;
Greg Claytonc14ee322011-09-22 04:58:26 +00005228 }
5229
5230 Thread *thread = exe_ctx.GetThreadPtr();
5231 if (thread == NULL)
5232 {
5233 errors.Printf("RunThreadPlan called with invalid thread.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005234 return eExpressionSetupError;
Greg Claytonc14ee322011-09-22 04:58:26 +00005235 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005236
Jim Inghamc60963c2015-10-12 19:11:03 +00005237 // We need to change some of the thread plan attributes for the thread plan runner. This will restore them
5238 // when we are done:
5239
5240 RestorePlanState thread_plan_restorer(thread_plan_sp);
5241
Jim Ingham17e5c4e2011-05-17 22:24:54 +00005242 // We rely on the thread plan we are running returning "PlanCompleted" if when it successfully completes.
5243 // For that to be true the plan can't be private - since private plans suppress themselves in the
5244 // GetCompletedPlan call.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005245
Jim Ingham17e5c4e2011-05-17 22:24:54 +00005246 thread_plan_sp->SetPrivate(false);
Jim Inghamc60963c2015-10-12 19:11:03 +00005247
5248 // The plans run with RunThreadPlan also need to be terminal master plans or when they are done we will end
5249 // up asking the plan above us whether we should stop, which may give the wrong answer.
5250
5251 thread_plan_sp->SetIsMasterPlan (true);
5252 thread_plan_sp->SetOkayToDiscard(false);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005253
Jim Ingham444586b2011-01-24 06:34:17 +00005254 if (m_private_state.GetValue() != eStateStopped)
5255 {
5256 errors.Printf ("RunThreadPlan called while the private state was not stopped.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005257 return eExpressionSetupError;
Jim Ingham444586b2011-01-24 06:34:17 +00005258 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005259
Jim Ingham66243842011-08-13 00:56:10 +00005260 // Save the thread & frame from the exe_ctx for restoration after we run
Greg Claytonc14ee322011-09-22 04:58:26 +00005261 const uint32_t thread_idx_id = thread->GetIndexID();
Jason Molendab57e4a12013-11-04 09:33:30 +00005262 StackFrameSP selected_frame_sp = thread->GetSelectedFrame();
Jim Ingham11b0e052013-02-19 23:22:45 +00005263 if (!selected_frame_sp)
5264 {
5265 thread->SetSelectedFrame(0);
5266 selected_frame_sp = thread->GetSelectedFrame();
5267 if (!selected_frame_sp)
5268 {
5269 errors.Printf("RunThreadPlan called without a selected frame on thread %d", thread_idx_id);
Jim Ingham8646d3c2014-05-05 02:47:44 +00005270 return eExpressionSetupError;
Jim Ingham11b0e052013-02-19 23:22:45 +00005271 }
5272 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005273
Jim Ingham11b0e052013-02-19 23:22:45 +00005274 StackID ctx_frame_id = selected_frame_sp->GetStackID();
Jim Inghamf48169b2010-11-30 02:22:11 +00005275
5276 // N.B. Running the target may unset the currently selected thread and frame. We don't want to do that either,
5277 // so we should arrange to reset them as well.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005278
Greg Claytonc14ee322011-09-22 04:58:26 +00005279 lldb::ThreadSP selected_thread_sp = GetThreadList().GetSelectedThread();
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005280
Jim Ingham66243842011-08-13 00:56:10 +00005281 uint32_t selected_tid;
5282 StackID selected_stack_id;
Greg Clayton762f7132011-09-18 18:59:15 +00005283 if (selected_thread_sp)
Jim Inghamf48169b2010-11-30 02:22:11 +00005284 {
5285 selected_tid = selected_thread_sp->GetIndexID();
Jim Ingham66243842011-08-13 00:56:10 +00005286 selected_stack_id = selected_thread_sp->GetSelectedFrame()->GetStackID();
Jim Inghamf48169b2010-11-30 02:22:11 +00005287 }
5288 else
5289 {
5290 selected_tid = LLDB_INVALID_THREAD_ID;
5291 }
5292
Zachary Turner39de3112014-09-09 20:54:56 +00005293 HostThread backup_private_state_thread;
Jason Molenda76513fd2014-10-15 23:39:31 +00005294 lldb::StateType old_state = eStateInvalid;
Jim Ingham076b3042012-04-10 01:21:57 +00005295 lldb::ThreadPlanSP stopper_base_plan_sp;
Jim Ingham372787f2012-04-07 00:00:41 +00005296
Greg Clayton5160ce52013-03-27 23:08:40 +00005297 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP | LIBLLDB_LOG_PROCESS));
Zachary Turner39de3112014-09-09 20:54:56 +00005298 if (m_private_state_thread.EqualsThread(Host::GetCurrentThread()))
Jim Ingham372787f2012-04-07 00:00:41 +00005299 {
Jim Ingham076b3042012-04-10 01:21:57 +00005300 // Yikes, we are running on the private state thread! So we can't wait for public events on this thread, since
5301 // we are the thread that is generating public events.
Jim Ingham372787f2012-04-07 00:00:41 +00005302 // The simplest thing to do is to spin up a temporary thread to handle private state thread events while
Jim Ingham076b3042012-04-10 01:21:57 +00005303 // we are fielding public events here.
5304 if (log)
Jason Molendad251c9d2012-11-17 01:41:04 +00005305 log->Printf ("Running thread plan on private state thread, spinning up another state thread to handle the events.");
Jim Ingham076b3042012-04-10 01:21:57 +00005306
Jim Ingham372787f2012-04-07 00:00:41 +00005307 backup_private_state_thread = m_private_state_thread;
Jim Ingham076b3042012-04-10 01:21:57 +00005308
5309 // One other bit of business: we want to run just this thread plan and anything it pushes, and then stop,
5310 // returning control here.
5311 // But in the normal course of things, the plan above us on the stack would be given a shot at the stop
5312 // event before deciding to stop, and we don't want that. So we insert a "stopper" base plan on the stack
5313 // before the plan we want to run. Since base plans always stop and return control to the user, that will
5314 // do just what we want.
5315 stopper_base_plan_sp.reset(new ThreadPlanBase (*thread));
5316 thread->QueueThreadPlan (stopper_base_plan_sp, false);
5317 // Have to make sure our public state is stopped, since otherwise the reporting logic below doesn't work correctly.
5318 old_state = m_public_state.GetValue();
5319 m_public_state.SetValueNoLock(eStateStopped);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005320
Jim Ingham076b3042012-04-10 01:21:57 +00005321 // Now spin up the private state thread:
Jim Ingham372787f2012-04-07 00:00:41 +00005322 StartPrivateStateThread(true);
5323 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005324
Jim Ingham372787f2012-04-07 00:00:41 +00005325 thread->QueueThreadPlan(thread_plan_sp, false); // This used to pass "true" does that make sense?
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005326
Jim Ingham6fbc48b2013-11-07 00:11:47 +00005327 if (options.GetDebug())
5328 {
5329 // In this case, we aren't actually going to run, we just want to stop right away.
5330 // Flush this thread so we will refetch the stacks and show the correct backtrace.
5331 // FIXME: To make this prettier we should invent some stop reason for this, but that
5332 // is only cosmetic, and this functionality is only of use to lldb developers who can
5333 // live with not pretty...
5334 thread->Flush();
Jim Ingham8646d3c2014-05-05 02:47:44 +00005335 return eExpressionStoppedForDebug;
Jim Ingham6fbc48b2013-11-07 00:11:47 +00005336 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005337
Jim Ingham1e7a9ee2011-01-23 21:14:08 +00005338 Listener listener("lldb.process.listener.run-thread-plan");
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005339
Sean Callanana46ec452012-07-11 21:31:24 +00005340 lldb::EventSP event_to_broadcast_sp;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005341
Jim Ingham77787032011-01-20 02:03:18 +00005342 {
Sean Callanana46ec452012-07-11 21:31:24 +00005343 // This process event hijacker Hijacks the Public events and its destructor makes sure that the process events get
5344 // restored on exit to the function.
5345 //
5346 // If the event needs to propagate beyond the hijacker (e.g., the process exits during execution), then the event
5347 // is put into event_to_broadcast_sp for rebroadcasting.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005348
Sean Callanana46ec452012-07-11 21:31:24 +00005349 ProcessEventHijacker run_thread_plan_hijacker (*this, &listener);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005350
Jim Inghamf48169b2010-11-30 02:22:11 +00005351 if (log)
Jim Ingham0f16e732011-02-08 05:20:59 +00005352 {
5353 StreamString s;
Sean Callanana46ec452012-07-11 21:31:24 +00005354 thread_plan_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose);
Daniel Malead01b2952012-11-29 21:49:15 +00005355 log->Printf ("Process::RunThreadPlan(): Resuming thread %u - 0x%4.4" PRIx64 " to run thread plan \"%s\".",
Sean Callanana46ec452012-07-11 21:31:24 +00005356 thread->GetIndexID(),
5357 thread->GetID(),
5358 s.GetData());
5359 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005360
Sean Callanana46ec452012-07-11 21:31:24 +00005361 bool got_event;
5362 lldb::EventSP event_sp;
5363 lldb::StateType stop_state = lldb::eStateInvalid;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005364
Sean Callanana46ec452012-07-11 21:31:24 +00005365 TimeValue* timeout_ptr = NULL;
5366 TimeValue real_timeout;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005367
Jim Ingham0161b492013-02-09 01:29:05 +00005368 bool before_first_timeout = true; // This is set to false the first time that we have to halt the target.
Sean Callanana46ec452012-07-11 21:31:24 +00005369 bool do_resume = true;
Jim Ingham184e9812013-01-15 02:47:48 +00005370 bool handle_running_event = true;
Jim Ingham35e1bda2012-10-16 21:41:58 +00005371 const uint64_t default_one_thread_timeout_usec = 250000;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005372
Jim Ingham0161b492013-02-09 01:29:05 +00005373 // This is just for accounting:
5374 uint32_t num_resumes = 0;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005375
Jim Ingham6fbc48b2013-11-07 00:11:47 +00005376 uint32_t timeout_usec = options.GetTimeoutUsec();
Jim Inghamfd95f892014-04-22 01:41:52 +00005377 uint32_t one_thread_timeout_usec;
5378 uint32_t all_threads_timeout_usec = 0;
Jim Inghamfe1c3422014-04-16 02:24:48 +00005379
5380 // If we are going to run all threads the whole time, or if we are only going to run one thread,
5381 // then we don't need the first timeout. So we set the final timeout, and pretend we are after the
5382 // first timeout already.
5383
5384 if (!options.GetStopOthers() || !options.GetTryAllThreads())
Jim Ingham286fb1e2014-02-28 02:52:06 +00005385 {
5386 before_first_timeout = false;
Jim Inghamfd95f892014-04-22 01:41:52 +00005387 one_thread_timeout_usec = 0;
5388 all_threads_timeout_usec = timeout_usec;
Jim Ingham286fb1e2014-02-28 02:52:06 +00005389 }
Jim Inghamfe1c3422014-04-16 02:24:48 +00005390 else
Jim Ingham0161b492013-02-09 01:29:05 +00005391 {
Jim Inghamfd95f892014-04-22 01:41:52 +00005392 uint32_t option_one_thread_timeout = options.GetOneThreadTimeoutUsec();
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005393
Jim Ingham914f4e72014-03-28 21:58:28 +00005394 // If the overall wait is forever, then we only need to set the one thread timeout:
5395 if (timeout_usec == 0)
5396 {
Ed Maste801335c2014-03-31 19:28:14 +00005397 if (option_one_thread_timeout != 0)
Jim Inghamfd95f892014-04-22 01:41:52 +00005398 one_thread_timeout_usec = option_one_thread_timeout;
Jim Ingham914f4e72014-03-28 21:58:28 +00005399 else
Jim Inghamfd95f892014-04-22 01:41:52 +00005400 one_thread_timeout_usec = default_one_thread_timeout_usec;
Jim Ingham914f4e72014-03-28 21:58:28 +00005401 }
Jim Ingham0161b492013-02-09 01:29:05 +00005402 else
5403 {
Jim Ingham914f4e72014-03-28 21:58:28 +00005404 // Otherwise, if the one thread timeout is set, make sure it isn't longer than the overall timeout,
5405 // and use it, otherwise use half the total timeout, bounded by the default_one_thread_timeout_usec.
5406 uint64_t computed_one_thread_timeout;
5407 if (option_one_thread_timeout != 0)
5408 {
5409 if (timeout_usec < option_one_thread_timeout)
5410 {
5411 errors.Printf("RunThreadPlan called without one thread timeout greater than total timeout");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005412 return eExpressionSetupError;
Jim Ingham914f4e72014-03-28 21:58:28 +00005413 }
5414 computed_one_thread_timeout = option_one_thread_timeout;
5415 }
5416 else
5417 {
5418 computed_one_thread_timeout = timeout_usec / 2;
5419 if (computed_one_thread_timeout > default_one_thread_timeout_usec)
5420 computed_one_thread_timeout = default_one_thread_timeout_usec;
5421 }
Jim Inghamfd95f892014-04-22 01:41:52 +00005422 one_thread_timeout_usec = computed_one_thread_timeout;
5423 all_threads_timeout_usec = timeout_usec - one_thread_timeout_usec;
Jim Ingham0161b492013-02-09 01:29:05 +00005424 }
Jim Ingham0161b492013-02-09 01:29:05 +00005425 }
Jim Inghamfe1c3422014-04-16 02:24:48 +00005426
5427 if (log)
Jim Inghamfd95f892014-04-22 01:41:52 +00005428 log->Printf ("Stop others: %u, try all: %u, before_first: %u, one thread: %" PRIu32 " - all threads: %" PRIu32 ".\n",
Jim Inghamfe1c3422014-04-16 02:24:48 +00005429 options.GetStopOthers(),
5430 options.GetTryAllThreads(),
Jim Inghamfd95f892014-04-22 01:41:52 +00005431 before_first_timeout,
5432 one_thread_timeout_usec,
5433 all_threads_timeout_usec);
Jim Ingham0161b492013-02-09 01:29:05 +00005434
Jim Ingham1460e4b2014-01-10 23:46:59 +00005435 // This isn't going to work if there are unfetched events on the queue.
5436 // Are there cases where we might want to run the remaining events here, and then try to
5437 // call the function? That's probably being too tricky for our own good.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005438
Jim Ingham1460e4b2014-01-10 23:46:59 +00005439 Event *other_events = listener.PeekAtNextEvent();
5440 if (other_events != NULL)
5441 {
5442 errors.Printf("Calling RunThreadPlan with pending events on the queue.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005443 return eExpressionSetupError;
Jim Ingham1460e4b2014-01-10 23:46:59 +00005444 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005445
Jim Ingham1460e4b2014-01-10 23:46:59 +00005446 // We also need to make sure that the next event is delivered. We might be calling a function as part of
5447 // a thread plan, in which case the last delivered event could be the running event, and we don't want
5448 // event coalescing to cause us to lose OUR running event...
5449 ForceNextEventDelivery();
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005450
Jim Ingham8559a352012-11-26 23:52:18 +00005451 // This while loop must exit out the bottom, there's cleanup that we need to do when we are done.
5452 // So don't call return anywhere within it.
Jim Ingham35878c42014-04-08 21:33:21 +00005453
5454#ifdef LLDB_RUN_THREAD_HALT_WITH_EVENT
5455 // It's pretty much impossible to write test cases for things like:
5456 // One thread timeout expires, I go to halt, but the process already stopped
5457 // on the function call stop breakpoint. Turning on this define will make us not
5458 // fetch the first event till after the halt. So if you run a quick function, it will have
5459 // completed, and the completion event will be waiting, when you interrupt for halt.
5460 // The expression evaluation should still succeed.
5461 bool miss_first_event = true;
5462#endif
Jim Inghamfd95f892014-04-22 01:41:52 +00005463 TimeValue one_thread_timeout;
5464 TimeValue final_timeout;
Eugene Zelenko8f30a652015-10-23 18:39:37 +00005465
Sean Callanana46ec452012-07-11 21:31:24 +00005466 while (1)
5467 {
5468 // We usually want to resume the process if we get to the top of the loop.
5469 // The only exception is if we get two running events with no intervening
5470 // stop, which can happen, we will just wait for then next stop event.
Jim Ingham0161b492013-02-09 01:29:05 +00005471 if (log)
5472 log->Printf ("Top of while loop: do_resume: %i handle_running_event: %i before_first_timeout: %i.",
5473 do_resume,
5474 handle_running_event,
5475 before_first_timeout);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005476
Jim Ingham184e9812013-01-15 02:47:48 +00005477 if (do_resume || handle_running_event)
Sean Callanana46ec452012-07-11 21:31:24 +00005478 {
5479 // Do the initial resume and wait for the running event before going further.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005480
Jim Ingham184e9812013-01-15 02:47:48 +00005481 if (do_resume)
Sean Callanana46ec452012-07-11 21:31:24 +00005482 {
Jim Ingham0161b492013-02-09 01:29:05 +00005483 num_resumes++;
Jim Ingham184e9812013-01-15 02:47:48 +00005484 Error resume_error = PrivateResume ();
5485 if (!resume_error.Success())
5486 {
Jim Ingham0161b492013-02-09 01:29:05 +00005487 errors.Printf("Error resuming inferior the %d time: \"%s\".\n",
5488 num_resumes,
5489 resume_error.AsCString());
Jim Ingham8646d3c2014-05-05 02:47:44 +00005490 return_value = eExpressionSetupError;
Jim Ingham184e9812013-01-15 02:47:48 +00005491 break;
5492 }
Sean Callanana46ec452012-07-11 21:31:24 +00005493 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005494
Jim Ingham0161b492013-02-09 01:29:05 +00005495 TimeValue resume_timeout = TimeValue::Now();
5496 resume_timeout.OffsetWithMicroSeconds(500000);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005497
Jim Ingham0161b492013-02-09 01:29:05 +00005498 got_event = listener.WaitForEvent(&resume_timeout, event_sp);
Sean Callanana46ec452012-07-11 21:31:24 +00005499 if (!got_event)
5500 {
5501 if (log)
Jim Ingham0161b492013-02-09 01:29:05 +00005502 log->Printf ("Process::RunThreadPlan(): didn't get any event after resume %d, exiting.",
5503 num_resumes);
Sean Callanana46ec452012-07-11 21:31:24 +00005504
Jim Ingham0161b492013-02-09 01:29:05 +00005505 errors.Printf("Didn't get any event after resume %d, exiting.", num_resumes);
Jim Ingham8646d3c2014-05-05 02:47:44 +00005506 return_value = eExpressionSetupError;
Sean Callanana46ec452012-07-11 21:31:24 +00005507 break;
5508 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005509
Sean Callanana46ec452012-07-11 21:31:24 +00005510 stop_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
Jim Ingham0161b492013-02-09 01:29:05 +00005511
Sean Callanana46ec452012-07-11 21:31:24 +00005512 if (stop_state != eStateRunning)
5513 {
Jim Ingham0161b492013-02-09 01:29:05 +00005514 bool restarted = false;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005515
Jim Ingham0161b492013-02-09 01:29:05 +00005516 if (stop_state == eStateStopped)
5517 {
5518 restarted = Process::ProcessEventData::GetRestartedFromEvent(event_sp.get());
5519 if (log)
5520 log->Printf("Process::RunThreadPlan(): didn't get running event after "
5521 "resume %d, got %s instead (restarted: %i, do_resume: %i, handle_running_event: %i).",
5522 num_resumes,
5523 StateAsCString(stop_state),
5524 restarted,
5525 do_resume,
5526 handle_running_event);
5527 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005528
Jim Ingham0161b492013-02-09 01:29:05 +00005529 if (restarted)
5530 {
5531 // This is probably an overabundance of caution, I don't think I should ever get a stopped & restarted
5532 // event here. But if I do, the best thing is to Halt and then get out of here.
Pavel Labath19da1f12015-12-07 12:36:52 +00005533 const bool clear_thread_plans = false;
5534 const bool use_run_lock = false;
5535 Halt(clear_thread_plans, use_run_lock);
Jim Ingham0161b492013-02-09 01:29:05 +00005536 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005537
Jim Ingham35e1bda2012-10-16 21:41:58 +00005538 errors.Printf("Didn't get running event after initial resume, got %s instead.",
5539 StateAsCString(stop_state));
Jim Ingham8646d3c2014-05-05 02:47:44 +00005540 return_value = eExpressionSetupError;
Sean Callanana46ec452012-07-11 21:31:24 +00005541 break;
5542 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005543
Sean Callanana46ec452012-07-11 21:31:24 +00005544 if (log)
5545 log->PutCString ("Process::RunThreadPlan(): resuming succeeded.");
5546 // We need to call the function synchronously, so spin waiting for it to return.
5547 // If we get interrupted while executing, we're going to lose our context, and
5548 // won't be able to gather the result at this point.
5549 // We set the timeout AFTER the resume, since the resume takes some time and we
5550 // don't want to charge that to the timeout.
Sean Callanana46ec452012-07-11 21:31:24 +00005551 }
Jim Ingham0f16e732011-02-08 05:20:59 +00005552 else
5553 {
Sean Callanana46ec452012-07-11 21:31:24 +00005554 if (log)
Jim Ingham0161b492013-02-09 01:29:05 +00005555 log->PutCString ("Process::RunThreadPlan(): waiting for next event.");
Jim Ingham0f16e732011-02-08 05:20:59 +00005556 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005557
Jim Ingham0161b492013-02-09 01:29:05 +00005558 if (before_first_timeout)
5559 {
Jim Ingham6fbc48b2013-11-07 00:11:47 +00005560 if (options.GetTryAllThreads())
Jim Inghamfd95f892014-04-22 01:41:52 +00005561 {
5562 one_thread_timeout = TimeValue::Now();
5563 one_thread_timeout.OffsetWithMicroSeconds(one_thread_timeout_usec);
Jim Ingham0161b492013-02-09 01:29:05 +00005564 timeout_ptr = &one_thread_timeout;
Jim Inghamfd95f892014-04-22 01:41:52 +00005565 }
Jim Ingham0161b492013-02-09 01:29:05 +00005566 else
5567 {
5568 if (timeout_usec == 0)
5569 timeout_ptr = NULL;
5570 else
Jim Inghamfd95f892014-04-22 01:41:52 +00005571 {
5572 final_timeout = TimeValue::Now();
5573 final_timeout.OffsetWithMicroSeconds (timeout_usec);
Jim Ingham0161b492013-02-09 01:29:05 +00005574 timeout_ptr = &final_timeout;
Jim Inghamfd95f892014-04-22 01:41:52 +00005575 }
Jim Ingham0161b492013-02-09 01:29:05 +00005576 }
5577 }
5578 else
5579 {
5580 if (timeout_usec == 0)
5581 timeout_ptr = NULL;
5582 else
Jim Inghamfd95f892014-04-22 01:41:52 +00005583 {
5584 final_timeout = TimeValue::Now();
5585 final_timeout.OffsetWithMicroSeconds (all_threads_timeout_usec);
Jim Ingham0161b492013-02-09 01:29:05 +00005586 timeout_ptr = &final_timeout;
Jim Inghamfd95f892014-04-22 01:41:52 +00005587 }
Jim Ingham0161b492013-02-09 01:29:05 +00005588 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005589
Jim Ingham0161b492013-02-09 01:29:05 +00005590 do_resume = true;
5591 handle_running_event = true;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005592
Sean Callanana46ec452012-07-11 21:31:24 +00005593 // Now wait for the process to stop again:
Sean Callanana46ec452012-07-11 21:31:24 +00005594 event_sp.reset();
Jim Ingham0f16e732011-02-08 05:20:59 +00005595
Jim Ingham0f16e732011-02-08 05:20:59 +00005596 if (log)
Jim Ingham20829ac2011-08-09 22:24:33 +00005597 {
Sean Callanana46ec452012-07-11 21:31:24 +00005598 if (timeout_ptr)
5599 {
Matt Kopec676a4872013-02-21 23:55:31 +00005600 log->Printf ("Process::RunThreadPlan(): about to wait - now is %" PRIu64 " - endpoint is %" PRIu64,
Jim Ingham0161b492013-02-09 01:29:05 +00005601 TimeValue::Now().GetAsMicroSecondsSinceJan1_1970(),
5602 timeout_ptr->GetAsMicroSecondsSinceJan1_1970());
Sean Callanana46ec452012-07-11 21:31:24 +00005603 }
Jim Ingham20829ac2011-08-09 22:24:33 +00005604 else
Sean Callanana46ec452012-07-11 21:31:24 +00005605 {
5606 log->Printf ("Process::RunThreadPlan(): about to wait forever.");
5607 }
5608 }
Jim Ingham35878c42014-04-08 21:33:21 +00005609
5610#ifdef LLDB_RUN_THREAD_HALT_WITH_EVENT
5611 // See comment above...
5612 if (miss_first_event)
5613 {
5614 usleep(1000);
5615 miss_first_event = false;
5616 got_event = false;
5617 }
5618 else
5619#endif
Sean Callanana46ec452012-07-11 21:31:24 +00005620 got_event = listener.WaitForEvent (timeout_ptr, event_sp);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005621
Sean Callanana46ec452012-07-11 21:31:24 +00005622 if (got_event)
5623 {
5624 if (event_sp.get())
5625 {
5626 bool keep_going = false;
Jim Inghamcfc09352012-07-27 23:57:19 +00005627 if (event_sp->GetType() == eBroadcastBitInterrupt)
Sean Callanana46ec452012-07-11 21:31:24 +00005628 {
Pavel Labath19da1f12015-12-07 12:36:52 +00005629 const bool clear_thread_plans = false;
5630 const bool use_run_lock = false;
5631 Halt(clear_thread_plans, use_run_lock);
Jim Ingham8646d3c2014-05-05 02:47:44 +00005632 return_value = eExpressionInterrupted;
Jim Inghamcfc09352012-07-27 23:57:19 +00005633 errors.Printf ("Execution halted by user interrupt.");
5634 if (log)
5635 log->Printf ("Process::RunThreadPlan(): Got interrupted by eBroadcastBitInterrupted, exiting.");
Jim Ingham0161b492013-02-09 01:29:05 +00005636 break;
Jim Inghamcfc09352012-07-27 23:57:19 +00005637 }
5638 else
5639 {
5640 stop_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
5641 if (log)
5642 log->Printf("Process::RunThreadPlan(): in while loop, got event: %s.", StateAsCString(stop_state));
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005643
Jim Inghamcfc09352012-07-27 23:57:19 +00005644 switch (stop_state)
Sean Callanana46ec452012-07-11 21:31:24 +00005645 {
Jim Inghamcfc09352012-07-27 23:57:19 +00005646 case lldb::eStateStopped:
Sean Callanana46ec452012-07-11 21:31:24 +00005647 {
Jim Ingham0161b492013-02-09 01:29:05 +00005648 // We stopped, figure out what we are going to do now.
Jim Inghamcfc09352012-07-27 23:57:19 +00005649 ThreadSP thread_sp = GetThreadList().FindThreadByIndexID (thread_idx_id);
5650 if (!thread_sp)
Sean Callanana46ec452012-07-11 21:31:24 +00005651 {
Jim Inghamcfc09352012-07-27 23:57:19 +00005652 // Ooh, our thread has vanished. Unlikely that this was successful execution...
Sean Callanana46ec452012-07-11 21:31:24 +00005653 if (log)
Jim Inghamcfc09352012-07-27 23:57:19 +00005654 log->Printf ("Process::RunThreadPlan(): execution completed but our thread (index-id=%u) has vanished.", thread_idx_id);
Jim Ingham8646d3c2014-05-05 02:47:44 +00005655 return_value = eExpressionInterrupted;
Sean Callanana46ec452012-07-11 21:31:24 +00005656 }
5657 else
5658 {
Jim Ingham0161b492013-02-09 01:29:05 +00005659 // If we were restarted, we just need to go back up to fetch another event.
5660 if (Process::ProcessEventData::GetRestartedFromEvent(event_sp.get()))
Jim Inghamcfc09352012-07-27 23:57:19 +00005661 {
5662 if (log)
Jim Ingham0161b492013-02-09 01:29:05 +00005663 {
5664 log->Printf ("Process::RunThreadPlan(): Got a stop and restart, so we'll continue waiting.");
5665 }
5666 keep_going = true;
5667 do_resume = false;
5668 handle_running_event = true;
Jim Inghamcfc09352012-07-27 23:57:19 +00005669 }
5670 else
5671 {
Jim Ingham0161b492013-02-09 01:29:05 +00005672 StopInfoSP stop_info_sp (thread_sp->GetStopInfo ());
5673 StopReason stop_reason = eStopReasonInvalid;
5674 if (stop_info_sp)
5675 stop_reason = stop_info_sp->GetStopReason();
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005676
Jim Ingham0161b492013-02-09 01:29:05 +00005677 // FIXME: We only check if the stop reason is plan complete, should we make sure that
5678 // it is OUR plan that is complete?
5679 if (stop_reason == eStopReasonPlanComplete)
Jim Ingham184e9812013-01-15 02:47:48 +00005680 {
5681 if (log)
Jim Ingham0161b492013-02-09 01:29:05 +00005682 log->PutCString ("Process::RunThreadPlan(): execution completed successfully.");
Jim Inghamc60963c2015-10-12 19:11:03 +00005683
5684 // Restore the plan state so it will get reported as intended when we are done.
5685 thread_plan_restorer.Clean();
5686
Jim Ingham8646d3c2014-05-05 02:47:44 +00005687 return_value = eExpressionCompleted;
Jim Ingham184e9812013-01-15 02:47:48 +00005688 }
5689 else
5690 {
Jim Ingham0161b492013-02-09 01:29:05 +00005691 // Something restarted the target, so just wait for it to stop for real.
Jim Ingham184e9812013-01-15 02:47:48 +00005692 if (stop_reason == eStopReasonBreakpoint)
Jim Ingham0161b492013-02-09 01:29:05 +00005693 {
5694 if (log)
5695 log->Printf ("Process::RunThreadPlan() stopped for breakpoint: %s.", stop_info_sp->GetDescription());
Jim Ingham8646d3c2014-05-05 02:47:44 +00005696 return_value = eExpressionHitBreakpoint;
Jim Ingham6fbc48b2013-11-07 00:11:47 +00005697 if (!options.DoesIgnoreBreakpoints())
Sean Callanan4b388c92013-07-30 19:54:09 +00005698 {
Jim Inghamc60963c2015-10-12 19:11:03 +00005699 // Restore the plan state and then force Private to false. We are
5700 // going to stop because of this plan so we need it to become a public
5701 // plan or it won't report correctly when we continue to its termination
5702 // later on.
5703 thread_plan_restorer.Clean();
5704 if (thread_plan_sp)
5705 thread_plan_sp->SetPrivate(false);
Sean Callanan4b388c92013-07-30 19:54:09 +00005706 event_to_broadcast_sp = event_sp;
5707 }
Jim Ingham0161b492013-02-09 01:29:05 +00005708 }
Jim Ingham184e9812013-01-15 02:47:48 +00005709 else
Jim Ingham0161b492013-02-09 01:29:05 +00005710 {
5711 if (log)
5712 log->PutCString ("Process::RunThreadPlan(): thread plan didn't successfully complete.");
Jim Ingham6fbc48b2013-11-07 00:11:47 +00005713 if (!options.DoesUnwindOnError())
Sean Callanan4b388c92013-07-30 19:54:09 +00005714 event_to_broadcast_sp = event_sp;
Jim Ingham8646d3c2014-05-05 02:47:44 +00005715 return_value = eExpressionInterrupted;
Jim Ingham0161b492013-02-09 01:29:05 +00005716 }
Jim Ingham184e9812013-01-15 02:47:48 +00005717 }
Jim Inghamcfc09352012-07-27 23:57:19 +00005718 }
Sean Callanana46ec452012-07-11 21:31:24 +00005719 }
Jim Inghamcfc09352012-07-27 23:57:19 +00005720 }
5721 break;
Sean Callanana46ec452012-07-11 21:31:24 +00005722
Jim Inghamcfc09352012-07-27 23:57:19 +00005723 case lldb::eStateRunning:
Jim Ingham0161b492013-02-09 01:29:05 +00005724 // This shouldn't really happen, but sometimes we do get two running events without an
5725 // intervening stop, and in that case we should just go back to waiting for the stop.
Jim Inghamcfc09352012-07-27 23:57:19 +00005726 do_resume = false;
5727 keep_going = true;
Jim Ingham184e9812013-01-15 02:47:48 +00005728 handle_running_event = false;
Jim Inghamcfc09352012-07-27 23:57:19 +00005729 break;
Sean Callanana46ec452012-07-11 21:31:24 +00005730
Jim Inghamcfc09352012-07-27 23:57:19 +00005731 default:
5732 if (log)
5733 log->Printf("Process::RunThreadPlan(): execution stopped with unexpected state: %s.", StateAsCString(stop_state));
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005734
Jim Inghamcfc09352012-07-27 23:57:19 +00005735 if (stop_state == eStateExited)
5736 event_to_broadcast_sp = event_sp;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005737
Sean Callananbf154da2012-08-08 17:35:10 +00005738 errors.Printf ("Execution stopped with unexpected state.\n");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005739 return_value = eExpressionInterrupted;
Jim Inghamcfc09352012-07-27 23:57:19 +00005740 break;
5741 }
Sean Callanana46ec452012-07-11 21:31:24 +00005742 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005743
Sean Callanana46ec452012-07-11 21:31:24 +00005744 if (keep_going)
5745 continue;
5746 else
5747 break;
5748 }
5749 else
5750 {
5751 if (log)
5752 log->PutCString ("Process::RunThreadPlan(): got_event was true, but the event pointer was null. How odd...");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005753 return_value = eExpressionInterrupted;
Sean Callanana46ec452012-07-11 21:31:24 +00005754 break;
5755 }
5756 }
5757 else
5758 {
5759 // If we didn't get an event that means we've timed out...
5760 // We will interrupt the process here. Depending on what we were asked to do we will
5761 // either exit, or try with all threads running for the same timeout.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005762
Sean Callanana46ec452012-07-11 21:31:24 +00005763 if (log) {
Jim Ingham6fbc48b2013-11-07 00:11:47 +00005764 if (options.GetTryAllThreads())
Sean Callanana46ec452012-07-11 21:31:24 +00005765 {
Jim Ingham0161b492013-02-09 01:29:05 +00005766 if (before_first_timeout)
Jim Inghamfe1c3422014-04-16 02:24:48 +00005767 {
5768 if (timeout_usec != 0)
5769 {
Jim Inghamfe1c3422014-04-16 02:24:48 +00005770 log->Printf ("Process::RunThreadPlan(): Running function with one thread timeout timed out, "
Jim Inghamfd95f892014-04-22 01:41:52 +00005771 "running for %" PRIu32 " usec with all threads enabled.",
5772 all_threads_timeout_usec);
Jim Inghamfe1c3422014-04-16 02:24:48 +00005773 }
5774 else
5775 {
5776 log->Printf ("Process::RunThreadPlan(): Running function with one thread timeout timed out, "
Ed Mastee61c7b02014-04-29 17:48:06 +00005777 "running forever with all threads enabled.");
Jim Inghamfe1c3422014-04-16 02:24:48 +00005778 }
5779 }
Sean Callanana46ec452012-07-11 21:31:24 +00005780 else
5781 log->Printf ("Process::RunThreadPlan(): Restarting function with all threads enabled "
Jason Molenda6a8658a2013-10-27 02:32:23 +00005782 "and timeout: %u timed out, abandoning execution.",
Jim Ingham35e1bda2012-10-16 21:41:58 +00005783 timeout_usec);
Sean Callanana46ec452012-07-11 21:31:24 +00005784 }
5785 else
Jason Molenda6a8658a2013-10-27 02:32:23 +00005786 log->Printf ("Process::RunThreadPlan(): Running function with timeout: %u timed out, "
Jim Ingham35e1bda2012-10-16 21:41:58 +00005787 "abandoning execution.",
5788 timeout_usec);
Sean Callanana46ec452012-07-11 21:31:24 +00005789 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005790
Jim Ingham0161b492013-02-09 01:29:05 +00005791 // It is possible that between the time we issued the Halt, and we get around to calling Halt the target
5792 // could have stopped. That's fine, Halt will figure that out and send the appropriate Stopped event.
5793 // BUT it is also possible that we stopped & restarted (e.g. hit a signal with "stop" set to false.) In
5794 // that case, we'll get the stopped & restarted event, and we should go back to waiting for the Halt's
5795 // stopped event. That's what this while loop does.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005796
Jim Ingham0161b492013-02-09 01:29:05 +00005797 bool back_to_top = true;
5798 uint32_t try_halt_again = 0;
5799 bool do_halt = true;
5800 const uint32_t num_retries = 5;
5801 while (try_halt_again < num_retries)
Sean Callanana46ec452012-07-11 21:31:24 +00005802 {
Jim Ingham0161b492013-02-09 01:29:05 +00005803 Error halt_error;
5804 if (do_halt)
5805 {
5806 if (log)
5807 log->Printf ("Process::RunThreadPlan(): Running Halt.");
Pavel Labath19da1f12015-12-07 12:36:52 +00005808 const bool clear_thread_plans = false;
5809 const bool use_run_lock = false;
5810 Halt(clear_thread_plans, use_run_lock);
Jim Ingham0161b492013-02-09 01:29:05 +00005811 }
5812 if (halt_error.Success())
5813 {
5814 if (log)
5815 log->PutCString ("Process::RunThreadPlan(): Halt succeeded.");
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005816
Jim Ingham0161b492013-02-09 01:29:05 +00005817 real_timeout = TimeValue::Now();
5818 real_timeout.OffsetWithMicroSeconds(500000);
5819
5820 got_event = listener.WaitForEvent(&real_timeout, event_sp);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005821
Jim Ingham0161b492013-02-09 01:29:05 +00005822 if (got_event)
Sean Callanana46ec452012-07-11 21:31:24 +00005823 {
Jim Ingham0161b492013-02-09 01:29:05 +00005824 stop_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
5825 if (log)
Sean Callanana46ec452012-07-11 21:31:24 +00005826 {
Jim Ingham0161b492013-02-09 01:29:05 +00005827 log->Printf ("Process::RunThreadPlan(): Stopped with event: %s", StateAsCString(stop_state));
5828 if (stop_state == lldb::eStateStopped
5829 && Process::ProcessEventData::GetInterruptedFromEvent(event_sp.get()))
5830 log->PutCString (" Event was the Halt interruption event.");
Sean Callanana46ec452012-07-11 21:31:24 +00005831 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005832
Jim Ingham0161b492013-02-09 01:29:05 +00005833 if (stop_state == lldb::eStateStopped)
Sean Callanana46ec452012-07-11 21:31:24 +00005834 {
Jim Ingham0161b492013-02-09 01:29:05 +00005835 // Between the time we initiated the Halt and the time we delivered it, the process could have
5836 // already finished its job. Check that here:
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005837
Jim Ingham0161b492013-02-09 01:29:05 +00005838 if (thread->IsThreadPlanDone (thread_plan_sp.get()))
5839 {
5840 if (log)
5841 log->PutCString ("Process::RunThreadPlan(): Even though we timed out, the call plan was done. "
5842 "Exiting wait loop.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005843 return_value = eExpressionCompleted;
Jim Ingham0161b492013-02-09 01:29:05 +00005844 back_to_top = false;
5845 break;
5846 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005847
Jim Ingham0161b492013-02-09 01:29:05 +00005848 if (Process::ProcessEventData::GetRestartedFromEvent(event_sp.get()))
5849 {
5850 if (log)
5851 log->PutCString ("Process::RunThreadPlan(): Went to halt but got a restarted event, there must be an un-restarted stopped event so try again... "
5852 "Exiting wait loop.");
5853 try_halt_again++;
5854 do_halt = false;
5855 continue;
5856 }
Sean Callanana46ec452012-07-11 21:31:24 +00005857
Jim Ingham6fbc48b2013-11-07 00:11:47 +00005858 if (!options.GetTryAllThreads())
Jim Ingham0161b492013-02-09 01:29:05 +00005859 {
5860 if (log)
5861 log->PutCString ("Process::RunThreadPlan(): try_all_threads was false, we stopped so now we're quitting.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005862 return_value = eExpressionInterrupted;
Jim Ingham0161b492013-02-09 01:29:05 +00005863 back_to_top = false;
5864 break;
5865 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005866
Jim Ingham0161b492013-02-09 01:29:05 +00005867 if (before_first_timeout)
5868 {
5869 // Set all the other threads to run, and return to the top of the loop, which will continue;
5870 before_first_timeout = false;
5871 thread_plan_sp->SetStopOthers (false);
5872 if (log)
5873 log->PutCString ("Process::RunThreadPlan(): about to resume.");
Sean Callanana46ec452012-07-11 21:31:24 +00005874
Jim Ingham0161b492013-02-09 01:29:05 +00005875 back_to_top = true;
5876 break;
5877 }
5878 else
5879 {
5880 // Running all threads failed, so return Interrupted.
5881 if (log)
5882 log->PutCString("Process::RunThreadPlan(): running all threads timed out.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005883 return_value = eExpressionInterrupted;
Jim Ingham0161b492013-02-09 01:29:05 +00005884 back_to_top = false;
5885 break;
5886 }
Sean Callanana46ec452012-07-11 21:31:24 +00005887 }
5888 }
5889 else
Jim Ingham0161b492013-02-09 01:29:05 +00005890 { if (log)
5891 log->PutCString("Process::RunThreadPlan(): halt said it succeeded, but I got no event. "
5892 "I'm getting out of here passing Interrupted.");
Jim Ingham8646d3c2014-05-05 02:47:44 +00005893 return_value = eExpressionInterrupted;
Jim Ingham0161b492013-02-09 01:29:05 +00005894 back_to_top = false;
5895 break;
Sean Callanana46ec452012-07-11 21:31:24 +00005896 }
5897 }
Jim Ingham0161b492013-02-09 01:29:05 +00005898 else
5899 {
5900 try_halt_again++;
5901 continue;
5902 }
Sean Callanana46ec452012-07-11 21:31:24 +00005903 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005904
Jim Ingham0161b492013-02-09 01:29:05 +00005905 if (!back_to_top || try_halt_again > num_retries)
5906 break;
5907 else
5908 continue;
Sean Callanana46ec452012-07-11 21:31:24 +00005909 }
Sean Callanana46ec452012-07-11 21:31:24 +00005910 } // END WAIT LOOP
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005911
Sean Callanana46ec452012-07-11 21:31:24 +00005912 // If we had to start up a temporary private state thread to run this thread plan, shut it down now.
Zachary Turneracee96a2014-09-23 18:32:09 +00005913 if (backup_private_state_thread.IsJoinable())
Sean Callanana46ec452012-07-11 21:31:24 +00005914 {
5915 StopPrivateStateThread();
5916 Error error;
5917 m_private_state_thread = backup_private_state_thread;
Sean Callanan9a028512012-08-09 00:50:26 +00005918 if (stopper_base_plan_sp)
Sean Callanana46ec452012-07-11 21:31:24 +00005919 {
5920 thread->DiscardThreadPlansUpToPlan(stopper_base_plan_sp);
5921 }
Jason Molenda76513fd2014-10-15 23:39:31 +00005922 if (old_state != eStateInvalid)
5923 m_public_state.SetValueNoLock(old_state);
Sean Callanana46ec452012-07-11 21:31:24 +00005924 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005925
Jim Inghamc60963c2015-10-12 19:11:03 +00005926 if (return_value != eExpressionCompleted && log)
5927 {
5928 // Print a backtrace into the log so we can figure out where we are:
5929 StreamString s;
5930 s.PutCString("Thread state after unsuccessful completion: \n");
5931 thread->GetStackFrameStatus (s,
5932 0,
5933 UINT32_MAX,
5934 true,
5935 UINT32_MAX);
5936 log->PutCString(s.GetData());
5937
5938 }
Jim Ingham184e9812013-01-15 02:47:48 +00005939 // Restore the thread state if we are going to discard the plan execution. There are three cases where this
5940 // could happen:
5941 // 1) The execution successfully completed
5942 // 2) We hit a breakpoint, and ignore_breakpoints was true
5943 // 3) We got some other error, and discard_on_error was true
Jim Ingham8646d3c2014-05-05 02:47:44 +00005944 bool should_unwind = (return_value == eExpressionInterrupted && options.DoesUnwindOnError())
5945 || (return_value == eExpressionHitBreakpoint && options.DoesIgnoreBreakpoints());
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005946
Jim Ingham8646d3c2014-05-05 02:47:44 +00005947 if (return_value == eExpressionCompleted
Jim Ingham184e9812013-01-15 02:47:48 +00005948 || should_unwind)
Jim Ingham8559a352012-11-26 23:52:18 +00005949 {
5950 thread_plan_sp->RestoreThreadState();
5951 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005952
Sean Callanana46ec452012-07-11 21:31:24 +00005953 // Now do some processing on the results of the run:
Jim Ingham8646d3c2014-05-05 02:47:44 +00005954 if (return_value == eExpressionInterrupted || return_value == eExpressionHitBreakpoint)
Sean Callanana46ec452012-07-11 21:31:24 +00005955 {
5956 if (log)
5957 {
5958 StreamString s;
5959 if (event_sp)
5960 event_sp->Dump (&s);
5961 else
5962 {
5963 log->PutCString ("Process::RunThreadPlan(): Stop event that interrupted us is NULL.");
5964 }
5965
5966 StreamString ts;
5967
5968 const char *event_explanation = NULL;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005969
Sean Callanana46ec452012-07-11 21:31:24 +00005970 do
5971 {
Jim Inghamcfc09352012-07-27 23:57:19 +00005972 if (!event_sp)
Sean Callanana46ec452012-07-11 21:31:24 +00005973 {
Jim Inghamcfc09352012-07-27 23:57:19 +00005974 event_explanation = "<no event>";
Sean Callanana46ec452012-07-11 21:31:24 +00005975 break;
5976 }
Jim Inghamcfc09352012-07-27 23:57:19 +00005977 else if (event_sp->GetType() == eBroadcastBitInterrupt)
Sean Callanana46ec452012-07-11 21:31:24 +00005978 {
Jim Inghamcfc09352012-07-27 23:57:19 +00005979 event_explanation = "<user interrupt>";
Sean Callanana46ec452012-07-11 21:31:24 +00005980 break;
5981 }
Jim Inghamcfc09352012-07-27 23:57:19 +00005982 else
Sean Callanana46ec452012-07-11 21:31:24 +00005983 {
Jim Inghamcfc09352012-07-27 23:57:19 +00005984 const Process::ProcessEventData *event_data = Process::ProcessEventData::GetEventDataFromEvent (event_sp.get());
5985
5986 if (!event_data)
Sean Callanana46ec452012-07-11 21:31:24 +00005987 {
Jim Inghamcfc09352012-07-27 23:57:19 +00005988 event_explanation = "<no event data>";
5989 break;
Sean Callanana46ec452012-07-11 21:31:24 +00005990 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005991
Jim Inghamcfc09352012-07-27 23:57:19 +00005992 Process *process = event_data->GetProcessSP().get();
5993
5994 if (!process)
Sean Callanana46ec452012-07-11 21:31:24 +00005995 {
Jim Inghamcfc09352012-07-27 23:57:19 +00005996 event_explanation = "<no process>";
5997 break;
Sean Callanana46ec452012-07-11 21:31:24 +00005998 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00005999
Jim Inghamcfc09352012-07-27 23:57:19 +00006000 ThreadList &thread_list = process->GetThreadList();
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006001
Jim Inghamcfc09352012-07-27 23:57:19 +00006002 uint32_t num_threads = thread_list.GetSize();
6003 uint32_t thread_index;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006004
Jim Inghamcfc09352012-07-27 23:57:19 +00006005 ts.Printf("<%u threads> ", num_threads);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006006
Jim Inghamcfc09352012-07-27 23:57:19 +00006007 for (thread_index = 0;
6008 thread_index < num_threads;
6009 ++thread_index)
6010 {
6011 Thread *thread = thread_list.GetThreadAtIndex(thread_index).get();
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006012
Jim Inghamcfc09352012-07-27 23:57:19 +00006013 if (!thread)
6014 {
6015 ts.Printf("<?> ");
6016 continue;
6017 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006018
Daniel Malead01b2952012-11-29 21:49:15 +00006019 ts.Printf("<0x%4.4" PRIx64 " ", thread->GetID());
Jim Inghamcfc09352012-07-27 23:57:19 +00006020 RegisterContext *register_context = thread->GetRegisterContext().get();
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006021
Jim Inghamcfc09352012-07-27 23:57:19 +00006022 if (register_context)
Daniel Malead01b2952012-11-29 21:49:15 +00006023 ts.Printf("[ip 0x%" PRIx64 "] ", register_context->GetPC());
Jim Inghamcfc09352012-07-27 23:57:19 +00006024 else
6025 ts.Printf("[ip unknown] ");
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006026
Jim Inghamc60963c2015-10-12 19:11:03 +00006027 // Show the private stop info here, the public stop info will be from the last natural stop.
6028 lldb::StopInfoSP stop_info_sp = thread->GetPrivateStopInfo();
Jim Inghamcfc09352012-07-27 23:57:19 +00006029 if (stop_info_sp)
6030 {
6031 const char *stop_desc = stop_info_sp->GetDescription();
6032 if (stop_desc)
6033 ts.PutCString (stop_desc);
6034 }
6035 ts.Printf(">");
6036 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006037
Jim Inghamcfc09352012-07-27 23:57:19 +00006038 event_explanation = ts.GetData();
Sean Callanana46ec452012-07-11 21:31:24 +00006039 }
Sean Callanana46ec452012-07-11 21:31:24 +00006040 } while (0);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006041
Jim Inghamcfc09352012-07-27 23:57:19 +00006042 if (event_explanation)
6043 log->Printf("Process::RunThreadPlan(): execution interrupted: %s %s", s.GetData(), event_explanation);
Sean Callanana46ec452012-07-11 21:31:24 +00006044 else
Jim Inghamcfc09352012-07-27 23:57:19 +00006045 log->Printf("Process::RunThreadPlan(): execution interrupted: %s", s.GetData());
6046 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006047
Jim Inghame4483cf2013-09-27 01:13:01 +00006048 if (should_unwind)
Jim Inghamcfc09352012-07-27 23:57:19 +00006049 {
6050 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006051 log->Printf ("Process::RunThreadPlan: ExecutionInterrupted - discarding thread plans up to %p.",
6052 static_cast<void*>(thread_plan_sp.get()));
Jim Inghamcfc09352012-07-27 23:57:19 +00006053 thread->DiscardThreadPlansUpToPlan (thread_plan_sp);
Jim Inghamcfc09352012-07-27 23:57:19 +00006054 }
6055 else
6056 {
6057 if (log)
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006058 log->Printf ("Process::RunThreadPlan: ExecutionInterrupted - for plan: %p not discarding.",
6059 static_cast<void*>(thread_plan_sp.get()));
Sean Callanana46ec452012-07-11 21:31:24 +00006060 }
6061 }
Jim Ingham8646d3c2014-05-05 02:47:44 +00006062 else if (return_value == eExpressionSetupError)
Sean Callanana46ec452012-07-11 21:31:24 +00006063 {
6064 if (log)
6065 log->PutCString("Process::RunThreadPlan(): execution set up error.");
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006066
Jim Ingham6fbc48b2013-11-07 00:11:47 +00006067 if (options.DoesUnwindOnError())
Jim Ingham0f16e732011-02-08 05:20:59 +00006068 {
Greg Claytonc14ee322011-09-22 04:58:26 +00006069 thread->DiscardThreadPlansUpToPlan (thread_plan_sp);
Jim Ingham0f16e732011-02-08 05:20:59 +00006070 }
Jim Inghamf48169b2010-11-30 02:22:11 +00006071 }
6072 else
6073 {
Sean Callanana46ec452012-07-11 21:31:24 +00006074 if (thread->IsThreadPlanDone (thread_plan_sp.get()))
Jim Inghamf48169b2010-11-30 02:22:11 +00006075 {
Jim Ingham0f16e732011-02-08 05:20:59 +00006076 if (log)
Sean Callanana46ec452012-07-11 21:31:24 +00006077 log->PutCString("Process::RunThreadPlan(): thread plan is done");
Jim Ingham8646d3c2014-05-05 02:47:44 +00006078 return_value = eExpressionCompleted;
Sean Callanana46ec452012-07-11 21:31:24 +00006079 }
6080 else if (thread->WasThreadPlanDiscarded (thread_plan_sp.get()))
6081 {
6082 if (log)
6083 log->PutCString("Process::RunThreadPlan(): thread plan was discarded");
Jim Ingham8646d3c2014-05-05 02:47:44 +00006084 return_value = eExpressionDiscarded;
Sean Callanana46ec452012-07-11 21:31:24 +00006085 }
6086 else
6087 {
6088 if (log)
6089 log->PutCString("Process::RunThreadPlan(): thread plan stopped in mid course");
Jim Ingham6fbc48b2013-11-07 00:11:47 +00006090 if (options.DoesUnwindOnError() && thread_plan_sp)
Sean Callanana46ec452012-07-11 21:31:24 +00006091 {
6092 if (log)
Jim Ingham184e9812013-01-15 02:47:48 +00006093 log->PutCString("Process::RunThreadPlan(): discarding thread plan 'cause unwind_on_error is set.");
Sean Callanana46ec452012-07-11 21:31:24 +00006094 thread->DiscardThreadPlansUpToPlan (thread_plan_sp);
Sean Callanana46ec452012-07-11 21:31:24 +00006095 }
6096 }
6097 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006098
Sean Callanana46ec452012-07-11 21:31:24 +00006099 // Thread we ran the function in may have gone away because we ran the target
6100 // Check that it's still there, and if it is put it back in the context. Also restore the
6101 // frame in the context if it is still present.
6102 thread = GetThreadList().FindThreadByIndexID(thread_idx_id, true).get();
6103 if (thread)
6104 {
6105 exe_ctx.SetFrameSP (thread->GetFrameWithStackID (ctx_frame_id));
6106 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006107
Sean Callanana46ec452012-07-11 21:31:24 +00006108 // Also restore the current process'es selected frame & thread, since this function calling may
6109 // be done behind the user's back.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006110
Sean Callanana46ec452012-07-11 21:31:24 +00006111 if (selected_tid != LLDB_INVALID_THREAD_ID)
6112 {
6113 if (GetThreadList().SetSelectedThreadByIndexID (selected_tid) && selected_stack_id.IsValid())
6114 {
6115 // We were able to restore the selected thread, now restore the frame:
Daniel Maleaa012d3a2013-07-31 20:21:20 +00006116 Mutex::Locker lock(GetThreadList().GetMutex());
Jason Molendab57e4a12013-11-04 09:33:30 +00006117 StackFrameSP old_frame_sp = GetThreadList().GetSelectedThread()->GetFrameWithStackID(selected_stack_id);
Sean Callanana46ec452012-07-11 21:31:24 +00006118 if (old_frame_sp)
6119 GetThreadList().GetSelectedThread()->SetSelectedFrame(old_frame_sp.get());
Jim Inghamf48169b2010-11-30 02:22:11 +00006120 }
Jim Inghamf48169b2010-11-30 02:22:11 +00006121 }
6122 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006123
Sean Callanana46ec452012-07-11 21:31:24 +00006124 // If the process exited during the run of the thread plan, notify everyone.
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006125
Sean Callanana46ec452012-07-11 21:31:24 +00006126 if (event_to_broadcast_sp)
Jim Inghamf48169b2010-11-30 02:22:11 +00006127 {
Sean Callanana46ec452012-07-11 21:31:24 +00006128 if (log)
6129 log->PutCString("Process::RunThreadPlan(): rebroadcasting event.");
6130 BroadcastEvent(event_to_broadcast_sp);
Jim Inghamf48169b2010-11-30 02:22:11 +00006131 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00006132
Jim Inghamf48169b2010-11-30 02:22:11 +00006133 return return_value;
6134}
6135
6136const char *
Jim Ingham1624a2d2014-05-05 02:26:40 +00006137Process::ExecutionResultAsCString (ExpressionResults result)
Jim Inghamf48169b2010-11-30 02:22:11 +00006138{
6139 const char *result_name;
6140
6141 switch (result)
6142 {
Jim Ingham8646d3c2014-05-05 02:47:44 +00006143 case eExpressionCompleted:
6144 result_name = "eExpressionCompleted";
Jim Inghamf48169b2010-11-30 02:22:11 +00006145 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00006146 case eExpressionDiscarded:
6147 result_name = "eExpressionDiscarded";
Jim Inghamf48169b2010-11-30 02:22:11 +00006148 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00006149 case eExpressionInterrupted:
6150 result_name = "eExpressionInterrupted";
Jim Inghamf48169b2010-11-30 02:22:11 +00006151 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00006152 case eExpressionHitBreakpoint:
6153 result_name = "eExpressionHitBreakpoint";
Jim Ingham184e9812013-01-15 02:47:48 +00006154 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00006155 case eExpressionSetupError:
6156 result_name = "eExpressionSetupError";
Jim Inghamf48169b2010-11-30 02:22:11 +00006157 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00006158 case eExpressionParseError:
6159 result_name = "eExpressionParseError";
Jim Ingham1624a2d2014-05-05 02:26:40 +00006160 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00006161 case eExpressionResultUnavailable:
6162 result_name = "eExpressionResultUnavailable";
Jim Ingham1624a2d2014-05-05 02:26:40 +00006163 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00006164 case eExpressionTimedOut:
6165 result_name = "eExpressionTimedOut";
Jim Inghamf48169b2010-11-30 02:22:11 +00006166 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00006167 case eExpressionStoppedForDebug:
6168 result_name = "eExpressionStoppedForDebug";
Jim Ingham6fbc48b2013-11-07 00:11:47 +00006169 break;
Jim Inghamf48169b2010-11-30 02:22:11 +00006170 }
6171 return result_name;
6172}
6173
Greg Clayton7260f622011-04-18 08:33:37 +00006174void
6175Process::GetStatus (Stream &strm)
6176{
6177 const StateType state = GetState();
Greg Clayton2637f822011-11-17 01:23:07 +00006178 if (StateIsStoppedState(state, false))
Greg Clayton7260f622011-04-18 08:33:37 +00006179 {
6180 if (state == eStateExited)
6181 {
6182 int exit_status = GetExitStatus();
6183 const char *exit_description = GetExitDescription();
Daniel Malead01b2952012-11-29 21:49:15 +00006184 strm.Printf ("Process %" PRIu64 " exited with status = %i (0x%8.8x) %s\n",
Greg Clayton7260f622011-04-18 08:33:37 +00006185 GetID(),
6186 exit_status,
6187 exit_status,
6188 exit_description ? exit_description : "");
6189 }
6190 else
6191 {
6192 if (state == eStateConnected)
6193 strm.Printf ("Connected to remote target.\n");
6194 else
Daniel Malead01b2952012-11-29 21:49:15 +00006195 strm.Printf ("Process %" PRIu64 " %s\n", GetID(), StateAsCString (state));
Greg Clayton7260f622011-04-18 08:33:37 +00006196 }
6197 }
6198 else
6199 {
Daniel Malead01b2952012-11-29 21:49:15 +00006200 strm.Printf ("Process %" PRIu64 " is running.\n", GetID());
Greg Clayton7260f622011-04-18 08:33:37 +00006201 }
6202}
6203
6204size_t
6205Process::GetThreadStatus (Stream &strm,
6206 bool only_threads_with_stop_reason,
6207 uint32_t start_frame,
6208 uint32_t num_frames,
6209 uint32_t num_frames_with_source)
6210{
6211 size_t num_thread_infos_dumped = 0;
6212
Jim Ingham4a65fb12014-03-07 11:20:03 +00006213 // You can't hold the thread list lock while calling Thread::GetStatus. That very well might run code (e.g. if we need it
6214 // to get return values or arguments.) For that to work the process has to be able to acquire it. So instead copy the thread
6215 // ID's, and look them up one by one:
6216
6217 uint32_t num_threads;
Greg Clayton332e8b12015-01-13 21:13:08 +00006218 std::vector<lldb::tid_t> thread_id_array;
Jim Ingham4a65fb12014-03-07 11:20:03 +00006219 //Scope for thread list locker;
6220 {
6221 Mutex::Locker locker (GetThreadList().GetMutex());
6222 ThreadList &curr_thread_list = GetThreadList();
6223 num_threads = curr_thread_list.GetSize();
6224 uint32_t idx;
Greg Clayton332e8b12015-01-13 21:13:08 +00006225 thread_id_array.resize(num_threads);
Jim Ingham4a65fb12014-03-07 11:20:03 +00006226 for (idx = 0; idx < num_threads; ++idx)
Greg Clayton332e8b12015-01-13 21:13:08 +00006227 thread_id_array[idx] = curr_thread_list.GetThreadAtIndex(idx)->GetID();
Jim Ingham4a65fb12014-03-07 11:20:03 +00006228 }
6229
Greg Clayton7260f622011-04-18 08:33:37 +00006230 for (uint32_t i = 0; i < num_threads; i++)
6231 {
Greg Clayton332e8b12015-01-13 21:13:08 +00006232 ThreadSP thread_sp(GetThreadList().FindThreadByID(thread_id_array[i]));
Jim Ingham4a65fb12014-03-07 11:20:03 +00006233 if (thread_sp)
Greg Clayton7260f622011-04-18 08:33:37 +00006234 {
6235 if (only_threads_with_stop_reason)
6236 {
Jim Ingham4a65fb12014-03-07 11:20:03 +00006237 StopInfoSP stop_info_sp = thread_sp->GetStopInfo();
Jim Ingham5d88a062012-10-16 00:09:33 +00006238 if (stop_info_sp.get() == NULL || !stop_info_sp->IsValid())
Greg Clayton7260f622011-04-18 08:33:37 +00006239 continue;
6240 }
Jim Ingham4a65fb12014-03-07 11:20:03 +00006241 thread_sp->GetStatus (strm,
Greg Clayton7260f622011-04-18 08:33:37 +00006242 start_frame,
6243 num_frames,
6244 num_frames_with_source);
6245 ++num_thread_infos_dumped;
6246 }
Jim Ingham4a65fb12014-03-07 11:20:03 +00006247 else
6248 {
6249 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_PROCESS));
6250 if (log)
6251 log->Printf("Process::GetThreadStatus - thread 0x" PRIu64 " vanished while running Thread::GetStatus.");
Jim Ingham4a65fb12014-03-07 11:20:03 +00006252 }
Greg Clayton7260f622011-04-18 08:33:37 +00006253 }
6254 return num_thread_infos_dumped;
6255}
6256
Greg Claytona9f40ad2012-02-22 04:37:26 +00006257void
6258Process::AddInvalidMemoryRegion (const LoadRange &region)
6259{
6260 m_memory_cache.AddInvalidRange(region.GetRangeBase(), region.GetByteSize());
6261}
6262
6263bool
6264Process::RemoveInvalidMemoryRange (const LoadRange &region)
6265{
6266 return m_memory_cache.RemoveInvalidRange(region.GetRangeBase(), region.GetByteSize());
6267}
6268
Jim Ingham372787f2012-04-07 00:00:41 +00006269void
6270Process::AddPreResumeAction (PreResumeActionCallback callback, void *baton)
6271{
6272 m_pre_resume_actions.push_back(PreResumeCallbackAndBaton (callback, baton));
6273}
6274
6275bool
6276Process::RunPreResumeActions ()
6277{
6278 bool result = true;
6279 while (!m_pre_resume_actions.empty())
6280 {
6281 struct PreResumeCallbackAndBaton action = m_pre_resume_actions.back();
6282 m_pre_resume_actions.pop_back();
6283 bool this_result = action.callback (action.baton);
Jason Molenda55710932014-11-17 20:10:15 +00006284 if (result == true)
6285 result = this_result;
Jim Ingham372787f2012-04-07 00:00:41 +00006286 }
6287 return result;
6288}
6289
6290void
6291Process::ClearPreResumeActions ()
6292{
6293 m_pre_resume_actions.clear();
6294}
Greg Claytona9f40ad2012-02-22 04:37:26 +00006295
Zachary Turner93749ab2015-03-03 21:51:25 +00006296ProcessRunLock &
6297Process::GetRunLock()
6298{
6299 if (m_private_state_thread.EqualsThread(Host::GetCurrentThread()))
6300 return m_private_run_lock;
6301 else
6302 return m_public_run_lock;
6303}
6304
Greg Claytonfa559e52012-05-18 02:38:05 +00006305void
6306Process::Flush ()
6307{
6308 m_thread_list.Flush();
Jason Molenda5e8dce42013-12-13 00:29:16 +00006309 m_extended_thread_list.Flush();
6310 m_extended_thread_stop_id = 0;
6311 m_queue_list.Clear();
6312 m_queue_list_stop_id = 0;
Greg Claytonfa559e52012-05-18 02:38:05 +00006313}
Greg Clayton90ba8112012-12-05 00:16:59 +00006314
6315void
6316Process::DidExec ()
6317{
Todd Fiala76e0fc92014-08-27 22:58:26 +00006318 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
6319 if (log)
6320 log->Printf ("Process::%s()", __FUNCTION__);
6321
Greg Clayton90ba8112012-12-05 00:16:59 +00006322 Target &target = GetTarget();
6323 target.CleanupProcess ();
Greg Claytonb35db632013-11-09 00:03:31 +00006324 target.ClearModules(false);
Greg Clayton90ba8112012-12-05 00:16:59 +00006325 m_dynamic_checkers_ap.reset();
6326 m_abi_sp.reset();
Jason Molendaeef51062013-11-05 03:57:19 +00006327 m_system_runtime_ap.reset();
Greg Clayton90ba8112012-12-05 00:16:59 +00006328 m_os_ap.reset();
Greg Clayton15fc2be2013-05-21 01:00:52 +00006329 m_dyld_ap.reset();
Andrew MacPherson17220c12014-03-05 10:12:43 +00006330 m_jit_loaders_ap.reset();
Greg Clayton90ba8112012-12-05 00:16:59 +00006331 m_image_tokens.clear();
6332 m_allocated_memory_cache.Clear();
6333 m_language_runtimes.clear();
Kuba Breckaafdf8422014-10-10 23:43:03 +00006334 m_instrumentation_runtimes.clear();
Greg Clayton15fc2be2013-05-21 01:00:52 +00006335 m_thread_list.DiscardThreadPlans();
Greg Clayton15fc2be2013-05-21 01:00:52 +00006336 m_memory_cache.Clear(true);
Greg Claytona97c4d22014-12-09 23:31:02 +00006337 m_stop_info_override_callback = NULL;
Greg Clayton90ba8112012-12-05 00:16:59 +00006338 DoDidExec();
6339 CompleteAttach ();
Greg Clayton095eeaa2013-11-05 23:28:00 +00006340 // Flush the process (threads and all stack frames) after running CompleteAttach()
6341 // in case the dynamic loader loaded things in new locations.
6342 Flush();
Greg Claytonb35db632013-11-09 00:03:31 +00006343
6344 // After we figure out what was loaded/unloaded in CompleteAttach,
6345 // we need to let the target know so it can do any cleanup it needs to.
6346 target.DidExec();
Greg Clayton90ba8112012-12-05 00:16:59 +00006347}
Greg Clayton095eeaa2013-11-05 23:28:00 +00006348
Jim Ingham1460e4b2014-01-10 23:46:59 +00006349addr_t
6350Process::ResolveIndirectFunction(const Address *address, Error &error)
6351{
6352 if (address == nullptr)
6353 {
Jean-Daniel Dupasef37711f2014-02-08 20:22:05 +00006354 error.SetErrorString("Invalid address argument");
Jim Ingham1460e4b2014-01-10 23:46:59 +00006355 return LLDB_INVALID_ADDRESS;
6356 }
6357
6358 addr_t function_addr = LLDB_INVALID_ADDRESS;
6359
6360 addr_t addr = address->GetLoadAddress(&GetTarget());
6361 std::map<addr_t,addr_t>::const_iterator iter = m_resolved_indirect_addresses.find(addr);
6362 if (iter != m_resolved_indirect_addresses.end())
6363 {
6364 function_addr = (*iter).second;
6365 }
6366 else
6367 {
6368 if (!InferiorCall(this, address, function_addr))
6369 {
6370 Symbol *symbol = address->CalculateSymbolContextSymbol();
6371 error.SetErrorStringWithFormat ("Unable to call resolver for indirect function %s",
6372 symbol ? symbol->GetName().AsCString() : "<UNKNOWN>");
6373 function_addr = LLDB_INVALID_ADDRESS;
6374 }
6375 else
6376 {
6377 m_resolved_indirect_addresses.insert(std::pair<addr_t, addr_t>(addr, function_addr));
6378 }
6379 }
6380 return function_addr;
6381}
6382
Andrew MacPhersoneb4d0602014-03-13 09:37:02 +00006383void
6384Process::ModulesDidLoad (ModuleList &module_list)
6385{
Kuba Breckaafdf8422014-10-10 23:43:03 +00006386 SystemRuntime *sys_runtime = GetSystemRuntime();
6387 if (sys_runtime)
6388 {
6389 sys_runtime->ModulesDidLoad (module_list);
6390 }
Andrew MacPhersoneb4d0602014-03-13 09:37:02 +00006391
Kuba Breckaafdf8422014-10-10 23:43:03 +00006392 GetJITLoaders().ModulesDidLoad (module_list);
6393
6394 // Give runtimes a chance to be created.
6395 InstrumentationRuntime::ModulesDidLoad(module_list, this, m_instrumentation_runtimes);
6396
6397 // Tell runtimes about new modules.
6398 for (auto pos = m_instrumentation_runtimes.begin(); pos != m_instrumentation_runtimes.end(); ++pos)
6399 {
6400 InstrumentationRuntimeSP runtime = pos->second;
6401 runtime->ModulesDidLoad(module_list);
6402 }
6403
Greg Clayton35ca64b2015-04-16 17:13:34 +00006404 // Let any language runtimes we have already created know
6405 // about the modules that loaded.
6406
6407 // Iterate over a copy of this language runtime list in case
6408 // the language runtime ModulesDidLoad somehow causes the language
6409 // riuntime to be unloaded.
6410 LanguageRuntimeCollection language_runtimes(m_language_runtimes);
6411 for (const auto &pair: language_runtimes)
6412 {
6413 // We must check language_runtime_sp to make sure it is not
6414 // NULL as we might cache the fact that we didn't have a
6415 // language runtime for a language.
6416 LanguageRuntimeSP language_runtime_sp = pair.second;
6417 if (language_runtime_sp)
6418 language_runtime_sp->ModulesDidLoad(module_list);
6419 }
Ryan Brown65d4d5c2015-09-16 21:20:44 +00006420
6421 LoadOperatingSystemPlugin(false);
Andrew MacPhersoneb4d0602014-03-13 09:37:02 +00006422}
Kuba Breckaa51ea382014-09-06 01:33:13 +00006423
Jason Molendaef7d6412015-08-06 03:27:10 +00006424void
Sean Callanan77decf52015-12-09 01:25:01 +00006425Process::PrintWarning (uint64_t warning_type, const void *repeat_key, const char *fmt, ...)
Jason Molendaef7d6412015-08-06 03:27:10 +00006426{
6427 bool print_warning = true;
6428
6429 StreamSP stream_sp = GetTarget().GetDebugger().GetAsyncOutputStream();
6430 if (stream_sp.get() == nullptr)
6431 return;
6432 if (warning_type == eWarningsOptimization
6433 && GetWarningsOptimization() == false)
6434 {
6435 return;
6436 }
6437
6438 if (repeat_key != nullptr)
6439 {
6440 WarningsCollection::iterator it = m_warnings_issued.find (warning_type);
6441 if (it == m_warnings_issued.end())
6442 {
6443 m_warnings_issued[warning_type] = WarningsPointerSet();
6444 m_warnings_issued[warning_type].insert (repeat_key);
6445 }
6446 else
6447 {
6448 if (it->second.find (repeat_key) != it->second.end())
6449 {
6450 print_warning = false;
6451 }
6452 else
6453 {
6454 it->second.insert (repeat_key);
6455 }
6456 }
6457 }
6458
6459 if (print_warning)
6460 {
6461 va_list args;
6462 va_start (args, fmt);
6463 stream_sp->PrintfVarArg (fmt, args);
6464 va_end (args);
6465 }
6466}
6467
Jason Molenda484900b2015-08-10 07:55:25 +00006468void
6469Process::PrintWarningOptimization (const SymbolContext &sc)
6470{
6471 if (GetWarningsOptimization() == true
6472 && sc.module_sp.get()
6473 && sc.module_sp->GetFileSpec().GetFilename().IsEmpty() == false
6474 && sc.function
6475 && sc.function->GetIsOptimized() == true)
6476 {
6477 PrintWarning (Process::Warnings::eWarningsOptimization, sc.module_sp.get(), "%s was compiled with optimization - stepping may behave oddly; variables may not be available.\n", sc.module_sp->GetFileSpec().GetFilename().GetCString());
6478 }
6479}
6480
Kuba Breckaa51ea382014-09-06 01:33:13 +00006481ThreadCollectionSP
6482Process::GetHistoryThreads(lldb::addr_t addr)
6483{
6484 ThreadCollectionSP threads;
Greg Clayton35ca64b2015-04-16 17:13:34 +00006485
Kuba Breckaa51ea382014-09-06 01:33:13 +00006486 const MemoryHistorySP &memory_history = MemoryHistory::FindPlugin(shared_from_this());
6487
6488 if (! memory_history.get()) {
6489 return threads;
6490 }
6491
6492 threads.reset(new ThreadCollection(memory_history->GetHistoryThreads(addr)));
6493
6494 return threads;
6495}
Kuba Brecka63927542014-10-11 01:59:32 +00006496
6497InstrumentationRuntimeSP
6498Process::GetInstrumentationRuntime(lldb::InstrumentationRuntimeType type)
6499{
6500 InstrumentationRuntimeCollection::iterator pos;
6501 pos = m_instrumentation_runtimes.find (type);
6502 if (pos == m_instrumentation_runtimes.end())
6503 {
6504 return InstrumentationRuntimeSP();
6505 }
6506 else
6507 return (*pos).second;
6508}
Tamas Berghammer7cb18bf2015-03-24 11:15:23 +00006509
6510bool
6511Process::GetModuleSpec(const FileSpec& module_file_spec,
6512 const ArchSpec& arch,
6513 ModuleSpec& module_spec)
6514{
6515 module_spec.Clear();
6516 return false;
6517}
Tamas Berghammer3cb132a2015-12-02 11:58:51 +00006518
6519size_t
6520Process::AddImageToken(lldb::addr_t image_ptr)
6521{
6522 m_image_tokens.push_back(image_ptr);
6523 return m_image_tokens.size() - 1;
6524}
6525
6526lldb::addr_t
6527Process::GetImagePtrFromToken(size_t token) const
6528{
6529 if (token < m_image_tokens.size())
6530 return m_image_tokens[token];
6531 return LLDB_INVALID_IMAGE_TOKEN;
6532}
6533
6534void
6535Process::ResetImageToken(size_t token)
6536{
6537 if (token < m_image_tokens.size())
6538 m_image_tokens[token] = LLDB_INVALID_IMAGE_TOKEN;
Enrico Granataf3129cb2015-12-03 23:53:45 +00006539}
Jason Molendafd4cea52016-01-08 21:40:11 +00006540
6541Address
6542Process::AdvanceAddressToNextBranchInstruction (Address default_stop_addr, AddressRange range_bounds)
6543{
6544 Target &target = GetTarget();
6545 DisassemblerSP disassembler_sp;
6546 InstructionList *insn_list = NULL;
6547
6548 Address retval = default_stop_addr;
6549
6550 if (target.GetUseFastStepping() == false)
6551 return retval;
6552 if (default_stop_addr.IsValid() == false)
6553 return retval;
6554
6555 ExecutionContext exe_ctx (this);
6556 const char *plugin_name = nullptr;
6557 const char *flavor = nullptr;
6558 const bool prefer_file_cache = true;
6559 disassembler_sp = Disassembler::DisassembleRange(target.GetArchitecture(),
6560 plugin_name,
6561 flavor,
6562 exe_ctx,
6563 range_bounds,
6564 prefer_file_cache);
6565 if (disassembler_sp.get())
6566 insn_list = &disassembler_sp->GetInstructionList();
6567
6568 if (insn_list == NULL)
6569 {
6570 return retval;
6571 }
6572
6573 size_t insn_offset = insn_list->GetIndexOfInstructionAtAddress (default_stop_addr);
6574 if (insn_offset == UINT32_MAX)
6575 {
6576 return retval;
6577 }
6578
6579 uint32_t branch_index = insn_list->GetIndexOfNextBranchInstruction (insn_offset, target);
6580 if (branch_index == UINT32_MAX)
6581 {
6582 return retval;
6583 }
6584
6585 if (branch_index > insn_offset)
6586 {
6587 Address next_branch_insn_address = insn_list->GetInstructionAtIndex (branch_index)->GetAddress();
6588 if (next_branch_insn_address.IsValid() && range_bounds.ContainsFileAddress (next_branch_insn_address))
6589 {
6590 retval = next_branch_insn_address;
6591 }
6592 }
6593
6594 if (disassembler_sp.get())
6595 {
6596 // FIXME: The DisassemblerLLVMC has a reference cycle and won't go away if it has any active instructions.
6597 disassembler_sp->GetInstructionList().Clear();
6598 }
6599
6600 return retval;
6601}