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