1 /* Target-vector operations for controlling windows child processes, for GDB.
3 Copyright (C) 1995-2015 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,
136 #ifndef CONTEXT_EXTENDED_REGISTERS
137 /* This macro is only defined on ia32. It only makes sense on this target,
138 so define it as zero if not already defined. */
139 #define CONTEXT_EXTENDED_REGISTERS 0
142 #define CONTEXT_DEBUGGER_DR CONTEXT_FULL | CONTEXT_FLOATING_POINT \
143 | CONTEXT_SEGMENTS | 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 static struct so_list *
555 windows_make_so (const char *name, LPVOID load_addr)
562 WIN32_FIND_DATA w32_fd;
563 HANDLE h = FindFirstFile(name, &w32_fd);
565 if (h == INVALID_HANDLE_VALUE)
571 if (GetCurrentDirectory (MAX_PATH + 1, cwd))
573 p = strrchr (buf, '\\');
576 SetCurrentDirectory (buf);
577 GetFullPathName (w32_fd.cFileName, MAX_PATH, buf, &p);
578 SetCurrentDirectory (cwd);
581 if (strcasecmp (buf, "ntdll.dll") == 0)
583 GetSystemDirectory (buf, sizeof (buf));
584 strcat (buf, "\\ntdll.dll");
587 cygwin_buf_t buf[__PMAX];
590 if (access (name, F_OK) != 0)
592 if (strcasecmp (name, "ntdll.dll") == 0)
595 GetSystemDirectoryW (buf, sizeof (buf) / sizeof (wchar_t));
596 wcscat (buf, L"\\ntdll.dll");
600 GetSystemDirectoryA (buf, sizeof (buf) / sizeof (wchar_t));
601 strcat (buf, "\\ntdll.dll");
606 so = XCNEW (struct so_list);
607 so->lm_info = (struct lm_info *) xmalloc (sizeof (struct lm_info));
608 so->lm_info->load_addr = load_addr;
609 strcpy (so->so_original_name, name);
611 strcpy (so->so_name, buf);
614 cygwin_conv_path (CCP_WIN_W_TO_POSIX, buf, so->so_name,
615 SO_NAME_MAX_PATH_SIZE);
618 char *rname = realpath (name, NULL);
619 if (rname && strlen (rname) < SO_NAME_MAX_PATH_SIZE)
621 strcpy (so->so_name, rname);
625 error (_("dll path too long"));
627 /* Record cygwin1.dll .text start/end. */
628 p = strchr (so->so_name, '\0') - (sizeof ("/cygwin1.dll") - 1);
629 if (p >= so->so_name && strcasecmp (p, "/cygwin1.dll") == 0)
632 asection *text = NULL;
635 abfd = gdb_bfd_open (so->so_name, "pei-i386", -1);
640 if (bfd_check_format (abfd, bfd_object))
641 text = bfd_get_section_by_name (abfd, ".text");
645 gdb_bfd_unref (abfd);
649 /* The symbols in a dll are offset by 0x1000, which is the
650 offset from 0 of the first byte in an image - because of the
651 file header and the section alignment. */
652 cygwin_load_start = (CORE_ADDR) (uintptr_t) ((char *)
654 cygwin_load_end = cygwin_load_start + bfd_section_size (abfd, text);
656 gdb_bfd_unref (abfd);
664 get_image_name (HANDLE h, void *address, int unicode)
667 static char buf[__PMAX];
669 static char buf[(2 * __PMAX) + 1];
671 DWORD size = unicode ? sizeof (WCHAR) : sizeof (char);
677 /* Attempt to read the name of the dll that was detected.
678 This is documented to work only when actively debugging
679 a program. It will not work for attached processes. */
683 /* See if we could read the address of a string, and that the
684 address isn't null. */
685 if (!ReadProcessMemory (h, address, &address_ptr,
686 sizeof (address_ptr), &done)
687 || done != sizeof (address_ptr) || !address_ptr)
690 /* Find the length of the string. */
691 while (ReadProcessMemory (h, address_ptr + len++ * size, &b, size, &done)
692 && (b[0] != 0 || b[size - 1] != 0) && done == size)
696 ReadProcessMemory (h, address_ptr, buf, len, &done);
699 WCHAR *unicode_address = (WCHAR *) alloca (len * sizeof (WCHAR));
700 ReadProcessMemory (h, address_ptr, unicode_address, len * sizeof (WCHAR),
703 wcstombs (buf, unicode_address, __PMAX);
705 WideCharToMultiByte (CP_ACP, 0, unicode_address, len, buf, sizeof buf,
713 /* Handle a DLL load event, and return 1.
715 This function assumes that this event did not occur during inferior
716 initialization, where their event info may be incomplete (see
717 do_initial_windows_stuff and windows_add_all_dlls for more info
718 on how we handle DLL loading during that phase). */
721 handle_load_dll (void *dummy)
723 LOAD_DLL_DEBUG_INFO *event = ¤t_event.u.LoadDll;
726 /* Try getting the DLL name via the lpImageName field of the event.
727 Note that Microsoft documents this fields as strictly optional,
728 in the sense that it might be NULL. And the first DLL event in
729 particular is explicitly documented as "likely not pass[ed]"
730 (source: MSDN LOAD_DLL_DEBUG_INFO structure). */
731 dll_name = get_image_name (current_process_handle,
732 event->lpImageName, event->fUnicode);
736 solib_end->next = windows_make_so (dll_name, event->lpBaseOfDll);
737 solib_end = solib_end->next;
739 DEBUG_EVENTS (("gdb: Loading dll \"%s\" at %s.\n", solib_end->so_name,
740 host_address_to_string (solib_end->lm_info->load_addr)));
746 windows_free_so (struct so_list *so)
753 /* Handle a DLL unload event.
754 Return 1 if successful, or zero otherwise.
756 This function assumes that this event did not occur during inferior
757 initialization, where their event info may be incomplete (see
758 do_initial_windows_stuff and windows_add_all_dlls for more info
759 on how we handle DLL loading during that phase). */
762 handle_unload_dll (void *dummy)
764 LPVOID lpBaseOfDll = current_event.u.UnloadDll.lpBaseOfDll;
767 for (so = &solib_start; so->next != NULL; so = so->next)
768 if (so->next->lm_info->load_addr == lpBaseOfDll)
770 struct so_list *sodel = so->next;
772 so->next = sodel->next;
775 DEBUG_EVENTS (("gdb: Unloading dll \"%s\".\n", sodel->so_name));
777 windows_free_so (sodel);
781 /* We did not find any DLL that was previously loaded at this address,
782 so register a complaint. We do not report an error, because we have
783 observed that this may be happening under some circumstances. For
784 instance, running 32bit applications on x64 Windows causes us to receive
785 4 mysterious UNLOAD_DLL_DEBUG_EVENTs during the startup phase (these
786 events are apparently caused by the WOW layer, the interface between
787 32bit and 64bit worlds). */
788 complaint (&symfile_complaints, _("dll starting at %s not found."),
789 host_address_to_string (lpBaseOfDll));
794 /* Clear list of loaded DLLs. */
796 windows_clear_solib (void)
798 solib_start.next = NULL;
799 solib_end = &solib_start;
802 /* Handle DEBUG_STRING output from child process.
803 Cygwin prepends its messages with a "cygwin:". Interpret this as
804 a Cygwin signal. Otherwise just print the string as a warning. */
806 handle_output_debug_string (struct target_waitstatus *ourstatus)
811 if (!target_read_string
812 ((CORE_ADDR) (uintptr_t) current_event.u.DebugString.lpDebugStringData,
816 else if (!startswith (s, _CYGWIN_SIGNAL_STRING))
819 if (!startswith (s, "cYg"))
823 #ifdef __COPY_CONTEXT_SIZE
826 /* Got a cygwin signal marker. A cygwin signal is followed by
827 the signal number itself and then optionally followed by the
828 thread id and address to saved context within the DLL. If
829 these are supplied, then the given thread is assumed to have
830 issued the signal and the context from the thread is assumed
831 to be stored at the given address in the inferior. Tell gdb
832 to treat this like a real signal. */
834 int sig = strtol (s + sizeof (_CYGWIN_SIGNAL_STRING) - 1, &p, 0);
835 int gotasig = gdb_signal_from_host (sig);
837 ourstatus->value.sig = gotasig;
843 ourstatus->kind = TARGET_WAITKIND_STOPPED;
844 retval = strtoul (p, &p, 0);
846 retval = main_thread_id;
847 else if ((x = (LPCVOID) (uintptr_t) strtoull (p, NULL, 0))
848 && ReadProcessMemory (current_process_handle, x,
850 __COPY_CONTEXT_SIZE, &n)
851 && n == __COPY_CONTEXT_SIZE)
852 have_saved_context = 1;
853 current_event.dwThreadId = retval;
864 display_selector (HANDLE thread, DWORD sel)
867 if (GetThreadSelectorEntry (thread, sel, &info))
870 printf_filtered ("0x%03x: ", (unsigned) sel);
871 if (!info.HighWord.Bits.Pres)
873 puts_filtered ("Segment not present\n");
876 base = (info.HighWord.Bits.BaseHi << 24) +
877 (info.HighWord.Bits.BaseMid << 16)
879 limit = (info.HighWord.Bits.LimitHi << 16) + info.LimitLow;
880 if (info.HighWord.Bits.Granularity)
881 limit = (limit << 12) | 0xfff;
882 printf_filtered ("base=0x%08x limit=0x%08x", base, limit);
883 if (info.HighWord.Bits.Default_Big)
884 puts_filtered(" 32-bit ");
886 puts_filtered(" 16-bit ");
887 switch ((info.HighWord.Bits.Type & 0xf) >> 1)
890 puts_filtered ("Data (Read-Only, Exp-up");
893 puts_filtered ("Data (Read/Write, Exp-up");
896 puts_filtered ("Unused segment (");
899 puts_filtered ("Data (Read/Write, Exp-down");
902 puts_filtered ("Code (Exec-Only, N.Conf");
905 puts_filtered ("Code (Exec/Read, N.Conf");
908 puts_filtered ("Code (Exec-Only, Conf");
911 puts_filtered ("Code (Exec/Read, Conf");
914 printf_filtered ("Unknown type 0x%x",info.HighWord.Bits.Type);
916 if ((info.HighWord.Bits.Type & 0x1) == 0)
917 puts_filtered(", N.Acc");
918 puts_filtered (")\n");
919 if ((info.HighWord.Bits.Type & 0x10) == 0)
920 puts_filtered("System selector ");
921 printf_filtered ("Priviledge level = %d. ", info.HighWord.Bits.Dpl);
922 if (info.HighWord.Bits.Granularity)
923 puts_filtered ("Page granular.\n");
925 puts_filtered ("Byte granular.\n");
930 DWORD err = GetLastError ();
931 if (err == ERROR_NOT_SUPPORTED)
932 printf_filtered ("Function not supported\n");
934 printf_filtered ("Invalid selector 0x%x.\n", (unsigned) sel);
940 display_selectors (char * args, int from_tty)
944 puts_filtered ("Impossible to display selectors now.\n");
950 puts_filtered ("Selector $cs\n");
951 display_selector (current_thread->h,
952 current_thread->context.SegCs);
953 puts_filtered ("Selector $ds\n");
954 display_selector (current_thread->h,
955 current_thread->context.SegDs);
956 puts_filtered ("Selector $es\n");
957 display_selector (current_thread->h,
958 current_thread->context.SegEs);
959 puts_filtered ("Selector $ss\n");
960 display_selector (current_thread->h,
961 current_thread->context.SegSs);
962 puts_filtered ("Selector $fs\n");
963 display_selector (current_thread->h,
964 current_thread->context.SegFs);
965 puts_filtered ("Selector $gs\n");
966 display_selector (current_thread->h,
967 current_thread->context.SegGs);
972 sel = parse_and_eval_long (args);
973 printf_filtered ("Selector \"%s\"\n",args);
974 display_selector (current_thread->h, sel);
978 #define DEBUG_EXCEPTION_SIMPLE(x) if (debug_exceptions) \
979 printf_unfiltered ("gdb: Target exception %s at %s\n", x, \
980 host_address_to_string (\
981 current_event.u.Exception.ExceptionRecord.ExceptionAddress))
984 handle_exception (struct target_waitstatus *ourstatus)
987 DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode;
989 ourstatus->kind = TARGET_WAITKIND_STOPPED;
991 /* Record the context of the current thread. */
992 th = thread_rec (current_event.dwThreadId, -1);
996 case EXCEPTION_ACCESS_VIOLATION:
997 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ACCESS_VIOLATION");
998 ourstatus->value.sig = GDB_SIGNAL_SEGV;
1001 /* See if the access violation happened within the cygwin DLL
1002 itself. Cygwin uses a kind of exception handling to deal
1003 with passed-in invalid addresses. gdb should not treat
1004 these as real SEGVs since they will be silently handled by
1005 cygwin. A real SEGV will (theoretically) be caught by
1006 cygwin later in the process and will be sent as a
1007 cygwin-specific-signal. So, ignore SEGVs if they show up
1008 within the text segment of the DLL itself. */
1010 CORE_ADDR addr = (CORE_ADDR) (uintptr_t)
1011 current_event.u.Exception.ExceptionRecord.ExceptionAddress;
1013 if ((!cygwin_exceptions && (addr >= cygwin_load_start
1014 && addr < cygwin_load_end))
1015 || (find_pc_partial_function (addr, &fn, NULL, NULL)
1016 && startswith (fn, "KERNEL32!IsBad")))
1021 case STATUS_STACK_OVERFLOW:
1022 DEBUG_EXCEPTION_SIMPLE ("STATUS_STACK_OVERFLOW");
1023 ourstatus->value.sig = GDB_SIGNAL_SEGV;
1025 case STATUS_FLOAT_DENORMAL_OPERAND:
1026 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DENORMAL_OPERAND");
1027 ourstatus->value.sig = GDB_SIGNAL_FPE;
1029 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
1030 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ARRAY_BOUNDS_EXCEEDED");
1031 ourstatus->value.sig = GDB_SIGNAL_FPE;
1033 case STATUS_FLOAT_INEXACT_RESULT:
1034 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INEXACT_RESULT");
1035 ourstatus->value.sig = GDB_SIGNAL_FPE;
1037 case STATUS_FLOAT_INVALID_OPERATION:
1038 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INVALID_OPERATION");
1039 ourstatus->value.sig = GDB_SIGNAL_FPE;
1041 case STATUS_FLOAT_OVERFLOW:
1042 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_OVERFLOW");
1043 ourstatus->value.sig = GDB_SIGNAL_FPE;
1045 case STATUS_FLOAT_STACK_CHECK:
1046 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_STACK_CHECK");
1047 ourstatus->value.sig = GDB_SIGNAL_FPE;
1049 case STATUS_FLOAT_UNDERFLOW:
1050 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_UNDERFLOW");
1051 ourstatus->value.sig = GDB_SIGNAL_FPE;
1053 case STATUS_FLOAT_DIVIDE_BY_ZERO:
1054 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DIVIDE_BY_ZERO");
1055 ourstatus->value.sig = GDB_SIGNAL_FPE;
1057 case STATUS_INTEGER_DIVIDE_BY_ZERO:
1058 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_DIVIDE_BY_ZERO");
1059 ourstatus->value.sig = GDB_SIGNAL_FPE;
1061 case STATUS_INTEGER_OVERFLOW:
1062 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_OVERFLOW");
1063 ourstatus->value.sig = GDB_SIGNAL_FPE;
1065 case EXCEPTION_BREAKPOINT:
1066 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_BREAKPOINT");
1067 ourstatus->value.sig = GDB_SIGNAL_TRAP;
1070 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_C");
1071 ourstatus->value.sig = GDB_SIGNAL_INT;
1073 case DBG_CONTROL_BREAK:
1074 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_BREAK");
1075 ourstatus->value.sig = GDB_SIGNAL_INT;
1077 case EXCEPTION_SINGLE_STEP:
1078 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_SINGLE_STEP");
1079 ourstatus->value.sig = GDB_SIGNAL_TRAP;
1081 case EXCEPTION_ILLEGAL_INSTRUCTION:
1082 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ILLEGAL_INSTRUCTION");
1083 ourstatus->value.sig = GDB_SIGNAL_ILL;
1085 case EXCEPTION_PRIV_INSTRUCTION:
1086 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_PRIV_INSTRUCTION");
1087 ourstatus->value.sig = GDB_SIGNAL_ILL;
1089 case EXCEPTION_NONCONTINUABLE_EXCEPTION:
1090 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_NONCONTINUABLE_EXCEPTION");
1091 ourstatus->value.sig = GDB_SIGNAL_ILL;
1094 /* Treat unhandled first chance exceptions specially. */
1095 if (current_event.u.Exception.dwFirstChance)
1097 printf_unfiltered ("gdb: unknown target exception 0x%08x at %s\n",
1098 (unsigned) current_event.u.Exception.ExceptionRecord.ExceptionCode,
1099 host_address_to_string (
1100 current_event.u.Exception.ExceptionRecord.ExceptionAddress));
1101 ourstatus->value.sig = GDB_SIGNAL_UNKNOWN;
1105 last_sig = ourstatus->value.sig;
1109 /* Resume thread specified by ID, or all artificially suspended
1110 threads, if we are continuing execution. KILLED non-zero means we
1111 have killed the inferior, so we should ignore weird errors due to
1112 threads shutting down. */
1114 windows_continue (DWORD continue_status, int id, int killed)
1120 DEBUG_EVENTS (("ContinueDebugEvent (cpid=%d, ctid=0x%x, %s);\n",
1121 (unsigned) current_event.dwProcessId,
1122 (unsigned) current_event.dwThreadId,
1123 continue_status == DBG_CONTINUE ?
1124 "DBG_CONTINUE" : "DBG_EXCEPTION_NOT_HANDLED"));
1126 for (th = &thread_head; (th = th->next) != NULL;)
1127 if ((id == -1 || id == (int) th->id)
1130 if (debug_registers_changed)
1132 th->context.ContextFlags |= CONTEXT_DEBUG_REGISTERS;
1133 th->context.Dr0 = dr[0];
1134 th->context.Dr1 = dr[1];
1135 th->context.Dr2 = dr[2];
1136 th->context.Dr3 = dr[3];
1137 th->context.Dr6 = DR6_CLEAR_VALUE;
1138 th->context.Dr7 = dr[7];
1140 if (th->context.ContextFlags)
1144 if (GetExitCodeThread (th->h, &ec)
1145 && ec == STILL_ACTIVE)
1147 BOOL status = SetThreadContext (th->h, &th->context);
1152 th->context.ContextFlags = 0;
1154 if (th->suspended > 0)
1155 (void) ResumeThread (th->h);
1159 res = ContinueDebugEvent (current_event.dwProcessId,
1160 current_event.dwThreadId,
1163 debug_registers_changed = 0;
1167 /* Called in pathological case where Windows fails to send a
1168 CREATE_PROCESS_DEBUG_EVENT after an attach. */
1170 fake_create_process (void)
1172 current_process_handle = OpenProcess (PROCESS_ALL_ACCESS, FALSE,
1173 current_event.dwProcessId);
1174 if (current_process_handle != NULL)
1175 open_process_used = 1;
1178 error (_("OpenProcess call failed, GetLastError = %u"),
1179 (unsigned) GetLastError ());
1180 /* We can not debug anything in that case. */
1182 main_thread_id = current_event.dwThreadId;
1183 current_thread = windows_add_thread (
1184 ptid_build (current_event.dwProcessId, 0,
1185 current_event.dwThreadId),
1186 current_event.u.CreateThread.hThread,
1187 current_event.u.CreateThread.lpThreadLocalBase);
1188 return main_thread_id;
1192 windows_resume (struct target_ops *ops,
1193 ptid_t ptid, int step, enum gdb_signal sig)
1196 DWORD continue_status = DBG_CONTINUE;
1198 /* A specific PTID means `step only this thread id'. */
1199 int resume_all = ptid_equal (ptid, minus_one_ptid);
1201 /* If we're continuing all threads, it's the current inferior that
1202 should be handled specially. */
1204 ptid = inferior_ptid;
1206 if (sig != GDB_SIGNAL_0)
1208 if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
1210 DEBUG_EXCEPT(("Cannot continue with signal %d here.\n",sig));
1212 else if (sig == last_sig)
1213 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1216 /* This code does not seem to work, because
1217 the kernel does probably not consider changes in the ExceptionRecord
1218 structure when passing the exception to the inferior.
1219 Note that this seems possible in the exception handler itself. */
1222 for (i = 0; xlate[i].them != -1; i++)
1223 if (xlate[i].us == sig)
1225 current_event.u.Exception.ExceptionRecord.ExceptionCode
1227 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1230 if (continue_status == DBG_CONTINUE)
1232 DEBUG_EXCEPT(("Cannot continue with signal %d.\n",sig));
1236 DEBUG_EXCEPT(("Can only continue with recieved signal %d.\n",
1240 last_sig = GDB_SIGNAL_0;
1242 DEBUG_EXEC (("gdb: windows_resume (pid=%d, tid=%ld, step=%d, sig=%d);\n",
1243 ptid_get_pid (ptid), ptid_get_tid (ptid), step, sig));
1245 /* Get context for currently selected thread. */
1246 th = thread_rec (ptid_get_tid (inferior_ptid), FALSE);
1251 /* Single step by setting t bit. */
1252 struct regcache *regcache = get_current_regcache ();
1253 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1254 windows_fetch_inferior_registers (ops, regcache,
1255 gdbarch_ps_regnum (gdbarch));
1256 th->context.EFlags |= FLAG_TRACE_BIT;
1259 if (th->context.ContextFlags)
1261 if (debug_registers_changed)
1263 th->context.Dr0 = dr[0];
1264 th->context.Dr1 = dr[1];
1265 th->context.Dr2 = dr[2];
1266 th->context.Dr3 = dr[3];
1267 th->context.Dr6 = DR6_CLEAR_VALUE;
1268 th->context.Dr7 = dr[7];
1270 CHECK (SetThreadContext (th->h, &th->context));
1271 th->context.ContextFlags = 0;
1275 /* Allow continuing with the same signal that interrupted us.
1276 Otherwise complain. */
1279 windows_continue (continue_status, -1, 0);
1281 windows_continue (continue_status, ptid_get_tid (ptid), 0);
1284 /* Ctrl-C handler used when the inferior is not run in the same console. The
1285 handler is in charge of interrupting the inferior using DebugBreakProcess.
1286 Note that this function is not available prior to Windows XP. In this case
1287 we emit a warning. */
1289 ctrl_c_handler (DWORD event_type)
1291 const int attach_flag = current_inferior ()->attach_flag;
1293 /* Only handle Ctrl-C and Ctrl-Break events. Ignore others. */
1294 if (event_type != CTRL_C_EVENT && event_type != CTRL_BREAK_EVENT)
1297 /* If the inferior and the debugger share the same console, do nothing as
1298 the inferior has also received the Ctrl-C event. */
1299 if (!new_console && !attach_flag)
1302 if (!DebugBreakProcess (current_process_handle))
1303 warning (_("Could not interrupt program. "
1304 "Press Ctrl-c in the program console."));
1306 /* Return true to tell that Ctrl-C has been handled. */
1310 /* Get the next event from the child. Return 1 if the event requires
1311 handling by WFI (or whatever). */
1313 get_windows_debug_event (struct target_ops *ops,
1314 int pid, struct target_waitstatus *ourstatus)
1317 DWORD continue_status, event_code;
1319 static thread_info dummy_thread_info;
1322 last_sig = GDB_SIGNAL_0;
1324 if (!(debug_event = WaitForDebugEvent (¤t_event, 1000)))
1328 continue_status = DBG_CONTINUE;
1330 event_code = current_event.dwDebugEventCode;
1331 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1333 have_saved_context = 0;
1337 case CREATE_THREAD_DEBUG_EVENT:
1338 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1339 (unsigned) current_event.dwProcessId,
1340 (unsigned) current_event.dwThreadId,
1341 "CREATE_THREAD_DEBUG_EVENT"));
1342 if (saw_create != 1)
1344 struct inferior *inf;
1345 inf = find_inferior_pid (current_event.dwProcessId);
1346 if (!saw_create && inf->attach_flag)
1348 /* Kludge around a Windows bug where first event is a create
1349 thread event. Caused when attached process does not have
1351 retval = fake_create_process ();
1357 /* Record the existence of this thread. */
1358 retval = current_event.dwThreadId;
1359 th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
1360 current_event.dwThreadId),
1361 current_event.u.CreateThread.hThread,
1362 current_event.u.CreateThread.lpThreadLocalBase);
1366 case EXIT_THREAD_DEBUG_EVENT:
1367 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1368 (unsigned) current_event.dwProcessId,
1369 (unsigned) current_event.dwThreadId,
1370 "EXIT_THREAD_DEBUG_EVENT"));
1372 if (current_event.dwThreadId != main_thread_id)
1374 windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
1375 current_event.dwThreadId),
1376 current_event.u.ExitThread.dwExitCode);
1377 th = &dummy_thread_info;
1381 case CREATE_PROCESS_DEBUG_EVENT:
1382 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1383 (unsigned) current_event.dwProcessId,
1384 (unsigned) current_event.dwThreadId,
1385 "CREATE_PROCESS_DEBUG_EVENT"));
1386 CloseHandle (current_event.u.CreateProcessInfo.hFile);
1387 if (++saw_create != 1)
1390 current_process_handle = current_event.u.CreateProcessInfo.hProcess;
1392 windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
1395 main_thread_id = current_event.dwThreadId;
1396 /* Add the main thread. */
1397 th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
1398 current_event.dwThreadId),
1399 current_event.u.CreateProcessInfo.hThread,
1400 current_event.u.CreateProcessInfo.lpThreadLocalBase);
1401 retval = current_event.dwThreadId;
1404 case EXIT_PROCESS_DEBUG_EVENT:
1405 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1406 (unsigned) current_event.dwProcessId,
1407 (unsigned) current_event.dwThreadId,
1408 "EXIT_PROCESS_DEBUG_EVENT"));
1409 if (!windows_initialization_done)
1411 target_terminal_ours ();
1412 target_mourn_inferior ();
1413 error (_("During startup program exited with code 0x%x."),
1414 (unsigned int) current_event.u.ExitProcess.dwExitCode);
1416 else if (saw_create == 1)
1418 ourstatus->kind = TARGET_WAITKIND_EXITED;
1419 ourstatus->value.integer = current_event.u.ExitProcess.dwExitCode;
1420 retval = main_thread_id;
1424 case LOAD_DLL_DEBUG_EVENT:
1425 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1426 (unsigned) current_event.dwProcessId,
1427 (unsigned) current_event.dwThreadId,
1428 "LOAD_DLL_DEBUG_EVENT"));
1429 CloseHandle (current_event.u.LoadDll.hFile);
1430 if (saw_create != 1 || ! windows_initialization_done)
1432 catch_errors (handle_load_dll, NULL, (char *) "", RETURN_MASK_ALL);
1433 ourstatus->kind = TARGET_WAITKIND_LOADED;
1434 ourstatus->value.integer = 0;
1435 retval = main_thread_id;
1438 case UNLOAD_DLL_DEBUG_EVENT:
1439 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1440 (unsigned) current_event.dwProcessId,
1441 (unsigned) current_event.dwThreadId,
1442 "UNLOAD_DLL_DEBUG_EVENT"));
1443 if (saw_create != 1 || ! windows_initialization_done)
1445 catch_errors (handle_unload_dll, NULL, (char *) "", RETURN_MASK_ALL);
1446 ourstatus->kind = TARGET_WAITKIND_LOADED;
1447 ourstatus->value.integer = 0;
1448 retval = main_thread_id;
1451 case EXCEPTION_DEBUG_EVENT:
1452 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1453 (unsigned) current_event.dwProcessId,
1454 (unsigned) current_event.dwThreadId,
1455 "EXCEPTION_DEBUG_EVENT"));
1456 if (saw_create != 1)
1458 switch (handle_exception (ourstatus))
1461 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1464 retval = current_event.dwThreadId;
1468 continue_status = -1;
1473 case OUTPUT_DEBUG_STRING_EVENT: /* Message from the kernel. */
1474 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
1475 (unsigned) current_event.dwProcessId,
1476 (unsigned) current_event.dwThreadId,
1477 "OUTPUT_DEBUG_STRING_EVENT"));
1478 if (saw_create != 1)
1480 retval = handle_output_debug_string (ourstatus);
1484 if (saw_create != 1)
1486 printf_unfiltered ("gdb: kernel event for pid=%u tid=0x%x\n",
1487 (unsigned) current_event.dwProcessId,
1488 (unsigned) current_event.dwThreadId);
1489 printf_unfiltered (" unknown event code %u\n",
1490 (unsigned) current_event.dwDebugEventCode);
1494 if (!retval || saw_create != 1)
1496 if (continue_status == -1)
1497 windows_resume (ops, minus_one_ptid, 0, 1);
1499 CHECK (windows_continue (continue_status, -1, 0));
1503 inferior_ptid = ptid_build (current_event.dwProcessId, 0,
1505 current_thread = th ?: thread_rec (current_event.dwThreadId, TRUE);
1512 /* Wait for interesting events to occur in the target process. */
1514 windows_wait (struct target_ops *ops,
1515 ptid_t ptid, struct target_waitstatus *ourstatus, int options)
1519 target_terminal_ours ();
1521 /* We loop when we get a non-standard exception rather than return
1522 with a SPURIOUS because resume can try and step or modify things,
1523 which needs a current_thread->h. But some of these exceptions mark
1524 the birth or death of threads, which mean that the current thread
1525 isn't necessarily what you think it is. */
1531 /* If the user presses Ctrl-c while the debugger is waiting
1532 for an event, he expects the debugger to interrupt his program
1533 and to get the prompt back. There are two possible situations:
1535 - The debugger and the program do not share the console, in
1536 which case the Ctrl-c event only reached the debugger.
1537 In that case, the ctrl_c handler will take care of interrupting
1538 the inferior. Note that this case is working starting with
1539 Windows XP. For Windows 2000, Ctrl-C should be pressed in the
1542 - The debugger and the program share the same console, in which
1543 case both debugger and inferior will receive the Ctrl-c event.
1544 In that case the ctrl_c handler will ignore the event, as the
1545 Ctrl-c event generated inside the inferior will trigger the
1546 expected debug event.
1548 FIXME: brobecker/2008-05-20: If the inferior receives the
1549 signal first and the delay until GDB receives that signal
1550 is sufficiently long, GDB can sometimes receive the SIGINT
1551 after we have unblocked the CTRL+C handler. This would
1552 lead to the debugger stopping prematurely while handling
1553 the new-thread event that comes with the handling of the SIGINT
1554 inside the inferior, and then stop again immediately when
1555 the user tries to resume the execution in the inferior.
1556 This is a classic race that we should try to fix one day. */
1557 SetConsoleCtrlHandler (&ctrl_c_handler, TRUE);
1558 retval = get_windows_debug_event (ops, pid, ourstatus);
1559 SetConsoleCtrlHandler (&ctrl_c_handler, FALSE);
1562 return ptid_build (current_event.dwProcessId, 0, retval);
1567 if (deprecated_ui_loop_hook != NULL)
1568 detach = deprecated_ui_loop_hook (0);
1571 windows_kill_inferior (ops);
1576 /* Iterate over all DLLs currently mapped by our inferior, and
1577 add them to our list of solibs. */
1580 windows_add_all_dlls (void)
1583 HMODULE dummy_hmodule;
1588 if (EnumProcessModules (current_process_handle, &dummy_hmodule,
1589 sizeof (HMODULE), &cb_needed) == 0)
1595 hmodules = (HMODULE *) alloca (cb_needed);
1596 if (EnumProcessModules (current_process_handle, hmodules,
1597 cb_needed, &cb_needed) == 0)
1600 for (i = 1; i < (int) (cb_needed / sizeof (HMODULE)); i++)
1604 wchar_t dll_name[__PMAX];
1607 char dll_name[__PMAX];
1610 if (GetModuleInformation (current_process_handle, hmodules[i],
1611 &mi, sizeof (mi)) == 0)
1613 if (GetModuleFileNameEx (current_process_handle, hmodules[i],
1614 dll_name, sizeof (dll_name)) == 0)
1617 wcstombs (name, dll_name, __PMAX);
1622 solib_end->next = windows_make_so (name, mi.lpBaseOfDll);
1623 solib_end = solib_end->next;
1628 do_initial_windows_stuff (struct target_ops *ops, DWORD pid, int attaching)
1630 extern int stop_after_trap;
1632 struct inferior *inf;
1633 struct thread_info *tp;
1635 last_sig = GDB_SIGNAL_0;
1637 exception_count = 0;
1638 open_process_used = 0;
1639 debug_registers_changed = 0;
1640 debug_registers_used = 0;
1641 for (i = 0; i < sizeof (dr) / sizeof (dr[0]); i++)
1644 cygwin_load_start = cygwin_load_end = 0;
1646 current_event.dwProcessId = pid;
1647 memset (¤t_event, 0, sizeof (current_event));
1648 if (!target_is_pushed (ops))
1650 disable_breakpoints_in_shlibs ();
1651 windows_clear_solib ();
1652 clear_proceed_status (0);
1653 init_wait_for_inferior ();
1655 inf = current_inferior ();
1656 inferior_appeared (inf, pid);
1657 inf->attach_flag = attaching;
1659 /* Make the new process the current inferior, so terminal handling
1660 can rely on it. When attaching, we don't know about any thread
1661 id here, but that's OK --- nothing should be referencing the
1662 current thread until we report an event out of windows_wait. */
1663 inferior_ptid = pid_to_ptid (pid);
1665 target_terminal_init ();
1666 target_terminal_inferior ();
1668 windows_initialization_done = 0;
1669 inf->control.stop_soon = STOP_QUIETLY;
1672 stop_after_trap = 1;
1673 wait_for_inferior ();
1674 tp = inferior_thread ();
1675 if (tp->suspend.stop_signal != GDB_SIGNAL_TRAP)
1676 resume (0, tp->suspend.stop_signal);
1681 /* Now that the inferior has been started and all DLLs have been mapped,
1682 we can iterate over all DLLs and load them in.
1684 We avoid doing it any earlier because, on certain versions of Windows,
1685 LOAD_DLL_DEBUG_EVENTs are sometimes not complete. In particular,
1686 we have seen on Windows 8.1 that the ntdll.dll load event does not
1687 include the DLL name, preventing us from creating an associated SO.
1688 A possible explanation is that ntdll.dll might be mapped before
1689 the SO info gets created by the Windows system -- ntdll.dll is
1690 the first DLL to be reported via LOAD_DLL_DEBUG_EVENT and other DLLs
1691 do not seem to suffer from that problem.
1693 Rather than try to work around this sort of issue, it is much
1694 simpler to just ignore DLL load/unload events during the startup
1695 phase, and then process them all in one batch now. */
1696 windows_add_all_dlls ();
1698 windows_initialization_done = 1;
1699 inf->control.stop_soon = NO_STOP_QUIETLY;
1700 stop_after_trap = 0;
1704 /* Try to set or remove a user privilege to the current process. Return -1
1705 if that fails, the previous setting of that privilege otherwise.
1707 This code is copied from the Cygwin source code and rearranged to allow
1708 dynamically loading of the needed symbols from advapi32 which is only
1709 available on NT/2K/XP. */
1711 set_process_privilege (const char *privilege, BOOL enable)
1713 HANDLE token_hdl = NULL;
1715 TOKEN_PRIVILEGES new_priv, orig_priv;
1719 if (!OpenProcessToken (GetCurrentProcess (),
1720 TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES,
1724 if (!LookupPrivilegeValueA (NULL, privilege, &restore_priv))
1727 new_priv.PrivilegeCount = 1;
1728 new_priv.Privileges[0].Luid = restore_priv;
1729 new_priv.Privileges[0].Attributes = enable ? SE_PRIVILEGE_ENABLED : 0;
1731 if (!AdjustTokenPrivileges (token_hdl, FALSE, &new_priv,
1732 sizeof orig_priv, &orig_priv, &size))
1735 /* Disabled, otherwise every `attach' in an unprivileged user session
1736 would raise the "Failed to get SE_DEBUG_NAME privilege" warning in
1737 windows_attach(). */
1738 /* AdjustTokenPrivileges returns TRUE even if the privilege could not
1739 be enabled. GetLastError () returns an correct error code, though. */
1740 if (enable && GetLastError () == ERROR_NOT_ALL_ASSIGNED)
1744 ret = orig_priv.Privileges[0].Attributes == SE_PRIVILEGE_ENABLED ? 1 : 0;
1748 CloseHandle (token_hdl);
1753 /* Attach to process PID, then initialize for debugging it. */
1755 windows_attach (struct target_ops *ops, const char *args, int from_tty)
1760 pid = parse_pid_to_attach (args);
1762 if (set_process_privilege (SE_DEBUG_NAME, TRUE) < 0)
1764 printf_unfiltered ("Warning: Failed to get SE_DEBUG_NAME privilege\n");
1765 printf_unfiltered ("This can cause attach to "
1766 "fail on Windows NT/2K/XP\n");
1769 windows_init_thread_list ();
1770 ok = DebugActiveProcess (pid);
1776 /* Try fall back to Cygwin pid. */
1777 pid = cygwin_internal (CW_CYGWIN_PID_TO_WINPID, pid);
1780 ok = DebugActiveProcess (pid);
1785 error (_("Can't attach to process."));
1787 DebugSetProcessKillOnExit (FALSE);
1791 char *exec_file = (char *) get_exec_file (0);
1794 printf_unfiltered ("Attaching to program `%s', %s\n", exec_file,
1795 target_pid_to_str (pid_to_ptid (pid)));
1797 printf_unfiltered ("Attaching to %s\n",
1798 target_pid_to_str (pid_to_ptid (pid)));
1800 gdb_flush (gdb_stdout);
1803 do_initial_windows_stuff (ops, pid, 1);
1804 target_terminal_ours ();
1808 windows_detach (struct target_ops *ops, const char *args, int from_tty)
1813 windows_resume (ops, ptid, 0, GDB_SIGNAL_0);
1815 if (!DebugActiveProcessStop (current_event.dwProcessId))
1817 error (_("Can't detach process %u (error %u)"),
1818 (unsigned) current_event.dwProcessId, (unsigned) GetLastError ());
1821 DebugSetProcessKillOnExit (FALSE);
1823 if (detached && from_tty)
1825 char *exec_file = get_exec_file (0);
1828 printf_unfiltered ("Detaching from program: %s, Pid %u\n", exec_file,
1829 (unsigned) current_event.dwProcessId);
1830 gdb_flush (gdb_stdout);
1833 x86_cleanup_dregs ();
1834 inferior_ptid = null_ptid;
1835 detach_inferior (current_event.dwProcessId);
1837 inf_child_maybe_unpush_target (ops);
1840 /* Try to determine the executable filename.
1842 EXE_NAME_RET is a pointer to a buffer whose size is EXE_NAME_MAX_LEN.
1844 Upon success, the filename is stored inside EXE_NAME_RET, and
1845 this function returns nonzero.
1847 Otherwise, this function returns zero and the contents of
1848 EXE_NAME_RET is undefined. */
1851 windows_get_exec_module_filename (char *exe_name_ret, size_t exe_name_max_len)
1858 if (!EnumProcessModules (current_process_handle, &dh_buf,
1859 sizeof (HMODULE), &cbNeeded) || !cbNeeded)
1862 /* We know the executable is always first in the list of modules,
1863 which we just fetched. So no need to fetch more. */
1867 /* Cygwin prefers that the path be in /x/y/z format, so extract
1868 the filename into a temporary buffer first, and then convert it
1869 to POSIX format into the destination buffer. */
1870 cygwin_buf_t *pathbuf = alloca (exe_name_max_len * sizeof (cygwin_buf_t));
1872 len = GetModuleFileNameEx (current_process_handle,
1873 dh_buf, pathbuf, exe_name_max_len);
1875 error (_("Error getting executable filename: %u."),
1876 (unsigned) GetLastError ());
1877 if (cygwin_conv_path (CCP_WIN_W_TO_POSIX, pathbuf, exe_name_ret,
1878 exe_name_max_len) < 0)
1879 error (_("Error converting executable filename to POSIX: %d."), errno);
1882 len = GetModuleFileNameEx (current_process_handle,
1883 dh_buf, exe_name_ret, exe_name_max_len);
1885 error (_("Error getting executable filename: %u."),
1886 (unsigned) GetLastError ());
1889 return 1; /* success */
1892 /* The pid_to_exec_file target_ops method for this platform. */
1895 windows_pid_to_exec_file (struct target_ops *self, int pid)
1897 static char path[__PMAX];
1899 /* Try to find exe name as symlink target of /proc/<pid>/exe. */
1901 char procexe[sizeof ("/proc/4294967295/exe")];
1903 xsnprintf (procexe, sizeof (procexe), "/proc/%u/exe", pid);
1904 nchars = readlink (procexe, path, sizeof(path));
1905 if (nchars > 0 && nchars < sizeof (path))
1907 path[nchars] = '\0'; /* Got it */
1912 /* If we get here then either Cygwin is hosed, this isn't a Cygwin version
1913 of gdb, or we're trying to debug a non-Cygwin windows executable. */
1914 if (!windows_get_exec_module_filename (path, sizeof (path)))
1920 /* Print status information about what we're accessing. */
1923 windows_files_info (struct target_ops *ignore)
1925 struct inferior *inf = current_inferior ();
1927 printf_unfiltered ("\tUsing the running image of %s %s.\n",
1928 inf->attach_flag ? "attached" : "child",
1929 target_pid_to_str (inferior_ptid));
1932 /* Modify CreateProcess parameters for use of a new separate console.
1934 *FLAGS: DWORD parameter for general process creation flags.
1935 *SI: STARTUPINFO structure, for which the console window size and
1936 console buffer size is filled in if GDB is running in a console.
1937 to create the new console.
1938 The size of the used font is not available on all versions of
1939 Windows OS. Furthermore, the current font might not be the default
1940 font, but this is still better than before.
1941 If the windows and buffer sizes are computed,
1942 SI->DWFLAGS is changed so that this information is used
1943 by CreateProcess function. */
1946 windows_set_console_info (STARTUPINFO *si, DWORD *flags)
1948 HANDLE hconsole = CreateFile ("CONOUT$", GENERIC_READ | GENERIC_WRITE,
1949 FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
1951 if (hconsole != INVALID_HANDLE_VALUE)
1953 CONSOLE_SCREEN_BUFFER_INFO sbinfo;
1955 CONSOLE_FONT_INFO cfi;
1957 GetCurrentConsoleFont (hconsole, FALSE, &cfi);
1958 font_size = GetConsoleFontSize (hconsole, cfi.nFont);
1959 GetConsoleScreenBufferInfo(hconsole, &sbinfo);
1960 si->dwXSize = sbinfo.srWindow.Right - sbinfo.srWindow.Left + 1;
1961 si->dwYSize = sbinfo.srWindow.Bottom - sbinfo.srWindow.Top + 1;
1963 si->dwXSize *= font_size.X;
1967 si->dwYSize *= font_size.Y;
1970 si->dwXCountChars = sbinfo.dwSize.X;
1971 si->dwYCountChars = sbinfo.dwSize.Y;
1972 si->dwFlags |= STARTF_USESIZE | STARTF_USECOUNTCHARS;
1974 *flags |= CREATE_NEW_CONSOLE;
1978 /* Function called by qsort to sort environment strings. */
1981 envvar_cmp (const void *a, const void *b)
1983 const char **p = (const char **) a;
1984 const char **q = (const char **) b;
1985 return strcasecmp (*p, *q);
1991 clear_win32_environment (char **env)
1995 wchar_t *copy = NULL, *equalpos;
1997 for (i = 0; env[i] && *env[i]; i++)
1999 len = mbstowcs (NULL, env[i], 0) + 1;
2000 copy = (wchar_t *) xrealloc (copy, len * sizeof (wchar_t));
2001 mbstowcs (copy, env[i], len);
2002 equalpos = wcschr (copy, L'=');
2005 SetEnvironmentVariableW (copy, NULL);
2011 /* Start an inferior windows child process and sets inferior_ptid to its pid.
2012 EXEC_FILE is the file to run.
2013 ALLARGS is a string containing the arguments to the program.
2014 ENV is the environment vector to pass. Errors reported with error(). */
2017 windows_create_inferior (struct target_ops *ops, char *exec_file,
2018 char *allargs, char **in_env, int from_tty)
2022 cygwin_buf_t real_path[__PMAX];
2023 cygwin_buf_t shell[__PMAX]; /* Path to shell */
2025 cygwin_buf_t *toexec;
2026 cygwin_buf_t *cygallargs;
2028 char **old_env = NULL;
2032 int ostdin, ostdout, ostderr;
2034 char real_path[__PMAX];
2035 char shell[__PMAX]; /* Path to shell */
2047 PROCESS_INFORMATION pi;
2050 const char *inferior_io_terminal = get_inferior_io_terminal ();
2053 error (_("No executable specified, use `target exec'."));
2055 memset (&si, 0, sizeof (si));
2056 si.cb = sizeof (si);
2059 flags |= CREATE_NEW_PROCESS_GROUP;
2062 windows_set_console_info (&si, &flags);
2067 flags |= DEBUG_ONLY_THIS_PROCESS;
2068 if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, exec_file, real_path,
2069 __PMAX * sizeof (cygwin_buf_t)) < 0)
2070 error (_("Error starting executable: %d"), errno);
2073 len = mbstowcs (NULL, allargs, 0) + 1;
2074 if (len == (size_t) -1)
2075 error (_("Error starting executable: %d"), errno);
2076 cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t));
2077 mbstowcs (cygallargs, allargs, len);
2079 cygallargs = allargs;
2084 sh = getenv ("SHELL");
2087 if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, sh, shell, __PMAX) < 0)
2088 error (_("Error starting executable via shell: %d"), errno);
2090 len = sizeof (L" -c 'exec '") + mbstowcs (NULL, exec_file, 0)
2091 + mbstowcs (NULL, allargs, 0) + 2;
2092 cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t));
2093 swprintf (cygallargs, len, L" -c 'exec %s %s'", exec_file, allargs);
2095 len = (sizeof (" -c 'exec '") + strlen (exec_file)
2096 + strlen (allargs) + 2);
2097 cygallargs = (char *) alloca (len);
2098 xsnprintf (cygallargs, len, " -c 'exec %s %s'", exec_file, allargs);
2101 flags |= DEBUG_PROCESS;
2105 args = (cygwin_buf_t *) alloca ((wcslen (toexec) + wcslen (cygallargs) + 2)
2106 * sizeof (wchar_t));
2107 wcscpy (args, toexec);
2108 wcscat (args, L" ");
2109 wcscat (args, cygallargs);
2111 args = (cygwin_buf_t *) alloca (strlen (toexec) + strlen (cygallargs) + 2);
2112 strcpy (args, toexec);
2114 strcat (args, cygallargs);
2117 #ifdef CW_CVT_ENV_TO_WINENV
2118 /* First try to create a direct Win32 copy of the POSIX environment. */
2119 w32_env = (PWCHAR) cygwin_internal (CW_CVT_ENV_TO_WINENV, in_env);
2120 if (w32_env != (PWCHAR) -1)
2121 flags |= CREATE_UNICODE_ENVIRONMENT;
2123 /* If that fails, fall back to old method tweaking GDB's environment. */
2126 /* Reset all Win32 environment variables to avoid leftover on next run. */
2127 clear_win32_environment (environ);
2128 /* Prepare the environment vars for CreateProcess. */
2131 cygwin_internal (CW_SYNC_WINENV);
2135 if (!inferior_io_terminal)
2136 tty = ostdin = ostdout = ostderr = -1;
2139 tty = open (inferior_io_terminal, O_RDWR | O_NOCTTY);
2142 print_sys_errmsg (inferior_io_terminal, errno);
2143 ostdin = ostdout = ostderr = -1;
2156 windows_init_thread_list ();
2157 ret = CreateProcess (0,
2158 args, /* command line */
2159 NULL, /* Security */
2161 TRUE, /* inherit handles */
2162 flags, /* start flags */
2163 w32_env, /* environment */
2164 NULL, /* current directory */
2168 /* Just free the Win32 environment, if it could be created. */
2172 /* Reset all environment variables to avoid leftover on next run. */
2173 clear_win32_environment (in_env);
2174 /* Restore normal GDB environment variables. */
2176 cygwin_internal (CW_SYNC_WINENV);
2191 /* Build the command line, a space-separated list of tokens where
2192 the first token is the name of the module to be executed.
2193 To avoid ambiguities introduced by spaces in the module name,
2195 args_len = strlen (toexec) + 2 /* quotes */ + strlen (allargs) + 2;
2196 args = alloca (args_len);
2197 xsnprintf (args, args_len, "\"%s\" %s", toexec, allargs);
2199 flags |= DEBUG_ONLY_THIS_PROCESS;
2201 if (!inferior_io_terminal)
2202 tty = INVALID_HANDLE_VALUE;
2205 SECURITY_ATTRIBUTES sa;
2206 sa.nLength = sizeof(sa);
2207 sa.lpSecurityDescriptor = 0;
2208 sa.bInheritHandle = TRUE;
2209 tty = CreateFileA (inferior_io_terminal, GENERIC_READ | GENERIC_WRITE,
2210 0, &sa, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
2211 if (tty == INVALID_HANDLE_VALUE)
2212 warning (_("Warning: Failed to open TTY %s, error %#x."),
2213 inferior_io_terminal, (unsigned) GetLastError ());
2217 si.hStdOutput = tty;
2219 si.dwFlags |= STARTF_USESTDHANDLES;
2223 /* CreateProcess takes the environment list as a null terminated set of
2224 strings (i.e. two nulls terminate the list). */
2226 /* Get total size for env strings. */
2227 for (envlen = 0, i = 0; in_env[i] && *in_env[i]; i++)
2228 envlen += strlen (in_env[i]) + 1;
2230 envsize = sizeof (in_env[0]) * (i + 1);
2231 env = (char **) alloca (envsize);
2232 memcpy (env, in_env, envsize);
2233 /* Windows programs expect the environment block to be sorted. */
2234 qsort (env, i, sizeof (char *), envvar_cmp);
2236 w32env = alloca (envlen + 1);
2238 /* Copy env strings into new buffer. */
2239 for (temp = w32env, i = 0; env[i] && *env[i]; i++)
2241 strcpy (temp, env[i]);
2242 temp += strlen (temp) + 1;
2245 /* Final nil string to terminate new env. */
2248 windows_init_thread_list ();
2249 ret = CreateProcessA (0,
2250 args, /* command line */
2251 NULL, /* Security */
2253 TRUE, /* inherit handles */
2254 flags, /* start flags */
2255 w32env, /* environment */
2256 NULL, /* current directory */
2259 if (tty != INVALID_HANDLE_VALUE)
2264 error (_("Error creating process %s, (error %u)."),
2265 exec_file, (unsigned) GetLastError ());
2267 CloseHandle (pi.hThread);
2268 CloseHandle (pi.hProcess);
2270 if (useshell && shell[0] != '\0')
2275 do_initial_windows_stuff (ops, pi.dwProcessId, 0);
2277 /* windows_continue (DBG_CONTINUE, -1, 0); */
2281 windows_mourn_inferior (struct target_ops *ops)
2283 (void) windows_continue (DBG_CONTINUE, -1, 0);
2284 x86_cleanup_dregs();
2285 if (open_process_used)
2287 CHECK (CloseHandle (current_process_handle));
2288 open_process_used = 0;
2290 inf_child_mourn_inferior (ops);
2293 /* Send a SIGINT to the process group. This acts just like the user typed a
2294 ^C on the controlling terminal. */
2297 windows_stop (struct target_ops *self, ptid_t ptid)
2299 DEBUG_EVENTS (("gdb: GenerateConsoleCtrlEvent (CTRLC_EVENT, 0)\n"));
2300 CHECK (GenerateConsoleCtrlEvent (CTRL_C_EVENT, current_event.dwProcessId));
2301 registers_changed (); /* refresh register state */
2304 /* Helper for windows_xfer_partial that handles memory transfers.
2305 Arguments are like target_xfer_partial. */
2307 static enum target_xfer_status
2308 windows_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
2309 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
2313 DWORD lasterror = 0;
2315 if (writebuf != NULL)
2317 DEBUG_MEM (("gdb: write target memory, %s bytes at %s\n",
2318 pulongest (len), core_addr_to_string (memaddr)));
2319 success = WriteProcessMemory (current_process_handle,
2320 (LPVOID) (uintptr_t) memaddr, writebuf,
2323 lasterror = GetLastError ();
2324 FlushInstructionCache (current_process_handle,
2325 (LPCVOID) (uintptr_t) memaddr, len);
2329 DEBUG_MEM (("gdb: read target memory, %s bytes at %s\n",
2330 pulongest (len), core_addr_to_string (memaddr)));
2331 success = ReadProcessMemory (current_process_handle,
2332 (LPCVOID) (uintptr_t) memaddr, readbuf,
2335 lasterror = GetLastError ();
2337 *xfered_len = (ULONGEST) done;
2338 if (!success && lasterror == ERROR_PARTIAL_COPY && done > 0)
2339 return TARGET_XFER_OK;
2341 return success ? TARGET_XFER_OK : TARGET_XFER_E_IO;
2345 windows_kill_inferior (struct target_ops *ops)
2347 CHECK (TerminateProcess (current_process_handle, 0));
2351 if (!windows_continue (DBG_CONTINUE, -1, 1))
2353 if (!WaitForDebugEvent (¤t_event, INFINITE))
2355 if (current_event.dwDebugEventCode == EXIT_PROCESS_DEBUG_EVENT)
2359 target_mourn_inferior (); /* Or just windows_mourn_inferior? */
2363 windows_close (struct target_ops *self)
2365 DEBUG_EVENTS (("gdb: windows_close, inferior_ptid=%d\n",
2366 ptid_get_pid (inferior_ptid)));
2369 /* Convert pid to printable format. */
2371 windows_pid_to_str (struct target_ops *ops, ptid_t ptid)
2373 static char buf[80];
2375 if (ptid_get_tid (ptid) != 0)
2377 snprintf (buf, sizeof (buf), "Thread %d.0x%lx",
2378 ptid_get_pid (ptid), ptid_get_tid (ptid));
2382 return normal_pid_to_str (ptid);
2385 static enum target_xfer_status
2386 windows_xfer_shared_libraries (struct target_ops *ops,
2387 enum target_object object, const char *annex,
2388 gdb_byte *readbuf, const gdb_byte *writebuf,
2389 ULONGEST offset, ULONGEST len,
2390 ULONGEST *xfered_len)
2392 struct obstack obstack;
2398 return TARGET_XFER_E_IO;
2400 obstack_init (&obstack);
2401 obstack_grow_str (&obstack, "<library-list>\n");
2402 for (so = solib_start.next; so; so = so->next)
2403 windows_xfer_shared_library (so->so_name, (CORE_ADDR)
2404 (uintptr_t) so->lm_info->load_addr,
2405 target_gdbarch (), &obstack);
2406 obstack_grow_str0 (&obstack, "</library-list>\n");
2408 buf = obstack_finish (&obstack);
2409 len_avail = strlen (buf);
2410 if (offset >= len_avail)
2414 if (len > len_avail - offset)
2415 len = len_avail - offset;
2416 memcpy (readbuf, buf + offset, len);
2419 obstack_free (&obstack, NULL);
2420 *xfered_len = (ULONGEST) len;
2421 return len != 0 ? TARGET_XFER_OK : TARGET_XFER_EOF;
2424 static enum target_xfer_status
2425 windows_xfer_partial (struct target_ops *ops, enum target_object object,
2426 const char *annex, gdb_byte *readbuf,
2427 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
2428 ULONGEST *xfered_len)
2432 case TARGET_OBJECT_MEMORY:
2433 return windows_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
2435 case TARGET_OBJECT_LIBRARIES:
2436 return windows_xfer_shared_libraries (ops, object, annex, readbuf,
2437 writebuf, offset, len, xfered_len);
2440 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
2441 readbuf, writebuf, offset, len,
2446 /* Provide thread local base, i.e. Thread Information Block address.
2447 Returns 1 if ptid is found and sets *ADDR to thread_local_base. */
2450 windows_get_tib_address (struct target_ops *self,
2451 ptid_t ptid, CORE_ADDR *addr)
2455 th = thread_rec (ptid_get_tid (ptid), 0);
2460 *addr = th->thread_local_base;
2466 windows_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
2468 return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
2471 static struct target_ops *
2472 windows_target (void)
2474 struct target_ops *t = inf_child_target ();
2476 t->to_close = windows_close;
2477 t->to_attach = windows_attach;
2478 t->to_attach_no_wait = 1;
2479 t->to_detach = windows_detach;
2480 t->to_resume = windows_resume;
2481 t->to_wait = windows_wait;
2482 t->to_fetch_registers = windows_fetch_inferior_registers;
2483 t->to_store_registers = windows_store_inferior_registers;
2484 t->to_xfer_partial = windows_xfer_partial;
2485 t->to_files_info = windows_files_info;
2486 t->to_kill = windows_kill_inferior;
2487 t->to_create_inferior = windows_create_inferior;
2488 t->to_mourn_inferior = windows_mourn_inferior;
2489 t->to_thread_alive = windows_thread_alive;
2490 t->to_pid_to_str = windows_pid_to_str;
2491 t->to_stop = windows_stop;
2492 t->to_pid_to_exec_file = windows_pid_to_exec_file;
2493 t->to_get_ada_task_ptid = windows_get_ada_task_ptid;
2494 t->to_get_tib_address = windows_get_tib_address;
2500 set_windows_aliases (char *argv0)
2502 add_info_alias ("dll", "sharedlibrary", 1);
2505 /* -Wmissing-prototypes */
2506 extern initialize_file_ftype _initialize_windows_nat;
2509 _initialize_windows_nat (void)
2511 struct target_ops *t;
2513 t = windows_target ();
2515 x86_use_watchpoints (t);
2517 x86_dr_low.set_control = cygwin_set_dr7;
2518 x86_dr_low.set_addr = cygwin_set_dr;
2519 x86_dr_low.get_addr = cygwin_get_dr;
2520 x86_dr_low.get_status = cygwin_get_dr6;
2521 x86_dr_low.get_control = cygwin_get_dr7;
2523 /* x86_dr_low.debug_register_length field is set by
2524 calling x86_set_debug_register_length function
2525 in processor windows specific native file. */
2530 cygwin_internal (CW_SET_DOS_FILE_WARNING, 0);
2534 add_setshow_boolean_cmd ("shell", class_support, &useshell, _("\
2535 Set use of shell to start subprocess."), _("\
2536 Show use of shell to start subprocess."), NULL,
2538 NULL, /* FIXME: i18n: */
2539 &setlist, &showlist);
2541 add_setshow_boolean_cmd ("cygwin-exceptions", class_support,
2542 &cygwin_exceptions, _("\
2543 Break when an exception is detected in the Cygwin DLL itself."), _("\
2544 Show whether gdb breaks on exceptions in the Cygwin DLL itself."), NULL,
2546 NULL, /* FIXME: i18n: */
2547 &setlist, &showlist);
2550 add_setshow_boolean_cmd ("new-console", class_support, &new_console, _("\
2551 Set creation of new console when creating child process."), _("\
2552 Show creation of new console when creating child process."), NULL,
2554 NULL, /* FIXME: i18n: */
2555 &setlist, &showlist);
2557 add_setshow_boolean_cmd ("new-group", class_support, &new_group, _("\
2558 Set creation of new group when creating child process."), _("\
2559 Show creation of new group when creating child process."), NULL,
2561 NULL, /* FIXME: i18n: */
2562 &setlist, &showlist);
2564 add_setshow_boolean_cmd ("debugexec", class_support, &debug_exec, _("\
2565 Set whether to display execution in child process."), _("\
2566 Show whether to display execution in child process."), NULL,
2568 NULL, /* FIXME: i18n: */
2569 &setlist, &showlist);
2571 add_setshow_boolean_cmd ("debugevents", class_support, &debug_events, _("\
2572 Set whether to display kernel events in child process."), _("\
2573 Show whether to display kernel events in child process."), NULL,
2575 NULL, /* FIXME: i18n: */
2576 &setlist, &showlist);
2578 add_setshow_boolean_cmd ("debugmemory", class_support, &debug_memory, _("\
2579 Set whether to display memory accesses in child process."), _("\
2580 Show whether to display memory accesses in child process."), NULL,
2582 NULL, /* FIXME: i18n: */
2583 &setlist, &showlist);
2585 add_setshow_boolean_cmd ("debugexceptions", class_support,
2586 &debug_exceptions, _("\
2587 Set whether to display kernel exceptions in child process."), _("\
2588 Show whether to display kernel exceptions in child process."), NULL,
2590 NULL, /* FIXME: i18n: */
2591 &setlist, &showlist);
2593 init_w32_command_list ();
2595 add_cmd ("selector", class_info, display_selectors,
2596 _("Display selectors infos."),
2598 deprecated_init_ui_hook = set_windows_aliases;
2601 /* Hardware watchpoint support, adapted from go32-nat.c code. */
2603 /* Pass the address ADDR to the inferior in the I'th debug register.
2604 Here we just store the address in dr array, the registers will be
2605 actually set up when windows_continue is called. */
2607 cygwin_set_dr (int i, CORE_ADDR addr)
2610 internal_error (__FILE__, __LINE__,
2611 _("Invalid register %d in cygwin_set_dr.\n"), i);
2613 debug_registers_changed = 1;
2614 debug_registers_used = 1;
2617 /* Pass the value VAL to the inferior in the DR7 debug control
2618 register. Here we just store the address in D_REGS, the watchpoint
2619 will be actually set up in windows_wait. */
2621 cygwin_set_dr7 (unsigned long val)
2623 dr[7] = (CORE_ADDR) val;
2624 debug_registers_changed = 1;
2625 debug_registers_used = 1;
2628 /* Get the value of debug register I from the inferior. */
2631 cygwin_get_dr (int i)
2636 /* Get the value of the DR6 debug status register from the inferior.
2637 Here we just return the value stored in dr[6]
2638 by the last call to thread_rec for current_event.dwThreadId id. */
2639 static unsigned long
2640 cygwin_get_dr6 (void)
2642 return (unsigned long) dr[6];
2645 /* Get the value of the DR7 debug status register from the inferior.
2646 Here we just return the value stored in dr[7] by the last call to
2647 thread_rec for current_event.dwThreadId id. */
2649 static unsigned long
2650 cygwin_get_dr7 (void)
2652 return (unsigned long) dr[7];
2655 /* Determine if the thread referenced by "ptid" is alive
2656 by "polling" it. If WaitForSingleObject returns WAIT_OBJECT_0
2657 it means that the thread has died. Otherwise it is assumed to be alive. */
2659 windows_thread_alive (struct target_ops *ops, ptid_t ptid)
2663 gdb_assert (ptid_get_tid (ptid) != 0);
2664 tid = ptid_get_tid (ptid);
2666 return WaitForSingleObject (thread_rec (tid, FALSE)->h, 0) == WAIT_OBJECT_0
2670 /* -Wmissing-prototypes */
2671 extern initialize_file_ftype _initialize_check_for_gdb_ini;
2674 _initialize_check_for_gdb_ini (void)
2677 if (inhibit_gdbinit)
2680 homedir = getenv ("HOME");
2684 char *oldini = (char *) alloca (strlen (homedir) +
2685 sizeof ("/gdb.ini"));
2686 strcpy (oldini, homedir);
2687 p = strchr (oldini, '\0');
2688 if (p > oldini && !IS_DIR_SEPARATOR (p[-1]))
2690 strcpy (p, "gdb.ini");
2691 if (access (oldini, 0) == 0)
2693 int len = strlen (oldini);
2694 char *newini = alloca (len + 1);
2696 xsnprintf (newini, len + 1, "%.*s.gdbinit",
2697 (int) (len - (sizeof ("gdb.ini") - 1)), oldini);
2698 warning (_("obsolete '%s' found. Rename to '%s'."), oldini, newini);
2703 /* Define dummy functions which always return error for the rare cases where
2704 these functions could not be found. */
2706 bad_DebugActiveProcessStop (DWORD w)
2711 bad_DebugBreakProcess (HANDLE w)
2716 bad_DebugSetProcessKillOnExit (BOOL w)
2721 bad_EnumProcessModules (HANDLE w, HMODULE *x, DWORD y, LPDWORD z)
2728 bad_GetModuleFileNameExW (HANDLE w, HMODULE x, LPWSTR y, DWORD z)
2734 bad_GetModuleFileNameExA (HANDLE w, HMODULE x, LPSTR y, DWORD z)
2741 bad_GetModuleInformation (HANDLE w, HMODULE x, LPMODULEINFO y, DWORD z)
2747 bad_OpenProcessToken (HANDLE w, DWORD x, PHANDLE y)
2753 bad_GetCurrentConsoleFont (HANDLE w, BOOL bMaxWindow, CONSOLE_FONT_INFO *f)
2759 bad_GetConsoleFontSize (HANDLE w, DWORD nFont)
2767 /* -Wmissing-prototypes */
2768 extern initialize_file_ftype _initialize_loadable;
2770 /* Load any functions which may not be available in ancient versions
2774 _initialize_loadable (void)
2778 hm = LoadLibrary ("kernel32.dll");
2781 DebugActiveProcessStop = (void *)
2782 GetProcAddress (hm, "DebugActiveProcessStop");
2783 DebugBreakProcess = (void *)
2784 GetProcAddress (hm, "DebugBreakProcess");
2785 DebugSetProcessKillOnExit = (void *)
2786 GetProcAddress (hm, "DebugSetProcessKillOnExit");
2787 GetConsoleFontSize = (void *)
2788 GetProcAddress (hm, "GetConsoleFontSize");
2789 GetCurrentConsoleFont = (void *)
2790 GetProcAddress (hm, "GetCurrentConsoleFont");
2793 /* Set variables to dummy versions of these processes if the function
2794 wasn't found in kernel32.dll. */
2795 if (!DebugBreakProcess)
2796 DebugBreakProcess = bad_DebugBreakProcess;
2797 if (!DebugActiveProcessStop || !DebugSetProcessKillOnExit)
2799 DebugActiveProcessStop = bad_DebugActiveProcessStop;
2800 DebugSetProcessKillOnExit = bad_DebugSetProcessKillOnExit;
2802 if (!GetConsoleFontSize)
2803 GetConsoleFontSize = bad_GetConsoleFontSize;
2804 if (!GetCurrentConsoleFont)
2805 GetCurrentConsoleFont = bad_GetCurrentConsoleFont;
2807 /* Load optional functions used for retrieving filename information
2808 associated with the currently debugged process or its dlls. */
2809 hm = LoadLibrary ("psapi.dll");
2812 EnumProcessModules = (void *)
2813 GetProcAddress (hm, "EnumProcessModules");
2814 GetModuleInformation = (void *)
2815 GetProcAddress (hm, "GetModuleInformation");
2816 GetModuleFileNameEx = (void *)
2817 GetProcAddress (hm, GetModuleFileNameEx_name);
2820 if (!EnumProcessModules || !GetModuleInformation || !GetModuleFileNameEx)
2822 /* Set variables to dummy versions of these processes if the function
2823 wasn't found in psapi.dll. */
2824 EnumProcessModules = bad_EnumProcessModules;
2825 GetModuleInformation = bad_GetModuleInformation;
2826 GetModuleFileNameEx = bad_GetModuleFileNameEx;
2827 /* This will probably fail on Windows 9x/Me. Let the user know
2828 that we're missing some functionality. */
2830 cannot automatically find executable file or library to read symbols.\n\
2831 Use \"file\" or \"dll\" command to load executable/libraries directly."));
2834 hm = LoadLibrary ("advapi32.dll");
2837 OpenProcessToken = (void *) GetProcAddress (hm, "OpenProcessToken");
2838 LookupPrivilegeValueA = (void *)
2839 GetProcAddress (hm, "LookupPrivilegeValueA");
2840 AdjustTokenPrivileges = (void *)
2841 GetProcAddress (hm, "AdjustTokenPrivileges");
2842 /* Only need to set one of these since if OpenProcessToken fails nothing
2844 if (!OpenProcessToken || !LookupPrivilegeValueA
2845 || !AdjustTokenPrivileges)
2846 OpenProcessToken = bad_OpenProcessToken;