blob: d0b7a2b8a53375c51c3255c320ca666a7862d80c [file] [log] [blame]
Chris Lattner24943d22010-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
10#include "lldb/Target/Process.h"
11
12#include "lldb/lldb-private-log.h"
13
14#include "lldb/Breakpoint/StoppointCallbackContext.h"
15#include "lldb/Breakpoint/BreakpointLocation.h"
16#include "lldb/Core/Event.h"
Caroline Tice861efb32010-11-16 05:07:41 +000017#include "lldb/Core/ConnectionFileDescriptor.h"
Chris Lattner24943d22010-06-08 16:52:24 +000018#include "lldb/Core/Debugger.h"
Caroline Tice861efb32010-11-16 05:07:41 +000019#include "lldb/Core/InputReader.h"
Chris Lattner24943d22010-06-08 16:52:24 +000020#include "lldb/Core/Log.h"
21#include "lldb/Core/PluginManager.h"
22#include "lldb/Core/State.h"
Greg Claytonf15996e2011-04-07 22:46:35 +000023#include "lldb/Expression/ClangUserExpression.h"
Caroline Tice6e4c5ce2010-09-04 00:03:46 +000024#include "lldb/Interpreter/CommandInterpreter.h"
Chris Lattner24943d22010-06-08 16:52:24 +000025#include "lldb/Host/Host.h"
26#include "lldb/Target/ABI.h"
Greg Clayton0baa3942010-11-04 01:54:29 +000027#include "lldb/Target/DynamicLoader.h"
Greg Clayton37f962e2011-08-22 02:49:39 +000028#include "lldb/Target/OperatingSystem.h"
Jim Ingham642036f2010-09-23 02:01:19 +000029#include "lldb/Target/LanguageRuntime.h"
30#include "lldb/Target/CPPLanguageRuntime.h"
31#include "lldb/Target/ObjCLanguageRuntime.h"
Greg Claytone4b9c1f2011-03-08 22:40:15 +000032#include "lldb/Target/Platform.h"
Chris Lattner24943d22010-06-08 16:52:24 +000033#include "lldb/Target/RegisterContext.h"
Greg Clayton643ee732010-08-04 01:40:35 +000034#include "lldb/Target/StopInfo.h"
Chris Lattner24943d22010-06-08 16:52:24 +000035#include "lldb/Target/Target.h"
36#include "lldb/Target/TargetList.h"
37#include "lldb/Target/Thread.h"
38#include "lldb/Target/ThreadPlan.h"
39
40using namespace lldb;
41using namespace lldb_private;
42
Greg Clayton24bc5d92011-03-30 18:16:51 +000043void
Greg Claytonb72d0f02011-04-12 05:54:46 +000044ProcessInstanceInfo::Dump (Stream &s, Platform *platform) const
Greg Clayton24bc5d92011-03-30 18:16:51 +000045{
46 const char *cstr;
Greg Claytonff39f742011-04-01 00:29:43 +000047 if (m_pid != LLDB_INVALID_PROCESS_ID)
Greg Claytond9919d32011-12-01 23:28:38 +000048 s.Printf (" pid = %llu\n", m_pid);
Greg Claytonff39f742011-04-01 00:29:43 +000049
50 if (m_parent_pid != LLDB_INVALID_PROCESS_ID)
Greg Claytond9919d32011-12-01 23:28:38 +000051 s.Printf (" parent = %llu\n", m_parent_pid);
Greg Claytonff39f742011-04-01 00:29:43 +000052
53 if (m_executable)
54 {
55 s.Printf (" name = %s\n", m_executable.GetFilename().GetCString());
56 s.PutCString (" file = ");
57 m_executable.Dump(&s);
58 s.EOL();
59 }
Greg Claytonb72d0f02011-04-12 05:54:46 +000060 const uint32_t argc = m_arguments.GetArgumentCount();
Greg Claytonff39f742011-04-01 00:29:43 +000061 if (argc > 0)
62 {
63 for (uint32_t i=0; i<argc; i++)
64 {
Greg Claytonb72d0f02011-04-12 05:54:46 +000065 const char *arg = m_arguments.GetArgumentAtIndex(i);
Greg Claytonff39f742011-04-01 00:29:43 +000066 if (i < 10)
Greg Claytonb72d0f02011-04-12 05:54:46 +000067 s.Printf (" arg[%u] = %s\n", i, arg);
Greg Claytonff39f742011-04-01 00:29:43 +000068 else
Greg Claytonb72d0f02011-04-12 05:54:46 +000069 s.Printf ("arg[%u] = %s\n", i, arg);
Greg Claytonff39f742011-04-01 00:29:43 +000070 }
71 }
Greg Claytonb72d0f02011-04-12 05:54:46 +000072
73 const uint32_t envc = m_environment.GetArgumentCount();
74 if (envc > 0)
75 {
76 for (uint32_t i=0; i<envc; i++)
77 {
78 const char *env = m_environment.GetArgumentAtIndex(i);
79 if (i < 10)
80 s.Printf (" env[%u] = %s\n", i, env);
81 else
82 s.Printf ("env[%u] = %s\n", i, env);
83 }
84 }
85
Greg Claytonff39f742011-04-01 00:29:43 +000086 if (m_arch.IsValid())
87 s.Printf (" arch = %s\n", m_arch.GetTriple().str().c_str());
88
Greg Claytonb72d0f02011-04-12 05:54:46 +000089 if (m_uid != UINT32_MAX)
Greg Clayton24bc5d92011-03-30 18:16:51 +000090 {
Greg Claytonb72d0f02011-04-12 05:54:46 +000091 cstr = platform->GetUserName (m_uid);
92 s.Printf (" uid = %-5u (%s)\n", m_uid, cstr ? cstr : "");
Greg Clayton24bc5d92011-03-30 18:16:51 +000093 }
Greg Claytonb72d0f02011-04-12 05:54:46 +000094 if (m_gid != UINT32_MAX)
Greg Clayton24bc5d92011-03-30 18:16:51 +000095 {
Greg Claytonb72d0f02011-04-12 05:54:46 +000096 cstr = platform->GetGroupName (m_gid);
97 s.Printf (" gid = %-5u (%s)\n", m_gid, cstr ? cstr : "");
Greg Clayton24bc5d92011-03-30 18:16:51 +000098 }
Greg Claytonb72d0f02011-04-12 05:54:46 +000099 if (m_euid != UINT32_MAX)
Greg Clayton24bc5d92011-03-30 18:16:51 +0000100 {
Greg Claytonb72d0f02011-04-12 05:54:46 +0000101 cstr = platform->GetUserName (m_euid);
102 s.Printf (" euid = %-5u (%s)\n", m_euid, cstr ? cstr : "");
Greg Clayton24bc5d92011-03-30 18:16:51 +0000103 }
Greg Claytonb72d0f02011-04-12 05:54:46 +0000104 if (m_egid != UINT32_MAX)
Greg Clayton24bc5d92011-03-30 18:16:51 +0000105 {
Greg Claytonb72d0f02011-04-12 05:54:46 +0000106 cstr = platform->GetGroupName (m_egid);
107 s.Printf (" egid = %-5u (%s)\n", m_egid, cstr ? cstr : "");
Greg Clayton24bc5d92011-03-30 18:16:51 +0000108 }
109}
110
111void
Greg Claytonb72d0f02011-04-12 05:54:46 +0000112ProcessInstanceInfo::DumpTableHeader (Stream &s, Platform *platform, bool show_args, bool verbose)
Greg Clayton24bc5d92011-03-30 18:16:51 +0000113{
Greg Claytonb72d0f02011-04-12 05:54:46 +0000114 const char *label;
115 if (show_args || verbose)
116 label = "ARGUMENTS";
117 else
118 label = "NAME";
119
Greg Claytonff39f742011-04-01 00:29:43 +0000120 if (verbose)
121 {
Greg Claytonb72d0f02011-04-12 05:54:46 +0000122 s.Printf ("PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE %s\n", label);
Greg Claytonff39f742011-04-01 00:29:43 +0000123 s.PutCString ("====== ====== ========== ========== ========== ========== ======================== ============================\n");
124 }
125 else
126 {
Greg Claytonb72d0f02011-04-12 05:54:46 +0000127 s.Printf ("PID PARENT USER ARCH %s\n", label);
Greg Claytonff39f742011-04-01 00:29:43 +0000128 s.PutCString ("====== ====== ========== ======= ============================\n");
129 }
Greg Clayton24bc5d92011-03-30 18:16:51 +0000130}
131
132void
Greg Claytonb72d0f02011-04-12 05:54:46 +0000133ProcessInstanceInfo::DumpAsTableRow (Stream &s, Platform *platform, bool show_args, bool verbose) const
Greg Clayton24bc5d92011-03-30 18:16:51 +0000134{
135 if (m_pid != LLDB_INVALID_PROCESS_ID)
136 {
137 const char *cstr;
Greg Claytond9919d32011-12-01 23:28:38 +0000138 s.Printf ("%-6llu %-6llu ", m_pid, m_parent_pid);
Greg Clayton24bc5d92011-03-30 18:16:51 +0000139
Greg Clayton24bc5d92011-03-30 18:16:51 +0000140
Greg Claytonff39f742011-04-01 00:29:43 +0000141 if (verbose)
142 {
Greg Claytonb72d0f02011-04-12 05:54:46 +0000143 cstr = platform->GetUserName (m_uid);
Greg Claytonff39f742011-04-01 00:29:43 +0000144 if (cstr && cstr[0]) // Watch for empty string that indicates lookup failed
145 s.Printf ("%-10s ", cstr);
146 else
Greg Claytonb72d0f02011-04-12 05:54:46 +0000147 s.Printf ("%-10u ", m_uid);
Greg Clayton24bc5d92011-03-30 18:16:51 +0000148
Greg Claytonb72d0f02011-04-12 05:54:46 +0000149 cstr = platform->GetGroupName (m_gid);
Greg Claytonff39f742011-04-01 00:29:43 +0000150 if (cstr && cstr[0]) // Watch for empty string that indicates lookup failed
151 s.Printf ("%-10s ", cstr);
152 else
Greg Claytonb72d0f02011-04-12 05:54:46 +0000153 s.Printf ("%-10u ", m_gid);
Greg Clayton24bc5d92011-03-30 18:16:51 +0000154
Greg Claytonb72d0f02011-04-12 05:54:46 +0000155 cstr = platform->GetUserName (m_euid);
Greg Claytonff39f742011-04-01 00:29:43 +0000156 if (cstr && cstr[0]) // Watch for empty string that indicates lookup failed
157 s.Printf ("%-10s ", cstr);
158 else
Greg Claytonb72d0f02011-04-12 05:54:46 +0000159 s.Printf ("%-10u ", m_euid);
Greg Claytonff39f742011-04-01 00:29:43 +0000160
Greg Claytonb72d0f02011-04-12 05:54:46 +0000161 cstr = platform->GetGroupName (m_egid);
Greg Claytonff39f742011-04-01 00:29:43 +0000162 if (cstr && cstr[0]) // Watch for empty string that indicates lookup failed
163 s.Printf ("%-10s ", cstr);
164 else
Greg Claytonb72d0f02011-04-12 05:54:46 +0000165 s.Printf ("%-10u ", m_egid);
Greg Claytonff39f742011-04-01 00:29:43 +0000166 s.Printf ("%-24s ", m_arch.IsValid() ? m_arch.GetTriple().str().c_str() : "");
167 }
168 else
169 {
Jason Molenda7e5fa7f2011-09-20 21:44:10 +0000170 s.Printf ("%-10s %-7d %s ",
Greg Claytonb72d0f02011-04-12 05:54:46 +0000171 platform->GetUserName (m_euid),
Greg Claytonff39f742011-04-01 00:29:43 +0000172 (int)m_arch.GetTriple().getArchName().size(),
173 m_arch.GetTriple().getArchName().data());
174 }
175
Greg Claytonb72d0f02011-04-12 05:54:46 +0000176 if (verbose || show_args)
Greg Claytonff39f742011-04-01 00:29:43 +0000177 {
Greg Claytonb72d0f02011-04-12 05:54:46 +0000178 const uint32_t argc = m_arguments.GetArgumentCount();
Greg Claytonff39f742011-04-01 00:29:43 +0000179 if (argc > 0)
180 {
181 for (uint32_t i=0; i<argc; i++)
182 {
183 if (i > 0)
184 s.PutChar (' ');
Greg Claytonb72d0f02011-04-12 05:54:46 +0000185 s.PutCString (m_arguments.GetArgumentAtIndex(i));
Greg Claytonff39f742011-04-01 00:29:43 +0000186 }
187 }
188 }
189 else
190 {
191 s.PutCString (GetName());
192 }
193
194 s.EOL();
Greg Clayton24bc5d92011-03-30 18:16:51 +0000195 }
196}
197
Greg Claytonb72d0f02011-04-12 05:54:46 +0000198
199void
Greg Clayton36bc5ea2011-11-03 21:22:33 +0000200ProcessInfo::SetArguments (char const **argv,
201 bool first_arg_is_executable,
202 bool first_arg_is_executable_and_argument)
203{
204 m_arguments.SetArguments (argv);
205
206 // Is the first argument the executable?
207 if (first_arg_is_executable)
208 {
209 const char *first_arg = m_arguments.GetArgumentAtIndex (0);
210 if (first_arg)
211 {
212 // Yes the first argument is an executable, set it as the executable
213 // in the launch options. Don't resolve the file path as the path
214 // could be a remote platform path
215 const bool resolve = false;
216 m_executable.SetFile(first_arg, resolve);
217
218 // If argument zero is an executable and shouldn't be included
219 // in the arguments, remove it from the front of the arguments
220 if (first_arg_is_executable_and_argument == false)
221 m_arguments.DeleteArgumentAtIndex (0);
222 }
223 }
224}
225void
226ProcessInfo::SetArguments (const Args& args,
227 bool first_arg_is_executable,
228 bool first_arg_is_executable_and_argument)
Greg Claytonb72d0f02011-04-12 05:54:46 +0000229{
230 // Copy all arguments
231 m_arguments = args;
232
233 // Is the first argument the executable?
234 if (first_arg_is_executable)
235 {
Greg Clayton36bc5ea2011-11-03 21:22:33 +0000236 const char *first_arg = m_arguments.GetArgumentAtIndex (0);
Greg Claytonb72d0f02011-04-12 05:54:46 +0000237 if (first_arg)
238 {
239 // Yes the first argument is an executable, set it as the executable
240 // in the launch options. Don't resolve the file path as the path
241 // could be a remote platform path
242 const bool resolve = false;
243 m_executable.SetFile(first_arg, resolve);
244
245 // If argument zero is an executable and shouldn't be included
246 // in the arguments, remove it from the front of the arguments
247 if (first_arg_is_executable_and_argument == false)
248 m_arguments.DeleteArgumentAtIndex (0);
249 }
250 }
251}
252
Greg Claytonabb33022011-11-08 02:43:13 +0000253void
Greg Clayton464c6162011-11-17 22:14:31 +0000254ProcessLaunchInfo::FinalizeFileActions (Target *target, bool default_to_use_pty)
Greg Claytonabb33022011-11-08 02:43:13 +0000255{
256 // If notthing was specified, then check the process for any default
257 // settings that were set with "settings set"
258 if (m_file_actions.empty())
259 {
Greg Claytonabb33022011-11-08 02:43:13 +0000260 if (m_flags.Test(eLaunchFlagDisableSTDIO))
261 {
262 AppendSuppressFileAction (STDERR_FILENO, true , true );
263 AppendSuppressFileAction (STDIN_FILENO , true , false);
264 AppendSuppressFileAction (STDOUT_FILENO, false, true );
265 }
266 else
267 {
268 // Check for any values that might have gotten set with any of:
269 // (lldb) settings set target.input-path
270 // (lldb) settings set target.output-path
271 // (lldb) settings set target.error-path
Greg Clayton464c6162011-11-17 22:14:31 +0000272 const char *in_path = NULL;
273 const char *out_path = NULL;
274 const char *err_path = NULL;
Greg Claytonabb33022011-11-08 02:43:13 +0000275 if (target)
276 {
Greg Clayton464c6162011-11-17 22:14:31 +0000277 in_path = target->GetStandardErrorPath();
278 out_path = target->GetStandardInputPath();
279 err_path = target->GetStandardOutputPath();
280 }
281
282 if (default_to_use_pty && (!in_path && !out_path && !err_path))
283 {
284 if (m_pty.OpenFirstAvailableMaster (O_RDWR|O_NOCTTY, NULL, 0))
Greg Claytonabb33022011-11-08 02:43:13 +0000285 {
Greg Clayton464c6162011-11-17 22:14:31 +0000286 in_path = out_path = err_path = m_pty.GetSlaveName (NULL, 0);
Greg Claytonabb33022011-11-08 02:43:13 +0000287 }
288 }
289
Greg Clayton464c6162011-11-17 22:14:31 +0000290 if (in_path)
291 AppendOpenFileAction(STDERR_FILENO, in_path, true, true);
292
293 if (out_path)
294 AppendOpenFileAction(STDIN_FILENO, out_path, true, false);
295
296 if (err_path)
297 AppendOpenFileAction(STDOUT_FILENO, err_path, false, true);
Greg Claytonabb33022011-11-08 02:43:13 +0000298 }
299 }
300}
301
Greg Clayton527154d2011-11-15 03:53:30 +0000302
303bool
304ProcessLaunchInfo::ConvertArgumentsForLaunchingInShell (Error &error, bool localhost)
305{
306 error.Clear();
307
308 if (GetFlags().Test (eLaunchFlagLaunchInShell))
309 {
310 const char *shell_executable = GetShell();
311 if (shell_executable)
312 {
313 char shell_resolved_path[PATH_MAX];
314
315 if (localhost)
316 {
317 FileSpec shell_filespec (shell_executable, true);
318
319 if (!shell_filespec.Exists())
320 {
321 // Resolve the path in case we just got "bash", "sh" or "tcsh"
322 if (!shell_filespec.ResolveExecutableLocation ())
323 {
324 error.SetErrorStringWithFormat("invalid shell path '%s'", shell_executable);
325 return false;
326 }
327 }
328 shell_filespec.GetPath (shell_resolved_path, sizeof(shell_resolved_path));
329 shell_executable = shell_resolved_path;
330 }
331
332 Args shell_arguments;
333 std::string safe_arg;
334 shell_arguments.AppendArgument (shell_executable);
335 StreamString shell_command;
336 shell_arguments.AppendArgument ("-c");
337 shell_command.PutCString ("exec");
338 if (GetArchitecture().IsValid())
339 {
340 shell_command.Printf(" /usr/bin/arch -arch %s", GetArchitecture().GetArchitectureName());
341 // Set the resume count to 2:
342 // 1 - stop in shell
343 // 2 - stop in /usr/bin/arch
344 // 3 - then we will stop in our program
345 SetResumeCount(2);
346 }
347 else
348 {
349 // Set the resume count to 1:
350 // 1 - stop in shell
351 // 2 - then we will stop in our program
352 SetResumeCount(1);
353 }
354
355 const char **argv = GetArguments().GetConstArgumentVector ();
356 if (argv)
357 {
358 for (size_t i=0; argv[i] != NULL; ++i)
359 {
360 const char *arg = Args::GetShellSafeArgument (argv[i], safe_arg);
361 shell_command.Printf(" %s", arg);
362 }
363 }
364 shell_arguments.AppendArgument (shell_command.GetString().c_str());
365
366 m_executable.SetFile(shell_executable, false);
367 m_arguments = shell_arguments;
368 return true;
369 }
370 else
371 {
372 error.SetErrorString ("invalid shell path");
373 }
374 }
375 else
376 {
377 error.SetErrorString ("not launching in shell");
378 }
379 return false;
380}
381
382
Greg Clayton24bc5d92011-03-30 18:16:51 +0000383bool
Greg Claytonb72d0f02011-04-12 05:54:46 +0000384ProcessLaunchInfo::FileAction::Open (int fd, const char *path, bool read, bool write)
385{
386 if ((read || write) && fd >= 0 && path && path[0])
387 {
388 m_action = eFileActionOpen;
389 m_fd = fd;
390 if (read && write)
Greg Clayton527154d2011-11-15 03:53:30 +0000391 m_arg = O_NOCTTY | O_CREAT | O_RDWR;
Greg Claytonb72d0f02011-04-12 05:54:46 +0000392 else if (read)
Greg Clayton527154d2011-11-15 03:53:30 +0000393 m_arg = O_NOCTTY | O_RDONLY;
Greg Claytonb72d0f02011-04-12 05:54:46 +0000394 else
Greg Clayton527154d2011-11-15 03:53:30 +0000395 m_arg = O_NOCTTY | O_CREAT | O_WRONLY;
Greg Claytonb72d0f02011-04-12 05:54:46 +0000396 m_path.assign (path);
397 return true;
398 }
399 else
400 {
401 Clear();
402 }
403 return false;
404}
405
406bool
407ProcessLaunchInfo::FileAction::Close (int fd)
408{
409 Clear();
410 if (fd >= 0)
411 {
412 m_action = eFileActionClose;
413 m_fd = fd;
414 }
415 return m_fd >= 0;
416}
417
418
419bool
420ProcessLaunchInfo::FileAction::Duplicate (int fd, int dup_fd)
421{
422 Clear();
423 if (fd >= 0 && dup_fd >= 0)
424 {
425 m_action = eFileActionDuplicate;
426 m_fd = fd;
427 m_arg = dup_fd;
428 }
429 return m_fd >= 0;
430}
431
432
433
434bool
435ProcessLaunchInfo::FileAction::AddPosixSpawnFileAction (posix_spawn_file_actions_t *file_actions,
436 const FileAction *info,
437 Log *log,
438 Error& error)
439{
440 if (info == NULL)
441 return false;
442
443 switch (info->m_action)
444 {
445 case eFileActionNone:
446 error.Clear();
447 break;
448
449 case eFileActionClose:
450 if (info->m_fd == -1)
451 error.SetErrorString ("invalid fd for posix_spawn_file_actions_addclose(...)");
452 else
453 {
454 error.SetError (::posix_spawn_file_actions_addclose (file_actions, info->m_fd),
455 eErrorTypePOSIX);
456 if (log && (error.Fail() || log))
457 error.PutToLog(log, "posix_spawn_file_actions_addclose (action=%p, fd=%i)",
458 file_actions, info->m_fd);
459 }
460 break;
461
462 case eFileActionDuplicate:
463 if (info->m_fd == -1)
464 error.SetErrorString ("invalid fd for posix_spawn_file_actions_adddup2(...)");
465 else if (info->m_arg == -1)
466 error.SetErrorString ("invalid duplicate fd for posix_spawn_file_actions_adddup2(...)");
467 else
468 {
469 error.SetError (::posix_spawn_file_actions_adddup2 (file_actions, info->m_fd, info->m_arg),
470 eErrorTypePOSIX);
471 if (log && (error.Fail() || log))
472 error.PutToLog(log, "posix_spawn_file_actions_adddup2 (action=%p, fd=%i, dup_fd=%i)",
473 file_actions, info->m_fd, info->m_arg);
474 }
475 break;
476
477 case eFileActionOpen:
478 if (info->m_fd == -1)
479 error.SetErrorString ("invalid fd in posix_spawn_file_actions_addopen(...)");
480 else
481 {
482 int oflag = info->m_arg;
Greg Clayton527154d2011-11-15 03:53:30 +0000483
Greg Claytonb72d0f02011-04-12 05:54:46 +0000484 mode_t mode = 0;
485
Greg Clayton527154d2011-11-15 03:53:30 +0000486 if (oflag & O_CREAT)
487 mode = 0640;
488
Greg Claytonb72d0f02011-04-12 05:54:46 +0000489 error.SetError (::posix_spawn_file_actions_addopen (file_actions,
490 info->m_fd,
491 info->m_path.c_str(),
492 oflag,
493 mode),
494 eErrorTypePOSIX);
495 if (error.Fail() || log)
496 error.PutToLog(log,
497 "posix_spawn_file_actions_addopen (action=%p, fd=%i, path='%s', oflag=%i, mode=%i)",
498 file_actions, info->m_fd, info->m_path.c_str(), oflag, mode);
499 }
500 break;
501
502 default:
503 error.SetErrorStringWithFormat ("invalid file action: %i", info->m_action);
504 break;
505 }
506 return error.Success();
507}
508
509Error
Greg Clayton143fcc32011-04-13 00:18:08 +0000510ProcessLaunchCommandOptions::SetOptionValue (uint32_t option_idx, const char *option_arg)
Greg Claytonb72d0f02011-04-12 05:54:46 +0000511{
512 Error error;
513 char short_option = (char) m_getopt_table[option_idx].val;
514
515 switch (short_option)
516 {
517 case 's': // Stop at program entry point
518 launch_info.GetFlags().Set (eLaunchFlagStopAtEntry);
519 break;
520
521 case 'e': // STDERR for read + write
522 {
523 ProcessLaunchInfo::FileAction action;
524 if (action.Open(STDERR_FILENO, option_arg, true, true))
525 launch_info.AppendFileAction (action);
526 }
527 break;
528
529 case 'i': // STDIN for read only
530 {
531 ProcessLaunchInfo::FileAction action;
532 if (action.Open(STDIN_FILENO, option_arg, true, false))
533 launch_info.AppendFileAction (action);
534 }
535 break;
536
537 case 'o': // Open STDOUT for write only
538 {
539 ProcessLaunchInfo::FileAction action;
540 if (action.Open(STDOUT_FILENO, option_arg, false, true))
541 launch_info.AppendFileAction (action);
542 }
543 break;
544
545 case 'p': // Process plug-in name
546 launch_info.SetProcessPluginName (option_arg);
547 break;
548
549 case 'n': // Disable STDIO
550 {
551 ProcessLaunchInfo::FileAction action;
552 if (action.Open(STDERR_FILENO, "/dev/null", true, true))
553 launch_info.AppendFileAction (action);
554 if (action.Open(STDOUT_FILENO, "/dev/null", false, true))
555 launch_info.AppendFileAction (action);
556 if (action.Open(STDIN_FILENO, "/dev/null", true, false))
557 launch_info.AppendFileAction (action);
558 }
559 break;
560
561 case 'w':
562 launch_info.SetWorkingDirectory (option_arg);
563 break;
564
565 case 't': // Open process in new terminal window
566 launch_info.GetFlags().Set (eLaunchFlagLaunchInTTY);
567 break;
568
569 case 'a':
570 launch_info.GetArchitecture().SetTriple (option_arg,
571 m_interpreter.GetPlatform(true).get());
572 break;
573
574 case 'A':
575 launch_info.GetFlags().Set (eLaunchFlagDisableASLR);
576 break;
577
Greg Clayton36bc5ea2011-11-03 21:22:33 +0000578 case 'c':
Greg Clayton527154d2011-11-15 03:53:30 +0000579 if (option_arg && option_arg[0])
580 launch_info.SetShell (option_arg);
581 else
582 launch_info.SetShell ("/bin/bash");
Greg Clayton36bc5ea2011-11-03 21:22:33 +0000583 break;
584
Greg Claytonb72d0f02011-04-12 05:54:46 +0000585 case 'v':
586 launch_info.GetEnvironmentEntries().AppendArgument(option_arg);
587 break;
588
589 default:
Greg Clayton9c236732011-10-26 00:56:27 +0000590 error.SetErrorStringWithFormat("unrecognized short option character '%c'", short_option);
Greg Claytonb72d0f02011-04-12 05:54:46 +0000591 break;
592
593 }
594 return error;
595}
596
597OptionDefinition
598ProcessLaunchCommandOptions::g_option_table[] =
599{
600{ LLDB_OPT_SET_ALL, false, "stop-at-entry", 's', no_argument, NULL, 0, eArgTypeNone, "Stop at the entry point of the program when launching a process."},
601{ LLDB_OPT_SET_ALL, false, "disable-aslr", 'A', no_argument, NULL, 0, eArgTypeNone, "Disable address space layout randomization when launching a process."},
602{ LLDB_OPT_SET_ALL, false, "plugin", 'p', required_argument, NULL, 0, eArgTypePlugin, "Name of the process plugin you want to use."},
603{ LLDB_OPT_SET_ALL, false, "working-dir", 'w', required_argument, NULL, 0, eArgTypePath, "Set the current working directory to <path> when running the inferior."},
604{ LLDB_OPT_SET_ALL, false, "arch", 'a', required_argument, NULL, 0, eArgTypeArchitecture, "Set the architecture for the process to launch when ambiguous."},
605{ LLDB_OPT_SET_ALL, false, "environment", 'v', required_argument, NULL, 0, eArgTypeNone, "Specify an environment variable name/value stirng (--environement NAME=VALUE). Can be specified multiple times for subsequent environment entries."},
Greg Clayton527154d2011-11-15 03:53:30 +0000606{ LLDB_OPT_SET_ALL, false, "shell", 'c', optional_argument, NULL, 0, eArgTypePath, "Run the process in a shell (not supported on all platforms)."},
Greg Claytonb72d0f02011-04-12 05:54:46 +0000607
608{ LLDB_OPT_SET_1 , false, "stdin", 'i', required_argument, NULL, 0, eArgTypePath, "Redirect stdin for the process to <path>."},
609{ LLDB_OPT_SET_1 , false, "stdout", 'o', required_argument, NULL, 0, eArgTypePath, "Redirect stdout for the process to <path>."},
610{ LLDB_OPT_SET_1 , false, "stderr", 'e', required_argument, NULL, 0, eArgTypePath, "Redirect stderr for the process to <path>."},
611
612{ LLDB_OPT_SET_2 , false, "tty", 't', no_argument, NULL, 0, eArgTypeNone, "Start the process in a terminal (not supported on all platforms)."},
613
614{ LLDB_OPT_SET_3 , false, "no-stdio", 'n', no_argument, NULL, 0, eArgTypeNone, "Do not set up for terminal I/O to go to running process."},
615
616{ 0 , false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
617};
618
619
620
621bool
622ProcessInstanceInfoMatch::NameMatches (const char *process_name) const
Greg Clayton24bc5d92011-03-30 18:16:51 +0000623{
624 if (m_name_match_type == eNameMatchIgnore || process_name == NULL)
625 return true;
626 const char *match_name = m_match_info.GetName();
627 if (!match_name)
628 return true;
629
630 return lldb_private::NameMatches (process_name, m_name_match_type, match_name);
631}
632
633bool
Greg Claytonb72d0f02011-04-12 05:54:46 +0000634ProcessInstanceInfoMatch::Matches (const ProcessInstanceInfo &proc_info) const
Greg Clayton24bc5d92011-03-30 18:16:51 +0000635{
636 if (!NameMatches (proc_info.GetName()))
637 return false;
638
639 if (m_match_info.ProcessIDIsValid() &&
640 m_match_info.GetProcessID() != proc_info.GetProcessID())
641 return false;
642
643 if (m_match_info.ParentProcessIDIsValid() &&
644 m_match_info.GetParentProcessID() != proc_info.GetParentProcessID())
645 return false;
646
Greg Claytonb72d0f02011-04-12 05:54:46 +0000647 if (m_match_info.UserIDIsValid () &&
648 m_match_info.GetUserID() != proc_info.GetUserID())
Greg Clayton24bc5d92011-03-30 18:16:51 +0000649 return false;
650
Greg Claytonb72d0f02011-04-12 05:54:46 +0000651 if (m_match_info.GroupIDIsValid () &&
652 m_match_info.GetGroupID() != proc_info.GetGroupID())
Greg Clayton24bc5d92011-03-30 18:16:51 +0000653 return false;
654
655 if (m_match_info.EffectiveUserIDIsValid () &&
656 m_match_info.GetEffectiveUserID() != proc_info.GetEffectiveUserID())
657 return false;
658
659 if (m_match_info.EffectiveGroupIDIsValid () &&
660 m_match_info.GetEffectiveGroupID() != proc_info.GetEffectiveGroupID())
661 return false;
662
663 if (m_match_info.GetArchitecture().IsValid() &&
664 m_match_info.GetArchitecture() != proc_info.GetArchitecture())
665 return false;
666 return true;
667}
668
669bool
Greg Claytonb72d0f02011-04-12 05:54:46 +0000670ProcessInstanceInfoMatch::MatchAllProcesses () const
Greg Clayton24bc5d92011-03-30 18:16:51 +0000671{
672 if (m_name_match_type != eNameMatchIgnore)
673 return false;
674
675 if (m_match_info.ProcessIDIsValid())
676 return false;
677
678 if (m_match_info.ParentProcessIDIsValid())
679 return false;
680
Greg Claytonb72d0f02011-04-12 05:54:46 +0000681 if (m_match_info.UserIDIsValid ())
Greg Clayton24bc5d92011-03-30 18:16:51 +0000682 return false;
683
Greg Claytonb72d0f02011-04-12 05:54:46 +0000684 if (m_match_info.GroupIDIsValid ())
Greg Clayton24bc5d92011-03-30 18:16:51 +0000685 return false;
686
687 if (m_match_info.EffectiveUserIDIsValid ())
688 return false;
689
690 if (m_match_info.EffectiveGroupIDIsValid ())
691 return false;
692
693 if (m_match_info.GetArchitecture().IsValid())
694 return false;
695
696 if (m_match_all_users)
697 return false;
698
699 return true;
700
701}
702
703void
Greg Claytonb72d0f02011-04-12 05:54:46 +0000704ProcessInstanceInfoMatch::Clear()
Greg Clayton24bc5d92011-03-30 18:16:51 +0000705{
706 m_match_info.Clear();
707 m_name_match_type = eNameMatchIgnore;
708 m_match_all_users = false;
709}
Greg Claytonfd119992011-01-07 06:08:19 +0000710
Greg Clayton46c9a352012-02-09 06:16:32 +0000711ProcessSP
712Process::FindPlugin (Target &target, const char *plugin_name, Listener &listener, const FileSpec *crash_file_path)
Chris Lattner24943d22010-06-08 16:52:24 +0000713{
Greg Clayton46c9a352012-02-09 06:16:32 +0000714 ProcessSP process_sp;
Chris Lattner24943d22010-06-08 16:52:24 +0000715 ProcessCreateInstance create_callback = NULL;
716 if (plugin_name)
717 {
718 create_callback = PluginManager::GetProcessCreateCallbackForPluginName (plugin_name);
719 if (create_callback)
720 {
Greg Clayton46c9a352012-02-09 06:16:32 +0000721 process_sp = create_callback(target, listener, crash_file_path);
722 if (process_sp)
723 {
724 if (!process_sp->CanDebug(target, true))
725 process_sp.reset();
726 }
Chris Lattner24943d22010-06-08 16:52:24 +0000727 }
728 }
729 else
730 {
Greg Clayton54e7afa2010-07-09 20:39:50 +0000731 for (uint32_t idx = 0; (create_callback = PluginManager::GetProcessCreateCallbackAtIndex(idx)) != NULL; ++idx)
Chris Lattner24943d22010-06-08 16:52:24 +0000732 {
Greg Clayton46c9a352012-02-09 06:16:32 +0000733 process_sp = create_callback(target, listener, crash_file_path);
734 if (process_sp)
735 {
736 if (!process_sp->CanDebug(target, false))
737 process_sp.reset();
738 else
739 break;
740 }
Chris Lattner24943d22010-06-08 16:52:24 +0000741 }
742 }
Greg Clayton46c9a352012-02-09 06:16:32 +0000743 return process_sp;
Chris Lattner24943d22010-06-08 16:52:24 +0000744}
745
Jim Ingham5a15e692012-02-16 06:50:00 +0000746ConstString &
747Process::GetStaticBroadcasterClass ()
748{
749 static ConstString class_name ("lldb.process");
750 return class_name;
751}
Chris Lattner24943d22010-06-08 16:52:24 +0000752
753//----------------------------------------------------------------------
754// Process constructor
755//----------------------------------------------------------------------
756Process::Process(Target &target, Listener &listener) :
757 UserID (LLDB_INVALID_PROCESS_ID),
Jim Ingham5a15e692012-02-16 06:50:00 +0000758 Broadcaster (&(target.GetDebugger()), "lldb.process"),
Greg Clayton334d33a2012-01-30 07:41:31 +0000759 ProcessInstanceSettings (GetSettingsController()),
Chris Lattner24943d22010-06-08 16:52:24 +0000760 m_target (target),
Chris Lattner24943d22010-06-08 16:52:24 +0000761 m_public_state (eStateUnloaded),
762 m_private_state (eStateUnloaded),
Jim Ingham5a15e692012-02-16 06:50:00 +0000763 m_private_state_broadcaster (NULL, "lldb.process.internal_state_broadcaster"),
764 m_private_state_control_broadcaster (NULL, "lldb.process.internal_state_control_broadcaster"),
Chris Lattner24943d22010-06-08 16:52:24 +0000765 m_private_state_listener ("lldb.process.internal_state_listener"),
766 m_private_state_control_wait(),
767 m_private_state_thread (LLDB_INVALID_HOST_THREAD),
Jim Ingham21f37ad2011-08-09 02:12:22 +0000768 m_mod_id (),
Chris Lattner24943d22010-06-08 16:52:24 +0000769 m_thread_index_id (0),
770 m_exit_status (-1),
771 m_exit_string (),
772 m_thread_list (this),
773 m_notifications (),
Greg Clayton20d338f2010-11-18 05:57:03 +0000774 m_image_tokens (),
775 m_listener (listener),
776 m_breakpoint_site_list (),
Greg Clayton20d338f2010-11-18 05:57:03 +0000777 m_dynamic_checkers_ap (),
Caroline Tice861efb32010-11-16 05:07:41 +0000778 m_unix_signals (),
Greg Clayton20d338f2010-11-18 05:57:03 +0000779 m_abi_sp (),
Caroline Tice861efb32010-11-16 05:07:41 +0000780 m_process_input_reader (),
Greg Claytona875b642011-01-09 21:07:35 +0000781 m_stdio_communication ("process.stdio"),
Greg Clayton20d338f2010-11-18 05:57:03 +0000782 m_stdio_communication_mutex (Mutex::eMutexTypeRecursive),
Greg Claytonfd119992011-01-07 06:08:19 +0000783 m_stdout_data (),
Greg Claytonbd06ff42011-11-13 04:45:22 +0000784 m_stderr_data (),
Greg Clayton613b8732011-05-17 03:37:42 +0000785 m_memory_cache (*this),
786 m_allocated_memory_cache (*this),
Greg Claytonffa43a62011-11-17 04:46:02 +0000787 m_should_detach (false),
Sean Callanan6cf6c472011-09-20 23:01:51 +0000788 m_next_event_action_ap(),
Sean Callanan04200f62012-02-14 22:50:38 +0000789 m_can_jit(eCanJITDontKnow)
Chris Lattner24943d22010-06-08 16:52:24 +0000790{
Caroline Tice1ebef442010-09-27 00:30:10 +0000791 UpdateInstanceName();
Jim Ingham5a15e692012-02-16 06:50:00 +0000792
793 CheckInWithManager ();
Caroline Tice1ebef442010-09-27 00:30:10 +0000794
Greg Claytone005f2c2010-11-06 01:53:30 +0000795 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
Chris Lattner24943d22010-06-08 16:52:24 +0000796 if (log)
797 log->Printf ("%p Process::Process()", this);
798
Greg Clayton49ce6822010-10-31 03:01:06 +0000799 SetEventName (eBroadcastBitStateChanged, "state-changed");
800 SetEventName (eBroadcastBitInterrupt, "interrupt");
801 SetEventName (eBroadcastBitSTDOUT, "stdout-available");
802 SetEventName (eBroadcastBitSTDERR, "stderr-available");
803
Chris Lattner24943d22010-06-08 16:52:24 +0000804 listener.StartListeningForEvents (this,
805 eBroadcastBitStateChanged |
806 eBroadcastBitInterrupt |
807 eBroadcastBitSTDOUT |
808 eBroadcastBitSTDERR);
809
810 m_private_state_listener.StartListeningForEvents(&m_private_state_broadcaster,
811 eBroadcastBitStateChanged);
812
813 m_private_state_listener.StartListeningForEvents(&m_private_state_control_broadcaster,
814 eBroadcastInternalStateControlStop |
815 eBroadcastInternalStateControlPause |
816 eBroadcastInternalStateControlResume);
817}
818
819//----------------------------------------------------------------------
820// Destructor
821//----------------------------------------------------------------------
822Process::~Process()
823{
Greg Claytone005f2c2010-11-06 01:53:30 +0000824 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
Chris Lattner24943d22010-06-08 16:52:24 +0000825 if (log)
826 log->Printf ("%p Process::~Process()", this);
827 StopPrivateStateThread();
828}
829
830void
831Process::Finalize()
832{
Greg Claytonffa43a62011-11-17 04:46:02 +0000833 switch (GetPrivateState())
834 {
835 case eStateConnected:
836 case eStateAttaching:
837 case eStateLaunching:
838 case eStateStopped:
839 case eStateRunning:
840 case eStateStepping:
841 case eStateCrashed:
842 case eStateSuspended:
843 if (GetShouldDetach())
844 Detach();
845 else
846 Destroy();
847 break;
848
849 case eStateInvalid:
850 case eStateUnloaded:
851 case eStateDetached:
852 case eStateExited:
853 break;
854 }
855
Greg Clayton2f57db02011-10-01 00:45:15 +0000856 // Clear our broadcaster before we proceed with destroying
857 Broadcaster::Clear();
858
Chris Lattner24943d22010-06-08 16:52:24 +0000859 // Do any cleanup needed prior to being destructed... Subclasses
860 // that override this method should call this superclass method as well.
Jim Ingham88fa7bd2011-02-16 17:54:55 +0000861
862 // We need to destroy the loader before the derived Process class gets destroyed
863 // since it is very likely that undoing the loader will require access to the real process.
Greg Clayton182be6a2012-01-20 23:08:34 +0000864 m_dynamic_checkers_ap.reset();
865 m_abi_sp.reset();
Greg Clayton37f962e2011-08-22 02:49:39 +0000866 m_os_ap.reset();
Greg Clayton182be6a2012-01-20 23:08:34 +0000867 m_dyld_ap.reset();
Greg Clayton13d24fb2012-01-29 20:56:30 +0000868 m_thread_list.Destroy();
Greg Clayton182be6a2012-01-20 23:08:34 +0000869 std::vector<Notifications> empty_notifications;
870 m_notifications.swap(empty_notifications);
871 m_image_tokens.clear();
872 m_memory_cache.Clear();
873 m_allocated_memory_cache.Clear();
874 m_language_runtimes.clear();
875 m_next_event_action_ap.reset();
Chris Lattner24943d22010-06-08 16:52:24 +0000876}
877
878void
879Process::RegisterNotificationCallbacks (const Notifications& callbacks)
880{
881 m_notifications.push_back(callbacks);
882 if (callbacks.initialize != NULL)
883 callbacks.initialize (callbacks.baton, this);
884}
885
886bool
887Process::UnregisterNotificationCallbacks(const Notifications& callbacks)
888{
889 std::vector<Notifications>::iterator pos, end = m_notifications.end();
890 for (pos = m_notifications.begin(); pos != end; ++pos)
891 {
892 if (pos->baton == callbacks.baton &&
893 pos->initialize == callbacks.initialize &&
894 pos->process_state_changed == callbacks.process_state_changed)
895 {
896 m_notifications.erase(pos);
897 return true;
898 }
899 }
900 return false;
901}
902
903void
904Process::SynchronouslyNotifyStateChanged (StateType state)
905{
906 std::vector<Notifications>::iterator notification_pos, notification_end = m_notifications.end();
907 for (notification_pos = m_notifications.begin(); notification_pos != notification_end; ++notification_pos)
908 {
909 if (notification_pos->process_state_changed)
910 notification_pos->process_state_changed (notification_pos->baton, this, state);
911 }
912}
913
914// FIXME: We need to do some work on events before the general Listener sees them.
915// For instance if we are continuing from a breakpoint, we need to ensure that we do
916// the little "insert real insn, step & stop" trick. But we can't do that when the
917// event is delivered by the broadcaster - since that is done on the thread that is
918// waiting for new events, so if we needed more than one event for our handling, we would
919// stall. So instead we do it when we fetch the event off of the queue.
920//
921
922StateType
923Process::GetNextEvent (EventSP &event_sp)
924{
925 StateType state = eStateInvalid;
926
927 if (m_listener.GetNextEventForBroadcaster (this, event_sp) && event_sp)
928 state = Process::ProcessEventData::GetStateFromEvent (event_sp.get());
929
930 return state;
931}
932
933
934StateType
935Process::WaitForProcessToStop (const TimeValue *timeout)
936{
Jim Ingham21f37ad2011-08-09 02:12:22 +0000937 // We can't just wait for a "stopped" event, because the stopped event may have restarted the target.
938 // We have to actually check each event, and in the case of a stopped event check the restarted flag
939 // on the event.
940 EventSP event_sp;
941 StateType state = GetState();
942 // If we are exited or detached, we won't ever get back to any
943 // other valid state...
944 if (state == eStateDetached || state == eStateExited)
945 return state;
946
947 while (state != eStateInvalid)
948 {
949 state = WaitForStateChangedEvents (timeout, event_sp);
950 switch (state)
951 {
952 case eStateCrashed:
953 case eStateDetached:
954 case eStateExited:
955 case eStateUnloaded:
956 return state;
957 case eStateStopped:
958 if (Process::ProcessEventData::GetRestartedFromEvent(event_sp.get()))
959 continue;
960 else
961 return state;
962 default:
963 continue;
964 }
965 }
966 return state;
Chris Lattner24943d22010-06-08 16:52:24 +0000967}
968
969
970StateType
971Process::WaitForState
972(
973 const TimeValue *timeout,
974 const StateType *match_states, const uint32_t num_match_states
975)
976{
977 EventSP event_sp;
978 uint32_t i;
Greg Claytond8c62532010-10-07 04:19:01 +0000979 StateType state = GetState();
Chris Lattner24943d22010-06-08 16:52:24 +0000980 while (state != eStateInvalid)
981 {
Greg Claytond8c62532010-10-07 04:19:01 +0000982 // If we are exited or detached, we won't ever get back to any
983 // other valid state...
984 if (state == eStateDetached || state == eStateExited)
985 return state;
986
Chris Lattner24943d22010-06-08 16:52:24 +0000987 state = WaitForStateChangedEvents (timeout, event_sp);
988
989 for (i=0; i<num_match_states; ++i)
990 {
991 if (match_states[i] == state)
992 return state;
993 }
994 }
995 return state;
996}
997
Jim Ingham63e24d72010-10-11 23:53:14 +0000998bool
999Process::HijackProcessEvents (Listener *listener)
1000{
1001 if (listener != NULL)
1002 {
1003 return HijackBroadcaster(listener, eBroadcastBitStateChanged);
1004 }
1005 else
1006 return false;
1007}
1008
1009void
1010Process::RestoreProcessEvents ()
1011{
1012 RestoreBroadcaster();
1013}
1014
Jim Inghamf9f40c22011-02-08 05:20:59 +00001015bool
1016Process::HijackPrivateProcessEvents (Listener *listener)
1017{
1018 if (listener != NULL)
1019 {
1020 return m_private_state_broadcaster.HijackBroadcaster(listener, eBroadcastBitStateChanged);
1021 }
1022 else
1023 return false;
1024}
1025
1026void
1027Process::RestorePrivateProcessEvents ()
1028{
1029 m_private_state_broadcaster.RestoreBroadcaster();
1030}
1031
Chris Lattner24943d22010-06-08 16:52:24 +00001032StateType
1033Process::WaitForStateChangedEvents (const TimeValue *timeout, EventSP &event_sp)
1034{
Greg Claytone005f2c2010-11-06 01:53:30 +00001035 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner24943d22010-06-08 16:52:24 +00001036
1037 if (log)
1038 log->Printf ("Process::%s (timeout = %p, event_sp)...", __FUNCTION__, timeout);
1039
1040 StateType state = eStateInvalid;
Greg Clayton36f63a92010-10-19 03:25:40 +00001041 if (m_listener.WaitForEventForBroadcasterWithType (timeout,
1042 this,
1043 eBroadcastBitStateChanged,
1044 event_sp))
Chris Lattner24943d22010-06-08 16:52:24 +00001045 state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
1046
1047 if (log)
1048 log->Printf ("Process::%s (timeout = %p, event_sp) => %s",
1049 __FUNCTION__,
1050 timeout,
1051 StateAsCString(state));
1052 return state;
1053}
1054
1055Event *
1056Process::PeekAtStateChangedEvents ()
1057{
Greg Claytone005f2c2010-11-06 01:53:30 +00001058 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner24943d22010-06-08 16:52:24 +00001059
1060 if (log)
1061 log->Printf ("Process::%s...", __FUNCTION__);
1062
1063 Event *event_ptr;
Greg Clayton36f63a92010-10-19 03:25:40 +00001064 event_ptr = m_listener.PeekAtNextEventForBroadcasterWithType (this,
1065 eBroadcastBitStateChanged);
Chris Lattner24943d22010-06-08 16:52:24 +00001066 if (log)
1067 {
1068 if (event_ptr)
1069 {
1070 log->Printf ("Process::%s (event_ptr) => %s",
1071 __FUNCTION__,
1072 StateAsCString(ProcessEventData::GetStateFromEvent (event_ptr)));
1073 }
1074 else
1075 {
1076 log->Printf ("Process::%s no events found",
1077 __FUNCTION__);
1078 }
1079 }
1080 return event_ptr;
1081}
1082
1083StateType
1084Process::WaitForStateChangedEventsPrivate (const TimeValue *timeout, EventSP &event_sp)
1085{
Greg Claytone005f2c2010-11-06 01:53:30 +00001086 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner24943d22010-06-08 16:52:24 +00001087
1088 if (log)
1089 log->Printf ("Process::%s (timeout = %p, event_sp)...", __FUNCTION__, timeout);
1090
1091 StateType state = eStateInvalid;
Greg Clayton72e1c782011-01-22 23:43:18 +00001092 if (m_private_state_listener.WaitForEventForBroadcasterWithType (timeout,
1093 &m_private_state_broadcaster,
1094 eBroadcastBitStateChanged,
1095 event_sp))
Chris Lattner24943d22010-06-08 16:52:24 +00001096 state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
1097
1098 // This is a bit of a hack, but when we wait here we could very well return
1099 // to the command-line, and that could disable the log, which would render the
1100 // log we got above invalid.
Chris Lattner24943d22010-06-08 16:52:24 +00001101 if (log)
Greg Clayton72e1c782011-01-22 23:43:18 +00001102 {
1103 if (state == eStateInvalid)
1104 log->Printf ("Process::%s (timeout = %p, event_sp) => TIMEOUT", __FUNCTION__, timeout);
1105 else
1106 log->Printf ("Process::%s (timeout = %p, event_sp) => %s", __FUNCTION__, timeout, StateAsCString(state));
1107 }
Chris Lattner24943d22010-06-08 16:52:24 +00001108 return state;
1109}
1110
1111bool
1112Process::WaitForEventsPrivate (const TimeValue *timeout, EventSP &event_sp, bool control_only)
1113{
Greg Claytone005f2c2010-11-06 01:53:30 +00001114 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner24943d22010-06-08 16:52:24 +00001115
1116 if (log)
1117 log->Printf ("Process::%s (timeout = %p, event_sp)...", __FUNCTION__, timeout);
1118
1119 if (control_only)
1120 return m_private_state_listener.WaitForEventForBroadcaster(timeout, &m_private_state_control_broadcaster, event_sp);
1121 else
1122 return m_private_state_listener.WaitForEvent(timeout, event_sp);
1123}
1124
1125bool
1126Process::IsRunning () const
1127{
1128 return StateIsRunningState (m_public_state.GetValue());
1129}
1130
1131int
1132Process::GetExitStatus ()
1133{
1134 if (m_public_state.GetValue() == eStateExited)
1135 return m_exit_status;
1136 return -1;
1137}
1138
Greg Clayton638351a2010-12-04 00:10:17 +00001139
Chris Lattner24943d22010-06-08 16:52:24 +00001140const char *
1141Process::GetExitDescription ()
1142{
1143 if (m_public_state.GetValue() == eStateExited && !m_exit_string.empty())
1144 return m_exit_string.c_str();
1145 return NULL;
1146}
1147
Greg Clayton72e1c782011-01-22 23:43:18 +00001148bool
Chris Lattner24943d22010-06-08 16:52:24 +00001149Process::SetExitStatus (int status, const char *cstr)
1150{
Greg Clayton68ca8232011-01-25 02:58:48 +00001151 LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STATE | LIBLLDB_LOG_PROCESS));
1152 if (log)
1153 log->Printf("Process::SetExitStatus (status=%i (0x%8.8x), description=%s%s%s)",
1154 status, status,
1155 cstr ? "\"" : "",
1156 cstr ? cstr : "NULL",
1157 cstr ? "\"" : "");
1158
Greg Clayton72e1c782011-01-22 23:43:18 +00001159 // We were already in the exited state
1160 if (m_private_state.GetValue() == eStateExited)
Greg Clayton68ca8232011-01-25 02:58:48 +00001161 {
Greg Clayton644ddfb2011-01-26 23:47:29 +00001162 if (log)
1163 log->Printf("Process::SetExitStatus () ignoring exit status because state was already set to eStateExited");
Greg Clayton72e1c782011-01-22 23:43:18 +00001164 return false;
Greg Clayton68ca8232011-01-25 02:58:48 +00001165 }
Greg Clayton72e1c782011-01-22 23:43:18 +00001166
1167 m_exit_status = status;
1168 if (cstr)
1169 m_exit_string = cstr;
1170 else
1171 m_exit_string.clear();
Chris Lattner24943d22010-06-08 16:52:24 +00001172
Greg Clayton72e1c782011-01-22 23:43:18 +00001173 DidExit ();
Greg Clayton58e844b2010-12-08 05:08:21 +00001174
Greg Clayton72e1c782011-01-22 23:43:18 +00001175 SetPrivateState (eStateExited);
1176 return true;
Chris Lattner24943d22010-06-08 16:52:24 +00001177}
1178
1179// This static callback can be used to watch for local child processes on
1180// the current host. The the child process exits, the process will be
1181// found in the global target list (we want to be completely sure that the
1182// lldb_private::Process doesn't go away before we can deliver the signal.
1183bool
Greg Clayton1c4642c2011-11-16 05:37:56 +00001184Process::SetProcessExitStatus (void *callback_baton,
1185 lldb::pid_t pid,
1186 bool exited,
1187 int signo, // Zero for no signal
1188 int exit_status // Exit value of process if signal is zero
Chris Lattner24943d22010-06-08 16:52:24 +00001189)
1190{
Greg Clayton1c4642c2011-11-16 05:37:56 +00001191 LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_PROCESS));
1192 if (log)
Greg Claytond9919d32011-12-01 23:28:38 +00001193 log->Printf ("Process::SetProcessExitStatus (baton=%p, pid=%llu, exited=%i, signal=%i, exit_status=%i)\n",
Greg Clayton1c4642c2011-11-16 05:37:56 +00001194 callback_baton,
1195 pid,
1196 exited,
1197 signo,
1198 exit_status);
1199
1200 if (exited)
Chris Lattner24943d22010-06-08 16:52:24 +00001201 {
Greg Clayton63094e02010-06-23 01:19:29 +00001202 TargetSP target_sp(Debugger::FindTargetWithProcessID (pid));
Chris Lattner24943d22010-06-08 16:52:24 +00001203 if (target_sp)
1204 {
1205 ProcessSP process_sp (target_sp->GetProcessSP());
1206 if (process_sp)
1207 {
1208 const char *signal_cstr = NULL;
1209 if (signo)
1210 signal_cstr = process_sp->GetUnixSignals().GetSignalAsCString (signo);
1211
1212 process_sp->SetExitStatus (exit_status, signal_cstr);
1213 }
1214 }
1215 return true;
1216 }
1217 return false;
1218}
1219
1220
Greg Clayton37f962e2011-08-22 02:49:39 +00001221void
1222Process::UpdateThreadListIfNeeded ()
1223{
1224 const uint32_t stop_id = GetStopID();
1225 if (m_thread_list.GetSize(false) == 0 || stop_id != m_thread_list.GetStopID())
1226 {
Greg Clayton20206082011-11-17 01:23:07 +00001227 const StateType state = GetPrivateState();
1228 if (StateIsStoppedState (state, true))
1229 {
1230 Mutex::Locker locker (m_thread_list.GetMutex ());
Greg Claytonffa43a62011-11-17 04:46:02 +00001231 // m_thread_list does have its own mutex, but we need to
1232 // hold onto the mutex between the call to UpdateThreadList(...)
1233 // and the os->UpdateThreadList(...) so it doesn't change on us
Greg Clayton20206082011-11-17 01:23:07 +00001234 ThreadList new_thread_list(this);
1235 // Always update the thread list with the protocol specific
1236 // thread list
1237 UpdateThreadList (m_thread_list, new_thread_list);
1238 OperatingSystem *os = GetOperatingSystem ();
1239 if (os)
1240 os->UpdateThreadList (m_thread_list, new_thread_list);
1241 m_thread_list.Update (new_thread_list);
1242 m_thread_list.SetStopID (stop_id);
1243 }
Greg Clayton37f962e2011-08-22 02:49:39 +00001244 }
1245}
1246
Chris Lattner24943d22010-06-08 16:52:24 +00001247uint32_t
1248Process::GetNextThreadIndexID ()
1249{
1250 return ++m_thread_index_id;
1251}
1252
1253StateType
1254Process::GetState()
1255{
1256 // If any other threads access this we will need a mutex for it
1257 return m_public_state.GetValue ();
1258}
1259
1260void
1261Process::SetPublicState (StateType new_state)
1262{
Greg Clayton68ca8232011-01-25 02:58:48 +00001263 LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STATE | LIBLLDB_LOG_PROCESS));
Chris Lattner24943d22010-06-08 16:52:24 +00001264 if (log)
1265 log->Printf("Process::SetPublicState (%s)", StateAsCString(new_state));
1266 m_public_state.SetValue (new_state);
1267}
1268
1269StateType
1270Process::GetPrivateState ()
1271{
1272 return m_private_state.GetValue();
1273}
1274
1275void
1276Process::SetPrivateState (StateType new_state)
1277{
Greg Clayton68ca8232011-01-25 02:58:48 +00001278 LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STATE | LIBLLDB_LOG_PROCESS));
Chris Lattner24943d22010-06-08 16:52:24 +00001279 bool state_changed = false;
1280
1281 if (log)
1282 log->Printf("Process::SetPrivateState (%s)", StateAsCString(new_state));
1283
1284 Mutex::Locker locker(m_private_state.GetMutex());
1285
1286 const StateType old_state = m_private_state.GetValueNoLock ();
1287 state_changed = old_state != new_state;
1288 if (state_changed)
1289 {
1290 m_private_state.SetValueNoLock (new_state);
Greg Clayton20206082011-11-17 01:23:07 +00001291 if (StateIsStoppedState(new_state, false))
Chris Lattner24943d22010-06-08 16:52:24 +00001292 {
Jim Ingham21f37ad2011-08-09 02:12:22 +00001293 m_mod_id.BumpStopID();
Greg Claytonfd119992011-01-07 06:08:19 +00001294 m_memory_cache.Clear();
Chris Lattner24943d22010-06-08 16:52:24 +00001295 if (log)
Jim Ingham21f37ad2011-08-09 02:12:22 +00001296 log->Printf("Process::SetPrivateState (%s) stop_id = %u", StateAsCString(new_state), m_mod_id.GetStopID());
Chris Lattner24943d22010-06-08 16:52:24 +00001297 }
1298 // Use our target to get a shared pointer to ourselves...
1299 m_private_state_broadcaster.BroadcastEvent (eBroadcastBitStateChanged, new ProcessEventData (GetTarget().GetProcessSP(), new_state));
1300 }
1301 else
1302 {
1303 if (log)
Jason Molenda7e5fa7f2011-09-20 21:44:10 +00001304 log->Printf("Process::SetPrivateState (%s) state didn't change. Ignoring...", StateAsCString(new_state));
Chris Lattner24943d22010-06-08 16:52:24 +00001305 }
1306}
1307
Jim Ingham0296fe72011-11-08 03:00:11 +00001308void
1309Process::SetRunningUserExpression (bool on)
1310{
1311 m_mod_id.SetRunningUserExpression (on);
1312}
1313
Chris Lattner24943d22010-06-08 16:52:24 +00001314addr_t
1315Process::GetImageInfoAddress()
1316{
1317 return LLDB_INVALID_ADDRESS;
1318}
1319
Greg Clayton0baa3942010-11-04 01:54:29 +00001320//----------------------------------------------------------------------
1321// LoadImage
1322//
1323// This function provides a default implementation that works for most
1324// unix variants. Any Process subclasses that need to do shared library
1325// loading differently should override LoadImage and UnloadImage and
1326// do what is needed.
1327//----------------------------------------------------------------------
1328uint32_t
1329Process::LoadImage (const FileSpec &image_spec, Error &error)
1330{
1331 DynamicLoader *loader = GetDynamicLoader();
1332 if (loader)
1333 {
1334 error = loader->CanLoadImage();
1335 if (error.Fail())
1336 return LLDB_INVALID_IMAGE_TOKEN;
1337 }
1338
1339 if (error.Success())
1340 {
1341 ThreadSP thread_sp(GetThreadList ().GetSelectedThread());
Greg Clayton0baa3942010-11-04 01:54:29 +00001342
1343 if (thread_sp)
1344 {
1345 StackFrameSP frame_sp (thread_sp->GetStackFrameAtIndex (0));
1346
1347 if (frame_sp)
1348 {
1349 ExecutionContext exe_ctx;
1350 frame_sp->CalculateExecutionContext (exe_ctx);
Jim Inghamea9d4262010-11-05 19:25:48 +00001351 bool unwind_on_error = true;
Greg Clayton0baa3942010-11-04 01:54:29 +00001352 StreamString expr;
1353 char path[PATH_MAX];
1354 image_spec.GetPath(path, sizeof(path));
1355 expr.Printf("dlopen (\"%s\", 2)", path);
1356 const char *prefix = "extern \"C\" void* dlopen (const char *path, int mode);\n";
Jim Ingham360f53f2010-11-30 02:22:11 +00001357 lldb::ValueObjectSP result_valobj_sp;
Sean Callanandaa6efe2011-12-21 22:22:58 +00001358 ClangUserExpression::Evaluate (exe_ctx, eExecutionPolicyAlways, lldb::eLanguageTypeUnknown, ClangUserExpression::eResultTypeAny, unwind_on_error, expr.GetData(), prefix, result_valobj_sp);
Johnny Chenb14ec342011-09-09 00:01:43 +00001359 error = result_valobj_sp->GetError();
1360 if (error.Success())
Greg Clayton0baa3942010-11-04 01:54:29 +00001361 {
1362 Scalar scalar;
Jim Inghamfa3a16a2011-03-31 00:19:25 +00001363 if (result_valobj_sp->ResolveValue (scalar))
Greg Clayton0baa3942010-11-04 01:54:29 +00001364 {
1365 addr_t image_ptr = scalar.ULongLong(LLDB_INVALID_ADDRESS);
1366 if (image_ptr != 0 && image_ptr != LLDB_INVALID_ADDRESS)
1367 {
1368 uint32_t image_token = m_image_tokens.size();
1369 m_image_tokens.push_back (image_ptr);
1370 return image_token;
1371 }
1372 }
1373 }
1374 }
1375 }
1376 }
1377 return LLDB_INVALID_IMAGE_TOKEN;
1378}
1379
1380//----------------------------------------------------------------------
1381// UnloadImage
1382//
1383// This function provides a default implementation that works for most
1384// unix variants. Any Process subclasses that need to do shared library
1385// loading differently should override LoadImage and UnloadImage and
1386// do what is needed.
1387//----------------------------------------------------------------------
1388Error
1389Process::UnloadImage (uint32_t image_token)
1390{
1391 Error error;
1392 if (image_token < m_image_tokens.size())
1393 {
1394 const addr_t image_addr = m_image_tokens[image_token];
1395 if (image_addr == LLDB_INVALID_ADDRESS)
1396 {
1397 error.SetErrorString("image already unloaded");
1398 }
1399 else
1400 {
1401 DynamicLoader *loader = GetDynamicLoader();
1402 if (loader)
1403 error = loader->CanLoadImage();
1404
1405 if (error.Success())
1406 {
1407 ThreadSP thread_sp(GetThreadList ().GetSelectedThread());
Greg Clayton0baa3942010-11-04 01:54:29 +00001408
1409 if (thread_sp)
1410 {
1411 StackFrameSP frame_sp (thread_sp->GetStackFrameAtIndex (0));
1412
1413 if (frame_sp)
1414 {
1415 ExecutionContext exe_ctx;
1416 frame_sp->CalculateExecutionContext (exe_ctx);
Jim Inghamea9d4262010-11-05 19:25:48 +00001417 bool unwind_on_error = true;
Greg Clayton0baa3942010-11-04 01:54:29 +00001418 StreamString expr;
1419 expr.Printf("dlclose ((void *)0x%llx)", image_addr);
1420 const char *prefix = "extern \"C\" int dlclose(void* handle);\n";
Jim Ingham360f53f2010-11-30 02:22:11 +00001421 lldb::ValueObjectSP result_valobj_sp;
Sean Callanandaa6efe2011-12-21 22:22:58 +00001422 ClangUserExpression::Evaluate (exe_ctx, eExecutionPolicyAlways, lldb::eLanguageTypeUnknown, ClangUserExpression::eResultTypeAny, unwind_on_error, expr.GetData(), prefix, result_valobj_sp);
Greg Clayton0baa3942010-11-04 01:54:29 +00001423 if (result_valobj_sp->GetError().Success())
1424 {
1425 Scalar scalar;
Jim Inghamfa3a16a2011-03-31 00:19:25 +00001426 if (result_valobj_sp->ResolveValue (scalar))
Greg Clayton0baa3942010-11-04 01:54:29 +00001427 {
1428 if (scalar.UInt(1))
1429 {
1430 error.SetErrorStringWithFormat("expression failed: \"%s\"", expr.GetData());
1431 }
1432 else
1433 {
1434 m_image_tokens[image_token] = LLDB_INVALID_ADDRESS;
1435 }
1436 }
1437 }
1438 else
1439 {
1440 error = result_valobj_sp->GetError();
1441 }
1442 }
1443 }
1444 }
1445 }
1446 }
1447 else
1448 {
1449 error.SetErrorString("invalid image token");
1450 }
1451 return error;
1452}
1453
Greg Clayton75906e42011-05-11 18:39:18 +00001454const lldb::ABISP &
Chris Lattner24943d22010-06-08 16:52:24 +00001455Process::GetABI()
1456{
Greg Clayton75906e42011-05-11 18:39:18 +00001457 if (!m_abi_sp)
1458 m_abi_sp = ABI::FindPlugin(m_target.GetArchitecture());
1459 return m_abi_sp;
Chris Lattner24943d22010-06-08 16:52:24 +00001460}
1461
Jim Ingham642036f2010-09-23 02:01:19 +00001462LanguageRuntime *
1463Process::GetLanguageRuntime(lldb::LanguageType language)
1464{
1465 LanguageRuntimeCollection::iterator pos;
1466 pos = m_language_runtimes.find (language);
1467 if (pos == m_language_runtimes.end())
1468 {
1469 lldb::LanguageRuntimeSP runtime(LanguageRuntime::FindPlugin(this, language));
1470
1471 m_language_runtimes[language]
1472 = runtime;
1473 return runtime.get();
1474 }
1475 else
1476 return (*pos).second.get();
1477}
1478
1479CPPLanguageRuntime *
1480Process::GetCPPLanguageRuntime ()
1481{
1482 LanguageRuntime *runtime = GetLanguageRuntime(eLanguageTypeC_plus_plus);
1483 if (runtime != NULL && runtime->GetLanguageType() == eLanguageTypeC_plus_plus)
1484 return static_cast<CPPLanguageRuntime *> (runtime);
1485 return NULL;
1486}
1487
1488ObjCLanguageRuntime *
1489Process::GetObjCLanguageRuntime ()
1490{
1491 LanguageRuntime *runtime = GetLanguageRuntime(eLanguageTypeObjC);
1492 if (runtime != NULL && runtime->GetLanguageType() == eLanguageTypeObjC)
1493 return static_cast<ObjCLanguageRuntime *> (runtime);
1494 return NULL;
1495}
1496
Chris Lattner24943d22010-06-08 16:52:24 +00001497BreakpointSiteList &
1498Process::GetBreakpointSiteList()
1499{
1500 return m_breakpoint_site_list;
1501}
1502
1503const BreakpointSiteList &
1504Process::GetBreakpointSiteList() const
1505{
1506 return m_breakpoint_site_list;
1507}
1508
1509
1510void
1511Process::DisableAllBreakpointSites ()
1512{
1513 m_breakpoint_site_list.SetEnabledForAll (false);
1514}
1515
1516Error
1517Process::ClearBreakpointSiteByID (lldb::user_id_t break_id)
1518{
1519 Error error (DisableBreakpointSiteByID (break_id));
1520
1521 if (error.Success())
1522 m_breakpoint_site_list.Remove(break_id);
1523
1524 return error;
1525}
1526
1527Error
1528Process::DisableBreakpointSiteByID (lldb::user_id_t break_id)
1529{
1530 Error error;
1531 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID (break_id);
1532 if (bp_site_sp)
1533 {
1534 if (bp_site_sp->IsEnabled())
1535 error = DisableBreakpoint (bp_site_sp.get());
1536 }
1537 else
1538 {
Greg Clayton444e35b2011-10-19 18:09:39 +00001539 error.SetErrorStringWithFormat("invalid breakpoint site ID: %llu", break_id);
Chris Lattner24943d22010-06-08 16:52:24 +00001540 }
1541
1542 return error;
1543}
1544
1545Error
1546Process::EnableBreakpointSiteByID (lldb::user_id_t break_id)
1547{
1548 Error error;
1549 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID (break_id);
1550 if (bp_site_sp)
1551 {
1552 if (!bp_site_sp->IsEnabled())
1553 error = EnableBreakpoint (bp_site_sp.get());
1554 }
1555 else
1556 {
Greg Clayton444e35b2011-10-19 18:09:39 +00001557 error.SetErrorStringWithFormat("invalid breakpoint site ID: %llu", break_id);
Chris Lattner24943d22010-06-08 16:52:24 +00001558 }
1559 return error;
1560}
1561
Stephen Wilson3fd1f362010-07-17 00:56:13 +00001562lldb::break_id_t
Greg Clayton13d24fb2012-01-29 20:56:30 +00001563Process::CreateBreakpointSite (const BreakpointLocationSP &owner, bool use_hardware)
Chris Lattner24943d22010-06-08 16:52:24 +00001564{
Greg Clayton265ab332011-05-19 18:17:41 +00001565 const addr_t load_addr = owner->GetAddress().GetOpcodeLoadAddress (&m_target);
Chris Lattner24943d22010-06-08 16:52:24 +00001566 if (load_addr != LLDB_INVALID_ADDRESS)
1567 {
1568 BreakpointSiteSP bp_site_sp;
1569
1570 // Look up this breakpoint site. If it exists, then add this new owner, otherwise
1571 // create a new breakpoint site and add it.
1572
1573 bp_site_sp = m_breakpoint_site_list.FindByAddress (load_addr);
1574
1575 if (bp_site_sp)
1576 {
1577 bp_site_sp->AddOwner (owner);
1578 owner->SetBreakpointSite (bp_site_sp);
1579 return bp_site_sp->GetID();
1580 }
1581 else
1582 {
1583 bp_site_sp.reset (new BreakpointSite (&m_breakpoint_site_list, owner, load_addr, LLDB_INVALID_THREAD_ID, use_hardware));
1584 if (bp_site_sp)
1585 {
1586 if (EnableBreakpoint (bp_site_sp.get()).Success())
1587 {
1588 owner->SetBreakpointSite (bp_site_sp);
1589 return m_breakpoint_site_list.Add (bp_site_sp);
1590 }
1591 }
1592 }
1593 }
1594 // We failed to enable the breakpoint
1595 return LLDB_INVALID_BREAK_ID;
1596
1597}
1598
1599void
1600Process::RemoveOwnerFromBreakpointSite (lldb::user_id_t owner_id, lldb::user_id_t owner_loc_id, BreakpointSiteSP &bp_site_sp)
1601{
1602 uint32_t num_owners = bp_site_sp->RemoveOwner (owner_id, owner_loc_id);
1603 if (num_owners == 0)
1604 {
1605 DisableBreakpoint(bp_site_sp.get());
1606 m_breakpoint_site_list.RemoveByAddress(bp_site_sp->GetLoadAddress());
1607 }
1608}
1609
1610
1611size_t
1612Process::RemoveBreakpointOpcodesFromBuffer (addr_t bp_addr, size_t size, uint8_t *buf) const
1613{
1614 size_t bytes_removed = 0;
1615 addr_t intersect_addr;
1616 size_t intersect_size;
1617 size_t opcode_offset;
1618 size_t idx;
Greg Clayton987c7eb2011-09-17 08:33:22 +00001619 BreakpointSiteSP bp_sp;
Jim Ingham82820f92011-06-29 19:42:28 +00001620 BreakpointSiteList bp_sites_in_range;
Chris Lattner24943d22010-06-08 16:52:24 +00001621
Jim Ingham82820f92011-06-29 19:42:28 +00001622 if (m_breakpoint_site_list.FindInRange (bp_addr, bp_addr + size, bp_sites_in_range))
Chris Lattner24943d22010-06-08 16:52:24 +00001623 {
Greg Clayton987c7eb2011-09-17 08:33:22 +00001624 for (idx = 0; (bp_sp = bp_sites_in_range.GetByIndex(idx)); ++idx)
Chris Lattner24943d22010-06-08 16:52:24 +00001625 {
Greg Clayton987c7eb2011-09-17 08:33:22 +00001626 if (bp_sp->GetType() == BreakpointSite::eSoftware)
Chris Lattner24943d22010-06-08 16:52:24 +00001627 {
Greg Clayton987c7eb2011-09-17 08:33:22 +00001628 if (bp_sp->IntersectsRange(bp_addr, size, &intersect_addr, &intersect_size, &opcode_offset))
Jim Ingham82820f92011-06-29 19:42:28 +00001629 {
1630 assert(bp_addr <= intersect_addr && intersect_addr < bp_addr + size);
1631 assert(bp_addr < intersect_addr + intersect_size && intersect_addr + intersect_size <= bp_addr + size);
Greg Clayton987c7eb2011-09-17 08:33:22 +00001632 assert(opcode_offset + intersect_size <= bp_sp->GetByteSize());
Jim Ingham82820f92011-06-29 19:42:28 +00001633 size_t buf_offset = intersect_addr - bp_addr;
Greg Clayton987c7eb2011-09-17 08:33:22 +00001634 ::memcpy(buf + buf_offset, bp_sp->GetSavedOpcodeBytes() + opcode_offset, intersect_size);
Jim Ingham82820f92011-06-29 19:42:28 +00001635 }
Chris Lattner24943d22010-06-08 16:52:24 +00001636 }
1637 }
1638 }
1639 return bytes_removed;
1640}
1641
1642
Greg Claytonb1888f22011-03-19 01:12:21 +00001643
1644size_t
1645Process::GetSoftwareBreakpointTrapOpcode (BreakpointSite* bp_site)
1646{
1647 PlatformSP platform_sp (m_target.GetPlatform());
1648 if (platform_sp)
1649 return platform_sp->GetSoftwareBreakpointTrapOpcode (m_target, bp_site);
1650 return 0;
1651}
1652
Chris Lattner24943d22010-06-08 16:52:24 +00001653Error
1654Process::EnableSoftwareBreakpoint (BreakpointSite *bp_site)
1655{
1656 Error error;
1657 assert (bp_site != NULL);
Greg Claytone005f2c2010-11-06 01:53:30 +00001658 LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner24943d22010-06-08 16:52:24 +00001659 const addr_t bp_addr = bp_site->GetLoadAddress();
1660 if (log)
1661 log->Printf ("Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%llx", bp_site->GetID(), (uint64_t)bp_addr);
1662 if (bp_site->IsEnabled())
1663 {
1664 if (log)
1665 log->Printf ("Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%llx -- already enabled", bp_site->GetID(), (uint64_t)bp_addr);
1666 return error;
1667 }
1668
1669 if (bp_addr == LLDB_INVALID_ADDRESS)
1670 {
1671 error.SetErrorString("BreakpointSite contains an invalid load address.");
1672 return error;
1673 }
1674 // Ask the lldb::Process subclass to fill in the correct software breakpoint
1675 // trap for the breakpoint site
1676 const size_t bp_opcode_size = GetSoftwareBreakpointTrapOpcode(bp_site);
1677
1678 if (bp_opcode_size == 0)
1679 {
Greg Clayton9c236732011-10-26 00:56:27 +00001680 error.SetErrorStringWithFormat ("Process::GetSoftwareBreakpointTrapOpcode() returned zero, unable to get breakpoint trap for address 0x%llx", bp_addr);
Chris Lattner24943d22010-06-08 16:52:24 +00001681 }
1682 else
1683 {
1684 const uint8_t * const bp_opcode_bytes = bp_site->GetTrapOpcodeBytes();
1685
1686 if (bp_opcode_bytes == NULL)
1687 {
1688 error.SetErrorString ("BreakpointSite doesn't contain a valid breakpoint trap opcode.");
1689 return error;
1690 }
1691
1692 // Save the original opcode by reading it
1693 if (DoReadMemory(bp_addr, bp_site->GetSavedOpcodeBytes(), bp_opcode_size, error) == bp_opcode_size)
1694 {
1695 // Write a software breakpoint in place of the original opcode
1696 if (DoWriteMemory(bp_addr, bp_opcode_bytes, bp_opcode_size, error) == bp_opcode_size)
1697 {
1698 uint8_t verify_bp_opcode_bytes[64];
1699 if (DoReadMemory(bp_addr, verify_bp_opcode_bytes, bp_opcode_size, error) == bp_opcode_size)
1700 {
1701 if (::memcmp(bp_opcode_bytes, verify_bp_opcode_bytes, bp_opcode_size) == 0)
1702 {
1703 bp_site->SetEnabled(true);
1704 bp_site->SetType (BreakpointSite::eSoftware);
1705 if (log)
1706 log->Printf ("Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%llx -- SUCCESS",
1707 bp_site->GetID(),
1708 (uint64_t)bp_addr);
1709 }
1710 else
Greg Clayton9c236732011-10-26 00:56:27 +00001711 error.SetErrorString("failed to verify the breakpoint trap in memory.");
Chris Lattner24943d22010-06-08 16:52:24 +00001712 }
1713 else
1714 error.SetErrorString("Unable to read memory to verify breakpoint trap.");
1715 }
1716 else
1717 error.SetErrorString("Unable to write breakpoint trap to memory.");
1718 }
1719 else
1720 error.SetErrorString("Unable to read memory at breakpoint address.");
1721 }
Stephen Wilsonc2b98252011-01-12 04:20:03 +00001722 if (log && error.Fail())
Chris Lattner24943d22010-06-08 16:52:24 +00001723 log->Printf ("Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%llx -- FAILED: %s",
1724 bp_site->GetID(),
1725 (uint64_t)bp_addr,
1726 error.AsCString());
1727 return error;
1728}
1729
1730Error
1731Process::DisableSoftwareBreakpoint (BreakpointSite *bp_site)
1732{
1733 Error error;
1734 assert (bp_site != NULL);
Greg Claytone005f2c2010-11-06 01:53:30 +00001735 LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner24943d22010-06-08 16:52:24 +00001736 addr_t bp_addr = bp_site->GetLoadAddress();
1737 lldb::user_id_t breakID = bp_site->GetID();
1738 if (log)
Greg Clayton444e35b2011-10-19 18:09:39 +00001739 log->Printf ("Process::DisableBreakpoint (breakID = %llu) addr = 0x%llx", breakID, (uint64_t)bp_addr);
Chris Lattner24943d22010-06-08 16:52:24 +00001740
1741 if (bp_site->IsHardware())
1742 {
1743 error.SetErrorString("Breakpoint site is a hardware breakpoint.");
1744 }
1745 else if (bp_site->IsEnabled())
1746 {
1747 const size_t break_op_size = bp_site->GetByteSize();
1748 const uint8_t * const break_op = bp_site->GetTrapOpcodeBytes();
1749 if (break_op_size > 0)
1750 {
1751 // Clear a software breakoint instruction
Greg Clayton54e7afa2010-07-09 20:39:50 +00001752 uint8_t curr_break_op[8];
Stephen Wilson141eeac2010-07-20 18:41:11 +00001753 assert (break_op_size <= sizeof(curr_break_op));
Chris Lattner24943d22010-06-08 16:52:24 +00001754 bool break_op_found = false;
1755
1756 // Read the breakpoint opcode
1757 if (DoReadMemory (bp_addr, curr_break_op, break_op_size, error) == break_op_size)
1758 {
1759 bool verify = false;
1760 // Make sure we have the a breakpoint opcode exists at this address
1761 if (::memcmp (curr_break_op, break_op, break_op_size) == 0)
1762 {
1763 break_op_found = true;
1764 // We found a valid breakpoint opcode at this address, now restore
1765 // the saved opcode.
1766 if (DoWriteMemory (bp_addr, bp_site->GetSavedOpcodeBytes(), break_op_size, error) == break_op_size)
1767 {
1768 verify = true;
1769 }
1770 else
1771 error.SetErrorString("Memory write failed when restoring original opcode.");
1772 }
1773 else
1774 {
1775 error.SetErrorString("Original breakpoint trap is no longer in memory.");
1776 // Set verify to true and so we can check if the original opcode has already been restored
1777 verify = true;
1778 }
1779
1780 if (verify)
1781 {
Greg Clayton54e7afa2010-07-09 20:39:50 +00001782 uint8_t verify_opcode[8];
Stephen Wilson141eeac2010-07-20 18:41:11 +00001783 assert (break_op_size < sizeof(verify_opcode));
Chris Lattner24943d22010-06-08 16:52:24 +00001784 // Verify that our original opcode made it back to the inferior
1785 if (DoReadMemory (bp_addr, verify_opcode, break_op_size, error) == break_op_size)
1786 {
1787 // compare the memory we just read with the original opcode
1788 if (::memcmp (bp_site->GetSavedOpcodeBytes(), verify_opcode, break_op_size) == 0)
1789 {
1790 // SUCCESS
1791 bp_site->SetEnabled(false);
1792 if (log)
1793 log->Printf ("Process::DisableSoftwareBreakpoint (site_id = %d) addr = 0x%llx -- SUCCESS", bp_site->GetID(), (uint64_t)bp_addr);
1794 return error;
1795 }
1796 else
1797 {
1798 if (break_op_found)
1799 error.SetErrorString("Failed to restore original opcode.");
1800 }
1801 }
1802 else
1803 error.SetErrorString("Failed to read memory to verify that breakpoint trap was restored.");
1804 }
1805 }
1806 else
1807 error.SetErrorString("Unable to read memory that should contain the breakpoint trap.");
1808 }
1809 }
1810 else
1811 {
1812 if (log)
1813 log->Printf ("Process::DisableSoftwareBreakpoint (site_id = %d) addr = 0x%llx -- already disabled", bp_site->GetID(), (uint64_t)bp_addr);
1814 return error;
1815 }
1816
1817 if (log)
1818 log->Printf ("Process::DisableSoftwareBreakpoint (site_id = %d) addr = 0x%llx -- FAILED: %s",
1819 bp_site->GetID(),
1820 (uint64_t)bp_addr,
1821 error.AsCString());
1822 return error;
1823
1824}
1825
Greg Claytonfd119992011-01-07 06:08:19 +00001826// Comment out line below to disable memory caching
1827#define ENABLE_MEMORY_CACHING
1828// Uncomment to verify memory caching works after making changes to caching code
1829//#define VERIFY_MEMORY_READS
1830
1831#if defined (ENABLE_MEMORY_CACHING)
1832
1833#if defined (VERIFY_MEMORY_READS)
Chris Lattner24943d22010-06-08 16:52:24 +00001834
1835size_t
1836Process::ReadMemory (addr_t addr, void *buf, size_t size, Error &error)
1837{
Greg Claytonfd119992011-01-07 06:08:19 +00001838 // Memory caching is enabled, with debug verification
1839 if (buf && size)
1840 {
1841 // Uncomment the line below to make sure memory caching is working.
1842 // I ran this through the test suite and got no assertions, so I am
1843 // pretty confident this is working well. If any changes are made to
1844 // memory caching, uncomment the line below and test your changes!
1845
1846 // Verify all memory reads by using the cache first, then redundantly
1847 // reading the same memory from the inferior and comparing to make sure
1848 // everything is exactly the same.
1849 std::string verify_buf (size, '\0');
1850 assert (verify_buf.size() == size);
1851 const size_t cache_bytes_read = m_memory_cache.Read (this, addr, buf, size, error);
1852 Error verify_error;
1853 const size_t verify_bytes_read = ReadMemoryFromInferior (addr, const_cast<char *>(verify_buf.data()), verify_buf.size(), verify_error);
1854 assert (cache_bytes_read == verify_bytes_read);
1855 assert (memcmp(buf, verify_buf.data(), verify_buf.size()) == 0);
1856 assert (verify_error.Success() == error.Success());
1857 return cache_bytes_read;
1858 }
1859 return 0;
1860}
1861
1862#else // #if defined (VERIFY_MEMORY_READS)
1863
1864size_t
1865Process::ReadMemory (addr_t addr, void *buf, size_t size, Error &error)
1866{
1867 // Memory caching enabled, no verification
Greg Clayton613b8732011-05-17 03:37:42 +00001868 return m_memory_cache.Read (addr, buf, size, error);
Greg Claytonfd119992011-01-07 06:08:19 +00001869}
1870
1871#endif // #else for #if defined (VERIFY_MEMORY_READS)
1872
1873#else // #if defined (ENABLE_MEMORY_CACHING)
1874
1875size_t
1876Process::ReadMemory (addr_t addr, void *buf, size_t size, Error &error)
1877{
1878 // Memory caching is disabled
1879 return ReadMemoryFromInferior (addr, buf, size, error);
1880}
1881
1882#endif // #else for #if defined (ENABLE_MEMORY_CACHING)
1883
1884
1885size_t
Greg Clayton4a2e3372011-12-15 03:14:23 +00001886Process::ReadCStringFromMemory (addr_t addr, char *dst, size_t dst_max_len, Error &result_error)
Greg Claytonb72d0f02011-04-12 05:54:46 +00001887{
1888 size_t total_cstr_len = 0;
1889 if (dst && dst_max_len)
1890 {
Greg Clayton4a2e3372011-12-15 03:14:23 +00001891 result_error.Clear();
Greg Claytonb72d0f02011-04-12 05:54:46 +00001892 // NULL out everything just to be safe
1893 memset (dst, 0, dst_max_len);
1894 Error error;
1895 addr_t curr_addr = addr;
1896 const size_t cache_line_size = m_memory_cache.GetMemoryCacheLineSize();
1897 size_t bytes_left = dst_max_len - 1;
1898 char *curr_dst = dst;
1899
1900 while (bytes_left > 0)
1901 {
1902 addr_t cache_line_bytes_left = cache_line_size - (curr_addr % cache_line_size);
1903 addr_t bytes_to_read = std::min<addr_t>(bytes_left, cache_line_bytes_left);
1904 size_t bytes_read = ReadMemory (curr_addr, curr_dst, bytes_to_read, error);
1905
1906 if (bytes_read == 0)
1907 {
Greg Clayton4a2e3372011-12-15 03:14:23 +00001908 result_error = error;
Greg Claytonb72d0f02011-04-12 05:54:46 +00001909 dst[total_cstr_len] = '\0';
1910 break;
1911 }
1912 const size_t len = strlen(curr_dst);
1913
1914 total_cstr_len += len;
1915
1916 if (len < bytes_to_read)
1917 break;
1918
1919 curr_dst += bytes_read;
1920 curr_addr += bytes_read;
1921 bytes_left -= bytes_read;
1922 }
1923 }
Greg Clayton4a2e3372011-12-15 03:14:23 +00001924 else
1925 {
1926 if (dst == NULL)
1927 result_error.SetErrorString("invalid arguments");
1928 else
1929 result_error.Clear();
1930 }
Greg Claytonb72d0f02011-04-12 05:54:46 +00001931 return total_cstr_len;
1932}
1933
1934size_t
Greg Claytonfd119992011-01-07 06:08:19 +00001935Process::ReadMemoryFromInferior (addr_t addr, void *buf, size_t size, Error &error)
1936{
Chris Lattner24943d22010-06-08 16:52:24 +00001937 if (buf == NULL || size == 0)
1938 return 0;
1939
1940 size_t bytes_read = 0;
1941 uint8_t *bytes = (uint8_t *)buf;
1942
1943 while (bytes_read < size)
1944 {
1945 const size_t curr_size = size - bytes_read;
1946 const size_t curr_bytes_read = DoReadMemory (addr + bytes_read,
1947 bytes + bytes_read,
1948 curr_size,
1949 error);
1950 bytes_read += curr_bytes_read;
1951 if (curr_bytes_read == curr_size || curr_bytes_read == 0)
1952 break;
1953 }
1954
1955 // Replace any software breakpoint opcodes that fall into this range back
1956 // into "buf" before we return
1957 if (bytes_read > 0)
1958 RemoveBreakpointOpcodesFromBuffer (addr, bytes_read, (uint8_t *)buf);
1959 return bytes_read;
1960}
1961
Greg Claytonf72fdee2010-12-16 20:01:20 +00001962uint64_t
Greg Claytonc0fa5332011-05-22 22:46:53 +00001963Process::ReadUnsignedIntegerFromMemory (lldb::addr_t vm_addr, size_t integer_byte_size, uint64_t fail_value, Error &error)
Greg Claytonf72fdee2010-12-16 20:01:20 +00001964{
Greg Claytonc0fa5332011-05-22 22:46:53 +00001965 Scalar scalar;
1966 if (ReadScalarIntegerFromMemory(vm_addr, integer_byte_size, false, scalar, error))
1967 return scalar.ULongLong(fail_value);
1968 return fail_value;
1969}
1970
1971addr_t
1972Process::ReadPointerFromMemory (lldb::addr_t vm_addr, Error &error)
1973{
1974 Scalar scalar;
1975 if (ReadScalarIntegerFromMemory(vm_addr, GetAddressByteSize(), false, scalar, error))
1976 return scalar.ULongLong(LLDB_INVALID_ADDRESS);
1977 return LLDB_INVALID_ADDRESS;
1978}
1979
1980
1981bool
1982Process::WritePointerToMemory (lldb::addr_t vm_addr,
1983 lldb::addr_t ptr_value,
1984 Error &error)
1985{
1986 Scalar scalar;
1987 const uint32_t addr_byte_size = GetAddressByteSize();
1988 if (addr_byte_size <= 4)
1989 scalar = (uint32_t)ptr_value;
Greg Claytonf72fdee2010-12-16 20:01:20 +00001990 else
Greg Claytonc0fa5332011-05-22 22:46:53 +00001991 scalar = ptr_value;
1992 return WriteScalarToMemory(vm_addr, scalar, addr_byte_size, error) == addr_byte_size;
Greg Claytonf72fdee2010-12-16 20:01:20 +00001993}
1994
Chris Lattner24943d22010-06-08 16:52:24 +00001995size_t
1996Process::WriteMemoryPrivate (addr_t addr, const void *buf, size_t size, Error &error)
1997{
1998 size_t bytes_written = 0;
1999 const uint8_t *bytes = (const uint8_t *)buf;
2000
2001 while (bytes_written < size)
2002 {
2003 const size_t curr_size = size - bytes_written;
2004 const size_t curr_bytes_written = DoWriteMemory (addr + bytes_written,
2005 bytes + bytes_written,
2006 curr_size,
2007 error);
2008 bytes_written += curr_bytes_written;
2009 if (curr_bytes_written == curr_size || curr_bytes_written == 0)
2010 break;
2011 }
2012 return bytes_written;
2013}
2014
2015size_t
2016Process::WriteMemory (addr_t addr, const void *buf, size_t size, Error &error)
2017{
Greg Claytonfd119992011-01-07 06:08:19 +00002018#if defined (ENABLE_MEMORY_CACHING)
2019 m_memory_cache.Flush (addr, size);
2020#endif
2021
Chris Lattner24943d22010-06-08 16:52:24 +00002022 if (buf == NULL || size == 0)
2023 return 0;
Jim Inghame41494a2011-04-16 00:01:13 +00002024
Jim Ingham21f37ad2011-08-09 02:12:22 +00002025 m_mod_id.BumpMemoryID();
Jim Inghame41494a2011-04-16 00:01:13 +00002026
Chris Lattner24943d22010-06-08 16:52:24 +00002027 // We need to write any data that would go where any current software traps
2028 // (enabled software breakpoints) any software traps (breakpoints) that we
2029 // may have placed in our tasks memory.
2030
2031 BreakpointSiteList::collection::const_iterator iter = m_breakpoint_site_list.GetMap()->lower_bound (addr);
2032 BreakpointSiteList::collection::const_iterator end = m_breakpoint_site_list.GetMap()->end();
2033
2034 if (iter == end || iter->second->GetLoadAddress() > addr + size)
Greg Claytonc8bc1c32011-05-16 02:35:02 +00002035 return WriteMemoryPrivate (addr, buf, size, error);
Chris Lattner24943d22010-06-08 16:52:24 +00002036
2037 BreakpointSiteList::collection::const_iterator pos;
2038 size_t bytes_written = 0;
Greg Clayton54e7afa2010-07-09 20:39:50 +00002039 addr_t intersect_addr = 0;
2040 size_t intersect_size = 0;
2041 size_t opcode_offset = 0;
Chris Lattner24943d22010-06-08 16:52:24 +00002042 const uint8_t *ubuf = (const uint8_t *)buf;
2043
2044 for (pos = iter; pos != end; ++pos)
2045 {
2046 BreakpointSiteSP bp;
2047 bp = pos->second;
2048
2049 assert(bp->IntersectsRange(addr, size, &intersect_addr, &intersect_size, &opcode_offset));
2050 assert(addr <= intersect_addr && intersect_addr < addr + size);
2051 assert(addr < intersect_addr + intersect_size && intersect_addr + intersect_size <= addr + size);
2052 assert(opcode_offset + intersect_size <= bp->GetByteSize());
2053
2054 // Check for bytes before this breakpoint
2055 const addr_t curr_addr = addr + bytes_written;
2056 if (intersect_addr > curr_addr)
2057 {
2058 // There are some bytes before this breakpoint that we need to
2059 // just write to memory
2060 size_t curr_size = intersect_addr - curr_addr;
2061 size_t curr_bytes_written = WriteMemoryPrivate (curr_addr,
2062 ubuf + bytes_written,
2063 curr_size,
2064 error);
2065 bytes_written += curr_bytes_written;
2066 if (curr_bytes_written != curr_size)
2067 {
2068 // We weren't able to write all of the requested bytes, we
2069 // are done looping and will return the number of bytes that
2070 // we have written so far.
2071 break;
2072 }
2073 }
2074
2075 // Now write any bytes that would cover up any software breakpoints
2076 // directly into the breakpoint opcode buffer
2077 ::memcpy(bp->GetSavedOpcodeBytes() + opcode_offset, ubuf + bytes_written, intersect_size);
2078 bytes_written += intersect_size;
2079 }
2080
2081 // Write any remaining bytes after the last breakpoint if we have any left
2082 if (bytes_written < size)
2083 bytes_written += WriteMemoryPrivate (addr + bytes_written,
2084 ubuf + bytes_written,
2085 size - bytes_written,
2086 error);
Jim Inghame41494a2011-04-16 00:01:13 +00002087
Chris Lattner24943d22010-06-08 16:52:24 +00002088 return bytes_written;
2089}
Greg Claytonc0fa5332011-05-22 22:46:53 +00002090
2091size_t
2092Process::WriteScalarToMemory (addr_t addr, const Scalar &scalar, uint32_t byte_size, Error &error)
2093{
2094 if (byte_size == UINT32_MAX)
2095 byte_size = scalar.GetByteSize();
2096 if (byte_size > 0)
2097 {
2098 uint8_t buf[32];
2099 const size_t mem_size = scalar.GetAsMemoryData (buf, byte_size, GetByteOrder(), error);
2100 if (mem_size > 0)
2101 return WriteMemory(addr, buf, mem_size, error);
2102 else
2103 error.SetErrorString ("failed to get scalar as memory data");
2104 }
2105 else
2106 {
2107 error.SetErrorString ("invalid scalar value");
2108 }
2109 return 0;
2110}
2111
2112size_t
2113Process::ReadScalarIntegerFromMemory (addr_t addr,
2114 uint32_t byte_size,
2115 bool is_signed,
2116 Scalar &scalar,
2117 Error &error)
2118{
2119 uint64_t uval;
2120
2121 if (byte_size <= sizeof(uval))
2122 {
2123 size_t bytes_read = ReadMemory (addr, &uval, byte_size, error);
2124 if (bytes_read == byte_size)
2125 {
2126 DataExtractor data (&uval, sizeof(uval), GetByteOrder(), GetAddressByteSize());
2127 uint32_t offset = 0;
2128 if (byte_size <= 4)
2129 scalar = data.GetMaxU32 (&offset, byte_size);
2130 else
2131 scalar = data.GetMaxU64 (&offset, byte_size);
2132
2133 if (is_signed)
2134 scalar.SignExtend(byte_size * 8);
2135 return bytes_read;
2136 }
2137 }
2138 else
2139 {
2140 error.SetErrorStringWithFormat ("byte size of %u is too large for integer scalar type", byte_size);
2141 }
2142 return 0;
2143}
2144
Greg Clayton613b8732011-05-17 03:37:42 +00002145#define USE_ALLOCATE_MEMORY_CACHE 1
Chris Lattner24943d22010-06-08 16:52:24 +00002146addr_t
2147Process::AllocateMemory(size_t size, uint32_t permissions, Error &error)
2148{
Jim Inghame6bd1422011-06-20 17:32:44 +00002149 if (GetPrivateState() != eStateStopped)
2150 return LLDB_INVALID_ADDRESS;
2151
Greg Clayton613b8732011-05-17 03:37:42 +00002152#if defined (USE_ALLOCATE_MEMORY_CACHE)
2153 return m_allocated_memory_cache.AllocateMemory(size, permissions, error);
2154#else
Greg Clayton2860ba92011-01-23 19:58:49 +00002155 addr_t allocated_addr = DoAllocateMemory (size, permissions, error);
2156 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2157 if (log)
Jim Ingham21f37ad2011-08-09 02:12:22 +00002158 log->Printf("Process::AllocateMemory(size=%4zu, permissions=%s) => 0x%16.16llx (m_stop_id = %u m_memory_id = %u)",
Greg Clayton2860ba92011-01-23 19:58:49 +00002159 size,
Greg Clayton613b8732011-05-17 03:37:42 +00002160 GetPermissionsAsCString (permissions),
Greg Clayton2860ba92011-01-23 19:58:49 +00002161 (uint64_t)allocated_addr,
Jim Ingham21f37ad2011-08-09 02:12:22 +00002162 m_mod_id.GetStopID(),
2163 m_mod_id.GetMemoryID());
Greg Clayton2860ba92011-01-23 19:58:49 +00002164 return allocated_addr;
Greg Clayton613b8732011-05-17 03:37:42 +00002165#endif
Chris Lattner24943d22010-06-08 16:52:24 +00002166}
2167
Sean Callanan6cf6c472011-09-20 23:01:51 +00002168bool
2169Process::CanJIT ()
2170{
Sean Callanan04200f62012-02-14 22:50:38 +00002171 if (m_can_jit == eCanJITDontKnow)
2172 {
2173 Error err;
2174
2175 uint64_t allocated_memory = AllocateMemory(8,
2176 ePermissionsReadable | ePermissionsWritable | ePermissionsExecutable,
2177 err);
2178
2179 if (err.Success())
2180 m_can_jit = eCanJITYes;
2181 else
2182 m_can_jit = eCanJITNo;
2183
2184 DeallocateMemory (allocated_memory);
2185 }
2186
Sean Callanan6cf6c472011-09-20 23:01:51 +00002187 return m_can_jit == eCanJITYes;
2188}
2189
2190void
2191Process::SetCanJIT (bool can_jit)
2192{
2193 m_can_jit = (can_jit ? eCanJITYes : eCanJITNo);
2194}
2195
Chris Lattner24943d22010-06-08 16:52:24 +00002196Error
2197Process::DeallocateMemory (addr_t ptr)
2198{
Greg Clayton613b8732011-05-17 03:37:42 +00002199 Error error;
2200#if defined (USE_ALLOCATE_MEMORY_CACHE)
2201 if (!m_allocated_memory_cache.DeallocateMemory(ptr))
2202 {
2203 error.SetErrorStringWithFormat ("deallocation of memory at 0x%llx failed.", (uint64_t)ptr);
2204 }
2205#else
2206 error = DoDeallocateMemory (ptr);
Greg Clayton2860ba92011-01-23 19:58:49 +00002207
2208 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2209 if (log)
Jim Ingham21f37ad2011-08-09 02:12:22 +00002210 log->Printf("Process::DeallocateMemory(addr=0x%16.16llx) => err = %s (m_stop_id = %u, m_memory_id = %u)",
Greg Clayton2860ba92011-01-23 19:58:49 +00002211 ptr,
2212 error.AsCString("SUCCESS"),
Jim Ingham21f37ad2011-08-09 02:12:22 +00002213 m_mod_id.GetStopID(),
2214 m_mod_id.GetMemoryID());
Greg Clayton613b8732011-05-17 03:37:42 +00002215#endif
Greg Clayton2860ba92011-01-23 19:58:49 +00002216 return error;
Chris Lattner24943d22010-06-08 16:52:24 +00002217}
2218
Greg Claytonb5a8f142012-02-05 02:38:54 +00002219ModuleSP
Greg Clayton9ce95382012-02-13 23:10:39 +00002220Process::ReadModuleFromMemory (const FileSpec& file_spec,
2221 lldb::addr_t header_addr,
2222 bool add_image_to_target,
2223 bool load_sections_in_target)
Greg Claytonb5a8f142012-02-05 02:38:54 +00002224{
2225 ModuleSP module_sp (new Module (file_spec, shared_from_this(), header_addr));
2226 if (module_sp)
2227 {
Greg Clayton9ce95382012-02-13 23:10:39 +00002228 if (add_image_to_target)
2229 {
2230 m_target.GetImages().Append(module_sp);
2231 if (load_sections_in_target)
2232 {
2233 bool changed = false;
2234 module_sp->SetLoadAddress (m_target, 0, changed);
2235 }
2236 }
Greg Claytonb5a8f142012-02-05 02:38:54 +00002237 }
2238 return module_sp;
2239}
Chris Lattner24943d22010-06-08 16:52:24 +00002240
2241Error
Johnny Chenecd4feb2011-10-14 00:42:25 +00002242Process::EnableWatchpoint (Watchpoint *watchpoint)
Chris Lattner24943d22010-06-08 16:52:24 +00002243{
2244 Error error;
2245 error.SetErrorString("watchpoints are not supported");
2246 return error;
2247}
2248
2249Error
Johnny Chenecd4feb2011-10-14 00:42:25 +00002250Process::DisableWatchpoint (Watchpoint *watchpoint)
Chris Lattner24943d22010-06-08 16:52:24 +00002251{
2252 Error error;
2253 error.SetErrorString("watchpoints are not supported");
2254 return error;
2255}
2256
2257StateType
2258Process::WaitForProcessStopPrivate (const TimeValue *timeout, EventSP &event_sp)
2259{
2260 StateType state;
2261 // Now wait for the process to launch and return control to us, and then
2262 // call DidLaunch:
2263 while (1)
2264 {
Greg Clayton72e1c782011-01-22 23:43:18 +00002265 event_sp.reset();
2266 state = WaitForStateChangedEventsPrivate (timeout, event_sp);
2267
Greg Clayton20206082011-11-17 01:23:07 +00002268 if (StateIsStoppedState(state, false))
Chris Lattner24943d22010-06-08 16:52:24 +00002269 break;
Greg Clayton72e1c782011-01-22 23:43:18 +00002270
2271 // If state is invalid, then we timed out
2272 if (state == eStateInvalid)
2273 break;
2274
2275 if (event_sp)
Chris Lattner24943d22010-06-08 16:52:24 +00002276 HandlePrivateEvent (event_sp);
2277 }
2278 return state;
2279}
2280
2281Error
Greg Clayton36bc5ea2011-11-03 21:22:33 +00002282Process::Launch (const ProcessLaunchInfo &launch_info)
Chris Lattner24943d22010-06-08 16:52:24 +00002283{
2284 Error error;
Chris Lattner24943d22010-06-08 16:52:24 +00002285 m_abi_sp.reset();
Greg Clayton75c703d2011-02-16 04:46:07 +00002286 m_dyld_ap.reset();
Greg Clayton37f962e2011-08-22 02:49:39 +00002287 m_os_ap.reset();
Caroline Tice861efb32010-11-16 05:07:41 +00002288 m_process_input_reader.reset();
Chris Lattner24943d22010-06-08 16:52:24 +00002289
Greg Clayton5beb99d2011-08-11 02:48:45 +00002290 Module *exe_module = m_target.GetExecutableModulePointer();
Chris Lattner24943d22010-06-08 16:52:24 +00002291 if (exe_module)
2292 {
Greg Clayton180546b2011-04-30 01:09:13 +00002293 char local_exec_file_path[PATH_MAX];
2294 char platform_exec_file_path[PATH_MAX];
2295 exe_module->GetFileSpec().GetPath(local_exec_file_path, sizeof(local_exec_file_path));
2296 exe_module->GetPlatformFileSpec().GetPath(platform_exec_file_path, sizeof(platform_exec_file_path));
Chris Lattner24943d22010-06-08 16:52:24 +00002297 if (exe_module->GetFileSpec().Exists())
2298 {
Greg Claytona2f74232011-02-24 22:24:29 +00002299 if (PrivateStateThreadIsValid ())
2300 PausePrivateStateThread ();
2301
Chris Lattner24943d22010-06-08 16:52:24 +00002302 error = WillLaunch (exe_module);
2303 if (error.Success())
2304 {
Greg Claytond8c62532010-10-07 04:19:01 +00002305 SetPublicState (eStateLaunching);
Greg Claytonffa43a62011-11-17 04:46:02 +00002306 m_should_detach = false;
Chris Lattner24943d22010-06-08 16:52:24 +00002307
2308 // Now launch using these arguments.
Greg Clayton36bc5ea2011-11-03 21:22:33 +00002309 error = DoLaunch (exe_module, launch_info);
Chris Lattner24943d22010-06-08 16:52:24 +00002310
2311 if (error.Fail())
2312 {
2313 if (GetID() != LLDB_INVALID_PROCESS_ID)
2314 {
2315 SetID (LLDB_INVALID_PROCESS_ID);
2316 const char *error_string = error.AsCString();
2317 if (error_string == NULL)
2318 error_string = "launch failed";
2319 SetExitStatus (-1, error_string);
2320 }
2321 }
2322 else
2323 {
2324 EventSP event_sp;
Greg Clayton49859592011-06-22 01:42:17 +00002325 TimeValue timeout_time;
2326 timeout_time = TimeValue::Now();
2327 timeout_time.OffsetWithSeconds(10);
2328 StateType state = WaitForProcessStopPrivate(&timeout_time, event_sp);
Chris Lattner24943d22010-06-08 16:52:24 +00002329
Greg Clayton49859592011-06-22 01:42:17 +00002330 if (state == eStateInvalid || event_sp.get() == NULL)
2331 {
2332 // We were able to launch the process, but we failed to
2333 // catch the initial stop.
2334 SetExitStatus (0, "failed to catch stop after launch");
2335 Destroy();
2336 }
2337 else if (state == eStateStopped || state == eStateCrashed)
Chris Lattner24943d22010-06-08 16:52:24 +00002338 {
Greg Clayton75c703d2011-02-16 04:46:07 +00002339
Chris Lattner24943d22010-06-08 16:52:24 +00002340 DidLaunch ();
2341
Greg Clayton9ce95382012-02-13 23:10:39 +00002342 DynamicLoader *dyld = GetDynamicLoader ();
2343 if (dyld)
2344 dyld->DidLaunch();
Greg Clayton75c703d2011-02-16 04:46:07 +00002345
Greg Clayton37f962e2011-08-22 02:49:39 +00002346 m_os_ap.reset (OperatingSystem::FindPlugin (this, NULL));
Chris Lattner24943d22010-06-08 16:52:24 +00002347 // This delays passing the stopped event to listeners till DidLaunch gets
2348 // a chance to complete...
2349 HandlePrivateEvent (event_sp);
Greg Claytona2f74232011-02-24 22:24:29 +00002350
2351 if (PrivateStateThreadIsValid ())
2352 ResumePrivateStateThread ();
2353 else
2354 StartPrivateStateThread ();
Chris Lattner24943d22010-06-08 16:52:24 +00002355 }
2356 else if (state == eStateExited)
2357 {
2358 // We exited while trying to launch somehow. Don't call DidLaunch as that's
2359 // not likely to work, and return an invalid pid.
2360 HandlePrivateEvent (event_sp);
2361 }
2362 }
2363 }
2364 }
2365 else
2366 {
Greg Clayton9c236732011-10-26 00:56:27 +00002367 error.SetErrorStringWithFormat("file doesn't exist: '%s'", local_exec_file_path);
Chris Lattner24943d22010-06-08 16:52:24 +00002368 }
2369 }
2370 return error;
2371}
2372
Greg Clayton46c9a352012-02-09 06:16:32 +00002373
2374Error
2375Process::LoadCore ()
2376{
2377 Error error = DoLoadCore();
2378 if (error.Success())
2379 {
2380 if (PrivateStateThreadIsValid ())
2381 ResumePrivateStateThread ();
2382 else
2383 StartPrivateStateThread ();
2384
Greg Clayton9ce95382012-02-13 23:10:39 +00002385 DynamicLoader *dyld = GetDynamicLoader ();
2386 if (dyld)
2387 dyld->DidAttach();
2388
2389 m_os_ap.reset (OperatingSystem::FindPlugin (this, NULL));
Greg Clayton46c9a352012-02-09 06:16:32 +00002390 // We successfully loaded a core file, now pretend we stopped so we can
2391 // show all of the threads in the core file and explore the crashed
2392 // state.
2393 SetPrivateState (eStateStopped);
2394
2395 }
2396 return error;
2397}
2398
Greg Clayton9ce95382012-02-13 23:10:39 +00002399DynamicLoader *
2400Process::GetDynamicLoader ()
2401{
2402 if (m_dyld_ap.get() == NULL)
2403 m_dyld_ap.reset (DynamicLoader::FindPlugin(this, NULL));
2404 return m_dyld_ap.get();
2405}
Greg Clayton46c9a352012-02-09 06:16:32 +00002406
2407
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002408Process::NextEventAction::EventActionResult
2409Process::AttachCompletionHandler::PerformAction (lldb::EventSP &event_sp)
Chris Lattner24943d22010-06-08 16:52:24 +00002410{
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002411 StateType state = ProcessEventData::GetStateFromEvent (event_sp.get());
2412 switch (state)
Greg Claytonc1d37752010-10-18 01:45:30 +00002413 {
Greg Clayton7e2f91c2011-01-29 07:10:55 +00002414 case eStateRunning:
Greg Claytona2f74232011-02-24 22:24:29 +00002415 case eStateConnected:
Greg Clayton7e2f91c2011-01-29 07:10:55 +00002416 return eEventActionRetry;
2417
2418 case eStateStopped:
2419 case eStateCrashed:
Greg Clayton2d9adb72011-11-12 02:10:56 +00002420 {
2421 // During attach, prior to sending the eStateStopped event,
2422 // lldb_private::Process subclasses must set the process must set
2423 // the new process ID.
2424 assert (m_process->GetID() != LLDB_INVALID_PROCESS_ID);
2425 if (m_exec_count > 0)
2426 {
2427 --m_exec_count;
2428 m_process->Resume();
2429 return eEventActionRetry;
2430 }
2431 else
2432 {
2433 m_process->CompleteAttach ();
2434 return eEventActionSuccess;
2435 }
2436 }
Greg Clayton7e2f91c2011-01-29 07:10:55 +00002437 break;
Greg Clayton2d9adb72011-11-12 02:10:56 +00002438
Greg Clayton7e2f91c2011-01-29 07:10:55 +00002439 default:
2440 case eStateExited:
2441 case eStateInvalid:
Greg Clayton7e2f91c2011-01-29 07:10:55 +00002442 break;
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002443 }
Greg Clayton2d9adb72011-11-12 02:10:56 +00002444
2445 m_exit_string.assign ("No valid Process");
2446 return eEventActionExit;
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002447}
Chris Lattner24943d22010-06-08 16:52:24 +00002448
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002449Process::NextEventAction::EventActionResult
2450Process::AttachCompletionHandler::HandleBeingInterrupted()
2451{
2452 return eEventActionSuccess;
2453}
2454
2455const char *
2456Process::AttachCompletionHandler::GetExitString ()
2457{
2458 return m_exit_string.c_str();
Chris Lattner24943d22010-06-08 16:52:24 +00002459}
2460
2461Error
Greg Clayton527154d2011-11-15 03:53:30 +00002462Process::Attach (ProcessAttachInfo &attach_info)
Chris Lattner24943d22010-06-08 16:52:24 +00002463{
Chris Lattner24943d22010-06-08 16:52:24 +00002464 m_abi_sp.reset();
Caroline Tice861efb32010-11-16 05:07:41 +00002465 m_process_input_reader.reset();
Greg Clayton75c703d2011-02-16 04:46:07 +00002466 m_dyld_ap.reset();
Greg Clayton37f962e2011-08-22 02:49:39 +00002467 m_os_ap.reset();
Jim Ingham7508e732010-08-09 23:31:02 +00002468
Greg Clayton527154d2011-11-15 03:53:30 +00002469 lldb::pid_t attach_pid = attach_info.GetProcessID();
Greg Claytone4b9c1f2011-03-08 22:40:15 +00002470 Error error;
Greg Clayton527154d2011-11-15 03:53:30 +00002471 if (attach_pid == LLDB_INVALID_PROCESS_ID)
Jim Ingham7508e732010-08-09 23:31:02 +00002472 {
Greg Clayton527154d2011-11-15 03:53:30 +00002473 char process_name[PATH_MAX];
Jim Ingham0d7f7772011-09-15 01:10:17 +00002474
Greg Clayton527154d2011-11-15 03:53:30 +00002475 if (attach_info.GetExecutableFile().GetPath (process_name, sizeof(process_name)))
Jim Inghamea294182010-08-17 21:54:19 +00002476 {
Greg Clayton527154d2011-11-15 03:53:30 +00002477 const bool wait_for_launch = attach_info.GetWaitForLaunch();
2478
2479 if (wait_for_launch)
Chris Lattner24943d22010-06-08 16:52:24 +00002480 {
Greg Clayton527154d2011-11-15 03:53:30 +00002481 error = WillAttachToProcessWithName(process_name, wait_for_launch);
2482 if (error.Success())
2483 {
Greg Claytonffa43a62011-11-17 04:46:02 +00002484 m_should_detach = true;
2485
Greg Clayton527154d2011-11-15 03:53:30 +00002486 SetPublicState (eStateAttaching);
2487 error = DoAttachToProcessWithName (process_name, wait_for_launch);
2488 if (error.Fail())
2489 {
2490 if (GetID() != LLDB_INVALID_PROCESS_ID)
2491 {
2492 SetID (LLDB_INVALID_PROCESS_ID);
2493 if (error.AsCString() == NULL)
2494 error.SetErrorString("attach failed");
2495
2496 SetExitStatus(-1, error.AsCString());
2497 }
2498 }
2499 else
2500 {
2501 SetNextEventAction(new Process::AttachCompletionHandler(this, attach_info.GetResumeCount()));
2502 StartPrivateStateThread();
2503 }
2504 return error;
2505 }
Greg Claytone4b9c1f2011-03-08 22:40:15 +00002506 }
Greg Clayton527154d2011-11-15 03:53:30 +00002507 else
Greg Claytone4b9c1f2011-03-08 22:40:15 +00002508 {
Greg Clayton527154d2011-11-15 03:53:30 +00002509 ProcessInstanceInfoList process_infos;
2510 PlatformSP platform_sp (m_target.GetPlatform ());
2511
2512 if (platform_sp)
2513 {
2514 ProcessInstanceInfoMatch match_info;
2515 match_info.GetProcessInfo() = attach_info;
2516 match_info.SetNameMatchType (eNameMatchEquals);
2517 platform_sp->FindProcesses (match_info, process_infos);
2518 const uint32_t num_matches = process_infos.GetSize();
2519 if (num_matches == 1)
2520 {
2521 attach_pid = process_infos.GetProcessIDAtIndex(0);
2522 // Fall through and attach using the above process ID
2523 }
2524 else
2525 {
2526 match_info.GetProcessInfo().GetExecutableFile().GetPath (process_name, sizeof(process_name));
2527 if (num_matches > 1)
2528 error.SetErrorStringWithFormat ("more than one process named %s", process_name);
2529 else
2530 error.SetErrorStringWithFormat ("could not find a process named %s", process_name);
2531 }
2532 }
2533 else
2534 {
2535 error.SetErrorString ("invalid platform, can't find processes by name");
2536 return error;
2537 }
Greg Claytone4b9c1f2011-03-08 22:40:15 +00002538 }
Chris Lattner24943d22010-06-08 16:52:24 +00002539 }
2540 else
Greg Clayton527154d2011-11-15 03:53:30 +00002541 {
2542 error.SetErrorString ("invalid process name");
Greg Claytone4b9c1f2011-03-08 22:40:15 +00002543 }
2544 }
Greg Clayton527154d2011-11-15 03:53:30 +00002545
2546 if (attach_pid != LLDB_INVALID_PROCESS_ID)
Greg Claytone4b9c1f2011-03-08 22:40:15 +00002547 {
Greg Clayton527154d2011-11-15 03:53:30 +00002548 error = WillAttachToProcessWithID(attach_pid);
Greg Claytone4b9c1f2011-03-08 22:40:15 +00002549 if (error.Success())
Chris Lattner24943d22010-06-08 16:52:24 +00002550 {
Greg Claytonffa43a62011-11-17 04:46:02 +00002551 m_should_detach = true;
Greg Claytone4b9c1f2011-03-08 22:40:15 +00002552 SetPublicState (eStateAttaching);
Greg Clayton527154d2011-11-15 03:53:30 +00002553
2554 error = DoAttachToProcessWithID (attach_pid);
2555 if (error.Success())
2556 {
2557
2558 SetNextEventAction(new Process::AttachCompletionHandler(this, attach_info.GetResumeCount()));
2559 StartPrivateStateThread();
2560 }
2561 else
Greg Claytone4b9c1f2011-03-08 22:40:15 +00002562 {
2563 if (GetID() != LLDB_INVALID_PROCESS_ID)
2564 {
2565 SetID (LLDB_INVALID_PROCESS_ID);
2566 const char *error_string = error.AsCString();
2567 if (error_string == NULL)
2568 error_string = "attach failed";
2569
2570 SetExitStatus(-1, error_string);
2571 }
2572 }
Chris Lattner24943d22010-06-08 16:52:24 +00002573 }
2574 }
2575 return error;
2576}
2577
Greg Clayton527154d2011-11-15 03:53:30 +00002578//Error
2579//Process::Attach (const char *process_name, bool wait_for_launch)
2580//{
2581// m_abi_sp.reset();
2582// m_process_input_reader.reset();
2583//
2584// // Find the process and its architecture. Make sure it matches the architecture
2585// // of the current Target, and if not adjust it.
2586// Error error;
2587//
2588// if (!wait_for_launch)
2589// {
2590// ProcessInstanceInfoList process_infos;
2591// PlatformSP platform_sp (m_target.GetPlatform ());
2592// assert (platform_sp.get());
2593//
2594// if (platform_sp)
2595// {
2596// ProcessInstanceInfoMatch match_info;
2597// match_info.GetProcessInfo().SetName(process_name);
2598// match_info.SetNameMatchType (eNameMatchEquals);
2599// platform_sp->FindProcesses (match_info, process_infos);
2600// if (process_infos.GetSize() > 1)
2601// {
2602// error.SetErrorStringWithFormat ("more than one process named %s", process_name);
2603// }
2604// else if (process_infos.GetSize() == 0)
2605// {
2606// error.SetErrorStringWithFormat ("could not find a process named %s", process_name);
2607// }
2608// }
2609// else
2610// {
2611// error.SetErrorString ("invalid platform");
2612// }
2613// }
2614//
2615// if (error.Success())
2616// {
2617// m_dyld_ap.reset();
2618// m_os_ap.reset();
2619//
2620// error = WillAttachToProcessWithName(process_name, wait_for_launch);
2621// if (error.Success())
2622// {
2623// SetPublicState (eStateAttaching);
2624// error = DoAttachToProcessWithName (process_name, wait_for_launch);
2625// if (error.Fail())
2626// {
2627// if (GetID() != LLDB_INVALID_PROCESS_ID)
2628// {
2629// SetID (LLDB_INVALID_PROCESS_ID);
2630// const char *error_string = error.AsCString();
2631// if (error_string == NULL)
2632// error_string = "attach failed";
2633//
2634// SetExitStatus(-1, error_string);
2635// }
2636// }
2637// else
2638// {
2639// SetNextEventAction(new Process::AttachCompletionHandler(this, 0));
2640// StartPrivateStateThread();
2641// }
2642// }
2643// }
2644// return error;
2645//}
2646
Greg Clayton75c703d2011-02-16 04:46:07 +00002647void
2648Process::CompleteAttach ()
2649{
2650 // Let the process subclass figure out at much as it can about the process
2651 // before we go looking for a dynamic loader plug-in.
2652 DidAttach();
2653
Jim Ingham0d7f7772011-09-15 01:10:17 +00002654 // We just attached. If we have a platform, ask it for the process architecture, and if it isn't
2655 // the same as the one we've already set, switch architectures.
2656 PlatformSP platform_sp (m_target.GetPlatform ());
2657 assert (platform_sp.get());
2658 if (platform_sp)
2659 {
2660 ProcessInstanceInfo process_info;
2661 platform_sp->GetProcessInfo (GetID(), process_info);
2662 const ArchSpec &process_arch = process_info.GetArchitecture();
2663 if (process_arch.IsValid() && m_target.GetArchitecture() != process_arch)
2664 m_target.SetArchitecture (process_arch);
2665 }
2666
2667 // We have completed the attach, now it is time to find the dynamic loader
Greg Clayton75c703d2011-02-16 04:46:07 +00002668 // plug-in
Greg Clayton9ce95382012-02-13 23:10:39 +00002669 DynamicLoader *dyld = GetDynamicLoader ();
2670 if (dyld)
2671 dyld->DidAttach();
Greg Clayton75c703d2011-02-16 04:46:07 +00002672
Greg Clayton37f962e2011-08-22 02:49:39 +00002673 m_os_ap.reset (OperatingSystem::FindPlugin (this, NULL));
Greg Clayton75c703d2011-02-16 04:46:07 +00002674 // Figure out which one is the executable, and set that in our target:
2675 ModuleList &modules = m_target.GetImages();
2676
2677 size_t num_modules = modules.GetSize();
2678 for (int i = 0; i < num_modules; i++)
2679 {
2680 ModuleSP module_sp (modules.GetModuleAtIndex(i));
Greg Claytonb72d0f02011-04-12 05:54:46 +00002681 if (module_sp && module_sp->IsExecutable())
Greg Clayton75c703d2011-02-16 04:46:07 +00002682 {
Greg Clayton5beb99d2011-08-11 02:48:45 +00002683 if (m_target.GetExecutableModulePointer() != module_sp.get())
Greg Clayton75c703d2011-02-16 04:46:07 +00002684 m_target.SetExecutableModule (module_sp, false);
2685 break;
2686 }
2687 }
2688}
2689
Chris Lattner24943d22010-06-08 16:52:24 +00002690Error
Greg Claytone71e2582011-02-04 01:58:07 +00002691Process::ConnectRemote (const char *remote_url)
2692{
Greg Claytone71e2582011-02-04 01:58:07 +00002693 m_abi_sp.reset();
2694 m_process_input_reader.reset();
2695
2696 // Find the process and its architecture. Make sure it matches the architecture
2697 // of the current Target, and if not adjust it.
2698
2699 Error error (DoConnectRemote (remote_url));
2700 if (error.Success())
2701 {
Greg Claytona2f74232011-02-24 22:24:29 +00002702 if (GetID() != LLDB_INVALID_PROCESS_ID)
2703 {
Greg Clayton24bc5d92011-03-30 18:16:51 +00002704 EventSP event_sp;
2705 StateType state = WaitForProcessStopPrivate(NULL, event_sp);
2706
2707 if (state == eStateStopped || state == eStateCrashed)
2708 {
2709 // If we attached and actually have a process on the other end, then
2710 // this ended up being the equivalent of an attach.
2711 CompleteAttach ();
2712
2713 // This delays passing the stopped event to listeners till
2714 // CompleteAttach gets a chance to complete...
2715 HandlePrivateEvent (event_sp);
2716
2717 }
Greg Claytona2f74232011-02-24 22:24:29 +00002718 }
Greg Clayton24bc5d92011-03-30 18:16:51 +00002719
2720 if (PrivateStateThreadIsValid ())
2721 ResumePrivateStateThread ();
2722 else
2723 StartPrivateStateThread ();
Greg Claytone71e2582011-02-04 01:58:07 +00002724 }
2725 return error;
2726}
2727
2728
2729Error
Chris Lattner24943d22010-06-08 16:52:24 +00002730Process::Resume ()
2731{
Greg Claytone005f2c2010-11-06 01:53:30 +00002732 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner24943d22010-06-08 16:52:24 +00002733 if (log)
Jim Inghamac959662011-01-24 06:34:17 +00002734 log->Printf("Process::Resume() m_stop_id = %u, public state: %s private state: %s",
Jim Ingham21f37ad2011-08-09 02:12:22 +00002735 m_mod_id.GetStopID(),
Jim Inghamac959662011-01-24 06:34:17 +00002736 StateAsCString(m_public_state.GetValue()),
2737 StateAsCString(m_private_state.GetValue()));
Chris Lattner24943d22010-06-08 16:52:24 +00002738
2739 Error error (WillResume());
2740 // Tell the process it is about to resume before the thread list
2741 if (error.Success())
2742 {
Johnny Chen9c11d472010-12-02 20:53:05 +00002743 // Now let the thread list know we are about to resume so it
Chris Lattner24943d22010-06-08 16:52:24 +00002744 // can let all of our threads know that they are about to be
2745 // resumed. Threads will each be called with
2746 // Thread::WillResume(StateType) where StateType contains the state
2747 // that they are supposed to have when the process is resumed
2748 // (suspended/running/stepping). Threads should also check
2749 // their resume signal in lldb::Thread::GetResumeSignal()
2750 // to see if they are suppoed to start back up with a signal.
2751 if (m_thread_list.WillResume())
2752 {
Jim Ingham0296fe72011-11-08 03:00:11 +00002753 m_mod_id.BumpResumeID();
Chris Lattner24943d22010-06-08 16:52:24 +00002754 error = DoResume();
2755 if (error.Success())
2756 {
2757 DidResume();
2758 m_thread_list.DidResume();
Jim Inghamac959662011-01-24 06:34:17 +00002759 if (log)
2760 log->Printf ("Process thinks the process has resumed.");
Chris Lattner24943d22010-06-08 16:52:24 +00002761 }
2762 }
2763 else
2764 {
Jim Inghamac959662011-01-24 06:34:17 +00002765 error.SetErrorStringWithFormat("Process::WillResume() thread list returned false after WillResume");
Chris Lattner24943d22010-06-08 16:52:24 +00002766 }
2767 }
Jim Inghamac959662011-01-24 06:34:17 +00002768 else if (log)
2769 log->Printf ("Process::WillResume() got an error \"%s\".", error.AsCString("<unknown error>"));
Chris Lattner24943d22010-06-08 16:52:24 +00002770 return error;
2771}
2772
2773Error
2774Process::Halt ()
2775{
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002776 // Pause our private state thread so we can ensure no one else eats
2777 // the stop event out from under us.
Jim Inghamf9f40c22011-02-08 05:20:59 +00002778 Listener halt_listener ("lldb.process.halt_listener");
2779 HijackPrivateProcessEvents(&halt_listener);
Greg Clayton20d338f2010-11-18 05:57:03 +00002780
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002781 EventSP event_sp;
Greg Clayton7e2f91c2011-01-29 07:10:55 +00002782 Error error (WillHalt());
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002783
Greg Clayton7e2f91c2011-01-29 07:10:55 +00002784 if (error.Success())
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002785 {
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002786
Greg Clayton7e2f91c2011-01-29 07:10:55 +00002787 bool caused_stop = false;
2788
2789 // Ask the process subclass to actually halt our process
2790 error = DoHalt(caused_stop);
Chris Lattner24943d22010-06-08 16:52:24 +00002791 if (error.Success())
Jim Ingham3ae449a2010-11-17 02:32:00 +00002792 {
Greg Clayton7e2f91c2011-01-29 07:10:55 +00002793 if (m_public_state.GetValue() == eStateAttaching)
2794 {
2795 SetExitStatus(SIGKILL, "Cancelled async attach.");
2796 Destroy ();
2797 }
2798 else
Jim Ingham3ae449a2010-11-17 02:32:00 +00002799 {
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002800 // If "caused_stop" is true, then DoHalt stopped the process. If
2801 // "caused_stop" is false, the process was already stopped.
2802 // If the DoHalt caused the process to stop, then we want to catch
2803 // this event and set the interrupted bool to true before we pass
2804 // this along so clients know that the process was interrupted by
2805 // a halt command.
2806 if (caused_stop)
Greg Clayton20d338f2010-11-18 05:57:03 +00002807 {
Jim Inghamf9f40c22011-02-08 05:20:59 +00002808 // Wait for 1 second for the process to stop.
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002809 TimeValue timeout_time;
2810 timeout_time = TimeValue::Now();
2811 timeout_time.OffsetWithSeconds(1);
Jim Inghamf9f40c22011-02-08 05:20:59 +00002812 bool got_event = halt_listener.WaitForEvent (&timeout_time, event_sp);
2813 StateType state = ProcessEventData::GetStateFromEvent(event_sp.get());
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002814
Jim Inghamf9f40c22011-02-08 05:20:59 +00002815 if (!got_event || state == eStateInvalid)
Greg Clayton20d338f2010-11-18 05:57:03 +00002816 {
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002817 // We timeout out and didn't get a stop event...
Jim Inghamf9f40c22011-02-08 05:20:59 +00002818 error.SetErrorStringWithFormat ("Halt timed out. State = %s", StateAsCString(GetState()));
Greg Clayton20d338f2010-11-18 05:57:03 +00002819 }
2820 else
2821 {
Greg Clayton20206082011-11-17 01:23:07 +00002822 if (StateIsStoppedState (state, false))
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002823 {
2824 // We caused the process to interrupt itself, so mark this
2825 // as such in the stop event so clients can tell an interrupted
2826 // process from a natural stop
2827 ProcessEventData::SetInterruptedInEvent (event_sp.get(), true);
2828 }
2829 else
2830 {
2831 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2832 if (log)
2833 log->Printf("Process::Halt() failed to stop, state is: %s", StateAsCString(state));
2834 error.SetErrorString ("Did not get stopped event after halt.");
2835 }
Greg Clayton20d338f2010-11-18 05:57:03 +00002836 }
2837 }
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002838 DidHalt();
Jim Ingham3ae449a2010-11-17 02:32:00 +00002839 }
2840 }
Chris Lattner24943d22010-06-08 16:52:24 +00002841 }
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002842 // Resume our private state thread before we post the event (if any)
Jim Inghamf9f40c22011-02-08 05:20:59 +00002843 RestorePrivateProcessEvents();
Jim Inghamc2dc7c82011-01-29 01:49:25 +00002844
2845 // Post any event we might have consumed. If all goes well, we will have
2846 // stopped the process, intercepted the event and set the interrupted
2847 // bool in the event. Post it to the private event queue and that will end up
2848 // correctly setting the state.
2849 if (event_sp)
2850 m_private_state_broadcaster.BroadcastEvent(event_sp);
2851
Chris Lattner24943d22010-06-08 16:52:24 +00002852 return error;
2853}
2854
2855Error
2856Process::Detach ()
2857{
2858 Error error (WillDetach());
2859
2860 if (error.Success())
2861 {
2862 DisableAllBreakpointSites();
2863 error = DoDetach();
2864 if (error.Success())
2865 {
2866 DidDetach();
2867 StopPrivateStateThread();
2868 }
2869 }
2870 return error;
2871}
2872
2873Error
2874Process::Destroy ()
2875{
2876 Error error (WillDestroy());
2877 if (error.Success())
2878 {
2879 DisableAllBreakpointSites();
2880 error = DoDestroy();
2881 if (error.Success())
2882 {
2883 DidDestroy();
2884 StopPrivateStateThread();
2885 }
Caroline Tice861efb32010-11-16 05:07:41 +00002886 m_stdio_communication.StopReadThread();
2887 m_stdio_communication.Disconnect();
2888 if (m_process_input_reader && m_process_input_reader->IsActive())
2889 m_target.GetDebugger().PopInputReader (m_process_input_reader);
2890 if (m_process_input_reader)
2891 m_process_input_reader.reset();
Chris Lattner24943d22010-06-08 16:52:24 +00002892 }
2893 return error;
2894}
2895
2896Error
2897Process::Signal (int signal)
2898{
2899 Error error (WillSignal());
2900 if (error.Success())
2901 {
2902 error = DoSignal(signal);
2903 if (error.Success())
2904 DidSignal();
2905 }
2906 return error;
2907}
2908
Greg Clayton395fc332011-02-15 21:59:32 +00002909lldb::ByteOrder
2910Process::GetByteOrder () const
Chris Lattner24943d22010-06-08 16:52:24 +00002911{
Greg Clayton395fc332011-02-15 21:59:32 +00002912 return m_target.GetArchitecture().GetByteOrder();
Chris Lattner24943d22010-06-08 16:52:24 +00002913}
2914
2915uint32_t
Greg Clayton395fc332011-02-15 21:59:32 +00002916Process::GetAddressByteSize () const
Chris Lattner24943d22010-06-08 16:52:24 +00002917{
Greg Clayton395fc332011-02-15 21:59:32 +00002918 return m_target.GetArchitecture().GetAddressByteSize();
Chris Lattner24943d22010-06-08 16:52:24 +00002919}
2920
Greg Clayton395fc332011-02-15 21:59:32 +00002921
Chris Lattner24943d22010-06-08 16:52:24 +00002922bool
2923Process::ShouldBroadcastEvent (Event *event_ptr)
2924{
2925 const StateType state = Process::ProcessEventData::GetStateFromEvent (event_ptr);
2926 bool return_value = true;
Greg Claytone005f2c2010-11-06 01:53:30 +00002927 LogSP log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
Chris Lattner24943d22010-06-08 16:52:24 +00002928
2929 switch (state)
2930 {
Greg Claytone71e2582011-02-04 01:58:07 +00002931 case eStateConnected:
Chris Lattner24943d22010-06-08 16:52:24 +00002932 case eStateAttaching:
2933 case eStateLaunching:
2934 case eStateDetached:
2935 case eStateExited:
2936 case eStateUnloaded:
2937 // These events indicate changes in the state of the debugging session, always report them.
2938 return_value = true;
2939 break;
2940 case eStateInvalid:
2941 // We stopped for no apparent reason, don't report it.
2942 return_value = false;
2943 break;
2944 case eStateRunning:
2945 case eStateStepping:
2946 // If we've started the target running, we handle the cases where we
2947 // are already running and where there is a transition from stopped to
2948 // running differently.
2949 // running -> running: Automatically suppress extra running events
2950 // stopped -> running: Report except when there is one or more no votes
2951 // and no yes votes.
2952 SynchronouslyNotifyStateChanged (state);
2953 switch (m_public_state.GetValue())
2954 {
2955 case eStateRunning:
2956 case eStateStepping:
2957 // We always suppress multiple runnings with no PUBLIC stop in between.
2958 return_value = false;
2959 break;
2960 default:
2961 // TODO: make this work correctly. For now always report
2962 // run if we aren't running so we don't miss any runnning
2963 // events. If I run the lldb/test/thread/a.out file and
2964 // break at main.cpp:58, run and hit the breakpoints on
2965 // multiple threads, then somehow during the stepping over
2966 // of all breakpoints no run gets reported.
2967 return_value = true;
2968
2969 // This is a transition from stop to run.
2970 switch (m_thread_list.ShouldReportRun (event_ptr))
2971 {
2972 case eVoteYes:
2973 case eVoteNoOpinion:
2974 return_value = true;
2975 break;
2976 case eVoteNo:
2977 return_value = false;
2978 break;
2979 }
2980 break;
2981 }
2982 break;
2983 case eStateStopped:
2984 case eStateCrashed:
2985 case eStateSuspended:
2986 {
2987 // We've stopped. First see if we're going to restart the target.
2988 // If we are going to stop, then we always broadcast the event.
2989 // If we aren't going to stop, let the thread plans decide if we're going to report this event.
Jim Ingham5a47e8b2010-06-19 04:45:32 +00002990 // If no thread has an opinion, we don't report it.
Jim Ingham3ae449a2010-11-17 02:32:00 +00002991 if (ProcessEventData::GetInterruptedFromEvent (event_ptr))
Chris Lattner24943d22010-06-08 16:52:24 +00002992 {
Greg Clayton20d338f2010-11-18 05:57:03 +00002993 if (log)
2994 log->Printf ("Process::ShouldBroadcastEvent (%p) stopped due to an interrupt, state: %s", event_ptr, StateAsCString(state));
Jim Ingham3ae449a2010-11-17 02:32:00 +00002995 return true;
2996 }
2997 else
2998 {
Chris Lattner24943d22010-06-08 16:52:24 +00002999 RefreshStateAfterStop ();
3000
3001 if (m_thread_list.ShouldStop (event_ptr) == false)
3002 {
3003 switch (m_thread_list.ShouldReportStop (event_ptr))
3004 {
3005 case eVoteYes:
3006 Process::ProcessEventData::SetRestartedInEvent (event_ptr, true);
Johnny Chen028784b2010-10-14 00:54:32 +00003007 // Intentional fall-through here.
Chris Lattner24943d22010-06-08 16:52:24 +00003008 case eVoteNoOpinion:
Chris Lattner24943d22010-06-08 16:52:24 +00003009 case eVoteNo:
3010 return_value = false;
3011 break;
3012 }
3013
3014 if (log)
Jim Ingham3ae449a2010-11-17 02:32:00 +00003015 log->Printf ("Process::ShouldBroadcastEvent (%p) Restarting process from state: %s", event_ptr, StateAsCString(state));
Chris Lattner24943d22010-06-08 16:52:24 +00003016 Resume ();
3017 }
3018 else
3019 {
3020 return_value = true;
3021 SynchronouslyNotifyStateChanged (state);
3022 }
3023 }
3024 }
3025 }
3026
3027 if (log)
Jason Molenda7e5fa7f2011-09-20 21:44:10 +00003028 log->Printf ("Process::ShouldBroadcastEvent (%p) => %s - %s", event_ptr, StateAsCString(state), return_value ? "YES" : "NO");
Chris Lattner24943d22010-06-08 16:52:24 +00003029 return return_value;
3030}
3031
Chris Lattner24943d22010-06-08 16:52:24 +00003032
3033bool
3034Process::StartPrivateStateThread ()
3035{
Greg Claytone005f2c2010-11-06 01:53:30 +00003036 LogSP log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
Chris Lattner24943d22010-06-08 16:52:24 +00003037
Greg Claytonb72d0f02011-04-12 05:54:46 +00003038 bool already_running = PrivateStateThreadIsValid ();
Chris Lattner24943d22010-06-08 16:52:24 +00003039 if (log)
Greg Claytonb72d0f02011-04-12 05:54:46 +00003040 log->Printf ("Process::%s()%s ", __FUNCTION__, already_running ? " already running" : " starting private state thread");
3041
3042 if (already_running)
3043 return true;
Chris Lattner24943d22010-06-08 16:52:24 +00003044
3045 // Create a thread that watches our internal state and controls which
3046 // events make it to clients (into the DCProcess event queue).
Greg Claytona875b642011-01-09 21:07:35 +00003047 char thread_name[1024];
Greg Clayton444e35b2011-10-19 18:09:39 +00003048 snprintf(thread_name, sizeof(thread_name), "<lldb.process.internal-state(pid=%llu)>", GetID());
Greg Claytona875b642011-01-09 21:07:35 +00003049 m_private_state_thread = Host::ThreadCreate (thread_name, Process::PrivateStateThread, this, NULL);
Greg Clayton09c81ef2011-02-08 01:34:25 +00003050 return IS_VALID_LLDB_HOST_THREAD(m_private_state_thread);
Chris Lattner24943d22010-06-08 16:52:24 +00003051}
3052
3053void
3054Process::PausePrivateStateThread ()
3055{
3056 ControlPrivateStateThread (eBroadcastInternalStateControlPause);
3057}
3058
3059void
3060Process::ResumePrivateStateThread ()
3061{
3062 ControlPrivateStateThread (eBroadcastInternalStateControlResume);
3063}
3064
3065void
3066Process::StopPrivateStateThread ()
3067{
Greg Claytonb72d0f02011-04-12 05:54:46 +00003068 if (PrivateStateThreadIsValid ())
3069 ControlPrivateStateThread (eBroadcastInternalStateControlStop);
Chris Lattner24943d22010-06-08 16:52:24 +00003070}
3071
3072void
3073Process::ControlPrivateStateThread (uint32_t signal)
3074{
Greg Claytone005f2c2010-11-06 01:53:30 +00003075 LogSP log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EVENTS));
Chris Lattner24943d22010-06-08 16:52:24 +00003076
3077 assert (signal == eBroadcastInternalStateControlStop ||
3078 signal == eBroadcastInternalStateControlPause ||
3079 signal == eBroadcastInternalStateControlResume);
3080
3081 if (log)
Greg Claytonf4fbc0b2011-01-22 17:43:17 +00003082 log->Printf ("Process::%s (signal = %d)", __FUNCTION__, signal);
Chris Lattner24943d22010-06-08 16:52:24 +00003083
Greg Claytonf4fbc0b2011-01-22 17:43:17 +00003084 // Signal the private state thread. First we should copy this is case the
3085 // thread starts exiting since the private state thread will NULL this out
3086 // when it exits
3087 const lldb::thread_t private_state_thread = m_private_state_thread;
Greg Clayton09c81ef2011-02-08 01:34:25 +00003088 if (IS_VALID_LLDB_HOST_THREAD(private_state_thread))
Chris Lattner24943d22010-06-08 16:52:24 +00003089 {
3090 TimeValue timeout_time;
3091 bool timed_out;
3092
3093 m_private_state_control_broadcaster.BroadcastEvent (signal, NULL);
3094
3095 timeout_time = TimeValue::Now();
3096 timeout_time.OffsetWithSeconds(2);
3097 m_private_state_control_wait.WaitForValueEqualTo (true, &timeout_time, &timed_out);
3098 m_private_state_control_wait.SetValue (false, eBroadcastNever);
3099
3100 if (signal == eBroadcastInternalStateControlStop)
3101 {
3102 if (timed_out)
Greg Claytonf4fbc0b2011-01-22 17:43:17 +00003103 Host::ThreadCancel (private_state_thread, NULL);
Chris Lattner24943d22010-06-08 16:52:24 +00003104
3105 thread_result_t result = NULL;
Greg Claytonf4fbc0b2011-01-22 17:43:17 +00003106 Host::ThreadJoin (private_state_thread, &result, NULL);
Greg Claytonc607d862010-07-22 18:34:21 +00003107 m_private_state_thread = LLDB_INVALID_HOST_THREAD;
Chris Lattner24943d22010-06-08 16:52:24 +00003108 }
3109 }
3110}
3111
3112void
3113Process::HandlePrivateEvent (EventSP &event_sp)
3114{
Greg Claytone005f2c2010-11-06 01:53:30 +00003115 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Jim Inghamc2dc7c82011-01-29 01:49:25 +00003116
Greg Clayton68ca8232011-01-25 02:58:48 +00003117 const StateType new_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
Jim Inghamc2dc7c82011-01-29 01:49:25 +00003118
3119 // First check to see if anybody wants a shot at this event:
Jim Ingham68bffc52011-01-29 04:05:41 +00003120 if (m_next_event_action_ap.get() != NULL)
Jim Inghamc2dc7c82011-01-29 01:49:25 +00003121 {
Jim Ingham68bffc52011-01-29 04:05:41 +00003122 NextEventAction::EventActionResult action_result = m_next_event_action_ap->PerformAction(event_sp);
Jim Inghamc2dc7c82011-01-29 01:49:25 +00003123 switch (action_result)
3124 {
3125 case NextEventAction::eEventActionSuccess:
3126 SetNextEventAction(NULL);
3127 break;
Greg Clayton2d9adb72011-11-12 02:10:56 +00003128
Jim Inghamc2dc7c82011-01-29 01:49:25 +00003129 case NextEventAction::eEventActionRetry:
3130 break;
Greg Clayton2d9adb72011-11-12 02:10:56 +00003131
Jim Inghamc2dc7c82011-01-29 01:49:25 +00003132 case NextEventAction::eEventActionExit:
Jim Ingham84c86382011-01-29 01:57:31 +00003133 // Handle Exiting Here. If we already got an exited event,
3134 // we should just propagate it. Otherwise, swallow this event,
3135 // and set our state to exit so the next event will kill us.
3136 if (new_state != eStateExited)
3137 {
3138 // FIXME: should cons up an exited event, and discard this one.
Jim Ingham68bffc52011-01-29 04:05:41 +00003139 SetExitStatus(0, m_next_event_action_ap->GetExitString());
Jim Ingham84c86382011-01-29 01:57:31 +00003140 SetNextEventAction(NULL);
3141 return;
3142 }
3143 SetNextEventAction(NULL);
Jim Inghamc2dc7c82011-01-29 01:49:25 +00003144 break;
3145 }
3146 }
3147
Chris Lattner24943d22010-06-08 16:52:24 +00003148 // See if we should broadcast this state to external clients?
3149 const bool should_broadcast = ShouldBroadcastEvent (event_sp.get());
Chris Lattner24943d22010-06-08 16:52:24 +00003150
3151 if (should_broadcast)
3152 {
3153 if (log)
3154 {
Greg Clayton444e35b2011-10-19 18:09:39 +00003155 log->Printf ("Process::%s (pid = %llu) broadcasting new state %s (old state %s) to %s",
Greg Clayton68ca8232011-01-25 02:58:48 +00003156 __FUNCTION__,
3157 GetID(),
3158 StateAsCString(new_state),
3159 StateAsCString (GetState ()),
3160 IsHijackedForEvent(eBroadcastBitStateChanged) ? "hijacked" : "public");
Chris Lattner24943d22010-06-08 16:52:24 +00003161 }
Jim Inghamd60d94a2011-03-11 03:53:59 +00003162 Process::ProcessEventData::SetUpdateStateOnRemoval(event_sp.get());
Greg Clayton68ca8232011-01-25 02:58:48 +00003163 if (StateIsRunningState (new_state))
Caroline Tice861efb32010-11-16 05:07:41 +00003164 PushProcessInputReader ();
3165 else
3166 PopProcessInputReader ();
Jim Inghamd60d94a2011-03-11 03:53:59 +00003167
Chris Lattner24943d22010-06-08 16:52:24 +00003168 BroadcastEvent (event_sp);
3169 }
3170 else
3171 {
3172 if (log)
3173 {
Greg Clayton444e35b2011-10-19 18:09:39 +00003174 log->Printf ("Process::%s (pid = %llu) suppressing state %s (old state %s): should_broadcast == false",
Greg Clayton68ca8232011-01-25 02:58:48 +00003175 __FUNCTION__,
3176 GetID(),
3177 StateAsCString(new_state),
Jason Molenda7e5fa7f2011-09-20 21:44:10 +00003178 StateAsCString (GetState ()));
Chris Lattner24943d22010-06-08 16:52:24 +00003179 }
3180 }
3181}
3182
3183void *
3184Process::PrivateStateThread (void *arg)
3185{
3186 Process *proc = static_cast<Process*> (arg);
3187 void *result = proc->RunPrivateStateThread ();
Chris Lattner24943d22010-06-08 16:52:24 +00003188 return result;
3189}
3190
3191void *
3192Process::RunPrivateStateThread ()
3193{
3194 bool control_only = false;
3195 m_private_state_control_wait.SetValue (false, eBroadcastNever);
3196
Greg Claytone005f2c2010-11-06 01:53:30 +00003197 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Chris Lattner24943d22010-06-08 16:52:24 +00003198 if (log)
Greg Clayton444e35b2011-10-19 18:09:39 +00003199 log->Printf ("Process::%s (arg = %p, pid = %llu) thread starting...", __FUNCTION__, this, GetID());
Chris Lattner24943d22010-06-08 16:52:24 +00003200
3201 bool exit_now = false;
3202 while (!exit_now)
3203 {
3204 EventSP event_sp;
3205 WaitForEventsPrivate (NULL, event_sp, control_only);
3206 if (event_sp->BroadcasterIs(&m_private_state_control_broadcaster))
3207 {
3208 switch (event_sp->GetType())
3209 {
3210 case eBroadcastInternalStateControlStop:
3211 exit_now = true;
3212 continue; // Go to next loop iteration so we exit without
3213 break; // doing any internal state managment below
3214
3215 case eBroadcastInternalStateControlPause:
3216 control_only = true;
3217 break;
3218
3219 case eBroadcastInternalStateControlResume:
3220 control_only = false;
3221 break;
3222 }
Jim Ingham3ae449a2010-11-17 02:32:00 +00003223
Jim Ingham3ae449a2010-11-17 02:32:00 +00003224 if (log)
Greg Clayton444e35b2011-10-19 18:09:39 +00003225 log->Printf ("Process::%s (arg = %p, pid = %llu) got a control event: %d", __FUNCTION__, this, GetID(), event_sp->GetType());
Jim Ingham3ae449a2010-11-17 02:32:00 +00003226
Chris Lattner24943d22010-06-08 16:52:24 +00003227 m_private_state_control_wait.SetValue (true, eBroadcastAlways);
Jim Ingham3ae449a2010-11-17 02:32:00 +00003228 continue;
Chris Lattner24943d22010-06-08 16:52:24 +00003229 }
3230
3231
3232 const StateType internal_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
3233
3234 if (internal_state != eStateInvalid)
3235 {
3236 HandlePrivateEvent (event_sp);
3237 }
3238
Greg Clayton3b2c41c2010-10-18 04:14:23 +00003239 if (internal_state == eStateInvalid ||
3240 internal_state == eStateExited ||
3241 internal_state == eStateDetached )
Jim Ingham3ae449a2010-11-17 02:32:00 +00003242 {
Jim Ingham3ae449a2010-11-17 02:32:00 +00003243 if (log)
Greg Clayton444e35b2011-10-19 18:09:39 +00003244 log->Printf ("Process::%s (arg = %p, pid = %llu) about to exit with internal state %s...", __FUNCTION__, this, GetID(), StateAsCString(internal_state));
Jim Ingham3ae449a2010-11-17 02:32:00 +00003245
Chris Lattner24943d22010-06-08 16:52:24 +00003246 break;
Jim Ingham3ae449a2010-11-17 02:32:00 +00003247 }
Chris Lattner24943d22010-06-08 16:52:24 +00003248 }
3249
Caroline Tice926060e2010-10-29 21:48:37 +00003250 // Verify log is still enabled before attempting to write to it...
Chris Lattner24943d22010-06-08 16:52:24 +00003251 if (log)
Greg Clayton444e35b2011-10-19 18:09:39 +00003252 log->Printf ("Process::%s (arg = %p, pid = %llu) thread exiting...", __FUNCTION__, this, GetID());
Chris Lattner24943d22010-06-08 16:52:24 +00003253
Greg Claytona4881d02011-01-22 07:12:45 +00003254 m_private_state_control_wait.SetValue (true, eBroadcastAlways);
3255 m_private_state_thread = LLDB_INVALID_HOST_THREAD;
Chris Lattner24943d22010-06-08 16:52:24 +00003256 return NULL;
3257}
3258
Chris Lattner24943d22010-06-08 16:52:24 +00003259//------------------------------------------------------------------
3260// Process Event Data
3261//------------------------------------------------------------------
3262
3263Process::ProcessEventData::ProcessEventData () :
3264 EventData (),
3265 m_process_sp (),
3266 m_state (eStateInvalid),
Greg Clayton54e7afa2010-07-09 20:39:50 +00003267 m_restarted (false),
Jim Ingham6cf4d2b2011-05-22 21:45:01 +00003268 m_update_state (0),
Jim Ingham3ae449a2010-11-17 02:32:00 +00003269 m_interrupted (false)
Chris Lattner24943d22010-06-08 16:52:24 +00003270{
3271}
3272
3273Process::ProcessEventData::ProcessEventData (const ProcessSP &process_sp, StateType state) :
3274 EventData (),
3275 m_process_sp (process_sp),
3276 m_state (state),
Greg Clayton54e7afa2010-07-09 20:39:50 +00003277 m_restarted (false),
Jim Ingham6cf4d2b2011-05-22 21:45:01 +00003278 m_update_state (0),
Jim Ingham3ae449a2010-11-17 02:32:00 +00003279 m_interrupted (false)
Chris Lattner24943d22010-06-08 16:52:24 +00003280{
3281}
3282
3283Process::ProcessEventData::~ProcessEventData()
3284{
3285}
3286
3287const ConstString &
3288Process::ProcessEventData::GetFlavorString ()
3289{
3290 static ConstString g_flavor ("Process::ProcessEventData");
3291 return g_flavor;
3292}
3293
3294const ConstString &
3295Process::ProcessEventData::GetFlavor () const
3296{
3297 return ProcessEventData::GetFlavorString ();
3298}
3299
Chris Lattner24943d22010-06-08 16:52:24 +00003300void
3301Process::ProcessEventData::DoOnRemoval (Event *event_ptr)
3302{
3303 // This function gets called twice for each event, once when the event gets pulled
Jim Ingham6cf4d2b2011-05-22 21:45:01 +00003304 // off of the private process event queue, and then any number of times, first when it gets pulled off of
3305 // the public event queue, then other times when we're pretending that this is where we stopped at the
3306 // end of expression evaluation. m_update_state is used to distinguish these
3307 // three cases; it is 0 when we're just pulling it off for private handling,
3308 // and > 1 for expression evaluation, and we don't want to do the breakpoint command handling then.
Chris Lattner24943d22010-06-08 16:52:24 +00003309
Jim Ingham6cf4d2b2011-05-22 21:45:01 +00003310 if (m_update_state != 1)
Chris Lattner24943d22010-06-08 16:52:24 +00003311 return;
3312
3313 m_process_sp->SetPublicState (m_state);
3314
3315 // If we're stopped and haven't restarted, then do the breakpoint commands here:
3316 if (m_state == eStateStopped && ! m_restarted)
Jim Ingham0296fe72011-11-08 03:00:11 +00003317 {
3318 ThreadList &curr_thread_list = m_process_sp->GetThreadList();
Greg Claytond9919d32011-12-01 23:28:38 +00003319 uint32_t num_threads = curr_thread_list.GetSize();
3320 uint32_t idx;
Greg Clayton643ee732010-08-04 01:40:35 +00003321
Jim Ingham21f37ad2011-08-09 02:12:22 +00003322 // The actions might change one of the thread's stop_info's opinions about whether we should
3323 // stop the process, so we need to query that as we go.
Jim Ingham0296fe72011-11-08 03:00:11 +00003324
3325 // One other complication here, is that we try to catch any case where the target has run (except for expressions)
3326 // and immediately exit, but if we get that wrong (which is possible) then the thread list might have changed, and
3327 // that would cause our iteration here to crash. We could make a copy of the thread list, but we'd really like
3328 // 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
3329 // against this list & bag out if anything differs.
Greg Claytond9919d32011-12-01 23:28:38 +00003330 std::vector<uint32_t> thread_index_array(num_threads);
Jim Ingham0296fe72011-11-08 03:00:11 +00003331 for (idx = 0; idx < num_threads; ++idx)
3332 thread_index_array[idx] = curr_thread_list.GetThreadAtIndex(idx)->GetIndexID();
3333
Jim Ingham21f37ad2011-08-09 02:12:22 +00003334 bool still_should_stop = true;
3335
Chris Lattner24943d22010-06-08 16:52:24 +00003336 for (idx = 0; idx < num_threads; ++idx)
3337 {
Jim Ingham0296fe72011-11-08 03:00:11 +00003338 curr_thread_list = m_process_sp->GetThreadList();
3339 if (curr_thread_list.GetSize() != num_threads)
3340 {
3341 lldb::LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP | LIBLLDB_LOG_PROCESS));
Jim Ingham60526c42011-12-01 20:26:15 +00003342 if (log)
Greg Claytond9919d32011-12-01 23:28:38 +00003343 log->Printf("Number of threads changed from %u to %u while processing event.", num_threads, curr_thread_list.GetSize());
Jim Ingham0296fe72011-11-08 03:00:11 +00003344 break;
3345 }
3346
3347 lldb::ThreadSP thread_sp = curr_thread_list.GetThreadAtIndex(idx);
3348
3349 if (thread_sp->GetIndexID() != thread_index_array[idx])
3350 {
3351 lldb::LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP | LIBLLDB_LOG_PROCESS));
Jim Ingham60526c42011-12-01 20:26:15 +00003352 if (log)
Greg Claytond9919d32011-12-01 23:28:38 +00003353 log->Printf("The thread at position %u changed from %u to %u while processing event.",
Jim Ingham60526c42011-12-01 20:26:15 +00003354 idx,
3355 thread_index_array[idx],
3356 thread_sp->GetIndexID());
Jim Ingham0296fe72011-11-08 03:00:11 +00003357 break;
3358 }
3359
Jim Ingham6297a3a2010-10-20 00:39:53 +00003360 StopInfoSP stop_info_sp = thread_sp->GetStopInfo ();
3361 if (stop_info_sp)
Chris Lattner24943d22010-06-08 16:52:24 +00003362 {
Jim Ingham6297a3a2010-10-20 00:39:53 +00003363 stop_info_sp->PerformAction(event_ptr);
Jim Ingham21f37ad2011-08-09 02:12:22 +00003364 // The stop action might restart the target. If it does, then we want to mark that in the
3365 // event so that whoever is receiving it will know to wait for the running event and reflect
3366 // that state appropriately.
3367 // We also need to stop processing actions, since they aren't expecting the target to be running.
Jim Ingham0296fe72011-11-08 03:00:11 +00003368
3369 // FIXME: we might have run.
3370 if (stop_info_sp->HasTargetRunSinceMe())
Jim Ingham21f37ad2011-08-09 02:12:22 +00003371 {
3372 SetRestarted (true);
3373 break;
3374 }
3375 else if (!stop_info_sp->ShouldStop(event_ptr))
3376 {
3377 still_should_stop = false;
3378 }
Chris Lattner24943d22010-06-08 16:52:24 +00003379 }
3380 }
Jim Ingham6fb8baa2010-08-10 00:59:59 +00003381
Jim Ingham21f37ad2011-08-09 02:12:22 +00003382
3383 if (m_process_sp->GetPrivateState() != eStateRunning)
Jim Inghamd60d94a2011-03-11 03:53:59 +00003384 {
Jim Ingham21f37ad2011-08-09 02:12:22 +00003385 if (!still_should_stop)
3386 {
3387 // We've been asked to continue, so do that here.
Jim Inghamd60d94a2011-03-11 03:53:59 +00003388 SetRestarted(true);
Jim Ingham21f37ad2011-08-09 02:12:22 +00003389 m_process_sp->Resume();
3390 }
3391 else
3392 {
3393 // If we didn't restart, run the Stop Hooks here:
3394 // They might also restart the target, so watch for that.
3395 m_process_sp->GetTarget().RunStopHooks();
3396 if (m_process_sp->GetPrivateState() == eStateRunning)
3397 SetRestarted(true);
3398 }
Jim Inghamd60d94a2011-03-11 03:53:59 +00003399 }
3400
Chris Lattner24943d22010-06-08 16:52:24 +00003401 }
3402}
3403
3404void
3405Process::ProcessEventData::Dump (Stream *s) const
3406{
3407 if (m_process_sp)
Greg Clayton444e35b2011-10-19 18:09:39 +00003408 s->Printf(" process = %p (pid = %llu), ", m_process_sp.get(), m_process_sp->GetID());
Chris Lattner24943d22010-06-08 16:52:24 +00003409
Greg Claytonb72d0f02011-04-12 05:54:46 +00003410 s->Printf("state = %s", StateAsCString(GetState()));
Chris Lattner24943d22010-06-08 16:52:24 +00003411}
3412
3413const Process::ProcessEventData *
3414Process::ProcessEventData::GetEventDataFromEvent (const Event *event_ptr)
3415{
3416 if (event_ptr)
3417 {
3418 const EventData *event_data = event_ptr->GetData();
3419 if (event_data && event_data->GetFlavor() == ProcessEventData::GetFlavorString())
3420 return static_cast <const ProcessEventData *> (event_ptr->GetData());
3421 }
3422 return NULL;
3423}
3424
3425ProcessSP
3426Process::ProcessEventData::GetProcessFromEvent (const Event *event_ptr)
3427{
3428 ProcessSP process_sp;
3429 const ProcessEventData *data = GetEventDataFromEvent (event_ptr);
3430 if (data)
3431 process_sp = data->GetProcessSP();
3432 return process_sp;
3433}
3434
3435StateType
3436Process::ProcessEventData::GetStateFromEvent (const Event *event_ptr)
3437{
3438 const ProcessEventData *data = GetEventDataFromEvent (event_ptr);
3439 if (data == NULL)
3440 return eStateInvalid;
3441 else
3442 return data->GetState();
3443}
3444
3445bool
3446Process::ProcessEventData::GetRestartedFromEvent (const Event *event_ptr)
3447{
3448 const ProcessEventData *data = GetEventDataFromEvent (event_ptr);
3449 if (data == NULL)
3450 return false;
3451 else
3452 return data->GetRestarted();
3453}
3454
3455void
3456Process::ProcessEventData::SetRestartedInEvent (Event *event_ptr, bool new_value)
3457{
3458 ProcessEventData *data = const_cast<ProcessEventData *>(GetEventDataFromEvent (event_ptr));
3459 if (data != NULL)
3460 data->SetRestarted(new_value);
3461}
3462
3463bool
Jim Ingham3ae449a2010-11-17 02:32:00 +00003464Process::ProcessEventData::GetInterruptedFromEvent (const Event *event_ptr)
3465{
3466 const ProcessEventData *data = GetEventDataFromEvent (event_ptr);
3467 if (data == NULL)
3468 return false;
3469 else
3470 return data->GetInterrupted ();
3471}
3472
3473void
3474Process::ProcessEventData::SetInterruptedInEvent (Event *event_ptr, bool new_value)
3475{
3476 ProcessEventData *data = const_cast<ProcessEventData *>(GetEventDataFromEvent (event_ptr));
3477 if (data != NULL)
3478 data->SetInterrupted(new_value);
3479}
3480
3481bool
Chris Lattner24943d22010-06-08 16:52:24 +00003482Process::ProcessEventData::SetUpdateStateOnRemoval (Event *event_ptr)
3483{
3484 ProcessEventData *data = const_cast<ProcessEventData *>(GetEventDataFromEvent (event_ptr));
3485 if (data)
3486 {
3487 data->SetUpdateStateOnRemoval();
3488 return true;
3489 }
3490 return false;
3491}
3492
Greg Clayton289afcb2012-02-18 05:35:26 +00003493lldb::TargetSP
3494Process::CalculateTarget ()
3495{
3496 return m_target.shared_from_this();
3497}
3498
Chris Lattner24943d22010-06-08 16:52:24 +00003499void
Greg Claytona830adb2010-10-04 01:05:56 +00003500Process::CalculateExecutionContext (ExecutionContext &exe_ctx)
Chris Lattner24943d22010-06-08 16:52:24 +00003501{
Greg Clayton567e7f32011-09-22 04:58:26 +00003502 exe_ctx.SetTargetPtr (&m_target);
3503 exe_ctx.SetProcessPtr (this);
3504 exe_ctx.SetThreadPtr(NULL);
3505 exe_ctx.SetFramePtr (NULL);
Chris Lattner24943d22010-06-08 16:52:24 +00003506}
3507
Greg Claytone4b9c1f2011-03-08 22:40:15 +00003508//uint32_t
3509//Process::ListProcessesMatchingName (const char *name, StringList &matches, std::vector<lldb::pid_t> &pids)
3510//{
3511// return 0;
3512//}
3513//
3514//ArchSpec
3515//Process::GetArchSpecForExistingProcess (lldb::pid_t pid)
3516//{
3517// return Host::GetArchSpecForExistingProcess (pid);
3518//}
3519//
3520//ArchSpec
3521//Process::GetArchSpecForExistingProcess (const char *process_name)
3522//{
3523// return Host::GetArchSpecForExistingProcess (process_name);
3524//}
3525//
Caroline Tice861efb32010-11-16 05:07:41 +00003526void
3527Process::AppendSTDOUT (const char * s, size_t len)
3528{
Greg Clayton20d338f2010-11-18 05:57:03 +00003529 Mutex::Locker locker (m_stdio_communication_mutex);
Caroline Tice861efb32010-11-16 05:07:41 +00003530 m_stdout_data.append (s, len);
Greg Claytonb3781332010-12-05 19:16:56 +00003531 BroadcastEventIfUnique (eBroadcastBitSTDOUT, new ProcessEventData (GetTarget().GetProcessSP(), GetState()));
Caroline Tice861efb32010-11-16 05:07:41 +00003532}
3533
3534void
Greg Claytonbd06ff42011-11-13 04:45:22 +00003535Process::AppendSTDERR (const char * s, size_t len)
3536{
3537 Mutex::Locker locker (m_stdio_communication_mutex);
3538 m_stderr_data.append (s, len);
3539 BroadcastEventIfUnique (eBroadcastBitSTDERR, new ProcessEventData (GetTarget().GetProcessSP(), GetState()));
3540}
3541
3542//------------------------------------------------------------------
3543// Process STDIO
3544//------------------------------------------------------------------
3545
3546size_t
3547Process::GetSTDOUT (char *buf, size_t buf_size, Error &error)
3548{
3549 Mutex::Locker locker(m_stdio_communication_mutex);
3550 size_t bytes_available = m_stdout_data.size();
3551 if (bytes_available > 0)
3552 {
3553 LogSP log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3554 if (log)
3555 log->Printf ("Process::GetSTDOUT (buf = %p, size = %zu)", buf, buf_size);
3556 if (bytes_available > buf_size)
3557 {
3558 memcpy(buf, m_stdout_data.c_str(), buf_size);
3559 m_stdout_data.erase(0, buf_size);
3560 bytes_available = buf_size;
3561 }
3562 else
3563 {
3564 memcpy(buf, m_stdout_data.c_str(), bytes_available);
3565 m_stdout_data.clear();
3566 }
3567 }
3568 return bytes_available;
3569}
3570
3571
3572size_t
3573Process::GetSTDERR (char *buf, size_t buf_size, Error &error)
3574{
3575 Mutex::Locker locker(m_stdio_communication_mutex);
3576 size_t bytes_available = m_stderr_data.size();
3577 if (bytes_available > 0)
3578 {
3579 LogSP log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3580 if (log)
3581 log->Printf ("Process::GetSTDERR (buf = %p, size = %zu)", buf, buf_size);
3582 if (bytes_available > buf_size)
3583 {
3584 memcpy(buf, m_stderr_data.c_str(), buf_size);
3585 m_stderr_data.erase(0, buf_size);
3586 bytes_available = buf_size;
3587 }
3588 else
3589 {
3590 memcpy(buf, m_stderr_data.c_str(), bytes_available);
3591 m_stderr_data.clear();
3592 }
3593 }
3594 return bytes_available;
3595}
3596
3597void
Caroline Tice861efb32010-11-16 05:07:41 +00003598Process::STDIOReadThreadBytesReceived (void *baton, const void *src, size_t src_len)
3599{
3600 Process *process = (Process *) baton;
3601 process->AppendSTDOUT (static_cast<const char *>(src), src_len);
3602}
3603
3604size_t
3605Process::ProcessInputReaderCallback (void *baton,
3606 InputReader &reader,
3607 lldb::InputReaderAction notification,
3608 const char *bytes,
3609 size_t bytes_len)
3610{
3611 Process *process = (Process *) baton;
3612
3613 switch (notification)
3614 {
3615 case eInputReaderActivate:
3616 break;
3617
3618 case eInputReaderDeactivate:
3619 break;
3620
3621 case eInputReaderReactivate:
3622 break;
3623
Caroline Tice4a348082011-05-02 20:41:46 +00003624 case eInputReaderAsynchronousOutputWritten:
3625 break;
3626
Caroline Tice861efb32010-11-16 05:07:41 +00003627 case eInputReaderGotToken:
3628 {
3629 Error error;
3630 process->PutSTDIN (bytes, bytes_len, error);
3631 }
3632 break;
3633
Caroline Ticec4f55fe2010-11-19 20:47:54 +00003634 case eInputReaderInterrupt:
3635 process->Halt ();
3636 break;
3637
3638 case eInputReaderEndOfFile:
3639 process->AppendSTDOUT ("^D", 2);
3640 break;
3641
Caroline Tice861efb32010-11-16 05:07:41 +00003642 case eInputReaderDone:
3643 break;
3644
3645 }
3646
3647 return bytes_len;
3648}
3649
3650void
3651Process::ResetProcessInputReader ()
3652{
3653 m_process_input_reader.reset();
3654}
3655
3656void
Greg Clayton464c6162011-11-17 22:14:31 +00003657Process::SetSTDIOFileDescriptor (int file_descriptor)
Caroline Tice861efb32010-11-16 05:07:41 +00003658{
3659 // First set up the Read Thread for reading/handling process I/O
3660
3661 std::auto_ptr<ConnectionFileDescriptor> conn_ap (new ConnectionFileDescriptor (file_descriptor, true));
3662
3663 if (conn_ap.get())
3664 {
3665 m_stdio_communication.SetConnection (conn_ap.release());
3666 if (m_stdio_communication.IsConnected())
3667 {
3668 m_stdio_communication.SetReadThreadBytesReceivedCallback (STDIOReadThreadBytesReceived, this);
3669 m_stdio_communication.StartReadThread();
3670
3671 // Now read thread is set up, set up input reader.
3672
3673 if (!m_process_input_reader.get())
3674 {
3675 m_process_input_reader.reset (new InputReader(m_target.GetDebugger()));
3676 Error err (m_process_input_reader->Initialize (Process::ProcessInputReaderCallback,
3677 this,
3678 eInputReaderGranularityByte,
3679 NULL,
3680 NULL,
3681 false));
3682
3683 if (err.Fail())
3684 m_process_input_reader.reset();
3685 }
3686 }
3687 }
3688}
3689
3690void
3691Process::PushProcessInputReader ()
3692{
3693 if (m_process_input_reader && !m_process_input_reader->IsActive())
3694 m_target.GetDebugger().PushInputReader (m_process_input_reader);
3695}
3696
3697void
3698Process::PopProcessInputReader ()
3699{
3700 if (m_process_input_reader && m_process_input_reader->IsActive())
3701 m_target.GetDebugger().PopInputReader (m_process_input_reader);
3702}
3703
Greg Claytond284b662011-02-18 01:44:25 +00003704// The process needs to know about installed plug-ins
Greg Clayton990de7b2010-11-18 23:32:35 +00003705void
Caroline Tice2a456812011-03-10 22:14:10 +00003706Process::SettingsInitialize ()
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00003707{
Greg Claytonb3448432011-03-24 21:19:54 +00003708 static std::vector<OptionEnumValueElement> g_plugins;
Greg Claytond284b662011-02-18 01:44:25 +00003709
3710 int i=0;
3711 const char *name;
3712 OptionEnumValueElement option_enum;
3713 while ((name = PluginManager::GetProcessPluginNameAtIndex (i)) != NULL)
3714 {
3715 if (name)
3716 {
3717 option_enum.value = i;
3718 option_enum.string_value = name;
3719 option_enum.usage = PluginManager::GetProcessPluginDescriptionAtIndex (i);
3720 g_plugins.push_back (option_enum);
3721 }
3722 ++i;
3723 }
3724 option_enum.value = 0;
3725 option_enum.string_value = NULL;
3726 option_enum.usage = NULL;
3727 g_plugins.push_back (option_enum);
3728
3729 for (i=0; (name = SettingsController::instance_settings_table[i].var_name); ++i)
3730 {
3731 if (::strcmp (name, "plugin") == 0)
3732 {
3733 SettingsController::instance_settings_table[i].enum_values = &g_plugins[0];
3734 break;
3735 }
3736 }
Greg Clayton990de7b2010-11-18 23:32:35 +00003737 UserSettingsControllerSP &usc = GetSettingsController();
3738 usc.reset (new SettingsController);
3739 UserSettingsController::InitializeSettingsController (usc,
3740 SettingsController::global_settings_table,
3741 SettingsController::instance_settings_table);
Caroline Tice2a456812011-03-10 22:14:10 +00003742
3743 // Now call SettingsInitialize() for each 'child' of Process settings
3744 Thread::SettingsInitialize ();
Greg Clayton990de7b2010-11-18 23:32:35 +00003745}
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00003746
Greg Clayton990de7b2010-11-18 23:32:35 +00003747void
Caroline Tice2a456812011-03-10 22:14:10 +00003748Process::SettingsTerminate ()
Greg Claytond284b662011-02-18 01:44:25 +00003749{
Caroline Tice2a456812011-03-10 22:14:10 +00003750 // Must call SettingsTerminate() on each 'child' of Process settings before terminating Process settings.
3751
3752 Thread::SettingsTerminate ();
3753
3754 // Now terminate Process Settings.
3755
Greg Clayton990de7b2010-11-18 23:32:35 +00003756 UserSettingsControllerSP &usc = GetSettingsController();
3757 UserSettingsController::FinalizeSettingsController (usc);
3758 usc.reset();
3759}
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00003760
Greg Clayton990de7b2010-11-18 23:32:35 +00003761UserSettingsControllerSP &
3762Process::GetSettingsController ()
3763{
Greg Clayton334d33a2012-01-30 07:41:31 +00003764 static UserSettingsControllerSP g_settings_controller_sp;
3765 if (!g_settings_controller_sp)
3766 {
3767 g_settings_controller_sp.reset (new Process::SettingsController);
3768 // The first shared pointer to Process::SettingsController in
3769 // g_settings_controller_sp must be fully created above so that
3770 // the TargetInstanceSettings can use a weak_ptr to refer back
3771 // to the master setttings controller
3772 InstanceSettingsSP default_instance_settings_sp (new ProcessInstanceSettings (g_settings_controller_sp,
3773 false,
3774 InstanceSettings::GetDefaultName().AsCString()));
3775 g_settings_controller_sp->SetDefaultInstanceSettings (default_instance_settings_sp);
3776 }
3777 return g_settings_controller_sp;
3778
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00003779}
3780
Caroline Tice1ebef442010-09-27 00:30:10 +00003781void
3782Process::UpdateInstanceName ()
3783{
Greg Clayton5beb99d2011-08-11 02:48:45 +00003784 Module *module = GetTarget().GetExecutableModulePointer();
Greg Clayton13d24fb2012-01-29 20:56:30 +00003785 if (module && module->GetFileSpec().GetFilename())
Caroline Tice1ebef442010-09-27 00:30:10 +00003786 {
Greg Claytonc0c1b0c2010-11-19 03:46:01 +00003787 GetSettingsController()->RenameInstanceSettings (GetInstanceName().AsCString(),
Greg Clayton13d24fb2012-01-29 20:56:30 +00003788 module->GetFileSpec().GetFilename().AsCString());
Caroline Tice1ebef442010-09-27 00:30:10 +00003789 }
3790}
3791
Greg Clayton427f2902010-12-14 02:59:59 +00003792ExecutionResults
Jim Ingham360f53f2010-11-30 02:22:11 +00003793Process::RunThreadPlan (ExecutionContext &exe_ctx,
3794 lldb::ThreadPlanSP &thread_plan_sp,
3795 bool stop_others,
3796 bool try_all_threads,
3797 bool discard_on_error,
3798 uint32_t single_thread_timeout_usec,
3799 Stream &errors)
3800{
3801 ExecutionResults return_value = eExecutionSetupError;
3802
Jim Ingham15dcb7c2011-01-20 02:03:18 +00003803 if (thread_plan_sp.get() == NULL)
3804 {
3805 errors.Printf("RunThreadPlan called with empty thread plan.");
Greg Claytonb3448432011-03-24 21:19:54 +00003806 return eExecutionSetupError;
Jim Ingham15dcb7c2011-01-20 02:03:18 +00003807 }
Greg Clayton567e7f32011-09-22 04:58:26 +00003808
3809 if (exe_ctx.GetProcessPtr() != this)
3810 {
3811 errors.Printf("RunThreadPlan called on wrong process.");
3812 return eExecutionSetupError;
3813 }
3814
3815 Thread *thread = exe_ctx.GetThreadPtr();
3816 if (thread == NULL)
3817 {
3818 errors.Printf("RunThreadPlan called with invalid thread.");
3819 return eExecutionSetupError;
3820 }
Jim Ingham15dcb7c2011-01-20 02:03:18 +00003821
Jim Ingham5ab7fba2011-05-17 22:24:54 +00003822 // We rely on the thread plan we are running returning "PlanCompleted" if when it successfully completes.
3823 // For that to be true the plan can't be private - since private plans suppress themselves in the
3824 // GetCompletedPlan call.
3825
3826 bool orig_plan_private = thread_plan_sp->GetPrivate();
3827 thread_plan_sp->SetPrivate(false);
3828
Jim Inghamac959662011-01-24 06:34:17 +00003829 if (m_private_state.GetValue() != eStateStopped)
3830 {
3831 errors.Printf ("RunThreadPlan called while the private state was not stopped.");
Greg Claytonb3448432011-03-24 21:19:54 +00003832 return eExecutionSetupError;
Jim Inghamac959662011-01-24 06:34:17 +00003833 }
3834
Jim Ingham7bbebaf2011-08-13 00:56:10 +00003835 // Save the thread & frame from the exe_ctx for restoration after we run
Greg Clayton567e7f32011-09-22 04:58:26 +00003836 const uint32_t thread_idx_id = thread->GetIndexID();
3837 StackID ctx_frame_id = thread->GetSelectedFrame()->GetStackID();
Jim Ingham360f53f2010-11-30 02:22:11 +00003838
3839 // N.B. Running the target may unset the currently selected thread and frame. We don't want to do that either,
3840 // so we should arrange to reset them as well.
3841
Greg Clayton567e7f32011-09-22 04:58:26 +00003842 lldb::ThreadSP selected_thread_sp = GetThreadList().GetSelectedThread();
Jim Ingham360f53f2010-11-30 02:22:11 +00003843
Jim Ingham7bbebaf2011-08-13 00:56:10 +00003844 uint32_t selected_tid;
3845 StackID selected_stack_id;
Greg Claytone40b6422011-09-18 18:59:15 +00003846 if (selected_thread_sp)
Jim Ingham360f53f2010-11-30 02:22:11 +00003847 {
3848 selected_tid = selected_thread_sp->GetIndexID();
Jim Ingham7bbebaf2011-08-13 00:56:10 +00003849 selected_stack_id = selected_thread_sp->GetSelectedFrame()->GetStackID();
Jim Ingham360f53f2010-11-30 02:22:11 +00003850 }
3851 else
3852 {
3853 selected_tid = LLDB_INVALID_THREAD_ID;
3854 }
3855
Greg Clayton567e7f32011-09-22 04:58:26 +00003856 thread->QueueThreadPlan(thread_plan_sp, true);
Jim Ingham360f53f2010-11-30 02:22:11 +00003857
Jim Ingham6ae318c2011-01-23 21:14:08 +00003858 Listener listener("lldb.process.listener.run-thread-plan");
Jim Inghamf9f40c22011-02-08 05:20:59 +00003859
3860 // This process event hijacker Hijacks the Public events and its destructor makes sure that the process events get
3861 // restored on exit to the function.
3862
3863 ProcessEventHijacker run_thread_plan_hijacker (*this, &listener);
Jim Inghamac959662011-01-24 06:34:17 +00003864
Jim Ingham6ae318c2011-01-23 21:14:08 +00003865 lldb::LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP | LIBLLDB_LOG_PROCESS));
Jim Ingham15dcb7c2011-01-20 02:03:18 +00003866 if (log)
3867 {
3868 StreamString s;
3869 thread_plan_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose);
Greg Clayton444e35b2011-10-19 18:09:39 +00003870 log->Printf ("Process::RunThreadPlan(): Resuming thread %u - 0x%4.4llx to run thread plan \"%s\".",
Greg Clayton567e7f32011-09-22 04:58:26 +00003871 thread->GetIndexID(),
3872 thread->GetID(),
Jim Inghamf9f40c22011-02-08 05:20:59 +00003873 s.GetData());
Jim Ingham15dcb7c2011-01-20 02:03:18 +00003874 }
3875
Jim Inghamf9f40c22011-02-08 05:20:59 +00003876 bool got_event;
3877 lldb::EventSP event_sp;
3878 lldb::StateType stop_state = lldb::eStateInvalid;
Jim Ingham360f53f2010-11-30 02:22:11 +00003879
3880 TimeValue* timeout_ptr = NULL;
3881 TimeValue real_timeout;
3882
Jim Inghamf9f40c22011-02-08 05:20:59 +00003883 bool first_timeout = true;
3884 bool do_resume = true;
Jim Ingham360f53f2010-11-30 02:22:11 +00003885
Jim Ingham360f53f2010-11-30 02:22:11 +00003886 while (1)
3887 {
Jim Inghamf9f40c22011-02-08 05:20:59 +00003888 // We usually want to resume the process if we get to the top of the loop.
3889 // The only exception is if we get two running events with no intervening
3890 // stop, which can happen, we will just wait for then next stop event.
Jim Ingham360f53f2010-11-30 02:22:11 +00003891
Jim Inghamf9f40c22011-02-08 05:20:59 +00003892 if (do_resume)
Jim Ingham360f53f2010-11-30 02:22:11 +00003893 {
Jim Inghamf9f40c22011-02-08 05:20:59 +00003894 // Do the initial resume and wait for the running event before going further.
3895
Greg Clayton567e7f32011-09-22 04:58:26 +00003896 Error resume_error = Resume ();
Jim Inghamf9f40c22011-02-08 05:20:59 +00003897 if (!resume_error.Success())
3898 {
3899 errors.Printf("Error resuming inferior: \"%s\".\n", resume_error.AsCString());
Greg Claytonb3448432011-03-24 21:19:54 +00003900 return_value = eExecutionSetupError;
Jim Inghamf9f40c22011-02-08 05:20:59 +00003901 break;
3902 }
3903
3904 real_timeout = TimeValue::Now();
3905 real_timeout.OffsetWithMicroSeconds(500000);
3906 timeout_ptr = &real_timeout;
3907
Sean Callananfaf04782012-01-05 02:00:14 +00003908 got_event = listener.WaitForEvent(timeout_ptr, event_sp);
Jim Inghamf9f40c22011-02-08 05:20:59 +00003909 if (!got_event)
3910 {
3911 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00003912 log->PutCString("Didn't get any event after initial resume, exiting.");
Jim Inghamf9f40c22011-02-08 05:20:59 +00003913
3914 errors.Printf("Didn't get any event after initial resume, exiting.");
Greg Claytonb3448432011-03-24 21:19:54 +00003915 return_value = eExecutionSetupError;
Jim Inghamf9f40c22011-02-08 05:20:59 +00003916 break;
3917 }
3918
3919 stop_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
3920 if (stop_state != eStateRunning)
3921 {
3922 if (log)
3923 log->Printf("Didn't get running event after initial resume, got %s instead.", StateAsCString(stop_state));
3924
3925 errors.Printf("Didn't get running event after initial resume, got %s instead.", StateAsCString(stop_state));
Greg Claytonb3448432011-03-24 21:19:54 +00003926 return_value = eExecutionSetupError;
Jim Inghamf9f40c22011-02-08 05:20:59 +00003927 break;
3928 }
3929
3930 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00003931 log->PutCString ("Resuming succeeded.");
Jim Inghamf9f40c22011-02-08 05:20:59 +00003932 // We need to call the function synchronously, so spin waiting for it to return.
3933 // If we get interrupted while executing, we're going to lose our context, and
3934 // won't be able to gather the result at this point.
3935 // We set the timeout AFTER the resume, since the resume takes some time and we
3936 // don't want to charge that to the timeout.
3937
3938 if (single_thread_timeout_usec != 0)
3939 {
3940 real_timeout = TimeValue::Now();
3941 if (first_timeout)
3942 real_timeout.OffsetWithMicroSeconds(single_thread_timeout_usec);
3943 else
3944 real_timeout.OffsetWithSeconds(10);
3945
3946 timeout_ptr = &real_timeout;
3947 }
3948 }
3949 else
3950 {
3951 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00003952 log->PutCString ("Handled an extra running event.");
Jim Inghamf9f40c22011-02-08 05:20:59 +00003953 do_resume = true;
3954 }
3955
3956 // Now wait for the process to stop again:
3957 stop_state = lldb::eStateInvalid;
3958 event_sp.reset();
3959 got_event = listener.WaitForEvent (timeout_ptr, event_sp);
3960
3961 if (got_event)
3962 {
3963 if (event_sp.get())
3964 {
3965 bool keep_going = false;
3966 stop_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
3967 if (log)
3968 log->Printf("In while loop, got event: %s.", StateAsCString(stop_state));
3969
3970 switch (stop_state)
3971 {
3972 case lldb::eStateStopped:
Jim Ingham2370a972011-05-17 01:10:11 +00003973 {
Greg Clayton43994462011-06-03 22:12:42 +00003974 // Yay, we're done. Now make sure that our thread plan actually completed.
Greg Clayton567e7f32011-09-22 04:58:26 +00003975 ThreadSP thread_sp = GetThreadList().FindThreadByIndexID (thread_idx_id);
Greg Clayton43994462011-06-03 22:12:42 +00003976 if (!thread_sp)
Jim Ingham2370a972011-05-17 01:10:11 +00003977 {
Greg Clayton43994462011-06-03 22:12:42 +00003978 // Ooh, our thread has vanished. Unlikely that this was successful execution...
Jim Ingham2370a972011-05-17 01:10:11 +00003979 if (log)
Greg Clayton43994462011-06-03 22:12:42 +00003980 log->Printf ("Execution completed but our thread (index-id=%u) has vanished.", thread_idx_id);
3981 return_value = eExecutionInterrupted;
Jim Ingham2370a972011-05-17 01:10:11 +00003982 }
3983 else
3984 {
Greg Clayton43994462011-06-03 22:12:42 +00003985 StopInfoSP stop_info_sp (thread_sp->GetStopInfo ());
3986 StopReason stop_reason = eStopReasonInvalid;
3987 if (stop_info_sp)
3988 stop_reason = stop_info_sp->GetStopReason();
3989 if (stop_reason == eStopReasonPlanComplete)
3990 {
3991 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00003992 log->PutCString ("Execution completed successfully.");
Greg Clayton43994462011-06-03 22:12:42 +00003993 // Now mark this plan as private so it doesn't get reported as the stop reason
3994 // after this point.
3995 if (thread_plan_sp)
3996 thread_plan_sp->SetPrivate (orig_plan_private);
3997 return_value = eExecutionCompleted;
3998 }
3999 else
4000 {
4001 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004002 log->PutCString ("Thread plan didn't successfully complete.");
Greg Clayton43994462011-06-03 22:12:42 +00004003
4004 return_value = eExecutionInterrupted;
4005 }
Jim Ingham2370a972011-05-17 01:10:11 +00004006 }
Greg Clayton43994462011-06-03 22:12:42 +00004007 }
4008 break;
4009
Jim Inghamf9f40c22011-02-08 05:20:59 +00004010 case lldb::eStateCrashed:
4011 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004012 log->PutCString ("Execution crashed.");
Greg Claytonb3448432011-03-24 21:19:54 +00004013 return_value = eExecutionInterrupted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004014 break;
Greg Clayton43994462011-06-03 22:12:42 +00004015
Jim Inghamf9f40c22011-02-08 05:20:59 +00004016 case lldb::eStateRunning:
4017 do_resume = false;
4018 keep_going = true;
4019 break;
Greg Clayton43994462011-06-03 22:12:42 +00004020
Jim Inghamf9f40c22011-02-08 05:20:59 +00004021 default:
4022 if (log)
4023 log->Printf("Execution stopped with unexpected state: %s.", StateAsCString(stop_state));
Jim Ingham2370a972011-05-17 01:10:11 +00004024
4025 errors.Printf ("Execution stopped with unexpected state.");
Greg Claytonb3448432011-03-24 21:19:54 +00004026 return_value = eExecutionInterrupted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004027 break;
4028 }
4029 if (keep_going)
4030 continue;
4031 else
4032 break;
4033 }
4034 else
4035 {
4036 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004037 log->PutCString ("got_event was true, but the event pointer was null. How odd...");
Greg Claytonb3448432011-03-24 21:19:54 +00004038 return_value = eExecutionInterrupted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004039 break;
4040 }
4041 }
4042 else
4043 {
4044 // If we didn't get an event that means we've timed out...
4045 // We will interrupt the process here. Depending on what we were asked to do we will
4046 // either exit, or try with all threads running for the same timeout.
Jim Ingham360f53f2010-11-30 02:22:11 +00004047 // Not really sure what to do if Halt fails here...
Jim Inghamf9f40c22011-02-08 05:20:59 +00004048
Stephen Wilsonc2b98252011-01-12 04:20:03 +00004049 if (log) {
Jim Ingham360f53f2010-11-30 02:22:11 +00004050 if (try_all_threads)
Jim Inghamf9f40c22011-02-08 05:20:59 +00004051 {
4052 if (first_timeout)
4053 log->Printf ("Process::RunThreadPlan(): Running function with timeout: %d timed out, "
4054 "trying with all threads enabled.",
4055 single_thread_timeout_usec);
4056 else
4057 log->Printf ("Process::RunThreadPlan(): Restarting function with all threads enabled "
4058 "and timeout: %d timed out.",
4059 single_thread_timeout_usec);
4060 }
Jim Ingham360f53f2010-11-30 02:22:11 +00004061 else
Jim Inghamf9f40c22011-02-08 05:20:59 +00004062 log->Printf ("Process::RunThreadPlan(): Running function with timeout: %d timed out, "
4063 "halt and abandoning execution.",
Jim Ingham360f53f2010-11-30 02:22:11 +00004064 single_thread_timeout_usec);
Stephen Wilsonc2b98252011-01-12 04:20:03 +00004065 }
Jim Ingham360f53f2010-11-30 02:22:11 +00004066
Greg Clayton567e7f32011-09-22 04:58:26 +00004067 Error halt_error = Halt();
Jim Inghamc556b462011-01-22 01:30:53 +00004068 if (halt_error.Success())
Jim Ingham360f53f2010-11-30 02:22:11 +00004069 {
Jim Ingham360f53f2010-11-30 02:22:11 +00004070 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004071 log->PutCString ("Process::RunThreadPlan(): Halt succeeded.");
Jim Ingham360f53f2010-11-30 02:22:11 +00004072
Jim Inghamf9f40c22011-02-08 05:20:59 +00004073 // If halt succeeds, it always produces a stopped event. Wait for that:
4074
4075 real_timeout = TimeValue::Now();
4076 real_timeout.OffsetWithMicroSeconds(500000);
4077
4078 got_event = listener.WaitForEvent(&real_timeout, event_sp);
Jim Ingham360f53f2010-11-30 02:22:11 +00004079
4080 if (got_event)
4081 {
4082 stop_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
4083 if (log)
4084 {
Greg Clayton68ca8232011-01-25 02:58:48 +00004085 log->Printf ("Process::RunThreadPlan(): Stopped with event: %s", StateAsCString(stop_state));
Jim Inghamf9f40c22011-02-08 05:20:59 +00004086 if (stop_state == lldb::eStateStopped
4087 && Process::ProcessEventData::GetInterruptedFromEvent(event_sp.get()))
Jim Inghamf6d3d792011-08-09 22:24:33 +00004088 log->PutCString (" Event was the Halt interruption event.");
Jim Ingham360f53f2010-11-30 02:22:11 +00004089 }
4090
Jim Inghamf9f40c22011-02-08 05:20:59 +00004091 if (stop_state == lldb::eStateStopped)
Jim Ingham360f53f2010-11-30 02:22:11 +00004092 {
Jim Inghamf9f40c22011-02-08 05:20:59 +00004093 // Between the time we initiated the Halt and the time we delivered it, the process could have
4094 // already finished its job. Check that here:
Jim Ingham360f53f2010-11-30 02:22:11 +00004095
Greg Clayton567e7f32011-09-22 04:58:26 +00004096 if (thread->IsThreadPlanDone (thread_plan_sp.get()))
Jim Inghamf9f40c22011-02-08 05:20:59 +00004097 {
4098 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004099 log->PutCString ("Process::RunThreadPlan(): Even though we timed out, the call plan was done. "
Jim Inghamf9f40c22011-02-08 05:20:59 +00004100 "Exiting wait loop.");
Greg Claytonb3448432011-03-24 21:19:54 +00004101 return_value = eExecutionCompleted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004102 break;
4103 }
Jim Ingham360f53f2010-11-30 02:22:11 +00004104
Jim Inghamf9f40c22011-02-08 05:20:59 +00004105 if (!try_all_threads)
4106 {
4107 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004108 log->PutCString ("try_all_threads was false, we stopped so now we're quitting.");
Greg Claytonb3448432011-03-24 21:19:54 +00004109 return_value = eExecutionInterrupted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004110 break;
4111 }
4112
4113 if (first_timeout)
4114 {
4115 // Set all the other threads to run, and return to the top of the loop, which will continue;
4116 first_timeout = false;
4117 thread_plan_sp->SetStopOthers (false);
4118 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004119 log->PutCString ("Process::RunThreadPlan(): About to resume.");
Jim Inghamf9f40c22011-02-08 05:20:59 +00004120
4121 continue;
4122 }
4123 else
4124 {
4125 // Running all threads failed, so return Interrupted.
4126 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004127 log->PutCString("Process::RunThreadPlan(): running all threads timed out.");
Greg Claytonb3448432011-03-24 21:19:54 +00004128 return_value = eExecutionInterrupted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004129 break;
4130 }
Jim Ingham360f53f2010-11-30 02:22:11 +00004131 }
Jim Inghamf9f40c22011-02-08 05:20:59 +00004132 }
4133 else
4134 { if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004135 log->PutCString("Process::RunThreadPlan(): halt said it succeeded, but I got no event. "
Jim Inghamf9f40c22011-02-08 05:20:59 +00004136 "I'm getting out of here passing Interrupted.");
Greg Claytonb3448432011-03-24 21:19:54 +00004137 return_value = eExecutionInterrupted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004138 break;
Jim Ingham360f53f2010-11-30 02:22:11 +00004139 }
4140 }
Jim Inghamc556b462011-01-22 01:30:53 +00004141 else
4142 {
Jim Inghamf9f40c22011-02-08 05:20:59 +00004143 // This branch is to work around some problems with gdb-remote's Halt. It is a little racy, and can return
4144 // an error from halt, but if you wait a bit you'll get a stopped event anyway.
Jim Inghamc556b462011-01-22 01:30:53 +00004145 if (log)
Jim Inghamf9f40c22011-02-08 05:20:59 +00004146 log->Printf ("Process::RunThreadPlan(): halt failed: error = \"%s\", I'm just going to wait a little longer and see if I get a stopped event.",
4147 halt_error.AsCString());
4148 real_timeout = TimeValue::Now();
4149 real_timeout.OffsetWithMicroSeconds(500000);
4150 timeout_ptr = &real_timeout;
4151 got_event = listener.WaitForEvent(&real_timeout, event_sp);
4152 if (!got_event || event_sp.get() == NULL)
Jim Ingham6ae318c2011-01-23 21:14:08 +00004153 {
Jim Inghamf9f40c22011-02-08 05:20:59 +00004154 // This is not going anywhere, bag out.
4155 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004156 log->PutCString ("Process::RunThreadPlan(): halt failed: and waiting for the stopped event failed.");
Greg Claytonb3448432011-03-24 21:19:54 +00004157 return_value = eExecutionInterrupted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004158 break;
Jim Ingham6ae318c2011-01-23 21:14:08 +00004159 }
Jim Inghamf9f40c22011-02-08 05:20:59 +00004160 else
4161 {
4162 stop_state = Process::ProcessEventData::GetStateFromEvent(event_sp.get());
4163 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004164 log->PutCString ("Process::RunThreadPlan(): halt failed: but then I got a stopped event. Whatever...");
Jim Inghamf9f40c22011-02-08 05:20:59 +00004165 if (stop_state == lldb::eStateStopped)
4166 {
4167 // Between the time we initiated the Halt and the time we delivered it, the process could have
4168 // already finished its job. Check that here:
4169
Greg Clayton567e7f32011-09-22 04:58:26 +00004170 if (thread->IsThreadPlanDone (thread_plan_sp.get()))
Jim Inghamf9f40c22011-02-08 05:20:59 +00004171 {
4172 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004173 log->PutCString ("Process::RunThreadPlan(): Even though we timed out, the call plan was done. "
Jim Inghamf9f40c22011-02-08 05:20:59 +00004174 "Exiting wait loop.");
Greg Claytonb3448432011-03-24 21:19:54 +00004175 return_value = eExecutionCompleted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004176 break;
4177 }
4178
4179 if (first_timeout)
4180 {
4181 // Set all the other threads to run, and return to the top of the loop, which will continue;
4182 first_timeout = false;
4183 thread_plan_sp->SetStopOthers (false);
4184 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004185 log->PutCString ("Process::RunThreadPlan(): About to resume.");
Jim Inghamf9f40c22011-02-08 05:20:59 +00004186
4187 continue;
4188 }
4189 else
4190 {
4191 // Running all threads failed, so return Interrupted.
4192 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004193 log->PutCString ("Process::RunThreadPlan(): running all threads timed out.");
Greg Claytonb3448432011-03-24 21:19:54 +00004194 return_value = eExecutionInterrupted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004195 break;
4196 }
4197 }
4198 else
4199 {
Sean Callananed3f86b2011-08-09 22:07:08 +00004200 if (log)
4201 log->Printf ("Process::RunThreadPlan(): halt failed, I waited and didn't get"
4202 " a stopped event, instead got %s.", StateAsCString(stop_state));
Greg Claytonb3448432011-03-24 21:19:54 +00004203 return_value = eExecutionInterrupted;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004204 break;
4205 }
4206 }
Jim Inghamc556b462011-01-22 01:30:53 +00004207 }
4208
Jim Ingham360f53f2010-11-30 02:22:11 +00004209 }
4210
Jim Inghamf9f40c22011-02-08 05:20:59 +00004211 } // END WAIT LOOP
4212
4213 // Now do some processing on the results of the run:
4214 if (return_value == eExecutionInterrupted)
4215 {
Jim Ingham360f53f2010-11-30 02:22:11 +00004216 if (log)
Jim Inghamf9f40c22011-02-08 05:20:59 +00004217 {
4218 StreamString s;
4219 if (event_sp)
4220 event_sp->Dump (&s);
4221 else
4222 {
Jim Inghamf6d3d792011-08-09 22:24:33 +00004223 log->PutCString ("Process::RunThreadPlan(): Stop event that interrupted us is NULL.");
Jim Inghamf9f40c22011-02-08 05:20:59 +00004224 }
4225
4226 StreamString ts;
4227
Jim Inghamf6d3d792011-08-09 22:24:33 +00004228 const char *event_explanation = NULL;
Jim Inghamf9f40c22011-02-08 05:20:59 +00004229
4230 do
4231 {
4232 const Process::ProcessEventData *event_data = Process::ProcessEventData::GetEventDataFromEvent (event_sp.get());
4233
4234 if (!event_data)
4235 {
4236 event_explanation = "<no event data>";
4237 break;
4238 }
4239
4240 Process *process = event_data->GetProcessSP().get();
4241
4242 if (!process)
4243 {
4244 event_explanation = "<no process>";
4245 break;
4246 }
4247
4248 ThreadList &thread_list = process->GetThreadList();
4249
4250 uint32_t num_threads = thread_list.GetSize();
4251 uint32_t thread_index;
4252
4253 ts.Printf("<%u threads> ", num_threads);
4254
4255 for (thread_index = 0;
4256 thread_index < num_threads;
4257 ++thread_index)
4258 {
4259 Thread *thread = thread_list.GetThreadAtIndex(thread_index).get();
4260
4261 if (!thread)
4262 {
4263 ts.Printf("<?> ");
4264 continue;
4265 }
4266
Greg Clayton444e35b2011-10-19 18:09:39 +00004267 ts.Printf("<0x%4.4llx ", thread->GetID());
Jim Inghamf9f40c22011-02-08 05:20:59 +00004268 RegisterContext *register_context = thread->GetRegisterContext().get();
4269
4270 if (register_context)
4271 ts.Printf("[ip 0x%llx] ", register_context->GetPC());
4272 else
4273 ts.Printf("[ip unknown] ");
4274
4275 lldb::StopInfoSP stop_info_sp = thread->GetStopInfo();
4276 if (stop_info_sp)
4277 {
4278 const char *stop_desc = stop_info_sp->GetDescription();
4279 if (stop_desc)
4280 ts.PutCString (stop_desc);
4281 }
4282 ts.Printf(">");
4283 }
4284
4285 event_explanation = ts.GetData();
4286 } while (0);
4287
4288 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004289 {
4290 if (event_explanation)
4291 log->Printf("Process::RunThreadPlan(): execution interrupted: %s %s", s.GetData(), event_explanation);
4292 else
4293 log->Printf("Process::RunThreadPlan(): execution interrupted: %s", s.GetData());
4294 }
Jim Inghamf9f40c22011-02-08 05:20:59 +00004295
4296 if (discard_on_error && thread_plan_sp)
4297 {
Greg Clayton567e7f32011-09-22 04:58:26 +00004298 thread->DiscardThreadPlansUpToPlan (thread_plan_sp);
Jim Ingham21f37ad2011-08-09 02:12:22 +00004299 thread_plan_sp->SetPrivate (orig_plan_private);
Jim Inghamf9f40c22011-02-08 05:20:59 +00004300 }
4301 }
4302 }
4303 else if (return_value == eExecutionSetupError)
4304 {
4305 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004306 log->PutCString("Process::RunThreadPlan(): execution set up error.");
Jim Inghamf9f40c22011-02-08 05:20:59 +00004307
4308 if (discard_on_error && thread_plan_sp)
4309 {
Greg Clayton567e7f32011-09-22 04:58:26 +00004310 thread->DiscardThreadPlansUpToPlan (thread_plan_sp);
Jim Ingham21f37ad2011-08-09 02:12:22 +00004311 thread_plan_sp->SetPrivate (orig_plan_private);
Jim Inghamf9f40c22011-02-08 05:20:59 +00004312 }
4313 }
4314 else
4315 {
Greg Clayton567e7f32011-09-22 04:58:26 +00004316 if (thread->IsThreadPlanDone (thread_plan_sp.get()))
Jim Ingham360f53f2010-11-30 02:22:11 +00004317 {
Greg Clayton68ca8232011-01-25 02:58:48 +00004318 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004319 log->PutCString("Process::RunThreadPlan(): thread plan is done");
Greg Claytonb3448432011-03-24 21:19:54 +00004320 return_value = eExecutionCompleted;
Jim Ingham360f53f2010-11-30 02:22:11 +00004321 }
Greg Clayton567e7f32011-09-22 04:58:26 +00004322 else if (thread->WasThreadPlanDiscarded (thread_plan_sp.get()))
Jim Ingham360f53f2010-11-30 02:22:11 +00004323 {
Greg Clayton68ca8232011-01-25 02:58:48 +00004324 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004325 log->PutCString("Process::RunThreadPlan(): thread plan was discarded");
Greg Claytonb3448432011-03-24 21:19:54 +00004326 return_value = eExecutionDiscarded;
Jim Ingham360f53f2010-11-30 02:22:11 +00004327 }
4328 else
4329 {
4330 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004331 log->PutCString("Process::RunThreadPlan(): thread plan stopped in mid course");
Jim Ingham360f53f2010-11-30 02:22:11 +00004332 if (discard_on_error && thread_plan_sp)
4333 {
Jim Inghamf9f40c22011-02-08 05:20:59 +00004334 if (log)
Jim Inghamf6d3d792011-08-09 22:24:33 +00004335 log->PutCString("Process::RunThreadPlan(): discarding thread plan 'cause discard_on_error is set.");
Greg Clayton567e7f32011-09-22 04:58:26 +00004336 thread->DiscardThreadPlansUpToPlan (thread_plan_sp);
Jim Ingham21f37ad2011-08-09 02:12:22 +00004337 thread_plan_sp->SetPrivate (orig_plan_private);
Jim Ingham360f53f2010-11-30 02:22:11 +00004338 }
Jim Ingham360f53f2010-11-30 02:22:11 +00004339 }
4340 }
Jim Inghamf9f40c22011-02-08 05:20:59 +00004341
Jim Ingham360f53f2010-11-30 02:22:11 +00004342 // Thread we ran the function in may have gone away because we ran the target
Jim Ingham7bbebaf2011-08-13 00:56:10 +00004343 // Check that it's still there, and if it is put it back in the context. Also restore the
4344 // frame in the context if it is still present.
Greg Clayton567e7f32011-09-22 04:58:26 +00004345 thread = GetThreadList().FindThreadByIndexID(thread_idx_id, true).get();
4346 if (thread)
Jim Ingham7bbebaf2011-08-13 00:56:10 +00004347 {
Greg Clayton567e7f32011-09-22 04:58:26 +00004348 exe_ctx.SetFrameSP (thread->GetFrameWithStackID (ctx_frame_id));
Jim Ingham7bbebaf2011-08-13 00:56:10 +00004349 }
Jim Ingham360f53f2010-11-30 02:22:11 +00004350
4351 // Also restore the current process'es selected frame & thread, since this function calling may
4352 // be done behind the user's back.
4353
4354 if (selected_tid != LLDB_INVALID_THREAD_ID)
4355 {
Greg Clayton567e7f32011-09-22 04:58:26 +00004356 if (GetThreadList().SetSelectedThreadByIndexID (selected_tid) && selected_stack_id.IsValid())
Jim Ingham360f53f2010-11-30 02:22:11 +00004357 {
4358 // We were able to restore the selected thread, now restore the frame:
Greg Clayton567e7f32011-09-22 04:58:26 +00004359 StackFrameSP old_frame_sp = GetThreadList().GetSelectedThread()->GetFrameWithStackID(selected_stack_id);
Jim Ingham7bbebaf2011-08-13 00:56:10 +00004360 if (old_frame_sp)
Greg Clayton567e7f32011-09-22 04:58:26 +00004361 GetThreadList().GetSelectedThread()->SetSelectedFrame(old_frame_sp.get());
Jim Ingham360f53f2010-11-30 02:22:11 +00004362 }
4363 }
4364
4365 return return_value;
4366}
4367
4368const char *
4369Process::ExecutionResultAsCString (ExecutionResults result)
4370{
4371 const char *result_name;
4372
4373 switch (result)
4374 {
Greg Claytonb3448432011-03-24 21:19:54 +00004375 case eExecutionCompleted:
Jim Ingham360f53f2010-11-30 02:22:11 +00004376 result_name = "eExecutionCompleted";
4377 break;
Greg Claytonb3448432011-03-24 21:19:54 +00004378 case eExecutionDiscarded:
Jim Ingham360f53f2010-11-30 02:22:11 +00004379 result_name = "eExecutionDiscarded";
4380 break;
Greg Claytonb3448432011-03-24 21:19:54 +00004381 case eExecutionInterrupted:
Jim Ingham360f53f2010-11-30 02:22:11 +00004382 result_name = "eExecutionInterrupted";
4383 break;
Greg Claytonb3448432011-03-24 21:19:54 +00004384 case eExecutionSetupError:
Jim Ingham360f53f2010-11-30 02:22:11 +00004385 result_name = "eExecutionSetupError";
4386 break;
Greg Claytonb3448432011-03-24 21:19:54 +00004387 case eExecutionTimedOut:
Jim Ingham360f53f2010-11-30 02:22:11 +00004388 result_name = "eExecutionTimedOut";
4389 break;
4390 }
4391 return result_name;
4392}
4393
Greg Claytonabe0fed2011-04-18 08:33:37 +00004394void
4395Process::GetStatus (Stream &strm)
4396{
4397 const StateType state = GetState();
Greg Clayton20206082011-11-17 01:23:07 +00004398 if (StateIsStoppedState(state, false))
Greg Claytonabe0fed2011-04-18 08:33:37 +00004399 {
4400 if (state == eStateExited)
4401 {
4402 int exit_status = GetExitStatus();
4403 const char *exit_description = GetExitDescription();
Greg Clayton444e35b2011-10-19 18:09:39 +00004404 strm.Printf ("Process %llu exited with status = %i (0x%8.8x) %s\n",
Greg Claytonabe0fed2011-04-18 08:33:37 +00004405 GetID(),
4406 exit_status,
4407 exit_status,
4408 exit_description ? exit_description : "");
4409 }
4410 else
4411 {
4412 if (state == eStateConnected)
4413 strm.Printf ("Connected to remote target.\n");
4414 else
Greg Clayton444e35b2011-10-19 18:09:39 +00004415 strm.Printf ("Process %llu %s\n", GetID(), StateAsCString (state));
Greg Claytonabe0fed2011-04-18 08:33:37 +00004416 }
4417 }
4418 else
4419 {
Greg Clayton444e35b2011-10-19 18:09:39 +00004420 strm.Printf ("Process %llu is running.\n", GetID());
Greg Claytonabe0fed2011-04-18 08:33:37 +00004421 }
4422}
4423
4424size_t
4425Process::GetThreadStatus (Stream &strm,
4426 bool only_threads_with_stop_reason,
4427 uint32_t start_frame,
4428 uint32_t num_frames,
4429 uint32_t num_frames_with_source)
4430{
4431 size_t num_thread_infos_dumped = 0;
4432
4433 const size_t num_threads = GetThreadList().GetSize();
4434 for (uint32_t i = 0; i < num_threads; i++)
4435 {
4436 Thread *thread = GetThreadList().GetThreadAtIndex(i).get();
4437 if (thread)
4438 {
4439 if (only_threads_with_stop_reason)
4440 {
4441 if (thread->GetStopInfo().get() == NULL)
4442 continue;
4443 }
4444 thread->GetStatus (strm,
4445 start_frame,
4446 num_frames,
4447 num_frames_with_source);
4448 ++num_thread_infos_dumped;
4449 }
4450 }
4451 return num_thread_infos_dumped;
4452}
4453
Greg Clayton76113302012-02-22 04:37:26 +00004454void
4455Process::AddInvalidMemoryRegion (const LoadRange &region)
4456{
4457 m_memory_cache.AddInvalidRange(region.GetRangeBase(), region.GetByteSize());
4458}
4459
4460bool
4461Process::RemoveInvalidMemoryRange (const LoadRange &region)
4462{
4463 return m_memory_cache.RemoveInvalidRange(region.GetRangeBase(), region.GetByteSize());
4464}
4465
4466
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004467//--------------------------------------------------------------
Greg Claytond0a5a232010-09-19 02:33:57 +00004468// class Process::SettingsController
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004469//--------------------------------------------------------------
4470
Greg Claytond0a5a232010-09-19 02:33:57 +00004471Process::SettingsController::SettingsController () :
Caroline Tice5bc8c972010-09-20 20:44:43 +00004472 UserSettingsController ("process", Target::GetSettingsController())
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004473{
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004474}
4475
Greg Claytond0a5a232010-09-19 02:33:57 +00004476Process::SettingsController::~SettingsController ()
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004477{
4478}
4479
4480lldb::InstanceSettingsSP
Greg Claytond0a5a232010-09-19 02:33:57 +00004481Process::SettingsController::CreateInstanceSettings (const char *instance_name)
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004482{
Greg Clayton334d33a2012-01-30 07:41:31 +00004483 lldb::InstanceSettingsSP new_settings_sp (new ProcessInstanceSettings (GetSettingsController(),
4484 false,
4485 instance_name));
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004486 return new_settings_sp;
4487}
4488
4489//--------------------------------------------------------------
4490// class ProcessInstanceSettings
4491//--------------------------------------------------------------
4492
Greg Clayton638351a2010-12-04 00:10:17 +00004493ProcessInstanceSettings::ProcessInstanceSettings
4494(
Greg Clayton334d33a2012-01-30 07:41:31 +00004495 const UserSettingsControllerSP &owner_sp,
Greg Clayton638351a2010-12-04 00:10:17 +00004496 bool live_instance,
4497 const char *name
4498) :
Greg Clayton334d33a2012-01-30 07:41:31 +00004499 InstanceSettings (owner_sp, name ? name : InstanceSettings::InvalidName().AsCString(), live_instance)
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004500{
Caroline Tice396704b2010-09-09 18:26:37 +00004501 // CopyInstanceSettings is a pure virtual function in InstanceSettings; it therefore cannot be called
4502 // until the vtables for ProcessInstanceSettings are properly set up, i.e. AFTER all the initializers.
4503 // For this reason it has to be called here, rather than in the initializer or in the parent constructor.
Caroline Tice75b11a32010-09-16 19:05:55 +00004504 // This is true for CreateInstanceName() too.
Greg Claytonabb33022011-11-08 02:43:13 +00004505
Caroline Tice75b11a32010-09-16 19:05:55 +00004506 if (GetInstanceName () == InstanceSettings::InvalidName())
4507 {
4508 ChangeInstanceName (std::string (CreateInstanceName().AsCString()));
Greg Clayton334d33a2012-01-30 07:41:31 +00004509 owner_sp->RegisterInstanceSettings (this);
Caroline Tice75b11a32010-09-16 19:05:55 +00004510 }
Greg Claytonabb33022011-11-08 02:43:13 +00004511
Caroline Tice396704b2010-09-09 18:26:37 +00004512 if (live_instance)
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004513 {
Greg Clayton334d33a2012-01-30 07:41:31 +00004514 const lldb::InstanceSettingsSP &pending_settings = owner_sp->FindPendingSettings (m_instance_name);
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004515 CopyInstanceSettings (pending_settings,false);
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004516 }
4517}
4518
4519ProcessInstanceSettings::ProcessInstanceSettings (const ProcessInstanceSettings &rhs) :
Greg Clayton334d33a2012-01-30 07:41:31 +00004520 InstanceSettings (Process::GetSettingsController(), CreateInstanceName().AsCString())
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004521{
4522 if (m_instance_name != InstanceSettings::GetDefaultName())
4523 {
Greg Clayton334d33a2012-01-30 07:41:31 +00004524 UserSettingsControllerSP owner_sp (m_owner_wp.lock());
4525 if (owner_sp)
4526 {
4527 CopyInstanceSettings (owner_sp->FindPendingSettings (m_instance_name), false);
4528 owner_sp->RemovePendingSettings (m_instance_name);
4529 }
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004530 }
4531}
4532
4533ProcessInstanceSettings::~ProcessInstanceSettings ()
4534{
4535}
4536
4537ProcessInstanceSettings&
4538ProcessInstanceSettings::operator= (const ProcessInstanceSettings &rhs)
4539{
4540 if (this != &rhs)
4541 {
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004542 }
4543
4544 return *this;
4545}
4546
4547
4548void
4549ProcessInstanceSettings::UpdateInstanceSettingsVariable (const ConstString &var_name,
4550 const char *index_value,
4551 const char *value,
4552 const ConstString &instance_name,
4553 const SettingEntry &entry,
Greg Claytonb3448432011-03-24 21:19:54 +00004554 VarSetOperationType op,
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004555 Error &err,
4556 bool pending)
4557{
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004558}
4559
4560void
4561ProcessInstanceSettings::CopyInstanceSettings (const lldb::InstanceSettingsSP &new_settings,
4562 bool pending)
4563{
Greg Claytonabb33022011-11-08 02:43:13 +00004564// if (new_settings.get() == NULL)
4565// return;
4566//
4567// ProcessInstanceSettings *new_process_settings = (ProcessInstanceSettings *) new_settings.get();
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004568}
4569
Caroline Ticebcb5b452010-09-20 21:37:42 +00004570bool
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004571ProcessInstanceSettings::GetInstanceSettingsValue (const SettingEntry &entry,
4572 const ConstString &var_name,
Caroline Tice5bc8c972010-09-20 20:44:43 +00004573 StringList &value,
Caroline Ticebcb5b452010-09-20 21:37:42 +00004574 Error *err)
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004575{
Greg Claytonabb33022011-11-08 02:43:13 +00004576 if (err)
4577 err->SetErrorStringWithFormat ("unrecognized variable name '%s'", var_name.AsCString());
4578 return false;
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004579}
4580
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004581const ConstString
4582ProcessInstanceSettings::CreateInstanceName ()
4583{
4584 static int instance_count = 1;
4585 StreamString sstr;
4586
4587 sstr.Printf ("process_%d", instance_count);
4588 ++instance_count;
4589
4590 const ConstString ret_val (sstr.GetData());
4591 return ret_val;
4592}
4593
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004594//--------------------------------------------------
Greg Claytond0a5a232010-09-19 02:33:57 +00004595// SettingsController Variable Tables
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004596//--------------------------------------------------
4597
4598SettingEntry
Greg Claytond0a5a232010-09-19 02:33:57 +00004599Process::SettingsController::global_settings_table[] =
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004600{
4601 //{ "var-name", var-type , "default", enum-table, init'd, hidden, "help-text"},
4602 { NULL, eSetVarTypeNone, NULL, NULL, 0, 0, NULL }
4603};
4604
4605
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004606SettingEntry
Greg Claytond0a5a232010-09-19 02:33:57 +00004607Process::SettingsController::instance_settings_table[] =
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004608{
Greg Clayton638351a2010-12-04 00:10:17 +00004609 //{ "var-name", var-type, "default", enum-table, init'd, hidden, "help-text"},
Greg Clayton638351a2010-12-04 00:10:17 +00004610 { NULL, eSetVarTypeNone, NULL, NULL, false, false, NULL }
Caroline Tice6e4c5ce2010-09-04 00:03:46 +00004611};
4612
4613
Jim Ingham7508e732010-08-09 23:31:02 +00004614
Greg Claytonabb33022011-11-08 02:43:13 +00004615