testsuite, threads: fix LD_LIBRARY_PATH in 'tls-sepdebug.exp'
[binutils-gdb.git] / gdb / inferior.c
blob21f37c8313c24e43e288c3e53d8a9c381ec5634b
1 /* Multi-process control for GDB, the GNU debugger.
3 Copyright (C) 2008-2024 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "exec.h"
21 #include "inferior.h"
22 #include "target.h"
23 #include "command.h"
24 #include "completer.h"
25 #include "cli/cli-cmds.h"
26 #include "gdbthread.h"
27 #include "ui-out.h"
28 #include "observable.h"
29 #include "gdbcore.h"
30 #include "symfile.h"
31 #include "gdbsupport/environ.h"
32 #include "cli/cli-utils.h"
33 #include "arch-utils.h"
34 #include "target-descriptions.h"
35 #include "target-connection.h"
36 #include "readline/tilde.h"
37 #include "progspace-and-thread.h"
38 #include "gdbsupport/buildargv.h"
39 #include "cli/cli-style.h"
40 #include "interps.h"
42 intrusive_list<inferior> inferior_list;
43 static int highest_inferior_num;
45 /* See inferior.h. */
46 bool print_inferior_events = true;
48 /* The Current Inferior. This is a strong reference. I.e., whenever
49 an inferior is the current inferior, its refcount is
50 incremented. */
51 static inferior_ref current_inferior_;
53 struct inferior*
54 current_inferior (void)
56 return current_inferior_.get ();
59 void
60 set_current_inferior (struct inferior *inf)
62 /* There's always an inferior. */
63 gdb_assert (inf != NULL);
65 current_inferior_ = inferior_ref::new_reference (inf);
68 private_inferior::~private_inferior () = default;
70 inferior::~inferior ()
72 /* Before the inferior is deleted, all target_ops should be popped from
73 the target stack, this leaves just the dummy_target behind. If this
74 is not done, then any target left in the target stack will be left
75 with an artificially high reference count. As the dummy_target is
76 still on the target stack then we are about to loose a reference to
77 that target, leaving its reference count artificially high. However,
78 this is not critical as the dummy_target is a singleton. */
79 gdb_assert (m_target_stack.top ()->stratum () == dummy_stratum);
81 m_continuations.clear ();
84 inferior::inferior (int pid_)
85 : num (++highest_inferior_num),
86 pid (pid_),
87 environment (gdb_environ::from_host_environ ())
89 m_target_stack.push (get_dummy_target ());
92 /* See inferior.h. */
94 int
95 inferior::unpush_target (struct target_ops *t)
97 /* If unpushing the process stratum target from the inferior while threads
98 exist in the inferior, ensure that we don't leave any threads of the
99 inferior in the target's "resumed with pending wait status" list.
101 See also the comment in set_thread_exited. */
102 if (t->stratum () == process_stratum)
104 process_stratum_target *proc_target = as_process_stratum_target (t);
106 for (thread_info *thread : this->non_exited_threads ())
107 proc_target->maybe_remove_resumed_with_pending_wait_status (thread);
110 return m_target_stack.unpush (t);
113 /* See inferior.h. */
115 void
116 inferior::unpush_target_and_assert (struct target_ops *target)
118 gdb_assert (current_inferior () == this);
120 if (!unpush_target (target))
121 internal_error ("pop_all_targets couldn't find target %s\n",
122 target->shortname ());
125 /* See inferior.h. */
127 void
128 inferior::pop_all_targets_above (enum strata stratum)
130 /* Unpushing a target might cause it to close. Some targets currently
131 rely on the current_inferior being set for their ::close method, so we
132 temporarily switch inferior now. */
133 scoped_restore_current_pspace_and_thread restore_pspace_and_thread;
134 switch_to_inferior_no_thread (this);
136 while (top_target ()->stratum () > stratum)
137 unpush_target_and_assert (top_target ());
140 /* See inferior.h. */
142 void
143 inferior::pop_all_targets_at_and_above (enum strata stratum)
145 /* Unpushing a target might cause it to close. Some targets currently
146 rely on the current_inferior being set for their ::close method, so we
147 temporarily switch inferior now. */
148 scoped_restore_current_pspace_and_thread restore_pspace_and_thread;
149 switch_to_inferior_no_thread (this);
151 while (top_target ()->stratum () >= stratum)
152 unpush_target_and_assert (top_target ());
155 void
156 inferior::set_tty (std::string terminal_name)
158 m_terminal = std::move (terminal_name);
161 const std::string &
162 inferior::tty ()
164 return m_terminal;
167 /* See inferior.h. */
169 void
170 inferior::set_args (gdb::array_view<char * const> args)
172 set_args (construct_inferior_arguments (args));
175 void
176 inferior::set_arch (gdbarch *arch)
178 gdb_assert (arch != nullptr);
179 gdb_assert (gdbarch_initialized_p (arch));
180 m_gdbarch = arch;
182 process_stratum_target *proc_target = this->process_target ();
183 if (proc_target != nullptr)
184 registers_changed_ptid (proc_target, ptid_t (this->pid));
187 void
188 inferior::add_continuation (std::function<void ()> &&cont)
190 m_continuations.emplace_front (std::move (cont));
193 void
194 inferior::do_all_continuations ()
196 while (!m_continuations.empty ())
198 auto iter = m_continuations.begin ();
199 (*iter) ();
200 m_continuations.erase (iter);
204 /* Notify interpreters and observers that inferior INF was added. */
206 static void
207 notify_inferior_added (inferior *inf)
209 interps_notify_inferior_added (inf);
210 gdb::observers::inferior_added.notify (inf);
213 struct inferior *
214 add_inferior_silent (int pid)
216 inferior *inf = new inferior (pid);
218 inferior_list.push_back (*inf);
220 notify_inferior_added (inf);
222 if (pid != 0)
223 inferior_appeared (inf, pid);
225 return inf;
228 struct inferior *
229 add_inferior (int pid)
231 struct inferior *inf = add_inferior_silent (pid);
233 if (print_inferior_events)
235 if (pid != 0)
236 gdb_printf (_("[New inferior %d (%s)]\n"),
237 inf->num,
238 target_pid_to_str (ptid_t (pid)).c_str ());
239 else
240 gdb_printf (_("[New inferior %d]\n"), inf->num);
243 return inf;
246 /* See inferior.h. */
248 thread_info *
249 inferior::find_thread (ptid_t ptid)
251 auto it = this->ptid_thread_map.find (ptid);
252 if (it != this->ptid_thread_map.end ())
253 return it->second;
254 else
255 return nullptr;
258 /* See inferior.h. */
260 void
261 inferior::clear_thread_list ()
263 thread_list.clear_and_dispose ([=] (thread_info *thr)
265 threads_debug_printf ("deleting thread %s",
266 thr->ptid.to_string ().c_str ());
267 set_thread_exited (thr, {}, true /* silent */);
268 if (thr->deletable ())
269 delete thr;
271 ptid_thread_map.clear ();
274 /* Notify interpreters and observers that inferior INF was removed. */
276 static void
277 notify_inferior_removed (inferior *inf)
279 interps_notify_inferior_removed (inf);
280 gdb::observers::inferior_removed.notify (inf);
283 void
284 delete_inferior (struct inferior *inf)
286 inf->clear_thread_list ();
288 auto it = inferior_list.iterator_to (*inf);
289 inferior_list.erase (it);
291 notify_inferior_removed (inf);
293 /* Pop all targets now, this ensures that inferior::unpush is called
294 correctly. As pop_all_targets ends up making a temporary switch to
295 inferior INF then we need to make this call before we delete the
296 program space, which we do below. */
297 inf->pop_all_targets ();
299 /* If this program space is rendered useless, remove it. */
300 if (inf->pspace->empty ())
301 delete inf->pspace;
303 delete inf;
306 /* Notify interpreters and observers that inferior INF disappeared. */
308 static void
309 notify_inferior_disappeared (inferior *inf)
311 interps_notify_inferior_disappeared (inf);
312 gdb::observers::inferior_exit.notify (inf);
315 /* See inferior.h. */
317 void
318 exit_inferior (struct inferior *inf)
320 inf->clear_thread_list ();
322 notify_inferior_disappeared (inf);
324 inf->pid = 0;
325 inf->fake_pid_p = false;
326 inf->priv = NULL;
328 if (inf->vfork_parent != NULL)
330 inf->vfork_parent->vfork_child = NULL;
331 inf->vfork_parent = NULL;
333 if (inf->vfork_child != NULL)
335 inf->vfork_child->vfork_parent = NULL;
336 inf->vfork_child = NULL;
339 inf->pending_detach = false;
340 /* Reset it. */
341 inf->control = inferior_control_state (NO_STOP_QUIETLY);
343 /* Clear the register cache and the frame cache. */
344 registers_changed ();
345 reinit_frame_cache ();
348 /* See inferior.h. */
350 void
351 detach_inferior (inferior *inf)
353 /* Save the pid, since exit_inferior will reset it. */
354 int pid = inf->pid;
356 exit_inferior (inf);
358 if (print_inferior_events)
359 gdb_printf (_("[Inferior %d (%s) detached]\n"),
360 inf->num,
361 target_pid_to_str (ptid_t (pid)).c_str ());
364 /* Notify interpreters and observers that inferior INF appeared. */
366 static void
367 notify_inferior_appeared (inferior *inf)
369 interps_notify_inferior_appeared (inf);
370 gdb::observers::inferior_appeared.notify (inf);
373 void
374 inferior_appeared (struct inferior *inf, int pid)
376 /* If this is the first inferior with threads, reset the global
377 thread id. */
378 delete_exited_threads ();
379 if (!any_thread_p ())
380 init_thread_list ();
382 inf->pid = pid;
383 inf->has_exit_code = false;
384 inf->exit_code = 0;
386 notify_inferior_appeared (inf);
389 struct inferior *
390 find_inferior_id (int num)
392 for (inferior *inf : all_inferiors ())
393 if (inf->num == num)
394 return inf;
396 return NULL;
399 struct inferior *
400 find_inferior_pid (process_stratum_target *targ, int pid)
402 /* Looking for inferior pid == 0 is always wrong, and indicative of
403 a bug somewhere else. There may be more than one with pid == 0,
404 for instance. */
405 gdb_assert (pid != 0);
407 for (inferior *inf : all_inferiors (targ))
408 if (inf->pid == pid)
409 return inf;
411 return NULL;
414 /* See inferior.h */
416 struct inferior *
417 find_inferior_ptid (process_stratum_target *targ, ptid_t ptid)
419 return find_inferior_pid (targ, ptid.pid ());
422 /* See inferior.h. */
424 struct inferior *
425 find_inferior_for_program_space (struct program_space *pspace)
427 struct inferior *cur_inf = current_inferior ();
429 if (cur_inf->pspace == pspace)
430 return cur_inf;
432 for (inferior *inf : all_inferiors ())
433 if (inf->pspace == pspace)
434 return inf;
436 return NULL;
440 have_inferiors (void)
442 for (inferior *inf ATTRIBUTE_UNUSED : all_non_exited_inferiors ())
443 return 1;
445 return 0;
448 /* Return the number of live inferiors. We account for the case
449 where an inferior might have a non-zero pid but no threads, as
450 in the middle of a 'mourn' operation. */
453 number_of_live_inferiors (process_stratum_target *proc_target)
455 int num_inf = 0;
457 for (inferior *inf : all_non_exited_inferiors (proc_target))
458 if (inf->has_execution ())
459 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
461 /* Found a live thread in this inferior, go to the next
462 inferior. */
463 ++num_inf;
464 break;
467 return num_inf;
470 /* Return true if there is at least one live inferior. */
473 have_live_inferiors (void)
475 return number_of_live_inferiors (NULL) > 0;
478 /* Prune away any unused inferiors, and then prune away no longer used
479 program spaces. */
481 void
482 prune_inferiors (void)
484 for (inferior *inf : all_inferiors_safe ())
486 if (!inf->deletable ()
487 || !inf->removable
488 || inf->pid != 0)
489 continue;
491 delete_inferior (inf);
495 /* Simply returns the count of inferiors. */
498 number_of_inferiors (void)
500 auto rng = all_inferiors ();
501 return std::distance (rng.begin (), rng.end ());
504 /* Converts an inferior process id to a string. Like
505 target_pid_to_str, but special cases the null process. */
507 static std::string
508 inferior_pid_to_str (int pid)
510 if (pid != 0)
511 return target_pid_to_str (ptid_t (pid));
512 else
513 return _("<null>");
516 /* See inferior.h. */
518 void
519 print_selected_inferior (struct ui_out *uiout)
521 struct inferior *inf = current_inferior ();
522 const char *filename = inf->pspace->exec_filename ();
524 if (filename == NULL)
525 filename = _("<noexec>");
527 uiout->message (_("[Switching to inferior %d [%s] (%s)]\n"),
528 inf->num, inferior_pid_to_str (inf->pid).c_str (), filename);
531 /* Helper for print_inferior. Returns the 'connection-id' string for
532 PROC_TARGET. */
534 static std::string
535 uiout_field_connection (process_stratum_target *proc_target)
537 if (proc_target == NULL)
538 return {};
539 else
541 std::string conn_str = make_target_connection_string (proc_target);
542 return string_printf ("%d (%s)", proc_target->connection_number,
543 conn_str.c_str ());
547 /* Prints the list of inferiors and their details on UIOUT. This is a
548 version of 'info_inferior_command' suitable for use from MI.
550 If REQUESTED_INFERIORS is not NULL, it's a list of GDB ids of the
551 inferiors that should be printed. Otherwise, all inferiors are
552 printed. */
554 static void
555 print_inferior (struct ui_out *uiout, const char *requested_inferiors)
557 int inf_count = 0;
558 size_t connection_id_len = 20;
560 /* Compute number of inferiors we will print. */
561 for (inferior *inf : all_inferiors ())
563 if (!number_is_in_list (requested_inferiors, inf->num))
564 continue;
566 std::string conn = uiout_field_connection (inf->process_target ());
567 if (connection_id_len < conn.size ())
568 connection_id_len = conn.size ();
570 ++inf_count;
573 if (inf_count == 0)
575 uiout->message ("No inferiors.\n");
576 return;
579 ui_out_emit_table table_emitter (uiout, 5, inf_count, "inferiors");
580 uiout->table_header (1, ui_left, "current", "");
581 uiout->table_header (4, ui_left, "number", "Num");
582 uiout->table_header (17, ui_left, "target-id", "Description");
583 uiout->table_header (connection_id_len, ui_left,
584 "connection-id", "Connection");
585 uiout->table_header (17, ui_left, "exec", "Executable");
587 uiout->table_body ();
589 /* Restore the current thread after the loop because we switch the
590 inferior in the loop. */
591 scoped_restore_current_pspace_and_thread restore_pspace_thread;
592 inferior *current_inf = current_inferior ();
593 for (inferior *inf : all_inferiors ())
595 if (!number_is_in_list (requested_inferiors, inf->num))
596 continue;
598 ui_out_emit_tuple tuple_emitter (uiout, NULL);
600 if (inf == current_inf)
601 uiout->field_string ("current", "*");
602 else
603 uiout->field_skip ("current");
605 uiout->field_signed ("number", inf->num);
607 /* Because target_pid_to_str uses the current inferior,
608 switch the inferior. */
609 switch_to_inferior_no_thread (inf);
611 uiout->field_string ("target-id", inferior_pid_to_str (inf->pid));
613 std::string conn = uiout_field_connection (inf->process_target ());
614 uiout->field_string ("connection-id", conn);
616 if (inf->pspace->exec_filename () != nullptr)
617 uiout->field_string ("exec", inf->pspace->exec_filename (),
618 file_name_style.style ());
619 else
620 uiout->field_skip ("exec");
622 /* Print extra info that isn't really fit to always present in
623 tabular form. Currently we print the vfork parent/child
624 relationships, if any. */
625 if (inf->vfork_parent)
627 uiout->text (_("\n\tis vfork child of inferior "));
628 uiout->field_signed ("vfork-parent", inf->vfork_parent->num);
630 if (inf->vfork_child)
632 uiout->text (_("\n\tis vfork parent of inferior "));
633 uiout->field_signed ("vfork-child", inf->vfork_child->num);
636 uiout->text ("\n");
640 static void
641 detach_inferior_command (const char *args, int from_tty)
643 if (!args || !*args)
644 error (_("Requires argument (inferior id(s) to detach)"));
646 scoped_restore_current_thread restore_thread;
648 number_or_range_parser parser (args);
649 while (!parser.finished ())
651 int num = parser.get_number ();
653 inferior *inf = find_inferior_id (num);
654 if (inf == NULL)
656 warning (_("Inferior ID %d not known."), num);
657 continue;
660 if (inf->pid == 0)
662 warning (_("Inferior ID %d is not running."), num);
663 continue;
666 thread_info *tp = any_thread_of_inferior (inf);
667 if (tp == NULL)
669 warning (_("Inferior ID %d has no threads."), num);
670 continue;
673 switch_to_thread (tp);
675 detach_command (NULL, from_tty);
679 static void
680 kill_inferior_command (const char *args, int from_tty)
682 if (!args || !*args)
683 error (_("Requires argument (inferior id(s) to kill)"));
685 scoped_restore_current_thread restore_thread;
687 number_or_range_parser parser (args);
688 while (!parser.finished ())
690 int num = parser.get_number ();
692 inferior *inf = find_inferior_id (num);
693 if (inf == NULL)
695 warning (_("Inferior ID %d not known."), num);
696 continue;
699 if (inf->pid == 0)
701 warning (_("Inferior ID %d is not running."), num);
702 continue;
705 thread_info *tp = any_thread_of_inferior (inf);
706 if (tp == NULL)
708 warning (_("Inferior ID %d has no threads."), num);
709 continue;
712 switch_to_thread (tp);
714 target_kill ();
718 /* See inferior.h. */
720 void
721 switch_to_inferior_no_thread (inferior *inf)
723 set_current_inferior (inf);
724 switch_to_no_thread ();
725 set_current_program_space (inf->pspace);
728 /* See regcache.h. */
730 std::optional<scoped_restore_current_thread>
731 maybe_switch_inferior (inferior *inf)
733 std::optional<scoped_restore_current_thread> maybe_restore_thread;
734 if (inf != current_inferior ())
736 maybe_restore_thread.emplace ();
737 switch_to_inferior_no_thread (inf);
740 return maybe_restore_thread;
743 static void
744 inferior_command (const char *args, int from_tty)
746 struct inferior *inf;
747 int num;
749 if (args == nullptr)
751 inf = current_inferior ();
752 gdb_assert (inf != nullptr);
753 const char *filename = inf->pspace->exec_filename ();
755 if (filename == nullptr)
756 filename = _("<noexec>");
758 gdb_printf (_("[Current inferior is %d [%s] (%s)]\n"),
759 inf->num, inferior_pid_to_str (inf->pid).c_str (),
760 filename);
762 else
764 num = parse_and_eval_long (args);
766 inf = find_inferior_id (num);
767 if (inf == NULL)
768 error (_("Inferior ID %d not known."), num);
770 if (inf->pid != 0)
772 if (inf != current_inferior ())
774 thread_info *tp = any_thread_of_inferior (inf);
775 if (tp == NULL)
776 error (_("Inferior has no threads."));
778 switch_to_thread (tp);
781 notify_user_selected_context_changed
782 (USER_SELECTED_INFERIOR
783 | USER_SELECTED_THREAD
784 | USER_SELECTED_FRAME);
786 else
788 switch_to_inferior_no_thread (inf);
790 notify_user_selected_context_changed
791 (USER_SELECTED_INFERIOR);
794 /* Switching current inferior may have made one of the inferiors
795 prunable, so prune it. */
796 prune_inferiors ();
800 /* Print information about currently known inferiors. */
802 static void
803 info_inferiors_command (const char *args, int from_tty)
805 print_inferior (current_uiout, args);
808 /* remove-inferior ID */
810 static void
811 remove_inferior_command (const char *args, int from_tty)
813 if (args == NULL || *args == '\0')
814 error (_("Requires an argument (inferior id(s) to remove)"));
816 number_or_range_parser parser (args);
817 while (!parser.finished ())
819 int num = parser.get_number ();
820 struct inferior *inf = find_inferior_id (num);
822 if (inf == NULL)
824 warning (_("Inferior ID %d not known."), num);
825 continue;
828 if (!inf->deletable ())
830 warning (_("Can not remove current inferior %d."), num);
831 continue;
834 if (inf->pid != 0)
836 warning (_("Can not remove active inferior %d."), num);
837 continue;
840 delete_inferior (inf);
844 struct inferior *
845 add_inferior_with_spaces (void)
847 struct program_space *pspace;
848 struct inferior *inf;
850 /* If all inferiors share an address space on this system, this
851 doesn't really return a new address space; otherwise, it
852 really does. */
853 pspace = new program_space (maybe_new_address_space ());
854 inf = add_inferior (0);
855 inf->pspace = pspace;
856 inf->aspace = pspace->aspace;
858 /* Setup the inferior's initial arch, based on information obtained
859 from the global "set ..." options. */
860 gdbarch_info info;
861 inf->set_arch (gdbarch_find_by_info (info));
862 /* The "set ..." options reject invalid settings, so we should
863 always have a valid arch by now. */
864 gdb_assert (inf->arch () != nullptr);
866 return inf;
869 /* See inferior.h. */
871 void
872 switch_to_inferior_and_push_target (inferior *new_inf,
873 bool no_connection, inferior *org_inf)
875 process_stratum_target *proc_target = org_inf->process_target ();
877 /* Switch over temporarily, while reading executable and
878 symbols. */
879 switch_to_inferior_no_thread (new_inf);
881 /* Reuse the target for new inferior. */
882 if (!no_connection && proc_target != NULL)
884 new_inf->push_target (proc_target);
885 gdb_printf (_("Added inferior %d on connection %d (%s)\n"),
886 new_inf->num,
887 proc_target->connection_number,
888 make_target_connection_string (proc_target).c_str ());
890 else
891 gdb_printf (_("Added inferior %d\n"), new_inf->num);
894 /* add-inferior [-copies N] [-exec FILENAME] [-no-connection] */
896 static void
897 add_inferior_command (const char *args, int from_tty)
899 int i, copies = 1;
900 gdb::unique_xmalloc_ptr<char> exec;
901 symfile_add_flags add_flags = 0;
902 bool no_connection = false;
904 if (from_tty)
905 add_flags |= SYMFILE_VERBOSE;
907 if (args)
909 gdb_argv built_argv (args);
911 for (char **argv = built_argv.get (); *argv != NULL; argv++)
913 if (**argv == '-')
915 if (strcmp (*argv, "-copies") == 0)
917 ++argv;
918 if (!*argv)
919 error (_("No argument to -copies"));
920 copies = parse_and_eval_long (*argv);
922 else if (strcmp (*argv, "-no-connection") == 0)
923 no_connection = true;
924 else if (strcmp (*argv, "-exec") == 0)
926 ++argv;
927 if (!*argv)
928 error (_("No argument to -exec"));
929 exec.reset (tilde_expand (*argv));
932 else
933 error (_("Invalid argument"));
937 inferior *orginf = current_inferior ();
939 scoped_restore_current_pspace_and_thread restore_pspace_thread;
941 for (i = 0; i < copies; ++i)
943 inferior *inf = add_inferior_with_spaces ();
945 switch_to_inferior_and_push_target (inf, no_connection, orginf);
947 if (exec != NULL)
949 exec_file_attach (exec.get (), from_tty);
950 symbol_file_add_main (exec.get (), add_flags);
955 /* clone-inferior [-copies N] [ID] [-no-connection] */
957 static void
958 clone_inferior_command (const char *args, int from_tty)
960 int i, copies = 1;
961 struct inferior *orginf = NULL;
962 bool no_connection = false;
964 if (args)
966 gdb_argv built_argv (args);
968 char **argv = built_argv.get ();
969 for (; *argv != NULL; argv++)
971 if (**argv == '-')
973 if (strcmp (*argv, "-copies") == 0)
975 ++argv;
976 if (!*argv)
977 error (_("No argument to -copies"));
978 copies = parse_and_eval_long (*argv);
980 if (copies < 0)
981 error (_("Invalid copies number"));
983 else if (strcmp (*argv, "-no-connection") == 0)
984 no_connection = true;
986 else
988 if (orginf == NULL)
990 int num;
992 /* The first non-option (-) argument specified the
993 program space ID. */
994 num = parse_and_eval_long (*argv);
995 orginf = find_inferior_id (num);
997 if (orginf == NULL)
998 error (_("Inferior ID %d not known."), num);
999 continue;
1001 else
1002 error (_("Invalid argument"));
1007 /* If no inferior id was specified, then the user wants to clone the
1008 current inferior. */
1009 if (orginf == NULL)
1010 orginf = current_inferior ();
1012 scoped_restore_current_pspace_and_thread restore_pspace_thread;
1014 for (i = 0; i < copies; ++i)
1016 struct program_space *pspace;
1017 struct inferior *inf;
1019 /* If all inferiors share an address space on this system, this
1020 doesn't really return a new address space; otherwise, it
1021 really does. */
1022 pspace = new program_space (maybe_new_address_space ());
1023 inf = add_inferior (0);
1024 inf->pspace = pspace;
1025 inf->aspace = pspace->aspace;
1026 inf->set_arch (orginf->arch ());
1028 switch_to_inferior_and_push_target (inf, no_connection, orginf);
1030 /* If the original inferior had a user specified target
1031 description, make the clone use it too. */
1032 if (inf->tdesc_info.from_user_p ())
1033 inf->tdesc_info = orginf->tdesc_info;
1035 clone_program_space (pspace, orginf->pspace);
1037 /* Copy properties from the original inferior to the new one. */
1038 inf->set_args (orginf->args ());
1039 inf->set_cwd (orginf->cwd ());
1040 inf->set_tty (orginf->tty ());
1041 for (const std::string &set_var : orginf->environment.user_set_env ())
1043 /* set_var has the form NAME=value. Split on the first '='. */
1044 const std::string::size_type pos = set_var.find ('=');
1045 gdb_assert (pos != std::string::npos);
1046 const std::string varname = set_var.substr (0, pos);
1047 inf->environment.set
1048 (varname.c_str (), orginf->environment.get (varname.c_str ()));
1050 for (const std::string &unset_var
1051 : orginf->environment.user_unset_env ())
1052 inf->environment.unset (unset_var.c_str ());
1054 gdb::observers::inferior_cloned.notify (orginf, inf);
1058 /* Print notices when new inferiors are created and die. */
1059 static void
1060 show_print_inferior_events (struct ui_file *file, int from_tty,
1061 struct cmd_list_element *c, const char *value)
1063 gdb_printf (file, _("Printing of inferior events is %s.\n"), value);
1066 /* Return a new value for the selected inferior's id. */
1068 static struct value *
1069 inferior_id_make_value (struct gdbarch *gdbarch, struct internalvar *var,
1070 void *ignore)
1072 struct inferior *inf = current_inferior ();
1074 return value_from_longest (builtin_type (gdbarch)->builtin_int, inf->num);
1077 /* Implementation of `$_inferior' variable. */
1079 static const struct internalvar_funcs inferior_funcs =
1081 inferior_id_make_value,
1082 NULL,
1085 /* See inferior.h. */
1087 void
1088 initialize_inferiors ()
1090 struct cmd_list_element *c = NULL;
1092 /* There's always one inferior. Note that this function isn't an
1093 automatic _initialize_foo function, since other _initialize_foo
1094 routines may need to install their per-inferior data keys. We
1095 can only allocate an inferior when all those modules have done
1096 that. Do this after initialize_progspace, due to the
1097 current_program_space reference. */
1098 set_current_inferior (add_inferior_silent (0));
1099 current_inferior_->pspace = current_program_space;
1100 current_inferior_->aspace = current_program_space->aspace;
1101 /* The architecture will be initialized shortly, by
1102 initialize_current_architecture. */
1104 add_info ("inferiors", info_inferiors_command,
1105 _("Print a list of inferiors being managed.\n\
1106 Usage: info inferiors [ID]...\n\
1107 If IDs are specified, the list is limited to just those inferiors.\n\
1108 By default all inferiors are displayed."));
1110 c = add_com ("add-inferior", no_class, add_inferior_command, _("\
1111 Add a new inferior.\n\
1112 Usage: add-inferior [-copies N] [-exec FILENAME] [-no-connection]\n\
1113 N is the optional number of inferiors to add, default is 1.\n\
1114 FILENAME is the file name of the executable to use\n\
1115 as main program.\n\
1116 By default, the new inferior inherits the current inferior's connection.\n\
1117 If -no-connection is specified, the new inferior begins with\n\
1118 no target connection yet."));
1119 set_cmd_completer (c, deprecated_filename_completer);
1121 add_com ("remove-inferiors", no_class, remove_inferior_command, _("\
1122 Remove inferior ID (or list of IDs).\n\
1123 Usage: remove-inferiors ID..."));
1125 add_com ("clone-inferior", no_class, clone_inferior_command, _("\
1126 Clone inferior ID.\n\
1127 Usage: clone-inferior [-copies N] [-no-connection] [ID]\n\
1128 Add N copies of inferior ID. The new inferiors have the same\n\
1129 executable loaded as the copied inferior. If -copies is not specified,\n\
1130 adds 1 copy. If ID is not specified, it is the current inferior\n\
1131 that is cloned.\n\
1132 By default, the new inferiors inherit the copied inferior's connection.\n\
1133 If -no-connection is specified, the new inferiors begin with\n\
1134 no target connection yet."));
1136 add_cmd ("inferiors", class_run, detach_inferior_command, _("\
1137 Detach from inferior ID (or list of IDS).\n\
1138 Usage; detach inferiors ID..."),
1139 &detachlist);
1141 add_cmd ("inferiors", class_run, kill_inferior_command, _("\
1142 Kill inferior ID (or list of IDs).\n\
1143 Usage: kill inferiors ID..."),
1144 &killlist);
1146 add_cmd ("inferior", class_run, inferior_command, _("\
1147 Use this command to switch between inferiors.\n\
1148 Usage: inferior ID\n\
1149 The new inferior ID must be currently known."),
1150 &cmdlist);
1152 add_setshow_boolean_cmd ("inferior-events", no_class,
1153 &print_inferior_events, _("\
1154 Set printing of inferior events (such as inferior start and exit)."), _("\
1155 Show printing of inferior events (such as inferior start and exit)."), NULL,
1156 NULL,
1157 show_print_inferior_events,
1158 &setprintlist, &showprintlist);
1160 create_internalvar_type_lazy ("_inferior", &inferior_funcs, NULL);