gdb/windows-tdep.c - gdb
Global variables defined
Data types defined
Functions defined
Source code
- #include "defs.h"
- #include "windows-tdep.h"
- #include "gdb_obstack.h"
- #include "xml-support.h"
- #include "gdbarch.h"
- #include "target.h"
- #include "value.h"
- #include "inferior.h"
- #include "command.h"
- #include "gdbcmd.h"
- #include "gdbthread.h"
- #include "objfiles.h"
- #include "symfile.h"
- #include "coff-pe-read.h"
- #include "gdb_bfd.h"
- #include "complaints.h"
- #include "solib.h"
- #include "solib-target.h"
- struct cmd_list_element *info_w32_cmdlist;
- typedef struct thread_information_block_32
- {
- uint32_t current_seh;
- uint32_t current_top_of_stack;
- uint32_t current_bottom_of_stack;
- uint32_t sub_system_tib;
- uint32_t fiber_data;
- uint32_t arbitrary_data_slot;
- uint32_t linear_address_tib;
- uint32_t environment_pointer;
- uint32_t process_id;
- uint32_t current_thread_id;
- uint32_t active_rpc_handle;
- uint32_t thread_local_storage;
- uint32_t process_environment_block;
- uint32_t last_error_number;
- }
- thread_information_32;
- typedef struct thread_information_block_64
- {
- uint64_t current_seh;
- uint64_t current_top_of_stack;
- uint64_t current_bottom_of_stack;
- uint64_t sub_system_tib;
- uint64_t fiber_data;
- uint64_t arbitrary_data_slot;
- uint64_t linear_address_tib;
- uint64_t environment_pointer;
- uint64_t process_id;
- uint64_t current_thread_id;
- uint64_t active_rpc_handle;
- uint64_t thread_local_storage;
- uint64_t process_environment_block;
- uint64_t last_error_number;
- }
- thread_information_64;
- static const char* TIB_NAME[] =
- {
- " current_seh ",
- " current_top_of_stack ",
- " current_bottom_of_stack ",
- " sub_system_tib ",
- " fiber_data ",
- " arbitrary_data_slot ",
- " linear_address_tib ",
- " environment_pointer ",
- " process_id ",
- " current_thread_id ",
- " active_rpc_handle ",
- " thread_local_storage ",
- " process_environment_block ",
- " last_error_number "
- };
- static const int MAX_TIB32 =
- sizeof (thread_information_32) / sizeof (uint32_t);
- static const int MAX_TIB64 =
- sizeof (thread_information_64) / sizeof (uint64_t);
- static const int FULL_TIB_SIZE = 0x1000;
- static int maint_display_all_tib = 0;
- static struct type *
- windows_get_tlb_type (struct gdbarch *gdbarch)
- {
- static struct gdbarch *last_gdbarch = NULL;
- static struct type *last_tlb_type = NULL;
- struct type *dword_ptr_type, *dword32_type, *void_ptr_type;
- struct type *peb_ldr_type, *peb_ldr_ptr_type;
- struct type *peb_type, *peb_ptr_type, *list_type, *list_ptr_type;
- struct type *module_list_ptr_type;
- struct type *tib_type, *seh_type, *tib_ptr_type, *seh_ptr_type;
-
- if (last_tlb_type && last_gdbarch == gdbarch)
- return last_tlb_type;
- dword_ptr_type = arch_integer_type (gdbarch, gdbarch_ptr_bit (gdbarch),
- 1, "DWORD_PTR");
- dword32_type = arch_integer_type (gdbarch, 32,
- 1, "DWORD32");
- void_ptr_type = lookup_pointer_type (builtin_type (gdbarch)->builtin_void);
-
- list_type = arch_composite_type (gdbarch, NULL, TYPE_CODE_STRUCT);
- TYPE_NAME (list_type) = xstrdup ("list");
- list_ptr_type = arch_type (gdbarch, TYPE_CODE_PTR,
- TYPE_LENGTH (void_ptr_type), NULL);
- module_list_ptr_type = void_ptr_type;
- append_composite_type_field (list_type, "forward_list",
- module_list_ptr_type);
- append_composite_type_field (list_type, "backward_list",
- module_list_ptr_type);
-
- seh_type = arch_composite_type (gdbarch, NULL, TYPE_CODE_STRUCT);
- TYPE_NAME (seh_type) = xstrdup ("seh");
- seh_ptr_type = arch_type (gdbarch, TYPE_CODE_PTR,
- TYPE_LENGTH (void_ptr_type), NULL);
- TYPE_TARGET_TYPE (seh_ptr_type) = seh_type;
- append_composite_type_field (seh_type, "next_seh", seh_ptr_type);
- append_composite_type_field (seh_type, "handler",
- builtin_type (gdbarch)->builtin_func_ptr);
-
- peb_ldr_type = arch_composite_type (gdbarch, NULL, TYPE_CODE_STRUCT);
- TYPE_NAME (peb_ldr_type) = xstrdup ("peb_ldr_data");
- append_composite_type_field (peb_ldr_type, "length", dword32_type);
- append_composite_type_field (peb_ldr_type, "initialized", dword32_type);
- append_composite_type_field (peb_ldr_type, "ss_handle", void_ptr_type);
- append_composite_type_field (peb_ldr_type, "in_load_order", list_type);
- append_composite_type_field (peb_ldr_type, "in_memory_order", list_type);
- append_composite_type_field (peb_ldr_type, "in_init_order", list_type);
- append_composite_type_field (peb_ldr_type, "entry_in_progress",
- void_ptr_type);
- peb_ldr_ptr_type = arch_type (gdbarch, TYPE_CODE_PTR,
- TYPE_LENGTH (void_ptr_type), NULL);
- TYPE_TARGET_TYPE (peb_ldr_ptr_type) = peb_ldr_type;
-
- peb_type = arch_composite_type (gdbarch, NULL, TYPE_CODE_STRUCT);
- TYPE_NAME (peb_type) = xstrdup ("peb");
-
- append_composite_type_field (peb_type, "flags", dword_ptr_type);
- append_composite_type_field (peb_type, "mutant", void_ptr_type);
- append_composite_type_field (peb_type, "image_base_address", void_ptr_type);
- append_composite_type_field (peb_type, "ldr", peb_ldr_ptr_type);
- append_composite_type_field (peb_type, "process_parameters", void_ptr_type);
- append_composite_type_field (peb_type, "sub_system_data", void_ptr_type);
- append_composite_type_field (peb_type, "process_heap", void_ptr_type);
- append_composite_type_field (peb_type, "fast_peb_lock", void_ptr_type);
- peb_ptr_type = arch_type (gdbarch, TYPE_CODE_PTR,
- TYPE_LENGTH (void_ptr_type), NULL);
- TYPE_TARGET_TYPE (peb_ptr_type) = peb_type;
-
- tib_type = arch_composite_type (gdbarch, NULL, TYPE_CODE_STRUCT);
- TYPE_NAME (tib_type) = xstrdup ("tib");
-
- append_composite_type_field (tib_type, "current_seh", seh_ptr_type);
-
- append_composite_type_field (tib_type, "current_top_of_stack",
- void_ptr_type);
-
- append_composite_type_field (tib_type, "current_bottom_of_stack",
- void_ptr_type);
-
- append_composite_type_field (tib_type, "sub_system_tib", void_ptr_type);
-
- append_composite_type_field (tib_type, "fiber_data", void_ptr_type);
-
- append_composite_type_field (tib_type, "arbitrary_data_slot", void_ptr_type);
-
- append_composite_type_field (tib_type, "linear_address_tib", void_ptr_type);
-
- append_composite_type_field (tib_type, "environment_pointer", void_ptr_type);
-
- append_composite_type_field (tib_type, "process_id", dword_ptr_type);
-
- append_composite_type_field (tib_type, "thread_id", dword_ptr_type);
-
- append_composite_type_field (tib_type, "active_rpc_handle", dword_ptr_type);
-
- append_composite_type_field (tib_type, "thread_local_storage",
- void_ptr_type);
-
- append_composite_type_field (tib_type, "process_environment_block",
- peb_ptr_type);
-
- append_composite_type_field (tib_type, "last_error_number", dword_ptr_type);
- tib_ptr_type = arch_type (gdbarch, TYPE_CODE_PTR,
- TYPE_LENGTH (void_ptr_type), NULL);
- TYPE_TARGET_TYPE (tib_ptr_type) = tib_type;
- last_tlb_type = tib_ptr_type;
- last_gdbarch = gdbarch;
- return tib_ptr_type;
- }
- static void
- tlb_value_read (struct value *val)
- {
- CORE_ADDR tlb;
- struct type *type = check_typedef (value_type (val));
- if (!target_get_tib_address (inferior_ptid, &tlb))
- error (_("Unable to read tlb"));
- store_typed_address (value_contents_raw (val), type, tlb);
- }
- static void
- tlb_value_write (struct value *v, struct value *fromval)
- {
- error (_("Impossible to change the Thread Local Base"));
- }
- static const struct lval_funcs tlb_value_funcs =
- {
- tlb_value_read,
- tlb_value_write
- };
- static struct value *
- tlb_make_value (struct gdbarch *gdbarch, struct internalvar *var, void *ignore)
- {
- if (target_has_stack && !ptid_equal (inferior_ptid, null_ptid))
- {
- struct type *type = windows_get_tlb_type (gdbarch);
- return allocate_computed_value (type, &tlb_value_funcs, NULL);
- }
- return allocate_value (builtin_type (gdbarch)->builtin_void);
- }
- static int
- display_one_tib (ptid_t ptid)
- {
- gdb_byte *tib = NULL;
- gdb_byte *index;
- CORE_ADDR thread_local_base;
- ULONGEST i, val, max, max_name, size, tib_size;
- ULONGEST sizeof_ptr = gdbarch_ptr_bit (target_gdbarch ());
- enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
- if (sizeof_ptr == 64)
- {
- size = sizeof (uint64_t);
- tib_size = sizeof (thread_information_64);
- max = MAX_TIB64;
- }
- else
- {
- size = sizeof (uint32_t);
- tib_size = sizeof (thread_information_32);
- max = MAX_TIB32;
- }
- max_name = max;
- if (maint_display_all_tib)
- {
- tib_size = FULL_TIB_SIZE;
- max = tib_size / size;
- }
- tib = alloca (tib_size);
- if (target_get_tib_address (ptid, &thread_local_base) == 0)
- {
- printf_filtered (_("Unable to get thread local base for %s\n"),
- target_pid_to_str (ptid));
- return -1;
- }
- if (target_read (¤t_target, TARGET_OBJECT_MEMORY,
- NULL, tib, thread_local_base, tib_size) != tib_size)
- {
- printf_filtered (_("Unable to read thread information "
- "block for %s at address %s\n"),
- target_pid_to_str (ptid),
- paddress (target_gdbarch (), thread_local_base));
- return -1;
- }
- printf_filtered (_("Thread Information Block %s at %s\n"),
- target_pid_to_str (ptid),
- paddress (target_gdbarch (), thread_local_base));
- index = (gdb_byte *) tib;
-
- for (i = 0; i < max; i++)
- {
- val = extract_unsigned_integer (index, size, byte_order);
- if (i < max_name)
- printf_filtered (_("%s is 0x%s\n"), TIB_NAME[i], phex (val, size));
- else if (val != 0)
- printf_filtered (_("TIB[0x%s] is 0x%s\n"), phex (i * size, 2),
- phex (val, size));
- index += size;
- }
- return 1;
- }
- static void
- display_tib (char * args, int from_tty)
- {
- if (args)
- {
- struct thread_info *tp;
- int gdb_id = value_as_long (parse_and_eval (args));
- tp = find_thread_id (gdb_id);
- if (!tp)
- error (_("Thread ID %d not known."), gdb_id);
- if (!target_thread_alive (tp->ptid))
- error (_("Thread ID %d has terminated."), gdb_id);
- display_one_tib (tp->ptid);
- }
- else if (!ptid_equal (inferior_ptid, null_ptid))
- display_one_tib (inferior_ptid);
- }
- void
- windows_xfer_shared_library (const char* so_name, CORE_ADDR load_addr,
- struct gdbarch *gdbarch, struct obstack *obstack)
- {
- char *p;
- struct bfd * dll;
- CORE_ADDR text_offset;
- obstack_grow_str (obstack, "<library name=\"");
- p = xml_escape_text (so_name);
- obstack_grow_str (obstack, p);
- xfree (p);
- obstack_grow_str (obstack, "\"><segment address=\"");
- dll = gdb_bfd_open_maybe_remote (so_name);
-
- text_offset = pe_text_section_offset (dll);
- gdb_bfd_unref (dll);
- obstack_grow_str (obstack, paddress (gdbarch, load_addr + text_offset));
- obstack_grow_str (obstack, "\"/></library>");
- }
- static void
- windows_iterate_over_objfiles_in_search_order
- (struct gdbarch *gdbarch,
- iterate_over_objfiles_in_search_order_cb_ftype *cb,
- void *cb_data, struct objfile *current_objfile)
- {
- int stop;
- struct objfile *objfile;
- if (current_objfile)
- {
- stop = cb (current_objfile, cb_data);
- if (stop)
- return;
- }
- ALL_OBJFILES (objfile)
- {
- if (objfile != current_objfile)
- {
- stop = cb (objfile, cb_data);
- if (stop)
- return;
- }
- }
- }
- static void
- show_maint_show_all_tib (struct ui_file *file, int from_tty,
- struct cmd_list_element *c, const char *value)
- {
- fprintf_filtered (file, _("Show all non-zero elements of "
- "Thread Information Block is %s.\n"), value);
- }
- static void
- info_w32_command (char *args, int from_tty)
- {
- help_list (info_w32_cmdlist, "info w32 ", class_info, gdb_stdout);
- }
- static int w32_prefix_command_valid = 0;
- void
- init_w32_command_list (void)
- {
- if (!w32_prefix_command_valid)
- {
- add_prefix_cmd ("w32", class_info, info_w32_command,
- _("Print information specific to Win32 debugging."),
- &info_w32_cmdlist, "info w32 ", 0, &infolist);
- w32_prefix_command_valid = 1;
- }
- }
- void
- windows_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
- {
-
- set_gdbarch_has_dos_based_file_system (gdbarch, 1);
- set_gdbarch_iterate_over_objfiles_in_search_order
- (gdbarch, windows_iterate_over_objfiles_in_search_order);
- set_solib_ops (gdbarch, &solib_target_so_ops);
- }
- extern initialize_file_ftype _initialize_windows_tdep;
- static const struct internalvar_funcs tlb_funcs =
- {
- tlb_make_value,
- NULL,
- NULL
- };
- void
- _initialize_windows_tdep (void)
- {
- init_w32_command_list ();
- add_cmd ("thread-information-block", class_info, display_tib,
- _("Display thread information block."),
- &info_w32_cmdlist);
- add_alias_cmd ("tib", "thread-information-block", class_info, 1,
- &info_w32_cmdlist);
- add_setshow_boolean_cmd ("show-all-tib", class_maintenance,
- &maint_display_all_tib, _("\
- Set whether to display all non-zero fields of thread information block."), _("\
- Show whether to display all non-zero fields of thread information block."), _("\
- Use \"on\" to enable, \"off\" to disable.\n\
- If enabled, all non-zero fields of thread information block are displayed,\n\
- even if their meaning is unknown."),
- NULL,
- show_maint_show_all_tib,
- &maintenance_set_cmdlist,
- &maintenance_show_cmdlist);
-
- create_internalvar_type_lazy ("_tlb", &tlb_funcs, NULL);
- }