Commit | Line | Data |
---|---|---|
b77209e0 PA |
1 | /* Multi-process control for GDB, the GNU debugger. |
2 | ||
42a4f53d | 3 | Copyright (C) 2008-2019 Free Software Foundation, Inc. |
b77209e0 PA |
4 | |
5 | This file is part of GDB. | |
6 | ||
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. | |
11 | ||
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. | |
16 | ||
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/>. */ | |
19 | ||
20 | #include "defs.h" | |
6c95b8df | 21 | #include "exec.h" |
b77209e0 PA |
22 | #include "inferior.h" |
23 | #include "target.h" | |
24 | #include "command.h" | |
06da564e | 25 | #include "completer.h" |
b77209e0 PA |
26 | #include "gdbcmd.h" |
27 | #include "gdbthread.h" | |
28 | #include "ui-out.h" | |
76727919 | 29 | #include "observable.h" |
6c95b8df PA |
30 | #include "gdbcore.h" |
31 | #include "symfile.h" | |
268a13a5 | 32 | #include "gdbsupport/environ.h" |
c82c0b55 | 33 | #include "cli/cli-utils.h" |
be34f849 | 34 | #include "continuations.h" |
6ecd4729 PA |
35 | #include "arch-utils.h" |
36 | #include "target-descriptions.h" | |
47902076 | 37 | #include "readline/tilde.h" |
5ed8105e | 38 | #include "progspace-and-thread.h" |
b77209e0 | 39 | |
8e260fc0 TT |
40 | /* Keep a registry of per-inferior data-pointers required by other GDB |
41 | modules. */ | |
42 | ||
6b81941e | 43 | DEFINE_REGISTRY (inferior, REGISTRY_ACCESS_FIELD) |
6c95b8df PA |
44 | |
45 | struct inferior *inferior_list = NULL; | |
b77209e0 PA |
46 | static int highest_inferior_num; |
47 | ||
f67c0c91 | 48 | /* See inferior.h. */ |
491144b5 | 49 | bool print_inferior_events = true; |
b77209e0 | 50 | |
3a3fd0fd PA |
51 | /* The Current Inferior. This is a strong reference. I.e., whenever |
52 | an inferior is the current inferior, its refcount is | |
53 | incremented. */ | |
6c95b8df PA |
54 | static struct inferior *current_inferior_ = NULL; |
55 | ||
b77209e0 PA |
56 | struct inferior* |
57 | current_inferior (void) | |
58 | { | |
6c95b8df PA |
59 | return current_inferior_; |
60 | } | |
61 | ||
62 | void | |
63 | set_current_inferior (struct inferior *inf) | |
64 | { | |
65 | /* There's always an inferior. */ | |
66 | gdb_assert (inf != NULL); | |
67 | ||
3a3fd0fd PA |
68 | inf->incref (); |
69 | current_inferior_->decref (); | |
6c95b8df PA |
70 | current_inferior_ = inf; |
71 | } | |
72 | ||
089354bb SM |
73 | private_inferior::~private_inferior () = default; |
74 | ||
0550c955 | 75 | inferior::~inferior () |
b77209e0 | 76 | { |
0550c955 PA |
77 | inferior *inf = this; |
78 | ||
e0ba6746 | 79 | discard_all_inferior_continuations (inf); |
6c95b8df | 80 | inferior_free_data (inf); |
3f81c18a VP |
81 | xfree (inf->args); |
82 | xfree (inf->terminal); | |
6ecd4729 | 83 | target_desc_info_free (inf->tdesc_info); |
0550c955 PA |
84 | } |
85 | ||
86 | inferior::inferior (int pid_) | |
87 | : num (++highest_inferior_num), | |
88 | pid (pid_), | |
9a6c7d9c | 89 | environment (gdb_environ::from_host_environ ()), |
0550c955 PA |
90 | registry_data () |
91 | { | |
0550c955 | 92 | inferior_alloc_data (this); |
b77209e0 PA |
93 | } |
94 | ||
b77209e0 PA |
95 | struct inferior * |
96 | add_inferior_silent (int pid) | |
97 | { | |
0550c955 | 98 | inferior *inf = new inferior (pid); |
b05b1202 PA |
99 | |
100 | if (inferior_list == NULL) | |
101 | inferior_list = inf; | |
102 | else | |
103 | { | |
0550c955 | 104 | inferior *last; |
b05b1202 PA |
105 | |
106 | for (last = inferior_list; last->next != NULL; last = last->next) | |
107 | ; | |
108 | last->next = inf; | |
109 | } | |
b77209e0 | 110 | |
76727919 | 111 | gdb::observers::inferior_added.notify (inf); |
a79b8f6e | 112 | |
6c95b8df PA |
113 | if (pid != 0) |
114 | inferior_appeared (inf, pid); | |
a562dc8f | 115 | |
b77209e0 PA |
116 | return inf; |
117 | } | |
118 | ||
119 | struct inferior * | |
120 | add_inferior (int pid) | |
121 | { | |
122 | struct inferior *inf = add_inferior_silent (pid); | |
123 | ||
124 | if (print_inferior_events) | |
151bb4a5 PA |
125 | { |
126 | if (pid != 0) | |
127 | printf_unfiltered (_("[New inferior %d (%s)]\n"), | |
128 | inf->num, | |
a068643d | 129 | target_pid_to_str (ptid_t (pid)).c_str ()); |
151bb4a5 PA |
130 | else |
131 | printf_unfiltered (_("[New inferior %d]\n"), inf->num); | |
132 | } | |
b77209e0 PA |
133 | |
134 | return inf; | |
135 | } | |
136 | ||
a79b8f6e | 137 | void |
7a41607e | 138 | delete_inferior (struct inferior *todel) |
b77209e0 PA |
139 | { |
140 | struct inferior *inf, *infprev; | |
b77209e0 PA |
141 | |
142 | infprev = NULL; | |
143 | ||
144 | for (inf = inferior_list; inf; infprev = inf, inf = inf->next) | |
6c95b8df | 145 | if (inf == todel) |
b77209e0 PA |
146 | break; |
147 | ||
148 | if (!inf) | |
149 | return; | |
150 | ||
08036331 PA |
151 | for (thread_info *tp : inf->threads_safe ()) |
152 | delete_thread_silent (tp); | |
4a92f99b | 153 | |
7e1789f5 PA |
154 | if (infprev) |
155 | infprev->next = inf->next; | |
156 | else | |
157 | inferior_list = inf->next; | |
158 | ||
76727919 | 159 | gdb::observers::inferior_removed.notify (inf); |
a79b8f6e | 160 | |
7a41607e SM |
161 | /* If this program space is rendered useless, remove it. */ |
162 | if (program_space_empty_p (inf->pspace)) | |
163 | delete_program_space (inf->pspace); | |
ef3f321b | 164 | |
0550c955 | 165 | delete inf; |
ef3f321b SM |
166 | } |
167 | ||
6c95b8df PA |
168 | /* If SILENT then be quiet -- don't announce a inferior exit, or the |
169 | exit of its threads. */ | |
170 | ||
171 | static void | |
172 | exit_inferior_1 (struct inferior *inftoex, int silent) | |
173 | { | |
174 | struct inferior *inf; | |
6c95b8df PA |
175 | |
176 | for (inf = inferior_list; inf; inf = inf->next) | |
177 | if (inf == inftoex) | |
178 | break; | |
179 | ||
180 | if (!inf) | |
181 | return; | |
182 | ||
08036331 PA |
183 | for (thread_info *tp : inf->threads_safe ()) |
184 | { | |
185 | if (silent) | |
186 | delete_thread_silent (tp); | |
187 | else | |
188 | delete_thread (tp); | |
189 | } | |
6c95b8df | 190 | |
76727919 | 191 | gdb::observers::inferior_exit.notify (inf); |
6c95b8df PA |
192 | |
193 | inf->pid = 0; | |
9ab8741a | 194 | inf->fake_pid_p = false; |
ef4a3395 PA |
195 | inf->priv = NULL; |
196 | ||
6c95b8df PA |
197 | if (inf->vfork_parent != NULL) |
198 | { | |
199 | inf->vfork_parent->vfork_child = NULL; | |
200 | inf->vfork_parent = NULL; | |
201 | } | |
68c9da30 PA |
202 | if (inf->vfork_child != NULL) |
203 | { | |
204 | inf->vfork_child->vfork_parent = NULL; | |
205 | inf->vfork_child = NULL; | |
206 | } | |
8cf64490 | 207 | |
68c9da30 | 208 | inf->pending_detach = 0; |
85046ae2 | 209 | /* Reset it. */ |
ee841dd8 | 210 | inf->control = inferior_control_state (NO_STOP_QUIETLY); |
66452beb PW |
211 | |
212 | /* Clear the register cache and the frame cache. */ | |
213 | registers_changed (); | |
214 | reinit_frame_cache (); | |
6c95b8df PA |
215 | } |
216 | ||
217 | void | |
00431a78 | 218 | exit_inferior (inferior *inf) |
6c95b8df | 219 | { |
6c95b8df | 220 | exit_inferior_1 (inf, 0); |
6c95b8df PA |
221 | } |
222 | ||
00431a78 PA |
223 | void |
224 | exit_inferior_silent (inferior *inf) | |
225 | { | |
226 | exit_inferior_1 (inf, 1); | |
227 | } | |
228 | ||
bc09b0c1 SM |
229 | /* See inferior.h. */ |
230 | ||
b77209e0 | 231 | void |
bc09b0c1 | 232 | detach_inferior (inferior *inf) |
b77209e0 | 233 | { |
bc09b0c1 SM |
234 | /* Save the pid, since exit_inferior_1 will reset it. */ |
235 | int pid = inf->pid; | |
abbb1732 | 236 | |
3b462ec2 | 237 | exit_inferior_1 (inf, 0); |
b77209e0 PA |
238 | |
239 | if (print_inferior_events) | |
f67c0c91 SDJ |
240 | printf_unfiltered (_("[Inferior %d (%s) detached]\n"), |
241 | inf->num, | |
a068643d | 242 | target_pid_to_str (ptid_t (pid)).c_str ()); |
b77209e0 PA |
243 | } |
244 | ||
6c95b8df PA |
245 | void |
246 | inferior_appeared (struct inferior *inf, int pid) | |
247 | { | |
08036331 PA |
248 | /* If this is the first inferior with threads, reset the global |
249 | thread id. */ | |
250 | if (!any_thread_p ()) | |
251 | init_thread_list (); | |
252 | ||
6c95b8df | 253 | inf->pid = pid; |
2ddf4301 SM |
254 | inf->has_exit_code = 0; |
255 | inf->exit_code = 0; | |
6c95b8df | 256 | |
76727919 | 257 | gdb::observers::inferior_appeared.notify (inf); |
6c95b8df PA |
258 | } |
259 | ||
82f73884 PA |
260 | void |
261 | discard_all_inferiors (void) | |
262 | { | |
08036331 PA |
263 | for (inferior *inf : all_non_exited_inferiors ()) |
264 | exit_inferior_silent (inf); | |
82f73884 PA |
265 | } |
266 | ||
6c95b8df | 267 | struct inferior * |
b77209e0 PA |
268 | find_inferior_id (int num) |
269 | { | |
08036331 | 270 | for (inferior *inf : all_inferiors ()) |
b77209e0 PA |
271 | if (inf->num == num) |
272 | return inf; | |
273 | ||
274 | return NULL; | |
275 | } | |
276 | ||
277 | struct inferior * | |
278 | find_inferior_pid (int pid) | |
279 | { | |
6c95b8df PA |
280 | /* Looking for inferior pid == 0 is always wrong, and indicative of |
281 | a bug somewhere else. There may be more than one with pid == 0, | |
282 | for instance. */ | |
283 | gdb_assert (pid != 0); | |
284 | ||
08036331 | 285 | for (inferior *inf : all_inferiors ()) |
b77209e0 PA |
286 | if (inf->pid == pid) |
287 | return inf; | |
288 | ||
289 | return NULL; | |
290 | } | |
291 | ||
c9657e70 SM |
292 | /* See inferior.h */ |
293 | ||
294 | struct inferior * | |
295 | find_inferior_ptid (ptid_t ptid) | |
296 | { | |
e99b03dc | 297 | return find_inferior_pid (ptid.pid ()); |
c9657e70 SM |
298 | } |
299 | ||
32990ada | 300 | /* See inferior.h. */ |
6c95b8df PA |
301 | |
302 | struct inferior * | |
303 | find_inferior_for_program_space (struct program_space *pspace) | |
304 | { | |
08036331 | 305 | struct inferior *cur_inf = current_inferior (); |
32990ada | 306 | |
08036331 PA |
307 | if (cur_inf->pspace == pspace) |
308 | return cur_inf; | |
6c95b8df | 309 | |
08036331 PA |
310 | for (inferior *inf : all_inferiors ()) |
311 | if (inf->pspace == pspace) | |
312 | return inf; | |
6c95b8df PA |
313 | |
314 | return NULL; | |
315 | } | |
316 | ||
b77209e0 PA |
317 | struct inferior * |
318 | iterate_over_inferiors (int (*callback) (struct inferior *, void *), | |
319 | void *data) | |
320 | { | |
08036331 PA |
321 | for (inferior *inf : all_inferiors_safe ()) |
322 | if ((*callback) (inf, data)) | |
323 | return inf; | |
b77209e0 PA |
324 | |
325 | return NULL; | |
326 | } | |
327 | ||
b77209e0 PA |
328 | int |
329 | have_inferiors (void) | |
330 | { | |
08036331 PA |
331 | for (inferior *inf ATTRIBUTE_UNUSED : all_non_exited_inferiors ()) |
332 | return 1; | |
6c95b8df PA |
333 | |
334 | return 0; | |
b77209e0 PA |
335 | } |
336 | ||
8020350c DB |
337 | /* Return the number of live inferiors. We account for the case |
338 | where an inferior might have a non-zero pid but no threads, as | |
339 | in the middle of a 'mourn' operation. */ | |
340 | ||
c35b1492 | 341 | int |
8020350c | 342 | number_of_live_inferiors (void) |
c35b1492 | 343 | { |
8020350c | 344 | int num_inf = 0; |
6c95b8df | 345 | |
08036331 PA |
346 | for (inferior *inf : all_non_exited_inferiors ()) |
347 | if (target_has_execution_1 (ptid_t (inf->pid))) | |
348 | for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ()) | |
349 | { | |
350 | /* Found a live thread in this inferior, go to the next | |
351 | inferior. */ | |
352 | ++num_inf; | |
353 | break; | |
354 | } | |
cd2effb2 | 355 | |
8020350c DB |
356 | return num_inf; |
357 | } | |
358 | ||
359 | /* Return true if there is at least one live inferior. */ | |
360 | ||
361 | int | |
362 | have_live_inferiors (void) | |
363 | { | |
364 | return number_of_live_inferiors () > 0; | |
6c95b8df PA |
365 | } |
366 | ||
bed8455c DE |
367 | /* Prune away any unused inferiors, and then prune away no longer used |
368 | program spaces. */ | |
6c95b8df PA |
369 | |
370 | void | |
371 | prune_inferiors (void) | |
372 | { | |
908641f5 | 373 | inferior *ss; |
6c95b8df PA |
374 | |
375 | ss = inferior_list; | |
6c95b8df PA |
376 | while (ss) |
377 | { | |
3a3fd0fd | 378 | if (!ss->deletable () |
6c95b8df PA |
379 | || !ss->removable |
380 | || ss->pid != 0) | |
381 | { | |
908641f5 | 382 | ss = ss->next; |
6c95b8df PA |
383 | continue; |
384 | } | |
385 | ||
908641f5 | 386 | inferior *ss_next = ss->next; |
7a41607e | 387 | delete_inferior (ss); |
908641f5 | 388 | ss = ss_next; |
6c95b8df | 389 | } |
6c95b8df PA |
390 | } |
391 | ||
392 | /* Simply returns the count of inferiors. */ | |
393 | ||
394 | int | |
395 | number_of_inferiors (void) | |
396 | { | |
08036331 PA |
397 | auto rng = all_inferiors (); |
398 | return std::distance (rng.begin (), rng.end ()); | |
c35b1492 PA |
399 | } |
400 | ||
db2b9fdd PA |
401 | /* Converts an inferior process id to a string. Like |
402 | target_pid_to_str, but special cases the null process. */ | |
403 | ||
a068643d | 404 | static std::string |
db2b9fdd PA |
405 | inferior_pid_to_str (int pid) |
406 | { | |
407 | if (pid != 0) | |
f2907e49 | 408 | return target_pid_to_str (ptid_t (pid)); |
db2b9fdd PA |
409 | else |
410 | return _("<null>"); | |
411 | } | |
412 | ||
4034d0ff AT |
413 | /* See inferior.h. */ |
414 | ||
415 | void | |
416 | print_selected_inferior (struct ui_out *uiout) | |
417 | { | |
4034d0ff | 418 | struct inferior *inf = current_inferior (); |
53488a6e | 419 | const char *filename = inf->pspace->pspace_exec_filename; |
112e8700 | 420 | |
53488a6e TS |
421 | if (filename == NULL) |
422 | filename = _("<noexec>"); | |
112e8700 SM |
423 | |
424 | uiout->message (_("[Switching to inferior %d [%s] (%s)]\n"), | |
a068643d | 425 | inf->num, inferior_pid_to_str (inf->pid).c_str (), filename); |
4034d0ff AT |
426 | } |
427 | ||
b77209e0 PA |
428 | /* Prints the list of inferiors and their details on UIOUT. This is a |
429 | version of 'info_inferior_command' suitable for use from MI. | |
430 | ||
c82c0b55 MS |
431 | If REQUESTED_INFERIORS is not NULL, it's a list of GDB ids of the |
432 | inferiors that should be printed. Otherwise, all inferiors are | |
433 | printed. */ | |
434 | ||
435 | static void | |
1d12d88f | 436 | print_inferior (struct ui_out *uiout, const char *requested_inferiors) |
b77209e0 | 437 | { |
8bb318c6 | 438 | int inf_count = 0; |
b77209e0 | 439 | |
8bb318c6 | 440 | /* Compute number of inferiors we will print. */ |
08036331 | 441 | for (inferior *inf : all_inferiors ()) |
8bb318c6 | 442 | { |
c82c0b55 | 443 | if (!number_is_in_list (requested_inferiors, inf->num)) |
8bb318c6 TT |
444 | continue; |
445 | ||
446 | ++inf_count; | |
447 | } | |
448 | ||
449 | if (inf_count == 0) | |
450 | { | |
112e8700 | 451 | uiout->message ("No inferiors.\n"); |
8bb318c6 TT |
452 | return; |
453 | } | |
454 | ||
4a2b031d | 455 | ui_out_emit_table table_emitter (uiout, 4, inf_count, "inferiors"); |
112e8700 SM |
456 | uiout->table_header (1, ui_left, "current", ""); |
457 | uiout->table_header (4, ui_left, "number", "Num"); | |
458 | uiout->table_header (17, ui_left, "target-id", "Description"); | |
459 | uiout->table_header (17, ui_left, "exec", "Executable"); | |
b77209e0 | 460 | |
112e8700 | 461 | uiout->table_body (); |
08036331 | 462 | for (inferior *inf : all_inferiors ()) |
b77209e0 | 463 | { |
c82c0b55 | 464 | if (!number_is_in_list (requested_inferiors, inf->num)) |
b77209e0 PA |
465 | continue; |
466 | ||
2e783024 | 467 | ui_out_emit_tuple tuple_emitter (uiout, NULL); |
b77209e0 | 468 | |
6c95b8df | 469 | if (inf == current_inferior ()) |
112e8700 | 470 | uiout->field_string ("current", "*"); |
b77209e0 | 471 | else |
112e8700 | 472 | uiout->field_skip ("current"); |
b77209e0 | 473 | |
381befee | 474 | uiout->field_signed ("number", inf->num); |
6c95b8df | 475 | |
112e8700 | 476 | uiout->field_string ("target-id", inferior_pid_to_str (inf->pid)); |
6c95b8df | 477 | |
1f0c4988 | 478 | if (inf->pspace->pspace_exec_filename != NULL) |
112e8700 | 479 | uiout->field_string ("exec", inf->pspace->pspace_exec_filename); |
6c95b8df | 480 | else |
112e8700 | 481 | uiout->field_skip ("exec"); |
6c95b8df PA |
482 | |
483 | /* Print extra info that isn't really fit to always present in | |
484 | tabular form. Currently we print the vfork parent/child | |
485 | relationships, if any. */ | |
486 | if (inf->vfork_parent) | |
487 | { | |
112e8700 | 488 | uiout->text (_("\n\tis vfork child of inferior ")); |
381befee | 489 | uiout->field_signed ("vfork-parent", inf->vfork_parent->num); |
6c95b8df PA |
490 | } |
491 | if (inf->vfork_child) | |
492 | { | |
112e8700 | 493 | uiout->text (_("\n\tis vfork parent of inferior ")); |
381befee | 494 | uiout->field_signed ("vfork-child", inf->vfork_child->num); |
6c95b8df | 495 | } |
b77209e0 | 496 | |
112e8700 | 497 | uiout->text ("\n"); |
b77209e0 | 498 | } |
b77209e0 PA |
499 | } |
500 | ||
2277426b | 501 | static void |
e503b191 | 502 | detach_inferior_command (const char *args, int from_tty) |
2277426b | 503 | { |
2277426b | 504 | if (!args || !*args) |
af624141 | 505 | error (_("Requires argument (inferior id(s) to detach)")); |
2277426b | 506 | |
bfd28288 PA |
507 | number_or_range_parser parser (args); |
508 | while (!parser.finished ()) | |
af624141 | 509 | { |
bfd28288 | 510 | int num = parser.get_number (); |
2277426b | 511 | |
00431a78 PA |
512 | inferior *inf = find_inferior_id (num); |
513 | if (inf == NULL) | |
af624141 MS |
514 | { |
515 | warning (_("Inferior ID %d not known."), num); | |
516 | continue; | |
517 | } | |
2277426b | 518 | |
00431a78 | 519 | if (inf->pid == 0) |
e3ae3c43 PP |
520 | { |
521 | warning (_("Inferior ID %d is not running."), num); | |
522 | continue; | |
523 | } | |
2277426b | 524 | |
00431a78 PA |
525 | thread_info *tp = any_thread_of_inferior (inf); |
526 | if (tp == NULL) | |
af624141 MS |
527 | { |
528 | warning (_("Inferior ID %d has no threads."), num); | |
529 | continue; | |
530 | } | |
2277426b | 531 | |
00431a78 | 532 | switch_to_thread (tp); |
2277426b | 533 | |
af624141 MS |
534 | detach_command (NULL, from_tty); |
535 | } | |
2277426b PA |
536 | } |
537 | ||
538 | static void | |
e503b191 | 539 | kill_inferior_command (const char *args, int from_tty) |
2277426b | 540 | { |
2277426b | 541 | if (!args || !*args) |
af624141 | 542 | error (_("Requires argument (inferior id(s) to kill)")); |
2277426b | 543 | |
bfd28288 PA |
544 | number_or_range_parser parser (args); |
545 | while (!parser.finished ()) | |
af624141 | 546 | { |
bfd28288 | 547 | int num = parser.get_number (); |
2277426b | 548 | |
00431a78 PA |
549 | inferior *inf = find_inferior_id (num); |
550 | if (inf == NULL) | |
af624141 MS |
551 | { |
552 | warning (_("Inferior ID %d not known."), num); | |
553 | continue; | |
554 | } | |
2277426b | 555 | |
00431a78 | 556 | if (inf->pid == 0) |
e3ae3c43 PP |
557 | { |
558 | warning (_("Inferior ID %d is not running."), num); | |
559 | continue; | |
560 | } | |
2277426b | 561 | |
00431a78 PA |
562 | thread_info *tp = any_thread_of_inferior (inf); |
563 | if (tp == NULL) | |
af624141 MS |
564 | { |
565 | warning (_("Inferior ID %d has no threads."), num); | |
566 | continue; | |
567 | } | |
2277426b | 568 | |
00431a78 | 569 | switch_to_thread (tp); |
2277426b | 570 | |
af624141 MS |
571 | target_kill (); |
572 | } | |
2277426b PA |
573 | |
574 | bfd_cache_close_all (); | |
575 | } | |
576 | ||
577 | static void | |
e503b191 | 578 | inferior_command (const char *args, int from_tty) |
2277426b | 579 | { |
6c95b8df PA |
580 | struct inferior *inf; |
581 | int num; | |
2277426b PA |
582 | |
583 | num = parse_and_eval_long (args); | |
584 | ||
6c95b8df PA |
585 | inf = find_inferior_id (num); |
586 | if (inf == NULL) | |
2277426b PA |
587 | error (_("Inferior ID %d not known."), num); |
588 | ||
6c95b8df | 589 | if (inf->pid != 0) |
2277426b | 590 | { |
00431a78 | 591 | if (inf != current_inferior ()) |
6c95b8df | 592 | { |
00431a78 PA |
593 | thread_info *tp = any_thread_of_inferior (inf); |
594 | if (tp == NULL) | |
6c95b8df | 595 | error (_("Inferior has no threads.")); |
2277426b | 596 | |
00431a78 | 597 | switch_to_thread (tp); |
6c95b8df PA |
598 | } |
599 | ||
76727919 | 600 | gdb::observers::user_selected_context_changed.notify |
4034d0ff AT |
601 | (USER_SELECTED_INFERIOR |
602 | | USER_SELECTED_THREAD | |
603 | | USER_SELECTED_FRAME); | |
2277426b | 604 | } |
6c95b8df PA |
605 | else |
606 | { | |
6c95b8df | 607 | set_current_inferior (inf); |
00431a78 | 608 | switch_to_no_thread (); |
6c95b8df | 609 | set_current_program_space (inf->pspace); |
2277426b | 610 | |
76727919 TT |
611 | gdb::observers::user_selected_context_changed.notify |
612 | (USER_SELECTED_INFERIOR); | |
2277426b PA |
613 | } |
614 | } | |
615 | ||
b77209e0 PA |
616 | /* Print information about currently known inferiors. */ |
617 | ||
618 | static void | |
1d12d88f | 619 | info_inferiors_command (const char *args, int from_tty) |
b77209e0 | 620 | { |
79a45e25 | 621 | print_inferior (current_uiout, args); |
b77209e0 PA |
622 | } |
623 | ||
6c95b8df PA |
624 | /* remove-inferior ID */ |
625 | ||
70221824 | 626 | static void |
0b39b52e | 627 | remove_inferior_command (const char *args, int from_tty) |
6c95b8df | 628 | { |
af624141 MS |
629 | if (args == NULL || *args == '\0') |
630 | error (_("Requires an argument (inferior id(s) to remove)")); | |
6c95b8df | 631 | |
bfd28288 PA |
632 | number_or_range_parser parser (args); |
633 | while (!parser.finished ()) | |
af624141 | 634 | { |
bfd28288 PA |
635 | int num = parser.get_number (); |
636 | struct inferior *inf = find_inferior_id (num); | |
6c95b8df | 637 | |
af624141 MS |
638 | if (inf == NULL) |
639 | { | |
640 | warning (_("Inferior ID %d not known."), num); | |
641 | continue; | |
642 | } | |
643 | ||
3a3fd0fd | 644 | if (!inf->deletable ()) |
af624141 | 645 | { |
eb2332d7 | 646 | warning (_("Can not remove current inferior %d."), num); |
af624141 MS |
647 | continue; |
648 | } | |
8fa067af | 649 | |
af624141 MS |
650 | if (inf->pid != 0) |
651 | { | |
652 | warning (_("Can not remove active inferior %d."), num); | |
653 | continue; | |
654 | } | |
6c95b8df | 655 | |
7a41607e | 656 | delete_inferior (inf); |
af624141 | 657 | } |
6c95b8df PA |
658 | } |
659 | ||
a79b8f6e VP |
660 | struct inferior * |
661 | add_inferior_with_spaces (void) | |
662 | { | |
663 | struct address_space *aspace; | |
664 | struct program_space *pspace; | |
665 | struct inferior *inf; | |
6ecd4729 | 666 | struct gdbarch_info info; |
a79b8f6e VP |
667 | |
668 | /* If all inferiors share an address space on this system, this | |
669 | doesn't really return a new address space; otherwise, it | |
670 | really does. */ | |
671 | aspace = maybe_new_address_space (); | |
564b1e3f | 672 | pspace = new program_space (aspace); |
a79b8f6e VP |
673 | inf = add_inferior (0); |
674 | inf->pspace = pspace; | |
675 | inf->aspace = pspace->aspace; | |
676 | ||
6ecd4729 PA |
677 | /* Setup the inferior's initial arch, based on information obtained |
678 | from the global "set ..." options. */ | |
679 | gdbarch_info_init (&info); | |
680 | inf->gdbarch = gdbarch_find_by_info (info); | |
681 | /* The "set ..." options reject invalid settings, so we should | |
682 | always have a valid arch by now. */ | |
683 | gdb_assert (inf->gdbarch != NULL); | |
684 | ||
a79b8f6e VP |
685 | return inf; |
686 | } | |
6c95b8df PA |
687 | |
688 | /* add-inferior [-copies N] [-exec FILENAME] */ | |
689 | ||
70221824 | 690 | static void |
0b39b52e | 691 | add_inferior_command (const char *args, int from_tty) |
6c95b8df PA |
692 | { |
693 | int i, copies = 1; | |
773a1edc | 694 | gdb::unique_xmalloc_ptr<char> exec; |
ecf45d2c | 695 | symfile_add_flags add_flags = 0; |
6c95b8df | 696 | |
ecf45d2c SL |
697 | if (from_tty) |
698 | add_flags |= SYMFILE_VERBOSE; | |
699 | ||
6c95b8df PA |
700 | if (args) |
701 | { | |
773a1edc | 702 | gdb_argv built_argv (args); |
6c95b8df | 703 | |
773a1edc | 704 | for (char **argv = built_argv.get (); *argv != NULL; argv++) |
6c95b8df PA |
705 | { |
706 | if (**argv == '-') | |
707 | { | |
708 | if (strcmp (*argv, "-copies") == 0) | |
709 | { | |
710 | ++argv; | |
711 | if (!*argv) | |
712 | error (_("No argument to -copies")); | |
713 | copies = parse_and_eval_long (*argv); | |
714 | } | |
715 | else if (strcmp (*argv, "-exec") == 0) | |
716 | { | |
717 | ++argv; | |
718 | if (!*argv) | |
719 | error (_("No argument to -exec")); | |
773a1edc | 720 | exec.reset (tilde_expand (*argv)); |
6c95b8df PA |
721 | } |
722 | } | |
723 | else | |
724 | error (_("Invalid argument")); | |
725 | } | |
726 | } | |
727 | ||
5ed8105e | 728 | scoped_restore_current_pspace_and_thread restore_pspace_thread; |
6c95b8df PA |
729 | |
730 | for (i = 0; i < copies; ++i) | |
731 | { | |
a79b8f6e | 732 | struct inferior *inf = add_inferior_with_spaces (); |
6c95b8df PA |
733 | |
734 | printf_filtered (_("Added inferior %d\n"), inf->num); | |
735 | ||
736 | if (exec != NULL) | |
737 | { | |
738 | /* Switch over temporarily, while reading executable and | |
1777feb0 | 739 | symbols.q. */ |
a79b8f6e | 740 | set_current_program_space (inf->pspace); |
6c95b8df | 741 | set_current_inferior (inf); |
00431a78 | 742 | switch_to_no_thread (); |
6c95b8df | 743 | |
773a1edc TT |
744 | exec_file_attach (exec.get (), from_tty); |
745 | symbol_file_add_main (exec.get (), add_flags); | |
6c95b8df PA |
746 | } |
747 | } | |
6c95b8df PA |
748 | } |
749 | ||
750 | /* clone-inferior [-copies N] [ID] */ | |
751 | ||
70221824 | 752 | static void |
0b39b52e | 753 | clone_inferior_command (const char *args, int from_tty) |
6c95b8df PA |
754 | { |
755 | int i, copies = 1; | |
6c95b8df | 756 | struct inferior *orginf = NULL; |
6c95b8df PA |
757 | |
758 | if (args) | |
759 | { | |
773a1edc | 760 | gdb_argv built_argv (args); |
6c95b8df | 761 | |
773a1edc | 762 | char **argv = built_argv.get (); |
6c95b8df PA |
763 | for (; *argv != NULL; argv++) |
764 | { | |
765 | if (**argv == '-') | |
766 | { | |
767 | if (strcmp (*argv, "-copies") == 0) | |
768 | { | |
769 | ++argv; | |
770 | if (!*argv) | |
771 | error (_("No argument to -copies")); | |
772 | copies = parse_and_eval_long (*argv); | |
773 | ||
774 | if (copies < 0) | |
775 | error (_("Invalid copies number")); | |
776 | } | |
777 | } | |
778 | else | |
779 | { | |
780 | if (orginf == NULL) | |
781 | { | |
782 | int num; | |
783 | ||
784 | /* The first non-option (-) argument specified the | |
785 | program space ID. */ | |
786 | num = parse_and_eval_long (*argv); | |
787 | orginf = find_inferior_id (num); | |
788 | ||
789 | if (orginf == NULL) | |
790 | error (_("Inferior ID %d not known."), num); | |
791 | continue; | |
792 | } | |
793 | else | |
794 | error (_("Invalid argument")); | |
795 | } | |
796 | } | |
797 | } | |
798 | ||
799 | /* If no inferior id was specified, then the user wants to clone the | |
800 | current inferior. */ | |
801 | if (orginf == NULL) | |
802 | orginf = current_inferior (); | |
803 | ||
5ed8105e | 804 | scoped_restore_current_pspace_and_thread restore_pspace_thread; |
6c95b8df PA |
805 | |
806 | for (i = 0; i < copies; ++i) | |
807 | { | |
808 | struct address_space *aspace; | |
809 | struct program_space *pspace; | |
810 | struct inferior *inf; | |
811 | ||
812 | /* If all inferiors share an address space on this system, this | |
813 | doesn't really return a new address space; otherwise, it | |
814 | really does. */ | |
815 | aspace = maybe_new_address_space (); | |
564b1e3f | 816 | pspace = new program_space (aspace); |
6c95b8df PA |
817 | inf = add_inferior (0); |
818 | inf->pspace = pspace; | |
819 | inf->aspace = pspace->aspace; | |
6ecd4729 PA |
820 | inf->gdbarch = orginf->gdbarch; |
821 | ||
822 | /* If the original inferior had a user specified target | |
823 | description, make the clone use it too. */ | |
824 | if (target_desc_info_from_user_p (inf->tdesc_info)) | |
825 | copy_inferior_target_desc_info (inf, orginf); | |
6c95b8df PA |
826 | |
827 | printf_filtered (_("Added inferior %d.\n"), inf->num); | |
828 | ||
829 | set_current_inferior (inf); | |
00431a78 | 830 | switch_to_no_thread (); |
6c95b8df PA |
831 | clone_program_space (pspace, orginf->pspace); |
832 | } | |
6c95b8df PA |
833 | } |
834 | ||
b77209e0 PA |
835 | /* Print notices when new inferiors are created and die. */ |
836 | static void | |
837 | show_print_inferior_events (struct ui_file *file, int from_tty, | |
838 | struct cmd_list_element *c, const char *value) | |
839 | { | |
840 | fprintf_filtered (file, _("Printing of inferior events is %s.\n"), value); | |
841 | } | |
842 | ||
e3940304 PA |
843 | /* Return a new value for the selected inferior's id. */ |
844 | ||
845 | static struct value * | |
846 | inferior_id_make_value (struct gdbarch *gdbarch, struct internalvar *var, | |
847 | void *ignore) | |
848 | { | |
849 | struct inferior *inf = current_inferior (); | |
850 | ||
851 | return value_from_longest (builtin_type (gdbarch)->builtin_int, inf->num); | |
852 | } | |
853 | ||
854 | /* Implementation of `$_inferior' variable. */ | |
855 | ||
856 | static const struct internalvar_funcs inferior_funcs = | |
857 | { | |
858 | inferior_id_make_value, | |
859 | NULL, | |
860 | NULL | |
861 | }; | |
862 | ||
6c95b8df PA |
863 | \f |
864 | ||
6c95b8df PA |
865 | void |
866 | initialize_inferiors (void) | |
867 | { | |
06da564e EZ |
868 | struct cmd_list_element *c = NULL; |
869 | ||
6c95b8df PA |
870 | /* There's always one inferior. Note that this function isn't an |
871 | automatic _initialize_foo function, since other _initialize_foo | |
872 | routines may need to install their per-inferior data keys. We | |
873 | can only allocate an inferior when all those modules have done | |
874 | that. Do this after initialize_progspace, due to the | |
875 | current_program_space reference. */ | |
f67c0c91 | 876 | current_inferior_ = add_inferior_silent (0); |
3a3fd0fd | 877 | current_inferior_->incref (); |
6c95b8df PA |
878 | current_inferior_->pspace = current_program_space; |
879 | current_inferior_->aspace = current_program_space->aspace; | |
6ecd4729 PA |
880 | /* The architecture will be initialized shortly, by |
881 | initialize_current_architecture. */ | |
6c95b8df | 882 | |
a3c25011 TT |
883 | add_info ("inferiors", info_inferiors_command, |
884 | _("Print a list of inferiors being managed.\n\ | |
885 | Usage: info inferiors [ID]...\n\ | |
886 | If IDs are specified, the list is limited to just those inferiors.\n\ | |
887 | By default all inferiors are displayed.")); | |
b77209e0 | 888 | |
06da564e | 889 | c = add_com ("add-inferior", no_class, add_inferior_command, _("\ |
6c95b8df | 890 | Add a new inferior.\n\ |
a3c25011 | 891 | Usage: add-inferior [-copies N] [-exec FILENAME]\n\ |
af624141 | 892 | N is the optional number of inferiors to add, default is 1.\n\ |
6c95b8df PA |
893 | FILENAME is the file name of the executable to use\n\ |
894 | as main program.")); | |
06da564e | 895 | set_cmd_completer (c, filename_completer); |
6c95b8df | 896 | |
af624141 MS |
897 | add_com ("remove-inferiors", no_class, remove_inferior_command, _("\ |
898 | Remove inferior ID (or list of IDs).\n\ | |
899 | Usage: remove-inferiors ID...")); | |
6c95b8df PA |
900 | |
901 | add_com ("clone-inferior", no_class, clone_inferior_command, _("\ | |
902 | Clone inferior ID.\n\ | |
a3c25011 | 903 | Usage: clone-inferior [-copies N] [ID]\n\ |
6c95b8df PA |
904 | Add N copies of inferior ID. The new inferior has the same\n\ |
905 | executable loaded as the copied inferior. If -copies is not specified,\n\ | |
906 | adds 1 copy. If ID is not specified, it is the current inferior\n\ | |
907 | that is cloned.")); | |
2277426b | 908 | |
af624141 | 909 | add_cmd ("inferiors", class_run, detach_inferior_command, _("\ |
a3c25011 TT |
910 | Detach from inferior ID (or list of IDS).\n\ |
911 | Usage; detach inferiors ID..."), | |
2277426b PA |
912 | &detachlist); |
913 | ||
af624141 | 914 | add_cmd ("inferiors", class_run, kill_inferior_command, _("\ |
a3c25011 TT |
915 | Kill inferior ID (or list of IDs).\n\ |
916 | Usage: kill inferiors ID..."), | |
2277426b PA |
917 | &killlist); |
918 | ||
919 | add_cmd ("inferior", class_run, inferior_command, _("\ | |
920 | Use this command to switch between inferiors.\n\ | |
a3c25011 | 921 | Usage: inferior ID\n\ |
2277426b PA |
922 | The new inferior ID must be currently known."), |
923 | &cmdlist); | |
6c95b8df PA |
924 | |
925 | add_setshow_boolean_cmd ("inferior-events", no_class, | |
926 | &print_inferior_events, _("\ | |
e3abbe7e PW |
927 | Set printing of inferior events (such as inferior start and exit)."), _("\ |
928 | Show printing of inferior events (such as inferior start and exit)."), NULL, | |
6c95b8df PA |
929 | NULL, |
930 | show_print_inferior_events, | |
931 | &setprintlist, &showprintlist); | |
932 | ||
e3940304 | 933 | create_internalvar_type_lazy ("_inferior", &inferior_funcs, NULL); |
b77209e0 | 934 | } |