1 /* Target-vector operations for controlling win32 child processes, for GDB.
3 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
4 Free Software Foundation, Inc.
6 Contributed by Cygnus Solutions, A Red Hat Company.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without eve nthe implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
27 /* We assume we're being built with and will be used for cygwin. */
30 #include "frame.h" /* required by inferior.h */
35 #include "completer.h"
39 #include <sys/types.h>
44 #include <sys/cygwin.h>
49 #include "gdb_string.h"
50 #include "gdbthread.h"
52 #include <sys/param.h>
56 #include "i386-tdep.h"
57 #include "i387-tdep.h"
59 /* The ui's event loop. */
60 extern int (*ui_loop_hook) (int signo);
62 /* If we're not using the old Cygwin header file set, define the
63 following which never should have been in the generic Win32 API
64 headers in the first place since they were our own invention... */
65 #ifndef _GNU_H_WINDOWS_H
68 FLAG_TRACE_BIT = 0x100,
69 CONTEXT_DEBUGGER = (CONTEXT_FULL | CONTEXT_FLOATING_POINT)
72 #include <sys/procfs.h>
75 #define CONTEXT_DEBUGGER_DR CONTEXT_DEBUGGER | CONTEXT_DEBUG_REGISTERS \
76 | CONTEXT_EXTENDED_REGISTERS
78 static unsigned dr[8];
79 static int debug_registers_changed;
80 static int debug_registers_used;
82 /* The string sent by cygwin when it processes a signal.
83 FIXME: This should be in a cygwin include file. */
84 #define CYGWIN_SIGNAL_STRING "cygwin: signal"
86 #define CHECK(x) check (x, __FILE__,__LINE__)
87 #define DEBUG_EXEC(x) if (debug_exec) printf_unfiltered x
88 #define DEBUG_EVENTS(x) if (debug_events) printf_unfiltered x
89 #define DEBUG_MEM(x) if (debug_memory) printf_unfiltered x
90 #define DEBUG_EXCEPT(x) if (debug_exceptions) printf_unfiltered x
92 /* Forward declaration */
93 extern struct target_ops child_ops;
95 static void child_stop (void);
96 static int win32_child_thread_alive (ptid_t);
97 void child_kill_inferior (void);
99 static enum target_signal last_sig = TARGET_SIGNAL_0;
100 /* Set if a signal was received from the debugged process */
102 /* Thread information structure used to track information that is
103 not available in gdb's thread structure. */
104 typedef struct thread_info_struct
106 struct thread_info_struct *next;
117 static thread_info thread_head;
119 /* The process and thread handles for the above context. */
121 static DEBUG_EVENT current_event; /* The current debug event from
123 static HANDLE current_process_handle; /* Currently executing process */
124 static thread_info *current_thread; /* Info on currently selected thread */
125 static DWORD main_thread_id; /* Thread ID of the main thread */
127 /* Counts of things. */
128 static int exception_count = 0;
129 static int event_count = 0;
130 static int saw_create;
133 static int new_console = 0;
134 static int new_group = 1;
135 static int debug_exec = 0; /* show execution */
136 static int debug_events = 0; /* show events from kernel */
137 static int debug_memory = 0; /* show target memory accesses */
138 static int debug_exceptions = 0; /* show target exceptions */
139 static int useshell = 0; /* use shell for subprocesses */
141 /* This vector maps GDB's idea of a register's number into an address
142 in the win32 exception context vector.
144 It also contains the bit mask needed to load the register in question.
146 One day we could read a reg, we could inspect the context we
147 already have loaded, if it doesn't have the bit set that we need,
148 we read that set of registers in using GetThreadContext. If the
149 context already contains what we need, we just unpack it. Then to
150 write a register, first we have to ensure that the context contains
151 the other regs of the group, and then we copy the info in and set
154 #define context_offset(x) ((int)&(((CONTEXT *)NULL)->x))
155 static const int mappings[] =
157 context_offset (Eax),
158 context_offset (Ecx),
159 context_offset (Edx),
160 context_offset (Ebx),
161 context_offset (Esp),
162 context_offset (Ebp),
163 context_offset (Esi),
164 context_offset (Edi),
165 context_offset (Eip),
166 context_offset (EFlags),
167 context_offset (SegCs),
168 context_offset (SegSs),
169 context_offset (SegDs),
170 context_offset (SegEs),
171 context_offset (SegFs),
172 context_offset (SegGs),
173 context_offset (FloatSave.RegisterArea[0 * 10]),
174 context_offset (FloatSave.RegisterArea[1 * 10]),
175 context_offset (FloatSave.RegisterArea[2 * 10]),
176 context_offset (FloatSave.RegisterArea[3 * 10]),
177 context_offset (FloatSave.RegisterArea[4 * 10]),
178 context_offset (FloatSave.RegisterArea[5 * 10]),
179 context_offset (FloatSave.RegisterArea[6 * 10]),
180 context_offset (FloatSave.RegisterArea[7 * 10]),
181 context_offset (FloatSave.ControlWord),
182 context_offset (FloatSave.StatusWord),
183 context_offset (FloatSave.TagWord),
184 context_offset (FloatSave.ErrorSelector),
185 context_offset (FloatSave.ErrorOffset),
186 context_offset (FloatSave.DataSelector),
187 context_offset (FloatSave.DataOffset),
188 context_offset (FloatSave.ErrorSelector)
190 context_offset (ExtendedRegisters[10*16]),
191 context_offset (ExtendedRegisters[11*16]),
192 context_offset (ExtendedRegisters[12*16]),
193 context_offset (ExtendedRegisters[13*16]),
194 context_offset (ExtendedRegisters[14*16]),
195 context_offset (ExtendedRegisters[15*16]),
196 context_offset (ExtendedRegisters[16*16]),
197 context_offset (ExtendedRegisters[17*16]),
199 context_offset (ExtendedRegisters[24])
202 #undef context_offset
204 /* This vector maps the target's idea of an exception (extracted
205 from the DEBUG_EVENT structure) to GDB's idea. */
207 struct xlate_exception
210 enum target_signal us;
213 static const struct xlate_exception
216 {EXCEPTION_ACCESS_VIOLATION, TARGET_SIGNAL_SEGV},
217 {STATUS_STACK_OVERFLOW, TARGET_SIGNAL_SEGV},
218 {EXCEPTION_BREAKPOINT, TARGET_SIGNAL_TRAP},
219 {DBG_CONTROL_C, TARGET_SIGNAL_INT},
220 {EXCEPTION_SINGLE_STEP, TARGET_SIGNAL_TRAP},
221 {STATUS_FLOAT_DIVIDE_BY_ZERO, TARGET_SIGNAL_FPE},
225 check (BOOL ok, const char *file, int line)
228 printf_filtered ("error return %s:%d was %lu\n", file, line,
232 /* Find a thread record given a thread id.
233 If get_context then also retrieve the context for this
236 thread_rec (DWORD id, int get_context)
240 for (th = &thread_head; (th = th->next) != NULL;)
243 if (!th->suspend_count && get_context)
245 if (get_context > 0 && id != current_event.dwThreadId)
246 th->suspend_count = SuspendThread (th->h) + 1;
247 else if (get_context < 0)
248 th->suspend_count = -1;
249 th->reload_context = 1;
257 /* Add a thread to the thread list */
259 child_add_thread (DWORD id, HANDLE h)
263 if ((th = thread_rec (id, FALSE)))
266 th = (thread_info *) xmalloc (sizeof (*th));
267 memset (th, 0, sizeof (*th));
270 th->next = thread_head.next;
271 thread_head.next = th;
272 add_thread (pid_to_ptid (id));
273 /* Set the debug registers for the new thread in they are used. */
274 if (debug_registers_used)
276 /* Only change the value of the debug registers. */
277 th->context.ContextFlags = CONTEXT_DEBUG_REGISTERS;
278 CHECK (GetThreadContext (th->h, &th->context));
279 th->context.Dr0 = dr[0];
280 th->context.Dr1 = dr[1];
281 th->context.Dr2 = dr[2];
282 th->context.Dr3 = dr[3];
283 /* th->context.Dr6 = dr[6];
284 FIXME: should we set dr6 also ?? */
285 th->context.Dr7 = dr[7];
286 CHECK (SetThreadContext (th->h, &th->context));
287 th->context.ContextFlags = 0;
292 /* Clear out any old thread list and reintialize it to a
295 child_init_thread_list (void)
297 thread_info *th = &thread_head;
299 DEBUG_EVENTS (("gdb: child_init_thread_list\n"));
301 while (th->next != NULL)
303 thread_info *here = th->next;
304 th->next = here->next;
305 (void) CloseHandle (here->h);
310 /* Delete a thread from the list of threads */
312 child_delete_thread (DWORD id)
317 printf_unfiltered ("[Deleting %s]\n", target_pid_to_str (pid_to_ptid (id)));
318 delete_thread (pid_to_ptid (id));
320 for (th = &thread_head;
321 th->next != NULL && th->next->id != id;
325 if (th->next != NULL)
327 thread_info *here = th->next;
328 th->next = here->next;
329 CloseHandle (here->h);
335 do_child_fetch_inferior_registers (int r)
337 char *context_offset = ((char *) ¤t_thread->context) + mappings[r];
341 return; /* Windows sometimes uses a non-existent thread id in its
344 if (current_thread->reload_context)
346 thread_info *th = current_thread;
347 th->context.ContextFlags = CONTEXT_DEBUGGER_DR;
348 GetThreadContext (th->h, &th->context);
349 /* Copy dr values from that thread. */
350 dr[0] = th->context.Dr0;
351 dr[1] = th->context.Dr1;
352 dr[2] = th->context.Dr2;
353 dr[3] = th->context.Dr3;
354 dr[6] = th->context.Dr6;
355 dr[7] = th->context.Dr7;
356 current_thread->reload_context = 0;
359 #define I387_ST0_REGNUM I386_ST0_REGNUM
361 if (r == I387_FISEG_REGNUM)
363 l = *((long *) context_offset) & 0xffff;
364 supply_register (r, (char *) &l);
366 else if (r == I387_FOP_REGNUM)
368 l = (*((long *) context_offset) >> 16) & ((1 << 11) - 1);
369 supply_register (r, (char *) &l);
372 supply_register (r, context_offset);
375 for (r = 0; r < NUM_REGS; r++)
376 do_child_fetch_inferior_registers (r);
379 #undef I387_ST0_REGNUM
383 child_fetch_inferior_registers (int r)
385 current_thread = thread_rec (PIDGET (inferior_ptid), TRUE);
386 /* Check if current_thread exists. Windows sometimes uses a non-existent
387 thread id in its events */
389 do_child_fetch_inferior_registers (r);
393 do_child_store_inferior_registers (int r)
396 /* Windows sometimes uses a non-existent thread id in its events */;
398 regcache_collect (r, ((char *) ¤t_thread->context) + mappings[r]);
401 for (r = 0; r < NUM_REGS; r++)
402 do_child_store_inferior_registers (r);
406 /* Store a new register value into the current thread context */
408 child_store_inferior_registers (int r)
410 current_thread = thread_rec (PIDGET (inferior_ptid), TRUE);
411 /* Check if current_thread exists. Windows sometimes uses a non-existent
412 thread id in its events */
414 do_child_store_inferior_registers (r);
417 static int psapi_loaded = 0;
418 static HMODULE psapi_module_handle = NULL;
419 static BOOL WINAPI (*psapi_EnumProcessModules) (HANDLE, HMODULE *, DWORD, LPDWORD) = NULL;
420 static BOOL WINAPI (*psapi_GetModuleInformation) (HANDLE, HMODULE, LPMODULEINFO, DWORD) = NULL;
421 static DWORD WINAPI (*psapi_GetModuleFileNameExA) (HANDLE, HMODULE, LPSTR, DWORD) = NULL;
424 psapi_get_dll_name (DWORD BaseAddress, char *dll_name_ret)
430 HMODULE *DllHandle = dh_buf;
435 psapi_EnumProcessModules == NULL ||
436 psapi_GetModuleInformation == NULL ||
437 psapi_GetModuleFileNameExA == NULL)
442 psapi_module_handle = LoadLibrary ("psapi.dll");
443 if (!psapi_module_handle)
445 /* printf_unfiltered ("error loading psapi.dll: %u", GetLastError ()); */
448 psapi_EnumProcessModules = GetProcAddress (psapi_module_handle, "EnumProcessModules");
449 psapi_GetModuleInformation = GetProcAddress (psapi_module_handle, "GetModuleInformation");
450 psapi_GetModuleFileNameExA = (void *) GetProcAddress (psapi_module_handle,
451 "GetModuleFileNameExA");
452 if (psapi_EnumProcessModules == NULL ||
453 psapi_GetModuleInformation == NULL ||
454 psapi_GetModuleFileNameExA == NULL)
459 ok = (*psapi_EnumProcessModules) (current_process_handle,
464 if (!ok || !cbNeeded)
467 DllHandle = (HMODULE *) alloca (cbNeeded);
471 ok = (*psapi_EnumProcessModules) (current_process_handle,
478 for (i = 0; i < (int) (cbNeeded / sizeof (HMODULE)); i++)
480 if (!(*psapi_GetModuleInformation) (current_process_handle,
484 error ("Can't get module info");
486 len = (*psapi_GetModuleFileNameExA) (current_process_handle,
491 error ("Error getting dll name: %u\n", (unsigned) GetLastError ());
493 if ((DWORD) (mi.lpBaseOfDll) == BaseAddress)
498 dll_name_ret[0] = '\0';
502 /* Encapsulate the information required in a call to
503 symbol_file_add_args */
504 struct safe_symbol_file_add_args
508 struct section_addr_info *addrs;
511 struct ui_file *err, *out;
515 /* Maintain a linked list of "so" information. */
518 struct so_stuff *next;
522 struct objfile *objfile;
524 } solib_start, *solib_end;
526 /* Call symbol_file_add with stderr redirected. We don't care if there
529 safe_symbol_file_add_stub (void *argv)
531 #define p ((struct safe_symbol_file_add_args *)argv)
532 struct so_stuff *so = &solib_start;
534 while ((so = so->next))
535 if (so->loaded && strcasecmp (so->name, p->name) == 0)
537 p->ret = symbol_file_add (p->name, p->from_tty, p->addrs, p->mainline, p->flags);
542 /* Restore gdb's stderr after calling symbol_file_add */
544 safe_symbol_file_add_cleanup (void *p)
546 #define sp ((struct safe_symbol_file_add_args *)p)
547 gdb_flush (gdb_stderr);
548 gdb_flush (gdb_stdout);
549 ui_file_delete (gdb_stderr);
550 ui_file_delete (gdb_stdout);
551 gdb_stderr = sp->err;
552 gdb_stdout = sp->out;
556 /* symbol_file_add wrapper that prevents errors from being displayed. */
557 static struct objfile *
558 safe_symbol_file_add (char *name, int from_tty,
559 struct section_addr_info *addrs,
560 int mainline, int flags)
562 struct safe_symbol_file_add_args p;
563 struct cleanup *cleanup;
565 cleanup = make_cleanup (safe_symbol_file_add_cleanup, &p);
569 gdb_flush (gdb_stderr);
570 gdb_flush (gdb_stdout);
571 gdb_stderr = ui_file_new ();
572 gdb_stdout = ui_file_new ();
574 p.from_tty = from_tty;
576 p.mainline = mainline;
578 catch_errors (safe_symbol_file_add_stub, &p, "", RETURN_MASK_ERROR);
580 do_cleanups (cleanup);
584 /* Remember the maximum DLL length for printing in info dll command. */
585 int max_dll_name_len;
588 register_loaded_dll (const char *name, DWORD load_addr)
591 char ppath[MAX_PATH + 1];
592 char buf[MAX_PATH + 1];
593 char cwd[MAX_PATH + 1];
595 WIN32_FIND_DATA w32_fd;
596 HANDLE h = FindFirstFile(name, &w32_fd);
597 MEMORY_BASIC_INFORMATION m;
600 if (h == INVALID_HANDLE_VALUE)
606 if (GetCurrentDirectory (MAX_PATH + 1, cwd))
608 p = strrchr (buf, '\\');
611 SetCurrentDirectory (buf);
612 GetFullPathName (w32_fd.cFileName, MAX_PATH, buf, &p);
613 SetCurrentDirectory (cwd);
617 cygwin_conv_to_posix_path (buf, ppath);
618 so = (struct so_stuff *) xmalloc (sizeof (struct so_stuff) + strlen (ppath) + 8 + 1);
620 so->load_addr = load_addr;
621 if (VirtualQueryEx (current_process_handle, (void *) load_addr, &m,
623 so->end_addr = (DWORD) m.AllocationBase + m.RegionSize;
625 so->end_addr = load_addr + 0x2000; /* completely arbitrary */
629 strcpy (so->name, ppath);
631 solib_end->next = so;
633 len = strlen (ppath);
634 if (len > max_dll_name_len)
635 max_dll_name_len = len;
639 get_image_name (HANDLE h, void *address, int unicode)
641 static char buf[(2 * MAX_PATH) + 1];
642 DWORD size = unicode ? sizeof (WCHAR) : sizeof (char);
648 /* Attempt to read the name of the dll that was detected.
649 This is documented to work only when actively debugging
650 a program. It will not work for attached processes. */
654 /* See if we could read the address of a string, and that the
655 address isn't null. */
656 if (!ReadProcessMemory (h, address, &address_ptr, sizeof (address_ptr), &done)
657 || done != sizeof (address_ptr) || !address_ptr)
660 /* Find the length of the string */
661 while (ReadProcessMemory (h, address_ptr + len++ * size, &b, size, &done)
662 && (b[0] != 0 || b[size - 1] != 0) && done == size)
666 ReadProcessMemory (h, address_ptr, buf, len, &done);
669 WCHAR *unicode_address = (WCHAR *) alloca (len * sizeof (WCHAR));
670 ReadProcessMemory (h, address_ptr, unicode_address, len * sizeof (WCHAR),
673 WideCharToMultiByte (CP_ACP, 0, unicode_address, len, buf, len, 0, 0);
679 /* Wait for child to do something. Return pid of child, or -1 in case
680 of error; store status through argument pointer OURSTATUS. */
682 handle_load_dll (void *dummy)
684 LOAD_DLL_DEBUG_INFO *event = ¤t_event.u.LoadDll;
685 char dll_buf[MAX_PATH + 1];
686 char *dll_name = NULL;
689 dll_buf[0] = dll_buf[sizeof (dll_buf) - 1] = '\0';
691 if (!psapi_get_dll_name ((DWORD) (event->lpBaseOfDll), dll_buf))
692 dll_buf[0] = dll_buf[sizeof (dll_buf) - 1] = '\0';
696 if (*dll_name == '\0')
697 dll_name = get_image_name (current_process_handle, event->lpImageName, event->fUnicode);
701 register_loaded_dll (dll_name, (DWORD) event->lpBaseOfDll + 0x1000);
707 handle_unload_dll (void *dummy)
709 DWORD lpBaseOfDll = (DWORD) current_event.u.UnloadDll.lpBaseOfDll + 0x1000;
712 for (so = &solib_start; so->next != NULL; so = so->next)
713 if (so->next->load_addr == lpBaseOfDll)
715 struct so_stuff *sodel = so->next;
716 so->next = sodel->next;
720 free_objfile (sodel->objfile);
724 error ("Error: dll starting at 0x%lx not found.\n", (DWORD) lpBaseOfDll);
730 solib_address (CORE_ADDR address)
733 for (so = &solib_start; so->next != NULL; so = so->next)
734 if (address >= so->load_addr && address <= so->end_addr)
739 /* Return name of last loaded DLL. */
741 child_solib_loaded_library_pathname (int pid)
743 return !solib_end || !solib_end->name[0] ? NULL : solib_end->name;
746 /* Clear list of loaded DLLs. */
748 child_clear_solibs (void)
750 struct so_stuff *so, *so1 = solib_start.next;
752 while ((so = so1) != NULL)
758 solib_start.next = NULL;
759 solib_start.objfile = NULL;
760 solib_end = &solib_start;
761 max_dll_name_len = sizeof ("DLL Name") - 1;
764 /* Get the loaded address of all sections, given that .text was loaded
765 at text_load. Assumes that all sections are subject to the same
766 relocation offset. Returns NULL if problems occur or if the
767 sections were not relocated. */
769 static struct section_addr_info *
770 get_relocated_section_addrs (bfd *abfd, CORE_ADDR text_load)
772 struct section_addr_info *result = NULL;
773 int section_count = bfd_count_sections (abfd);
774 asection *text_section = bfd_get_section_by_name (abfd, ".text");
779 /* Couldn't get the .text section. Weird. */
782 else if (text_load == (text_vma = bfd_get_section_vma (abfd, text_section)))
784 /* DLL wasn't relocated. */
789 /* Figure out all sections' loaded addresses. The offset here is
790 such that taking a bfd_get_section_vma() result and adding
791 offset will give the real load address of the section. */
793 CORE_ADDR offset = text_load - text_vma;
795 struct section_table *table_start = NULL;
796 struct section_table *table_end = NULL;
797 struct section_table *iter = NULL;
799 build_section_table (abfd, &table_start, &table_end);
801 for (iter = table_start; iter < table_end; ++iter)
803 /* Relocated addresses. */
804 iter->addr += offset;
805 iter->endaddr += offset;
808 result = build_section_addr_info_from_section_table (table_start,
817 /* Add DLL symbol information. */
818 static struct objfile *
819 solib_symbols_add (char *name, int from_tty, CORE_ADDR load_addr)
821 struct section_addr_info *addrs = NULL;
822 static struct objfile *result = NULL;
825 /* The symbols in a dll are offset by 0x1000, which is the
826 the offset from 0 of the first byte in an image - because
827 of the file header and the section alignment. */
829 if (!name || !name[0])
832 abfd = bfd_openr (name, "pei-i386");
836 /* pei failed - try pe */
837 abfd = bfd_openr (name, "pe-i386");
842 if (bfd_check_format (abfd, bfd_object))
844 addrs = get_relocated_section_addrs (abfd, load_addr);
852 result = safe_symbol_file_add (name, from_tty, addrs, 0, OBJF_SHARED);
853 free_section_addr_info (addrs);
857 /* Fallback on handling just the .text section. */
858 struct cleanup *my_cleanups;
860 addrs = alloc_section_addr_info (1);
861 my_cleanups = make_cleanup (xfree, addrs);
862 addrs->other[0].name = ".text";
863 addrs->other[0].addr = load_addr;
865 result = safe_symbol_file_add (name, from_tty, addrs, 0, OBJF_SHARED);
866 do_cleanups (my_cleanups);
872 /* Load DLL symbol info. */
874 dll_symbol_command (char *args, int from_tty)
880 error ("dll-symbols requires a file name");
883 if (n > 4 && strcasecmp (args + n - 4, ".dll") != 0)
885 char *newargs = (char *) alloca (n + 4 + 1);
886 strcpy (newargs, args);
887 strcat (newargs, ".dll");
891 safe_symbol_file_add (args, from_tty, NULL, 0, OBJF_SHARED | OBJF_USERLOADED);
894 /* List currently loaded DLLs. */
896 info_dll_command (char *ignore, int from_tty)
898 struct so_stuff *so = &solib_start;
903 printf_filtered ("%*s Load Address\n", -max_dll_name_len, "DLL Name");
904 while ((so = so->next) != NULL)
905 printf_filtered ("%*s %08lx\n", -max_dll_name_len, so->name, so->load_addr);
910 /* Handle DEBUG_STRING output from child process.
911 Cygwin prepends its messages with a "cygwin:". Interpret this as
912 a Cygwin signal. Otherwise just print the string as a warning. */
914 handle_output_debug_string (struct target_waitstatus *ourstatus)
919 if (!target_read_string
920 ((CORE_ADDR) current_event.u.DebugString.lpDebugStringData, &s, 1024, 0)
924 if (strncmp (s, CYGWIN_SIGNAL_STRING, sizeof (CYGWIN_SIGNAL_STRING) - 1) != 0)
926 if (strncmp (s, "cYg", 3) != 0)
932 int sig = strtol (s + sizeof (CYGWIN_SIGNAL_STRING) - 1, &p, 0);
933 gotasig = target_signal_from_host (sig);
934 ourstatus->value.sig = gotasig;
936 ourstatus->kind = TARGET_WAITKIND_STOPPED;
944 display_selector (HANDLE thread, DWORD sel)
947 if (GetThreadSelectorEntry (thread, sel, &info))
950 printf_filtered ("0x%03lx: ", sel);
951 if (!info.HighWord.Bits.Pres)
953 puts_filtered ("Segment not present\n");
956 base = (info.HighWord.Bits.BaseHi << 24) +
957 (info.HighWord.Bits.BaseMid << 16)
959 limit = (info.HighWord.Bits.LimitHi << 16) + info.LimitLow;
960 if (info.HighWord.Bits.Granularity)
961 limit = (limit << 12) | 0xfff;
962 printf_filtered ("base=0x%08x limit=0x%08x", base, limit);
963 if (info.HighWord.Bits.Default_Big)
964 puts_filtered(" 32-bit ");
966 puts_filtered(" 16-bit ");
967 switch ((info.HighWord.Bits.Type & 0xf) >> 1)
970 puts_filtered ("Data (Read-Only, Exp-up");
973 puts_filtered ("Data (Read/Write, Exp-up");
976 puts_filtered ("Unused segment (");
979 puts_filtered ("Data (Read/Write, Exp-down");
982 puts_filtered ("Code (Exec-Only, N.Conf");
985 puts_filtered ("Code (Exec/Read, N.Conf");
988 puts_filtered ("Code (Exec-Only, Conf");
991 puts_filtered ("Code (Exec/Read, Conf");
994 printf_filtered ("Unknown type 0x%x",info.HighWord.Bits.Type);
996 if ((info.HighWord.Bits.Type & 0x1) == 0)
997 puts_filtered(", N.Acc");
998 puts_filtered (")\n");
999 if ((info.HighWord.Bits.Type & 0x10) == 0)
1000 puts_filtered("System selector ");
1001 printf_filtered ("Priviledge level = %d. ", info.HighWord.Bits.Dpl);
1002 if (info.HighWord.Bits.Granularity)
1003 puts_filtered ("Page granular.\n");
1005 puts_filtered ("Byte granular.\n");
1010 printf_filtered ("Invalid selector 0x%lx.\n",sel);
1016 display_selectors (char * args, int from_tty)
1018 if (!current_thread)
1020 puts_filtered ("Impossible to display selectors now.\n");
1026 puts_filtered ("Selector $cs\n");
1027 display_selector (current_thread->h,
1028 current_thread->context.SegCs);
1029 puts_filtered ("Selector $ds\n");
1030 display_selector (current_thread->h,
1031 current_thread->context.SegDs);
1032 puts_filtered ("Selector $es\n");
1033 display_selector (current_thread->h,
1034 current_thread->context.SegEs);
1035 puts_filtered ("Selector $ss\n");
1036 display_selector (current_thread->h,
1037 current_thread->context.SegSs);
1038 puts_filtered ("Selector $fs\n");
1039 display_selector (current_thread->h,
1040 current_thread->context.SegFs);
1041 puts_filtered ("Selector $gs\n");
1042 display_selector (current_thread->h,
1043 current_thread->context.SegGs);
1048 sel = parse_and_eval_long (args);
1049 printf_filtered ("Selector \"%s\"\n",args);
1050 display_selector (current_thread->h, sel);
1054 static struct cmd_list_element *info_w32_cmdlist = NULL;
1057 info_w32_command (char *args, int from_tty)
1059 help_list (info_w32_cmdlist, "info w32 ", class_info, gdb_stdout);
1063 #define DEBUG_EXCEPTION_SIMPLE(x) if (debug_exceptions) \
1064 printf_unfiltered ("gdb: Target exception %s at 0x%08lx\n", x, \
1065 (DWORD) current_event.u.Exception.ExceptionRecord.ExceptionAddress)
1068 handle_exception (struct target_waitstatus *ourstatus)
1071 DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode;
1073 ourstatus->kind = TARGET_WAITKIND_STOPPED;
1075 /* Record the context of the current thread */
1076 th = thread_rec (current_event.dwThreadId, -1);
1080 case EXCEPTION_ACCESS_VIOLATION:
1081 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ACCESS_VIOLATION");
1082 ourstatus->value.sig = TARGET_SIGNAL_SEGV;
1084 case STATUS_STACK_OVERFLOW:
1085 DEBUG_EXCEPTION_SIMPLE ("STATUS_STACK_OVERFLOW");
1086 ourstatus->value.sig = TARGET_SIGNAL_SEGV;
1088 case STATUS_FLOAT_DENORMAL_OPERAND:
1089 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DENORMAL_OPERAND");
1090 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1092 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
1093 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ARRAY_BOUNDS_EXCEEDED");
1094 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1096 case STATUS_FLOAT_INEXACT_RESULT:
1097 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INEXACT_RESULT");
1098 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1100 case STATUS_FLOAT_INVALID_OPERATION:
1101 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INVALID_OPERATION");
1102 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1104 case STATUS_FLOAT_OVERFLOW:
1105 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_OVERFLOW");
1106 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1108 case STATUS_FLOAT_STACK_CHECK:
1109 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_STACK_CHECK");
1110 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1112 case STATUS_FLOAT_UNDERFLOW:
1113 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_UNDERFLOW");
1114 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1116 case STATUS_FLOAT_DIVIDE_BY_ZERO:
1117 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DIVIDE_BY_ZERO");
1118 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1120 case STATUS_INTEGER_DIVIDE_BY_ZERO:
1121 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_DIVIDE_BY_ZERO");
1122 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1124 case STATUS_INTEGER_OVERFLOW:
1125 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_OVERFLOW");
1126 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1128 case EXCEPTION_BREAKPOINT:
1129 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_BREAKPOINT");
1130 ourstatus->value.sig = TARGET_SIGNAL_TRAP;
1133 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_C");
1134 ourstatus->value.sig = TARGET_SIGNAL_INT;
1136 case DBG_CONTROL_BREAK:
1137 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_BREAK");
1138 ourstatus->value.sig = TARGET_SIGNAL_INT;
1140 case EXCEPTION_SINGLE_STEP:
1141 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_SINGLE_STEP");
1142 ourstatus->value.sig = TARGET_SIGNAL_TRAP;
1144 case EXCEPTION_ILLEGAL_INSTRUCTION:
1145 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ILLEGAL_INSTRUCTION");
1146 ourstatus->value.sig = TARGET_SIGNAL_ILL;
1148 case EXCEPTION_PRIV_INSTRUCTION:
1149 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_PRIV_INSTRUCTION");
1150 ourstatus->value.sig = TARGET_SIGNAL_ILL;
1152 case EXCEPTION_NONCONTINUABLE_EXCEPTION:
1153 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_NONCONTINUABLE_EXCEPTION");
1154 ourstatus->value.sig = TARGET_SIGNAL_ILL;
1157 if (current_event.u.Exception.dwFirstChance)
1159 printf_unfiltered ("gdb: unknown target exception 0x%08lx at 0x%08lx\n",
1160 current_event.u.Exception.ExceptionRecord.ExceptionCode,
1161 (DWORD) current_event.u.Exception.ExceptionRecord.ExceptionAddress);
1162 ourstatus->value.sig = TARGET_SIGNAL_UNKNOWN;
1166 last_sig = ourstatus->value.sig;
1170 /* Resume all artificially suspended threads if we are continuing
1173 child_continue (DWORD continue_status, int id)
1179 DEBUG_EVENTS (("ContinueDebugEvent (cpid=%ld, ctid=%ld, %s);\n",
1180 current_event.dwProcessId, current_event.dwThreadId,
1181 continue_status == DBG_CONTINUE ?
1182 "DBG_CONTINUE" : "DBG_EXCEPTION_NOT_HANDLED"));
1183 res = ContinueDebugEvent (current_event.dwProcessId,
1184 current_event.dwThreadId,
1186 continue_status = 0;
1188 for (th = &thread_head; (th = th->next) != NULL;)
1189 if (((id == -1) || (id == (int) th->id)) && th->suspend_count)
1192 for (i = 0; i < th->suspend_count; i++)
1193 (void) ResumeThread (th->h);
1194 th->suspend_count = 0;
1195 if (debug_registers_changed)
1197 /* Only change the value of the debug registers */
1198 th->context.ContextFlags = CONTEXT_DEBUG_REGISTERS;
1199 th->context.Dr0 = dr[0];
1200 th->context.Dr1 = dr[1];
1201 th->context.Dr2 = dr[2];
1202 th->context.Dr3 = dr[3];
1203 /* th->context.Dr6 = dr[6];
1204 FIXME: should we set dr6 also ?? */
1205 th->context.Dr7 = dr[7];
1206 CHECK (SetThreadContext (th->h, &th->context));
1207 th->context.ContextFlags = 0;
1211 debug_registers_changed = 0;
1215 /* Called in pathological case where Windows fails to send a
1216 CREATE_PROCESS_DEBUG_EVENT after an attach. */
1218 fake_create_process (void)
1220 current_process_handle = OpenProcess (PROCESS_ALL_ACCESS, FALSE,
1221 current_event.dwProcessId);
1222 main_thread_id = current_event.dwThreadId;
1223 current_thread = child_add_thread (main_thread_id,
1224 current_event.u.CreateThread.hThread);
1225 return main_thread_id;
1228 /* Get the next event from the child. Return 1 if the event requires
1229 handling by WFI (or whatever).
1232 get_child_debug_event (int pid, struct target_waitstatus *ourstatus)
1235 DWORD continue_status, event_code;
1237 static thread_info dummy_thread_info;
1240 last_sig = TARGET_SIGNAL_0;
1242 if (!(debug_event = WaitForDebugEvent (¤t_event, 1000)))
1246 continue_status = DBG_CONTINUE;
1248 event_code = current_event.dwDebugEventCode;
1249 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1254 case CREATE_THREAD_DEBUG_EVENT:
1255 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%x code=%s)\n",
1256 (unsigned) current_event.dwProcessId,
1257 (unsigned) current_event.dwThreadId,
1258 "CREATE_THREAD_DEBUG_EVENT"));
1259 if (saw_create != 1)
1261 if (!saw_create && attach_flag)
1263 /* Kludge around a Windows bug where first event is a create
1264 thread event. Caused when attached process does not have
1266 retval = ourstatus->value.related_pid = fake_create_process ();
1271 /* Record the existence of this thread */
1272 th = child_add_thread (current_event.dwThreadId,
1273 current_event.u.CreateThread.hThread);
1275 printf_unfiltered ("[New %s]\n",
1277 pid_to_ptid (current_event.dwThreadId)));
1278 retval = current_event.dwThreadId;
1281 case EXIT_THREAD_DEBUG_EVENT:
1282 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
1283 (unsigned) current_event.dwProcessId,
1284 (unsigned) current_event.dwThreadId,
1285 "EXIT_THREAD_DEBUG_EVENT"));
1286 if (current_event.dwThreadId != main_thread_id)
1288 child_delete_thread (current_event.dwThreadId);
1289 th = &dummy_thread_info;
1293 case CREATE_PROCESS_DEBUG_EVENT:
1294 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
1295 (unsigned) current_event.dwProcessId,
1296 (unsigned) current_event.dwThreadId,
1297 "CREATE_PROCESS_DEBUG_EVENT"));
1298 CloseHandle (current_event.u.CreateProcessInfo.hFile);
1299 if (++saw_create != 1)
1301 CloseHandle (current_event.u.CreateProcessInfo.hProcess);
1305 current_process_handle = current_event.u.CreateProcessInfo.hProcess;
1307 child_delete_thread (main_thread_id);
1308 main_thread_id = current_event.dwThreadId;
1309 /* Add the main thread */
1310 th = child_add_thread (main_thread_id,
1311 current_event.u.CreateProcessInfo.hThread);
1312 retval = ourstatus->value.related_pid = current_event.dwThreadId;
1315 case EXIT_PROCESS_DEBUG_EVENT:
1316 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
1317 (unsigned) current_event.dwProcessId,
1318 (unsigned) current_event.dwThreadId,
1319 "EXIT_PROCESS_DEBUG_EVENT"));
1320 if (saw_create != 1)
1322 ourstatus->kind = TARGET_WAITKIND_EXITED;
1323 ourstatus->value.integer = current_event.u.ExitProcess.dwExitCode;
1324 CloseHandle (current_process_handle);
1325 retval = main_thread_id;
1328 case LOAD_DLL_DEBUG_EVENT:
1329 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
1330 (unsigned) current_event.dwProcessId,
1331 (unsigned) current_event.dwThreadId,
1332 "LOAD_DLL_DEBUG_EVENT"));
1333 CloseHandle (current_event.u.LoadDll.hFile);
1334 if (saw_create != 1)
1336 catch_errors (handle_load_dll, NULL, (char *) "", RETURN_MASK_ALL);
1337 registers_changed (); /* mark all regs invalid */
1338 ourstatus->kind = TARGET_WAITKIND_LOADED;
1339 ourstatus->value.integer = 0;
1340 retval = main_thread_id;
1341 re_enable_breakpoints_in_shlibs ();
1344 case UNLOAD_DLL_DEBUG_EVENT:
1345 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
1346 (unsigned) current_event.dwProcessId,
1347 (unsigned) current_event.dwThreadId,
1348 "UNLOAD_DLL_DEBUG_EVENT"));
1349 if (saw_create != 1)
1351 catch_errors (handle_unload_dll, NULL, (char *) "", RETURN_MASK_ALL);
1352 registers_changed (); /* mark all regs invalid */
1353 /* ourstatus->kind = TARGET_WAITKIND_UNLOADED;
1354 does not exist yet. */
1357 case EXCEPTION_DEBUG_EVENT:
1358 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
1359 (unsigned) current_event.dwProcessId,
1360 (unsigned) current_event.dwThreadId,
1361 "EXCEPTION_DEBUG_EVENT"));
1362 if (saw_create != 1)
1364 if (handle_exception (ourstatus))
1365 retval = current_event.dwThreadId;
1368 case OUTPUT_DEBUG_STRING_EVENT: /* message from the kernel */
1369 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
1370 (unsigned) current_event.dwProcessId,
1371 (unsigned) current_event.dwThreadId,
1372 "OUTPUT_DEBUG_STRING_EVENT"));
1373 if (saw_create != 1)
1375 if (handle_output_debug_string (ourstatus))
1376 retval = main_thread_id;
1380 if (saw_create != 1)
1382 printf_unfiltered ("gdb: kernel event for pid=%ld tid=%ld\n",
1383 (DWORD) current_event.dwProcessId,
1384 (DWORD) current_event.dwThreadId);
1385 printf_unfiltered (" unknown event code %ld\n",
1386 current_event.dwDebugEventCode);
1390 if (!retval || saw_create != 1)
1391 CHECK (child_continue (continue_status, -1));
1394 inferior_ptid = pid_to_ptid (retval);
1395 current_thread = th ?: thread_rec (current_event.dwThreadId, TRUE);
1402 /* Wait for interesting events to occur in the target process. */
1404 child_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
1406 int pid = PIDGET (ptid);
1408 /* We loop when we get a non-standard exception rather than return
1409 with a SPURIOUS because resume can try and step or modify things,
1410 which needs a current_thread->h. But some of these exceptions mark
1411 the birth or death of threads, which mean that the current thread
1412 isn't necessarily what you think it is. */
1416 int retval = get_child_debug_event (pid, ourstatus);
1418 return pid_to_ptid (retval);
1423 if (ui_loop_hook != NULL)
1424 detach = ui_loop_hook (0);
1427 child_kill_inferior ();
1433 do_initial_child_stuff (DWORD pid)
1435 extern int stop_after_trap;
1438 last_sig = TARGET_SIGNAL_0;
1440 exception_count = 0;
1441 debug_registers_changed = 0;
1442 debug_registers_used = 0;
1443 for (i = 0; i < sizeof (dr) / sizeof (dr[0]); i++)
1445 current_event.dwProcessId = pid;
1446 memset (¤t_event, 0, sizeof (current_event));
1447 push_target (&child_ops);
1448 child_init_thread_list ();
1449 disable_breakpoints_in_shlibs (1);
1450 child_clear_solibs ();
1451 clear_proceed_status ();
1452 init_wait_for_inferior ();
1454 target_terminal_init ();
1455 target_terminal_inferior ();
1459 stop_after_trap = 1;
1460 wait_for_inferior ();
1461 if (stop_signal != TARGET_SIGNAL_TRAP)
1462 resume (0, stop_signal);
1466 stop_after_trap = 0;
1470 /* Since Windows XP, detaching from a process is supported by Windows.
1471 The following code tries loading the appropriate functions dynamically.
1472 If loading these functions succeeds use them to actually detach from
1473 the inferior process, otherwise behave as usual, pretending that
1474 detach has worked. */
1475 static BOOL WINAPI (*DebugSetProcessKillOnExit)(BOOL);
1476 static BOOL WINAPI (*DebugActiveProcessStop)(DWORD);
1479 has_detach_ability (void)
1481 static HMODULE kernel32 = NULL;
1484 kernel32 = LoadLibrary ("kernel32.dll");
1487 if (!DebugSetProcessKillOnExit)
1488 DebugSetProcessKillOnExit = GetProcAddress (kernel32,
1489 "DebugSetProcessKillOnExit");
1490 if (!DebugActiveProcessStop)
1491 DebugActiveProcessStop = GetProcAddress (kernel32,
1492 "DebugActiveProcessStop");
1493 if (DebugSetProcessKillOnExit && DebugActiveProcessStop)
1499 /* Try to set or remove a user privilege to the current process. Return -1
1500 if that fails, the previous setting of that privilege otherwise.
1502 This code is copied from the Cygwin source code and rearranged to allow
1503 dynamically loading of the needed symbols from advapi32 which is only
1504 available on NT/2K/XP. */
1506 set_process_privilege (const char *privilege, BOOL enable)
1508 static HMODULE advapi32 = NULL;
1509 static BOOL WINAPI (*OpenProcessToken)(HANDLE, DWORD, PHANDLE);
1510 static BOOL WINAPI (*LookupPrivilegeValue)(LPCSTR, LPCSTR, PLUID);
1511 static BOOL WINAPI (*AdjustTokenPrivileges)(HANDLE, BOOL, PTOKEN_PRIVILEGES,
1512 DWORD, PTOKEN_PRIVILEGES, PDWORD);
1514 HANDLE token_hdl = NULL;
1516 TOKEN_PRIVILEGES new_priv, orig_priv;
1520 if (GetVersion () >= 0x80000000) /* No security availbale on 9x/Me */
1525 if (!(advapi32 = LoadLibrary ("advapi32.dll")))
1527 if (!OpenProcessToken)
1528 OpenProcessToken = GetProcAddress (advapi32, "OpenProcessToken");
1529 if (!LookupPrivilegeValue)
1530 LookupPrivilegeValue = GetProcAddress (advapi32,
1531 "LookupPrivilegeValueA");
1532 if (!AdjustTokenPrivileges)
1533 AdjustTokenPrivileges = GetProcAddress (advapi32,
1534 "AdjustTokenPrivileges");
1535 if (!OpenProcessToken || !LookupPrivilegeValue || !AdjustTokenPrivileges)
1542 if (!OpenProcessToken (GetCurrentProcess (),
1543 TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES,
1547 if (!LookupPrivilegeValue (NULL, privilege, &restore_priv))
1550 new_priv.PrivilegeCount = 1;
1551 new_priv.Privileges[0].Luid = restore_priv;
1552 new_priv.Privileges[0].Attributes = enable ? SE_PRIVILEGE_ENABLED : 0;
1554 if (!AdjustTokenPrivileges (token_hdl, FALSE, &new_priv,
1555 sizeof orig_priv, &orig_priv, &size))
1558 /* Disabled, otherwise every `attach' in an unprivileged user session
1559 would raise the "Failed to get SE_DEBUG_NAME privilege" warning in
1561 /* AdjustTokenPrivileges returns TRUE even if the privilege could not
1562 be enabled. GetLastError () returns an correct error code, though. */
1563 if (enable && GetLastError () == ERROR_NOT_ALL_ASSIGNED)
1567 ret = orig_priv.Privileges[0].Attributes == SE_PRIVILEGE_ENABLED ? 1 : 0;
1571 CloseHandle (token_hdl);
1576 /* Attach to process PID, then initialize for debugging it. */
1578 child_attach (char *args, int from_tty)
1584 error_no_arg ("process-id to attach");
1586 if (set_process_privilege (SE_DEBUG_NAME, TRUE) < 0)
1588 printf_unfiltered ("Warning: Failed to get SE_DEBUG_NAME privilege\n");
1589 printf_unfiltered ("This can cause attach to fail on Windows NT/2K/XP\n");
1592 pid = strtoul (args, 0, 0); /* Windows pid */
1594 ok = DebugActiveProcess (pid);
1599 /* Try fall back to Cygwin pid */
1600 pid = cygwin_internal (CW_CYGWIN_PID_TO_WINPID, pid);
1603 ok = DebugActiveProcess (pid);
1606 error ("Can't attach to process.");
1609 if (has_detach_ability ())
1610 DebugSetProcessKillOnExit (FALSE);
1616 char *exec_file = (char *) get_exec_file (0);
1619 printf_unfiltered ("Attaching to program `%s', %s\n", exec_file,
1620 target_pid_to_str (pid_to_ptid (pid)));
1622 printf_unfiltered ("Attaching to %s\n",
1623 target_pid_to_str (pid_to_ptid (pid)));
1625 gdb_flush (gdb_stdout);
1628 do_initial_child_stuff (pid);
1629 target_terminal_ours ();
1633 child_detach (char *args, int from_tty)
1637 if (has_detach_ability ())
1639 delete_command (NULL, 0);
1640 child_continue (DBG_CONTINUE, -1);
1641 if (!DebugActiveProcessStop (current_event.dwProcessId))
1643 error ("Can't detach process %lu (error %lu)",
1644 current_event.dwProcessId, GetLastError ());
1647 DebugSetProcessKillOnExit (FALSE);
1649 if (detached && from_tty)
1651 char *exec_file = get_exec_file (0);
1654 printf_unfiltered ("Detaching from program: %s, Pid %lu\n", exec_file,
1655 current_event.dwProcessId);
1656 gdb_flush (gdb_stdout);
1658 inferior_ptid = null_ptid;
1659 unpush_target (&child_ops);
1662 /* Print status information about what we're accessing. */
1665 child_files_info (struct target_ops *ignore)
1667 printf_unfiltered ("\tUsing the running image of %s %s.\n",
1668 attach_flag ? "attached" : "child", target_pid_to_str (inferior_ptid));
1672 child_open (char *arg, int from_tty)
1674 error ("Use the \"run\" command to start a Unix child process.");
1677 /* Start an inferior win32 child process and sets inferior_ptid to its pid.
1678 EXEC_FILE is the file to run.
1679 ALLARGS is a string containing the arguments to the program.
1680 ENV is the environment vector to pass. Errors reported with error(). */
1683 child_create_inferior (char *exec_file, char *allargs, char **env,
1691 PROCESS_INFORMATION pi;
1695 char real_path[MAXPATHLEN];
1697 char shell[MAX_PATH + 1]; /* Path to shell */
1700 int ostdin, ostdout, ostderr;
1703 error ("No executable specified, use `target exec'.\n");
1705 memset (&si, 0, sizeof (si));
1706 si.cb = sizeof (si);
1710 flags = DEBUG_ONLY_THIS_PROCESS;
1711 cygwin_conv_to_win32_path (exec_file, real_path);
1717 sh = getenv ("SHELL");
1720 cygwin_conv_to_win32_path (sh, shell);
1721 newallargs = alloca (sizeof (" -c 'exec '") + strlen (exec_file)
1722 + strlen (allargs) + 2);
1723 sprintf (newallargs, " -c 'exec %s %s'", exec_file, allargs);
1724 allargs = newallargs;
1726 flags = DEBUG_PROCESS;
1730 flags |= CREATE_NEW_PROCESS_GROUP;
1733 flags |= CREATE_NEW_CONSOLE;
1737 args = alloca (strlen (toexec) + strlen (allargs) + 2);
1738 strcpy (args, toexec);
1740 strcat (args, allargs);
1742 /* Prepare the environment vars for CreateProcess. */
1744 /* This code used to assume all env vars were file names and would
1745 translate them all to win32 style. That obviously doesn't work in the
1746 general case. The current rule is that we only translate PATH.
1747 We need to handle PATH because we're about to call CreateProcess and
1748 it uses PATH to find DLL's. Fortunately PATH has a well-defined value
1749 in both posix and win32 environments. cygwin.dll will change it back
1750 to posix style if necessary. */
1752 static const char *conv_path_names[] =
1758 /* CreateProcess takes the environment list as a null terminated set of
1759 strings (i.e. two nulls terminate the list). */
1761 /* Get total size for env strings. */
1762 for (envlen = 0, i = 0; env[i] && *env[i]; i++)
1766 for (j = 0; conv_path_names[j]; j++)
1768 len = strlen (conv_path_names[j]);
1769 if (strncmp (conv_path_names[j], env[i], len) == 0)
1771 if (cygwin_posix_path_list_p (env[i] + len))
1773 + cygwin_posix_to_win32_path_list_buf_size (env[i] + len);
1775 envlen += strlen (env[i]) + 1;
1779 if (conv_path_names[j] == NULL)
1780 envlen += strlen (env[i]) + 1;
1783 winenv = alloca (envlen + 1);
1785 /* Copy env strings into new buffer. */
1786 for (temp = winenv, i = 0; env[i] && *env[i]; i++)
1790 for (j = 0; conv_path_names[j]; j++)
1792 len = strlen (conv_path_names[j]);
1793 if (strncmp (conv_path_names[j], env[i], len) == 0)
1795 if (cygwin_posix_path_list_p (env[i] + len))
1797 memcpy (temp, env[i], len);
1798 cygwin_posix_to_win32_path_list (env[i] + len, temp + len);
1801 strcpy (temp, env[i]);
1805 if (conv_path_names[j] == NULL)
1806 strcpy (temp, env[i]);
1808 temp += strlen (temp) + 1;
1811 /* Final nil string to terminate new env. */
1815 if (!inferior_io_terminal)
1816 tty = ostdin = ostdout = ostderr = -1;
1819 tty = open (inferior_io_terminal, O_RDWR | O_NOCTTY);
1822 print_sys_errmsg (inferior_io_terminal, errno);
1823 ostdin = ostdout = ostderr = -1;
1836 ret = CreateProcess (0,
1837 args, /* command line */
1838 NULL, /* Security */
1840 TRUE, /* inherit handles */
1841 flags, /* start flags */
1843 NULL, /* current directory */
1858 error ("Error creating process %s, (error %d)\n", exec_file, (unsigned) GetLastError ());
1860 CloseHandle (pi.hThread);
1861 CloseHandle (pi.hProcess);
1863 if (useshell && shell[0] != '\0')
1868 do_initial_child_stuff (pi.dwProcessId);
1870 /* child_continue (DBG_CONTINUE, -1); */
1871 proceed ((CORE_ADDR) - 1, TARGET_SIGNAL_0, 0);
1875 child_mourn_inferior (void)
1877 (void) child_continue (DBG_CONTINUE, -1);
1878 i386_cleanup_dregs();
1879 unpush_target (&child_ops);
1880 generic_mourn_inferior ();
1883 /* Send a SIGINT to the process group. This acts just like the user typed a
1884 ^C on the controlling terminal. */
1889 DEBUG_EVENTS (("gdb: GenerateConsoleCtrlEvent (CTRLC_EVENT, 0)\n"));
1890 CHECK (GenerateConsoleCtrlEvent (CTRL_C_EVENT, current_event.dwProcessId));
1891 registers_changed (); /* refresh register state */
1895 child_xfer_memory (CORE_ADDR memaddr, char *our, int len,
1896 int write, struct mem_attrib *mem,
1897 struct target_ops *target)
1902 DEBUG_MEM (("gdb: write target memory, %d bytes at 0x%08lx\n",
1903 len, (DWORD) memaddr));
1904 if (!WriteProcessMemory (current_process_handle, (LPVOID) memaddr, our,
1907 FlushInstructionCache (current_process_handle, (LPCVOID) memaddr, len);
1911 DEBUG_MEM (("gdb: read target memory, %d bytes at 0x%08lx\n",
1912 len, (DWORD) memaddr));
1913 if (!ReadProcessMemory (current_process_handle, (LPCVOID) memaddr, our,
1921 child_kill_inferior (void)
1923 CHECK (TerminateProcess (current_process_handle, 0));
1927 if (!child_continue (DBG_CONTINUE, -1))
1929 if (!WaitForDebugEvent (¤t_event, INFINITE))
1931 if (current_event.dwDebugEventCode == EXIT_PROCESS_DEBUG_EVENT)
1935 CHECK (CloseHandle (current_process_handle));
1937 /* this may fail in an attached process so don't check. */
1938 if (current_thread && current_thread->h)
1939 (void) CloseHandle (current_thread->h);
1940 target_mourn_inferior (); /* or just child_mourn_inferior? */
1944 child_resume (ptid_t ptid, int step, enum target_signal sig)
1947 DWORD continue_status = DBG_CONTINUE;
1949 int pid = PIDGET (ptid);
1951 if (sig != TARGET_SIGNAL_0)
1953 if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
1955 DEBUG_EXCEPT(("Cannot continue with signal %d here.\n",sig));
1957 else if (sig == last_sig)
1958 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1961 /* This code does not seem to work, because
1962 the kernel does probably not consider changes in the ExceptionRecord
1963 structure when passing the exception to the inferior.
1964 Note that this seems possible in the exception handler itself. */
1967 for (i = 0; xlate[i].them != -1; i++)
1968 if (xlate[i].us == sig)
1970 current_event.u.Exception.ExceptionRecord.ExceptionCode =
1972 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1975 if (continue_status == DBG_CONTINUE)
1977 DEBUG_EXCEPT(("Cannot continue with signal %d.\n",sig));
1981 DEBUG_EXCEPT(("Can only continue with recieved signal %d.\n",
1985 last_sig = TARGET_SIGNAL_0;
1987 DEBUG_EXEC (("gdb: child_resume (pid=%d, step=%d, sig=%d);\n",
1990 /* Get context for currently selected thread */
1991 th = thread_rec (current_event.dwThreadId, FALSE);
1996 /* Single step by setting t bit */
1997 child_fetch_inferior_registers (PS_REGNUM);
1998 th->context.EFlags |= FLAG_TRACE_BIT;
2001 if (th->context.ContextFlags)
2003 if (debug_registers_changed)
2005 th->context.Dr0 = dr[0];
2006 th->context.Dr1 = dr[1];
2007 th->context.Dr2 = dr[2];
2008 th->context.Dr3 = dr[3];
2009 /* th->context.Dr6 = dr[6];
2010 FIXME: should we set dr6 also ?? */
2011 th->context.Dr7 = dr[7];
2013 CHECK (SetThreadContext (th->h, &th->context));
2014 th->context.ContextFlags = 0;
2018 /* Allow continuing with the same signal that interrupted us.
2019 Otherwise complain. */
2021 child_continue (continue_status, pid);
2025 child_prepare_to_store (void)
2027 /* Do nothing, since we can store individual regs */
2031 child_can_run (void)
2039 DEBUG_EVENTS (("gdb: child_close, inferior_ptid=%d\n",
2040 PIDGET (inferior_ptid)));
2043 struct target_ops child_ops;
2046 init_child_ops (void)
2048 child_ops.to_shortname = "child";
2049 child_ops.to_longname = "Win32 child process";
2050 child_ops.to_doc = "Win32 child process (started by the \"run\" command).";
2051 child_ops.to_open = child_open;
2052 child_ops.to_close = child_close;
2053 child_ops.to_attach = child_attach;
2054 child_ops.to_detach = child_detach;
2055 child_ops.to_resume = child_resume;
2056 child_ops.to_wait = child_wait;
2057 child_ops.to_fetch_registers = child_fetch_inferior_registers;
2058 child_ops.to_store_registers = child_store_inferior_registers;
2059 child_ops.to_prepare_to_store = child_prepare_to_store;
2060 child_ops.to_xfer_memory = child_xfer_memory;
2061 child_ops.to_files_info = child_files_info;
2062 child_ops.to_insert_breakpoint = memory_insert_breakpoint;
2063 child_ops.to_remove_breakpoint = memory_remove_breakpoint;
2064 child_ops.to_terminal_init = terminal_init_inferior;
2065 child_ops.to_terminal_inferior = terminal_inferior;
2066 child_ops.to_terminal_ours_for_output = terminal_ours_for_output;
2067 child_ops.to_terminal_ours = terminal_ours;
2068 child_ops.to_terminal_save_ours = terminal_save_ours;
2069 child_ops.to_terminal_info = child_terminal_info;
2070 child_ops.to_kill = child_kill_inferior;
2071 child_ops.to_create_inferior = child_create_inferior;
2072 child_ops.to_mourn_inferior = child_mourn_inferior;
2073 child_ops.to_can_run = child_can_run;
2074 child_ops.to_thread_alive = win32_child_thread_alive;
2075 child_ops.to_pid_to_str = cygwin_pid_to_str;
2076 child_ops.to_stop = child_stop;
2077 child_ops.to_stratum = process_stratum;
2078 child_ops.to_has_all_memory = 1;
2079 child_ops.to_has_memory = 1;
2080 child_ops.to_has_stack = 1;
2081 child_ops.to_has_registers = 1;
2082 child_ops.to_has_execution = 1;
2083 child_ops.to_magic = OPS_MAGIC;
2087 _initialize_win32_nat (void)
2089 struct cmd_list_element *c;
2093 c = add_com ("dll-symbols", class_files, dll_symbol_command,
2094 "Load dll library symbols from FILE.");
2095 set_cmd_completer (c, filename_completer);
2097 add_com_alias ("sharedlibrary", "dll-symbols", class_alias, 1);
2099 add_show_from_set (add_set_cmd ("shell", class_support, var_boolean,
2101 "Set use of shell to start subprocess.",
2105 add_show_from_set (add_set_cmd ("new-console", class_support, var_boolean,
2106 (char *) &new_console,
2107 "Set creation of new console when creating child process.",
2111 add_show_from_set (add_set_cmd ("new-group", class_support, var_boolean,
2112 (char *) &new_group,
2113 "Set creation of new group when creating child process.",
2117 add_show_from_set (add_set_cmd ("debugexec", class_support, var_boolean,
2118 (char *) &debug_exec,
2119 "Set whether to display execution in child process.",
2123 add_show_from_set (add_set_cmd ("debugevents", class_support, var_boolean,
2124 (char *) &debug_events,
2125 "Set whether to display kernel events in child process.",
2129 add_show_from_set (add_set_cmd ("debugmemory", class_support, var_boolean,
2130 (char *) &debug_memory,
2131 "Set whether to display memory accesses in child process.",
2135 add_show_from_set (add_set_cmd ("debugexceptions", class_support, var_boolean,
2136 (char *) &debug_exceptions,
2137 "Set whether to display kernel exceptions in child process.",
2141 add_info ("dll", info_dll_command, "Status of loaded DLLs.");
2142 add_info_alias ("sharedlibrary", "dll", 1);
2144 add_prefix_cmd ("w32", class_info, info_w32_command,
2145 "Print information specific to Win32 debugging.",
2146 &info_w32_cmdlist, "info w32 ", 0, &infolist);
2148 add_cmd ("selector", class_info, display_selectors,
2149 "Display selectors infos.",
2152 add_target (&child_ops);
2155 /* Hardware watchpoint support, adapted from go32-nat.c code. */
2157 /* Pass the address ADDR to the inferior in the I'th debug register.
2158 Here we just store the address in dr array, the registers will be
2159 actually set up when child_continue is called. */
2161 cygwin_set_dr (int i, CORE_ADDR addr)
2164 internal_error (__FILE__, __LINE__,
2165 "Invalid register %d in cygwin_set_dr.\n", i);
2166 dr[i] = (unsigned) addr;
2167 debug_registers_changed = 1;
2168 debug_registers_used = 1;
2171 /* Pass the value VAL to the inferior in the DR7 debug control
2172 register. Here we just store the address in D_REGS, the watchpoint
2173 will be actually set up in child_wait. */
2175 cygwin_set_dr7 (unsigned val)
2178 debug_registers_changed = 1;
2179 debug_registers_used = 1;
2182 /* Get the value of the DR6 debug status register from the inferior.
2183 Here we just return the value stored in dr[6]
2184 by the last call to thread_rec for current_event.dwThreadId id. */
2186 cygwin_get_dr6 (void)
2191 /* Determine if the thread referenced by "pid" is alive
2192 by "polling" it. If WaitForSingleObject returns WAIT_OBJECT_0
2193 it means that the pid has died. Otherwise it is assumed to be alive. */
2195 win32_child_thread_alive (ptid_t ptid)
2197 int pid = PIDGET (ptid);
2199 return WaitForSingleObject (thread_rec (pid, FALSE)->h, 0) == WAIT_OBJECT_0 ?
2203 /* Convert pid to printable format. */
2205 cygwin_pid_to_str (ptid_t ptid)
2207 static char buf[80];
2208 int pid = PIDGET (ptid);
2210 if ((DWORD) pid == current_event.dwProcessId)
2211 sprintf (buf, "process %d", pid);
2213 sprintf (buf, "thread %ld.0x%x", current_event.dwProcessId, pid);
2218 core_dll_symbols_add (char *dll_name, DWORD base_addr)
2220 struct objfile *objfile;
2221 char *objfile_basename;
2222 const char *dll_basename;
2224 if (!(dll_basename = strrchr (dll_name, '/')))
2225 dll_basename = dll_name;
2229 ALL_OBJFILES (objfile)
2231 objfile_basename = strrchr (objfile->name, '/');
2233 if (objfile_basename &&
2234 strcmp (dll_basename, objfile_basename + 1) == 0)
2236 printf_unfiltered ("%08lx:%s (symbols previously loaded)\n",
2237 base_addr, dll_name);
2242 register_loaded_dll (dll_name, base_addr + 0x1000);
2243 solib_symbols_add (dll_name, 0, (CORE_ADDR) base_addr + 0x1000);
2251 struct target_ops *target;
2253 } map_code_section_args;
2256 map_single_dll_code_section (bfd * abfd, asection * sect, void *obj)
2260 struct section_table *new_target_sect_ptr;
2262 map_code_section_args *args = (map_code_section_args *) obj;
2263 struct target_ops *target = args->target;
2264 if (sect->flags & SEC_CODE)
2266 update_coreops = core_ops.to_sections == target->to_sections;
2268 if (target->to_sections)
2270 old = target->to_sections_end - target->to_sections;
2271 target->to_sections = (struct section_table *)
2272 xrealloc ((char *) target->to_sections,
2273 (sizeof (struct section_table)) * (1 + old));
2278 target->to_sections = (struct section_table *)
2279 xmalloc ((sizeof (struct section_table)));
2281 target->to_sections_end = target->to_sections + (1 + old);
2283 /* Update the to_sections field in the core_ops structure
2287 core_ops.to_sections = target->to_sections;
2288 core_ops.to_sections_end = target->to_sections_end;
2290 new_target_sect_ptr = target->to_sections + old;
2291 new_target_sect_ptr->addr = args->addr + bfd_section_vma (abfd, sect);
2292 new_target_sect_ptr->endaddr = args->addr + bfd_section_vma (abfd, sect) +
2293 bfd_section_size (abfd, sect);;
2294 new_target_sect_ptr->the_bfd_section = sect;
2295 new_target_sect_ptr->bfd = abfd;
2300 dll_code_sections_add (const char *dll_name, int base_addr, struct target_ops *target)
2303 map_code_section_args map_args;
2304 asection *lowest_sect;
2306 if (dll_name == NULL || target == NULL)
2308 name = xstrdup (dll_name);
2309 dll_bfd = bfd_openr (name, "pei-i386");
2310 if (dll_bfd == NULL)
2313 if (bfd_check_format (dll_bfd, bfd_object))
2315 lowest_sect = bfd_get_section_by_name (dll_bfd, ".text");
2316 if (lowest_sect == NULL)
2318 map_args.target = target;
2319 map_args.addr = base_addr - bfd_section_vma (dll_bfd, lowest_sect);
2321 bfd_map_over_sections (dll_bfd, &map_single_dll_code_section, (void *) (&map_args));
2328 core_section_load_dll_symbols (bfd * abfd, asection * sect, void *obj)
2330 struct target_ops *target = (struct target_ops *) obj;
2335 char *dll_name = NULL;
2337 struct win32_pstatus *pstatus;
2340 if (strncmp (sect->name, ".module", 7))
2343 buf = (char *) xmalloc (bfd_get_section_size (sect) + 1);
2346 printf_unfiltered ("memory allocation failed for %s\n", sect->name);
2349 if (!bfd_get_section_contents (abfd, sect, buf, 0, bfd_get_section_size (sect)))
2352 pstatus = (struct win32_pstatus *) buf;
2354 memmove (&base_addr, &(pstatus->data.module_info.base_address), sizeof (base_addr));
2355 dll_name_size = pstatus->data.module_info.module_name_size;
2356 if (offsetof (struct win32_pstatus, data.module_info.module_name) + dll_name_size > bfd_get_section_size (sect))
2359 dll_name = (char *) xmalloc (dll_name_size + 1);
2362 printf_unfiltered ("memory allocation failed for %s\n", sect->name);
2365 strncpy (dll_name, pstatus->data.module_info.module_name, dll_name_size);
2367 while ((p = strchr (dll_name, '\\')))
2370 if (!core_dll_symbols_add (dll_name, (DWORD) base_addr))
2371 printf_unfiltered ("%s: Failed to load dll symbols.\n", dll_name);
2373 if (!dll_code_sections_add (dll_name, (DWORD) base_addr + 0x1000, target))
2374 printf_unfiltered ("%s: Failed to map dll code sections.\n", dll_name);
2385 child_solib_add (char *filename, int from_tty, struct target_ops *target,
2392 child_clear_solibs ();
2393 bfd_map_over_sections (core_bfd, &core_section_load_dll_symbols, target);
2397 if (solib_end && solib_end->name)
2398 solib_end->objfile = solib_symbols_add (solib_end->name, from_tty,
2399 solib_end->load_addr);
2404 fetch_elf_core_registers (char *core_reg_sect,
2405 unsigned core_reg_size,
2410 if (core_reg_size < sizeof (CONTEXT))
2412 error ("Core file register section too small (%u bytes).", core_reg_size);
2415 for (r = 0; r < NUM_REGS; r++)
2416 supply_register (r, core_reg_sect + mappings[r]);
2419 static struct core_fns win32_elf_core_fns =
2421 bfd_target_elf_flavour,
2422 default_check_format,
2423 default_core_sniffer,
2424 fetch_elf_core_registers,
2429 _initialize_core_win32 (void)
2431 deprecated_add_core_fns (&win32_elf_core_fns);
2435 _initialize_check_for_gdb_ini (void)
2438 if (inhibit_gdbinit)
2441 homedir = getenv ("HOME");
2445 char *oldini = (char *) alloca (strlen (homedir) +
2446 sizeof ("/gdb.ini"));
2447 strcpy (oldini, homedir);
2448 p = strchr (oldini, '\0');
2449 if (p > oldini && p[-1] != '/')
2451 strcpy (p, "gdb.ini");
2452 if (access (oldini, 0) == 0)
2454 int len = strlen (oldini);
2455 char *newini = alloca (len + 1);
2456 sprintf (newini, "%.*s.gdbinit",
2457 (int) (len - (sizeof ("gdb.ini") - 1)), oldini);
2458 warning ("obsolete '%s' found. Rename to '%s'.", oldini, newini);