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