1 /* Target-vector operations for controlling windows child processes, for GDB.
3 Copyright (C) 1995-2014 Free Software Foundation, Inc.
5 Contributed by Cygnus Solutions, A Red Hat Company.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 /* Originally by Steve Chamberlain, sac@cygnus.com */
25 #include "frame.h" /* required by inferior.h */
31 #include "completer.h"
35 #include <sys/types.h>
42 #include <sys/cygwin.h>
43 #include <cygwin/version.h>
47 #include "filenames.h"
51 #include "gdb_obstack.h"
52 #include "gdbthread.h"
58 #include "xml-support.h"
60 #include "i386-tdep.h"
61 #include "i387-tdep.h"
63 #include "windows-tdep.h"
64 #include "windows-nat.h"
66 #include "complaints.h"
67 #include "inf-child.h"
69 #define AdjustTokenPrivileges dyn_AdjustTokenPrivileges
70 #define DebugActiveProcessStop dyn_DebugActiveProcessStop
71 #define DebugBreakProcess dyn_DebugBreakProcess
72 #define DebugSetProcessKillOnExit dyn_DebugSetProcessKillOnExit
73 #define EnumProcessModules dyn_EnumProcessModules
74 #define GetModuleInformation dyn_GetModuleInformation
75 #define LookupPrivilegeValueA dyn_LookupPrivilegeValueA
76 #define OpenProcessToken dyn_OpenProcessToken
77 #define GetConsoleFontSize dyn_GetConsoleFontSize
78 #define GetCurrentConsoleFont dyn_GetCurrentConsoleFont
80 static BOOL WINAPI (*AdjustTokenPrivileges)(HANDLE, BOOL, PTOKEN_PRIVILEGES,
81 DWORD, PTOKEN_PRIVILEGES, PDWORD);
82 static BOOL WINAPI (*DebugActiveProcessStop) (DWORD);
83 static BOOL WINAPI (*DebugBreakProcess) (HANDLE);
84 static BOOL WINAPI (*DebugSetProcessKillOnExit) (BOOL);
85 static BOOL WINAPI (*EnumProcessModules) (HANDLE, HMODULE *, DWORD,
87 static BOOL WINAPI (*GetModuleInformation) (HANDLE, HMODULE, LPMODULEINFO,
89 static BOOL WINAPI (*LookupPrivilegeValueA)(LPCSTR, LPCSTR, PLUID);
90 static BOOL WINAPI (*OpenProcessToken)(HANDLE, DWORD, PHANDLE);
91 static BOOL WINAPI (*GetCurrentConsoleFont) (HANDLE, BOOL,
93 static COORD WINAPI (*GetConsoleFontSize) (HANDLE, DWORD);
97 #undef GetModuleFileNameEx
100 # define __PMAX (MAX_PATH + 1)
101 static DWORD WINAPI (*GetModuleFileNameEx) (HANDLE, HMODULE, LPSTR, DWORD);
102 # define STARTUPINFO STARTUPINFOA
103 # define CreateProcess CreateProcessA
104 # define GetModuleFileNameEx_name "GetModuleFileNameExA"
105 # define bad_GetModuleFileNameEx bad_GetModuleFileNameExA
107 # define __PMAX PATH_MAX
108 /* The starting and ending address of the cygwin1.dll text segment. */
109 static CORE_ADDR cygwin_load_start;
110 static CORE_ADDR cygwin_load_end;
112 typedef wchar_t cygwin_buf_t;
113 static DWORD WINAPI (*GetModuleFileNameEx) (HANDLE, HMODULE,
115 # define STARTUPINFO STARTUPINFOW
116 # define CreateProcess CreateProcessW
117 # define GetModuleFileNameEx_name "GetModuleFileNameExW"
118 # define bad_GetModuleFileNameEx bad_GetModuleFileNameExW
121 static int have_saved_context; /* True if we've saved context from a
123 static CONTEXT saved_context; /* Containes the saved context from a
126 /* If we're not using the old Cygwin header file set, define the
127 following which never should have been in the generic Win32 API
128 headers in the first place since they were our own invention... */
129 #ifndef _GNU_H_WINDOWS_H
132 FLAG_TRACE_BIT = 0x100,
133 CONTEXT_DEBUGGER = (CONTEXT_FULL | CONTEXT_FLOATING_POINT)
137 #ifndef CONTEXT_EXTENDED_REGISTERS
138 /* This macro is only defined on ia32. It only makes sense on this target,
139 so define it as zero if not already defined. */
140 #define CONTEXT_EXTENDED_REGISTERS 0
143 #define CONTEXT_DEBUGGER_DR CONTEXT_DEBUGGER | CONTEXT_DEBUG_REGISTERS \
144 | CONTEXT_EXTENDED_REGISTERS
146 static uintptr_t dr[8];
147 static int debug_registers_changed;
148 static int debug_registers_used;
150 static int windows_initialization_done;
151 #define DR6_CLEAR_VALUE 0xffff0ff0
153 /* The string sent by cygwin when it processes a signal.
154 FIXME: This should be in a cygwin include file. */
155 #ifndef _CYGWIN_SIGNAL_STRING
156 #define _CYGWIN_SIGNAL_STRING "cYgSiGw00f"
159 #define CHECK(x) check (x, __FILE__,__LINE__)
160 #define DEBUG_EXEC(x) if (debug_exec) printf_unfiltered x
161 #define DEBUG_EVENTS(x) if (debug_events) printf_unfiltered x
162 #define DEBUG_MEM(x) if (debug_memory) printf_unfiltered x
163 #define DEBUG_EXCEPT(x) if (debug_exceptions) printf_unfiltered x
165 static void windows_stop (struct target_ops *self, ptid_t);
166 static int windows_thread_alive (struct target_ops *, ptid_t);
167 static void windows_kill_inferior (struct target_ops *);
169 static void cygwin_set_dr (int i, CORE_ADDR addr);
170 static void cygwin_set_dr7 (unsigned long val);
171 static CORE_ADDR cygwin_get_dr (int i);
172 static unsigned long cygwin_get_dr6 (void);
173 static unsigned long cygwin_get_dr7 (void);
175 static enum gdb_signal last_sig = GDB_SIGNAL_0;
176 /* Set if a signal was received from the debugged process. */
178 /* Thread information structure used to track information that is
179 not available in gdb's thread structure. */
180 typedef struct thread_info_struct
182 struct thread_info_struct *next;
185 CORE_ADDR thread_local_base;
194 static thread_info thread_head;
196 /* The process and thread handles for the above context. */
198 static DEBUG_EVENT current_event; /* The current debug event from
200 static HANDLE current_process_handle; /* Currently executing process */
201 static thread_info *current_thread; /* Info on currently selected thread */
202 static DWORD main_thread_id; /* Thread ID of the main thread */
204 /* Counts of things. */
205 static int exception_count = 0;
206 static int event_count = 0;
207 static int saw_create;
208 static int open_process_used = 0;
211 static int new_console = 0;
213 static int cygwin_exceptions = 0;
215 static int new_group = 1;
216 static int debug_exec = 0; /* show execution */
217 static int debug_events = 0; /* show events from kernel */
218 static int debug_memory = 0; /* show target memory accesses */
219 static int debug_exceptions = 0; /* show target exceptions */
220 static int useshell = 0; /* use shell for subprocesses */
222 /* This vector maps GDB's idea of a register's number into an offset
223 in the windows exception context vector.
225 It also contains the bit mask needed to load the register in question.
227 The contents of this table can only be computed by the units
228 that provide CPU-specific support for Windows native debugging.
229 These units should set the table by calling
230 windows_set_context_register_offsets.
232 One day we could read a reg, we could inspect the context we
233 already have loaded, if it doesn't have the bit set that we need,
234 we read that set of registers in using GetThreadContext. If the
235 context already contains what we need, we just unpack it. Then to
236 write a register, first we have to ensure that the context contains
237 the other regs of the group, and then we copy the info in and set
240 static const int *mappings;
242 /* The function to use in order to determine whether a register is
243 a segment register or not. */
244 static segment_register_p_ftype *segment_register_p;
246 /* This vector maps the target's idea of an exception (extracted
247 from the DEBUG_EVENT structure) to GDB's idea. */
249 struct xlate_exception
255 static const struct xlate_exception
258 {EXCEPTION_ACCESS_VIOLATION, GDB_SIGNAL_SEGV},
259 {STATUS_STACK_OVERFLOW, GDB_SIGNAL_SEGV},
260 {EXCEPTION_BREAKPOINT, GDB_SIGNAL_TRAP},
261 {DBG_CONTROL_C, GDB_SIGNAL_INT},
262 {EXCEPTION_SINGLE_STEP, GDB_SIGNAL_TRAP},
263 {STATUS_FLOAT_DIVIDE_BY_ZERO, GDB_SIGNAL_FPE},
266 /* Set the MAPPINGS static global to OFFSETS.
267 See the description of MAPPINGS for more details. */
270 windows_set_context_register_offsets (const int *offsets)
275 /* See windows-nat.h. */
278 windows_set_segment_register_p (segment_register_p_ftype *fun)
280 segment_register_p = fun;
284 check (BOOL ok, const char *file, int line)
287 printf_filtered ("error return %s:%d was %u\n", file, line,
288 (unsigned) GetLastError ());
291 /* Find a thread record given a thread id. If GET_CONTEXT is not 0,
292 then also retrieve the context for this thread. If GET_CONTEXT is
293 negative, then don't suspend the thread. */
295 thread_rec (DWORD id, int get_context)
299 for (th = &thread_head; (th = th->next) != NULL;)
302 if (!th->suspended && get_context)
304 if (get_context > 0 && id != current_event.dwThreadId)
306 if (SuspendThread (th->h) == (DWORD) -1)
308 DWORD err = GetLastError ();
310 /* We get Access Denied (5) when trying to suspend
311 threads that Windows started on behalf of the
312 debuggee, usually when those threads are just
314 if (err != ERROR_ACCESS_DENIED)
315 warning (_("SuspendThread (tid=0x%x) failed."
317 (unsigned) id, (unsigned) err);
323 else if (get_context < 0)
325 th->reload_context = 1;
333 /* Add a thread to the thread list. */
335 windows_add_thread (ptid_t ptid, HANDLE h, void *tlb)
340 gdb_assert (ptid_get_tid (ptid) != 0);
342 id = ptid_get_tid (ptid);
344 if ((th = thread_rec (id, FALSE)))
347 th = XCNEW (thread_info);
350 th->thread_local_base = (CORE_ADDR) (uintptr_t) tlb;
351 th->next = thread_head.next;
352 thread_head.next = th;
354 /* Set the debug registers for the new thread if they are used. */
355 if (debug_registers_used)
357 /* Only change the value of the debug registers. */
358 th->context.ContextFlags = CONTEXT_DEBUG_REGISTERS;
359 CHECK (GetThreadContext (th->h, &th->context));
360 th->context.Dr0 = dr[0];
361 th->context.Dr1 = dr[1];
362 th->context.Dr2 = dr[2];
363 th->context.Dr3 = dr[3];
364 th->context.Dr6 = DR6_CLEAR_VALUE;
365 th->context.Dr7 = dr[7];
366 CHECK (SetThreadContext (th->h, &th->context));
367 th->context.ContextFlags = 0;
372 /* Clear out any old thread list and reintialize it to a
375 windows_init_thread_list (void)
377 thread_info *th = &thread_head;
379 DEBUG_EVENTS (("gdb: windows_init_thread_list\n"));
381 while (th->next != NULL)
383 thread_info *here = th->next;
384 th->next = here->next;
387 thread_head.next = NULL;
390 /* Delete a thread from the list of threads. */
392 windows_delete_thread (ptid_t ptid, DWORD exit_code)
397 gdb_assert (ptid_get_tid (ptid) != 0);
399 id = ptid_get_tid (ptid);
402 printf_unfiltered ("[Deleting %s]\n", target_pid_to_str (ptid));
403 else if (print_thread_events && id != main_thread_id)
404 printf_unfiltered (_("[%s exited with code %u]\n"),
405 target_pid_to_str (ptid), (unsigned) exit_code);
406 delete_thread (ptid);
408 for (th = &thread_head;
409 th->next != NULL && th->next->id != id;
413 if (th->next != NULL)
415 thread_info *here = th->next;
416 th->next = here->next;
422 do_windows_fetch_inferior_registers (struct regcache *regcache, int r)
424 char *context_offset = ((char *) ¤t_thread->context) + mappings[r];
425 struct gdbarch *gdbarch = get_regcache_arch (regcache);
426 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
430 return; /* Windows sometimes uses a non-existent thread id in its
433 if (current_thread->reload_context)
435 #ifdef __COPY_CONTEXT_SIZE
436 if (have_saved_context)
438 /* Lie about where the program actually is stopped since
439 cygwin has informed us that we should consider the signal
440 to have occurred at another location which is stored in
442 memcpy (¤t_thread->context, &saved_context,
443 __COPY_CONTEXT_SIZE);
444 have_saved_context = 0;
449 thread_info *th = current_thread;
450 th->context.ContextFlags = CONTEXT_DEBUGGER_DR;
451 CHECK (GetThreadContext (th->h, &th->context));
452 /* Copy dr values from that thread.
453 But only if there were not modified since last stop.
455 if (!debug_registers_changed)
457 dr[0] = th->context.Dr0;
458 dr[1] = th->context.Dr1;
459 dr[2] = th->context.Dr2;
460 dr[3] = th->context.Dr3;
461 dr[6] = th->context.Dr6;
462 dr[7] = th->context.Dr7;
465 current_thread->reload_context = 0;
468 if (r == I387_FISEG_REGNUM (tdep))
470 l = *((long *) context_offset) & 0xffff;
471 regcache_raw_supply (regcache, r, (char *) &l);
473 else if (r == I387_FOP_REGNUM (tdep))
475 l = (*((long *) context_offset) >> 16) & ((1 << 11) - 1);
476 regcache_raw_supply (regcache, r, (char *) &l);
478 else if (segment_register_p (r))
480 /* GDB treats segment registers as 32bit registers, but they are
481 in fact only 16 bits long. Make sure we do not read extra
482 bits from our source buffer. */
483 l = *((long *) context_offset) & 0xffff;
484 regcache_raw_supply (regcache, r, (char *) &l);
487 regcache_raw_supply (regcache, r, context_offset);
490 for (r = 0; r < gdbarch_num_regs (gdbarch); r++)
491 do_windows_fetch_inferior_registers (regcache, r);
496 windows_fetch_inferior_registers (struct target_ops *ops,
497 struct regcache *regcache, int r)
499 current_thread = thread_rec (ptid_get_tid (inferior_ptid), TRUE);
500 /* Check if current_thread exists. Windows sometimes uses a non-existent
501 thread id in its events. */
503 do_windows_fetch_inferior_registers (regcache, r);
507 do_windows_store_inferior_registers (const struct regcache *regcache, int r)
510 /* Windows sometimes uses a non-existent thread id in its events. */;
512 regcache_raw_collect (regcache, r,
513 ((char *) ¤t_thread->context) + mappings[r]);
516 for (r = 0; r < gdbarch_num_regs (get_regcache_arch (regcache)); r++)
517 do_windows_store_inferior_registers (regcache, r);
521 /* Store a new register value into the current thread context. */
523 windows_store_inferior_registers (struct target_ops *ops,
524 struct regcache *regcache, int r)
526 current_thread = thread_rec (ptid_get_tid (inferior_ptid), TRUE);
527 /* Check if current_thread exists. Windows sometimes uses a non-existent
528 thread id in its events. */
530 do_windows_store_inferior_registers (regcache, r);
533 /* Encapsulate the information required in a call to
534 symbol_file_add_args. */
535 struct safe_symbol_file_add_args
539 struct section_addr_info *addrs;
542 struct ui_file *err, *out;
546 /* Maintain a linked list of "so" information. */
552 static struct so_list solib_start, *solib_end;
554 /* Call symbol_file_add with stderr redirected. We don't care if there
557 safe_symbol_file_add_stub (void *argv)
559 #define p ((struct safe_symbol_file_add_args *) argv)
560 const int add_flags = ((p->from_tty ? SYMFILE_VERBOSE : 0)
561 | (p->mainline ? SYMFILE_MAINLINE : 0));
562 p->ret = symbol_file_add (p->name, add_flags, p->addrs, p->flags);
567 /* Restore gdb's stderr after calling symbol_file_add. */
569 safe_symbol_file_add_cleanup (void *p)
571 #define sp ((struct safe_symbol_file_add_args *)p)
572 gdb_flush (gdb_stderr);
573 gdb_flush (gdb_stdout);
574 ui_file_delete (gdb_stderr);
575 ui_file_delete (gdb_stdout);
576 gdb_stderr = sp->err;
577 gdb_stdout = sp->out;
581 /* symbol_file_add wrapper that prevents errors from being displayed. */
582 static struct objfile *
583 safe_symbol_file_add (char *name, int from_tty,
584 struct section_addr_info *addrs,
585 int mainline, int flags)
587 struct safe_symbol_file_add_args p;
588 struct cleanup *cleanup;
590 cleanup = make_cleanup (safe_symbol_file_add_cleanup, &p);
594 gdb_flush (gdb_stderr);
595 gdb_flush (gdb_stdout);
596 gdb_stderr = ui_file_new ();
597 gdb_stdout = ui_file_new ();
599 p.from_tty = from_tty;
601 p.mainline = mainline;
603 catch_errors (safe_symbol_file_add_stub, &p, "", RETURN_MASK_ERROR);
605 do_cleanups (cleanup);
609 static struct so_list *
610 windows_make_so (const char *name, LPVOID load_addr)
617 WIN32_FIND_DATA w32_fd;
618 HANDLE h = FindFirstFile(name, &w32_fd);
620 if (h == INVALID_HANDLE_VALUE)
626 if (GetCurrentDirectory (MAX_PATH + 1, cwd))
628 p = strrchr (buf, '\\');
631 SetCurrentDirectory (buf);
632 GetFullPathName (w32_fd.cFileName, MAX_PATH, buf, &p);
633 SetCurrentDirectory (cwd);
636 if (strcasecmp (buf, "ntdll.dll") == 0)
638 GetSystemDirectory (buf, sizeof (buf));
639 strcat (buf, "\\ntdll.dll");
642 cygwin_buf_t buf[__PMAX];
645 if (access (name, F_OK) != 0)
647 if (strcasecmp (name, "ntdll.dll") == 0)
650 GetSystemDirectoryW (buf, sizeof (buf) / sizeof (wchar_t));
651 wcscat (buf, L"\\ntdll.dll");
655 GetSystemDirectoryA (buf, sizeof (buf) / sizeof (wchar_t));
656 strcat (buf, "\\ntdll.dll");
661 so = XCNEW (struct so_list);
662 so->lm_info = (struct lm_info *) xmalloc (sizeof (struct lm_info));
663 so->lm_info->load_addr = load_addr;
664 strcpy (so->so_original_name, name);
666 strcpy (so->so_name, buf);
669 cygwin_conv_path (CCP_WIN_W_TO_POSIX, buf, so->so_name,
670 SO_NAME_MAX_PATH_SIZE);
673 char *rname = realpath (name, NULL);
674 if (rname && strlen (rname) < SO_NAME_MAX_PATH_SIZE)
676 strcpy (so->so_name, rname);
680 error (_("dll path too long"));
682 /* Record cygwin1.dll .text start/end. */
683 p = strchr (so->so_name, '\0') - (sizeof ("/cygwin1.dll") - 1);
684 if (p >= so->so_name && strcasecmp (p, "/cygwin1.dll") == 0)
687 asection *text = NULL;
690 abfd = gdb_bfd_open (so->so_name, "pei-i386", -1);
695 if (bfd_check_format (abfd, bfd_object))
696 text = bfd_get_section_by_name (abfd, ".text");
700 gdb_bfd_unref (abfd);
704 /* The symbols in a dll are offset by 0x1000, which is the
705 offset from 0 of the first byte in an image - because of the
706 file header and the section alignment. */
707 cygwin_load_start = (CORE_ADDR) (uintptr_t) ((char *)
709 cygwin_load_end = cygwin_load_start + bfd_section_size (abfd, text);
711 gdb_bfd_unref (abfd);
719 get_image_name (HANDLE h, void *address, int unicode)
722 static char buf[__PMAX];
724 static char buf[(2 * __PMAX) + 1];
726 DWORD size = unicode ? sizeof (WCHAR) : sizeof (char);
732 /* Attempt to read the name of the dll that was detected.
733 This is documented to work only when actively debugging
734 a program. It will not work for attached processes. */
738 /* See if we could read the address of a string, and that the
739 address isn't null. */
740 if (!ReadProcessMemory (h, address, &address_ptr,
741 sizeof (address_ptr), &done)
742 || done != sizeof (address_ptr) || !address_ptr)
745 /* Find the length of the string. */
746 while (ReadProcessMemory (h, address_ptr + len++ * size, &b, size, &done)
747 && (b[0] != 0 || b[size - 1] != 0) && done == size)
751 ReadProcessMemory (h, address_ptr, buf, len, &done);
754 WCHAR *unicode_address = (WCHAR *) alloca (len * sizeof (WCHAR));
755 ReadProcessMemory (h, address_ptr, unicode_address, len * sizeof (WCHAR),
758 wcstombs (buf, unicode_address, __PMAX);
760 WideCharToMultiByte (CP_ACP, 0, unicode_address, len, buf, sizeof buf,
768 /* Handle a DLL load event, and return 1.
770 This function assumes that this event did not occur during inferior
771 initialization, where their event info may be incomplete (see
772 do_initial_windows_stuff and windows_add_all_dlls for more info
773 on how we handle DLL loading during that phase). */
776 handle_load_dll (void *dummy)
778 LOAD_DLL_DEBUG_INFO *event = ¤t_event.u.LoadDll;
781 /* Try getting the DLL name via the lpImageName field of the event.
782 Note that Microsoft documents this fields as strictly optional,
783 in the sense that it might be NULL. And the first DLL event in
784 particular is explicitly documented as "likely not pass[ed]"
785 (source: MSDN LOAD_DLL_DEBUG_INFO structure). */
786 dll_name = get_image_name (current_process_handle,
787 event->lpImageName, event->fUnicode);
791 solib_end->next = windows_make_so (dll_name, event->lpBaseOfDll);
792 solib_end = solib_end->next;
794 DEBUG_EVENTS (("gdb: Loading dll \"%s\" at %s.\n", solib_end->so_name,
795 host_address_to_string (solib_end->lm_info->load_addr)));
801 windows_free_so (struct so_list *so)
808 /* Handle a DLL unload event.
809 Return 1 if successful, or zero otherwise.
811 This function assumes that this event did not occur during inferior
812 initialization, where their event info may be incomplete (see
813 do_initial_windows_stuff and windows_add_all_dlls for more info
814 on how we handle DLL loading during that phase). */
817 handle_unload_dll (void *dummy)
819 LPVOID lpBaseOfDll = current_event.u.UnloadDll.lpBaseOfDll;
822 for (so = &solib_start; so->next != NULL; so = so->next)
823 if (so->next->lm_info->load_addr == lpBaseOfDll)
825 struct so_list *sodel = so->next;
827 so->next = sodel->next;
830 DEBUG_EVENTS (("gdb: Unloading dll \"%s\".\n", sodel->so_name));
832 windows_free_so (sodel);
836 /* We did not find any DLL that was previously loaded at this address,
837 so register a complaint. We do not report an error, because we have
838 observed that this may be happening under some circumstances. For
839 instance, running 32bit applications on x64 Windows causes us to receive
840 4 mysterious UNLOAD_DLL_DEBUG_EVENTs during the startup phase (these
841 events are apparently caused by the WOW layer, the interface between
842 32bit and 64bit worlds). */
843 complaint (&symfile_complaints, _("dll starting at %s not found."),
844 host_address_to_string (lpBaseOfDll));
849 /* Clear list of loaded DLLs. */
851 windows_clear_solib (void)
853 solib_start.next = NULL;
854 solib_end = &solib_start;
857 /* Load DLL symbol info. */
859 dll_symbol_command (char *args, int from_tty)
865 error (_("dll-symbols requires a file name"));
868 if (n > 4 && strcasecmp (args + n - 4, ".dll") != 0)
870 char *newargs = (char *) alloca (n + 4 + 1);
871 strcpy (newargs, args);
872 strcat (newargs, ".dll");
876 safe_symbol_file_add (args, from_tty, NULL, 0, OBJF_SHARED | OBJF_USERLOADED);
879 /* Handle DEBUG_STRING output from child process.
880 Cygwin prepends its messages with a "cygwin:". Interpret this as
881 a Cygwin signal. Otherwise just print the string as a warning. */
883 handle_output_debug_string (struct target_waitstatus *ourstatus)
888 if (!target_read_string
889 ((CORE_ADDR) (uintptr_t) current_event.u.DebugString.lpDebugStringData,
893 else if (strncmp (s, _CYGWIN_SIGNAL_STRING,
894 sizeof (_CYGWIN_SIGNAL_STRING) - 1) != 0)
897 if (strncmp (s, "cYg", 3) != 0)
901 #ifdef __COPY_CONTEXT_SIZE
904 /* Got a cygwin signal marker. A cygwin signal is followed by
905 the signal number itself and then optionally followed by the
906 thread id and address to saved context within the DLL. If
907 these are supplied, then the given thread is assumed to have
908 issued the signal and the context from the thread is assumed
909 to be stored at the given address in the inferior. Tell gdb
910 to treat this like a real signal. */
912 int sig = strtol (s + sizeof (_CYGWIN_SIGNAL_STRING) - 1, &p, 0);
913 int gotasig = gdb_signal_from_host (sig);
915 ourstatus->value.sig = gotasig;
921 ourstatus->kind = TARGET_WAITKIND_STOPPED;
922 retval = strtoul (p, &p, 0);
924 retval = main_thread_id;
925 else if ((x = (LPCVOID) (uintptr_t) strtoull (p, NULL, 0))
926 && ReadProcessMemory (current_process_handle, x,
928 __COPY_CONTEXT_SIZE, &n)
929 && n == __COPY_CONTEXT_SIZE)
930 have_saved_context = 1;
931 current_event.dwThreadId = retval;
942 display_selector (HANDLE thread, DWORD sel)
945 if (GetThreadSelectorEntry (thread, sel, &info))
948 printf_filtered ("0x%03x: ", (unsigned) sel);
949 if (!info.HighWord.Bits.Pres)
951 puts_filtered ("Segment not present\n");
954 base = (info.HighWord.Bits.BaseHi << 24) +
955 (info.HighWord.Bits.BaseMid << 16)
957 limit = (info.HighWord.Bits.LimitHi << 16) + info.LimitLow;
958 if (info.HighWord.Bits.Granularity)
959 limit = (limit << 12) | 0xfff;
960 printf_filtered ("base=0x%08x limit=0x%08x", base, limit);
961 if (info.HighWord.Bits.Default_Big)
962 puts_filtered(" 32-bit ");
964 puts_filtered(" 16-bit ");
965 switch ((info.HighWord.Bits.Type & 0xf) >> 1)
968 puts_filtered ("Data (Read-Only, Exp-up");
971 puts_filtered ("Data (Read/Write, Exp-up");
974 puts_filtered ("Unused segment (");
977 puts_filtered ("Data (Read/Write, Exp-down");
980 puts_filtered ("Code (Exec-Only, N.Conf");
983 puts_filtered ("Code (Exec/Read, N.Conf");
986 puts_filtered ("Code (Exec-Only, Conf");
989 puts_filtered ("Code (Exec/Read, Conf");
992 printf_filtered ("Unknown type 0x%x",info.HighWord.Bits.Type);
994 if ((info.HighWord.Bits.Type & 0x1) == 0)
995 puts_filtered(", N.Acc");
996 puts_filtered (")\n");
997 if ((info.HighWord.Bits.Type & 0x10) == 0)
998 puts_filtered("System selector ");
999 printf_filtered ("Priviledge level = %d. ", info.HighWord.Bits.Dpl);
1000 if (info.HighWord.Bits.Granularity)
1001 puts_filtered ("Page granular.\n");
1003 puts_filtered ("Byte granular.\n");
1008 DWORD err = GetLastError ();
1009 if (err == ERROR_NOT_SUPPORTED)
1010 printf_filtered ("Function not supported\n");
1012 printf_filtered ("Invalid selector 0x%x.\n", (unsigned) sel);
1018 display_selectors (char * args, int from_tty)
1020 if (!current_thread)
1022 puts_filtered ("Impossible to display selectors now.\n");
1028 puts_filtered ("Selector $cs\n");
1029 display_selector (current_thread->h,
1030 current_thread->context.SegCs);
1031 puts_filtered ("Selector $ds\n");
1032 display_selector (current_thread->h,
1033 current_thread->context.SegDs);
1034 puts_filtered ("Selector $es\n");
1035 display_selector (current_thread->h,
1036 current_thread->context.SegEs);
1037 puts_filtered ("Selector $ss\n");
1038 display_selector (current_thread->h,
1039 current_thread->context.SegSs);
1040 puts_filtered ("Selector $fs\n");
1041 display_selector (current_thread->h,
1042 current_thread->context.SegFs);
1043 puts_filtered ("Selector $gs\n");
1044 display_selector (current_thread->h,
1045 current_thread->context.SegGs);
1050 sel = parse_and_eval_long (args);
1051 printf_filtered ("Selector \"%s\"\n",args);
1052 display_selector (current_thread->h, sel);
1056 #define DEBUG_EXCEPTION_SIMPLE(x) if (debug_exceptions) \
1057 printf_unfiltered ("gdb: Target exception %s at %s\n", x, \
1058 host_address_to_string (\
1059 current_event.u.Exception.ExceptionRecord.ExceptionAddress))
1062 handle_exception (struct target_waitstatus *ourstatus)
1065 DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode;
1067 ourstatus->kind = TARGET_WAITKIND_STOPPED;
1069 /* Record the context of the current thread. */
1070 th = thread_rec (current_event.dwThreadId, -1);
1074 case EXCEPTION_ACCESS_VIOLATION:
1075 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ACCESS_VIOLATION");
1076 ourstatus->value.sig = GDB_SIGNAL_SEGV;
1079 /* See if the access violation happened within the cygwin DLL
1080 itself. Cygwin uses a kind of exception handling to deal
1081 with passed-in invalid addresses. gdb should not treat
1082 these as real SEGVs since they will be silently handled by
1083 cygwin. A real SEGV will (theoretically) be caught by
1084 cygwin later in the process and will be sent as a
1085 cygwin-specific-signal. So, ignore SEGVs if they show up
1086 within the text segment of the DLL itself. */
1088 CORE_ADDR addr = (CORE_ADDR) (uintptr_t)
1089 current_event.u.Exception.ExceptionRecord.ExceptionAddress;
1091 if ((!cygwin_exceptions && (addr >= cygwin_load_start
1092 && addr < cygwin_load_end))
1093 || (find_pc_partial_function (addr, &fn, NULL, NULL)
1094 && strncmp (fn, "KERNEL32!IsBad",
1095 strlen ("KERNEL32!IsBad")) == 0))
1100 case STATUS_STACK_OVERFLOW:
1101 DEBUG_EXCEPTION_SIMPLE ("STATUS_STACK_OVERFLOW");
1102 ourstatus->value.sig = GDB_SIGNAL_SEGV;
1104 case STATUS_FLOAT_DENORMAL_OPERAND:
1105 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DENORMAL_OPERAND");
1106 ourstatus->value.sig = GDB_SIGNAL_FPE;
1108 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
1109 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ARRAY_BOUNDS_EXCEEDED");
1110 ourstatus->value.sig = GDB_SIGNAL_FPE;
1112 case STATUS_FLOAT_INEXACT_RESULT:
1113 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INEXACT_RESULT");
1114 ourstatus->value.sig = GDB_SIGNAL_FPE;
1116 case STATUS_FLOAT_INVALID_OPERATION:
1117 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INVALID_OPERATION");
1118 ourstatus->value.sig = GDB_SIGNAL_FPE;
1120 case STATUS_FLOAT_OVERFLOW:
1121 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_OVERFLOW");
1122 ourstatus->value.sig = GDB_SIGNAL_FPE;
1124 case STATUS_FLOAT_STACK_CHECK:
1125 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_STACK_CHECK");
1126 ourstatus->value.sig = GDB_SIGNAL_FPE;
1128 case STATUS_FLOAT_UNDERFLOW:
1129 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_UNDERFLOW");
1130 ourstatus->value.sig = GDB_SIGNAL_FPE;
1132 case STATUS_FLOAT_DIVIDE_BY_ZERO:
1133 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DIVIDE_BY_ZERO");
1134 ourstatus->value.sig = GDB_SIGNAL_FPE;
1136 case STATUS_INTEGER_DIVIDE_BY_ZERO:
1137 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_DIVIDE_BY_ZERO");
1138 ourstatus->value.sig = GDB_SIGNAL_FPE;
1140 case STATUS_INTEGER_OVERFLOW:
1141 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_OVERFLOW");
1142 ourstatus->value.sig = GDB_SIGNAL_FPE;
1144 case EXCEPTION_BREAKPOINT:
1145 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_BREAKPOINT");
1146 ourstatus->value.sig = GDB_SIGNAL_TRAP;
1149 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_C");
1150 ourstatus->value.sig = GDB_SIGNAL_INT;
1152 case DBG_CONTROL_BREAK:
1153 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_BREAK");
1154 ourstatus->value.sig = GDB_SIGNAL_INT;
1156 case EXCEPTION_SINGLE_STEP:
1157 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_SINGLE_STEP");
1158 ourstatus->value.sig = GDB_SIGNAL_TRAP;
1160 case EXCEPTION_ILLEGAL_INSTRUCTION:
1161 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ILLEGAL_INSTRUCTION");
1162 ourstatus->value.sig = GDB_SIGNAL_ILL;
1164 case EXCEPTION_PRIV_INSTRUCTION:
1165 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_PRIV_INSTRUCTION");
1166 ourstatus->value.sig = GDB_SIGNAL_ILL;
1168 case EXCEPTION_NONCONTINUABLE_EXCEPTION:
1169 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_NONCONTINUABLE_EXCEPTION");
1170 ourstatus->value.sig = GDB_SIGNAL_ILL;
1173 /* Treat unhandled first chance exceptions specially. */
1174 if (current_event.u.Exception.dwFirstChance)
1176 printf_unfiltered ("gdb: unknown target exception 0x%08x at %s\n",
1177 (unsigned) current_event.u.Exception.ExceptionRecord.ExceptionCode,
1178 host_address_to_string (
1179 current_event.u.Exception.ExceptionRecord.ExceptionAddress));
1180 ourstatus->value.sig = GDB_SIGNAL_UNKNOWN;
1184 last_sig = ourstatus->value.sig;
1188 /* Resume thread specified by ID, or all artificially suspended
1189 threads, if we are continuing execution. KILLED non-zero means we
1190 have killed the inferior, so we should ignore weird errors due to
1191 threads shutting down. */
1193 windows_continue (DWORD continue_status, int id, int killed)
1199 DEBUG_EVENTS (("ContinueDebugEvent (cpid=%d, ctid=0x%x, %s);\n",
1200 (unsigned) current_event.dwProcessId,
1201 (unsigned) current_event.dwThreadId,
1202 continue_status == DBG_CONTINUE ?
1203 "DBG_CONTINUE" : "DBG_EXCEPTION_NOT_HANDLED"));
1205 for (th = &thread_head; (th = th->next) != NULL;)
1206 if ((id == -1 || id == (int) th->id)
1209 if (debug_registers_changed)
1211 th->context.ContextFlags |= CONTEXT_DEBUG_REGISTERS;
1212 th->context.Dr0 = dr[0];
1213 th->context.Dr1 = dr[1];
1214 th->context.Dr2 = dr[2];
1215 th->context.Dr3 = dr[3];
1216 th->context.Dr6 = DR6_CLEAR_VALUE;
1217 th->context.Dr7 = dr[7];
1219 if (th->context.ContextFlags)
1223 if (GetExitCodeThread (th->h, &ec)
1224 && ec == STILL_ACTIVE)
1226 BOOL status = SetThreadContext (th->h, &th->context);
1231 th->context.ContextFlags = 0;
1233 if (th->suspended > 0)
1234 (void) ResumeThread (th->h);
1238 res = ContinueDebugEvent (current_event.dwProcessId,
1239 current_event.dwThreadId,
1242 debug_registers_changed = 0;
1246 /* Called in pathological case where Windows fails to send a
1247 CREATE_PROCESS_DEBUG_EVENT after an attach. */
1249 fake_create_process (void)
1251 current_process_handle = OpenProcess (PROCESS_ALL_ACCESS, FALSE,
1252 current_event.dwProcessId);
1253 if (current_process_handle != NULL)
1254 open_process_used = 1;
1257 error (_("OpenProcess call failed, GetLastError = %u"),
1258 (unsigned) GetLastError ());
1259 /* We can not debug anything in that case. */
1261 main_thread_id = current_event.dwThreadId;
1262 current_thread = windows_add_thread (
1263 ptid_build (current_event.dwProcessId, 0,
1264 current_event.dwThreadId),
1265 current_event.u.CreateThread.hThread,
1266 current_event.u.CreateThread.lpThreadLocalBase);
1267 return main_thread_id;
1271 windows_resume (struct target_ops *ops,
1272 ptid_t ptid, int step, enum gdb_signal sig)
1275 DWORD continue_status = DBG_CONTINUE;
1277 /* A specific PTID means `step only this thread id'. */
1278 int resume_all = ptid_equal (ptid, minus_one_ptid);
1280 /* If we're continuing all threads, it's the current inferior that
1281 should be handled specially. */
1283 ptid = inferior_ptid;
1285 if (sig != GDB_SIGNAL_0)
1287 if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
1289 DEBUG_EXCEPT(("Cannot continue with signal %d here.\n",sig));
1291 else if (sig == last_sig)
1292 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1295 /* This code does not seem to work, because
1296 the kernel does probably not consider changes in the ExceptionRecord
1297 structure when passing the exception to the inferior.
1298 Note that this seems possible in the exception handler itself. */
1301 for (i = 0; xlate[i].them != -1; i++)
1302 if (xlate[i].us == sig)
1304 current_event.u.Exception.ExceptionRecord.ExceptionCode
1306 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1309 if (continue_status == DBG_CONTINUE)
1311 DEBUG_EXCEPT(("Cannot continue with signal %d.\n",sig));
1315 DEBUG_EXCEPT(("Can only continue with recieved signal %d.\n",
1319 last_sig = GDB_SIGNAL_0;
1321 DEBUG_EXEC (("gdb: windows_resume (pid=%d, tid=%ld, step=%d, sig=%d);\n",
1322 ptid_get_pid (ptid), ptid_get_tid (ptid), step, sig));
1324 /* Get context for currently selected thread. */
1325 th = thread_rec (ptid_get_tid (inferior_ptid), FALSE);
1330 /* Single step by setting t bit. */
1331 struct regcache *regcache = get_current_regcache ();
1332 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1333 windows_fetch_inferior_registers (ops, regcache,
1334 gdbarch_ps_regnum (gdbarch));
1335 th->context.EFlags |= FLAG_TRACE_BIT;
1338 if (th->context.ContextFlags)
1340 if (debug_registers_changed)
1342 th->context.Dr0 = dr[0];
1343 th->context.Dr1 = dr[1];
1344 th->context.Dr2 = dr[2];
1345 th->context.Dr3 = dr[3];
1346 th->context.Dr6 = DR6_CLEAR_VALUE;
1347 th->context.Dr7 = dr[7];
1349 CHECK (SetThreadContext (th->h, &th->context));
1350 th->context.ContextFlags = 0;
1354 /* Allow continuing with the same signal that interrupted us.
1355 Otherwise complain. */
1358 windows_continue (continue_status, -1, 0);
1360 windows_continue (continue_status, ptid_get_tid (ptid), 0);
1363 /* Ctrl-C handler used when the inferior is not run in the same console. The
1364 handler is in charge of interrupting the inferior using DebugBreakProcess.
1365 Note that this function is not available prior to Windows XP. In this case
1366 we emit a warning. */
1368 ctrl_c_handler (DWORD event_type)
1370 const int attach_flag = current_inferior ()->attach_flag;
1372 /* Only handle Ctrl-C and Ctrl-Break events. Ignore others. */
1373 if (event_type != CTRL_C_EVENT && event_type != CTRL_BREAK_EVENT)
1376 /* If the inferior and the debugger share the same console, do nothing as
1377 the inferior has also received the Ctrl-C event. */
1378 if (!new_console && !attach_flag)
1381 if (!DebugBreakProcess (current_process_handle))
1382 warning (_("Could not interrupt program. "
1383 "Press Ctrl-c in the program console."));
1385 /* Return true to tell that Ctrl-C has been handled. */
1389 /* Get the next event from the child. Return 1 if the event requires
1390 handling by WFI (or whatever). */
1392 get_windows_debug_event (struct target_ops *ops,
1393 int pid, struct target_waitstatus *ourstatus)
1396 DWORD continue_status, event_code;
1398 static thread_info dummy_thread_info;
1401 last_sig = GDB_SIGNAL_0;
1403 if (!(debug_event = WaitForDebugEvent (¤t_event, 1000)))
1407 continue_status = DBG_CONTINUE;
1409 event_code = current_event.dwDebugEventCode;
1410 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1412 have_saved_context = 0;
1416 case CREATE_THREAD_DEBUG_EVENT:
1417 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1418 (unsigned) current_event.dwProcessId,
1419 (unsigned) current_event.dwThreadId,
1420 "CREATE_THREAD_DEBUG_EVENT"));
1421 if (saw_create != 1)
1423 struct inferior *inf;
1424 inf = find_inferior_pid (current_event.dwProcessId);
1425 if (!saw_create && inf->attach_flag)
1427 /* Kludge around a Windows bug where first event is a create
1428 thread event. Caused when attached process does not have
1430 retval = fake_create_process ();
1436 /* Record the existence of this thread. */
1437 retval = current_event.dwThreadId;
1438 th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
1439 current_event.dwThreadId),
1440 current_event.u.CreateThread.hThread,
1441 current_event.u.CreateThread.lpThreadLocalBase);
1445 case EXIT_THREAD_DEBUG_EVENT:
1446 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1447 (unsigned) current_event.dwProcessId,
1448 (unsigned) current_event.dwThreadId,
1449 "EXIT_THREAD_DEBUG_EVENT"));
1451 if (current_event.dwThreadId != main_thread_id)
1453 windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
1454 current_event.dwThreadId),
1455 current_event.u.ExitThread.dwExitCode);
1456 th = &dummy_thread_info;
1460 case CREATE_PROCESS_DEBUG_EVENT:
1461 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1462 (unsigned) current_event.dwProcessId,
1463 (unsigned) current_event.dwThreadId,
1464 "CREATE_PROCESS_DEBUG_EVENT"));
1465 CloseHandle (current_event.u.CreateProcessInfo.hFile);
1466 if (++saw_create != 1)
1469 current_process_handle = current_event.u.CreateProcessInfo.hProcess;
1471 windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
1474 main_thread_id = current_event.dwThreadId;
1475 /* Add the main thread. */
1476 th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
1477 current_event.dwThreadId),
1478 current_event.u.CreateProcessInfo.hThread,
1479 current_event.u.CreateProcessInfo.lpThreadLocalBase);
1480 retval = current_event.dwThreadId;
1483 case EXIT_PROCESS_DEBUG_EVENT:
1484 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1485 (unsigned) current_event.dwProcessId,
1486 (unsigned) current_event.dwThreadId,
1487 "EXIT_PROCESS_DEBUG_EVENT"));
1488 if (!windows_initialization_done)
1490 target_terminal_ours ();
1491 target_mourn_inferior ();
1492 error (_("During startup program exited with code 0x%x."),
1493 (unsigned int) current_event.u.ExitProcess.dwExitCode);
1495 else if (saw_create == 1)
1497 ourstatus->kind = TARGET_WAITKIND_EXITED;
1498 ourstatus->value.integer = current_event.u.ExitProcess.dwExitCode;
1499 retval = main_thread_id;
1503 case LOAD_DLL_DEBUG_EVENT:
1504 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1505 (unsigned) current_event.dwProcessId,
1506 (unsigned) current_event.dwThreadId,
1507 "LOAD_DLL_DEBUG_EVENT"));
1508 CloseHandle (current_event.u.LoadDll.hFile);
1509 if (saw_create != 1 || ! windows_initialization_done)
1511 catch_errors (handle_load_dll, NULL, (char *) "", RETURN_MASK_ALL);
1512 ourstatus->kind = TARGET_WAITKIND_LOADED;
1513 ourstatus->value.integer = 0;
1514 retval = main_thread_id;
1517 case UNLOAD_DLL_DEBUG_EVENT:
1518 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1519 (unsigned) current_event.dwProcessId,
1520 (unsigned) current_event.dwThreadId,
1521 "UNLOAD_DLL_DEBUG_EVENT"));
1522 if (saw_create != 1 || ! windows_initialization_done)
1524 catch_errors (handle_unload_dll, NULL, (char *) "", RETURN_MASK_ALL);
1525 ourstatus->kind = TARGET_WAITKIND_LOADED;
1526 ourstatus->value.integer = 0;
1527 retval = main_thread_id;
1530 case EXCEPTION_DEBUG_EVENT:
1531 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1532 (unsigned) current_event.dwProcessId,
1533 (unsigned) current_event.dwThreadId,
1534 "EXCEPTION_DEBUG_EVENT"));
1535 if (saw_create != 1)
1537 switch (handle_exception (ourstatus))
1540 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1543 retval = current_event.dwThreadId;
1547 continue_status = -1;
1552 case OUTPUT_DEBUG_STRING_EVENT: /* Message from the kernel. */
1553 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1554 (unsigned) current_event.dwProcessId,
1555 (unsigned) current_event.dwThreadId,
1556 "OUTPUT_DEBUG_STRING_EVENT"));
1557 if (saw_create != 1)
1559 retval = handle_output_debug_string (ourstatus);
1563 if (saw_create != 1)
1565 printf_unfiltered ("gdb: kernel event for pid=%u tid=0x%x\n",
1566 (unsigned) current_event.dwProcessId,
1567 (unsigned) current_event.dwThreadId);
1568 printf_unfiltered (" unknown event code %u\n",
1569 (unsigned) current_event.dwDebugEventCode);
1573 if (!retval || saw_create != 1)
1575 if (continue_status == -1)
1576 windows_resume (ops, minus_one_ptid, 0, 1);
1578 CHECK (windows_continue (continue_status, -1, 0));
1582 inferior_ptid = ptid_build (current_event.dwProcessId, 0,
1584 current_thread = th ?: thread_rec (current_event.dwThreadId, TRUE);
1591 /* Wait for interesting events to occur in the target process. */
1593 windows_wait (struct target_ops *ops,
1594 ptid_t ptid, struct target_waitstatus *ourstatus, int options)
1598 target_terminal_ours ();
1600 /* We loop when we get a non-standard exception rather than return
1601 with a SPURIOUS because resume can try and step or modify things,
1602 which needs a current_thread->h. But some of these exceptions mark
1603 the birth or death of threads, which mean that the current thread
1604 isn't necessarily what you think it is. */
1610 /* If the user presses Ctrl-c while the debugger is waiting
1611 for an event, he expects the debugger to interrupt his program
1612 and to get the prompt back. There are two possible situations:
1614 - The debugger and the program do not share the console, in
1615 which case the Ctrl-c event only reached the debugger.
1616 In that case, the ctrl_c handler will take care of interrupting
1617 the inferior. Note that this case is working starting with
1618 Windows XP. For Windows 2000, Ctrl-C should be pressed in the
1621 - The debugger and the program share the same console, in which
1622 case both debugger and inferior will receive the Ctrl-c event.
1623 In that case the ctrl_c handler will ignore the event, as the
1624 Ctrl-c event generated inside the inferior will trigger the
1625 expected debug event.
1627 FIXME: brobecker/2008-05-20: If the inferior receives the
1628 signal first and the delay until GDB receives that signal
1629 is sufficiently long, GDB can sometimes receive the SIGINT
1630 after we have unblocked the CTRL+C handler. This would
1631 lead to the debugger stopping prematurely while handling
1632 the new-thread event that comes with the handling of the SIGINT
1633 inside the inferior, and then stop again immediately when
1634 the user tries to resume the execution in the inferior.
1635 This is a classic race that we should try to fix one day. */
1636 SetConsoleCtrlHandler (&ctrl_c_handler, TRUE);
1637 retval = get_windows_debug_event (ops, pid, ourstatus);
1638 SetConsoleCtrlHandler (&ctrl_c_handler, FALSE);
1641 return ptid_build (current_event.dwProcessId, 0, retval);
1646 if (deprecated_ui_loop_hook != NULL)
1647 detach = deprecated_ui_loop_hook (0);
1650 windows_kill_inferior (ops);
1655 /* Iterate over all DLLs currently mapped by our inferior, and
1656 add them to our list of solibs. */
1659 windows_add_all_dlls (void)
1662 HMODULE dummy_hmodule;
1667 if (EnumProcessModules (current_process_handle, &dummy_hmodule,
1668 sizeof (HMODULE), &cb_needed) == 0)
1674 hmodules = (HMODULE *) alloca (cb_needed);
1675 if (EnumProcessModules (current_process_handle, hmodules,
1676 cb_needed, &cb_needed) == 0)
1679 for (i = 1; i < (int) (cb_needed / sizeof (HMODULE)); i++)
1683 wchar_t dll_name[__PMAX];
1686 char dll_name[__PMAX];
1689 if (GetModuleInformation (current_process_handle, hmodules[i],
1690 &mi, sizeof (mi)) == 0)
1692 if (GetModuleFileNameEx (current_process_handle, hmodules[i],
1693 dll_name, sizeof (dll_name)) == 0)
1696 wcstombs (name, dll_name, __PMAX);
1701 solib_end->next = windows_make_so (name, mi.lpBaseOfDll);
1702 solib_end = solib_end->next;
1707 do_initial_windows_stuff (struct target_ops *ops, DWORD pid, int attaching)
1709 extern int stop_after_trap;
1711 struct inferior *inf;
1712 struct thread_info *tp;
1714 last_sig = GDB_SIGNAL_0;
1716 exception_count = 0;
1717 open_process_used = 0;
1718 debug_registers_changed = 0;
1719 debug_registers_used = 0;
1720 for (i = 0; i < sizeof (dr) / sizeof (dr[0]); i++)
1723 cygwin_load_start = cygwin_load_end = 0;
1725 current_event.dwProcessId = pid;
1726 memset (¤t_event, 0, sizeof (current_event));
1727 if (!target_is_pushed (ops))
1729 disable_breakpoints_in_shlibs ();
1730 windows_clear_solib ();
1731 clear_proceed_status (0);
1732 init_wait_for_inferior ();
1734 inf = current_inferior ();
1735 inferior_appeared (inf, pid);
1736 inf->attach_flag = attaching;
1738 /* Make the new process the current inferior, so terminal handling
1739 can rely on it. When attaching, we don't know about any thread
1740 id here, but that's OK --- nothing should be referencing the
1741 current thread until we report an event out of windows_wait. */
1742 inferior_ptid = pid_to_ptid (pid);
1744 target_terminal_init ();
1745 target_terminal_inferior ();
1747 windows_initialization_done = 0;
1748 inf->control.stop_soon = STOP_QUIETLY;
1751 stop_after_trap = 1;
1752 wait_for_inferior ();
1753 tp = inferior_thread ();
1754 if (tp->suspend.stop_signal != GDB_SIGNAL_TRAP)
1755 resume (0, tp->suspend.stop_signal);
1760 /* Now that the inferior has been started and all DLLs have been mapped,
1761 we can iterate over all DLLs and load them in.
1763 We avoid doing it any earlier because, on certain versions of Windows,
1764 LOAD_DLL_DEBUG_EVENTs are sometimes not complete. In particular,
1765 we have seen on Windows 8.1 that the ntdll.dll load event does not
1766 include the DLL name, preventing us from creating an associated SO.
1767 A possible explanation is that ntdll.dll might be mapped before
1768 the SO info gets created by the Windows system -- ntdll.dll is
1769 the first DLL to be reported via LOAD_DLL_DEBUG_EVENT and other DLLs
1770 do not seem to suffer from that problem.
1772 Rather than try to work around this sort of issue, it is much
1773 simpler to just ignore DLL load/unload events during the startup
1774 phase, and then process them all in one batch now. */
1775 windows_add_all_dlls ();
1777 windows_initialization_done = 1;
1778 inf->control.stop_soon = NO_STOP_QUIETLY;
1779 stop_after_trap = 0;
1783 /* Try to set or remove a user privilege to the current process. Return -1
1784 if that fails, the previous setting of that privilege otherwise.
1786 This code is copied from the Cygwin source code and rearranged to allow
1787 dynamically loading of the needed symbols from advapi32 which is only
1788 available on NT/2K/XP. */
1790 set_process_privilege (const char *privilege, BOOL enable)
1792 HANDLE token_hdl = NULL;
1794 TOKEN_PRIVILEGES new_priv, orig_priv;
1798 if (!OpenProcessToken (GetCurrentProcess (),
1799 TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES,
1803 if (!LookupPrivilegeValueA (NULL, privilege, &restore_priv))
1806 new_priv.PrivilegeCount = 1;
1807 new_priv.Privileges[0].Luid = restore_priv;
1808 new_priv.Privileges[0].Attributes = enable ? SE_PRIVILEGE_ENABLED : 0;
1810 if (!AdjustTokenPrivileges (token_hdl, FALSE, &new_priv,
1811 sizeof orig_priv, &orig_priv, &size))
1814 /* Disabled, otherwise every `attach' in an unprivileged user session
1815 would raise the "Failed to get SE_DEBUG_NAME privilege" warning in
1816 windows_attach(). */
1817 /* AdjustTokenPrivileges returns TRUE even if the privilege could not
1818 be enabled. GetLastError () returns an correct error code, though. */
1819 if (enable && GetLastError () == ERROR_NOT_ALL_ASSIGNED)
1823 ret = orig_priv.Privileges[0].Attributes == SE_PRIVILEGE_ENABLED ? 1 : 0;
1827 CloseHandle (token_hdl);
1832 /* Attach to process PID, then initialize for debugging it. */
1834 windows_attach (struct target_ops *ops, const char *args, int from_tty)
1839 pid = parse_pid_to_attach (args);
1841 if (set_process_privilege (SE_DEBUG_NAME, TRUE) < 0)
1843 printf_unfiltered ("Warning: Failed to get SE_DEBUG_NAME privilege\n");
1844 printf_unfiltered ("This can cause attach to "
1845 "fail on Windows NT/2K/XP\n");
1848 windows_init_thread_list ();
1849 ok = DebugActiveProcess (pid);
1855 /* Try fall back to Cygwin pid. */
1856 pid = cygwin_internal (CW_CYGWIN_PID_TO_WINPID, pid);
1859 ok = DebugActiveProcess (pid);
1864 error (_("Can't attach to process."));
1866 DebugSetProcessKillOnExit (FALSE);
1870 char *exec_file = (char *) get_exec_file (0);
1873 printf_unfiltered ("Attaching to program `%s', %s\n", exec_file,
1874 target_pid_to_str (pid_to_ptid (pid)));
1876 printf_unfiltered ("Attaching to %s\n",
1877 target_pid_to_str (pid_to_ptid (pid)));
1879 gdb_flush (gdb_stdout);
1882 do_initial_windows_stuff (ops, pid, 1);
1883 target_terminal_ours ();
1887 windows_detach (struct target_ops *ops, const char *args, int from_tty)
1892 windows_resume (ops, ptid, 0, GDB_SIGNAL_0);
1894 if (!DebugActiveProcessStop (current_event.dwProcessId))
1896 error (_("Can't detach process %u (error %u)"),
1897 (unsigned) current_event.dwProcessId, (unsigned) GetLastError ());
1900 DebugSetProcessKillOnExit (FALSE);
1902 if (detached && from_tty)
1904 char *exec_file = get_exec_file (0);
1907 printf_unfiltered ("Detaching from program: %s, Pid %u\n", exec_file,
1908 (unsigned) current_event.dwProcessId);
1909 gdb_flush (gdb_stdout);
1912 x86_cleanup_dregs ();
1913 inferior_ptid = null_ptid;
1914 detach_inferior (current_event.dwProcessId);
1916 inf_child_maybe_unpush_target (ops);
1919 /* Try to determine the executable filename.
1921 EXE_NAME_RET is a pointer to a buffer whose size is EXE_NAME_MAX_LEN.
1923 Upon success, the filename is stored inside EXE_NAME_RET, and
1924 this function returns nonzero.
1926 Otherwise, this function returns zero and the contents of
1927 EXE_NAME_RET is undefined. */
1930 windows_get_exec_module_filename (char *exe_name_ret, size_t exe_name_max_len)
1937 if (!EnumProcessModules (current_process_handle, &dh_buf,
1938 sizeof (HMODULE), &cbNeeded) || !cbNeeded)
1941 /* We know the executable is always first in the list of modules,
1942 which we just fetched. So no need to fetch more. */
1946 /* Cygwin prefers that the path be in /x/y/z format, so extract
1947 the filename into a temporary buffer first, and then convert it
1948 to POSIX format into the destination buffer. */
1949 cygwin_buf_t *pathbuf = alloca (exe_name_max_len * sizeof (cygwin_buf_t));
1951 len = GetModuleFileNameEx (current_process_handle,
1952 dh_buf, pathbuf, exe_name_max_len);
1954 error (_("Error getting executable filename: %u."),
1955 (unsigned) GetLastError ());
1956 if (cygwin_conv_path (CCP_WIN_W_TO_POSIX, pathbuf, exe_name_ret,
1957 exe_name_max_len) < 0)
1958 error (_("Error converting executable filename to POSIX: %d."), errno);
1961 len = GetModuleFileNameEx (current_process_handle,
1962 dh_buf, exe_name_ret, exe_name_max_len);
1964 error (_("Error getting executable filename: %u."),
1965 (unsigned) GetLastError ());
1968 return 1; /* success */
1971 /* The pid_to_exec_file target_ops method for this platform. */
1974 windows_pid_to_exec_file (struct target_ops *self, int pid)
1976 static char path[__PMAX];
1978 /* Try to find exe name as symlink target of /proc/<pid>/exe. */
1980 char procexe[sizeof ("/proc/4294967295/exe")];
1982 xsnprintf (procexe, sizeof (procexe), "/proc/%u/exe", pid);
1983 nchars = readlink (procexe, path, sizeof(path));
1984 if (nchars > 0 && nchars < sizeof (path))
1986 path[nchars] = '\0'; /* Got it */
1991 /* If we get here then either Cygwin is hosed, this isn't a Cygwin version
1992 of gdb, or we're trying to debug a non-Cygwin windows executable. */
1993 if (!windows_get_exec_module_filename (path, sizeof (path)))
1999 /* Print status information about what we're accessing. */
2002 windows_files_info (struct target_ops *ignore)
2004 struct inferior *inf = current_inferior ();
2006 printf_unfiltered ("\tUsing the running image of %s %s.\n",
2007 inf->attach_flag ? "attached" : "child",
2008 target_pid_to_str (inferior_ptid));
2011 /* Modify CreateProcess parameters for use of a new separate console.
2013 *FLAGS: DWORD parameter for general process creation flags.
2014 *SI: STARTUPINFO structure, for which the console window size and
2015 console buffer size is filled in if GDB is running in a console.
2016 to create the new console.
2017 The size of the used font is not available on all versions of
2018 Windows OS. Furthermore, the current font might not be the default
2019 font, but this is still better than before.
2020 If the windows and buffer sizes are computed,
2021 SI->DWFLAGS is changed so that this information is used
2022 by CreateProcess function. */
2025 windows_set_console_info (STARTUPINFO *si, DWORD *flags)
2027 HANDLE hconsole = CreateFile ("CONOUT$", GENERIC_READ | GENERIC_WRITE,
2028 FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
2030 if (hconsole != INVALID_HANDLE_VALUE)
2032 CONSOLE_SCREEN_BUFFER_INFO sbinfo;
2034 CONSOLE_FONT_INFO cfi;
2036 GetCurrentConsoleFont (hconsole, FALSE, &cfi);
2037 font_size = GetConsoleFontSize (hconsole, cfi.nFont);
2038 GetConsoleScreenBufferInfo(hconsole, &sbinfo);
2039 si->dwXSize = sbinfo.srWindow.Right - sbinfo.srWindow.Left + 1;
2040 si->dwYSize = sbinfo.srWindow.Bottom - sbinfo.srWindow.Top + 1;
2042 si->dwXSize *= font_size.X;
2046 si->dwYSize *= font_size.Y;
2049 si->dwXCountChars = sbinfo.dwSize.X;
2050 si->dwYCountChars = sbinfo.dwSize.Y;
2051 si->dwFlags |= STARTF_USESIZE | STARTF_USECOUNTCHARS;
2053 *flags |= CREATE_NEW_CONSOLE;
2057 /* Function called by qsort to sort environment strings. */
2060 envvar_cmp (const void *a, const void *b)
2062 const char **p = (const char **) a;
2063 const char **q = (const char **) b;
2064 return strcasecmp (*p, *q);
2070 clear_win32_environment (char **env)
2074 wchar_t *copy = NULL, *equalpos;
2076 for (i = 0; env[i] && *env[i]; i++)
2078 len = mbstowcs (NULL, env[i], 0) + 1;
2079 copy = (wchar_t *) xrealloc (copy, len * sizeof (wchar_t));
2080 mbstowcs (copy, env[i], len);
2081 equalpos = wcschr (copy, L'=');
2084 SetEnvironmentVariableW (copy, NULL);
2090 /* Start an inferior windows child process and sets inferior_ptid to its pid.
2091 EXEC_FILE is the file to run.
2092 ALLARGS is a string containing the arguments to the program.
2093 ENV is the environment vector to pass. Errors reported with error(). */
2096 windows_create_inferior (struct target_ops *ops, char *exec_file,
2097 char *allargs, char **in_env, int from_tty)
2101 cygwin_buf_t real_path[__PMAX];
2102 cygwin_buf_t shell[__PMAX]; /* Path to shell */
2104 cygwin_buf_t *toexec;
2105 cygwin_buf_t *cygallargs;
2107 char **old_env = NULL;
2111 int ostdin, ostdout, ostderr;
2113 char real_path[__PMAX];
2114 char shell[__PMAX]; /* Path to shell */
2126 PROCESS_INFORMATION pi;
2129 const char *inferior_io_terminal = get_inferior_io_terminal ();
2132 error (_("No executable specified, use `target exec'."));
2134 memset (&si, 0, sizeof (si));
2135 si.cb = sizeof (si);
2138 flags |= CREATE_NEW_PROCESS_GROUP;
2141 windows_set_console_info (&si, &flags);
2146 flags |= DEBUG_ONLY_THIS_PROCESS;
2147 if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, exec_file, real_path,
2148 __PMAX * sizeof (cygwin_buf_t)) < 0)
2149 error (_("Error starting executable: %d"), errno);
2152 len = mbstowcs (NULL, allargs, 0) + 1;
2153 if (len == (size_t) -1)
2154 error (_("Error starting executable: %d"), errno);
2155 cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t));
2156 mbstowcs (cygallargs, allargs, len);
2158 cygallargs = allargs;
2163 sh = getenv ("SHELL");
2166 if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, sh, shell, __PMAX) < 0)
2167 error (_("Error starting executable via shell: %d"), errno);
2169 len = sizeof (L" -c 'exec '") + mbstowcs (NULL, exec_file, 0)
2170 + mbstowcs (NULL, allargs, 0) + 2;
2171 cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t));
2172 swprintf (cygallargs, len, L" -c 'exec %s %s'", exec_file, allargs);
2174 len = (sizeof (" -c 'exec '") + strlen (exec_file)
2175 + strlen (allargs) + 2);
2176 cygallargs = (char *) alloca (len);
2177 xsnprintf (cygallargs, len, " -c 'exec %s %s'", exec_file, allargs);
2180 flags |= DEBUG_PROCESS;
2184 args = (cygwin_buf_t *) alloca ((wcslen (toexec) + wcslen (cygallargs) + 2)
2185 * sizeof (wchar_t));
2186 wcscpy (args, toexec);
2187 wcscat (args, L" ");
2188 wcscat (args, cygallargs);
2190 args = (cygwin_buf_t *) alloca (strlen (toexec) + strlen (cygallargs) + 2);
2191 strcpy (args, toexec);
2193 strcat (args, cygallargs);
2196 #ifdef CW_CVT_ENV_TO_WINENV
2197 /* First try to create a direct Win32 copy of the POSIX environment. */
2198 w32_env = (PWCHAR) cygwin_internal (CW_CVT_ENV_TO_WINENV, in_env);
2199 if (w32_env != (PWCHAR) -1)
2200 flags |= CREATE_UNICODE_ENVIRONMENT;
2202 /* If that fails, fall back to old method tweaking GDB's environment. */
2205 /* Reset all Win32 environment variables to avoid leftover on next run. */
2206 clear_win32_environment (environ);
2207 /* Prepare the environment vars for CreateProcess. */
2210 cygwin_internal (CW_SYNC_WINENV);
2214 if (!inferior_io_terminal)
2215 tty = ostdin = ostdout = ostderr = -1;
2218 tty = open (inferior_io_terminal, O_RDWR | O_NOCTTY);
2221 print_sys_errmsg (inferior_io_terminal, errno);
2222 ostdin = ostdout = ostderr = -1;
2235 windows_init_thread_list ();
2236 ret = CreateProcess (0,
2237 args, /* command line */
2238 NULL, /* Security */
2240 TRUE, /* inherit handles */
2241 flags, /* start flags */
2242 w32_env, /* environment */
2243 NULL, /* current directory */
2247 /* Just free the Win32 environment, if it could be created. */
2251 /* Reset all environment variables to avoid leftover on next run. */
2252 clear_win32_environment (in_env);
2253 /* Restore normal GDB environment variables. */
2255 cygwin_internal (CW_SYNC_WINENV);
2270 /* Build the command line, a space-separated list of tokens where
2271 the first token is the name of the module to be executed.
2272 To avoid ambiguities introduced by spaces in the module name,
2274 args_len = strlen (toexec) + 2 /* quotes */ + strlen (allargs) + 2;
2275 args = alloca (args_len);
2276 xsnprintf (args, args_len, "\"%s\" %s", toexec, allargs);
2278 flags |= DEBUG_ONLY_THIS_PROCESS;
2280 if (!inferior_io_terminal)
2281 tty = INVALID_HANDLE_VALUE;
2284 SECURITY_ATTRIBUTES sa;
2285 sa.nLength = sizeof(sa);
2286 sa.lpSecurityDescriptor = 0;
2287 sa.bInheritHandle = TRUE;
2288 tty = CreateFileA (inferior_io_terminal, GENERIC_READ | GENERIC_WRITE,
2289 0, &sa, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
2290 if (tty == INVALID_HANDLE_VALUE)
2291 warning (_("Warning: Failed to open TTY %s, error %#x."),
2292 inferior_io_terminal, (unsigned) GetLastError ());
2296 si.hStdOutput = tty;
2298 si.dwFlags |= STARTF_USESTDHANDLES;
2302 /* CreateProcess takes the environment list as a null terminated set of
2303 strings (i.e. two nulls terminate the list). */
2305 /* Get total size for env strings. */
2306 for (envlen = 0, i = 0; in_env[i] && *in_env[i]; i++)
2307 envlen += strlen (in_env[i]) + 1;
2309 envsize = sizeof (in_env[0]) * (i + 1);
2310 env = (char **) alloca (envsize);
2311 memcpy (env, in_env, envsize);
2312 /* Windows programs expect the environment block to be sorted. */
2313 qsort (env, i, sizeof (char *), envvar_cmp);
2315 w32env = alloca (envlen + 1);
2317 /* Copy env strings into new buffer. */
2318 for (temp = w32env, i = 0; env[i] && *env[i]; i++)
2320 strcpy (temp, env[i]);
2321 temp += strlen (temp) + 1;
2324 /* Final nil string to terminate new env. */
2327 windows_init_thread_list ();
2328 ret = CreateProcessA (0,
2329 args, /* command line */
2330 NULL, /* Security */
2332 TRUE, /* inherit handles */
2333 flags, /* start flags */
2334 w32env, /* environment */
2335 NULL, /* current directory */
2338 if (tty != INVALID_HANDLE_VALUE)
2343 error (_("Error creating process %s, (error %u)."),
2344 exec_file, (unsigned) GetLastError ());
2346 CloseHandle (pi.hThread);
2347 CloseHandle (pi.hProcess);
2349 if (useshell && shell[0] != '\0')
2354 do_initial_windows_stuff (ops, pi.dwProcessId, 0);
2356 /* windows_continue (DBG_CONTINUE, -1, 0); */
2360 windows_mourn_inferior (struct target_ops *ops)
2362 (void) windows_continue (DBG_CONTINUE, -1, 0);
2363 x86_cleanup_dregs();
2364 if (open_process_used)
2366 CHECK (CloseHandle (current_process_handle));
2367 open_process_used = 0;
2369 inf_child_mourn_inferior (ops);
2372 /* Send a SIGINT to the process group. This acts just like the user typed a
2373 ^C on the controlling terminal. */
2376 windows_stop (struct target_ops *self, ptid_t ptid)
2378 DEBUG_EVENTS (("gdb: GenerateConsoleCtrlEvent (CTRLC_EVENT, 0)\n"));
2379 CHECK (GenerateConsoleCtrlEvent (CTRL_C_EVENT, current_event.dwProcessId));
2380 registers_changed (); /* refresh register state */
2383 /* Helper for windows_xfer_partial that handles memory transfers.
2384 Arguments are like target_xfer_partial. */
2386 static enum target_xfer_status
2387 windows_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
2388 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
2392 DWORD lasterror = 0;
2394 if (writebuf != NULL)
2396 DEBUG_MEM (("gdb: write target memory, %s bytes at %s\n",
2397 pulongest (len), core_addr_to_string (memaddr)));
2398 success = WriteProcessMemory (current_process_handle,
2399 (LPVOID) (uintptr_t) memaddr, writebuf,
2402 lasterror = GetLastError ();
2403 FlushInstructionCache (current_process_handle,
2404 (LPCVOID) (uintptr_t) memaddr, len);
2408 DEBUG_MEM (("gdb: read target memory, %s bytes at %s\n",
2409 pulongest (len), core_addr_to_string (memaddr)));
2410 success = ReadProcessMemory (current_process_handle,
2411 (LPCVOID) (uintptr_t) memaddr, readbuf,
2414 lasterror = GetLastError ();
2416 *xfered_len = (ULONGEST) done;
2417 if (!success && lasterror == ERROR_PARTIAL_COPY && done > 0)
2418 return TARGET_XFER_OK;
2420 return success ? TARGET_XFER_OK : TARGET_XFER_E_IO;
2424 windows_kill_inferior (struct target_ops *ops)
2426 CHECK (TerminateProcess (current_process_handle, 0));
2430 if (!windows_continue (DBG_CONTINUE, -1, 1))
2432 if (!WaitForDebugEvent (¤t_event, INFINITE))
2434 if (current_event.dwDebugEventCode == EXIT_PROCESS_DEBUG_EVENT)
2438 target_mourn_inferior (); /* Or just windows_mourn_inferior? */
2442 windows_close (struct target_ops *self)
2444 DEBUG_EVENTS (("gdb: windows_close, inferior_ptid=%d\n",
2445 ptid_get_pid (inferior_ptid)));
2448 /* Convert pid to printable format. */
2450 windows_pid_to_str (struct target_ops *ops, ptid_t ptid)
2452 static char buf[80];
2454 if (ptid_get_tid (ptid) != 0)
2456 snprintf (buf, sizeof (buf), "Thread %d.0x%lx",
2457 ptid_get_pid (ptid), ptid_get_tid (ptid));
2461 return normal_pid_to_str (ptid);
2464 static enum target_xfer_status
2465 windows_xfer_shared_libraries (struct target_ops *ops,
2466 enum target_object object, const char *annex,
2467 gdb_byte *readbuf, const gdb_byte *writebuf,
2468 ULONGEST offset, ULONGEST len,
2469 ULONGEST *xfered_len)
2471 struct obstack obstack;
2477 return TARGET_XFER_E_IO;
2479 obstack_init (&obstack);
2480 obstack_grow_str (&obstack, "<library-list>\n");
2481 for (so = solib_start.next; so; so = so->next)
2482 windows_xfer_shared_library (so->so_name, (CORE_ADDR)
2483 (uintptr_t) so->lm_info->load_addr,
2484 target_gdbarch (), &obstack);
2485 obstack_grow_str0 (&obstack, "</library-list>\n");
2487 buf = obstack_finish (&obstack);
2488 len_avail = strlen (buf);
2489 if (offset >= len_avail)
2493 if (len > len_avail - offset)
2494 len = len_avail - offset;
2495 memcpy (readbuf, buf + offset, len);
2498 obstack_free (&obstack, NULL);
2499 *xfered_len = (ULONGEST) len;
2500 return len != 0 ? TARGET_XFER_OK : TARGET_XFER_EOF;
2503 static enum target_xfer_status
2504 windows_xfer_partial (struct target_ops *ops, enum target_object object,
2505 const char *annex, gdb_byte *readbuf,
2506 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
2507 ULONGEST *xfered_len)
2511 case TARGET_OBJECT_MEMORY:
2512 return windows_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
2514 case TARGET_OBJECT_LIBRARIES:
2515 return windows_xfer_shared_libraries (ops, object, annex, readbuf,
2516 writebuf, offset, len, xfered_len);
2519 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
2520 readbuf, writebuf, offset, len,
2525 /* Provide thread local base, i.e. Thread Information Block address.
2526 Returns 1 if ptid is found and sets *ADDR to thread_local_base. */
2529 windows_get_tib_address (struct target_ops *self,
2530 ptid_t ptid, CORE_ADDR *addr)
2534 th = thread_rec (ptid_get_tid (ptid), 0);
2539 *addr = th->thread_local_base;
2545 windows_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
2547 return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
2550 static struct target_ops *
2551 windows_target (void)
2553 struct target_ops *t = inf_child_target ();
2555 t->to_close = windows_close;
2556 t->to_attach = windows_attach;
2557 t->to_attach_no_wait = 1;
2558 t->to_detach = windows_detach;
2559 t->to_resume = windows_resume;
2560 t->to_wait = windows_wait;
2561 t->to_fetch_registers = windows_fetch_inferior_registers;
2562 t->to_store_registers = windows_store_inferior_registers;
2563 t->to_xfer_partial = windows_xfer_partial;
2564 t->to_files_info = windows_files_info;
2565 t->to_kill = windows_kill_inferior;
2566 t->to_create_inferior = windows_create_inferior;
2567 t->to_mourn_inferior = windows_mourn_inferior;
2568 t->to_thread_alive = windows_thread_alive;
2569 t->to_pid_to_str = windows_pid_to_str;
2570 t->to_stop = windows_stop;
2571 t->to_pid_to_exec_file = windows_pid_to_exec_file;
2572 t->to_get_ada_task_ptid = windows_get_ada_task_ptid;
2573 t->to_get_tib_address = windows_get_tib_address;
2579 set_windows_aliases (char *argv0)
2581 add_info_alias ("dll", "sharedlibrary", 1);
2584 /* -Wmissing-prototypes */
2585 extern initialize_file_ftype _initialize_windows_nat;
2588 _initialize_windows_nat (void)
2590 struct cmd_list_element *c;
2591 struct target_ops *t;
2593 t = windows_target ();
2595 x86_use_watchpoints (t);
2597 x86_dr_low.set_control = cygwin_set_dr7;
2598 x86_dr_low.set_addr = cygwin_set_dr;
2599 x86_dr_low.get_addr = cygwin_get_dr;
2600 x86_dr_low.get_status = cygwin_get_dr6;
2601 x86_dr_low.get_control = cygwin_get_dr7;
2603 /* x86_dr_low.debug_register_length field is set by
2604 calling x86_set_debug_register_length function
2605 in processor windows specific native file. */
2610 cygwin_internal (CW_SET_DOS_FILE_WARNING, 0);
2613 c = add_com ("dll-symbols", class_files, dll_symbol_command,
2614 _("Load dll library symbols from FILE."));
2615 set_cmd_completer (c, filename_completer);
2616 deprecate_cmd (c, "sharedlibrary");
2618 c = add_com ("add-shared-symbol-files", class_files, dll_symbol_command,
2619 _("Load dll library symbols from FILE."));
2620 set_cmd_completer (c, filename_completer);
2621 deprecate_cmd (c, "sharedlibrary");
2623 c = add_com ("assf", class_files, dll_symbol_command,
2624 _("Load dll library symbols from FILE."));
2625 set_cmd_completer (c, filename_completer);
2626 deprecate_cmd (c, "sharedlibrary");
2629 add_setshow_boolean_cmd ("shell", class_support, &useshell, _("\
2630 Set use of shell to start subprocess."), _("\
2631 Show use of shell to start subprocess."), NULL,
2633 NULL, /* FIXME: i18n: */
2634 &setlist, &showlist);
2636 add_setshow_boolean_cmd ("cygwin-exceptions", class_support,
2637 &cygwin_exceptions, _("\
2638 Break when an exception is detected in the Cygwin DLL itself."), _("\
2639 Show whether gdb breaks on exceptions in the Cygwin DLL itself."), NULL,
2641 NULL, /* FIXME: i18n: */
2642 &setlist, &showlist);
2645 add_setshow_boolean_cmd ("new-console", class_support, &new_console, _("\
2646 Set creation of new console when creating child process."), _("\
2647 Show creation of new console when creating child process."), NULL,
2649 NULL, /* FIXME: i18n: */
2650 &setlist, &showlist);
2652 add_setshow_boolean_cmd ("new-group", class_support, &new_group, _("\
2653 Set creation of new group when creating child process."), _("\
2654 Show creation of new group when creating child process."), NULL,
2656 NULL, /* FIXME: i18n: */
2657 &setlist, &showlist);
2659 add_setshow_boolean_cmd ("debugexec", class_support, &debug_exec, _("\
2660 Set whether to display execution in child process."), _("\
2661 Show whether to display execution in child process."), NULL,
2663 NULL, /* FIXME: i18n: */
2664 &setlist, &showlist);
2666 add_setshow_boolean_cmd ("debugevents", class_support, &debug_events, _("\
2667 Set whether to display kernel events in child process."), _("\
2668 Show whether to display kernel events in child process."), NULL,
2670 NULL, /* FIXME: i18n: */
2671 &setlist, &showlist);
2673 add_setshow_boolean_cmd ("debugmemory", class_support, &debug_memory, _("\
2674 Set whether to display memory accesses in child process."), _("\
2675 Show whether to display memory accesses in child process."), NULL,
2677 NULL, /* FIXME: i18n: */
2678 &setlist, &showlist);
2680 add_setshow_boolean_cmd ("debugexceptions", class_support,
2681 &debug_exceptions, _("\
2682 Set whether to display kernel exceptions in child process."), _("\
2683 Show whether to display kernel exceptions in child process."), NULL,
2685 NULL, /* FIXME: i18n: */
2686 &setlist, &showlist);
2688 init_w32_command_list ();
2690 add_cmd ("selector", class_info, display_selectors,
2691 _("Display selectors infos."),
2693 deprecated_init_ui_hook = set_windows_aliases;
2696 /* Hardware watchpoint support, adapted from go32-nat.c code. */
2698 /* Pass the address ADDR to the inferior in the I'th debug register.
2699 Here we just store the address in dr array, the registers will be
2700 actually set up when windows_continue is called. */
2702 cygwin_set_dr (int i, CORE_ADDR addr)
2705 internal_error (__FILE__, __LINE__,
2706 _("Invalid register %d in cygwin_set_dr.\n"), i);
2708 debug_registers_changed = 1;
2709 debug_registers_used = 1;
2712 /* Pass the value VAL to the inferior in the DR7 debug control
2713 register. Here we just store the address in D_REGS, the watchpoint
2714 will be actually set up in windows_wait. */
2716 cygwin_set_dr7 (unsigned long val)
2718 dr[7] = (CORE_ADDR) val;
2719 debug_registers_changed = 1;
2720 debug_registers_used = 1;
2723 /* Get the value of debug register I from the inferior. */
2726 cygwin_get_dr (int i)
2731 /* Get the value of the DR6 debug status register from the inferior.
2732 Here we just return the value stored in dr[6]
2733 by the last call to thread_rec for current_event.dwThreadId id. */
2734 static unsigned long
2735 cygwin_get_dr6 (void)
2737 return (unsigned long) dr[6];
2740 /* Get the value of the DR7 debug status register from the inferior.
2741 Here we just return the value stored in dr[7] by the last call to
2742 thread_rec for current_event.dwThreadId id. */
2744 static unsigned long
2745 cygwin_get_dr7 (void)
2747 return (unsigned long) dr[7];
2750 /* Determine if the thread referenced by "ptid" is alive
2751 by "polling" it. If WaitForSingleObject returns WAIT_OBJECT_0
2752 it means that the thread has died. Otherwise it is assumed to be alive. */
2754 windows_thread_alive (struct target_ops *ops, ptid_t ptid)
2758 gdb_assert (ptid_get_tid (ptid) != 0);
2759 tid = ptid_get_tid (ptid);
2761 return WaitForSingleObject (thread_rec (tid, FALSE)->h, 0) == WAIT_OBJECT_0
2765 /* -Wmissing-prototypes */
2766 extern initialize_file_ftype _initialize_check_for_gdb_ini;
2769 _initialize_check_for_gdb_ini (void)
2772 if (inhibit_gdbinit)
2775 homedir = getenv ("HOME");
2779 char *oldini = (char *) alloca (strlen (homedir) +
2780 sizeof ("/gdb.ini"));
2781 strcpy (oldini, homedir);
2782 p = strchr (oldini, '\0');
2783 if (p > oldini && !IS_DIR_SEPARATOR (p[-1]))
2785 strcpy (p, "gdb.ini");
2786 if (access (oldini, 0) == 0)
2788 int len = strlen (oldini);
2789 char *newini = alloca (len + 1);
2791 xsnprintf (newini, len + 1, "%.*s.gdbinit",
2792 (int) (len - (sizeof ("gdb.ini") - 1)), oldini);
2793 warning (_("obsolete '%s' found. Rename to '%s'."), oldini, newini);
2798 /* Define dummy functions which always return error for the rare cases where
2799 these functions could not be found. */
2801 bad_DebugActiveProcessStop (DWORD w)
2806 bad_DebugBreakProcess (HANDLE w)
2811 bad_DebugSetProcessKillOnExit (BOOL w)
2816 bad_EnumProcessModules (HANDLE w, HMODULE *x, DWORD y, LPDWORD z)
2823 bad_GetModuleFileNameExW (HANDLE w, HMODULE x, LPWSTR y, DWORD z)
2829 bad_GetModuleFileNameExA (HANDLE w, HMODULE x, LPSTR y, DWORD z)
2836 bad_GetModuleInformation (HANDLE w, HMODULE x, LPMODULEINFO y, DWORD z)
2842 bad_OpenProcessToken (HANDLE w, DWORD x, PHANDLE y)
2848 bad_GetCurrentConsoleFont (HANDLE w, BOOL bMaxWindow, CONSOLE_FONT_INFO *f)
2854 bad_GetConsoleFontSize (HANDLE w, DWORD nFont)
2862 /* -Wmissing-prototypes */
2863 extern initialize_file_ftype _initialize_loadable;
2865 /* Load any functions which may not be available in ancient versions
2869 _initialize_loadable (void)
2873 hm = LoadLibrary ("kernel32.dll");
2876 DebugActiveProcessStop = (void *)
2877 GetProcAddress (hm, "DebugActiveProcessStop");
2878 DebugBreakProcess = (void *)
2879 GetProcAddress (hm, "DebugBreakProcess");
2880 DebugSetProcessKillOnExit = (void *)
2881 GetProcAddress (hm, "DebugSetProcessKillOnExit");
2882 GetConsoleFontSize = (void *)
2883 GetProcAddress (hm, "GetConsoleFontSize");
2884 GetCurrentConsoleFont = (void *)
2885 GetProcAddress (hm, "GetCurrentConsoleFont");
2888 /* Set variables to dummy versions of these processes if the function
2889 wasn't found in kernel32.dll. */
2890 if (!DebugBreakProcess)
2891 DebugBreakProcess = bad_DebugBreakProcess;
2892 if (!DebugActiveProcessStop || !DebugSetProcessKillOnExit)
2894 DebugActiveProcessStop = bad_DebugActiveProcessStop;
2895 DebugSetProcessKillOnExit = bad_DebugSetProcessKillOnExit;
2897 if (!GetConsoleFontSize)
2898 GetConsoleFontSize = bad_GetConsoleFontSize;
2899 if (!GetCurrentConsoleFont)
2900 GetCurrentConsoleFont = bad_GetCurrentConsoleFont;
2902 /* Load optional functions used for retrieving filename information
2903 associated with the currently debugged process or its dlls. */
2904 hm = LoadLibrary ("psapi.dll");
2907 EnumProcessModules = (void *)
2908 GetProcAddress (hm, "EnumProcessModules");
2909 GetModuleInformation = (void *)
2910 GetProcAddress (hm, "GetModuleInformation");
2911 GetModuleFileNameEx = (void *)
2912 GetProcAddress (hm, GetModuleFileNameEx_name);
2915 if (!EnumProcessModules || !GetModuleInformation || !GetModuleFileNameEx)
2917 /* Set variables to dummy versions of these processes if the function
2918 wasn't found in psapi.dll. */
2919 EnumProcessModules = bad_EnumProcessModules;
2920 GetModuleInformation = bad_GetModuleInformation;
2921 GetModuleFileNameEx = bad_GetModuleFileNameEx;
2922 /* This will probably fail on Windows 9x/Me. Let the user know
2923 that we're missing some functionality. */
2925 cannot automatically find executable file or library to read symbols.\n\
2926 Use \"file\" or \"dll\" command to load executable/libraries directly."));
2929 hm = LoadLibrary ("advapi32.dll");
2932 OpenProcessToken = (void *) GetProcAddress (hm, "OpenProcessToken");
2933 LookupPrivilegeValueA = (void *)
2934 GetProcAddress (hm, "LookupPrivilegeValueA");
2935 AdjustTokenPrivileges = (void *)
2936 GetProcAddress (hm, "AdjustTokenPrivileges");
2937 /* Only need to set one of these since if OpenProcessToken fails nothing
2939 if (!OpenProcessToken || !LookupPrivilegeValueA
2940 || !AdjustTokenPrivileges)
2941 OpenProcessToken = bad_OpenProcessToken;