xref: /llvm-project/lldb/source/Commands/CommandObjectProcess.cpp (revision 638b06cf298bc622c3ffd93dc4715c6f806de5b5)
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 
9 #include "CommandObjectProcess.h"
10 #include "lldb/Breakpoint/Breakpoint.h"
11 #include "lldb/Breakpoint/BreakpointLocation.h"
12 #include "lldb/Breakpoint/BreakpointSite.h"
13 #include "lldb/Core/Module.h"
14 #include "lldb/Core/PluginManager.h"
15 #include "lldb/Host/OptionParser.h"
16 #include "lldb/Host/StringConvert.h"
17 #include "lldb/Interpreter/CommandInterpreter.h"
18 #include "lldb/Interpreter/CommandReturnObject.h"
19 #include "lldb/Interpreter/OptionArgParser.h"
20 #include "lldb/Interpreter/Options.h"
21 #include "lldb/Target/Platform.h"
22 #include "lldb/Target/Process.h"
23 #include "lldb/Target/StopInfo.h"
24 #include "lldb/Target/Target.h"
25 #include "lldb/Target/Thread.h"
26 #include "lldb/Target/UnixSignals.h"
27 #include "lldb/Utility/Args.h"
28 #include "lldb/Utility/State.h"
29 
30 using namespace lldb;
31 using namespace lldb_private;
32 
33 class CommandObjectProcessLaunchOrAttach : public CommandObjectParsed {
34 public:
35   CommandObjectProcessLaunchOrAttach(CommandInterpreter &interpreter,
36                                      const char *name, const char *help,
37                                      const char *syntax, uint32_t flags,
38                                      const char *new_process_action)
39       : CommandObjectParsed(interpreter, name, help, syntax, flags),
40         m_new_process_action(new_process_action) {}
41 
42   ~CommandObjectProcessLaunchOrAttach() override = default;
43 
44 protected:
45   bool StopProcessIfNecessary(Process *process, StateType &state,
46                               CommandReturnObject &result) {
47     state = eStateInvalid;
48     if (process) {
49       state = process->GetState();
50 
51       if (process->IsAlive() && state != eStateConnected) {
52         char message[1024];
53         if (process->GetState() == eStateAttaching)
54           ::snprintf(message, sizeof(message),
55                      "There is a pending attach, abort it and %s?",
56                      m_new_process_action.c_str());
57         else if (process->GetShouldDetach())
58           ::snprintf(message, sizeof(message),
59                      "There is a running process, detach from it and %s?",
60                      m_new_process_action.c_str());
61         else
62           ::snprintf(message, sizeof(message),
63                      "There is a running process, kill it and %s?",
64                      m_new_process_action.c_str());
65 
66         if (!m_interpreter.Confirm(message, true)) {
67           result.SetStatus(eReturnStatusFailed);
68           return false;
69         } else {
70           if (process->GetShouldDetach()) {
71             bool keep_stopped = false;
72             Status detach_error(process->Detach(keep_stopped));
73             if (detach_error.Success()) {
74               result.SetStatus(eReturnStatusSuccessFinishResult);
75               process = nullptr;
76             } else {
77               result.AppendErrorWithFormat(
78                   "Failed to detach from process: %s\n",
79                   detach_error.AsCString());
80               result.SetStatus(eReturnStatusFailed);
81             }
82           } else {
83             Status destroy_error(process->Destroy(false));
84             if (destroy_error.Success()) {
85               result.SetStatus(eReturnStatusSuccessFinishResult);
86               process = nullptr;
87             } else {
88               result.AppendErrorWithFormat("Failed to kill process: %s\n",
89                                            destroy_error.AsCString());
90               result.SetStatus(eReturnStatusFailed);
91             }
92           }
93         }
94       }
95     }
96     return result.Succeeded();
97   }
98 
99   std::string m_new_process_action;
100 };
101 
102 // CommandObjectProcessLaunch
103 #pragma mark CommandObjectProcessLaunch
104 class CommandObjectProcessLaunch : public CommandObjectProcessLaunchOrAttach {
105 public:
106   CommandObjectProcessLaunch(CommandInterpreter &interpreter)
107       : CommandObjectProcessLaunchOrAttach(
108             interpreter, "process launch",
109             "Launch the executable in the debugger.", nullptr,
110             eCommandRequiresTarget, "restart"),
111         m_options() {
112     CommandArgumentEntry arg;
113     CommandArgumentData run_args_arg;
114 
115     // Define the first (and only) variant of this arg.
116     run_args_arg.arg_type = eArgTypeRunArgs;
117     run_args_arg.arg_repetition = eArgRepeatOptional;
118 
119     // There is only one variant this argument could be; put it into the
120     // argument entry.
121     arg.push_back(run_args_arg);
122 
123     // Push the data for the first argument into the m_arguments vector.
124     m_arguments.push_back(arg);
125   }
126 
127   ~CommandObjectProcessLaunch() override = default;
128 
129   void
130   HandleArgumentCompletion(CompletionRequest &request,
131                            OptionElementVector &opt_element_vector) override {
132 
133     CommandCompletions::InvokeCommonCompletionCallbacks(
134         GetCommandInterpreter(), CommandCompletions::eDiskFileCompletion,
135         request, nullptr);
136   }
137 
138   Options *GetOptions() override { return &m_options; }
139 
140   const char *GetRepeatCommand(Args &current_command_args,
141                                uint32_t index) override {
142     // No repeat for "process launch"...
143     return "";
144   }
145 
146 protected:
147   bool DoExecute(Args &launch_args, CommandReturnObject &result) override {
148     Debugger &debugger = GetDebugger();
149     Target *target = debugger.GetSelectedTarget().get();
150     // If our listener is nullptr, users aren't allows to launch
151     ModuleSP exe_module_sp = target->GetExecutableModule();
152 
153     if (exe_module_sp == nullptr) {
154       result.AppendError("no file in target, create a debug target using the "
155                          "'target create' command");
156       result.SetStatus(eReturnStatusFailed);
157       return false;
158     }
159 
160     StateType state = eStateInvalid;
161 
162     if (!StopProcessIfNecessary(m_exe_ctx.GetProcessPtr(), state, result))
163       return false;
164 
165     llvm::StringRef target_settings_argv0 = target->GetArg0();
166 
167     // Determine whether we will disable ASLR or leave it in the default state
168     // (i.e. enabled if the platform supports it). First check if the process
169     // launch options explicitly turn on/off
170     // disabling ASLR.  If so, use that setting;
171     // otherwise, use the 'settings target.disable-aslr' setting.
172     bool disable_aslr = false;
173     if (m_options.disable_aslr != eLazyBoolCalculate) {
174       // The user specified an explicit setting on the process launch line.
175       // Use it.
176       disable_aslr = (m_options.disable_aslr == eLazyBoolYes);
177     } else {
178       // The user did not explicitly specify whether to disable ASLR.  Fall
179       // back to the target.disable-aslr setting.
180       disable_aslr = target->GetDisableASLR();
181     }
182 
183     if (disable_aslr)
184       m_options.launch_info.GetFlags().Set(eLaunchFlagDisableASLR);
185     else
186       m_options.launch_info.GetFlags().Clear(eLaunchFlagDisableASLR);
187 
188     if (target->GetDetachOnError())
189       m_options.launch_info.GetFlags().Set(eLaunchFlagDetachOnError);
190 
191     if (target->GetDisableSTDIO())
192       m_options.launch_info.GetFlags().Set(eLaunchFlagDisableSTDIO);
193 
194     // Merge the launch info environment with the target environment.
195     Environment target_env = target->GetEnvironment();
196     m_options.launch_info.GetEnvironment().insert(target_env.begin(),
197                                                   target_env.end());
198 
199     if (!target_settings_argv0.empty()) {
200       m_options.launch_info.GetArguments().AppendArgument(
201           target_settings_argv0);
202       m_options.launch_info.SetExecutableFile(
203           exe_module_sp->GetPlatformFileSpec(), false);
204     } else {
205       m_options.launch_info.SetExecutableFile(
206           exe_module_sp->GetPlatformFileSpec(), true);
207     }
208 
209     if (launch_args.GetArgumentCount() == 0) {
210       m_options.launch_info.GetArguments().AppendArguments(
211           target->GetProcessLaunchInfo().GetArguments());
212     } else {
213       m_options.launch_info.GetArguments().AppendArguments(launch_args);
214       // Save the arguments for subsequent runs in the current target.
215       target->SetRunArguments(launch_args);
216     }
217 
218     StreamString stream;
219     Status error = target->Launch(m_options.launch_info, &stream);
220 
221     if (error.Success()) {
222       ProcessSP process_sp(target->GetProcessSP());
223       if (process_sp) {
224         // There is a race condition where this thread will return up the call
225         // stack to the main command handler and show an (lldb) prompt before
226         // HandlePrivateEvent (from PrivateStateThread) has a chance to call
227         // PushProcessIOHandler().
228         process_sp->SyncIOHandler(0, std::chrono::seconds(2));
229 
230         llvm::StringRef data = stream.GetString();
231         if (!data.empty())
232           result.AppendMessage(data);
233         const char *archname =
234             exe_module_sp->GetArchitecture().GetArchitectureName();
235         result.AppendMessageWithFormat(
236             "Process %" PRIu64 " launched: '%s' (%s)\n", process_sp->GetID(),
237             exe_module_sp->GetFileSpec().GetPath().c_str(), archname);
238         result.SetStatus(eReturnStatusSuccessFinishResult);
239         result.SetDidChangeProcessState(true);
240       } else {
241         result.AppendError(
242             "no error returned from Target::Launch, and target has no process");
243         result.SetStatus(eReturnStatusFailed);
244       }
245     } else {
246       result.AppendError(error.AsCString());
247       result.SetStatus(eReturnStatusFailed);
248     }
249     return result.Succeeded();
250   }
251 
252 protected:
253   ProcessLaunchCommandOptions m_options;
254 };
255 
256 #define LLDB_OPTIONS_process_attach
257 #include "CommandOptions.inc"
258 
259 #pragma mark CommandObjectProcessAttach
260 class CommandObjectProcessAttach : public CommandObjectProcessLaunchOrAttach {
261 public:
262   class CommandOptions : public Options {
263   public:
264     CommandOptions() : Options() {
265       // Keep default values of all options in one place: OptionParsingStarting
266       // ()
267       OptionParsingStarting(nullptr);
268     }
269 
270     ~CommandOptions() override = default;
271 
272     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
273                           ExecutionContext *execution_context) override {
274       Status error;
275       const int short_option = m_getopt_table[option_idx].val;
276       switch (short_option) {
277       case 'c':
278         attach_info.SetContinueOnceAttached(true);
279         break;
280 
281       case 'p': {
282         lldb::pid_t pid;
283         if (option_arg.getAsInteger(0, pid)) {
284           error.SetErrorStringWithFormat("invalid process ID '%s'",
285                                          option_arg.str().c_str());
286         } else {
287           attach_info.SetProcessID(pid);
288         }
289       } break;
290 
291       case 'P':
292         attach_info.SetProcessPluginName(option_arg);
293         break;
294 
295       case 'n':
296         attach_info.GetExecutableFile().SetFile(option_arg,
297                                                 FileSpec::Style::native);
298         break;
299 
300       case 'w':
301         attach_info.SetWaitForLaunch(true);
302         break;
303 
304       case 'i':
305         attach_info.SetIgnoreExisting(false);
306         break;
307 
308       default:
309         llvm_unreachable("Unimplemented option");
310       }
311       return error;
312     }
313 
314     void OptionParsingStarting(ExecutionContext *execution_context) override {
315       attach_info.Clear();
316     }
317 
318     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
319       return llvm::makeArrayRef(g_process_attach_options);
320     }
321 
322     void HandleOptionArgumentCompletion(
323         CompletionRequest &request, OptionElementVector &opt_element_vector,
324         int opt_element_index, CommandInterpreter &interpreter) override {
325       int opt_arg_pos = opt_element_vector[opt_element_index].opt_arg_pos;
326       int opt_defs_index = opt_element_vector[opt_element_index].opt_defs_index;
327 
328       // We are only completing the name option for now...
329 
330       // Are we in the name?
331       if (GetDefinitions()[opt_defs_index].short_option != 'n')
332         return;
333 
334       // Look to see if there is a -P argument provided, and if so use that
335       // plugin, otherwise use the default plugin.
336 
337       const char *partial_name = nullptr;
338       partial_name = request.GetParsedLine().GetArgumentAtIndex(opt_arg_pos);
339 
340       PlatformSP platform_sp(interpreter.GetPlatform(true));
341       if (!platform_sp)
342         return;
343       ProcessInstanceInfoList process_infos;
344       ProcessInstanceInfoMatch match_info;
345       if (partial_name) {
346         match_info.GetProcessInfo().GetExecutableFile().SetFile(
347             partial_name, FileSpec::Style::native);
348         match_info.SetNameMatchType(NameMatch::StartsWith);
349       }
350       platform_sp->FindProcesses(match_info, process_infos);
351       const size_t num_matches = process_infos.size();
352       if (num_matches == 0)
353         return;
354       for (size_t i = 0; i < num_matches; ++i) {
355         request.AddCompletion(process_infos[i].GetNameAsStringRef());
356       }
357     }
358 
359     // Instance variables to hold the values for command options.
360 
361     ProcessAttachInfo attach_info;
362   };
363 
364   CommandObjectProcessAttach(CommandInterpreter &interpreter)
365       : CommandObjectProcessLaunchOrAttach(
366             interpreter, "process attach", "Attach to a process.",
367             "process attach <cmd-options>", 0, "attach"),
368         m_options() {}
369 
370   ~CommandObjectProcessAttach() override = default;
371 
372   Options *GetOptions() override { return &m_options; }
373 
374 protected:
375   bool DoExecute(Args &command, CommandReturnObject &result) override {
376     PlatformSP platform_sp(
377         GetDebugger().GetPlatformList().GetSelectedPlatform());
378 
379     Target *target = GetDebugger().GetSelectedTarget().get();
380     // N.B. The attach should be synchronous.  It doesn't help much to get the
381     // prompt back between initiating the attach and the target actually
382     // stopping.  So even if the interpreter is set to be asynchronous, we wait
383     // for the stop ourselves here.
384 
385     StateType state = eStateInvalid;
386     Process *process = m_exe_ctx.GetProcessPtr();
387 
388     if (!StopProcessIfNecessary(process, state, result))
389       return false;
390 
391     if (target == nullptr) {
392       // If there isn't a current target create one.
393       TargetSP new_target_sp;
394       Status error;
395 
396       error = GetDebugger().GetTargetList().CreateTarget(
397           GetDebugger(), "", "", eLoadDependentsNo,
398           nullptr, // No platform options
399           new_target_sp);
400       target = new_target_sp.get();
401       if (target == nullptr || error.Fail()) {
402         result.AppendError(error.AsCString("Error creating target"));
403         return false;
404       }
405       GetDebugger().GetTargetList().SetSelectedTarget(target);
406     }
407 
408     // Record the old executable module, we want to issue a warning if the
409     // process of attaching changed the current executable (like somebody said
410     // "file foo" then attached to a PID whose executable was bar.)
411 
412     ModuleSP old_exec_module_sp = target->GetExecutableModule();
413     ArchSpec old_arch_spec = target->GetArchitecture();
414 
415     if (command.GetArgumentCount()) {
416       result.AppendErrorWithFormat("Invalid arguments for '%s'.\nUsage: %s\n",
417                                    m_cmd_name.c_str(), m_cmd_syntax.c_str());
418       result.SetStatus(eReturnStatusFailed);
419       return false;
420     }
421 
422     m_interpreter.UpdateExecutionContext(nullptr);
423     StreamString stream;
424     const auto error = target->Attach(m_options.attach_info, &stream);
425     if (error.Success()) {
426       ProcessSP process_sp(target->GetProcessSP());
427       if (process_sp) {
428         result.AppendMessage(stream.GetString());
429         result.SetStatus(eReturnStatusSuccessFinishNoResult);
430         result.SetDidChangeProcessState(true);
431       } else {
432         result.AppendError(
433             "no error returned from Target::Attach, and target has no process");
434         result.SetStatus(eReturnStatusFailed);
435       }
436     } else {
437       result.AppendErrorWithFormat("attach failed: %s\n", error.AsCString());
438       result.SetStatus(eReturnStatusFailed);
439     }
440 
441     if (!result.Succeeded())
442       return false;
443 
444     // Okay, we're done.  Last step is to warn if the executable module has
445     // changed:
446     char new_path[PATH_MAX];
447     ModuleSP new_exec_module_sp(target->GetExecutableModule());
448     if (!old_exec_module_sp) {
449       // We might not have a module if we attached to a raw pid...
450       if (new_exec_module_sp) {
451         new_exec_module_sp->GetFileSpec().GetPath(new_path, PATH_MAX);
452         result.AppendMessageWithFormat("Executable module set to \"%s\".\n",
453                                        new_path);
454       }
455     } else if (old_exec_module_sp->GetFileSpec() !=
456                new_exec_module_sp->GetFileSpec()) {
457       char old_path[PATH_MAX];
458 
459       old_exec_module_sp->GetFileSpec().GetPath(old_path, PATH_MAX);
460       new_exec_module_sp->GetFileSpec().GetPath(new_path, PATH_MAX);
461 
462       result.AppendWarningWithFormat(
463           "Executable module changed from \"%s\" to \"%s\".\n", old_path,
464           new_path);
465     }
466 
467     if (!old_arch_spec.IsValid()) {
468       result.AppendMessageWithFormat(
469           "Architecture set to: %s.\n",
470           target->GetArchitecture().GetTriple().getTriple().c_str());
471     } else if (!old_arch_spec.IsExactMatch(target->GetArchitecture())) {
472       result.AppendWarningWithFormat(
473           "Architecture changed from %s to %s.\n",
474           old_arch_spec.GetTriple().getTriple().c_str(),
475           target->GetArchitecture().GetTriple().getTriple().c_str());
476     }
477 
478     // This supports the use-case scenario of immediately continuing the
479     // process once attached.
480     if (m_options.attach_info.GetContinueOnceAttached())
481       m_interpreter.HandleCommand("process continue", eLazyBoolNo, result);
482 
483     return result.Succeeded();
484   }
485 
486   CommandOptions m_options;
487 };
488 
489 // CommandObjectProcessContinue
490 
491 #define LLDB_OPTIONS_process_continue
492 #include "CommandOptions.inc"
493 
494 #pragma mark CommandObjectProcessContinue
495 
496 class CommandObjectProcessContinue : public CommandObjectParsed {
497 public:
498   CommandObjectProcessContinue(CommandInterpreter &interpreter)
499       : CommandObjectParsed(
500             interpreter, "process continue",
501             "Continue execution of all threads in the current process.",
502             "process continue",
503             eCommandRequiresProcess | eCommandTryTargetAPILock |
504                 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused),
505         m_options() {}
506 
507   ~CommandObjectProcessContinue() override = default;
508 
509 protected:
510   class CommandOptions : public Options {
511   public:
512     CommandOptions() : Options() {
513       // Keep default values of all options in one place: OptionParsingStarting
514       // ()
515       OptionParsingStarting(nullptr);
516     }
517 
518     ~CommandOptions() override = default;
519 
520     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
521                           ExecutionContext *execution_context) override {
522       Status error;
523       const int short_option = m_getopt_table[option_idx].val;
524       switch (short_option) {
525       case 'i':
526         if (option_arg.getAsInteger(0, m_ignore))
527           error.SetErrorStringWithFormat(
528               "invalid value for ignore option: \"%s\", should be a number.",
529               option_arg.str().c_str());
530         break;
531 
532       default:
533         llvm_unreachable("Unimplemented option");
534       }
535       return error;
536     }
537 
538     void OptionParsingStarting(ExecutionContext *execution_context) override {
539       m_ignore = 0;
540     }
541 
542     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
543       return llvm::makeArrayRef(g_process_continue_options);
544     }
545 
546     uint32_t m_ignore;
547   };
548 
549   bool DoExecute(Args &command, CommandReturnObject &result) override {
550     Process *process = m_exe_ctx.GetProcessPtr();
551     bool synchronous_execution = m_interpreter.GetSynchronous();
552     StateType state = process->GetState();
553     if (state == eStateStopped) {
554       if (command.GetArgumentCount() != 0) {
555         result.AppendErrorWithFormat(
556             "The '%s' command does not take any arguments.\n",
557             m_cmd_name.c_str());
558         result.SetStatus(eReturnStatusFailed);
559         return false;
560       }
561 
562       if (m_options.m_ignore > 0) {
563         ThreadSP sel_thread_sp(GetDefaultThread()->shared_from_this());
564         if (sel_thread_sp) {
565           StopInfoSP stop_info_sp = sel_thread_sp->GetStopInfo();
566           if (stop_info_sp &&
567               stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
568             lldb::break_id_t bp_site_id =
569                 (lldb::break_id_t)stop_info_sp->GetValue();
570             BreakpointSiteSP bp_site_sp(
571                 process->GetBreakpointSiteList().FindByID(bp_site_id));
572             if (bp_site_sp) {
573               const size_t num_owners = bp_site_sp->GetNumberOfOwners();
574               for (size_t i = 0; i < num_owners; i++) {
575                 Breakpoint &bp_ref =
576                     bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint();
577                 if (!bp_ref.IsInternal()) {
578                   bp_ref.SetIgnoreCount(m_options.m_ignore);
579                 }
580               }
581             }
582           }
583         }
584       }
585 
586       { // Scope for thread list mutex:
587         std::lock_guard<std::recursive_mutex> guard(
588             process->GetThreadList().GetMutex());
589         const uint32_t num_threads = process->GetThreadList().GetSize();
590 
591         // Set the actions that the threads should each take when resuming
592         for (uint32_t idx = 0; idx < num_threads; ++idx) {
593           const bool override_suspend = false;
594           process->GetThreadList().GetThreadAtIndex(idx)->SetResumeState(
595               eStateRunning, override_suspend);
596         }
597       }
598 
599       const uint32_t iohandler_id = process->GetIOHandlerID();
600 
601       StreamString stream;
602       Status error;
603       if (synchronous_execution)
604         error = process->ResumeSynchronous(&stream);
605       else
606         error = process->Resume();
607 
608       if (error.Success()) {
609         // There is a race condition where this thread will return up the call
610         // stack to the main command handler and show an (lldb) prompt before
611         // HandlePrivateEvent (from PrivateStateThread) has a chance to call
612         // PushProcessIOHandler().
613         process->SyncIOHandler(iohandler_id, std::chrono::seconds(2));
614 
615         result.AppendMessageWithFormat("Process %" PRIu64 " resuming\n",
616                                        process->GetID());
617         if (synchronous_execution) {
618           // If any state changed events had anything to say, add that to the
619           // result
620           result.AppendMessage(stream.GetString());
621 
622           result.SetDidChangeProcessState(true);
623           result.SetStatus(eReturnStatusSuccessFinishNoResult);
624         } else {
625           result.SetStatus(eReturnStatusSuccessContinuingNoResult);
626         }
627       } else {
628         result.AppendErrorWithFormat("Failed to resume process: %s.\n",
629                                      error.AsCString());
630         result.SetStatus(eReturnStatusFailed);
631       }
632     } else {
633       result.AppendErrorWithFormat(
634           "Process cannot be continued from its current state (%s).\n",
635           StateAsCString(state));
636       result.SetStatus(eReturnStatusFailed);
637     }
638     return result.Succeeded();
639   }
640 
641   Options *GetOptions() override { return &m_options; }
642 
643   CommandOptions m_options;
644 };
645 
646 // CommandObjectProcessDetach
647 #define LLDB_OPTIONS_process_detach
648 #include "CommandOptions.inc"
649 
650 #pragma mark CommandObjectProcessDetach
651 
652 class CommandObjectProcessDetach : public CommandObjectParsed {
653 public:
654   class CommandOptions : public Options {
655   public:
656     CommandOptions() : Options() { OptionParsingStarting(nullptr); }
657 
658     ~CommandOptions() override = default;
659 
660     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
661                           ExecutionContext *execution_context) override {
662       Status error;
663       const int short_option = m_getopt_table[option_idx].val;
664 
665       switch (short_option) {
666       case 's':
667         bool tmp_result;
668         bool success;
669         tmp_result = OptionArgParser::ToBoolean(option_arg, false, &success);
670         if (!success)
671           error.SetErrorStringWithFormat("invalid boolean option: \"%s\"",
672                                          option_arg.str().c_str());
673         else {
674           if (tmp_result)
675             m_keep_stopped = eLazyBoolYes;
676           else
677             m_keep_stopped = eLazyBoolNo;
678         }
679         break;
680       default:
681         llvm_unreachable("Unimplemented option");
682       }
683       return error;
684     }
685 
686     void OptionParsingStarting(ExecutionContext *execution_context) override {
687       m_keep_stopped = eLazyBoolCalculate;
688     }
689 
690     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
691       return llvm::makeArrayRef(g_process_detach_options);
692     }
693 
694     // Instance variables to hold the values for command options.
695     LazyBool m_keep_stopped;
696   };
697 
698   CommandObjectProcessDetach(CommandInterpreter &interpreter)
699       : CommandObjectParsed(interpreter, "process detach",
700                             "Detach from the current target process.",
701                             "process detach",
702                             eCommandRequiresProcess | eCommandTryTargetAPILock |
703                                 eCommandProcessMustBeLaunched),
704         m_options() {}
705 
706   ~CommandObjectProcessDetach() override = default;
707 
708   Options *GetOptions() override { return &m_options; }
709 
710 protected:
711   bool DoExecute(Args &command, CommandReturnObject &result) override {
712     Process *process = m_exe_ctx.GetProcessPtr();
713     // FIXME: This will be a Command Option:
714     bool keep_stopped;
715     if (m_options.m_keep_stopped == eLazyBoolCalculate) {
716       // Check the process default:
717       keep_stopped = process->GetDetachKeepsStopped();
718     } else if (m_options.m_keep_stopped == eLazyBoolYes)
719       keep_stopped = true;
720     else
721       keep_stopped = false;
722 
723     Status error(process->Detach(keep_stopped));
724     if (error.Success()) {
725       result.SetStatus(eReturnStatusSuccessFinishResult);
726     } else {
727       result.AppendErrorWithFormat("Detach failed: %s\n", error.AsCString());
728       result.SetStatus(eReturnStatusFailed);
729       return false;
730     }
731     return result.Succeeded();
732   }
733 
734   CommandOptions m_options;
735 };
736 
737 // CommandObjectProcessConnect
738 #define LLDB_OPTIONS_process_connect
739 #include "CommandOptions.inc"
740 
741 #pragma mark CommandObjectProcessConnect
742 
743 class CommandObjectProcessConnect : public CommandObjectParsed {
744 public:
745   class CommandOptions : public Options {
746   public:
747     CommandOptions() : Options() {
748       // Keep default values of all options in one place: OptionParsingStarting
749       // ()
750       OptionParsingStarting(nullptr);
751     }
752 
753     ~CommandOptions() override = default;
754 
755     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
756                           ExecutionContext *execution_context) override {
757       Status error;
758       const int short_option = m_getopt_table[option_idx].val;
759 
760       switch (short_option) {
761       case 'p':
762         plugin_name.assign(std::string(option_arg));
763         break;
764 
765       default:
766         llvm_unreachable("Unimplemented option");
767       }
768       return error;
769     }
770 
771     void OptionParsingStarting(ExecutionContext *execution_context) override {
772       plugin_name.clear();
773     }
774 
775     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
776       return llvm::makeArrayRef(g_process_connect_options);
777     }
778 
779     // Instance variables to hold the values for command options.
780 
781     std::string plugin_name;
782   };
783 
784   CommandObjectProcessConnect(CommandInterpreter &interpreter)
785       : CommandObjectParsed(interpreter, "process connect",
786                             "Connect to a remote debug service.",
787                             "process connect <remote-url>", 0),
788         m_options() {}
789 
790   ~CommandObjectProcessConnect() override = default;
791 
792   Options *GetOptions() override { return &m_options; }
793 
794 protected:
795   bool DoExecute(Args &command, CommandReturnObject &result) override {
796     if (command.GetArgumentCount() != 1) {
797       result.AppendErrorWithFormat(
798           "'%s' takes exactly one argument:\nUsage: %s\n", m_cmd_name.c_str(),
799           m_cmd_syntax.c_str());
800       result.SetStatus(eReturnStatusFailed);
801       return false;
802     }
803 
804     Process *process = m_exe_ctx.GetProcessPtr();
805     if (process && process->IsAlive()) {
806       result.AppendErrorWithFormat(
807           "Process %" PRIu64
808           " is currently being debugged, kill the process before connecting.\n",
809           process->GetID());
810       result.SetStatus(eReturnStatusFailed);
811       return false;
812     }
813 
814     const char *plugin_name = nullptr;
815     if (!m_options.plugin_name.empty())
816       plugin_name = m_options.plugin_name.c_str();
817 
818     Status error;
819     Debugger &debugger = GetDebugger();
820     PlatformSP platform_sp = m_interpreter.GetPlatform(true);
821     ProcessSP process_sp = platform_sp->ConnectProcess(
822         command.GetArgumentAtIndex(0), plugin_name, debugger,
823         debugger.GetSelectedTarget().get(), error);
824     if (error.Fail() || process_sp == nullptr) {
825       result.AppendError(error.AsCString("Error connecting to the process"));
826       result.SetStatus(eReturnStatusFailed);
827       return false;
828     }
829     return true;
830   }
831 
832   CommandOptions m_options;
833 };
834 
835 // CommandObjectProcessPlugin
836 #pragma mark CommandObjectProcessPlugin
837 
838 class CommandObjectProcessPlugin : public CommandObjectProxy {
839 public:
840   CommandObjectProcessPlugin(CommandInterpreter &interpreter)
841       : CommandObjectProxy(
842             interpreter, "process plugin",
843             "Send a custom command to the current target process plug-in.",
844             "process plugin <args>", 0) {}
845 
846   ~CommandObjectProcessPlugin() override = default;
847 
848   CommandObject *GetProxyCommandObject() override {
849     Process *process = m_interpreter.GetExecutionContext().GetProcessPtr();
850     if (process)
851       return process->GetPluginCommandObject();
852     return nullptr;
853   }
854 };
855 
856 // CommandObjectProcessLoad
857 #define LLDB_OPTIONS_process_load
858 #include "CommandOptions.inc"
859 
860 #pragma mark CommandObjectProcessLoad
861 
862 class CommandObjectProcessLoad : public CommandObjectParsed {
863 public:
864   class CommandOptions : public Options {
865   public:
866     CommandOptions() : Options() {
867       // Keep default values of all options in one place: OptionParsingStarting
868       // ()
869       OptionParsingStarting(nullptr);
870     }
871 
872     ~CommandOptions() override = default;
873 
874     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
875                           ExecutionContext *execution_context) override {
876       Status error;
877       const int short_option = m_getopt_table[option_idx].val;
878       switch (short_option) {
879       case 'i':
880         do_install = true;
881         if (!option_arg.empty())
882           install_path.SetFile(option_arg, FileSpec::Style::native);
883         break;
884       default:
885         llvm_unreachable("Unimplemented option");
886       }
887       return error;
888     }
889 
890     void OptionParsingStarting(ExecutionContext *execution_context) override {
891       do_install = false;
892       install_path.Clear();
893     }
894 
895     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
896       return llvm::makeArrayRef(g_process_load_options);
897     }
898 
899     // Instance variables to hold the values for command options.
900     bool do_install;
901     FileSpec install_path;
902   };
903 
904   CommandObjectProcessLoad(CommandInterpreter &interpreter)
905       : CommandObjectParsed(interpreter, "process load",
906                             "Load a shared library into the current process.",
907                             "process load <filename> [<filename> ...]",
908                             eCommandRequiresProcess | eCommandTryTargetAPILock |
909                                 eCommandProcessMustBeLaunched |
910                                 eCommandProcessMustBePaused),
911         m_options() {}
912 
913   ~CommandObjectProcessLoad() override = default;
914 
915   Options *GetOptions() override { return &m_options; }
916 
917 protected:
918   bool DoExecute(Args &command, CommandReturnObject &result) override {
919     Process *process = m_exe_ctx.GetProcessPtr();
920 
921     for (auto &entry : command.entries()) {
922       Status error;
923       PlatformSP platform = process->GetTarget().GetPlatform();
924       llvm::StringRef image_path = entry.ref();
925       uint32_t image_token = LLDB_INVALID_IMAGE_TOKEN;
926 
927       if (!m_options.do_install) {
928         FileSpec image_spec(image_path);
929         platform->ResolveRemotePath(image_spec, image_spec);
930         image_token =
931             platform->LoadImage(process, FileSpec(), image_spec, error);
932       } else if (m_options.install_path) {
933         FileSpec image_spec(image_path);
934         FileSystem::Instance().Resolve(image_spec);
935         platform->ResolveRemotePath(m_options.install_path,
936                                     m_options.install_path);
937         image_token = platform->LoadImage(process, image_spec,
938                                           m_options.install_path, error);
939       } else {
940         FileSpec image_spec(image_path);
941         FileSystem::Instance().Resolve(image_spec);
942         image_token =
943             platform->LoadImage(process, image_spec, FileSpec(), error);
944       }
945 
946       if (image_token != LLDB_INVALID_IMAGE_TOKEN) {
947         result.AppendMessageWithFormat(
948             "Loading \"%s\"...ok\nImage %u loaded.\n", image_path.str().c_str(),
949             image_token);
950         result.SetStatus(eReturnStatusSuccessFinishResult);
951       } else {
952         result.AppendErrorWithFormat("failed to load '%s': %s",
953                                      image_path.str().c_str(),
954                                      error.AsCString());
955         result.SetStatus(eReturnStatusFailed);
956       }
957     }
958     return result.Succeeded();
959   }
960 
961   CommandOptions m_options;
962 };
963 
964 // CommandObjectProcessUnload
965 #pragma mark CommandObjectProcessUnload
966 
967 class CommandObjectProcessUnload : public CommandObjectParsed {
968 public:
969   CommandObjectProcessUnload(CommandInterpreter &interpreter)
970       : CommandObjectParsed(
971             interpreter, "process unload",
972             "Unload a shared library from the current process using the index "
973             "returned by a previous call to \"process load\".",
974             "process unload <index>",
975             eCommandRequiresProcess | eCommandTryTargetAPILock |
976                 eCommandProcessMustBeLaunched | eCommandProcessMustBePaused) {}
977 
978   ~CommandObjectProcessUnload() override = default;
979 
980 protected:
981   bool DoExecute(Args &command, CommandReturnObject &result) override {
982     Process *process = m_exe_ctx.GetProcessPtr();
983 
984     for (auto &entry : command.entries()) {
985       uint32_t image_token;
986       if (entry.ref().getAsInteger(0, image_token)) {
987         result.AppendErrorWithFormat("invalid image index argument '%s'",
988                                      entry.ref().str().c_str());
989         result.SetStatus(eReturnStatusFailed);
990         break;
991       } else {
992         Status error(process->GetTarget().GetPlatform()->UnloadImage(
993             process, image_token));
994         if (error.Success()) {
995           result.AppendMessageWithFormat(
996               "Unloading shared library with index %u...ok\n", image_token);
997           result.SetStatus(eReturnStatusSuccessFinishResult);
998         } else {
999           result.AppendErrorWithFormat("failed to unload image: %s",
1000                                        error.AsCString());
1001           result.SetStatus(eReturnStatusFailed);
1002           break;
1003         }
1004       }
1005     }
1006     return result.Succeeded();
1007   }
1008 };
1009 
1010 // CommandObjectProcessSignal
1011 #pragma mark CommandObjectProcessSignal
1012 
1013 class CommandObjectProcessSignal : public CommandObjectParsed {
1014 public:
1015   CommandObjectProcessSignal(CommandInterpreter &interpreter)
1016       : CommandObjectParsed(
1017             interpreter, "process signal",
1018             "Send a UNIX signal to the current target process.", nullptr,
1019             eCommandRequiresProcess | eCommandTryTargetAPILock) {
1020     CommandArgumentEntry arg;
1021     CommandArgumentData signal_arg;
1022 
1023     // Define the first (and only) variant of this arg.
1024     signal_arg.arg_type = eArgTypeUnixSignal;
1025     signal_arg.arg_repetition = eArgRepeatPlain;
1026 
1027     // There is only one variant this argument could be; put it into the
1028     // argument entry.
1029     arg.push_back(signal_arg);
1030 
1031     // Push the data for the first argument into the m_arguments vector.
1032     m_arguments.push_back(arg);
1033   }
1034 
1035   ~CommandObjectProcessSignal() override = default;
1036 
1037   void
1038   HandleArgumentCompletion(CompletionRequest &request,
1039                            OptionElementVector &opt_element_vector) override {
1040     if (!m_exe_ctx.HasProcessScope() || request.GetCursorIndex() != 0)
1041       return;
1042 
1043     UnixSignalsSP signals = m_exe_ctx.GetProcessPtr()->GetUnixSignals();
1044     int signo = signals->GetFirstSignalNumber();
1045     while (signo != LLDB_INVALID_SIGNAL_NUMBER) {
1046       request.AddCompletion(signals->GetSignalAsCString(signo), "");
1047       signo = signals->GetNextSignalNumber(signo);
1048     }
1049   }
1050 
1051 protected:
1052   bool DoExecute(Args &command, CommandReturnObject &result) override {
1053     Process *process = m_exe_ctx.GetProcessPtr();
1054 
1055     if (command.GetArgumentCount() == 1) {
1056       int signo = LLDB_INVALID_SIGNAL_NUMBER;
1057 
1058       const char *signal_name = command.GetArgumentAtIndex(0);
1059       if (::isxdigit(signal_name[0]))
1060         signo =
1061             StringConvert::ToSInt32(signal_name, LLDB_INVALID_SIGNAL_NUMBER, 0);
1062       else
1063         signo = process->GetUnixSignals()->GetSignalNumberFromName(signal_name);
1064 
1065       if (signo == LLDB_INVALID_SIGNAL_NUMBER) {
1066         result.AppendErrorWithFormat("Invalid signal argument '%s'.\n",
1067                                      command.GetArgumentAtIndex(0));
1068         result.SetStatus(eReturnStatusFailed);
1069       } else {
1070         Status error(process->Signal(signo));
1071         if (error.Success()) {
1072           result.SetStatus(eReturnStatusSuccessFinishResult);
1073         } else {
1074           result.AppendErrorWithFormat("Failed to send signal %i: %s\n", signo,
1075                                        error.AsCString());
1076           result.SetStatus(eReturnStatusFailed);
1077         }
1078       }
1079     } else {
1080       result.AppendErrorWithFormat(
1081           "'%s' takes exactly one signal number argument:\nUsage: %s\n",
1082           m_cmd_name.c_str(), m_cmd_syntax.c_str());
1083       result.SetStatus(eReturnStatusFailed);
1084     }
1085     return result.Succeeded();
1086   }
1087 };
1088 
1089 // CommandObjectProcessInterrupt
1090 #pragma mark CommandObjectProcessInterrupt
1091 
1092 class CommandObjectProcessInterrupt : public CommandObjectParsed {
1093 public:
1094   CommandObjectProcessInterrupt(CommandInterpreter &interpreter)
1095       : CommandObjectParsed(interpreter, "process interrupt",
1096                             "Interrupt the current target process.",
1097                             "process interrupt",
1098                             eCommandRequiresProcess | eCommandTryTargetAPILock |
1099                                 eCommandProcessMustBeLaunched) {}
1100 
1101   ~CommandObjectProcessInterrupt() override = default;
1102 
1103 protected:
1104   bool DoExecute(Args &command, CommandReturnObject &result) override {
1105     Process *process = m_exe_ctx.GetProcessPtr();
1106     if (process == nullptr) {
1107       result.AppendError("no process to halt");
1108       result.SetStatus(eReturnStatusFailed);
1109       return false;
1110     }
1111 
1112     if (command.GetArgumentCount() == 0) {
1113       bool clear_thread_plans = true;
1114       Status error(process->Halt(clear_thread_plans));
1115       if (error.Success()) {
1116         result.SetStatus(eReturnStatusSuccessFinishResult);
1117       } else {
1118         result.AppendErrorWithFormat("Failed to halt process: %s\n",
1119                                      error.AsCString());
1120         result.SetStatus(eReturnStatusFailed);
1121       }
1122     } else {
1123       result.AppendErrorWithFormat("'%s' takes no arguments:\nUsage: %s\n",
1124                                    m_cmd_name.c_str(), m_cmd_syntax.c_str());
1125       result.SetStatus(eReturnStatusFailed);
1126     }
1127     return result.Succeeded();
1128   }
1129 };
1130 
1131 // CommandObjectProcessKill
1132 #pragma mark CommandObjectProcessKill
1133 
1134 class CommandObjectProcessKill : public CommandObjectParsed {
1135 public:
1136   CommandObjectProcessKill(CommandInterpreter &interpreter)
1137       : CommandObjectParsed(interpreter, "process kill",
1138                             "Terminate the current target process.",
1139                             "process kill",
1140                             eCommandRequiresProcess | eCommandTryTargetAPILock |
1141                                 eCommandProcessMustBeLaunched) {}
1142 
1143   ~CommandObjectProcessKill() override = default;
1144 
1145 protected:
1146   bool DoExecute(Args &command, CommandReturnObject &result) override {
1147     Process *process = m_exe_ctx.GetProcessPtr();
1148     if (process == nullptr) {
1149       result.AppendError("no process to kill");
1150       result.SetStatus(eReturnStatusFailed);
1151       return false;
1152     }
1153 
1154     if (command.GetArgumentCount() == 0) {
1155       Status error(process->Destroy(true));
1156       if (error.Success()) {
1157         result.SetStatus(eReturnStatusSuccessFinishResult);
1158       } else {
1159         result.AppendErrorWithFormat("Failed to kill process: %s\n",
1160                                      error.AsCString());
1161         result.SetStatus(eReturnStatusFailed);
1162       }
1163     } else {
1164       result.AppendErrorWithFormat("'%s' takes no arguments:\nUsage: %s\n",
1165                                    m_cmd_name.c_str(), m_cmd_syntax.c_str());
1166       result.SetStatus(eReturnStatusFailed);
1167     }
1168     return result.Succeeded();
1169   }
1170 };
1171 
1172 // CommandObjectProcessSaveCore
1173 #pragma mark CommandObjectProcessSaveCore
1174 
1175 class CommandObjectProcessSaveCore : public CommandObjectParsed {
1176 public:
1177   CommandObjectProcessSaveCore(CommandInterpreter &interpreter)
1178       : CommandObjectParsed(interpreter, "process save-core",
1179                             "Save the current process as a core file using an "
1180                             "appropriate file type.",
1181                             "process save-core FILE",
1182                             eCommandRequiresProcess | eCommandTryTargetAPILock |
1183                                 eCommandProcessMustBeLaunched) {}
1184 
1185   ~CommandObjectProcessSaveCore() override = default;
1186 
1187 protected:
1188   bool DoExecute(Args &command, CommandReturnObject &result) override {
1189     ProcessSP process_sp = m_exe_ctx.GetProcessSP();
1190     if (process_sp) {
1191       if (command.GetArgumentCount() == 1) {
1192         FileSpec output_file(command.GetArgumentAtIndex(0));
1193         Status error = PluginManager::SaveCore(process_sp, output_file);
1194         if (error.Success()) {
1195           result.SetStatus(eReturnStatusSuccessFinishResult);
1196         } else {
1197           result.AppendErrorWithFormat(
1198               "Failed to save core file for process: %s\n", error.AsCString());
1199           result.SetStatus(eReturnStatusFailed);
1200         }
1201       } else {
1202         result.AppendErrorWithFormat("'%s' takes one arguments:\nUsage: %s\n",
1203                                      m_cmd_name.c_str(), m_cmd_syntax.c_str());
1204         result.SetStatus(eReturnStatusFailed);
1205       }
1206     } else {
1207       result.AppendError("invalid process");
1208       result.SetStatus(eReturnStatusFailed);
1209       return false;
1210     }
1211 
1212     return result.Succeeded();
1213   }
1214 };
1215 
1216 // CommandObjectProcessStatus
1217 #pragma mark CommandObjectProcessStatus
1218 #define LLDB_OPTIONS_process_status
1219 #include "CommandOptions.inc"
1220 
1221 class CommandObjectProcessStatus : public CommandObjectParsed {
1222 public:
1223   CommandObjectProcessStatus(CommandInterpreter &interpreter)
1224       : CommandObjectParsed(
1225             interpreter, "process status",
1226             "Show status and stop location for the current target process.",
1227             "process status",
1228             eCommandRequiresProcess | eCommandTryTargetAPILock),
1229         m_options() {}
1230 
1231   ~CommandObjectProcessStatus() override = default;
1232 
1233   Options *GetOptions() override { return &m_options; }
1234 
1235   class CommandOptions : public Options {
1236   public:
1237     CommandOptions() : Options(), m_verbose(false) {}
1238 
1239     ~CommandOptions() override = default;
1240 
1241     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1242                           ExecutionContext *execution_context) override {
1243       const int short_option = m_getopt_table[option_idx].val;
1244 
1245       switch (short_option) {
1246       case 'v':
1247         m_verbose = true;
1248         break;
1249       default:
1250         llvm_unreachable("Unimplemented option");
1251       }
1252 
1253       return {};
1254     }
1255 
1256     void OptionParsingStarting(ExecutionContext *execution_context) override {
1257       m_verbose = false;
1258     }
1259 
1260     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1261       return llvm::makeArrayRef(g_process_status_options);
1262     }
1263 
1264     // Instance variables to hold the values for command options.
1265     bool m_verbose;
1266   };
1267 
1268 protected:
1269   bool DoExecute(Args &command, CommandReturnObject &result) override {
1270     Stream &strm = result.GetOutputStream();
1271     result.SetStatus(eReturnStatusSuccessFinishNoResult);
1272 
1273     if (command.GetArgumentCount()) {
1274       result.AppendError("'process status' takes no arguments");
1275       result.SetStatus(eReturnStatusFailed);
1276       return result.Succeeded();
1277     }
1278 
1279     // No need to check "process" for validity as eCommandRequiresProcess
1280     // ensures it is valid
1281     Process *process = m_exe_ctx.GetProcessPtr();
1282     const bool only_threads_with_stop_reason = true;
1283     const uint32_t start_frame = 0;
1284     const uint32_t num_frames = 1;
1285     const uint32_t num_frames_with_source = 1;
1286     const bool stop_format = true;
1287     process->GetStatus(strm);
1288     process->GetThreadStatus(strm, only_threads_with_stop_reason, start_frame,
1289                              num_frames, num_frames_with_source, stop_format);
1290 
1291     if (m_options.m_verbose) {
1292       PlatformSP platform_sp = process->GetTarget().GetPlatform();
1293       if (!platform_sp) {
1294         result.AppendError("Couldn'retrieve the target's platform");
1295         result.SetStatus(eReturnStatusFailed);
1296         return result.Succeeded();
1297       }
1298 
1299       auto expected_crash_info =
1300           platform_sp->FetchExtendedCrashInformation(*process);
1301 
1302       if (!expected_crash_info) {
1303         result.AppendError(llvm::toString(expected_crash_info.takeError()));
1304         result.SetStatus(eReturnStatusFailed);
1305         return result.Succeeded();
1306       }
1307 
1308       StructuredData::DictionarySP crash_info_sp = *expected_crash_info;
1309 
1310       if (crash_info_sp) {
1311         strm.PutCString("Extended Crash Information:\n");
1312         crash_info_sp->Dump(strm);
1313       }
1314     }
1315 
1316     return result.Succeeded();
1317   }
1318 
1319 private:
1320   CommandOptions m_options;
1321 };
1322 
1323 // CommandObjectProcessHandle
1324 #define LLDB_OPTIONS_process_handle
1325 #include "CommandOptions.inc"
1326 
1327 #pragma mark CommandObjectProcessHandle
1328 
1329 class CommandObjectProcessHandle : public CommandObjectParsed {
1330 public:
1331   class CommandOptions : public Options {
1332   public:
1333     CommandOptions() : Options() { OptionParsingStarting(nullptr); }
1334 
1335     ~CommandOptions() override = default;
1336 
1337     Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
1338                           ExecutionContext *execution_context) override {
1339       Status error;
1340       const int short_option = m_getopt_table[option_idx].val;
1341 
1342       switch (short_option) {
1343       case 's':
1344         stop = std::string(option_arg);
1345         break;
1346       case 'n':
1347         notify = std::string(option_arg);
1348         break;
1349       case 'p':
1350         pass = std::string(option_arg);
1351         break;
1352       default:
1353         llvm_unreachable("Unimplemented option");
1354       }
1355       return error;
1356     }
1357 
1358     void OptionParsingStarting(ExecutionContext *execution_context) override {
1359       stop.clear();
1360       notify.clear();
1361       pass.clear();
1362     }
1363 
1364     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
1365       return llvm::makeArrayRef(g_process_handle_options);
1366     }
1367 
1368     // Instance variables to hold the values for command options.
1369 
1370     std::string stop;
1371     std::string notify;
1372     std::string pass;
1373   };
1374 
1375   CommandObjectProcessHandle(CommandInterpreter &interpreter)
1376       : CommandObjectParsed(interpreter, "process handle",
1377                             "Manage LLDB handling of OS signals for the "
1378                             "current target process.  Defaults to showing "
1379                             "current policy.",
1380                             nullptr, eCommandRequiresTarget),
1381         m_options() {
1382     SetHelpLong("\nIf no signals are specified, update them all.  If no update "
1383                 "option is specified, list the current values.");
1384     CommandArgumentEntry arg;
1385     CommandArgumentData signal_arg;
1386 
1387     signal_arg.arg_type = eArgTypeUnixSignal;
1388     signal_arg.arg_repetition = eArgRepeatStar;
1389 
1390     arg.push_back(signal_arg);
1391 
1392     m_arguments.push_back(arg);
1393   }
1394 
1395   ~CommandObjectProcessHandle() override = default;
1396 
1397   Options *GetOptions() override { return &m_options; }
1398 
1399   bool VerifyCommandOptionValue(const std::string &option, int &real_value) {
1400     bool okay = true;
1401     bool success = false;
1402     bool tmp_value = OptionArgParser::ToBoolean(option, false, &success);
1403 
1404     if (success && tmp_value)
1405       real_value = 1;
1406     else if (success && !tmp_value)
1407       real_value = 0;
1408     else {
1409       // If the value isn't 'true' or 'false', it had better be 0 or 1.
1410       real_value = StringConvert::ToUInt32(option.c_str(), 3);
1411       if (real_value != 0 && real_value != 1)
1412         okay = false;
1413     }
1414 
1415     return okay;
1416   }
1417 
1418   void PrintSignalHeader(Stream &str) {
1419     str.Printf("NAME         PASS   STOP   NOTIFY\n");
1420     str.Printf("===========  =====  =====  ======\n");
1421   }
1422 
1423   void PrintSignal(Stream &str, int32_t signo, const char *sig_name,
1424                    const UnixSignalsSP &signals_sp) {
1425     bool stop;
1426     bool suppress;
1427     bool notify;
1428 
1429     str.Printf("%-11s  ", sig_name);
1430     if (signals_sp->GetSignalInfo(signo, suppress, stop, notify)) {
1431       bool pass = !suppress;
1432       str.Printf("%s  %s  %s", (pass ? "true " : "false"),
1433                  (stop ? "true " : "false"), (notify ? "true " : "false"));
1434     }
1435     str.Printf("\n");
1436   }
1437 
1438   void PrintSignalInformation(Stream &str, Args &signal_args,
1439                               int num_valid_signals,
1440                               const UnixSignalsSP &signals_sp) {
1441     PrintSignalHeader(str);
1442 
1443     if (num_valid_signals > 0) {
1444       size_t num_args = signal_args.GetArgumentCount();
1445       for (size_t i = 0; i < num_args; ++i) {
1446         int32_t signo = signals_sp->GetSignalNumberFromName(
1447             signal_args.GetArgumentAtIndex(i));
1448         if (signo != LLDB_INVALID_SIGNAL_NUMBER)
1449           PrintSignal(str, signo, signal_args.GetArgumentAtIndex(i),
1450                       signals_sp);
1451       }
1452     } else // Print info for ALL signals
1453     {
1454       int32_t signo = signals_sp->GetFirstSignalNumber();
1455       while (signo != LLDB_INVALID_SIGNAL_NUMBER) {
1456         PrintSignal(str, signo, signals_sp->GetSignalAsCString(signo),
1457                     signals_sp);
1458         signo = signals_sp->GetNextSignalNumber(signo);
1459       }
1460     }
1461   }
1462 
1463 protected:
1464   bool DoExecute(Args &signal_args, CommandReturnObject &result) override {
1465     Target *target_sp = &GetSelectedTarget();
1466 
1467     ProcessSP process_sp = target_sp->GetProcessSP();
1468 
1469     if (!process_sp) {
1470       result.AppendError("No current process; cannot handle signals until you "
1471                          "have a valid process.\n");
1472       result.SetStatus(eReturnStatusFailed);
1473       return false;
1474     }
1475 
1476     int stop_action = -1;   // -1 means leave the current setting alone
1477     int pass_action = -1;   // -1 means leave the current setting alone
1478     int notify_action = -1; // -1 means leave the current setting alone
1479 
1480     if (!m_options.stop.empty() &&
1481         !VerifyCommandOptionValue(m_options.stop, stop_action)) {
1482       result.AppendError("Invalid argument for command option --stop; must be "
1483                          "true or false.\n");
1484       result.SetStatus(eReturnStatusFailed);
1485       return false;
1486     }
1487 
1488     if (!m_options.notify.empty() &&
1489         !VerifyCommandOptionValue(m_options.notify, notify_action)) {
1490       result.AppendError("Invalid argument for command option --notify; must "
1491                          "be true or false.\n");
1492       result.SetStatus(eReturnStatusFailed);
1493       return false;
1494     }
1495 
1496     if (!m_options.pass.empty() &&
1497         !VerifyCommandOptionValue(m_options.pass, pass_action)) {
1498       result.AppendError("Invalid argument for command option --pass; must be "
1499                          "true or false.\n");
1500       result.SetStatus(eReturnStatusFailed);
1501       return false;
1502     }
1503 
1504     size_t num_args = signal_args.GetArgumentCount();
1505     UnixSignalsSP signals_sp = process_sp->GetUnixSignals();
1506     int num_signals_set = 0;
1507 
1508     if (num_args > 0) {
1509       for (const auto &arg : signal_args) {
1510         int32_t signo = signals_sp->GetSignalNumberFromName(arg.c_str());
1511         if (signo != LLDB_INVALID_SIGNAL_NUMBER) {
1512           // Casting the actions as bools here should be okay, because
1513           // VerifyCommandOptionValue guarantees the value is either 0 or 1.
1514           if (stop_action != -1)
1515             signals_sp->SetShouldStop(signo, stop_action);
1516           if (pass_action != -1) {
1517             bool suppress = !pass_action;
1518             signals_sp->SetShouldSuppress(signo, suppress);
1519           }
1520           if (notify_action != -1)
1521             signals_sp->SetShouldNotify(signo, notify_action);
1522           ++num_signals_set;
1523         } else {
1524           result.AppendErrorWithFormat("Invalid signal name '%s'\n",
1525                                        arg.c_str());
1526         }
1527       }
1528     } else {
1529       // No signal specified, if any command options were specified, update ALL
1530       // signals.
1531       if ((notify_action != -1) || (stop_action != -1) || (pass_action != -1)) {
1532         if (m_interpreter.Confirm(
1533                 "Do you really want to update all the signals?", false)) {
1534           int32_t signo = signals_sp->GetFirstSignalNumber();
1535           while (signo != LLDB_INVALID_SIGNAL_NUMBER) {
1536             if (notify_action != -1)
1537               signals_sp->SetShouldNotify(signo, notify_action);
1538             if (stop_action != -1)
1539               signals_sp->SetShouldStop(signo, stop_action);
1540             if (pass_action != -1) {
1541               bool suppress = !pass_action;
1542               signals_sp->SetShouldSuppress(signo, suppress);
1543             }
1544             signo = signals_sp->GetNextSignalNumber(signo);
1545           }
1546         }
1547       }
1548     }
1549 
1550     PrintSignalInformation(result.GetOutputStream(), signal_args,
1551                            num_signals_set, signals_sp);
1552 
1553     if (num_signals_set > 0)
1554       result.SetStatus(eReturnStatusSuccessFinishNoResult);
1555     else
1556       result.SetStatus(eReturnStatusFailed);
1557 
1558     return result.Succeeded();
1559   }
1560 
1561   CommandOptions m_options;
1562 };
1563 
1564 // CommandObjectMultiwordProcess
1565 
1566 CommandObjectMultiwordProcess::CommandObjectMultiwordProcess(
1567     CommandInterpreter &interpreter)
1568     : CommandObjectMultiword(
1569           interpreter, "process",
1570           "Commands for interacting with processes on the current platform.",
1571           "process <subcommand> [<subcommand-options>]") {
1572   LoadSubCommand("attach",
1573                  CommandObjectSP(new CommandObjectProcessAttach(interpreter)));
1574   LoadSubCommand("launch",
1575                  CommandObjectSP(new CommandObjectProcessLaunch(interpreter)));
1576   LoadSubCommand("continue", CommandObjectSP(new CommandObjectProcessContinue(
1577                                  interpreter)));
1578   LoadSubCommand("connect",
1579                  CommandObjectSP(new CommandObjectProcessConnect(interpreter)));
1580   LoadSubCommand("detach",
1581                  CommandObjectSP(new CommandObjectProcessDetach(interpreter)));
1582   LoadSubCommand("load",
1583                  CommandObjectSP(new CommandObjectProcessLoad(interpreter)));
1584   LoadSubCommand("unload",
1585                  CommandObjectSP(new CommandObjectProcessUnload(interpreter)));
1586   LoadSubCommand("signal",
1587                  CommandObjectSP(new CommandObjectProcessSignal(interpreter)));
1588   LoadSubCommand("handle",
1589                  CommandObjectSP(new CommandObjectProcessHandle(interpreter)));
1590   LoadSubCommand("status",
1591                  CommandObjectSP(new CommandObjectProcessStatus(interpreter)));
1592   LoadSubCommand("interrupt", CommandObjectSP(new CommandObjectProcessInterrupt(
1593                                   interpreter)));
1594   LoadSubCommand("kill",
1595                  CommandObjectSP(new CommandObjectProcessKill(interpreter)));
1596   LoadSubCommand("plugin",
1597                  CommandObjectSP(new CommandObjectProcessPlugin(interpreter)));
1598   LoadSubCommand("save-core", CommandObjectSP(new CommandObjectProcessSaveCore(
1599                                   interpreter)));
1600 }
1601 
1602 CommandObjectMultiwordProcess::~CommandObjectMultiwordProcess() = default;
1603