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