solib.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /* Shared library declarations for GDB, the GNU Debugger.
  2. Copyright (C) 1992-2022 Free Software Foundation, Inc.
  3. This file is part of GDB.
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  14. #ifndef SOLIB_H
  15. #define SOLIB_H
  16. /* Forward decl's for prototypes */
  17. struct so_list;
  18. struct target_ops;
  19. struct target_so_ops;
  20. struct program_space;
  21. #include "gdb_bfd.h"
  22. #include "symfile-add-flags.h"
  23. /* Called when we free all symtabs, to free the shared library information
  24. as well. */
  25. extern void clear_solib (void);
  26. /* Called to add symbols from a shared library to gdb's symbol table. */
  27. extern void solib_add (const char *, int, int);
  28. extern bool solib_read_symbols (struct so_list *, symfile_add_flags);
  29. /* Function to be called when the inferior starts up, to discover the
  30. names of shared libraries that are dynamically linked, the base
  31. addresses to which they are linked, and sufficient information to
  32. read in their symbols at a later time. */
  33. extern void solib_create_inferior_hook (int from_tty);
  34. /* If ADDR lies in a shared library, return its name. */
  35. extern char *solib_name_from_address (struct program_space *, CORE_ADDR);
  36. /* Return true if ADDR lies within SOLIB. */
  37. extern bool solib_contains_address_p (const struct so_list *, CORE_ADDR);
  38. /* Return whether the data starting at VADDR, size SIZE, must be kept
  39. in a core file for shared libraries loaded before "gcore" is used
  40. to be handled correctly when the core file is loaded. This only
  41. applies when the section would otherwise not be kept in the core
  42. file (in particular, for readonly sections). */
  43. extern bool solib_keep_data_in_core (CORE_ADDR vaddr, unsigned long size);
  44. /* Return true if PC lies in the dynamic symbol resolution code of the
  45. run time loader. */
  46. extern bool in_solib_dynsym_resolve_code (CORE_ADDR);
  47. /* Discard symbols that were auto-loaded from shared libraries. */
  48. extern void no_shared_libraries (const char *ignored, int from_tty);
  49. /* Set the solib operations for GDBARCH to NEW_OPS. */
  50. extern void set_solib_ops (struct gdbarch *gdbarch,
  51. const struct target_so_ops *new_ops);
  52. /* Synchronize GDB's shared object list with inferior's.
  53. Extract the list of currently loaded shared objects from the
  54. inferior, and compare it with the list of shared objects in the
  55. current program space's list of shared libraries. Edit
  56. so_list_head to bring it in sync with the inferior's new list.
  57. If we notice that the inferior has unloaded some shared objects,
  58. free any symbolic info GDB had read about those shared objects.
  59. Don't load symbolic info for any new shared objects; just add them
  60. to the list, and leave their symbols_loaded flag clear.
  61. If FROM_TTY is non-null, feel free to print messages about what
  62. we're doing. */
  63. extern void update_solib_list (int from_tty);
  64. /* Return true if NAME is the libpthread shared library. */
  65. extern bool libpthread_name_p (const char *name);
  66. /* Look up symbol from both symbol table and dynamic string table. */
  67. extern CORE_ADDR gdb_bfd_lookup_symbol (bfd *abfd,
  68. int (*match_sym) (const asymbol *,
  69. const void *),
  70. const void *data);
  71. /* Look up symbol from symbol table. */
  72. extern CORE_ADDR gdb_bfd_lookup_symbol_from_symtab (bfd *abfd,
  73. int (*match_sym)
  74. (const asymbol *,
  75. const void *),
  76. const void *data);
  77. /* Scan for DESIRED_DYNTAG in .dynamic section of ABFD. If DESIRED_DYNTAG is
  78. found, 1 is returned and the corresponding PTR and PTR_ADDR are set. */
  79. extern int gdb_bfd_scan_elf_dyntag (const int desired_dyntag, bfd *abfd,
  80. CORE_ADDR *ptr, CORE_ADDR *ptr_addr);
  81. /* If FILENAME refers to an ELF shared object then attempt to return the
  82. string referred to by its DT_SONAME tag. */
  83. extern gdb::unique_xmalloc_ptr<char> gdb_bfd_read_elf_soname
  84. (const char *filename);
  85. /* Enable or disable optional solib event breakpoints as appropriate. */
  86. extern void update_solib_breakpoints (void);
  87. /* Handle an solib event by calling solib_add. */
  88. extern void handle_solib_event (void);
  89. /* Associate SONAME with BUILD_ID in ABFD's registry so that it can be
  90. retrieved with get_cbfd_soname_build_id. */
  91. extern void set_cbfd_soname_build_id (gdb_bfd_ref_ptr abfd,
  92. const char *soname,
  93. const bfd_build_id *build_id);
  94. /* If SONAME had a build-id associated with it in ABFD's registry by a
  95. previous call to set_cbfd_soname_build_id then return the build-id
  96. as a NULL-terminated hex string. */
  97. extern gdb::unique_xmalloc_ptr<char> get_cbfd_soname_build_id
  98. (gdb_bfd_ref_ptr abfd, const char *soname);
  99. #endif /* SOLIB_H */