1 /* Target-vector operations for controlling win32 child processes, for GDB.
3 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free
4 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. */
25 /* Originally by Steve Chamberlain, sac@cygnus.com */
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 ()
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)
1690 PROCESS_INFORMATION pi;
1694 char real_path[MAXPATHLEN];
1696 char shell[MAX_PATH + 1]; /* Path to shell */
1699 int ostdin, ostdout, ostderr;
1702 error ("No executable specified, use `target exec'.\n");
1704 memset (&si, 0, sizeof (si));
1705 si.cb = sizeof (si);
1709 flags = DEBUG_ONLY_THIS_PROCESS;
1710 cygwin_conv_to_win32_path (exec_file, real_path);
1716 sh = getenv ("SHELL");
1719 cygwin_conv_to_win32_path (sh, shell);
1720 newallargs = alloca (sizeof (" -c 'exec '") + strlen (exec_file)
1721 + strlen (allargs) + 2);
1722 sprintf (newallargs, " -c 'exec %s %s'", exec_file, allargs);
1723 allargs = newallargs;
1725 flags = DEBUG_PROCESS;
1729 flags |= CREATE_NEW_PROCESS_GROUP;
1732 flags |= CREATE_NEW_CONSOLE;
1736 args = alloca (strlen (toexec) + strlen (allargs) + 2);
1737 strcpy (args, toexec);
1739 strcat (args, allargs);
1741 /* Prepare the environment vars for CreateProcess. */
1743 /* This code used to assume all env vars were file names and would
1744 translate them all to win32 style. That obviously doesn't work in the
1745 general case. The current rule is that we only translate PATH.
1746 We need to handle PATH because we're about to call CreateProcess and
1747 it uses PATH to find DLL's. Fortunately PATH has a well-defined value
1748 in both posix and win32 environments. cygwin.dll will change it back
1749 to posix style if necessary. */
1751 static const char *conv_path_names[] =
1757 /* CreateProcess takes the environment list as a null terminated set of
1758 strings (i.e. two nulls terminate the list). */
1760 /* Get total size for env strings. */
1761 for (envlen = 0, i = 0; env[i] && *env[i]; i++)
1765 for (j = 0; conv_path_names[j]; j++)
1767 len = strlen (conv_path_names[j]);
1768 if (strncmp (conv_path_names[j], env[i], len) == 0)
1770 if (cygwin_posix_path_list_p (env[i] + len))
1772 + cygwin_posix_to_win32_path_list_buf_size (env[i] + len);
1774 envlen += strlen (env[i]) + 1;
1778 if (conv_path_names[j] == NULL)
1779 envlen += strlen (env[i]) + 1;
1782 winenv = alloca (envlen + 1);
1784 /* Copy env strings into new buffer. */
1785 for (temp = winenv, i = 0; env[i] && *env[i]; i++)
1789 for (j = 0; conv_path_names[j]; j++)
1791 len = strlen (conv_path_names[j]);
1792 if (strncmp (conv_path_names[j], env[i], len) == 0)
1794 if (cygwin_posix_path_list_p (env[i] + len))
1796 memcpy (temp, env[i], len);
1797 cygwin_posix_to_win32_path_list (env[i] + len, temp + len);
1800 strcpy (temp, env[i]);
1804 if (conv_path_names[j] == NULL)
1805 strcpy (temp, env[i]);
1807 temp += strlen (temp) + 1;
1810 /* Final nil string to terminate new env. */
1814 if (!inferior_io_terminal)
1815 tty = ostdin = ostdout = ostderr = -1;
1818 tty = open (inferior_io_terminal, O_RDWR | O_NOCTTY);
1821 print_sys_errmsg (inferior_io_terminal, errno);
1822 ostdin = ostdout = ostderr = -1;
1835 ret = CreateProcess (0,
1836 args, /* command line */
1837 NULL, /* Security */
1839 TRUE, /* inherit handles */
1840 flags, /* start flags */
1842 NULL, /* current directory */
1857 error ("Error creating process %s, (error %d)\n", exec_file, (unsigned) GetLastError ());
1859 CloseHandle (pi.hThread);
1860 CloseHandle (pi.hProcess);
1862 if (useshell && shell[0] != '\0')
1867 do_initial_child_stuff (pi.dwProcessId);
1869 /* child_continue (DBG_CONTINUE, -1); */
1870 proceed ((CORE_ADDR) - 1, TARGET_SIGNAL_0, 0);
1874 child_mourn_inferior (void)
1876 (void) child_continue (DBG_CONTINUE, -1);
1877 i386_cleanup_dregs();
1878 unpush_target (&child_ops);
1879 generic_mourn_inferior ();
1882 /* Send a SIGINT to the process group. This acts just like the user typed a
1883 ^C on the controlling terminal. */
1888 DEBUG_EVENTS (("gdb: GenerateConsoleCtrlEvent (CTRLC_EVENT, 0)\n"));
1889 CHECK (GenerateConsoleCtrlEvent (CTRL_C_EVENT, current_event.dwProcessId));
1890 registers_changed (); /* refresh register state */
1894 child_xfer_memory (CORE_ADDR memaddr, char *our, int len,
1895 int write, struct mem_attrib *mem,
1896 struct target_ops *target)
1901 DEBUG_MEM (("gdb: write target memory, %d bytes at 0x%08lx\n",
1902 len, (DWORD) memaddr));
1903 if (!WriteProcessMemory (current_process_handle, (LPVOID) memaddr, our,
1906 FlushInstructionCache (current_process_handle, (LPCVOID) memaddr, len);
1910 DEBUG_MEM (("gdb: read target memory, %d bytes at 0x%08lx\n",
1911 len, (DWORD) memaddr));
1912 if (!ReadProcessMemory (current_process_handle, (LPCVOID) memaddr, our,
1920 child_kill_inferior (void)
1922 CHECK (TerminateProcess (current_process_handle, 0));
1926 if (!child_continue (DBG_CONTINUE, -1))
1928 if (!WaitForDebugEvent (¤t_event, INFINITE))
1930 if (current_event.dwDebugEventCode == EXIT_PROCESS_DEBUG_EVENT)
1934 CHECK (CloseHandle (current_process_handle));
1936 /* this may fail in an attached process so don't check. */
1937 if (current_thread && current_thread->h)
1938 (void) CloseHandle (current_thread->h);
1939 target_mourn_inferior (); /* or just child_mourn_inferior? */
1943 child_resume (ptid_t ptid, int step, enum target_signal sig)
1946 DWORD continue_status = DBG_CONTINUE;
1948 int pid = PIDGET (ptid);
1950 if (sig != TARGET_SIGNAL_0)
1952 if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
1954 DEBUG_EXCEPT(("Cannot continue with signal %d here.\n",sig));
1956 else if (sig == last_sig)
1957 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1960 /* This code does not seem to work, because
1961 the kernel does probably not consider changes in the ExceptionRecord
1962 structure when passing the exception to the inferior.
1963 Note that this seems possible in the exception handler itself. */
1966 for (i = 0; xlate[i].them != -1; i++)
1967 if (xlate[i].us == sig)
1969 current_event.u.Exception.ExceptionRecord.ExceptionCode =
1971 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1974 if (continue_status == DBG_CONTINUE)
1976 DEBUG_EXCEPT(("Cannot continue with signal %d.\n",sig));
1980 DEBUG_EXCEPT(("Can only continue with recieved signal %d.\n",
1984 last_sig = TARGET_SIGNAL_0;
1986 DEBUG_EXEC (("gdb: child_resume (pid=%d, step=%d, sig=%d);\n",
1989 /* Get context for currently selected thread */
1990 th = thread_rec (current_event.dwThreadId, FALSE);
1995 /* Single step by setting t bit */
1996 child_fetch_inferior_registers (PS_REGNUM);
1997 th->context.EFlags |= FLAG_TRACE_BIT;
2000 if (th->context.ContextFlags)
2002 if (debug_registers_changed)
2004 th->context.Dr0 = dr[0];
2005 th->context.Dr1 = dr[1];
2006 th->context.Dr2 = dr[2];
2007 th->context.Dr3 = dr[3];
2008 /* th->context.Dr6 = dr[6];
2009 FIXME: should we set dr6 also ?? */
2010 th->context.Dr7 = dr[7];
2012 CHECK (SetThreadContext (th->h, &th->context));
2013 th->context.ContextFlags = 0;
2017 /* Allow continuing with the same signal that interrupted us.
2018 Otherwise complain. */
2020 child_continue (continue_status, pid);
2024 child_prepare_to_store (void)
2026 /* Do nothing, since we can store individual regs */
2030 child_can_run (void)
2038 DEBUG_EVENTS (("gdb: child_close, inferior_ptid=%d\n",
2039 PIDGET (inferior_ptid)));
2042 struct target_ops child_ops;
2045 init_child_ops (void)
2047 child_ops.to_shortname = "child";
2048 child_ops.to_longname = "Win32 child process";
2049 child_ops.to_doc = "Win32 child process (started by the \"run\" command).";
2050 child_ops.to_open = child_open;
2051 child_ops.to_close = child_close;
2052 child_ops.to_attach = child_attach;
2053 child_ops.to_detach = child_detach;
2054 child_ops.to_resume = child_resume;
2055 child_ops.to_wait = child_wait;
2056 child_ops.to_fetch_registers = child_fetch_inferior_registers;
2057 child_ops.to_store_registers = child_store_inferior_registers;
2058 child_ops.to_prepare_to_store = child_prepare_to_store;
2059 child_ops.to_xfer_memory = child_xfer_memory;
2060 child_ops.to_files_info = child_files_info;
2061 child_ops.to_insert_breakpoint = memory_insert_breakpoint;
2062 child_ops.to_remove_breakpoint = memory_remove_breakpoint;
2063 child_ops.to_terminal_init = terminal_init_inferior;
2064 child_ops.to_terminal_inferior = terminal_inferior;
2065 child_ops.to_terminal_ours_for_output = terminal_ours_for_output;
2066 child_ops.to_terminal_ours = terminal_ours;
2067 child_ops.to_terminal_save_ours = terminal_save_ours;
2068 child_ops.to_terminal_info = child_terminal_info;
2069 child_ops.to_kill = child_kill_inferior;
2070 child_ops.to_create_inferior = child_create_inferior;
2071 child_ops.to_mourn_inferior = child_mourn_inferior;
2072 child_ops.to_can_run = child_can_run;
2073 child_ops.to_thread_alive = win32_child_thread_alive;
2074 child_ops.to_pid_to_str = cygwin_pid_to_str;
2075 child_ops.to_stop = child_stop;
2076 child_ops.to_stratum = process_stratum;
2077 child_ops.to_has_all_memory = 1;
2078 child_ops.to_has_memory = 1;
2079 child_ops.to_has_stack = 1;
2080 child_ops.to_has_registers = 1;
2081 child_ops.to_has_execution = 1;
2082 child_ops.to_magic = OPS_MAGIC;
2086 _initialize_win32_nat (void)
2088 struct cmd_list_element *c;
2092 c = add_com ("dll-symbols", class_files, dll_symbol_command,
2093 "Load dll library symbols from FILE.");
2094 set_cmd_completer (c, filename_completer);
2096 add_com_alias ("sharedlibrary", "dll-symbols", class_alias, 1);
2098 add_show_from_set (add_set_cmd ("shell", class_support, var_boolean,
2100 "Set use of shell to start subprocess.",
2104 add_show_from_set (add_set_cmd ("new-console", class_support, var_boolean,
2105 (char *) &new_console,
2106 "Set creation of new console when creating child process.",
2110 add_show_from_set (add_set_cmd ("new-group", class_support, var_boolean,
2111 (char *) &new_group,
2112 "Set creation of new group when creating child process.",
2116 add_show_from_set (add_set_cmd ("debugexec", class_support, var_boolean,
2117 (char *) &debug_exec,
2118 "Set whether to display execution in child process.",
2122 add_show_from_set (add_set_cmd ("debugevents", class_support, var_boolean,
2123 (char *) &debug_events,
2124 "Set whether to display kernel events in child process.",
2128 add_show_from_set (add_set_cmd ("debugmemory", class_support, var_boolean,
2129 (char *) &debug_memory,
2130 "Set whether to display memory accesses in child process.",
2134 add_show_from_set (add_set_cmd ("debugexceptions", class_support, var_boolean,
2135 (char *) &debug_exceptions,
2136 "Set whether to display kernel exceptions in child process.",
2140 add_info ("dll", info_dll_command, "Status of loaded DLLs.");
2141 add_info_alias ("sharedlibrary", "dll", 1);
2143 add_prefix_cmd ("w32", class_info, info_w32_command,
2144 "Print information specific to Win32 debugging.",
2145 &info_w32_cmdlist, "info w32 ", 0, &infolist);
2147 add_cmd ("selector", class_info, display_selectors,
2148 "Display selectors infos.",
2151 add_target (&child_ops);
2154 /* Hardware watchpoint support, adapted from go32-nat.c code. */
2156 /* Pass the address ADDR to the inferior in the I'th debug register.
2157 Here we just store the address in dr array, the registers will be
2158 actually set up when child_continue is called. */
2160 cygwin_set_dr (int i, CORE_ADDR addr)
2163 internal_error (__FILE__, __LINE__,
2164 "Invalid register %d in cygwin_set_dr.\n", i);
2165 dr[i] = (unsigned) addr;
2166 debug_registers_changed = 1;
2167 debug_registers_used = 1;
2170 /* Pass the value VAL to the inferior in the DR7 debug control
2171 register. Here we just store the address in D_REGS, the watchpoint
2172 will be actually set up in child_wait. */
2174 cygwin_set_dr7 (unsigned val)
2177 debug_registers_changed = 1;
2178 debug_registers_used = 1;
2181 /* Get the value of the DR6 debug status register from the inferior.
2182 Here we just return the value stored in dr[6]
2183 by the last call to thread_rec for current_event.dwThreadId id. */
2185 cygwin_get_dr6 (void)
2190 /* Determine if the thread referenced by "pid" is alive
2191 by "polling" it. If WaitForSingleObject returns WAIT_OBJECT_0
2192 it means that the pid has died. Otherwise it is assumed to be alive. */
2194 win32_child_thread_alive (ptid_t ptid)
2196 int pid = PIDGET (ptid);
2198 return WaitForSingleObject (thread_rec (pid, FALSE)->h, 0) == WAIT_OBJECT_0 ?
2202 /* Convert pid to printable format. */
2204 cygwin_pid_to_str (ptid_t ptid)
2206 static char buf[80];
2207 int pid = PIDGET (ptid);
2209 if ((DWORD) pid == current_event.dwProcessId)
2210 sprintf (buf, "process %d", pid);
2212 sprintf (buf, "thread %ld.0x%x", current_event.dwProcessId, pid);
2217 core_dll_symbols_add (char *dll_name, DWORD base_addr)
2219 struct objfile *objfile;
2220 char *objfile_basename;
2221 const char *dll_basename;
2223 if (!(dll_basename = strrchr (dll_name, '/')))
2224 dll_basename = dll_name;
2228 ALL_OBJFILES (objfile)
2230 objfile_basename = strrchr (objfile->name, '/');
2232 if (objfile_basename &&
2233 strcmp (dll_basename, objfile_basename + 1) == 0)
2235 printf_unfiltered ("%08lx:%s (symbols previously loaded)\n",
2236 base_addr, dll_name);
2241 register_loaded_dll (dll_name, base_addr + 0x1000);
2242 solib_symbols_add (dll_name, 0, (CORE_ADDR) base_addr + 0x1000);
2250 struct target_ops *target;
2252 } map_code_section_args;
2255 map_single_dll_code_section (bfd * abfd, asection * sect, void *obj)
2259 struct section_table *new_target_sect_ptr;
2261 map_code_section_args *args = (map_code_section_args *) obj;
2262 struct target_ops *target = args->target;
2263 if (sect->flags & SEC_CODE)
2265 update_coreops = core_ops.to_sections == target->to_sections;
2267 if (target->to_sections)
2269 old = target->to_sections_end - target->to_sections;
2270 target->to_sections = (struct section_table *)
2271 xrealloc ((char *) target->to_sections,
2272 (sizeof (struct section_table)) * (1 + old));
2277 target->to_sections = (struct section_table *)
2278 xmalloc ((sizeof (struct section_table)));
2280 target->to_sections_end = target->to_sections + (1 + old);
2282 /* Update the to_sections field in the core_ops structure
2286 core_ops.to_sections = target->to_sections;
2287 core_ops.to_sections_end = target->to_sections_end;
2289 new_target_sect_ptr = target->to_sections + old;
2290 new_target_sect_ptr->addr = args->addr + bfd_section_vma (abfd, sect);
2291 new_target_sect_ptr->endaddr = args->addr + bfd_section_vma (abfd, sect) +
2292 bfd_section_size (abfd, sect);;
2293 new_target_sect_ptr->the_bfd_section = sect;
2294 new_target_sect_ptr->bfd = abfd;
2299 dll_code_sections_add (const char *dll_name, int base_addr, struct target_ops *target)
2302 map_code_section_args map_args;
2303 asection *lowest_sect;
2305 if (dll_name == NULL || target == NULL)
2307 name = xstrdup (dll_name);
2308 dll_bfd = bfd_openr (name, "pei-i386");
2309 if (dll_bfd == NULL)
2312 if (bfd_check_format (dll_bfd, bfd_object))
2314 lowest_sect = bfd_get_section_by_name (dll_bfd, ".text");
2315 if (lowest_sect == NULL)
2317 map_args.target = target;
2318 map_args.addr = base_addr - bfd_section_vma (dll_bfd, lowest_sect);
2320 bfd_map_over_sections (dll_bfd, &map_single_dll_code_section, (void *) (&map_args));
2327 core_section_load_dll_symbols (bfd * abfd, asection * sect, void *obj)
2329 struct target_ops *target = (struct target_ops *) obj;
2334 char *dll_name = NULL;
2336 struct win32_pstatus *pstatus;
2339 if (strncmp (sect->name, ".module", 7))
2342 buf = (char *) xmalloc (sect->_raw_size + 1);
2345 printf_unfiltered ("memory allocation failed for %s\n", sect->name);
2348 if (!bfd_get_section_contents (abfd, sect, buf, 0, sect->_raw_size))
2351 pstatus = (struct win32_pstatus *) buf;
2353 memmove (&base_addr, &(pstatus->data.module_info.base_address), sizeof (base_addr));
2354 dll_name_size = pstatus->data.module_info.module_name_size;
2355 if (offsetof (struct win32_pstatus, data.module_info.module_name) + dll_name_size > sect->_raw_size)
2358 dll_name = (char *) xmalloc (dll_name_size + 1);
2361 printf_unfiltered ("memory allocation failed for %s\n", sect->name);
2364 strncpy (dll_name, pstatus->data.module_info.module_name, dll_name_size);
2366 while ((p = strchr (dll_name, '\\')))
2369 if (!core_dll_symbols_add (dll_name, (DWORD) base_addr))
2370 printf_unfiltered ("%s: Failed to load dll symbols.\n", dll_name);
2372 if (!dll_code_sections_add (dll_name, (DWORD) base_addr + 0x1000, target))
2373 printf_unfiltered ("%s: Failed to map dll code sections.\n", dll_name);
2384 child_solib_add (char *filename, int from_tty, struct target_ops *target,
2391 child_clear_solibs ();
2392 bfd_map_over_sections (core_bfd, &core_section_load_dll_symbols, target);
2396 if (solib_end && solib_end->name)
2397 solib_end->objfile = solib_symbols_add (solib_end->name, from_tty,
2398 solib_end->load_addr);
2403 fetch_elf_core_registers (char *core_reg_sect,
2404 unsigned core_reg_size,
2409 if (core_reg_size < sizeof (CONTEXT))
2411 error ("Core file register section too small (%u bytes).", core_reg_size);
2414 for (r = 0; r < NUM_REGS; r++)
2415 supply_register (r, core_reg_sect + mappings[r]);
2418 static struct core_fns win32_elf_core_fns =
2420 bfd_target_elf_flavour,
2421 default_check_format,
2422 default_core_sniffer,
2423 fetch_elf_core_registers,
2428 _initialize_core_win32 (void)
2430 add_core_fns (&win32_elf_core_fns);
2434 _initialize_check_for_gdb_ini (void)
2437 if (inhibit_gdbinit)
2440 homedir = getenv ("HOME");
2444 char *oldini = (char *) alloca (strlen (homedir) +
2445 sizeof ("/gdb.ini"));
2446 strcpy (oldini, homedir);
2447 p = strchr (oldini, '\0');
2448 if (p > oldini && p[-1] != '/')
2450 strcpy (p, "gdb.ini");
2451 if (access (oldini, 0) == 0)
2453 int len = strlen (oldini);
2454 char *newini = alloca (len + 1);
2455 sprintf (newini, "%.*s.gdbinit",
2456 (int) (len - (sizeof ("gdb.ini") - 1)), oldini);
2457 warning ("obsolete '%s' found. Rename to '%s'.", oldini, newini);