]>
Commit | Line | Data |
---|---|---|
b77209e0 PA |
1 | /* Multi-process control for GDB, the GNU debugger. |
2 | ||
b811d2c2 | 3 | Copyright (C) 2008-2020 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. */ | |
873657b9 | 250 | delete_exited_threads (); |
08036331 PA |
251 | if (!any_thread_p ()) |
252 | init_thread_list (); | |
253 | ||
6c95b8df | 254 | inf->pid = pid; |
2ddf4301 SM |
255 | inf->has_exit_code = 0; |
256 | inf->exit_code = 0; | |
6c95b8df | 257 | |
76727919 | 258 | gdb::observers::inferior_appeared.notify (inf); |
6c95b8df PA |
259 | } |
260 | ||
82f73884 PA |
261 | void |
262 | discard_all_inferiors (void) | |
263 | { | |
08036331 PA |
264 | for (inferior *inf : all_non_exited_inferiors ()) |
265 | exit_inferior_silent (inf); | |
82f73884 PA |
266 | } |
267 | ||
6c95b8df | 268 | struct inferior * |
b77209e0 PA |
269 | find_inferior_id (int num) |
270 | { | |
08036331 | 271 | for (inferior *inf : all_inferiors ()) |
b77209e0 PA |
272 | if (inf->num == num) |
273 | return inf; | |
274 | ||
275 | return NULL; | |
276 | } | |
277 | ||
278 | struct inferior * | |
279 | find_inferior_pid (int pid) | |
280 | { | |
6c95b8df PA |
281 | /* Looking for inferior pid == 0 is always wrong, and indicative of |
282 | a bug somewhere else. There may be more than one with pid == 0, | |
283 | for instance. */ | |
284 | gdb_assert (pid != 0); | |
285 | ||
08036331 | 286 | for (inferior *inf : all_inferiors ()) |
b77209e0 PA |
287 | if (inf->pid == pid) |
288 | return inf; | |
289 | ||
290 | return NULL; | |
291 | } | |
292 | ||
c9657e70 SM |
293 | /* See inferior.h */ |
294 | ||
295 | struct inferior * | |
296 | find_inferior_ptid (ptid_t ptid) | |
297 | { | |
e99b03dc | 298 | return find_inferior_pid (ptid.pid ()); |
c9657e70 SM |
299 | } |
300 | ||
32990ada | 301 | /* See inferior.h. */ |
6c95b8df PA |
302 | |
303 | struct inferior * | |
304 | find_inferior_for_program_space (struct program_space *pspace) | |
305 | { | |
08036331 | 306 | struct inferior *cur_inf = current_inferior (); |
32990ada | 307 | |
08036331 PA |
308 | if (cur_inf->pspace == pspace) |
309 | return cur_inf; | |
6c95b8df | 310 | |
08036331 PA |
311 | for (inferior *inf : all_inferiors ()) |
312 | if (inf->pspace == pspace) | |
313 | return inf; | |
6c95b8df PA |
314 | |
315 | return NULL; | |
316 | } | |
317 | ||
b77209e0 PA |
318 | struct inferior * |
319 | iterate_over_inferiors (int (*callback) (struct inferior *, void *), | |
320 | void *data) | |
321 | { | |
08036331 PA |
322 | for (inferior *inf : all_inferiors_safe ()) |
323 | if ((*callback) (inf, data)) | |
324 | return inf; | |
b77209e0 PA |
325 | |
326 | return NULL; | |
327 | } | |
328 | ||
b77209e0 PA |
329 | int |
330 | have_inferiors (void) | |
331 | { | |
08036331 PA |
332 | for (inferior *inf ATTRIBUTE_UNUSED : all_non_exited_inferiors ()) |
333 | return 1; | |
6c95b8df PA |
334 | |
335 | return 0; | |
b77209e0 PA |
336 | } |
337 | ||
8020350c DB |
338 | /* Return the number of live inferiors. We account for the case |
339 | where an inferior might have a non-zero pid but no threads, as | |
340 | in the middle of a 'mourn' operation. */ | |
341 | ||
c35b1492 | 342 | int |
8020350c | 343 | number_of_live_inferiors (void) |
c35b1492 | 344 | { |
8020350c | 345 | int num_inf = 0; |
6c95b8df | 346 | |
08036331 PA |
347 | for (inferior *inf : all_non_exited_inferiors ()) |
348 | if (target_has_execution_1 (ptid_t (inf->pid))) | |
349 | for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ()) | |
350 | { | |
351 | /* Found a live thread in this inferior, go to the next | |
352 | inferior. */ | |
353 | ++num_inf; | |
354 | break; | |
355 | } | |
cd2effb2 | 356 | |
8020350c DB |
357 | return num_inf; |
358 | } | |
359 | ||
360 | /* Return true if there is at least one live inferior. */ | |
361 | ||
362 | int | |
363 | have_live_inferiors (void) | |
364 | { | |
365 | return number_of_live_inferiors () > 0; | |
6c95b8df PA |
366 | } |
367 | ||
bed8455c DE |
368 | /* Prune away any unused inferiors, and then prune away no longer used |
369 | program spaces. */ | |
6c95b8df PA |
370 | |
371 | void | |
372 | prune_inferiors (void) | |
373 | { | |
908641f5 | 374 | inferior *ss; |
6c95b8df PA |
375 | |
376 | ss = inferior_list; | |
6c95b8df PA |
377 | while (ss) |
378 | { | |
3a3fd0fd | 379 | if (!ss->deletable () |
6c95b8df PA |
380 | || !ss->removable |
381 | || ss->pid != 0) | |
382 | { | |
908641f5 | 383 | ss = ss->next; |
6c95b8df PA |
384 | continue; |
385 | } | |
386 | ||
908641f5 | 387 | inferior *ss_next = ss->next; |
7a41607e | 388 | delete_inferior (ss); |
908641f5 | 389 | ss = ss_next; |
6c95b8df | 390 | } |
6c95b8df PA |
391 | } |
392 | ||
393 | /* Simply returns the count of inferiors. */ | |
394 | ||
395 | int | |
396 | number_of_inferiors (void) | |
397 | { | |
08036331 PA |
398 | auto rng = all_inferiors (); |
399 | return std::distance (rng.begin (), rng.end ()); | |
c35b1492 PA |
400 | } |
401 | ||
db2b9fdd PA |
402 | /* Converts an inferior process id to a string. Like |
403 | target_pid_to_str, but special cases the null process. */ | |
404 | ||
a068643d | 405 | static std::string |
db2b9fdd PA |
406 | inferior_pid_to_str (int pid) |
407 | { | |
408 | if (pid != 0) | |
f2907e49 | 409 | return target_pid_to_str (ptid_t (pid)); |
db2b9fdd PA |
410 | else |
411 | return _("<null>"); | |
412 | } | |
413 | ||
4034d0ff AT |
414 | /* See inferior.h. */ |
415 | ||
416 | void | |
417 | print_selected_inferior (struct ui_out *uiout) | |
418 | { | |
4034d0ff | 419 | struct inferior *inf = current_inferior (); |
53488a6e | 420 | const char *filename = inf->pspace->pspace_exec_filename; |
112e8700 | 421 | |
53488a6e TS |
422 | if (filename == NULL) |
423 | filename = _("<noexec>"); | |
112e8700 SM |
424 | |
425 | uiout->message (_("[Switching to inferior %d [%s] (%s)]\n"), | |
a068643d | 426 | inf->num, inferior_pid_to_str (inf->pid).c_str (), filename); |
4034d0ff AT |
427 | } |
428 | ||
b77209e0 PA |
429 | /* Prints the list of inferiors and their details on UIOUT. This is a |
430 | version of 'info_inferior_command' suitable for use from MI. | |
431 | ||
c82c0b55 MS |
432 | If REQUESTED_INFERIORS is not NULL, it's a list of GDB ids of the |
433 | inferiors that should be printed. Otherwise, all inferiors are | |
434 | printed. */ | |
435 | ||
436 | static void | |
1d12d88f | 437 | print_inferior (struct ui_out *uiout, const char *requested_inferiors) |
b77209e0 | 438 | { |
8bb318c6 | 439 | int inf_count = 0; |
b77209e0 | 440 | |
8bb318c6 | 441 | /* Compute number of inferiors we will print. */ |
08036331 | 442 | for (inferior *inf : all_inferiors ()) |
8bb318c6 | 443 | { |
c82c0b55 | 444 | if (!number_is_in_list (requested_inferiors, inf->num)) |
8bb318c6 TT |
445 | continue; |
446 | ||
447 | ++inf_count; | |
448 | } | |
449 | ||
450 | if (inf_count == 0) | |
451 | { | |
112e8700 | 452 | uiout->message ("No inferiors.\n"); |
8bb318c6 TT |
453 | return; |
454 | } | |
455 | ||
4a2b031d | 456 | ui_out_emit_table table_emitter (uiout, 4, inf_count, "inferiors"); |
112e8700 SM |
457 | uiout->table_header (1, ui_left, "current", ""); |
458 | uiout->table_header (4, ui_left, "number", "Num"); | |
459 | uiout->table_header (17, ui_left, "target-id", "Description"); | |
460 | uiout->table_header (17, ui_left, "exec", "Executable"); | |
b77209e0 | 461 | |
112e8700 | 462 | uiout->table_body (); |
08036331 | 463 | for (inferior *inf : all_inferiors ()) |
b77209e0 | 464 | { |
c82c0b55 | 465 | if (!number_is_in_list (requested_inferiors, inf->num)) |
b77209e0 PA |
466 | continue; |
467 | ||
2e783024 | 468 | ui_out_emit_tuple tuple_emitter (uiout, NULL); |
b77209e0 | 469 | |
6c95b8df | 470 | if (inf == current_inferior ()) |
112e8700 | 471 | uiout->field_string ("current", "*"); |
b77209e0 | 472 | else |
112e8700 | 473 | uiout->field_skip ("current"); |
b77209e0 | 474 | |
381befee | 475 | uiout->field_signed ("number", inf->num); |
6c95b8df | 476 | |
112e8700 | 477 | uiout->field_string ("target-id", inferior_pid_to_str (inf->pid)); |
6c95b8df | 478 | |
1f0c4988 | 479 | if (inf->pspace->pspace_exec_filename != NULL) |
112e8700 | 480 | uiout->field_string ("exec", inf->pspace->pspace_exec_filename); |
6c95b8df | 481 | else |
112e8700 | 482 | uiout->field_skip ("exec"); |
6c95b8df PA |
483 | |
484 | /* Print extra info that isn't really fit to always present in | |
485 | tabular form. Currently we print the vfork parent/child | |
486 | relationships, if any. */ | |
487 | if (inf->vfork_parent) | |
488 | { | |
112e8700 | 489 | uiout->text (_("\n\tis vfork child of inferior ")); |
381befee | 490 | uiout->field_signed ("vfork-parent", inf->vfork_parent->num); |
6c95b8df PA |
491 | } |
492 | if (inf->vfork_child) | |
493 | { | |
112e8700 | 494 | uiout->text (_("\n\tis vfork parent of inferior ")); |
381befee | 495 | uiout->field_signed ("vfork-child", inf->vfork_child->num); |
6c95b8df | 496 | } |
b77209e0 | 497 | |
112e8700 | 498 | uiout->text ("\n"); |
b77209e0 | 499 | } |
b77209e0 PA |
500 | } |
501 | ||
2277426b | 502 | static void |
e503b191 | 503 | detach_inferior_command (const char *args, int from_tty) |
2277426b | 504 | { |
2277426b | 505 | if (!args || !*args) |
af624141 | 506 | error (_("Requires argument (inferior id(s) to detach)")); |
2277426b | 507 | |
bfd28288 PA |
508 | number_or_range_parser parser (args); |
509 | while (!parser.finished ()) | |
af624141 | 510 | { |
bfd28288 | 511 | int num = parser.get_number (); |
2277426b | 512 | |
00431a78 PA |
513 | inferior *inf = find_inferior_id (num); |
514 | if (inf == NULL) | |
af624141 MS |
515 | { |
516 | warning (_("Inferior ID %d not known."), num); | |
517 | continue; | |
518 | } | |
2277426b | 519 | |
00431a78 | 520 | if (inf->pid == 0) |
e3ae3c43 PP |
521 | { |
522 | warning (_("Inferior ID %d is not running."), num); | |
523 | continue; | |
524 | } | |
2277426b | 525 | |
00431a78 PA |
526 | thread_info *tp = any_thread_of_inferior (inf); |
527 | if (tp == NULL) | |
af624141 MS |
528 | { |
529 | warning (_("Inferior ID %d has no threads."), num); | |
530 | continue; | |
531 | } | |
2277426b | 532 | |
00431a78 | 533 | switch_to_thread (tp); |
2277426b | 534 | |
af624141 MS |
535 | detach_command (NULL, from_tty); |
536 | } | |
2277426b PA |
537 | } |
538 | ||
539 | static void | |
e503b191 | 540 | kill_inferior_command (const char *args, int from_tty) |
2277426b | 541 | { |
2277426b | 542 | if (!args || !*args) |
af624141 | 543 | error (_("Requires argument (inferior id(s) to kill)")); |
2277426b | 544 | |
bfd28288 PA |
545 | number_or_range_parser parser (args); |
546 | while (!parser.finished ()) | |
af624141 | 547 | { |
bfd28288 | 548 | int num = parser.get_number (); |
2277426b | 549 | |
00431a78 PA |
550 | inferior *inf = find_inferior_id (num); |
551 | if (inf == NULL) | |
af624141 MS |
552 | { |
553 | warning (_("Inferior ID %d not known."), num); | |
554 | continue; | |
555 | } | |
2277426b | 556 | |
00431a78 | 557 | if (inf->pid == 0) |
e3ae3c43 PP |
558 | { |
559 | warning (_("Inferior ID %d is not running."), num); | |
560 | continue; | |
561 | } | |
2277426b | 562 | |
00431a78 PA |
563 | thread_info *tp = any_thread_of_inferior (inf); |
564 | if (tp == NULL) | |
af624141 MS |
565 | { |
566 | warning (_("Inferior ID %d has no threads."), num); | |
567 | continue; | |
568 | } | |
2277426b | 569 | |
00431a78 | 570 | switch_to_thread (tp); |
2277426b | 571 | |
af624141 MS |
572 | target_kill (); |
573 | } | |
2277426b PA |
574 | |
575 | bfd_cache_close_all (); | |
576 | } | |
577 | ||
578 | static void | |
e503b191 | 579 | inferior_command (const char *args, int from_tty) |
2277426b | 580 | { |
6c95b8df PA |
581 | struct inferior *inf; |
582 | int num; | |
2277426b PA |
583 | |
584 | num = parse_and_eval_long (args); | |
585 | ||
6c95b8df PA |
586 | inf = find_inferior_id (num); |
587 | if (inf == NULL) | |
2277426b PA |
588 | error (_("Inferior ID %d not known."), num); |
589 | ||
6c95b8df | 590 | if (inf->pid != 0) |
2277426b | 591 | { |
00431a78 | 592 | if (inf != current_inferior ()) |
6c95b8df | 593 | { |
00431a78 PA |
594 | thread_info *tp = any_thread_of_inferior (inf); |
595 | if (tp == NULL) | |
6c95b8df | 596 | error (_("Inferior has no threads.")); |
2277426b | 597 | |
00431a78 | 598 | switch_to_thread (tp); |
6c95b8df PA |
599 | } |
600 | ||
76727919 | 601 | gdb::observers::user_selected_context_changed.notify |
4034d0ff AT |
602 | (USER_SELECTED_INFERIOR |
603 | | USER_SELECTED_THREAD | |
604 | | USER_SELECTED_FRAME); | |
2277426b | 605 | } |
6c95b8df PA |
606 | else |
607 | { | |
6c95b8df | 608 | set_current_inferior (inf); |
00431a78 | 609 | switch_to_no_thread (); |
6c95b8df | 610 | set_current_program_space (inf->pspace); |
2277426b | 611 | |
76727919 TT |
612 | gdb::observers::user_selected_context_changed.notify |
613 | (USER_SELECTED_INFERIOR); | |
2277426b PA |
614 | } |
615 | } | |
616 | ||
b77209e0 PA |
617 | /* Print information about currently known inferiors. */ |
618 | ||
619 | static void | |
1d12d88f | 620 | info_inferiors_command (const char *args, int from_tty) |
b77209e0 | 621 | { |
79a45e25 | 622 | print_inferior (current_uiout, args); |
b77209e0 PA |
623 | } |
624 | ||
6c95b8df PA |
625 | /* remove-inferior ID */ |
626 | ||
70221824 | 627 | static void |
0b39b52e | 628 | remove_inferior_command (const char *args, int from_tty) |
6c95b8df | 629 | { |
af624141 MS |
630 | if (args == NULL || *args == '\0') |
631 | error (_("Requires an argument (inferior id(s) to remove)")); | |
6c95b8df | 632 | |
bfd28288 PA |
633 | number_or_range_parser parser (args); |
634 | while (!parser.finished ()) | |
af624141 | 635 | { |
bfd28288 PA |
636 | int num = parser.get_number (); |
637 | struct inferior *inf = find_inferior_id (num); | |
6c95b8df | 638 | |
af624141 MS |
639 | if (inf == NULL) |
640 | { | |
641 | warning (_("Inferior ID %d not known."), num); | |
642 | continue; | |
643 | } | |
644 | ||
3a3fd0fd | 645 | if (!inf->deletable ()) |
af624141 | 646 | { |
eb2332d7 | 647 | warning (_("Can not remove current inferior %d."), num); |
af624141 MS |
648 | continue; |
649 | } | |
8fa067af | 650 | |
af624141 MS |
651 | if (inf->pid != 0) |
652 | { | |
653 | warning (_("Can not remove active inferior %d."), num); | |
654 | continue; | |
655 | } | |
6c95b8df | 656 | |
7a41607e | 657 | delete_inferior (inf); |
af624141 | 658 | } |
6c95b8df PA |
659 | } |
660 | ||
a79b8f6e VP |
661 | struct inferior * |
662 | add_inferior_with_spaces (void) | |
663 | { | |
664 | struct address_space *aspace; | |
665 | struct program_space *pspace; | |
666 | struct inferior *inf; | |
6ecd4729 | 667 | struct gdbarch_info info; |
a79b8f6e VP |
668 | |
669 | /* If all inferiors share an address space on this system, this | |
670 | doesn't really return a new address space; otherwise, it | |
671 | really does. */ | |
672 | aspace = maybe_new_address_space (); | |
564b1e3f | 673 | pspace = new program_space (aspace); |
a79b8f6e VP |
674 | inf = add_inferior (0); |
675 | inf->pspace = pspace; | |
676 | inf->aspace = pspace->aspace; | |
677 | ||
6ecd4729 PA |
678 | /* Setup the inferior's initial arch, based on information obtained |
679 | from the global "set ..." options. */ | |
680 | gdbarch_info_init (&info); | |
681 | inf->gdbarch = gdbarch_find_by_info (info); | |
682 | /* The "set ..." options reject invalid settings, so we should | |
683 | always have a valid arch by now. */ | |
684 | gdb_assert (inf->gdbarch != NULL); | |
685 | ||
a79b8f6e VP |
686 | return inf; |
687 | } | |
6c95b8df PA |
688 | |
689 | /* add-inferior [-copies N] [-exec FILENAME] */ | |
690 | ||
70221824 | 691 | static void |
0b39b52e | 692 | add_inferior_command (const char *args, int from_tty) |
6c95b8df PA |
693 | { |
694 | int i, copies = 1; | |
773a1edc | 695 | gdb::unique_xmalloc_ptr<char> exec; |
ecf45d2c | 696 | symfile_add_flags add_flags = 0; |
6c95b8df | 697 | |
ecf45d2c SL |
698 | if (from_tty) |
699 | add_flags |= SYMFILE_VERBOSE; | |
700 | ||
6c95b8df PA |
701 | if (args) |
702 | { | |
773a1edc | 703 | gdb_argv built_argv (args); |
6c95b8df | 704 | |
773a1edc | 705 | for (char **argv = built_argv.get (); *argv != NULL; argv++) |
6c95b8df PA |
706 | { |
707 | if (**argv == '-') | |
708 | { | |
709 | if (strcmp (*argv, "-copies") == 0) | |
710 | { | |
711 | ++argv; | |
712 | if (!*argv) | |
713 | error (_("No argument to -copies")); | |
714 | copies = parse_and_eval_long (*argv); | |
715 | } | |
716 | else if (strcmp (*argv, "-exec") == 0) | |
717 | { | |
718 | ++argv; | |
719 | if (!*argv) | |
720 | error (_("No argument to -exec")); | |
773a1edc | 721 | exec.reset (tilde_expand (*argv)); |
6c95b8df PA |
722 | } |
723 | } | |
724 | else | |
725 | error (_("Invalid argument")); | |
726 | } | |
727 | } | |
728 | ||
5ed8105e | 729 | scoped_restore_current_pspace_and_thread restore_pspace_thread; |
6c95b8df PA |
730 | |
731 | for (i = 0; i < copies; ++i) | |
732 | { | |
a79b8f6e | 733 | struct inferior *inf = add_inferior_with_spaces (); |
6c95b8df PA |
734 | |
735 | printf_filtered (_("Added inferior %d\n"), inf->num); | |
736 | ||
737 | if (exec != NULL) | |
738 | { | |
739 | /* Switch over temporarily, while reading executable and | |
1777feb0 | 740 | symbols.q. */ |
a79b8f6e | 741 | set_current_program_space (inf->pspace); |
6c95b8df | 742 | set_current_inferior (inf); |
00431a78 | 743 | switch_to_no_thread (); |
6c95b8df | 744 | |
773a1edc TT |
745 | exec_file_attach (exec.get (), from_tty); |
746 | symbol_file_add_main (exec.get (), add_flags); | |
6c95b8df PA |
747 | } |
748 | } | |
6c95b8df PA |
749 | } |
750 | ||
751 | /* clone-inferior [-copies N] [ID] */ | |
752 | ||
70221824 | 753 | static void |
0b39b52e | 754 | clone_inferior_command (const char *args, int from_tty) |
6c95b8df PA |
755 | { |
756 | int i, copies = 1; | |
6c95b8df | 757 | struct inferior *orginf = NULL; |
6c95b8df PA |
758 | |
759 | if (args) | |
760 | { | |
773a1edc | 761 | gdb_argv built_argv (args); |
6c95b8df | 762 | |
773a1edc | 763 | char **argv = built_argv.get (); |
6c95b8df PA |
764 | for (; *argv != NULL; argv++) |
765 | { | |
766 | if (**argv == '-') | |
767 | { | |
768 | if (strcmp (*argv, "-copies") == 0) | |
769 | { | |
770 | ++argv; | |
771 | if (!*argv) | |
772 | error (_("No argument to -copies")); | |
773 | copies = parse_and_eval_long (*argv); | |
774 | ||
775 | if (copies < 0) | |
776 | error (_("Invalid copies number")); | |
777 | } | |
778 | } | |
779 | else | |
780 | { | |
781 | if (orginf == NULL) | |
782 | { | |
783 | int num; | |
784 | ||
785 | /* The first non-option (-) argument specified the | |
786 | program space ID. */ | |
787 | num = parse_and_eval_long (*argv); | |
788 | orginf = find_inferior_id (num); | |
789 | ||
790 | if (orginf == NULL) | |
791 | error (_("Inferior ID %d not known."), num); | |
792 | continue; | |
793 | } | |
794 | else | |
795 | error (_("Invalid argument")); | |
796 | } | |
797 | } | |
798 | } | |
799 | ||
800 | /* If no inferior id was specified, then the user wants to clone the | |
801 | current inferior. */ | |
802 | if (orginf == NULL) | |
803 | orginf = current_inferior (); | |
804 | ||
5ed8105e | 805 | scoped_restore_current_pspace_and_thread restore_pspace_thread; |
6c95b8df PA |
806 | |
807 | for (i = 0; i < copies; ++i) | |
808 | { | |
809 | struct address_space *aspace; | |
810 | struct program_space *pspace; | |
811 | struct inferior *inf; | |
812 | ||
813 | /* If all inferiors share an address space on this system, this | |
814 | doesn't really return a new address space; otherwise, it | |
815 | really does. */ | |
816 | aspace = maybe_new_address_space (); | |
564b1e3f | 817 | pspace = new program_space (aspace); |
6c95b8df PA |
818 | inf = add_inferior (0); |
819 | inf->pspace = pspace; | |
820 | inf->aspace = pspace->aspace; | |
6ecd4729 PA |
821 | inf->gdbarch = orginf->gdbarch; |
822 | ||
823 | /* If the original inferior had a user specified target | |
824 | description, make the clone use it too. */ | |
825 | if (target_desc_info_from_user_p (inf->tdesc_info)) | |
826 | copy_inferior_target_desc_info (inf, orginf); | |
6c95b8df PA |
827 | |
828 | printf_filtered (_("Added inferior %d.\n"), inf->num); | |
829 | ||
830 | set_current_inferior (inf); | |
00431a78 | 831 | switch_to_no_thread (); |
6c95b8df PA |
832 | clone_program_space (pspace, orginf->pspace); |
833 | } | |
6c95b8df PA |
834 | } |
835 | ||
b77209e0 PA |
836 | /* Print notices when new inferiors are created and die. */ |
837 | static void | |
838 | show_print_inferior_events (struct ui_file *file, int from_tty, | |
839 | struct cmd_list_element *c, const char *value) | |
840 | { | |
841 | fprintf_filtered (file, _("Printing of inferior events is %s.\n"), value); | |
842 | } | |
843 | ||
e3940304 PA |
844 | /* Return a new value for the selected inferior's id. */ |
845 | ||
846 | static struct value * | |
847 | inferior_id_make_value (struct gdbarch *gdbarch, struct internalvar *var, | |
848 | void *ignore) | |
849 | { | |
850 | struct inferior *inf = current_inferior (); | |
851 | ||
852 | return value_from_longest (builtin_type (gdbarch)->builtin_int, inf->num); | |
853 | } | |
854 | ||
855 | /* Implementation of `$_inferior' variable. */ | |
856 | ||
857 | static const struct internalvar_funcs inferior_funcs = | |
858 | { | |
859 | inferior_id_make_value, | |
860 | NULL, | |
861 | NULL | |
862 | }; | |
863 | ||
6c95b8df PA |
864 | \f |
865 | ||
6c95b8df PA |
866 | void |
867 | initialize_inferiors (void) | |
868 | { | |
06da564e EZ |
869 | struct cmd_list_element *c = NULL; |
870 | ||
6c95b8df PA |
871 | /* There's always one inferior. Note that this function isn't an |
872 | automatic _initialize_foo function, since other _initialize_foo | |
873 | routines may need to install their per-inferior data keys. We | |
874 | can only allocate an inferior when all those modules have done | |
875 | that. Do this after initialize_progspace, due to the | |
876 | current_program_space reference. */ | |
f67c0c91 | 877 | current_inferior_ = add_inferior_silent (0); |
3a3fd0fd | 878 | current_inferior_->incref (); |
6c95b8df PA |
879 | current_inferior_->pspace = current_program_space; |
880 | current_inferior_->aspace = current_program_space->aspace; | |
6ecd4729 PA |
881 | /* The architecture will be initialized shortly, by |
882 | initialize_current_architecture. */ | |
6c95b8df | 883 | |
a3c25011 TT |
884 | add_info ("inferiors", info_inferiors_command, |
885 | _("Print a list of inferiors being managed.\n\ | |
886 | Usage: info inferiors [ID]...\n\ | |
887 | If IDs are specified, the list is limited to just those inferiors.\n\ | |
888 | By default all inferiors are displayed.")); | |
b77209e0 | 889 | |
06da564e | 890 | c = add_com ("add-inferior", no_class, add_inferior_command, _("\ |
6c95b8df | 891 | Add a new inferior.\n\ |
a3c25011 | 892 | Usage: add-inferior [-copies N] [-exec FILENAME]\n\ |
af624141 | 893 | N is the optional number of inferiors to add, default is 1.\n\ |
6c95b8df PA |
894 | FILENAME is the file name of the executable to use\n\ |
895 | as main program.")); | |
06da564e | 896 | set_cmd_completer (c, filename_completer); |
6c95b8df | 897 | |
af624141 MS |
898 | add_com ("remove-inferiors", no_class, remove_inferior_command, _("\ |
899 | Remove inferior ID (or list of IDs).\n\ | |
900 | Usage: remove-inferiors ID...")); | |
6c95b8df PA |
901 | |
902 | add_com ("clone-inferior", no_class, clone_inferior_command, _("\ | |
903 | Clone inferior ID.\n\ | |
a3c25011 | 904 | Usage: clone-inferior [-copies N] [ID]\n\ |
6c95b8df PA |
905 | Add N copies of inferior ID. The new inferior has the same\n\ |
906 | executable loaded as the copied inferior. If -copies is not specified,\n\ | |
907 | adds 1 copy. If ID is not specified, it is the current inferior\n\ | |
908 | that is cloned.")); | |
2277426b | 909 | |
af624141 | 910 | add_cmd ("inferiors", class_run, detach_inferior_command, _("\ |
a3c25011 TT |
911 | Detach from inferior ID (or list of IDS).\n\ |
912 | Usage; detach inferiors ID..."), | |
2277426b PA |
913 | &detachlist); |
914 | ||
af624141 | 915 | add_cmd ("inferiors", class_run, kill_inferior_command, _("\ |
a3c25011 TT |
916 | Kill inferior ID (or list of IDs).\n\ |
917 | Usage: kill inferiors ID..."), | |
2277426b PA |
918 | &killlist); |
919 | ||
920 | add_cmd ("inferior", class_run, inferior_command, _("\ | |
921 | Use this command to switch between inferiors.\n\ | |
a3c25011 | 922 | Usage: inferior ID\n\ |
2277426b PA |
923 | The new inferior ID must be currently known."), |
924 | &cmdlist); | |
6c95b8df PA |
925 | |
926 | add_setshow_boolean_cmd ("inferior-events", no_class, | |
927 | &print_inferior_events, _("\ | |
e3abbe7e PW |
928 | Set printing of inferior events (such as inferior start and exit)."), _("\ |
929 | Show printing of inferior events (such as inferior start and exit)."), NULL, | |
6c95b8df PA |
930 | NULL, |
931 | show_print_inferior_events, | |
932 | &setprintlist, &showprintlist); | |
933 | ||
e3940304 | 934 | create_internalvar_type_lazy ("_inferior", &inferior_funcs, NULL); |
b77209e0 | 935 | } |