Fix follow_exec latent problem
[deliverable/binutils-gdb.git] / gdb / inferior.h
CommitLineData
c906108c
SS
1/* Variables that describe the inferior process running under GDB:
2 Where it is, why it stopped, and how to step it.
1bac305b 3
e2882c85 4 Copyright (C) 1986-2018 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21#if !defined (INFERIOR_H)
22#define INFERIOR_H 1
23
da3331ec
AC
24struct target_waitstatus;
25struct frame_info;
26struct ui_file;
27struct type;
67a2b77e 28struct gdbarch;
72cec141 29struct regcache;
b77209e0 30struct ui_out;
7e1789f5 31struct terminal_info;
6ecd4729 32struct target_desc_info;
0550c955 33struct continuation;
3a3fd0fd 34struct inferior;
00431a78 35struct thread_info;
67a2b77e 36
c906108c
SS
37/* For bpstat. */
38#include "breakpoint.h"
39
2ea28649 40/* For enum gdb_signal. */
c906108c
SS
41#include "target.h"
42
aa0cd9c1
AC
43/* For struct frame_id. */
44#include "frame.h"
45
9a6c7d9c
SDJ
46/* For gdb_environ. */
47#include "environ.h"
48
6c95b8df 49#include "progspace.h"
8e260fc0 50#include "registry.h"
6c95b8df 51
b15cc25c 52#include "symfile-add-flags.h"
3a3fd0fd 53#include "common/refcounted-object.h"
b15cc25c 54
2090129c
SDJ
55#include "common-inferior.h"
56
16c381f0
JK
57struct infcall_suspend_state;
58struct infcall_control_state;
7a292a7a 59
16c381f0
JK
60extern void restore_infcall_suspend_state (struct infcall_suspend_state *);
61extern void restore_infcall_control_state (struct infcall_control_state *);
b89667eb 62
c7c4d3fa
TT
63/* A deleter for infcall_suspend_state that calls
64 restore_infcall_suspend_state. */
65struct infcall_suspend_state_deleter
66{
67 void operator() (struct infcall_suspend_state *state) const
68 {
69 restore_infcall_suspend_state (state);
70 }
71};
72
73/* A unique_ptr specialization for infcall_suspend_state. */
74typedef std::unique_ptr<infcall_suspend_state, infcall_suspend_state_deleter>
75 infcall_suspend_state_up;
76
cb524840
TT
77extern infcall_suspend_state_up save_infcall_suspend_state ();
78
c7c4d3fa
TT
79/* A deleter for infcall_control_state that calls
80 restore_infcall_control_state. */
81struct infcall_control_state_deleter
82{
83 void operator() (struct infcall_control_state *state) const
84 {
85 restore_infcall_control_state (state);
86 }
87};
88
89/* A unique_ptr specialization for infcall_control_state. */
90typedef std::unique_ptr<infcall_control_state, infcall_control_state_deleter>
91 infcall_control_state_up;
b89667eb 92
cb524840
TT
93extern infcall_control_state_up save_infcall_control_state ();
94
16c381f0
JK
95extern void discard_infcall_suspend_state (struct infcall_suspend_state *);
96extern void discard_infcall_control_state (struct infcall_control_state *);
7a292a7a 97
daf6667d 98extern readonly_detached_regcache *
16c381f0 99 get_infcall_suspend_state_regcache (struct infcall_suspend_state *);
b89667eb 100
a14ed312 101extern void set_sigint_trap (void);
c906108c 102
a14ed312 103extern void clear_sigint_trap (void);
c906108c 104
3cb3b8df 105/* Set/get file name for default use for standard in/out in the inferior. */
c906108c 106
3cb3b8df
BR
107extern void set_inferior_io_terminal (const char *terminal_name);
108extern const char *get_inferior_io_terminal (void);
c906108c 109
39f77062 110/* Collected pid, tid, etc. of the debugged inferior. When there's
e99b03dc 111 no inferior, inferior_ptid.pid () will be 0. */
c906108c 112
39f77062 113extern ptid_t inferior_ptid;
c906108c 114
a14ed312 115extern void generic_mourn_inferior (void);
c906108c 116
9898f801
UW
117extern CORE_ADDR unsigned_pointer_to_address (struct gdbarch *gdbarch,
118 struct type *type,
b60c417a 119 const gdb_byte *buf);
9898f801
UW
120extern void unsigned_address_to_pointer (struct gdbarch *gdbarch,
121 struct type *type, gdb_byte *buf,
ac2e2ef7 122 CORE_ADDR addr);
9898f801
UW
123extern CORE_ADDR signed_pointer_to_address (struct gdbarch *gdbarch,
124 struct type *type,
b60c417a 125 const gdb_byte *buf);
9898f801
UW
126extern void address_to_signed_pointer (struct gdbarch *gdbarch,
127 struct type *type, gdb_byte *buf,
ac2e2ef7 128 CORE_ADDR addr);
4478b372 129
a14ed312 130extern void reopen_exec_file (void);
c906108c 131
c906108c
SS
132/* From misc files */
133
0ab7a791
AC
134extern void default_print_registers_info (struct gdbarch *gdbarch,
135 struct ui_file *file,
136 struct frame_info *frame,
137 int regnum, int all);
666e11c5 138
cc86d1cb
YQ
139/* Default implementation of gdbarch_print_float_info. Print
140 the values of all floating point registers. */
141
142extern void default_print_float_info (struct gdbarch *gdbarch,
143 struct ui_file *file,
144 struct frame_info *frame,
145 const char *args);
146
0a4f40a2 147extern void child_terminal_info (struct target_ops *self, const char *, int);
c906108c 148
11db9430 149extern void info_terminal_command (char *, int);
c906108c 150
d6b64346
PA
151extern void child_terminal_ours (struct target_ops *self);
152
153extern void child_terminal_ours_for_output (struct target_ops *self);
c906108c 154
d6b64346 155extern void child_terminal_inferior (struct target_ops *self);
c906108c 156
e671cd59
PA
157extern void child_terminal_save_inferior (struct target_ops *self);
158
d6b64346 159extern void child_terminal_init (struct target_ops *self);
c906108c 160
d6b64346 161extern void child_terminal_init_with_pgrp (int pgrp);
c906108c 162
e671cd59
PA
163extern void child_pass_ctrlc (struct target_ops *self);
164
165extern void child_interrupt (struct target_ops *self);
166
c906108c
SS
167/* From fork-child.c */
168
2090129c
SDJ
169/* Helper function to call STARTUP_INFERIOR with PID and NUM_TRAPS.
170 This function already calls set_executing. Return the ptid_t from
171 STARTUP_INFERIOR. */
172extern ptid_t gdb_startup_inferior (pid_t pid, int num_traps);
c906108c 173
bd57a748 174extern char *construct_inferior_arguments (int, char **);
552c04a7 175
c906108c
SS
176/* From infcmd.c */
177
6efcd9a8
PA
178/* Initial inferior setup. Determines the exec file is not yet known,
179 takes any necessary post-attaching actions, fetches the target
180 description and syncs the shared library list. */
181
182extern void setup_inferior (int from_tty);
183
281b533b
DJ
184extern void post_create_inferior (struct target_ops *, int);
185
0b39b52e 186extern void attach_command (const char *, int);
c906108c 187
cbaaa0ca 188extern const char *get_inferior_args (void);
07091751 189
0b39b52e 190extern void set_inferior_args (const char *);
07091751 191
552c04a7
TT
192extern void set_inferior_args_vector (int, char **);
193
1d12d88f 194extern void registers_info (const char *, int);
36dc181b 195
77ebaa5a
VP
196extern void continue_1 (int all_threads);
197
77ebaa5a
VP
198extern void interrupt_target_1 (int all_threads);
199
186c406b
TT
200extern void delete_longjmp_breakpoint_cleanup (void *arg);
201
981a3fb3 202extern void detach_command (const char *, int);
6418d433 203
75cbc781 204extern void notice_new_inferior (struct thread_info *, int, int);
1941c569 205
0700e23e
PA
206extern struct value *get_return_value (struct value *function,
207 struct type *value_type);
cc72b2a2 208
329ea579
PA
209/* Prepare for execution command. TARGET is the target that will run
210 the command. BACKGROUND determines whether this is a foreground
211 (synchronous) or background (asynchronous) command. */
212
213extern void prepare_execution_command (struct target_ops *target,
214 int background);
215
98882a26
PA
216/* Whether to start up the debuggee under a shell.
217
218 If startup-with-shell is set, GDB's "run" will attempt to start up
219 the debuggee under a shell.
220
221 This is in order for argument-expansion to occur. E.g.,
222
223 (gdb) run *
224
225 The "*" gets expanded by the shell into a list of files.
226
227 While this is a nice feature, it may be handy to bypass the shell
228 in some cases. To disable this feature, do "set startup-with-shell
229 false".
230
231 The catch-exec traps expected during start-up will be one more if
232 the target is started up with a shell. */
233extern int startup_with_shell;
234
c906108c
SS
235/* Nonzero if stopped due to completion of a stack dummy routine. */
236
aa7d318d 237extern enum stop_stack_kind stop_stack_dummy;
c906108c
SS
238
239/* Nonzero if program stopped due to a random (unexpected) signal in
240 inferior process. */
241
242extern int stopped_by_random_signal;
243
f67c0c91
SDJ
244/* Print notices on inferior events (attach, detach, etc.), set with
245 `set print inferior-events'. */
246extern int print_inferior_events;
247
a49f981f
MS
248/* STEP_OVER_ALL means step over all subroutine calls.
249 STEP_OVER_UNDEBUGGABLE means step over calls to undebuggable functions.
250 STEP_OVER_NONE means don't step over any subroutine calls. */
c906108c 251
5fbbeb29
CF
252enum step_over_calls_kind
253 {
254 STEP_OVER_NONE,
255 STEP_OVER_ALL,
a4acd088
CF
256 STEP_OVER_UNDEBUGGABLE
257 };
258
b0f4b84b
DJ
259/* Anything but NO_STOP_QUIETLY means we expect a trap and the caller
260 will handle it themselves. STOP_QUIETLY is used when running in
261 the shell before the child program has been exec'd and when running
262 through shared library loading. STOP_QUIETLY_REMOTE is used when
263 setting up a remote connection; it is like STOP_QUIETLY_NO_SIGSTOP
264 except that there is no need to hide a signal. */
c54cfec8 265
7c0bc051
DE
266/* STOP_QUIETLY_NO_SIGSTOP is used to handle a tricky situation with attach.
267 When doing an attach, the kernel stops the debuggee with a SIGSTOP.
268 On newer GNU/Linux kernels (>= 2.5.61) the handling of SIGSTOP for
269 a ptraced process has changed. Earlier versions of the kernel
270 would ignore these SIGSTOPs, while now SIGSTOP is treated like any
271 other signal, i.e. it is not muffled.
272
c54cfec8
EZ
273 If the gdb user does a 'continue' after the 'attach', gdb passes
274 the global variable stop_signal (which stores the signal from the
275 attach, SIGSTOP) to the ptrace(PTRACE_CONT,...) call. This is
276 problematic, because the kernel doesn't ignore such SIGSTOP
1777feb0 277 now. I.e. it is reported back to gdb, which in turn presents it
c54cfec8 278 back to the user.
7c0bc051 279
c54cfec8
EZ
280 To avoid the problem, we use STOP_QUIETLY_NO_SIGSTOP, which allows
281 gdb to clear the value of stop_signal after the attach, so that it
282 is not passed back down to the kernel. */
283
284enum stop_kind
285 {
286 NO_STOP_QUIETLY = 0,
287 STOP_QUIETLY,
b0f4b84b 288 STOP_QUIETLY_REMOTE,
c54cfec8
EZ
289 STOP_QUIETLY_NO_SIGSTOP
290 };
c906108c 291
c906108c 292\f
faaf634c 293/* Possible values for gdbarch_call_dummy_location. */
c906108c 294#define ON_STACK 1
c906108c
SS
295#define AT_ENTRY_POINT 4
296
089354bb
SM
297/* Base class for target-specific inferior data. */
298
299struct private_inferior
300{
301 virtual ~private_inferior () = 0;
302};
b77209e0 303
16c381f0
JK
304/* Inferior process specific part of `struct infcall_control_state'.
305
306 Inferior thread counterpart is `struct thread_control_state'. */
307
308struct inferior_control_state
309{
ee841dd8
TT
310 inferior_control_state ()
311 : stop_soon (NO_STOP_QUIETLY)
312 {
313 }
314
315 explicit inferior_control_state (enum stop_kind when)
316 : stop_soon (when)
317 {
318 }
319
16c381f0
JK
320 /* See the definition of stop_kind above. */
321 enum stop_kind stop_soon;
322};
323
3a3fd0fd
PA
324/* Return a pointer to the current inferior. */
325extern inferior *current_inferior ();
326
327extern void set_current_inferior (inferior *);
328
b77209e0
PA
329/* GDB represents the state of each program execution with an object
330 called an inferior. An inferior typically corresponds to a process
331 but is more general and applies also to targets that do not have a
332 notion of processes. Each run of an executable creates a new
333 inferior, as does each attachment to an existing process.
334 Inferiors have unique internal identifiers that are different from
335 target process ids. Each inferior may in turn have multiple
3a3fd0fd
PA
336 threads running in it.
337
338 Inferiors are intrusively refcounted objects. Unlike thread
339 objects, being the user-selected inferior is considered a strong
340 reference and is thus accounted for in the inferior object's
341 refcount (see set_current_inferior). When GDB needs to remember
342 the selected inferior to later restore it, GDB temporarily bumps
343 the inferior object's refcount, to prevent something deleting the
344 inferior object before reverting back (e.g., due to a
345 "remove-inferiors" command (see
346 make_cleanup_restore_current_thread). All other inferior
347 references are considered weak references. Inferiors are always
348 listed exactly once in the inferior list, so placing an inferior in
349 the inferior list is an implicit, not counted strong reference. */
350
351class inferior : public refcounted_object
b77209e0 352{
0550c955
PA
353public:
354 explicit inferior (int pid);
355 ~inferior ();
356
3a3fd0fd
PA
357 /* Returns true if we can delete this inferior. */
358 bool deletable () const { return refcount () == 0; }
359
b77209e0 360 /* Pointer to next inferior in singly-linked list of inferiors. */
0550c955 361 struct inferior *next = NULL;
b77209e0
PA
362
363 /* Convenient handle (GDB inferior id). Unique across all
364 inferiors. */
0550c955 365 int num = 0;
b77209e0
PA
366
367 /* Actual target inferior id, usually, a process id. This matches
368 the ptid_t.pid member of threads of this inferior. */
0550c955 369 int pid = 0;
e714e1bf 370 /* True if the PID was actually faked by GDB. */
0550c955 371 bool fake_pid_p = false;
b77209e0 372
5d5658a1 373 /* The highest thread number this inferior ever had. */
0550c955 374 int highest_thread_num = 0;
5d5658a1 375
16c381f0
JK
376 /* State of GDB control of inferior process execution.
377 See `struct inferior_control_state'. */
ee841dd8 378 inferior_control_state control;
16c381f0 379
6c95b8df
PA
380 /* True if this was an auto-created inferior, e.g. created from
381 following a fork; false, if this inferior was manually added by
382 the user, and we should not attempt to prune it
383 automatically. */
0550c955 384 bool removable = false;
6c95b8df
PA
385
386 /* The address space bound to this inferior. */
0550c955 387 struct address_space *aspace = NULL;
6c95b8df
PA
388
389 /* The program space bound to this inferior. */
0550c955 390 struct program_space *pspace = NULL;
6c95b8df 391
3f81c18a 392 /* The arguments string to use when running. */
0550c955 393 char *args = NULL;
3f81c18a
VP
394
395 /* The size of elements in argv. */
0550c955 396 int argc = 0;
3f81c18a
VP
397
398 /* The vector version of arguments. If ARGC is nonzero,
399 then we must compute ARGS from this (via the target).
400 This is always coming from main's argv and therefore
401 should never be freed. */
0550c955 402 char **argv = NULL;
3f81c18a 403
d092c5a2
SDJ
404 /* The current working directory that will be used when starting
405 this inferior. */
406 gdb::unique_xmalloc_ptr<char> cwd;
407
3f81c18a 408 /* The name of terminal device to use for I/O. */
0550c955 409 char *terminal = NULL;
3f81c18a 410
e671cd59
PA
411 /* The terminal state as set by the last target_terminal::terminal_*
412 call. */
413 target_terminal_state terminal_state = target_terminal_state::is_ours;
414
3f81c18a
VP
415 /* Environment to use for running inferior,
416 in format described in environ.h. */
9a6c7d9c 417 gdb_environ environment;
3f81c18a 418
0550c955
PA
419 /* True if this child process was attached rather than forked. */
420 bool attach_flag = false;
181e7f93 421
6c95b8df
PA
422 /* If this inferior is a vfork child, then this is the pointer to
423 its vfork parent, if GDB is still attached to it. */
0550c955 424 inferior *vfork_parent = NULL;
6c95b8df
PA
425
426 /* If this process is a vfork parent, this is the pointer to the
427 child. Since a vfork parent is left frozen by the kernel until
428 the child execs or exits, a process can only have one vfork child
429 at a given time. */
0550c955 430 inferior *vfork_child = NULL;
6c95b8df
PA
431
432 /* True if this inferior should be detached when it's vfork sibling
433 exits or execs. */
0550c955 434 bool pending_detach = false;
6c95b8df
PA
435
436 /* True if this inferior is a vfork parent waiting for a vfork child
437 not under our control to be done with the shared memory region,
438 either by exiting or execing. */
0550c955 439 bool waiting_for_vfork_done = false;
6c95b8df 440
24291992 441 /* True if we're in the process of detaching from this inferior. */
9bcb1f16 442 bool detaching = false;
24291992 443
e0ba6746
PA
444 /* What is left to do for an execution command after any thread of
445 this inferior stops. For continuations associated with a
446 specific thread, see `struct thread_info'. */
0550c955 447 continuation *continuations = NULL;
e0ba6746 448
6efcd9a8
PA
449 /* True if setup_inferior wasn't called for this inferior yet.
450 Until that is done, we must not access inferior memory or
451 registers, as we haven't determined the target
452 architecture/description. */
0550c955 453 bool needs_setup = false;
6efcd9a8 454
b77209e0 455 /* Private data used by the target vector implementation. */
089354bb 456 std::unique_ptr<private_inferior> priv;
a96d9b2e 457
8cf64490
TT
458 /* HAS_EXIT_CODE is true if the inferior exited with an exit code.
459 In this case, the EXIT_CODE field is also valid. */
0550c955
PA
460 bool has_exit_code = false;
461 LONGEST exit_code = 0;
8cf64490 462
7dcd53a0 463 /* Default flags to pass to the symbol reading functions. These are
b15cc25c 464 used whenever a new objfile is created. */
0550c955 465 symfile_add_flags symfile_flags = 0;
7dcd53a0 466
6ecd4729
PA
467 /* Info about an inferior's target description (if it's fetched; the
468 user supplied description's filename, if any; etc.). */
0550c955 469 target_desc_info *tdesc_info = NULL;
6ecd4729
PA
470
471 /* The architecture associated with the inferior through the
472 connection to the target.
473
474 The architecture vector provides some information that is really
475 a property of the inferior, accessed through a particular target:
476 ptrace operations; the layout of certain RSP packets; the
477 solib_ops vector; etc. To differentiate architecture accesses to
478 per-inferior/target properties from
479 per-thread/per-frame/per-objfile properties, accesses to
480 per-inferior/target properties should be made through
481 this gdbarch. */
0550c955 482 struct gdbarch *gdbarch = NULL;
6ecd4729 483
6c95b8df 484 /* Per inferior data-pointers required by other GDB modules. */
8e260fc0 485 REGISTRY_FIELDS;
b77209e0
PA
486};
487
6c95b8df
PA
488/* Keep a registry of per-inferior data-pointers required by other GDB
489 modules. */
490
8e260fc0 491DECLARE_REGISTRY (inferior);
6c95b8df 492
b77209e0
PA
493/* Add an inferior to the inferior list, print a message that a new
494 inferior is found, and return the pointer to the new inferior.
495 Caller may use this pointer to initialize the private inferior
496 data. */
497extern struct inferior *add_inferior (int pid);
498
499/* Same as add_inferior, but don't print new inferior notifications to
500 the CLI. */
501extern struct inferior *add_inferior_silent (int pid);
502
7a41607e 503extern void delete_inferior (struct inferior *todel);
b77209e0
PA
504
505/* Delete an existing inferior list entry, due to inferior detaching. */
bc09b0c1
SM
506extern void detach_inferior (inferior *inf);
507
00431a78 508extern void exit_inferior (inferior *inf);
b77209e0 509
00431a78 510extern void exit_inferior_silent (inferior *inf);
6c95b8df
PA
511
512extern void exit_inferior_num_silent (int num);
513
514extern void inferior_appeared (struct inferior *inf, int pid);
515
82f73884
PA
516/* Get rid of all inferiors. */
517extern void discard_all_inferiors (void);
518
6c95b8df 519/* Search function to lookup an inferior by target 'pid'. */
b77209e0
PA
520extern struct inferior *find_inferior_pid (int pid);
521
c9657e70
SM
522/* Search function to lookup an inferior whose pid is equal to 'ptid.pid'. */
523extern struct inferior *find_inferior_ptid (ptid_t ptid);
524
6c95b8df
PA
525/* Search function to lookup an inferior by GDB 'num'. */
526extern struct inferior *find_inferior_id (int num);
527
32990ada
PA
528/* Find an inferior bound to PSPACE, giving preference to the current
529 inferior. */
6c95b8df
PA
530extern struct inferior *
531 find_inferior_for_program_space (struct program_space *pspace);
532
b77209e0
PA
533/* Inferior iterator function.
534
535 Calls a callback function once for each inferior, so long as the
536 callback function returns false. If the callback function returns
537 true, the iteration will end and the current inferior will be
538 returned. This can be useful for implementing a search for a
539 inferior with arbitrary attributes, or for applying some operation
540 to every inferior.
541
542 It is safe to delete the iterated inferior from the callback. */
543extern struct inferior *iterate_over_inferiors (int (*) (struct inferior *,
544 void *),
545 void *);
546
b77209e0
PA
547/* Returns true if the inferior list is not empty. */
548extern int have_inferiors (void);
549
8020350c
DB
550/* Returns the number of live inferiors (real live processes). */
551extern int number_of_live_inferiors (void);
552
c35b1492
PA
553/* Returns true if there are any live inferiors in the inferior list
554 (not cores, not executables, real live processes). */
555extern int have_live_inferiors (void);
556
5ed8105e
PA
557/* Save/restore the current inferior. */
558
559class scoped_restore_current_inferior
560{
561public:
562 scoped_restore_current_inferior ()
563 : m_saved_inf (current_inferior ())
564 {}
565
566 ~scoped_restore_current_inferior ()
567 { set_current_inferior (m_saved_inf); }
568
d6541620 569 DISABLE_COPY_AND_ASSIGN (scoped_restore_current_inferior);
5ed8105e
PA
570
571private:
572 inferior *m_saved_inf;
573};
574
6c95b8df 575
c65b3e0d
PA
576/* Traverse all inferiors. */
577
578#define ALL_INFERIORS(I) \
579 for ((I) = inferior_list; (I); (I) = (I)->next)
580
85ad3aaf
PA
581/* Traverse all non-exited inferiors. */
582
583#define ALL_NON_EXITED_INFERIORS(I) \
584 ALL_INFERIORS (I) \
585 if ((I)->pid != 0)
586
6c95b8df
PA
587extern struct inferior *inferior_list;
588
589/* Prune away automatically added inferiors that aren't required
590 anymore. */
591extern void prune_inferiors (void);
592
593extern int number_of_inferiors (void);
594
a79b8f6e
VP
595extern struct inferior *add_inferior_with_spaces (void);
596
4034d0ff
AT
597/* Print the current selected inferior. */
598extern void print_selected_inferior (struct ui_out *uiout);
599
c906108c 600#endif /* !defined (INFERIOR_H) */
This page took 1.578776 seconds and 4 git commands to generate.