LLDB mainline
CommandObjectProcess.cpp
Go to the documentation of this file.
1//===-- CommandObjectProcess.cpp ------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
11#include "CommandObjectTrace.h"
19#include "lldb/Core/Module.h"
29#include "lldb/Target/Process.h"
31#include "lldb/Target/Target.h"
32#include "lldb/Target/Thread.h"
34#include "lldb/Utility/Args.h"
36#include "lldb/Utility/State.h"
37
38#include "llvm/ADT/ScopeExit.h"
39
40#include <bitset>
41#include <optional>
42
43using namespace lldb;
44using namespace lldb_private;
45
47public:
49 const char *name, const char *help,
50 const char *syntax, uint32_t flags,
51 const char *new_process_action)
52 : CommandObjectParsed(interpreter, name, help, syntax, flags),
53 m_new_process_action(new_process_action) {}
54
56
57protected:
59 CommandReturnObject &result) {
60 state = eStateInvalid;
61 if (process) {
62 state = process->GetState();
63
64 if (process->IsAlive() && state != eStateConnected) {
65 std::string message;
66 if (process->GetState() == eStateAttaching)
67 message =
68 llvm::formatv("There is a pending attach, abort it and {0}?",
70 else if (process->GetShouldDetach())
71 message = llvm::formatv(
72 "There is a running process, detach from it and {0}?",
74 else
75 message =
76 llvm::formatv("There is a running process, kill it and {0}?",
78
79 if (!m_interpreter.Confirm(message, true)) {
81 return false;
82 } else {
83 if (process->GetShouldDetach()) {
84 bool keep_stopped = false;
85 Status detach_error(process->Detach(keep_stopped));
86 if (detach_error.Success()) {
88 process = nullptr;
89 } else {
91 "Failed to detach from process: %s\n",
92 detach_error.AsCString());
93 }
94 } else {
95 Status destroy_error(process->Destroy(false));
96 if (destroy_error.Success()) {
98 process = nullptr;
99 } else {
100 result.AppendErrorWithFormat("Failed to kill process: %s\n",
101 destroy_error.AsCString());
102 }
103 }
104 }
105 }
106 }
107 return result.Succeeded();
108 }
109
111};
112
113// CommandObjectProcessLaunch
114#pragma mark CommandObjectProcessLaunch
116public:
119 interpreter, "process launch",
120 "Launch the executable in the debugger.", nullptr,
121 eCommandRequiresTarget, "restart"),
122
123 m_class_options("scripted process", true, 'C', 'k', 'v', 0) {
128
130 }
131
132 ~CommandObjectProcessLaunch() override = default;
133
134 Options *GetOptions() override { return &m_all_options; }
135
136 std::optional<std::string> GetRepeatCommand(Args &current_command_args,
137 uint32_t index) override {
138 // No repeat for "process launch"...
139 return std::string("");
140 }
141
142protected:
143 void DoExecute(Args &launch_args, CommandReturnObject &result) override {
144 Debugger &debugger = GetDebugger();
145 Target *target = debugger.GetSelectedTarget().get();
146 // If our listener is nullptr, users aren't allows to launch
147 ModuleSP exe_module_sp = target->GetExecutableModule();
148
149 // If the target already has an executable module, then use that. If it
150 // doesn't then someone must be trying to launch using a path that will
151 // make sense to the remote stub, but doesn't exist on the local host.
152 // In that case use the ExecutableFile that was set in the target's
153 // ProcessLaunchInfo.
154 if (exe_module_sp == nullptr && !target->GetProcessLaunchInfo().GetExecutableFile()) {
155 result.AppendError("no file in target, create a debug target using the "
156 "'target create' command");
157 return;
158 }
159
160 StateType state = eStateInvalid;
161
162 if (!StopProcessIfNecessary(m_exe_ctx.GetProcessPtr(), state, result))
163 return;
164
165 // Determine whether we will disable ASLR or leave it in the default state
166 // (i.e. enabled if the platform supports it). First check if the process
167 // launch options explicitly turn on/off
168 // disabling ASLR. If so, use that setting;
169 // otherwise, use the 'settings target.disable-aslr' setting.
170 bool disable_aslr = false;
172 // The user specified an explicit setting on the process launch line.
173 // Use it.
174 disable_aslr = (m_options.disable_aslr == eLazyBoolYes);
175 } else {
176 // The user did not explicitly specify whether to disable ASLR. Fall
177 // back to the target.disable-aslr setting.
178 disable_aslr = target->GetDisableASLR();
179 }
180
181 if (!m_class_options.GetName().empty()) {
182 m_options.launch_info.SetProcessPluginName("ScriptedProcess");
183 ScriptedMetadataSP metadata_sp = std::make_shared<ScriptedMetadata>(
187 }
188
189 if (disable_aslr)
190 m_options.launch_info.GetFlags().Set(eLaunchFlagDisableASLR);
191 else
192 m_options.launch_info.GetFlags().Clear(eLaunchFlagDisableASLR);
193
194 if (target->GetInheritTCC())
195 m_options.launch_info.GetFlags().Set(eLaunchFlagInheritTCCFromParent);
196
197 if (target->GetDetachOnError())
198 m_options.launch_info.GetFlags().Set(eLaunchFlagDetachOnError);
199
200 if (target->GetDisableSTDIO())
201 m_options.launch_info.GetFlags().Set(eLaunchFlagDisableSTDIO);
202
203 // Merge the launch info environment with the target environment.
204 Environment target_env = target->GetEnvironment();
205 m_options.launch_info.GetEnvironment().insert(target_env.begin(),
206 target_env.end());
207
208 llvm::StringRef target_settings_argv0 = target->GetArg0();
209
210 if (!target_settings_argv0.empty()) {
212 target_settings_argv0);
213 if (exe_module_sp)
215 exe_module_sp->GetPlatformFileSpec(), false);
216 else
218 } else {
219 if (exe_module_sp)
221 exe_module_sp->GetPlatformFileSpec(), true);
222 else
224 }
225
226 if (launch_args.GetArgumentCount() == 0) {
229 } else {
231 // Save the arguments for subsequent runs in the current target.
232 target->SetRunArguments(launch_args);
233 }
234
235 StreamString stream;
236 Status error = target->Launch(m_options.launch_info, &stream);
237
238 if (error.Success()) {
239 ProcessSP process_sp(target->GetProcessSP());
240 if (process_sp) {
241 // There is a race condition where this thread will return up the call
242 // stack to the main command handler and show an (lldb) prompt before
243 // HandlePrivateEvent (from PrivateStateThread) has a chance to call
244 // PushProcessIOHandler().
245 process_sp->SyncIOHandler(0, std::chrono::seconds(2));
246
247 // If we didn't have a local executable, then we wouldn't have had an
248 // executable module before launch.
249 if (!exe_module_sp)
250 exe_module_sp = target->GetExecutableModule();
251 if (!exe_module_sp) {
252 result.AppendWarning("Could not get executable module after launch.");
253 } else {
254
255 const char *archname =
256 exe_module_sp->GetArchitecture().GetArchitectureName();
258 "Process %" PRIu64 " launched: '%s' (%s)\n", process_sp->GetID(),
259 exe_module_sp->GetFileSpec().GetPath().c_str(), archname);
260 }
262 // This message will refer to an event that happened after the process
263 // launched.
264 llvm::StringRef data = stream.GetString();
265 if (!data.empty())
266 result.AppendMessage(data);
267 result.SetDidChangeProcessState(true);
268 } else {
269 result.AppendError(
270 "no error returned from Target::Launch, and target has no process");
271 }
272 } else {
273 result.AppendError(error.AsCString());
274 }
275 }
276
280};
281
282#define LLDB_OPTIONS_process_attach
283#include "CommandOptions.inc"
284
285#pragma mark CommandObjectProcessAttach
287public:
290 interpreter, "process attach", "Attach to a process.",
291 "process attach <cmd-options>", 0, "attach"),
292 m_class_options("scripted process", true, 'C', 'k', 'v', 0) {
297 }
298
299 ~CommandObjectProcessAttach() override = default;
300
301 Options *GetOptions() override { return &m_all_options; }
302
303protected:
304 void DoExecute(Args &command, CommandReturnObject &result) override {
305 PlatformSP platform_sp(
306 GetDebugger().GetPlatformList().GetSelectedPlatform());
307
308 Target *target = GetDebugger().GetSelectedTarget().get();
309 // N.B. The attach should be synchronous. It doesn't help much to get the
310 // prompt back between initiating the attach and the target actually
311 // stopping. So even if the interpreter is set to be asynchronous, we wait
312 // for the stop ourselves here.
313
314 StateType state = eStateInvalid;
315 Process *process = m_exe_ctx.GetProcessPtr();
316
317 if (!StopProcessIfNecessary(process, state, result))
318 return;
319
320 if (target == nullptr) {
321 // If there isn't a current target create one.
322 TargetSP new_target_sp;
324
327 nullptr, // No platform options
328 new_target_sp);
329 target = new_target_sp.get();
330 if (target == nullptr || error.Fail()) {
331 result.AppendError(error.AsCString("Error creating target"));
332 return;
333 }
334 }
335
336 if (!m_class_options.GetName().empty()) {
337 m_options.attach_info.SetProcessPluginName("ScriptedProcess");
338 ScriptedMetadataSP metadata_sp = std::make_shared<ScriptedMetadata>(
341 }
342
343 // Record the old executable module, we want to issue a warning if the
344 // process of attaching changed the current executable (like somebody said
345 // "file foo" then attached to a PID whose executable was bar.)
346
347 ModuleSP old_exec_module_sp = target->GetExecutableModule();
348 ArchSpec old_arch_spec = target->GetArchitecture();
349
350 StreamString stream;
351 ProcessSP process_sp;
352 const auto error = target->Attach(m_options.attach_info, &stream);
353 if (error.Success()) {
354 process_sp = target->GetProcessSP();
355 if (process_sp) {
356 result.AppendMessage(stream.GetString());
358 result.SetDidChangeProcessState(true);
359 } else {
360 result.AppendError(
361 "no error returned from Target::Attach, and target has no process");
362 }
363 } else {
364 result.AppendErrorWithFormat("attach failed: %s\n", error.AsCString());
365 }
366
367 if (!result.Succeeded())
368 return;
369
370 // Okay, we're done. Last step is to warn if the executable module has
371 // changed:
372 char new_path[PATH_MAX];
373 ModuleSP new_exec_module_sp(target->GetExecutableModule());
374 if (!old_exec_module_sp) {
375 // We might not have a module if we attached to a raw pid...
376 if (new_exec_module_sp) {
377 new_exec_module_sp->GetFileSpec().GetPath(new_path, PATH_MAX);
378 result.AppendMessageWithFormat("Executable module set to \"%s\".\n",
379 new_path);
380 }
381 } else if (old_exec_module_sp->GetFileSpec() !=
382 new_exec_module_sp->GetFileSpec()) {
383 char old_path[PATH_MAX];
384
385 old_exec_module_sp->GetFileSpec().GetPath(old_path, PATH_MAX);
386 new_exec_module_sp->GetFileSpec().GetPath(new_path, PATH_MAX);
387
389 "Executable module changed from \"%s\" to \"%s\".\n", old_path,
390 new_path);
391 }
392
393 if (!old_arch_spec.IsValid()) {
395 "Architecture set to: %s.\n",
396 target->GetArchitecture().GetTriple().getTriple().c_str());
397 } else if (!old_arch_spec.IsExactMatch(target->GetArchitecture())) {
399 "Architecture changed from %s to %s.\n",
400 old_arch_spec.GetTriple().getTriple().c_str(),
401 target->GetArchitecture().GetTriple().getTriple().c_str());
402 }
403
404 // This supports the use-case scenario of immediately continuing the
405 // process once attached.
407 // We have made a process but haven't told the interpreter about it yet,
408 // so CheckRequirements will fail for "process continue". Set the override
409 // here:
410 ExecutionContext exe_ctx(process_sp);
411 m_interpreter.HandleCommand("process continue", eLazyBoolNo, exe_ctx, result);
412 }
413 }
414
418};
419
420// CommandObjectProcessContinue
421
422#define LLDB_OPTIONS_process_continue
423#include "CommandOptions.inc"
424
425#pragma mark CommandObjectProcessContinue
426
428public:
431 interpreter, "process continue",
432 "Continue execution of all threads in the current process.",
433 "process continue",
434 eCommandRequiresProcess | eCommandTryTargetAPILock |
435 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {}
436
437 ~CommandObjectProcessContinue() override = default;
438
439protected:
440 class CommandOptions : public Options {
441 public:
443 // Keep default values of all options in one place: OptionParsingStarting
444 // ()
445 OptionParsingStarting(nullptr);
446 }
447
448 ~CommandOptions() override = default;
449
450 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
451 ExecutionContext *exe_ctx) override {
453 const int short_option = m_getopt_table[option_idx].val;
454 switch (short_option) {
455 case 'i':
456 if (option_arg.getAsInteger(0, m_ignore))
457 error.SetErrorStringWithFormat(
458 "invalid value for ignore option: \"%s\", should be a number.",
459 option_arg.str().c_str());
460 break;
461 case 'b':
464 break;
465 default:
466 llvm_unreachable("Unimplemented option");
467 }
468 return error;
469 }
470
471 void OptionParsingStarting(ExecutionContext *execution_context) override {
472 m_ignore = 0;
474 m_any_bkpts_specified = false;
475 }
476
477 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
478 return llvm::ArrayRef(g_process_continue_options);
479 }
480
481 uint32_t m_ignore = 0;
484 };
485
486 void DoExecute(Args &command, CommandReturnObject &result) override {
487 Process *process = m_exe_ctx.GetProcessPtr();
488 bool synchronous_execution = m_interpreter.GetSynchronous();
489 StateType state = process->GetState();
490 if (state == eStateStopped) {
491 if (m_options.m_ignore > 0) {
492 ThreadSP sel_thread_sp(GetDefaultThread()->shared_from_this());
493 if (sel_thread_sp) {
494 StopInfoSP stop_info_sp = sel_thread_sp->GetStopInfo();
495 if (stop_info_sp &&
496 stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
497 lldb::break_id_t bp_site_id =
498 (lldb::break_id_t)stop_info_sp->GetValue();
499 BreakpointSiteSP bp_site_sp(
500 process->GetBreakpointSiteList().FindByID(bp_site_id));
501 if (bp_site_sp) {
502 const size_t num_owners = bp_site_sp->GetNumberOfConstituents();
503 for (size_t i = 0; i < num_owners; i++) {
504 Breakpoint &bp_ref =
505 bp_site_sp->GetConstituentAtIndex(i)->GetBreakpoint();
506 if (!bp_ref.IsInternal()) {
508 }
509 }
510 }
511 }
512 }
513 }
514
515 Target *target = m_exe_ctx.GetTargetPtr();
516 BreakpointIDList run_to_bkpt_ids;
517 // Don't pass an empty run_to_breakpoint list, as Verify will look for the
518 // default breakpoint.
521 m_options.m_run_to_bkpt_args, target, result, &run_to_bkpt_ids,
523 if (!result.Succeeded()) {
524 return;
525 }
526 result.Clear();
527 if (m_options.m_any_bkpts_specified && run_to_bkpt_ids.GetSize() == 0) {
528 result.AppendError("continue-to breakpoints did not specify any actual "
529 "breakpoints or locations");
530 return;
531 }
532
533 // First figure out which breakpoints & locations were specified by the
534 // user:
535 size_t num_run_to_bkpt_ids = run_to_bkpt_ids.GetSize();
536 std::vector<break_id_t> bkpts_disabled;
537 std::vector<BreakpointID> locs_disabled;
538 if (num_run_to_bkpt_ids != 0) {
539 // Go through the ID's specified, and separate the breakpoints from are
540 // the breakpoint.location specifications since the latter require
541 // special handling. We also figure out whether there's at least one
542 // specifier in the set that is enabled.
543 BreakpointList &bkpt_list = target->GetBreakpointList();
544 std::unordered_set<break_id_t> bkpts_seen;
545 std::unordered_set<break_id_t> bkpts_with_locs_seen;
546 BreakpointIDList with_locs;
547 bool any_enabled = false;
548
549 for (size_t idx = 0; idx < num_run_to_bkpt_ids; idx++) {
550 BreakpointID bkpt_id = run_to_bkpt_ids.GetBreakpointIDAtIndex(idx);
551 break_id_t bp_id = bkpt_id.GetBreakpointID();
552 break_id_t loc_id = bkpt_id.GetLocationID();
553 BreakpointSP bp_sp
554 = bkpt_list.FindBreakpointByID(bp_id);
555 // Note, VerifyBreakpointOrLocationIDs checks for existence, so we
556 // don't need to do it again here.
557 if (bp_sp->IsEnabled()) {
558 if (loc_id == LLDB_INVALID_BREAK_ID) {
559 // A breakpoint (without location) was specified. Make sure that
560 // at least one of the locations is enabled.
561 size_t num_locations = bp_sp->GetNumLocations();
562 for (size_t loc_idx = 0; loc_idx < num_locations; loc_idx++) {
564 = bp_sp->GetLocationAtIndex(loc_idx);
565 if (loc_sp->IsEnabled()) {
566 any_enabled = true;
567 break;
568 }
569 }
570 } else {
571 // A location was specified, check if it was enabled:
572 BreakpointLocationSP loc_sp = bp_sp->FindLocationByID(loc_id);
573 if (loc_sp->IsEnabled())
574 any_enabled = true;
575 }
576
577 // Then sort the bp & bp.loc entries for later use:
578 if (bkpt_id.GetLocationID() == LLDB_INVALID_BREAK_ID)
579 bkpts_seen.insert(bkpt_id.GetBreakpointID());
580 else {
581 bkpts_with_locs_seen.insert(bkpt_id.GetBreakpointID());
582 with_locs.AddBreakpointID(bkpt_id);
583 }
584 }
585 }
586 // Do all the error checking here so once we start disabling we don't
587 // have to back out half-way through.
588
589 // Make sure at least one of the specified breakpoints is enabled.
590 if (!any_enabled) {
591 result.AppendError("at least one of the continue-to breakpoints must "
592 "be enabled.");
593 return;
594 }
595
596 // Also, if you specify BOTH a breakpoint and one of it's locations,
597 // we flag that as an error, since it won't do what you expect, the
598 // breakpoint directive will mean "run to all locations", which is not
599 // what the location directive means...
600 for (break_id_t bp_id : bkpts_with_locs_seen) {
601 if (bkpts_seen.count(bp_id)) {
602 result.AppendErrorWithFormatv("can't specify both a breakpoint and "
603 "one of its locations: {0}", bp_id);
604 }
605 }
606
607 // Now go through the breakpoints in the target, disabling all the ones
608 // that the user didn't mention:
609 for (BreakpointSP bp_sp : bkpt_list.Breakpoints()) {
610 break_id_t bp_id = bp_sp->GetID();
611 // Handle the case where no locations were specified. Note we don't
612 // have to worry about the case where a breakpoint and one of its
613 // locations are both in the lists, we've already disallowed that.
614 if (!bkpts_with_locs_seen.count(bp_id)) {
615 if (!bkpts_seen.count(bp_id) && bp_sp->IsEnabled()) {
616 bkpts_disabled.push_back(bp_id);
617 bp_sp->SetEnabled(false);
618 }
619 continue;
620 }
621 // Next, handle the case where a location was specified:
622 // Run through all the locations of this breakpoint and disable
623 // the ones that aren't on our "with locations" BreakpointID list:
624 size_t num_locations = bp_sp->GetNumLocations();
625 BreakpointID tmp_id(bp_id, LLDB_INVALID_BREAK_ID);
626 for (size_t loc_idx = 0; loc_idx < num_locations; loc_idx++) {
627 BreakpointLocationSP loc_sp = bp_sp->GetLocationAtIndex(loc_idx);
628 tmp_id.SetBreakpointLocationID(loc_idx);
629 if (!with_locs.Contains(tmp_id) && loc_sp->IsEnabled()) {
630 locs_disabled.push_back(tmp_id);
631 loc_sp->SetEnabled(false);
632 }
633 }
634 }
635 }
636
637 { // Scope for thread list mutex:
638 std::lock_guard<std::recursive_mutex> guard(
639 process->GetThreadList().GetMutex());
640 const uint32_t num_threads = process->GetThreadList().GetSize();
641
642 // Set the actions that the threads should each take when resuming
643 for (uint32_t idx = 0; idx < num_threads; ++idx) {
644 const bool override_suspend = false;
645 process->GetThreadList().GetThreadAtIndex(idx)->SetResumeState(
646 eStateRunning, override_suspend);
647 }
648 }
649
650 const uint32_t iohandler_id = process->GetIOHandlerID();
651
652 StreamString stream;
654 // For now we can only do -b with synchronous:
655 bool old_sync = GetDebugger().GetAsyncExecution();
656
657 if (run_to_bkpt_ids.GetSize() != 0) {
659 synchronous_execution = true;
660 }
661 if (synchronous_execution)
662 error = process->ResumeSynchronous(&stream);
663 else
664 error = process->Resume();
665
666 if (run_to_bkpt_ids.GetSize() != 0) {
667 GetDebugger().SetAsyncExecution(old_sync);
668 }
669
670 // Now re-enable the breakpoints we disabled:
671 BreakpointList &bkpt_list = target->GetBreakpointList();
672 for (break_id_t bp_id : bkpts_disabled) {
673 BreakpointSP bp_sp = bkpt_list.FindBreakpointByID(bp_id);
674 if (bp_sp)
675 bp_sp->SetEnabled(true);
676 }
677 for (const BreakpointID &bkpt_id : locs_disabled) {
678 BreakpointSP bp_sp
679 = bkpt_list.FindBreakpointByID(bkpt_id.GetBreakpointID());
680 if (bp_sp) {
682 = bp_sp->FindLocationByID(bkpt_id.GetLocationID());
683 if (loc_sp)
684 loc_sp->SetEnabled(true);
685 }
686 }
687
688 if (error.Success()) {
689 // There is a race condition where this thread will return up the call
690 // stack to the main command handler and show an (lldb) prompt before
691 // HandlePrivateEvent (from PrivateStateThread) has a chance to call
692 // PushProcessIOHandler().
693 process->SyncIOHandler(iohandler_id, std::chrono::seconds(2));
694
695 result.AppendMessageWithFormat("Process %" PRIu64 " resuming\n",
696 process->GetID());
697 if (synchronous_execution) {
698 // If any state changed events had anything to say, add that to the
699 // result
700 result.AppendMessage(stream.GetString());
701
702 result.SetDidChangeProcessState(true);
704 } else {
706 }
707 } else {
708 result.AppendErrorWithFormat("Failed to resume process: %s.\n",
709 error.AsCString());
710 }
711 } else {
713 "Process cannot be continued from its current state (%s).\n",
714 StateAsCString(state));
715 }
716 }
717
718 Options *GetOptions() override { return &m_options; }
719
721};
722
723// CommandObjectProcessDetach
724#define LLDB_OPTIONS_process_detach
725#include "CommandOptions.inc"
726
727#pragma mark CommandObjectProcessDetach
728
730public:
731 class CommandOptions : public Options {
732 public:
734
735 ~CommandOptions() override = default;
736
737 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
738 ExecutionContext *execution_context) override {
740 const int short_option = m_getopt_table[option_idx].val;
741
742 switch (short_option) {
743 case 's':
744 bool tmp_result;
745 bool success;
746 tmp_result = OptionArgParser::ToBoolean(option_arg, false, &success);
747 if (!success)
748 error.SetErrorStringWithFormat("invalid boolean option: \"%s\"",
749 option_arg.str().c_str());
750 else {
751 if (tmp_result)
753 else
755 }
756 break;
757 default:
758 llvm_unreachable("Unimplemented option");
759 }
760 return error;
761 }
762
763 void OptionParsingStarting(ExecutionContext *execution_context) override {
765 }
766
767 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
768 return llvm::ArrayRef(g_process_detach_options);
769 }
770
771 // Instance variables to hold the values for command options.
773 };
774
776 : CommandObjectParsed(interpreter, "process detach",
777 "Detach from the current target process.",
778 "process detach",
779 eCommandRequiresProcess | eCommandTryTargetAPILock |
780 eCommandProcessMustBeLaunched) {}
781
782 ~CommandObjectProcessDetach() override = default;
783
784 Options *GetOptions() override { return &m_options; }
785
786protected:
787 void DoExecute(Args &command, CommandReturnObject &result) override {
788 Process *process = m_exe_ctx.GetProcessPtr();
789 // FIXME: This will be a Command Option:
790 bool keep_stopped;
792 // Check the process default:
793 keep_stopped = process->GetDetachKeepsStopped();
795 keep_stopped = true;
796 else
797 keep_stopped = false;
798
799 Status error(process->Detach(keep_stopped));
800 if (error.Success()) {
802 } else {
803 result.AppendErrorWithFormat("Detach failed: %s\n", error.AsCString());
804 }
805 }
806
808};
809
810// CommandObjectProcessConnect
811#define LLDB_OPTIONS_process_connect
812#include "CommandOptions.inc"
813
814#pragma mark CommandObjectProcessConnect
815
817public:
818 class CommandOptions : public Options {
819 public:
821 // Keep default values of all options in one place: OptionParsingStarting
822 // ()
823 OptionParsingStarting(nullptr);
824 }
825
826 ~CommandOptions() override = default;
827
828 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
829 ExecutionContext *execution_context) override {
831 const int short_option = m_getopt_table[option_idx].val;
832
833 switch (short_option) {
834 case 'p':
835 plugin_name.assign(std::string(option_arg));
836 break;
837
838 default:
839 llvm_unreachable("Unimplemented option");
840 }
841 return error;
842 }
843
844 void OptionParsingStarting(ExecutionContext *execution_context) override {
845 plugin_name.clear();
846 }
847
848 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
849 return llvm::ArrayRef(g_process_connect_options);
850 }
851
852 // Instance variables to hold the values for command options.
853
854 std::string plugin_name;
855 };
856
858 : CommandObjectParsed(interpreter, "process connect",
859 "Connect to a remote debug service.",
860 "process connect <remote-url>", 0) {
862 }
863
864 ~CommandObjectProcessConnect() override = default;
865
866 Options *GetOptions() override { return &m_options; }
867
868protected:
869 void DoExecute(Args &command, CommandReturnObject &result) override {
870 if (command.GetArgumentCount() != 1) {
872 "'%s' takes exactly one argument:\nUsage: %s\n", m_cmd_name.c_str(),
873 m_cmd_syntax.c_str());
874 return;
875 }
876
877 Process *process = m_exe_ctx.GetProcessPtr();
878 if (process && process->IsAlive()) {
880 "Process %" PRIu64
881 " is currently being debugged, kill the process before connecting.\n",
882 process->GetID());
883 return;
884 }
885
886 const char *plugin_name = nullptr;
887 if (!m_options.plugin_name.empty())
888 plugin_name = m_options.plugin_name.c_str();
889
891 Debugger &debugger = GetDebugger();
892 PlatformSP platform_sp = m_interpreter.GetPlatform(true);
893 ProcessSP process_sp =
894 debugger.GetAsyncExecution()
895 ? platform_sp->ConnectProcess(
896 command.GetArgumentAtIndex(0), plugin_name, debugger,
897 debugger.GetSelectedTarget().get(), error)
898 : platform_sp->ConnectProcessSynchronous(
899 command.GetArgumentAtIndex(0), plugin_name, debugger,
900 result.GetOutputStream(), debugger.GetSelectedTarget().get(),
901 error);
902 if (error.Fail() || process_sp == nullptr) {
903 result.AppendError(error.AsCString("Error connecting to the process"));
904 }
905 }
906
908};
909
910// CommandObjectProcessPlugin
911#pragma mark CommandObjectProcessPlugin
912
914public:
917 interpreter, "process plugin",
918 "Send a custom command to the current target process plug-in.",
919 "process plugin <args>", 0) {}
920
921 ~CommandObjectProcessPlugin() override = default;
922
925 if (process)
926 return process->GetPluginCommandObject();
927 return nullptr;
928 }
929};
930
931// CommandObjectProcessLoad
932#define LLDB_OPTIONS_process_load
933#include "CommandOptions.inc"
934
935#pragma mark CommandObjectProcessLoad
936
938public:
939 class CommandOptions : public Options {
940 public:
942 // Keep default values of all options in one place: OptionParsingStarting
943 // ()
944 OptionParsingStarting(nullptr);
945 }
946
947 ~CommandOptions() override = default;
948
949 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
950 ExecutionContext *execution_context) override {
952 const int short_option = m_getopt_table[option_idx].val;
953 switch (short_option) {
954 case 'i':
955 do_install = true;
956 if (!option_arg.empty())
957 install_path.SetFile(option_arg, FileSpec::Style::native);
958 break;
959 default:
960 llvm_unreachable("Unimplemented option");
961 }
962 return error;
963 }
964
965 void OptionParsingStarting(ExecutionContext *execution_context) override {
966 do_install = false;
968 }
969
970 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
971 return llvm::ArrayRef(g_process_load_options);
972 }
973
974 // Instance variables to hold the values for command options.
977 };
978
980 : CommandObjectParsed(interpreter, "process load",
981 "Load a shared library into the current process.",
982 "process load <filename> [<filename> ...]",
983 eCommandRequiresProcess | eCommandTryTargetAPILock |
984 eCommandProcessMustBeLaunched |
985 eCommandProcessMustBePaused) {
987 }
988
989 ~CommandObjectProcessLoad() override = default;
990
991 void
993 OptionElementVector &opt_element_vector) override {
995 return;
996 CommandObject::HandleArgumentCompletion(request, opt_element_vector);
997 }
998
999 Options *GetOptions() override { return &m_options; }
1000
1001protected:
1002 void DoExecute(Args &command, CommandReturnObject &result) override {
1003 Process *process = m_exe_ctx.GetProcessPtr();
1004
1005 for (auto &entry : command.entries()) {
1006 Status error;
1007 PlatformSP platform = process->GetTarget().GetPlatform();
1008 llvm::StringRef image_path = entry.ref();
1009 uint32_t image_token = LLDB_INVALID_IMAGE_TOKEN;
1010
1011 if (!m_options.do_install) {
1012 FileSpec image_spec(image_path);
1013 platform->ResolveRemotePath(image_spec, image_spec);
1014 image_token =
1015 platform->LoadImage(process, FileSpec(), image_spec, error);
1016 } else if (m_options.install_path) {
1017 FileSpec image_spec(image_path);
1018 FileSystem::Instance().Resolve(image_spec);
1019 platform->ResolveRemotePath(m_options.install_path,
1021 image_token = platform->LoadImage(process, image_spec,
1023 } else {
1024 FileSpec image_spec(image_path);
1025 FileSystem::Instance().Resolve(image_spec);
1026 image_token =
1027 platform->LoadImage(process, image_spec, FileSpec(), error);
1028 }
1029
1030 if (image_token != LLDB_INVALID_IMAGE_TOKEN) {
1032 "Loading \"%s\"...ok\nImage %u loaded.\n", image_path.str().c_str(),
1033 image_token);
1035 } else {
1036 result.AppendErrorWithFormat("failed to load '%s': %s",
1037 image_path.str().c_str(),
1038 error.AsCString());
1039 }
1040 }
1041 }
1042
1044};
1045
1046// CommandObjectProcessUnload
1047#pragma mark CommandObjectProcessUnload
1048
1050public:
1053 interpreter, "process unload",
1054 "Unload a shared library from the current process using the index "
1055 "returned by a previous call to \"process load\".",
1056 "process unload <index>",
1057 eCommandRequiresProcess | eCommandTryTargetAPILock |
1058 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {
1060 }
1061
1062 ~CommandObjectProcessUnload() override = default;
1063
1064 void
1066 OptionElementVector &opt_element_vector) override {
1067
1068 if (request.GetCursorIndex() || !m_exe_ctx.HasProcessScope())
1069 return;
1070
1071 Process *process = m_exe_ctx.GetProcessPtr();
1072
1073 const std::vector<lldb::addr_t> &tokens = process->GetImageTokens();
1074 const size_t token_num = tokens.size();
1075 for (size_t i = 0; i < token_num; ++i) {
1076 if (tokens[i] == LLDB_INVALID_IMAGE_TOKEN)
1077 continue;
1078 request.TryCompleteCurrentArg(std::to_string(i));
1079 }
1080 }
1081
1082protected:
1083 void DoExecute(Args &command, CommandReturnObject &result) override {
1084 Process *process = m_exe_ctx.GetProcessPtr();
1085
1086 for (auto &entry : command.entries()) {
1087 uint32_t image_token;
1088 if (entry.ref().getAsInteger(0, image_token)) {
1089 result.AppendErrorWithFormat("invalid image index argument '%s'",
1090 entry.ref().str().c_str());
1091 break;
1092 } else {
1093 Status error(process->GetTarget().GetPlatform()->UnloadImage(
1094 process, image_token));
1095 if (error.Success()) {
1097 "Unloading shared library with index %u...ok\n", image_token);
1099 } else {
1100 result.AppendErrorWithFormat("failed to unload image: %s",
1101 error.AsCString());
1102 break;
1103 }
1104 }
1105 }
1106 }
1107};
1108
1109// CommandObjectProcessSignal
1110#pragma mark CommandObjectProcessSignal
1111
1113public:
1116 interpreter, "process signal",
1117 "Send a UNIX signal to the current target process.", nullptr,
1118 eCommandRequiresProcess | eCommandTryTargetAPILock) {
1120 }
1121
1122 ~CommandObjectProcessSignal() override = default;
1123
1124 void
1126 OptionElementVector &opt_element_vector) override {
1127 if (!m_exe_ctx.HasProcessScope() || request.GetCursorIndex() != 0)
1128 return;
1129
1131 int signo = signals->GetFirstSignalNumber();
1132 while (signo != LLDB_INVALID_SIGNAL_NUMBER) {
1133 request.TryCompleteCurrentArg(signals->GetSignalAsStringRef(signo));
1134 signo = signals->GetNextSignalNumber(signo);
1135 }
1136 }
1137
1138protected:
1139 void DoExecute(Args &command, CommandReturnObject &result) override {
1140 Process *process = m_exe_ctx.GetProcessPtr();
1141
1142 if (command.GetArgumentCount() == 1) {
1143 int signo = LLDB_INVALID_SIGNAL_NUMBER;
1144
1145 const char *signal_name = command.GetArgumentAtIndex(0);
1146 if (::isxdigit(signal_name[0])) {
1147 if (!llvm::to_integer(signal_name, signo))
1149 } else
1150 signo = process->GetUnixSignals()->GetSignalNumberFromName(signal_name);
1151
1152 if (signo == LLDB_INVALID_SIGNAL_NUMBER) {
1153 result.AppendErrorWithFormat("Invalid signal argument '%s'.\n",
1154 command.GetArgumentAtIndex(0));
1155 } else {
1156 Status error(process->Signal(signo));
1157 if (error.Success()) {
1159 } else {
1160 result.AppendErrorWithFormat("Failed to send signal %i: %s\n", signo,
1161 error.AsCString());
1162 }
1163 }
1164 } else {
1165 result.AppendErrorWithFormat(
1166 "'%s' takes exactly one signal number argument:\nUsage: %s\n",
1167 m_cmd_name.c_str(), m_cmd_syntax.c_str());
1168 }
1169 }
1170};
1171
1172// CommandObjectProcessInterrupt
1173#pragma mark CommandObjectProcessInterrupt
1174
1176public:
1178 : CommandObjectParsed(interpreter, "process interrupt",
1179 "Interrupt the current target process.",
1180 "process interrupt",
1181 eCommandRequiresProcess | eCommandTryTargetAPILock |
1182 eCommandProcessMustBeLaunched) {}
1183
1185
1186protected:
1187 void DoExecute(Args &command, CommandReturnObject &result) override {
1188 Process *process = m_exe_ctx.GetProcessPtr();
1189 if (process == nullptr) {
1190 result.AppendError("no process to halt");
1191 return;
1192 }
1193
1194 bool clear_thread_plans = true;
1195 Status error(process->Halt(clear_thread_plans));
1196 if (error.Success()) {
1198 } else {
1199 result.AppendErrorWithFormat("Failed to halt process: %s\n",
1200 error.AsCString());
1201 }
1202 }
1203};
1204
1205// CommandObjectProcessKill
1206#pragma mark CommandObjectProcessKill
1207
1209public:
1211 : CommandObjectParsed(interpreter, "process kill",
1212 "Terminate the current target process.",
1213 "process kill",
1214 eCommandRequiresProcess | eCommandTryTargetAPILock |
1215 eCommandProcessMustBeLaunched) {}
1216
1217 ~CommandObjectProcessKill() override = default;
1218
1219protected:
1220 void DoExecute(Args &command, CommandReturnObject &result) override {
1221 Process *process = m_exe_ctx.GetProcessPtr();
1222 if (process == nullptr) {
1223 result.AppendError("no process to kill");
1224 return;
1225 }
1226
1227 Status error(process->Destroy(true));
1228 if (error.Success()) {
1230 } else {
1231 result.AppendErrorWithFormat("Failed to kill process: %s\n",
1232 error.AsCString());
1233 }
1234 }
1235};
1236
1237#define LLDB_OPTIONS_process_save_core
1238#include "CommandOptions.inc"
1239
1241public:
1244 interpreter, "process save-core",
1245 "Save the current process as a core file using an "
1246 "appropriate file type.",
1247 "process save-core [-s corefile-style -p plugin-name] FILE",
1248 eCommandRequiresProcess | eCommandTryTargetAPILock |
1249 eCommandProcessMustBeLaunched) {
1251 }
1252
1253 ~CommandObjectProcessSaveCore() override = default;
1254
1255 Options *GetOptions() override { return &m_options; }
1256
1257 class CommandOptions : public Options {
1258 public:
1259 CommandOptions() = default;
1260
1261 ~CommandOptions() override = default;
1262
1263 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1264 return llvm::ArrayRef(g_process_save_core_options);
1265 }
1266
1267 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1268 ExecutionContext *execution_context) override {
1269 const int short_option = m_getopt_table[option_idx].val;
1270 Status error;
1271
1272 switch (short_option) {
1273 case 'p':
1274 m_requested_plugin_name = option_arg.str();
1275 break;
1276 case 's':
1279 option_arg, GetDefinitions()[option_idx].enum_values,
1281 break;
1282 default:
1283 llvm_unreachable("Unimplemented option");
1284 }
1285
1286 return {};
1287 }
1288
1289 void OptionParsingStarting(ExecutionContext *execution_context) override {
1292 }
1293
1294 // Instance variables to hold the values for command options.
1297 };
1298
1299protected:
1300 void DoExecute(Args &command, CommandReturnObject &result) override {
1301 ProcessSP process_sp = m_exe_ctx.GetProcessSP();
1302 if (process_sp) {
1303 if (command.GetArgumentCount() == 1) {
1304 FileSpec output_file(command.GetArgumentAtIndex(0));
1305 FileSystem::Instance().Resolve(output_file);
1307 Status error =
1308 PluginManager::SaveCore(process_sp, output_file, corefile_style,
1310 if (error.Success()) {
1311 if (corefile_style == SaveCoreStyle::eSaveCoreDirtyOnly ||
1312 corefile_style == SaveCoreStyle::eSaveCoreStackOnly) {
1314 "\nModified-memory or stack-memory only corefile "
1315 "created. This corefile may \n"
1316 "not show library/framework/app binaries "
1317 "on a different system, or when \n"
1318 "those binaries have "
1319 "been updated/modified. Copies are not included\n"
1320 "in this corefile. Use --style full to include all "
1321 "process memory.\n");
1322 }
1324 } else {
1325 result.AppendErrorWithFormat(
1326 "Failed to save core file for process: %s\n", error.AsCString());
1327 }
1328 } else {
1329 result.AppendErrorWithFormat("'%s' takes one arguments:\nUsage: %s\n",
1330 m_cmd_name.c_str(), m_cmd_syntax.c_str());
1331 }
1332 } else {
1333 result.AppendError("invalid process");
1334 }
1335 }
1336
1338};
1339
1340// CommandObjectProcessStatus
1341#pragma mark CommandObjectProcessStatus
1342#define LLDB_OPTIONS_process_status
1343#include "CommandOptions.inc"
1344
1346public:
1349 interpreter, "process status",
1350 "Show status and stop location for the current target process.",
1351 "process status",
1352 eCommandRequiresProcess | eCommandTryTargetAPILock) {}
1353
1354 ~CommandObjectProcessStatus() override = default;
1355
1356 Options *GetOptions() override { return &m_options; }
1357
1358 class CommandOptions : public Options {
1359 public:
1360 CommandOptions() = default;
1361
1362 ~CommandOptions() override = default;
1363
1364 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1365 ExecutionContext *execution_context) override {
1366 const int short_option = m_getopt_table[option_idx].val;
1367
1368 switch (short_option) {
1369 case 'v':
1370 m_verbose = true;
1371 break;
1372 default:
1373 llvm_unreachable("Unimplemented option");
1374 }
1375
1376 return {};
1377 }
1378
1379 void OptionParsingStarting(ExecutionContext *execution_context) override {
1380 m_verbose = false;
1381 }
1382
1383 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1384 return llvm::ArrayRef(g_process_status_options);
1385 }
1386
1387 // Instance variables to hold the values for command options.
1388 bool m_verbose = false;
1389 };
1390
1391protected:
1392 void DoExecute(Args &command, CommandReturnObject &result) override {
1393 Stream &strm = result.GetOutputStream();
1395
1396 // No need to check "process" for validity as eCommandRequiresProcess
1397 // ensures it is valid
1398 Process *process = m_exe_ctx.GetProcessPtr();
1399 const bool only_threads_with_stop_reason = true;
1400 const uint32_t start_frame = 0;
1401 const uint32_t num_frames = 1;
1402 const uint32_t num_frames_with_source = 1;
1403 const bool stop_format = true;
1404 process->GetStatus(strm);
1405 process->GetThreadStatus(strm, only_threads_with_stop_reason, start_frame,
1406 num_frames, num_frames_with_source, stop_format);
1407
1408 if (m_options.m_verbose) {
1409 addr_t code_mask = process->GetCodeAddressMask();
1410 addr_t data_mask = process->GetDataAddressMask();
1411 if (code_mask != LLDB_INVALID_ADDRESS_MASK) {
1412 int bits = std::bitset<64>(~code_mask).count();
1414 "Addressable code address mask: 0x%" PRIx64 "\n", code_mask);
1416 "Addressable data address mask: 0x%" PRIx64 "\n", data_mask);
1418 "Number of bits used in addressing (code): %d\n", bits);
1419 }
1420
1421 PlatformSP platform_sp = process->GetTarget().GetPlatform();
1422 if (!platform_sp) {
1423 result.AppendError("Couldn'retrieve the target's platform");
1424 return;
1425 }
1426
1427 auto expected_crash_info =
1428 platform_sp->FetchExtendedCrashInformation(*process);
1429
1430 if (!expected_crash_info) {
1431 result.AppendError(llvm::toString(expected_crash_info.takeError()));
1432 return;
1433 }
1434
1435 StructuredData::DictionarySP crash_info_sp = *expected_crash_info;
1436
1437 if (crash_info_sp) {
1438 strm.EOL();
1439 strm.PutCString("Extended Crash Information:\n");
1440 crash_info_sp->GetDescription(strm);
1441 }
1442 }
1443 }
1444
1445private:
1447};
1448
1449// CommandObjectProcessHandle
1450#define LLDB_OPTIONS_process_handle
1451#include "CommandOptions.inc"
1452
1453#pragma mark CommandObjectProcessHandle
1454
1456public:
1457 class CommandOptions : public Options {
1458 public:
1460
1461 ~CommandOptions() override = default;
1462
1463 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1464 ExecutionContext *execution_context) override {
1465 Status error;
1466 const int short_option = m_getopt_table[option_idx].val;
1467
1468 switch (short_option) {
1469 case 'c':
1470 do_clear = true;
1471 break;
1472 case 'd':
1473 dummy = true;
1474 break;
1475 case 's':
1476 stop = std::string(option_arg);
1477 break;
1478 case 'n':
1479 notify = std::string(option_arg);
1480 break;
1481 case 'p':
1482 pass = std::string(option_arg);
1483 break;
1484 case 't':
1485 only_target_values = true;
1486 break;
1487 default:
1488 llvm_unreachable("Unimplemented option");
1489 }
1490 return error;
1491 }
1492
1493 void OptionParsingStarting(ExecutionContext *execution_context) override {
1494 stop.clear();
1495 notify.clear();
1496 pass.clear();
1497 only_target_values = false;
1498 do_clear = false;
1499 dummy = false;
1500 }
1501
1502 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1503 return llvm::ArrayRef(g_process_handle_options);
1504 }
1505
1506 // Instance variables to hold the values for command options.
1507
1508 std::string stop;
1509 std::string notify;
1510 std::string pass;
1512 bool do_clear = false;
1513 bool dummy = false;
1514 };
1515
1517 : CommandObjectParsed(interpreter, "process handle",
1518 "Manage LLDB handling of OS signals for the "
1519 "current target process. Defaults to showing "
1520 "current policy.",
1521 nullptr) {
1522 SetHelpLong("\nIf no signals are specified but one or more actions are, "
1523 "and there is a live process, update them all. If no action "
1524 "is specified, list the current values.\n"
1525 "If you specify actions with no target (e.g. in an init file) "
1526 "or in a target with no process "
1527 "the values will get copied into subsequent targets, but "
1528 "lldb won't be able to spell-check the options since it can't "
1529 "know which signal set will later be in force."
1530 "\nYou can see the signal modifications held by the target"
1531 "by passing the -t option."
1532 "\nYou can also clear the target modification for a signal"
1533 "by passing the -c option");
1535 }
1536
1537 ~CommandObjectProcessHandle() override = default;
1538
1539 Options *GetOptions() override { return &m_options; }
1540
1542 str.Printf("NAME PASS STOP NOTIFY\n");
1543 str.Printf("=========== ===== ===== ======\n");
1544 }
1545
1546 void PrintSignal(Stream &str, int32_t signo, llvm::StringRef sig_name,
1547 const UnixSignalsSP &signals_sp) {
1548 bool stop;
1549 bool suppress;
1550 bool notify;
1551
1552 str.Format("{0, -11} ", sig_name);
1553 if (signals_sp->GetSignalInfo(signo, suppress, stop, notify)) {
1554 bool pass = !suppress;
1555 str.Printf("%s %s %s", (pass ? "true " : "false"),
1556 (stop ? "true " : "false"), (notify ? "true " : "false"));
1557 }
1558 str.Printf("\n");
1559 }
1560
1561 void PrintSignalInformation(Stream &str, Args &signal_args,
1562 int num_valid_signals,
1563 const UnixSignalsSP &signals_sp) {
1564 PrintSignalHeader(str);
1565
1566 if (num_valid_signals > 0) {
1567 size_t num_args = signal_args.GetArgumentCount();
1568 for (size_t i = 0; i < num_args; ++i) {
1569 int32_t signo = signals_sp->GetSignalNumberFromName(
1570 signal_args.GetArgumentAtIndex(i));
1571 if (signo != LLDB_INVALID_SIGNAL_NUMBER)
1572 PrintSignal(str, signo, signal_args.GetArgumentAtIndex(i),
1573 signals_sp);
1574 }
1575 } else // Print info for ALL signals
1576 {
1577 int32_t signo = signals_sp->GetFirstSignalNumber();
1578 while (signo != LLDB_INVALID_SIGNAL_NUMBER) {
1579 PrintSignal(str, signo, signals_sp->GetSignalAsStringRef(signo),
1580 signals_sp);
1581 signo = signals_sp->GetNextSignalNumber(signo);
1582 }
1583 }
1584 }
1585
1586protected:
1587 void DoExecute(Args &signal_args, CommandReturnObject &result) override {
1588 Target &target = GetSelectedOrDummyTarget();
1589
1590 // Any signals that are being set should be added to the Target's
1591 // DummySignals so they will get applied on rerun, etc.
1592 // If we have a process, however, we can do a more accurate job of vetting
1593 // the user's options.
1594 ProcessSP process_sp = target.GetProcessSP();
1595
1596 std::optional<bool> stop_action = {};
1597 std::optional<bool> pass_action = {};
1598 std::optional<bool> notify_action = {};
1599
1600 if (!m_options.stop.empty()) {
1601 bool success = false;
1602 bool value = OptionArgParser::ToBoolean(m_options.stop, false, &success);
1603 if (!success) {
1604 result.AppendError(
1605 "Invalid argument for command option --stop; must be "
1606 "true or false.\n");
1607 return;
1608 }
1609
1610 stop_action = value;
1611 }
1612
1613 if (!m_options.pass.empty()) {
1614 bool success = false;
1615 bool value = OptionArgParser::ToBoolean(m_options.pass, false, &success);
1616 if (!success) {
1617 result.AppendError(
1618 "Invalid argument for command option --pass; must be "
1619 "true or false.\n");
1620 return;
1621 }
1622 pass_action = value;
1623 }
1624
1625 if (!m_options.notify.empty()) {
1626 bool success = false;
1627 bool value =
1629 if (!success) {
1630 result.AppendError("Invalid argument for command option --notify; must "
1631 "be true or false.\n");
1632 return;
1633 }
1634 notify_action = value;
1635 }
1636
1637 if (!m_options.notify.empty() && !notify_action.has_value()) {
1638 }
1639
1640 bool no_actions = (!stop_action.has_value() && !pass_action.has_value() &&
1641 !notify_action.has_value());
1642 if (m_options.only_target_values && !no_actions) {
1643 result.AppendError("-t is for reporting, not setting, target values.");
1644 return;
1645 }
1646
1647 size_t num_args = signal_args.GetArgumentCount();
1648 UnixSignalsSP signals_sp;
1649 if (process_sp)
1650 signals_sp = process_sp->GetUnixSignals();
1651
1652 int num_signals_set = 0;
1653
1654 // If we were just asked to print the target values, do that here and
1655 // return:
1657 target.PrintDummySignals(result.GetOutputStream(), signal_args);
1659 return;
1660 }
1661
1662 // This handles clearing values:
1663 if (m_options.do_clear) {
1664 target.ClearDummySignals(signal_args);
1665 if (m_options.dummy)
1666 GetDummyTarget().ClearDummySignals(signal_args);
1668 return;
1669 }
1670
1671 // This rest handles setting values:
1672 if (num_args > 0) {
1673 for (const auto &arg : signal_args) {
1674 // Do the process first. If we have a process we can catch
1675 // invalid signal names, which we do here.
1676 if (signals_sp) {
1677 int32_t signo = signals_sp->GetSignalNumberFromName(arg.c_str());
1678 if (signo != LLDB_INVALID_SIGNAL_NUMBER) {
1679 if (stop_action.has_value())
1680 signals_sp->SetShouldStop(signo, *stop_action);
1681 if (pass_action.has_value()) {
1682 bool suppress = !*pass_action;
1683 signals_sp->SetShouldSuppress(signo, suppress);
1684 }
1685 if (notify_action.has_value())
1686 signals_sp->SetShouldNotify(signo, *notify_action);
1687 ++num_signals_set;
1688 } else {
1689 result.AppendErrorWithFormat("Invalid signal name '%s'\n",
1690 arg.c_str());
1691 continue;
1692 }
1693 } else {
1694 // If there's no process we can't check, so we just set them all.
1695 // But since the map signal name -> signal number across all platforms
1696 // is not 1-1, we can't sensibly set signal actions by number before
1697 // we have a process. Check that here:
1698 int32_t signo;
1699 if (llvm::to_integer(arg.c_str(), signo)) {
1700 result.AppendErrorWithFormat("Can't set signal handling by signal "
1701 "number with no process");
1702 return;
1703 }
1704 num_signals_set = num_args;
1705 }
1706 auto set_lazy_bool = [](std::optional<bool> action) -> LazyBool {
1707 if (!action.has_value())
1708 return eLazyBoolCalculate;
1709 return (*action) ? eLazyBoolYes : eLazyBoolNo;
1710 };
1711
1712 // If there were no actions, we're just listing, don't add the dummy:
1713 if (!no_actions)
1714 target.AddDummySignal(arg.ref(), set_lazy_bool(pass_action),
1715 set_lazy_bool(notify_action),
1716 set_lazy_bool(stop_action));
1717 }
1718 } else {
1719 // No signal specified, if any command options were specified, update ALL
1720 // signals. But we can't do this without a process since we don't know
1721 // all the possible signals that might be valid for this target.
1722 if ((notify_action.has_value() || stop_action.has_value() ||
1723 pass_action.has_value()) &&
1724 process_sp) {
1726 "Do you really want to update all the signals?", false)) {
1727 int32_t signo = signals_sp->GetFirstSignalNumber();
1728 while (signo != LLDB_INVALID_SIGNAL_NUMBER) {
1729 if (notify_action.has_value())
1730 signals_sp->SetShouldNotify(signo, *notify_action);
1731 if (stop_action.has_value())
1732 signals_sp->SetShouldStop(signo, *stop_action);
1733 if (pass_action.has_value()) {
1734 bool suppress = !*pass_action;
1735 signals_sp->SetShouldSuppress(signo, suppress);
1736 }
1737 signo = signals_sp->GetNextSignalNumber(signo);
1738 }
1739 }
1740 }
1741 }
1742
1743 if (signals_sp)
1744 PrintSignalInformation(result.GetOutputStream(), signal_args,
1745 num_signals_set, signals_sp);
1746 else
1747 target.PrintDummySignals(result.GetOutputStream(),
1748 signal_args);
1749
1750 if (num_signals_set > 0)
1752 else
1754 }
1755
1757};
1758
1759// Next are the subcommands of CommandObjectMultiwordProcessTrace
1760
1761// CommandObjectProcessTraceStart
1763public:
1766 /*live_debug_session_only*/ true, interpreter,
1767 "process trace start",
1768 "Start tracing this process with the corresponding trace "
1769 "plug-in.",
1770 "process trace start [<trace-options>]") {}
1771
1772protected:
1775 }
1776};
1777
1778// CommandObjectProcessTraceStop
1780public:
1782 : CommandObjectParsed(interpreter, "process trace stop",
1783 "Stop tracing this process. This does not affect "
1784 "traces started with the "
1785 "\"thread trace start\" command.",
1786 "process trace stop",
1787 eCommandRequiresProcess | eCommandTryTargetAPILock |
1788 eCommandProcessMustBeLaunched |
1789 eCommandProcessMustBePaused |
1790 eCommandProcessMustBeTraced) {}
1791
1793
1794 void DoExecute(Args &command, CommandReturnObject &result) override {
1795 ProcessSP process_sp = m_exe_ctx.GetProcessSP();
1796
1797 TraceSP trace_sp = process_sp->GetTarget().GetTrace();
1798
1799 if (llvm::Error err = trace_sp->Stop())
1800 result.AppendError(toString(std::move(err)));
1801 else
1803 }
1804};
1805
1806// CommandObjectMultiwordProcessTrace
1808public:
1811 interpreter, "trace", "Commands for tracing the current process.",
1812 "process trace <subcommand> [<subcommand objects>]") {
1814 interpreter)));
1816 new CommandObjectProcessTraceStop(interpreter)));
1817 }
1818
1820};
1821
1822// CommandObjectMultiwordProcess
1823
1825 CommandInterpreter &interpreter)
1827 interpreter, "process",
1828 "Commands for interacting with processes on the current platform.",
1829 "process <subcommand> [<subcommand-options>]") {
1830 LoadSubCommand("attach",
1832 LoadSubCommand("launch",
1835 interpreter)));
1836 LoadSubCommand("connect",
1838 LoadSubCommand("detach",
1840 LoadSubCommand("load",
1841 CommandObjectSP(new CommandObjectProcessLoad(interpreter)));
1842 LoadSubCommand("unload",
1844 LoadSubCommand("signal",
1846 LoadSubCommand("handle",
1848 LoadSubCommand("status",
1851 interpreter)));
1852 LoadSubCommand("kill",
1853 CommandObjectSP(new CommandObjectProcessKill(interpreter)));
1854 LoadSubCommand("plugin",
1857 interpreter)));
1859 "trace",
1861}
1862
static llvm::raw_ostream & error(Stream &strm)
~CommandObjectMultiwordProcessTrace() override=default
CommandObjectMultiwordProcessTrace(CommandInterpreter &interpreter)
CommandOptionsProcessAttach m_options
~CommandObjectProcessAttach() override=default
OptionGroupPythonClassWithDict m_class_options
CommandObjectProcessAttach(CommandInterpreter &interpreter)
void DoExecute(Args &command, CommandReturnObject &result) override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
~CommandObjectProcessConnect() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectProcessConnect(CommandInterpreter &interpreter)
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *exe_ctx) override
Set the value of an option.
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
void OptionParsingStarting(ExecutionContext *execution_context) override
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectProcessContinue(CommandInterpreter &interpreter)
~CommandObjectProcessContinue() override=default
void OptionParsingStarting(ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectProcessDetach(CommandInterpreter &interpreter)
~CommandObjectProcessDetach() override=default
void OptionParsingStarting(ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
CommandObjectProcessHandle(CommandInterpreter &interpreter)
~CommandObjectProcessHandle() override=default
void DoExecute(Args &signal_args, CommandReturnObject &result) override
void PrintSignalInformation(Stream &str, Args &signal_args, int num_valid_signals, const UnixSignalsSP &signals_sp)
void PrintSignal(Stream &str, int32_t signo, llvm::StringRef sig_name, const UnixSignalsSP &signals_sp)
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectProcessInterrupt(CommandInterpreter &interpreter)
~CommandObjectProcessInterrupt() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
~CommandObjectProcessKill() override=default
CommandObjectProcessKill(CommandInterpreter &interpreter)
bool StopProcessIfNecessary(Process *process, StateType &state, CommandReturnObject &result)
CommandObjectProcessLaunchOrAttach(CommandInterpreter &interpreter, const char *name, const char *help, const char *syntax, uint32_t flags, const char *new_process_action)
~CommandObjectProcessLaunchOrAttach() override=default
void DoExecute(Args &launch_args, CommandReturnObject &result) override
OptionGroupPythonClassWithDict m_class_options
std::optional< std::string > GetRepeatCommand(Args &current_command_args, uint32_t index) override
Get the command that appropriate for a "repeat" of the current command.
~CommandObjectProcessLaunch() override=default
CommandOptionsProcessLaunch m_options
CommandObjectProcessLaunch(CommandInterpreter &interpreter)
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
~CommandObjectProcessLoad() override=default
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
void DoExecute(Args &command, CommandReturnObject &result) override
Options * GetOptions() override
CommandObjectProcessLoad(CommandInterpreter &interpreter)
~CommandObjectProcessPlugin() override=default
CommandObjectProcessPlugin(CommandInterpreter &interpreter)
CommandObject * GetProxyCommandObject() override
void OptionParsingStarting(ExecutionContext *execution_context) override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
~CommandObjectProcessSaveCore() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectProcessSaveCore(CommandInterpreter &interpreter)
CommandObjectProcessSignal(CommandInterpreter &interpreter)
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
~CommandObjectProcessSignal() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
CommandObjectProcessStatus(CommandInterpreter &interpreter)
~CommandObjectProcessStatus() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectProcessTraceStart(CommandInterpreter &interpreter)
lldb::CommandObjectSP GetDelegateCommand(Trace &trace) override
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectProcessTraceStop(CommandInterpreter &interpreter)
~CommandObjectProcessTraceStop() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectProcessUnload(CommandInterpreter &interpreter)
~CommandObjectProcessUnload() override=default
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
An architecture specification class.
Definition: ArchSpec.h:31
bool IsValid() const
Tests if this ArchSpec is valid.
Definition: ArchSpec.h:348
llvm::Triple & GetTriple()
Architecture triple accessor.
Definition: ArchSpec.h:450
bool IsExactMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, ExactMatch).
Definition: ArchSpec.h:497
A command line argument class.
Definition: Args.h:33
void AppendArguments(const Args &rhs)
Definition: Args.cpp:297
size_t GetArgumentCount() const
Gets the number of arguments left in this command object.
Definition: Args.h:116
void AppendArgument(llvm::StringRef arg_str, char quote_char='\0')
Appends a new argument to the end of the list argument list.
Definition: Args.cpp:322
llvm::ArrayRef< ArgEntry > entries() const
Definition: Args.h:128
const char * GetArgumentAtIndex(size_t idx) const
Gets the NULL terminated C string argument pointer for the argument at index idx.
Definition: Args.cpp:263
void Clear()
Clear the arguments.
Definition: Args.cpp:378
bool Contains(BreakpointID bp_id) const
bool AddBreakpointID(BreakpointID bp_id)
BreakpointID GetBreakpointIDAtIndex(size_t index) const
void SetBreakpointLocationID(lldb::break_id_t loc_id)
Definition: BreakpointID.h:44
lldb::break_id_t GetBreakpointID() const
Definition: BreakpointID.h:33
lldb::break_id_t GetLocationID() const
Definition: BreakpointID.h:35
General Outline: Allows adding and removing breakpoints and find by ID and index.
BreakpointIterable Breakpoints()
lldb::BreakpointSP FindBreakpointByID(lldb::break_id_t breakID) const
Returns a shared pointer to the breakpoint with id breakID.
General Outline: A breakpoint has four main parts, a filter, a resolver, the list of breakpoint locat...
Definition: Breakpoint.h:81
void SetIgnoreCount(uint32_t count)
Set the breakpoint to ignore the next count breakpoint hits.
Definition: Breakpoint.cpp:301
bool IsInternal() const
Tell whether this breakpoint is an "internal" breakpoint.
Definition: Breakpoint.cpp:249
bool Confirm(llvm::StringRef message, bool default_answer)
bool HandleCommand(const char *command_line, LazyBool add_to_history, const ExecutionContext &override_context, CommandReturnObject &result)
ExecutionContext GetExecutionContext() const
lldb::PlatformSP GetPlatform(bool prefer_target_platform)
static void VerifyBreakpointOrLocationIDs(Args &args, Target *target, CommandReturnObject &result, BreakpointIDList *valid_ids, BreakpointName::Permissions ::PermissionKinds purpose)
CommandObjectMultiwordProcess(CommandInterpreter &interpreter)
bool LoadSubCommand(llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_obj) override
This class works by delegating the logic to the actual trace plug-in that can support the current pro...
virtual void SetHelpLong(llvm::StringRef str)
void AddSimpleArgumentList(lldb::CommandArgumentType arg_type, ArgumentRepetitionType repetition_type=eArgRepeatPlain)
ExecutionContext m_exe_ctx
CommandInterpreter & m_interpreter
virtual void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector)
The default version handles argument definitions that have only one argument type,...
Target & GetSelectedOrDummyTarget(bool prefer_dummy=false)
void AppendErrorWithFormatv(const char *format, Args &&... args)
void AppendMessage(llvm::StringRef in_string)
void void AppendError(llvm::StringRef in_string)
void AppendWarningWithFormat(const char *format,...) __attribute__((format(printf
void SetStatus(lldb::ReturnStatus status)
void AppendErrorWithFormat(const char *format,...) __attribute__((format(printf
void AppendMessageWithFormat(const char *format,...) __attribute__((format(printf
void void AppendWarning(llvm::StringRef in_string)
"lldb/Utility/ArgCompletionRequest.h"
void TryCompleteCurrentArg(llvm::StringRef completion, llvm::StringRef description="")
Adds a possible completion string if the completion would complete the current argument.
A class to manage flag bits.
Definition: Debugger.h:79
lldb::TargetSP GetSelectedTarget()
Definition: Debugger.h:193
void SetAsyncExecution(bool async)
Definition: Debugger.cpp:971
TargetList & GetTargetList()
Get accessor for the target list.
Definition: Debugger.h:206
std::pair< iterator, bool > insert(llvm::StringRef KeyEqValue)
Definition: Environment.h:71
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
bool HasProcessScope() const
Returns true the ExecutionContext object contains a valid target and process.
const lldb::ProcessSP & GetProcessSP() const
Get accessor to get the process shared pointer.
Target * GetTargetPtr() const
Returns a pointer to the target object.
Process * GetProcessPtr() const
Returns a pointer to the process object.
A file utility class.
Definition: FileSpec.h:56
void SetFile(llvm::StringRef path, Style style)
Change the file specified with a new path.
Definition: FileSpec.cpp:174
void Clear()
Clears the object state.
Definition: FileSpec.cpp:259
void Resolve(llvm::SmallVectorImpl< char > &path)
Resolve path to make it canonical.
static FileSystem & Instance()
ValueType Clear(ValueType mask=~static_cast< ValueType >(0))
Clear one or more flags.
Definition: Flags.h:61
ValueType Set(ValueType mask)
Set one or more flags by logical OR'ing mask with the current flags.
Definition: Flags.h:73
void Append(OptionGroup *group)
Append options from a OptionGroup class.
Definition: Options.cpp:755
const StructuredData::DictionarySP GetStructuredData()
A command line option parsing protocol class.
Definition: Options.h:58
std::vector< Option > m_getopt_table
Definition: Options.h:198
static Status SaveCore(const lldb::ProcessSP &process_sp, const FileSpec &outfile, lldb::SaveCoreStyle &core_style, llvm::StringRef plugin_name)
void SetProcessPluginName(llvm::StringRef plugin)
Definition: Process.h:160
bool GetContinueOnceAttached() const
Definition: Process.h:148
void SetExecutableFile(const FileSpec &exe_file, bool add_exe_file_as_first_arg)
Definition: ProcessInfo.cpp:65
void SetScriptedMetadata(lldb::ScriptedMetadataSP metadata_sp)
Definition: ProcessInfo.h:96
FileSpec & GetExecutableFile()
Definition: ProcessInfo.h:42
Environment & GetEnvironment()
Definition: ProcessInfo.h:87
void SetProcessPluginName(llvm::StringRef plugin)
bool GetDetachKeepsStopped() const
Definition: Process.cpp:290
A plug-in interface definition class for debugging a process.
Definition: Process.h:341
StopPointSiteList< lldb_private::BreakpointSite > & GetBreakpointSiteList()
Definition: Process.cpp:1576
lldb::pid_t GetID() const
Returns the pid of the process or LLDB_INVALID_PROCESS_ID if there is no known pid.
Definition: Process.h:538
Status Destroy(bool force_kill)
Kills the process and shuts down all threads that were spawned to track and monitor the process.
Definition: Process.cpp:3299
ThreadList & GetThreadList()
Definition: Process.h:2213
Status Resume()
Resumes all of a process's threads as configured using the Thread run control functions.
Definition: Process.cpp:1348
Status ResumeSynchronous(Stream *stream)
Resume a process, and wait for it to stop.
Definition: Process.cpp:1365
size_t GetThreadStatus(Stream &ostrm, bool only_threads_with_stop_reason, uint32_t start_frame, uint32_t num_frames, uint32_t num_frames_with_source, bool stop_format)
Definition: Process.cpp:5579
Status Detach(bool keep_stopped)
Detaches from a running or stopped process.
Definition: Process.cpp:3247
Status Signal(int signal)
Sends a process a UNIX signal signal.
Definition: Process.cpp:3380
lldb::StateType GetState()
Get accessor for the current process state.
Definition: Process.cpp:1301
void GetStatus(Stream &ostrm)
Definition: Process.cpp:5559
uint32_t GetIOHandlerID() const
Definition: Process.h:2275
bool GetShouldDetach() const
Definition: Process.h:781
const std::vector< lldb::addr_t > & GetImageTokens()
Get the image vector for the current process.
Definition: Process.h:789
virtual bool IsAlive()
Check if a process is still alive.
Definition: Process.cpp:1093
virtual CommandObject * GetPluginCommandObject()
Return a multi-word command object that can be used to expose plug-in specific commands.
Definition: Process.h:587
void SyncIOHandler(uint32_t iohandler_id, const Timeout< std::micro > &timeout)
Waits for the process state to be running within a given msec timeout.
Definition: Process.cpp:630
lldb::addr_t GetDataAddressMask()
Definition: Process.cpp:5691
const lldb::UnixSignalsSP & GetUnixSignals()
Definition: Process.cpp:3395
lldb::addr_t GetCodeAddressMask()
Get the current address mask in the Process.
Definition: Process.cpp:5684
Status Halt(bool clear_thread_plans=false, bool use_run_lock=true)
Halts a running process.
Definition: Process.cpp:3149
Target & GetTarget()
Get the target object pointer for this module.
Definition: Process.h:1277
An error handling class.
Definition: Status.h:44
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
Definition: Status.cpp:130
bool Success() const
Test for success condition.
Definition: Status.cpp:279
StopPointSiteSP FindByID(typename StopPointSite::SiteID site_id)
Returns a shared pointer to the site with id site_id.
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
void Format(const char *format, Args &&... args)
Definition: Stream.h:353
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition: Stream.cpp:134
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
Definition: Stream.cpp:65
size_t EOL()
Output and End of Line character to the stream.
Definition: Stream.cpp:155
std::shared_ptr< Dictionary > DictionarySP
Status CreateTarget(Debugger &debugger, llvm::StringRef user_exe_path, llvm::StringRef triple_str, LoadDependentFiles get_dependent_modules, const OptionGroupPlatform *platform_options, lldb::TargetSP &target_sp)
Create a new Target.
Definition: TargetList.cpp:45
llvm::StringRef GetArg0() const
Definition: Target.cpp:4355
void SetRunArguments(const Args &args)
Definition: Target.cpp:4372
const ProcessLaunchInfo & GetProcessLaunchInfo() const
Definition: Target.cpp:4776
Environment GetEnvironment() const
Definition: Target.cpp:4406
void SetProcessLaunchInfo(const ProcessLaunchInfo &launch_info)
Definition: Target.cpp:4780
void ClearDummySignals(Args &signal_names)
Clear the dummy signals in signal_names from the target, or all signals if signal_names is empty.
Definition: Target.cpp:3642
BreakpointList & GetBreakpointList(bool internal=false)
Definition: Target.cpp:314
const lldb::ProcessSP & GetProcessSP() const
Definition: Target.cpp:221
Status Launch(ProcessLaunchInfo &launch_info, Stream *stream)
Definition: Target.cpp:3205
lldb::ModuleSP GetExecutableModule()
Gets the module for the main executable.
Definition: Target.cpp:1422
lldb::PlatformSP GetPlatform()
Definition: Target.h:1433
const ArchSpec & GetArchitecture() const
Definition: Target.h:1014
void AddDummySignal(llvm::StringRef name, LazyBool pass, LazyBool print, LazyBool stop)
Add a signal to the Target's list of stored signals/actions.
Definition: Target.cpp:3573
void PrintDummySignals(Stream &strm, Args &signals)
Print all the signals set in this target.
Definition: Target.cpp:3667
Status Attach(ProcessAttachInfo &attach_info, Stream *stream)
Definition: Target.cpp:3408
uint32_t GetSize(bool can_update=true)
Definition: ThreadList.cpp:83
lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update=true)
Definition: ThreadList.cpp:91
std::recursive_mutex & GetMutex() const override
Definition: ThreadList.cpp:786
A plug-in interface definition class for trace information.
Definition: Trace.h:48
virtual lldb::CommandObjectSP GetProcessTraceStartCommand(CommandInterpreter &interpreter)=0
Get the command handle for the "process trace start" command.
#define LLDB_OPT_SET_1
Definition: lldb-defines.h:111
#define LLDB_OPT_SET_2
Definition: lldb-defines.h:112
#define LLDB_INVALID_BREAK_ID
Definition: lldb-defines.h:37
#define LLDB_INVALID_ADDRESS_MASK
Address Mask Bits not used for addressing are set to 1 in the mask; all mask bits set is an invalid v...
Definition: lldb-defines.h:133
#define LLDB_INVALID_SIGNAL_NUMBER
Definition: lldb-defines.h:92
#define LLDB_OPT_SET_ALL
Definition: lldb-defines.h:110
#define LLDB_INVALID_IMAGE_TOKEN
Definition: lldb-defines.h:85
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::vector< OptionArgElement > OptionElementVector
Definition: Options.h:43
const char * StateAsCString(lldb::StateType state)
Converts a StateType to a C string.
Definition: State.cpp:14
const char * toString(AppleArm64ExceptionClass EC)
static uint32_t bits(const uint32_t val, const uint32_t msbit, const uint32_t lsbit)
Definition: ARMUtils.h:265
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::Trace > TraceSP
Definition: lldb-forward.h:446
std::shared_ptr< lldb_private::BreakpointSite > BreakpointSiteSP
Definition: lldb-forward.h:315
std::shared_ptr< lldb_private::BreakpointLocation > BreakpointLocationSP
Definition: lldb-forward.h:316
@ eSaveCoreUnspecified
std::shared_ptr< lldb_private::Thread > ThreadSP
Definition: lldb-forward.h:438
std::shared_ptr< lldb_private::ScriptedMetadata > ScriptedMetadataSP
Definition: lldb-forward.h:399
std::shared_ptr< lldb_private::CommandObject > CommandObjectSP
Definition: lldb-forward.h:325
std::shared_ptr< lldb_private::UnixSignals > UnixSignalsSP
Definition: lldb-forward.h:468
std::shared_ptr< lldb_private::Platform > PlatformSP
Definition: lldb-forward.h:380
StateType
Process and Thread States.
@ eStateConnected
Process is connected to remote debug services, but not launched or attached to anything yet.
@ eStateStopped
Process or thread is stopped and can be examined.
@ eStateRunning
Process or thread is running and can't be examined.
@ eStateAttaching
Process is currently trying to attach.
std::shared_ptr< lldb_private::Breakpoint > BreakpointSP
Definition: lldb-forward.h:313
int32_t break_id_t
Definition: lldb-types.h:84
std::shared_ptr< lldb_private::Process > ProcessSP
Definition: lldb-forward.h:381
@ eReturnStatusFailed
@ eReturnStatusSuccessContinuingNoResult
@ eReturnStatusSuccessFinishResult
@ eReturnStatusSuccessFinishNoResult
@ eArgTypeConnectURL
@ eArgTypeUnsignedInteger
@ eArgTypeUnixSignal
std::shared_ptr< lldb_private::StopInfo > StopInfoSP
Definition: lldb-forward.h:419
uint64_t addr_t
Definition: lldb-types.h:79
@ eStopReasonBreakpoint
std::shared_ptr< lldb_private::Target > TargetSP
Definition: lldb-forward.h:436
std::shared_ptr< lldb_private::Module > ModuleSP
Definition: lldb-forward.h:365
static int64_t ToOptionEnum(llvm::StringRef s, const OptionEnumValues &enum_values, int32_t fail_value, Status &error)
static bool ToBoolean(llvm::StringRef s, bool fail_value, bool *success_ptr)
#define PATH_MAX