ld/
[deliverable/binutils-gdb.git] / gdb / windows-nat.c
CommitLineData
dc05df57 1/* Target-vector operations for controlling windows child processes, for GDB.
0a65a603 2
281b533b 3 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
0fb0cc75 4 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
0a65a603 5
e6433c28 6 Contributed by Cygnus Solutions, A Red Hat Company.
e88c49c3 7
24e60978
SC
8 This file is part of GDB.
9
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
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
24e60978
SC
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
a9762ec7 16 but WITHOUT ANY WARRANTY; without even the implied warranty of
24e60978
SC
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24e60978 22
dfe7f3ac 23/* Originally by Steve Chamberlain, sac@cygnus.com */
24e60978
SC
24
25#include "defs.h"
26#include "frame.h" /* required by inferior.h */
27#include "inferior.h"
28#include "target.h"
60250e8b 29#include "exceptions.h"
24e60978
SC
30#include "gdbcore.h"
31#include "command.h"
fa58ee11 32#include "completer.h"
4e052eda 33#include "regcache.h"
2a3d5645 34#include "top.h"
403d9909
CF
35#include <signal.h>
36#include <sys/types.h>
37#include <fcntl.h>
38#include <stdlib.h>
39#include <windows.h>
40#include <imagehlp.h>
2b008701 41#include <psapi.h>
10325bc5 42#ifdef __CYGWIN__
403d9909 43#include <sys/cygwin.h>
10325bc5 44#endif
a244bdca 45#include <signal.h>
cad9cd60 46
24e60978 47#include "buildsym.h"
1ef980b9
SC
48#include "symfile.h"
49#include "objfiles.h"
de1b3c3d 50#include "gdb_obstack.h"
24e60978 51#include "gdb_string.h"
fdfa3315 52#include "gdbthread.h"
24e60978 53#include "gdbcmd.h"
1750a5ef 54#include <sys/param.h>
1e37c281 55#include <unistd.h>
4646aa9d 56#include "exec.h"
3ee6f623 57#include "solist.h"
3cb8e7f6 58#include "solib.h"
de1b3c3d 59#include "xml-support.h"
24e60978 60
6c7de422
MK
61#include "i386-tdep.h"
62#include "i387-tdep.h"
63
31b060a2
CF
64#include "windows-tdep.h"
65#include "windows-nat.h"
9bb9e8ad 66#include "i386-nat.h"
de1b3c3d 67
418c6cb3 68#define AdjustTokenPrivileges dyn_AdjustTokenPrivileges
2b008701
CF
69#define DebugActiveProcessStop dyn_DebugActiveProcessStop
70#define DebugBreakProcess dyn_DebugBreakProcess
71#define DebugSetProcessKillOnExit dyn_DebugSetProcessKillOnExit
72#define EnumProcessModules dyn_EnumProcessModules
73#define GetModuleFileNameExA dyn_GetModuleFileNameExA
74#define GetModuleInformation dyn_GetModuleInformation
418c6cb3
CF
75#define LookupPrivilegeValueA dyn_LookupPrivilegeValueA
76#define OpenProcessToken dyn_OpenProcessToken
2b008701 77
418c6cb3
CF
78static BOOL WINAPI (*AdjustTokenPrivileges)(HANDLE, BOOL, PTOKEN_PRIVILEGES,
79 DWORD, PTOKEN_PRIVILEGES, PDWORD);
2b008701
CF
80static BOOL WINAPI (*DebugActiveProcessStop) (DWORD);
81static BOOL WINAPI (*DebugBreakProcess) (HANDLE);
82static BOOL WINAPI (*DebugSetProcessKillOnExit) (BOOL);
83static BOOL WINAPI (*EnumProcessModules) (HANDLE, HMODULE *, DWORD,
84 LPDWORD);
85static DWORD WINAPI (*GetModuleFileNameExA) (HANDLE, HMODULE, LPSTR,
86 DWORD);
87static BOOL WINAPI (*GetModuleInformation) (HANDLE, HMODULE, LPMODULEINFO,
88 DWORD);
418c6cb3
CF
89static BOOL WINAPI (*LookupPrivilegeValueA)(LPCSTR, LPCSTR, PLUID);
90static BOOL WINAPI (*OpenProcessToken)(HANDLE, DWORD, PHANDLE);
2b008701 91
dc05df57 92static struct target_ops windows_ops;
3ee6f623 93
10325bc5 94#ifdef __CYGWIN__
a244bdca 95/* The starting and ending address of the cygwin1.dll text segment. */
dc05df57
CF
96static CORE_ADDR cygwin_load_start;
97static CORE_ADDR cygwin_load_end;
10325bc5 98#endif
a244bdca
CF
99
100static int have_saved_context; /* True if we've saved context from a cygwin signal. */
101static CONTEXT saved_context; /* Containes the saved context from a cygwin signal. */
102
0714f9bf
SS
103/* If we're not using the old Cygwin header file set, define the
104 following which never should have been in the generic Win32 API
105 headers in the first place since they were our own invention... */
106#ifndef _GNU_H_WINDOWS_H
9d3789f7 107enum
8e860359
CF
108 {
109 FLAG_TRACE_BIT = 0x100,
110 CONTEXT_DEBUGGER = (CONTEXT_FULL | CONTEXT_FLOATING_POINT)
111 };
0714f9bf
SS
112#endif
113
5851ab76
JB
114#ifndef CONTEXT_EXTENDED_REGISTERS
115/* This macro is only defined on ia32. It only makes sense on this target,
116 so define it as zero if not already defined. */
117#define CONTEXT_EXTENDED_REGISTERS 0
118#endif
119
fa4ba8da
PM
120#define CONTEXT_DEBUGGER_DR CONTEXT_DEBUGGER | CONTEXT_DEBUG_REGISTERS \
121 | CONTEXT_EXTENDED_REGISTERS
97da3b20 122
41b4aadc 123static uintptr_t dr[8];
87a45c96
CF
124static int debug_registers_changed;
125static int debug_registers_used;
6537bb24 126#define DR6_CLEAR_VALUE 0xffff0ff0
97da3b20 127
3cee93ac
CF
128/* The string sent by cygwin when it processes a signal.
129 FIXME: This should be in a cygwin include file. */
3929abe9
CF
130#ifndef _CYGWIN_SIGNAL_STRING
131#define _CYGWIN_SIGNAL_STRING "cYgSiGw00f"
132#endif
3cee93ac 133
29fe111d 134#define CHECK(x) check (x, __FILE__,__LINE__)
dfe7f3ac 135#define DEBUG_EXEC(x) if (debug_exec) printf_unfiltered x
4e52d31c
PM
136#define DEBUG_EVENTS(x) if (debug_events) printf_unfiltered x
137#define DEBUG_MEM(x) if (debug_memory) printf_unfiltered x
138#define DEBUG_EXCEPT(x) if (debug_exceptions) printf_unfiltered x
24e60978 139
dc05df57 140static void windows_stop (ptid_t);
02529b48 141static int windows_thread_alive (struct target_ops *, ptid_t);
7d85a9c0 142static void windows_kill_inferior (struct target_ops *);
3cee93ac 143
9bb9e8ad
PM
144static void cygwin_set_dr (int i, CORE_ADDR addr);
145static void cygwin_set_dr7 (unsigned long val);
146static unsigned long cygwin_get_dr6 (void);
147
7393af7c
PM
148static enum target_signal last_sig = TARGET_SIGNAL_0;
149/* Set if a signal was received from the debugged process */
150
3cee93ac 151/* Thread information structure used to track information that is
6537bb24 152 not available in gdb's thread structure. */
3cee93ac 153typedef struct thread_info_struct
3a4b77d8
JM
154 {
155 struct thread_info_struct *next;
156 DWORD id;
157 HANDLE h;
158 char *name;
6537bb24 159 int suspended;
3ade5333 160 int reload_context;
3a4b77d8 161 CONTEXT context;
1e37c281 162 STACKFRAME sf;
8e860359
CF
163 }
164thread_info;
1e37c281 165
29fe111d 166static thread_info thread_head;
24e60978 167
24e60978
SC
168/* The process and thread handles for the above context. */
169
3cee93ac
CF
170static DEBUG_EVENT current_event; /* The current debug event from
171 WaitForDebugEvent */
172static HANDLE current_process_handle; /* Currently executing process */
173static thread_info *current_thread; /* Info on currently selected thread */
349b409f 174static DWORD main_thread_id; /* Thread ID of the main thread */
24e60978
SC
175
176/* Counts of things. */
177static int exception_count = 0;
178static int event_count = 0;
dfe7f3ac 179static int saw_create;
bf25528d 180static int open_process_used = 0;
24e60978
SC
181
182/* User options. */
183static int new_console = 0;
10325bc5 184#ifdef __CYGWIN__
09280ddf 185static int cygwin_exceptions = 0;
10325bc5 186#endif
1e37c281 187static int new_group = 1;
dfe7f3ac
CF
188static int debug_exec = 0; /* show execution */
189static int debug_events = 0; /* show events from kernel */
190static int debug_memory = 0; /* show target memory accesses */
1ef980b9 191static int debug_exceptions = 0; /* show target exceptions */
dfe7f3ac
CF
192static int useshell = 0; /* use shell for subprocesses */
193
7e63b4e4 194/* This vector maps GDB's idea of a register's number into an offset
dc05df57 195 in the windows exception context vector.
24e60978 196
3cee93ac 197 It also contains the bit mask needed to load the register in question.
24e60978 198
7e63b4e4
JB
199 The contents of this table can only be computed by the units
200 that provide CPU-specific support for Windows native debugging.
201 These units should set the table by calling
dc05df57 202 windows_set_context_register_offsets.
7e63b4e4 203
24e60978
SC
204 One day we could read a reg, we could inspect the context we
205 already have loaded, if it doesn't have the bit set that we need,
206 we read that set of registers in using GetThreadContext. If the
207 context already contains what we need, we just unpack it. Then to
208 write a register, first we have to ensure that the context contains
209 the other regs of the group, and then we copy the info in and set
210 out bit. */
211
7e63b4e4 212static const int *mappings;
d3a09475 213
24e60978
SC
214/* This vector maps the target's idea of an exception (extracted
215 from the DEBUG_EVENT structure) to GDB's idea. */
216
217struct xlate_exception
218 {
219 int them;
220 enum target_signal us;
221 };
222
24e60978
SC
223static const struct xlate_exception
224 xlate[] =
225{
226 {EXCEPTION_ACCESS_VIOLATION, TARGET_SIGNAL_SEGV},
9cbf6c0e 227 {STATUS_STACK_OVERFLOW, TARGET_SIGNAL_SEGV},
24e60978
SC
228 {EXCEPTION_BREAKPOINT, TARGET_SIGNAL_TRAP},
229 {DBG_CONTROL_C, TARGET_SIGNAL_INT},
230 {EXCEPTION_SINGLE_STEP, TARGET_SIGNAL_TRAP},
7393af7c 231 {STATUS_FLOAT_DIVIDE_BY_ZERO, TARGET_SIGNAL_FPE},
24e60978
SC
232 {-1, -1}};
233
7e63b4e4
JB
234/* Set the MAPPINGS static global to OFFSETS.
235 See the description of MAPPINGS for more details. */
236
237void
dc05df57 238windows_set_context_register_offsets (const int *offsets)
7e63b4e4
JB
239{
240 mappings = offsets;
241}
242
fa4ba8da
PM
243static void
244check (BOOL ok, const char *file, int line)
245{
246 if (!ok)
dfe7f3ac 247 printf_filtered ("error return %s:%d was %lu\n", file, line,
fa4ba8da
PM
248 GetLastError ());
249}
250
6537bb24
PA
251/* Find a thread record given a thread id. If GET_CONTEXT is not 0,
252 then also retrieve the context for this thread. If GET_CONTEXT is
253 negative, then don't suspend the thread. */
3cee93ac
CF
254static thread_info *
255thread_rec (DWORD id, int get_context)
24e60978 256{
3cee93ac
CF
257 thread_info *th;
258
3a4b77d8 259 for (th = &thread_head; (th = th->next) != NULL;)
3cee93ac
CF
260 if (th->id == id)
261 {
6537bb24 262 if (!th->suspended && get_context)
3cee93ac 263 {
8a892701 264 if (get_context > 0 && id != current_event.dwThreadId)
6537bb24
PA
265 {
266 if (SuspendThread (th->h) == (DWORD) -1)
267 {
268 DWORD err = GetLastError ();
269 warning (_("SuspendThread failed. (winerr %d)"),
270 (int) err);
271 return NULL;
272 }
273 th->suspended = 1;
274 }
3cee93ac 275 else if (get_context < 0)
6537bb24 276 th->suspended = -1;
3ade5333 277 th->reload_context = 1;
3cee93ac
CF
278 }
279 return th;
280 }
281
282 return NULL;
283}
284
2dc38344 285/* Add a thread to the thread list. */
3cee93ac 286static thread_info *
dc05df57 287windows_add_thread (ptid_t ptid, HANDLE h)
3cee93ac
CF
288{
289 thread_info *th;
2dc38344
PA
290 DWORD id;
291
292 gdb_assert (ptid_get_tid (ptid) != 0);
293
294 id = ptid_get_tid (ptid);
3cee93ac
CF
295
296 if ((th = thread_rec (id, FALSE)))
297 return th;
298
3929abe9 299 th = XZALLOC (thread_info);
3cee93ac
CF
300 th->id = id;
301 th->h = h;
302 th->next = thread_head.next;
303 thread_head.next = th;
2dc38344
PA
304 add_thread (ptid);
305 /* Set the debug registers for the new thread if they are used. */
fa4ba8da
PM
306 if (debug_registers_used)
307 {
308 /* Only change the value of the debug registers. */
309 th->context.ContextFlags = CONTEXT_DEBUG_REGISTERS;
310 CHECK (GetThreadContext (th->h, &th->context));
311 th->context.Dr0 = dr[0];
312 th->context.Dr1 = dr[1];
313 th->context.Dr2 = dr[2];
314 th->context.Dr3 = dr[3];
6537bb24 315 th->context.Dr6 = DR6_CLEAR_VALUE;
fa4ba8da
PM
316 th->context.Dr7 = dr[7];
317 CHECK (SetThreadContext (th->h, &th->context));
318 th->context.ContextFlags = 0;
319 }
3cee93ac 320 return th;
24e60978
SC
321}
322
3cee93ac
CF
323/* Clear out any old thread list and reintialize it to a
324 pristine state. */
24e60978 325static void
dc05df57 326windows_init_thread_list (void)
24e60978 327{
3cee93ac
CF
328 thread_info *th = &thread_head;
329
dc05df57 330 DEBUG_EVENTS (("gdb: windows_init_thread_list\n"));
3cee93ac
CF
331 init_thread_list ();
332 while (th->next != NULL)
24e60978 333 {
3cee93ac
CF
334 thread_info *here = th->next;
335 th->next = here->next;
b8c9b27d 336 xfree (here);
24e60978 337 }
059198c1 338 thread_head.next = NULL;
3cee93ac
CF
339}
340
341/* Delete a thread from the list of threads */
342static void
dc05df57 343windows_delete_thread (ptid_t ptid)
3cee93ac
CF
344{
345 thread_info *th;
2dc38344
PA
346 DWORD id;
347
348 gdb_assert (ptid_get_tid (ptid) != 0);
349
350 id = ptid_get_tid (ptid);
3cee93ac
CF
351
352 if (info_verbose)
2dc38344
PA
353 printf_unfiltered ("[Deleting %s]\n", target_pid_to_str (ptid));
354 delete_thread (ptid);
3cee93ac
CF
355
356 for (th = &thread_head;
357 th->next != NULL && th->next->id != id;
358 th = th->next)
359 continue;
360
361 if (th->next != NULL)
24e60978 362 {
3cee93ac
CF
363 thread_info *here = th->next;
364 th->next = here->next;
b8c9b27d 365 xfree (here);
24e60978
SC
366 }
367}
368
3cee93ac 369static void
dc05df57 370do_windows_fetch_inferior_registers (struct regcache *regcache, int r)
24e60978 371{
1e37c281 372 char *context_offset = ((char *) &current_thread->context) + mappings[r];
20a6ec49
MD
373 struct gdbarch *gdbarch = get_regcache_arch (regcache);
374 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1e37c281 375 long l;
6c7de422 376
3ade5333 377 if (!current_thread)
d6dc8049
CF
378 return; /* Windows sometimes uses a non-existent thread id in its
379 events */
3ade5333
CF
380
381 if (current_thread->reload_context)
382 {
cb832706 383#ifdef __COPY_CONTEXT_SIZE
a244bdca
CF
384 if (have_saved_context)
385 {
386 /* Lie about where the program actually is stopped since cygwin has informed us that
387 we should consider the signal to have occurred at another location which is stored
388 in "saved_context. */
389 memcpy (&current_thread->context, &saved_context, __COPY_CONTEXT_SIZE);
390 have_saved_context = 0;
391 }
392 else
cb832706 393#endif
a244bdca
CF
394 {
395 thread_info *th = current_thread;
396 th->context.ContextFlags = CONTEXT_DEBUGGER_DR;
397 GetThreadContext (th->h, &th->context);
2b008701 398 /* Copy dr values from that thread.
88616312
PM
399 But only if there were not modified since last stop. PR gdb/2388 */
400 if (!debug_registers_changed)
401 {
402 dr[0] = th->context.Dr0;
403 dr[1] = th->context.Dr1;
404 dr[2] = th->context.Dr2;
405 dr[3] = th->context.Dr3;
406 dr[6] = th->context.Dr6;
407 dr[7] = th->context.Dr7;
408 }
a244bdca 409 }
3ade5333
CF
410 current_thread->reload_context = 0;
411 }
412
20a6ec49 413 if (r == I387_FISEG_REGNUM (tdep))
1e37c281 414 {
8e860359 415 l = *((long *) context_offset) & 0xffff;
56be3814 416 regcache_raw_supply (regcache, r, (char *) &l);
1e37c281 417 }
20a6ec49 418 else if (r == I387_FOP_REGNUM (tdep))
1e37c281 419 {
8e860359 420 l = (*((long *) context_offset) >> 16) & ((1 << 11) - 1);
56be3814 421 regcache_raw_supply (regcache, r, (char *) &l);
1e37c281
JM
422 }
423 else if (r >= 0)
56be3814 424 regcache_raw_supply (regcache, r, context_offset);
3cee93ac 425 else
24e60978 426 {
20a6ec49 427 for (r = 0; r < gdbarch_num_regs (gdbarch); r++)
dc05df57 428 do_windows_fetch_inferior_registers (regcache, r);
24e60978 429 }
3cee93ac
CF
430}
431
432static void
28439f5e
PA
433windows_fetch_inferior_registers (struct target_ops *ops,
434 struct regcache *regcache, int r)
3cee93ac 435{
2dc38344 436 current_thread = thread_rec (ptid_get_tid (inferior_ptid), TRUE);
d6dc8049
CF
437 /* Check if current_thread exists. Windows sometimes uses a non-existent
438 thread id in its events */
3ade5333 439 if (current_thread)
dc05df57 440 do_windows_fetch_inferior_registers (regcache, r);
3cee93ac
CF
441}
442
443static void
dc05df57 444do_windows_store_inferior_registers (const struct regcache *regcache, int r)
3cee93ac 445{
3ade5333 446 if (!current_thread)
d6dc8049 447 /* Windows sometimes uses a non-existent thread id in its events */;
3ade5333 448 else if (r >= 0)
56be3814 449 regcache_raw_collect (regcache, r,
822c9732 450 ((char *) &current_thread->context) + mappings[r]);
24e60978
SC
451 else
452 {
40a6adc1 453 for (r = 0; r < gdbarch_num_regs (get_regcache_arch (regcache)); r++)
dc05df57 454 do_windows_store_inferior_registers (regcache, r);
24e60978
SC
455 }
456}
457
3cee93ac
CF
458/* Store a new register value into the current thread context */
459static void
28439f5e
PA
460windows_store_inferior_registers (struct target_ops *ops,
461 struct regcache *regcache, int r)
3cee93ac 462{
2dc38344 463 current_thread = thread_rec (ptid_get_tid (inferior_ptid), TRUE);
d6dc8049
CF
464 /* Check if current_thread exists. Windows sometimes uses a non-existent
465 thread id in its events */
3ade5333 466 if (current_thread)
dc05df57 467 do_windows_store_inferior_registers (regcache, r);
3cee93ac 468}
24e60978 469
33605d39
CF
470/* Get the name of a given module at at given base address. If base_address
471 is zero return the first loaded module (which is always the name of the
472 executable). */
3ee6f623 473static int
d3653bf6 474get_module_name (LPVOID base_address, char *dll_name_ret)
1e37c281
JM
475{
476 DWORD len;
477 MODULEINFO mi;
478 int i;
8e860359 479 HMODULE dh_buf[1];
33605d39 480 HMODULE *DllHandle = dh_buf; /* Set to temporary storage for initial query */
1e37c281 481 DWORD cbNeeded;
33605d39
CF
482#ifdef __CYGWIN__
483 char pathbuf[PATH_MAX + 1]; /* Temporary storage prior to converting to
484 posix form */
485#else
486 char *pathbuf = dll_name_ret; /* Just copy directly to passed-in arg */
487#endif
1e37c281 488
1e37c281 489 cbNeeded = 0;
33605d39 490 /* Find size of buffer needed to handle list of modules loaded in inferior */
2b008701
CF
491 if (!EnumProcessModules (current_process_handle, DllHandle,
492 sizeof (HMODULE), &cbNeeded) || !cbNeeded)
1e37c281
JM
493 goto failed;
494
33605d39 495 /* Allocate correct amount of space for module list */
8e860359 496 DllHandle = (HMODULE *) alloca (cbNeeded);
1e37c281
JM
497 if (!DllHandle)
498 goto failed;
499
33605d39 500 /* Get the list of modules */
2b008701 501 if (!EnumProcessModules (current_process_handle, DllHandle, cbNeeded,
33605d39 502 &cbNeeded))
1e37c281
JM
503 goto failed;
504
29fe111d 505 for (i = 0; i < (int) (cbNeeded / sizeof (HMODULE)); i++)
1e37c281 506 {
33605d39 507 /* Get information on this module */
2b008701
CF
508 if (!GetModuleInformation (current_process_handle, DllHandle[i],
509 &mi, sizeof (mi)))
8a3fe4f8 510 error (_("Can't get module info"));
1e37c281 511
d3653bf6 512 if (!base_address || mi.lpBaseOfDll == base_address)
33605d39
CF
513 {
514 /* Try to find the name of the given module */
2b008701
CF
515 len = GetModuleFileNameExA (current_process_handle,
516 DllHandle[i], pathbuf, MAX_PATH);
33605d39
CF
517 if (len == 0)
518 error (_("Error getting dll name: %u."), (unsigned) GetLastError ());
519#ifdef __CYGWIN__
520 /* Cygwin prefers that the path be in /x/y/z format */
521 cygwin_conv_to_full_posix_path (pathbuf, dll_name_ret);
522#endif
523 return 1; /* success */
524 }
1e37c281
JM
525 }
526
527failed:
528 dll_name_ret[0] = '\0';
33605d39 529 return 0; /* failure */
1e37c281
JM
530}
531
450005e7
CF
532/* Encapsulate the information required in a call to
533 symbol_file_add_args */
8a892701
CF
534struct safe_symbol_file_add_args
535{
536 char *name;
537 int from_tty;
538 struct section_addr_info *addrs;
539 int mainline;
540 int flags;
7c5c87c0 541 struct ui_file *err, *out;
8a892701
CF
542 struct objfile *ret;
543};
544
02e423b9 545/* Maintain a linked list of "so" information. */
3ee6f623 546struct lm_info
02e423b9 547{
d3653bf6 548 LPVOID load_addr;
3ee6f623
CF
549};
550
551static struct so_list solib_start, *solib_end;
02e423b9 552
450005e7
CF
553/* Call symbol_file_add with stderr redirected. We don't care if there
554 are errors. */
8a892701
CF
555static int
556safe_symbol_file_add_stub (void *argv)
557{
3ee6f623 558#define p ((struct safe_symbol_file_add_args *) argv)
8a892701
CF
559 p->ret = symbol_file_add (p->name, p->from_tty, p->addrs, p->mainline, p->flags);
560 return !!p->ret;
561#undef p
562}
563
450005e7 564/* Restore gdb's stderr after calling symbol_file_add */
8a892701 565static void
7c5c87c0 566safe_symbol_file_add_cleanup (void *p)
8a892701 567{
8e860359 568#define sp ((struct safe_symbol_file_add_args *)p)
450005e7 569 gdb_flush (gdb_stderr);
7c5c87c0 570 gdb_flush (gdb_stdout);
d3ff4a77 571 ui_file_delete (gdb_stderr);
7c5c87c0 572 ui_file_delete (gdb_stdout);
d3ff4a77 573 gdb_stderr = sp->err;
9d3789f7 574 gdb_stdout = sp->out;
8e860359 575#undef sp
8a892701
CF
576}
577
450005e7 578/* symbol_file_add wrapper that prevents errors from being displayed. */
8a892701
CF
579static struct objfile *
580safe_symbol_file_add (char *name, int from_tty,
581 struct section_addr_info *addrs,
582 int mainline, int flags)
8a892701
CF
583{
584 struct safe_symbol_file_add_args p;
585 struct cleanup *cleanup;
586
7c5c87c0 587 cleanup = make_cleanup (safe_symbol_file_add_cleanup, &p);
8a892701 588
7c5c87c0
CF
589 p.err = gdb_stderr;
590 p.out = gdb_stdout;
450005e7 591 gdb_flush (gdb_stderr);
7c5c87c0 592 gdb_flush (gdb_stdout);
d3ff4a77 593 gdb_stderr = ui_file_new ();
7c5c87c0 594 gdb_stdout = ui_file_new ();
8a892701
CF
595 p.name = name;
596 p.from_tty = from_tty;
597 p.addrs = addrs;
598 p.mainline = mainline;
599 p.flags = flags;
600 catch_errors (safe_symbol_file_add_stub, &p, "", RETURN_MASK_ERROR);
601
602 do_cleanups (cleanup);
603 return p.ret;
604}
605
de1b3c3d 606static struct so_list *
dc05df57 607windows_make_so (const char *name, LPVOID load_addr)
8e860359 608{
3ee6f623 609 struct so_list *so;
3f8ad85b
CF
610 char buf[MAX_PATH + 1];
611 char cwd[MAX_PATH + 1];
612 char *p;
613 WIN32_FIND_DATA w32_fd;
614 HANDLE h = FindFirstFile(name, &w32_fd);
5633f842 615 MEMORY_BASIC_INFORMATION m;
3f8ad85b 616
6badb179
CF
617 if (h == INVALID_HANDLE_VALUE)
618 strcpy (buf, name);
619 else
3f8ad85b 620 {
c914e0cc
CF
621 FindClose (h);
622 strcpy (buf, name);
623 if (GetCurrentDirectory (MAX_PATH + 1, cwd))
624 {
625 p = strrchr (buf, '\\');
626 if (p)
627 p[1] = '\0';
628 SetCurrentDirectory (buf);
629 GetFullPathName (w32_fd.cFileName, MAX_PATH, buf, &p);
630 SetCurrentDirectory (cwd);
631 }
3f8ad85b
CF
632 }
633
3ee6f623
CF
634 if (strcasecmp (buf, "ntdll.dll") == 0)
635 {
636 GetSystemDirectory (buf, sizeof (buf));
637 strcat (buf, "\\ntdll.dll");
638 }
3929abe9 639 so = XZALLOC (struct so_list);
3ee6f623
CF
640 so->lm_info = (struct lm_info *) xmalloc (sizeof (struct lm_info));
641 so->lm_info->load_addr = load_addr;
de1b3c3d 642 strcpy (so->so_original_name, name);
10325bc5
PA
643#ifndef __CYGWIN__
644 strcpy (so->so_name, buf);
645#else
646 cygwin_conv_to_posix_path (buf, so->so_name);
de1b3c3d
PA
647 /* Record cygwin1.dll .text start/end. */
648 p = strchr (so->so_name, '\0') - (sizeof ("/cygwin1.dll") - 1);
649 if (p >= so->so_name && strcasecmp (p, "/cygwin1.dll") == 0)
650 {
651 bfd *abfd;
652 asection *text = NULL;
653 CORE_ADDR text_vma;
8e860359 654
610dd7f9 655 abfd = bfd_openr (so->so_name, "pei-i386");
a244bdca 656
de1b3c3d
PA
657 if (!abfd)
658 return so;
659
660 if (bfd_check_format (abfd, bfd_object))
661 text = bfd_get_section_by_name (abfd, ".text");
662
663 if (!text)
664 {
665 bfd_close (abfd);
666 return so;
667 }
668
669 /* The symbols in a dll are offset by 0x1000, which is the the
670 offset from 0 of the first byte in an image - because of the
671 file header and the section alignment. */
dc05df57
CF
672 cygwin_load_start = (CORE_ADDR) (uintptr_t) ((char *) load_addr + 0x1000);
673 cygwin_load_end = cygwin_load_start + bfd_section_size (abfd, text);
de1b3c3d
PA
674
675 bfd_close (abfd);
676 }
10325bc5 677#endif
de1b3c3d
PA
678
679 return so;
8e860359
CF
680}
681
3ee6f623 682static char *
dfe7f3ac
CF
683get_image_name (HANDLE h, void *address, int unicode)
684{
685 static char buf[(2 * MAX_PATH) + 1];
686 DWORD size = unicode ? sizeof (WCHAR) : sizeof (char);
687 char *address_ptr;
688 int len = 0;
689 char b[2];
5732a500 690 SIZE_T done;
dfe7f3ac
CF
691
692 /* Attempt to read the name of the dll that was detected.
693 This is documented to work only when actively debugging
694 a program. It will not work for attached processes. */
695 if (address == NULL)
696 return NULL;
697
dfe7f3ac
CF
698 /* See if we could read the address of a string, and that the
699 address isn't null. */
9f476a01 700 if (!ReadProcessMemory (h, address, &address_ptr, sizeof (address_ptr), &done)
6f17862b 701 || done != sizeof (address_ptr) || !address_ptr)
dfe7f3ac
CF
702 return NULL;
703
704 /* Find the length of the string */
6f17862b
CF
705 while (ReadProcessMemory (h, address_ptr + len++ * size, &b, size, &done)
706 && (b[0] != 0 || b[size - 1] != 0) && done == size)
707 continue;
dfe7f3ac
CF
708
709 if (!unicode)
710 ReadProcessMemory (h, address_ptr, buf, len, &done);
711 else
712 {
713 WCHAR *unicode_address = (WCHAR *) alloca (len * sizeof (WCHAR));
714 ReadProcessMemory (h, address_ptr, unicode_address, len * sizeof (WCHAR),
715 &done);
716
717 WideCharToMultiByte (CP_ACP, 0, unicode_address, len, buf, len, 0, 0);
718 }
719
720 return buf;
721}
722
24e60978
SC
723/* Wait for child to do something. Return pid of child, or -1 in case
724 of error; store status through argument pointer OURSTATUS. */
1750a5ef 725static int
0a65a603 726handle_load_dll (void *dummy)
24e60978 727{
3a4b77d8 728 LOAD_DLL_DEBUG_INFO *event = &current_event.u.LoadDll;
3cee93ac 729 char dll_buf[MAX_PATH + 1];
450005e7 730 char *dll_name = NULL;
3cee93ac 731
3a4b77d8 732 dll_buf[0] = dll_buf[sizeof (dll_buf) - 1] = '\0';
3cee93ac 733
d3653bf6 734 if (!get_module_name (event->lpBaseOfDll, dll_buf))
8e860359 735 dll_buf[0] = dll_buf[sizeof (dll_buf) - 1] = '\0';
3cee93ac 736
1e37c281 737 dll_name = dll_buf;
24e60978 738
dfe7f3ac 739 if (*dll_name == '\0')
de1b3c3d
PA
740 dll_name = get_image_name (current_process_handle,
741 event->lpImageName, event->fUnicode);
3cee93ac
CF
742 if (!dll_name)
743 return 1;
744
dc05df57 745 solib_end->next = windows_make_so (dll_name, event->lpBaseOfDll);
de1b3c3d 746 solib_end = solib_end->next;
450005e7 747
a74ce742
PM
748 DEBUG_EVENTS (("gdb: Loading dll \"%s\" at %s.\n", solib_end->so_name,
749 host_address_to_string (solib_end->lm_info->load_addr)));
7488902c 750
450005e7
CF
751 return 1;
752}
753
3ee6f623 754static void
dc05df57 755windows_free_so (struct so_list *so)
3ee6f623 756{
3ee6f623
CF
757 if (so->lm_info)
758 xfree (so->lm_info);
de1b3c3d 759 xfree (so);
3cb8e7f6
CF
760}
761
d3ff4a77 762static int
0a65a603 763handle_unload_dll (void *dummy)
d3ff4a77 764{
d3653bf6 765 LPVOID lpBaseOfDll = current_event.u.UnloadDll.lpBaseOfDll;
3ee6f623 766 struct so_list *so;
d3ff4a77
CF
767
768 for (so = &solib_start; so->next != NULL; so = so->next)
3ee6f623 769 if (so->next->lm_info->load_addr == lpBaseOfDll)
d3ff4a77 770 {
3ee6f623 771 struct so_list *sodel = so->next;
d3ff4a77
CF
772 so->next = sodel->next;
773 if (!so->next)
774 solib_end = so;
7488902c
PM
775 DEBUG_EVENTS (("gdb: Unloading dll \"%s\".\n", sodel->so_name));
776
dc05df57 777 windows_free_so (sodel);
3929abe9 778 solib_add (NULL, 0, NULL, auto_solib_add);
d3ff4a77
CF
779 return 1;
780 }
3929abe9 781
a74ce742
PM
782 error (_("Error: dll starting at %s not found."),
783 host_address_to_string (lpBaseOfDll));
d3ff4a77
CF
784
785 return 0;
786}
787
450005e7 788/* Clear list of loaded DLLs. */
3ee6f623 789static void
dc05df57 790windows_clear_solib (void)
450005e7 791{
450005e7
CF
792 solib_start.next = NULL;
793 solib_end = &solib_start;
450005e7 794}
295732ea 795
450005e7
CF
796/* Load DLL symbol info. */
797void
7470a420 798dll_symbol_command (char *args, int from_tty)
450005e7 799{
8e860359 800 int n;
450005e7 801 dont_repeat ();
8e860359 802
450005e7 803 if (args == NULL)
8a3fe4f8 804 error (_("dll-symbols requires a file name"));
450005e7 805
8e860359
CF
806 n = strlen (args);
807 if (n > 4 && strcasecmp (args + n - 4, ".dll") != 0)
808 {
809 char *newargs = (char *) alloca (n + 4 + 1);
810 strcpy (newargs, args);
811 strcat (newargs, ".dll");
812 args = newargs;
813 }
814
7470a420 815 safe_symbol_file_add (args, from_tty, NULL, 0, OBJF_SHARED | OBJF_USERLOADED);
8e860359 816}
450005e7 817
3cee93ac
CF
818/* Handle DEBUG_STRING output from child process.
819 Cygwin prepends its messages with a "cygwin:". Interpret this as
820 a Cygwin signal. Otherwise just print the string as a warning. */
821static int
822handle_output_debug_string (struct target_waitstatus *ourstatus)
823{
a244bdca
CF
824 char *s = NULL;
825 int retval = 0;
3cee93ac
CF
826
827 if (!target_read_string
2c647436
PM
828 ((CORE_ADDR) (uintptr_t) current_event.u.DebugString.lpDebugStringData,
829 &s, 1024, 0)
3cee93ac 830 || !s || !*s)
a244bdca
CF
831 /* nothing to do */;
832 else if (strncmp (s, _CYGWIN_SIGNAL_STRING, sizeof (_CYGWIN_SIGNAL_STRING) - 1) != 0)
3cee93ac 833 {
10325bc5 834#ifdef __CYGWIN__
d3a09475 835 if (strncmp (s, "cYg", 3) != 0)
10325bc5 836#endif
8a3fe4f8 837 warning (("%s"), s);
3cee93ac 838 }
cb832706 839#ifdef __COPY_CONTEXT_SIZE
d3a09475 840 else
3cee93ac 841 {
a244bdca
CF
842 /* Got a cygwin signal marker. A cygwin signal is followed by the signal number
843 itself and then optionally followed by the thread id and address to saved context
844 within the DLL. If these are supplied, then the given thread is assumed to have
845 issued the signal and the context from the thread is assumed to be stored at the
846 given address in the inferior. Tell gdb to treat this like a real signal. */
3cee93ac 847 char *p;
3929abe9 848 int sig = strtol (s + sizeof (_CYGWIN_SIGNAL_STRING) - 1, &p, 0);
a244bdca 849 int gotasig = target_signal_from_host (sig);
0714f9bf
SS
850 ourstatus->value.sig = gotasig;
851 if (gotasig)
a244bdca
CF
852 {
853 LPCVOID x;
854 DWORD n;
855 ourstatus->kind = TARGET_WAITKIND_STOPPED;
856 retval = strtoul (p, &p, 0);
857 if (!retval)
858 retval = main_thread_id;
859 else if ((x = (LPCVOID) strtoul (p, &p, 0))
860 && ReadProcessMemory (current_process_handle, x,
861 &saved_context, __COPY_CONTEXT_SIZE, &n)
862 && n == __COPY_CONTEXT_SIZE)
863 have_saved_context = 1;
864 current_event.dwThreadId = retval;
865 }
3cee93ac 866 }
cb832706 867#endif
3cee93ac 868
a244bdca
CF
869 if (s)
870 xfree (s);
871 return retval;
3cee93ac 872}
24e60978 873
c1748f97
PM
874static int
875display_selector (HANDLE thread, DWORD sel)
876{
877 LDT_ENTRY info;
878 if (GetThreadSelectorEntry (thread, sel, &info))
879 {
880 int base, limit;
881 printf_filtered ("0x%03lx: ", sel);
882 if (!info.HighWord.Bits.Pres)
baa93fa6
CF
883 {
884 puts_filtered ("Segment not present\n");
885 return 0;
886 }
c1748f97
PM
887 base = (info.HighWord.Bits.BaseHi << 24) +
888 (info.HighWord.Bits.BaseMid << 16)
889 + info.BaseLow;
890 limit = (info.HighWord.Bits.LimitHi << 16) + info.LimitLow;
891 if (info.HighWord.Bits.Granularity)
caad7706 892 limit = (limit << 12) | 0xfff;
c1748f97
PM
893 printf_filtered ("base=0x%08x limit=0x%08x", base, limit);
894 if (info.HighWord.Bits.Default_Big)
baa93fa6 895 puts_filtered(" 32-bit ");
c1748f97 896 else
baa93fa6 897 puts_filtered(" 16-bit ");
c1748f97
PM
898 switch ((info.HighWord.Bits.Type & 0xf) >> 1)
899 {
900 case 0:
baa93fa6
CF
901 puts_filtered ("Data (Read-Only, Exp-up");
902 break;
c1748f97 903 case 1:
baa93fa6
CF
904 puts_filtered ("Data (Read/Write, Exp-up");
905 break;
c1748f97 906 case 2:
baa93fa6
CF
907 puts_filtered ("Unused segment (");
908 break;
c1748f97 909 case 3:
baa93fa6
CF
910 puts_filtered ("Data (Read/Write, Exp-down");
911 break;
c1748f97 912 case 4:
baa93fa6
CF
913 puts_filtered ("Code (Exec-Only, N.Conf");
914 break;
c1748f97 915 case 5:
baa93fa6 916 puts_filtered ("Code (Exec/Read, N.Conf");
c1748f97
PM
917 break;
918 case 6:
baa93fa6 919 puts_filtered ("Code (Exec-Only, Conf");
c1748f97
PM
920 break;
921 case 7:
baa93fa6 922 puts_filtered ("Code (Exec/Read, Conf");
c1748f97
PM
923 break;
924 default:
925 printf_filtered ("Unknown type 0x%x",info.HighWord.Bits.Type);
926 }
927 if ((info.HighWord.Bits.Type & 0x1) == 0)
baa93fa6 928 puts_filtered(", N.Acc");
c1748f97
PM
929 puts_filtered (")\n");
930 if ((info.HighWord.Bits.Type & 0x10) == 0)
931 puts_filtered("System selector ");
932 printf_filtered ("Priviledge level = %d. ", info.HighWord.Bits.Dpl);
933 if (info.HighWord.Bits.Granularity)
baa93fa6 934 puts_filtered ("Page granular.\n");
c1748f97
PM
935 else
936 puts_filtered ("Byte granular.\n");
937 return 1;
938 }
939 else
940 {
941 printf_filtered ("Invalid selector 0x%lx.\n",sel);
942 return 0;
943 }
944}
945
946static void
947display_selectors (char * args, int from_tty)
948{
949 if (!current_thread)
950 {
951 puts_filtered ("Impossible to display selectors now.\n");
952 return;
953 }
954 if (!args)
955 {
956
957 puts_filtered ("Selector $cs\n");
958 display_selector (current_thread->h,
baa93fa6 959 current_thread->context.SegCs);
c1748f97
PM
960 puts_filtered ("Selector $ds\n");
961 display_selector (current_thread->h,
baa93fa6 962 current_thread->context.SegDs);
c1748f97
PM
963 puts_filtered ("Selector $es\n");
964 display_selector (current_thread->h,
baa93fa6 965 current_thread->context.SegEs);
c1748f97
PM
966 puts_filtered ("Selector $ss\n");
967 display_selector (current_thread->h,
baa93fa6 968 current_thread->context.SegSs);
c1748f97
PM
969 puts_filtered ("Selector $fs\n");
970 display_selector (current_thread->h,
971 current_thread->context.SegFs);
972 puts_filtered ("Selector $gs\n");
973 display_selector (current_thread->h,
baa93fa6 974 current_thread->context.SegGs);
c1748f97
PM
975 }
976 else
977 {
978 int sel;
979 sel = parse_and_eval_long (args);
980 printf_filtered ("Selector \"%s\"\n",args);
981 display_selector (current_thread->h, sel);
982 }
983}
984
985static struct cmd_list_element *info_w32_cmdlist = NULL;
986
987static void
988info_w32_command (char *args, int from_tty)
989{
990 help_list (info_w32_cmdlist, "info w32 ", class_info, gdb_stdout);
991}
992
993
7393af7c 994#define DEBUG_EXCEPTION_SIMPLE(x) if (debug_exceptions) \
a74ce742
PM
995 printf_unfiltered ("gdb: Target exception %s at %s\n", x, \
996 host_address_to_string (\
997 current_event.u.Exception.ExceptionRecord.ExceptionAddress))
7393af7c 998
36339ecd 999static int
450005e7 1000handle_exception (struct target_waitstatus *ourstatus)
24e60978 1001{
3cee93ac 1002 thread_info *th;
29fe111d 1003 DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode;
3cee93ac 1004
29fe111d 1005 ourstatus->kind = TARGET_WAITKIND_STOPPED;
8a892701 1006
3cee93ac
CF
1007 /* Record the context of the current thread */
1008 th = thread_rec (current_event.dwThreadId, -1);
24e60978 1009
29fe111d 1010 switch (code)
24e60978 1011 {
1ef980b9 1012 case EXCEPTION_ACCESS_VIOLATION:
7393af7c
PM
1013 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ACCESS_VIOLATION");
1014 ourstatus->value.sig = TARGET_SIGNAL_SEGV;
10325bc5 1015#ifdef __CYGWIN__
8da8e0b3 1016 {
a244bdca
CF
1017 /* See if the access violation happened within the cygwin DLL itself. Cygwin uses
1018 a kind of exception handling to deal with passed-in invalid addresses. gdb
1019 should not treat these as real SEGVs since they will be silently handled by
1020 cygwin. A real SEGV will (theoretically) be caught by cygwin later in the process
1021 and will be sent as a cygwin-specific-signal. So, ignore SEGVs if they show up
1022 within the text segment of the DLL itself. */
8da8e0b3 1023 char *fn;
dc05df57 1024 CORE_ADDR addr = (CORE_ADDR) (uintptr_t) current_event.u.Exception.ExceptionRecord.ExceptionAddress;
09280ddf 1025 if ((!cygwin_exceptions && (addr >= cygwin_load_start && addr < cygwin_load_end))
a244bdca
CF
1026 || (find_pc_partial_function (addr, &fn, NULL, NULL)
1027 && strncmp (fn, "KERNEL32!IsBad", strlen ("KERNEL32!IsBad")) == 0))
8da8e0b3
CF
1028 return 0;
1029 }
10325bc5 1030#endif
7393af7c
PM
1031 break;
1032 case STATUS_STACK_OVERFLOW:
1033 DEBUG_EXCEPTION_SIMPLE ("STATUS_STACK_OVERFLOW");
1ef980b9 1034 ourstatus->value.sig = TARGET_SIGNAL_SEGV;
7393af7c
PM
1035 break;
1036 case STATUS_FLOAT_DENORMAL_OPERAND:
1037 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DENORMAL_OPERAND");
1038 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1039 break;
1040 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
1041 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ARRAY_BOUNDS_EXCEEDED");
1042 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1043 break;
1044 case STATUS_FLOAT_INEXACT_RESULT:
1045 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INEXACT_RESULT");
1046 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1047 break;
1048 case STATUS_FLOAT_INVALID_OPERATION:
1049 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INVALID_OPERATION");
1050 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1051 break;
1052 case STATUS_FLOAT_OVERFLOW:
1053 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_OVERFLOW");
1054 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1055 break;
1056 case STATUS_FLOAT_STACK_CHECK:
1057 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_STACK_CHECK");
1058 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1ef980b9 1059 break;
3b7c8b74 1060 case STATUS_FLOAT_UNDERFLOW:
7393af7c
PM
1061 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_UNDERFLOW");
1062 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1063 break;
3b7c8b74 1064 case STATUS_FLOAT_DIVIDE_BY_ZERO:
7393af7c
PM
1065 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DIVIDE_BY_ZERO");
1066 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1067 break;
3b7c8b74 1068 case STATUS_INTEGER_DIVIDE_BY_ZERO:
7393af7c 1069 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_DIVIDE_BY_ZERO");
3b7c8b74 1070 ourstatus->value.sig = TARGET_SIGNAL_FPE;
3b7c8b74 1071 break;
7393af7c
PM
1072 case STATUS_INTEGER_OVERFLOW:
1073 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_OVERFLOW");
1074 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1ef980b9
SC
1075 break;
1076 case EXCEPTION_BREAKPOINT:
7393af7c 1077 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_BREAKPOINT");
1ef980b9
SC
1078 ourstatus->value.sig = TARGET_SIGNAL_TRAP;
1079 break;
1080 case DBG_CONTROL_C:
7393af7c 1081 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_C");
1ef980b9 1082 ourstatus->value.sig = TARGET_SIGNAL_INT;
5b421780
PM
1083 break;
1084 case DBG_CONTROL_BREAK:
7393af7c 1085 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_BREAK");
5b421780 1086 ourstatus->value.sig = TARGET_SIGNAL_INT;
1ef980b9
SC
1087 break;
1088 case EXCEPTION_SINGLE_STEP:
7393af7c 1089 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_SINGLE_STEP");
1ef980b9
SC
1090 ourstatus->value.sig = TARGET_SIGNAL_TRAP;
1091 break;
8227c82d 1092 case EXCEPTION_ILLEGAL_INSTRUCTION:
7393af7c
PM
1093 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ILLEGAL_INSTRUCTION");
1094 ourstatus->value.sig = TARGET_SIGNAL_ILL;
1095 break;
1096 case EXCEPTION_PRIV_INSTRUCTION:
1097 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_PRIV_INSTRUCTION");
1098 ourstatus->value.sig = TARGET_SIGNAL_ILL;
1099 break;
1100 case EXCEPTION_NONCONTINUABLE_EXCEPTION:
1101 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_NONCONTINUABLE_EXCEPTION");
8227c82d
CF
1102 ourstatus->value.sig = TARGET_SIGNAL_ILL;
1103 break;
1ef980b9 1104 default:
a244bdca 1105 /* Treat unhandled first chance exceptions specially. */
02e423b9 1106 if (current_event.u.Exception.dwFirstChance)
a244bdca 1107 return -1;
a74ce742
PM
1108 printf_unfiltered ("gdb: unknown target exception 0x%08lx at %s\n",
1109 current_event.u.Exception.ExceptionRecord.ExceptionCode,
1110 host_address_to_string (
1111 current_event.u.Exception.ExceptionRecord.ExceptionAddress));
24e60978 1112 ourstatus->value.sig = TARGET_SIGNAL_UNKNOWN;
1ef980b9 1113 break;
24e60978 1114 }
24e60978 1115 exception_count++;
7393af7c 1116 last_sig = ourstatus->value.sig;
36339ecd 1117 return 1;
24e60978
SC
1118}
1119
3cee93ac
CF
1120/* Resume all artificially suspended threads if we are continuing
1121 execution */
1122static BOOL
dc05df57 1123windows_continue (DWORD continue_status, int id)
3cee93ac
CF
1124{
1125 int i;
1126 thread_info *th;
1127 BOOL res;
1128
7393af7c
PM
1129 DEBUG_EVENTS (("ContinueDebugEvent (cpid=%ld, ctid=%ld, %s);\n",
1130 current_event.dwProcessId, current_event.dwThreadId,
dfe7f3ac 1131 continue_status == DBG_CONTINUE ?
7393af7c 1132 "DBG_CONTINUE" : "DBG_EXCEPTION_NOT_HANDLED"));
6537bb24
PA
1133
1134 for (th = &thread_head; (th = th->next) != NULL;)
1135 if ((id == -1 || id == (int) th->id)
1136 && th->suspended)
1137 {
1138 if (debug_registers_changed)
1139 {
1140 th->context.ContextFlags |= CONTEXT_DEBUG_REGISTERS;
1141 th->context.Dr0 = dr[0];
1142 th->context.Dr1 = dr[1];
1143 th->context.Dr2 = dr[2];
1144 th->context.Dr3 = dr[3];
1145 th->context.Dr6 = DR6_CLEAR_VALUE;
1146 th->context.Dr7 = dr[7];
1147 }
1148 if (th->context.ContextFlags)
1149 {
1150 CHECK (SetThreadContext (th->h, &th->context));
1151 th->context.ContextFlags = 0;
1152 }
1153 if (th->suspended > 0)
1154 (void) ResumeThread (th->h);
1155 th->suspended = 0;
1156 }
1157
0714f9bf
SS
1158 res = ContinueDebugEvent (current_event.dwProcessId,
1159 current_event.dwThreadId,
1160 continue_status);
3cee93ac 1161
fa4ba8da 1162 debug_registers_changed = 0;
3cee93ac
CF
1163 return res;
1164}
1165
d6dc8049
CF
1166/* Called in pathological case where Windows fails to send a
1167 CREATE_PROCESS_DEBUG_EVENT after an attach. */
3ee6f623 1168static DWORD
5439edaa 1169fake_create_process (void)
3ade5333
CF
1170{
1171 current_process_handle = OpenProcess (PROCESS_ALL_ACCESS, FALSE,
1172 current_event.dwProcessId);
bf25528d
CF
1173 if (current_process_handle != NULL)
1174 open_process_used = 1;
1175 else
1176 {
1177 error (_("OpenProcess call failed, GetLastError = %lud\n"),
1178 GetLastError ());
1179 /* We can not debug anything in that case. */
1180 }
3ade5333 1181 main_thread_id = current_event.dwThreadId;
dc05df57
CF
1182 current_thread = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
1183 current_event.dwThreadId),
1184 current_event.u.CreateThread.hThread);
3ade5333
CF
1185 return main_thread_id;
1186}
1187
a244bdca 1188static void
28439f5e
PA
1189windows_resume (struct target_ops *ops,
1190 ptid_t ptid, int step, enum target_signal sig)
a244bdca
CF
1191{
1192 thread_info *th;
1193 DWORD continue_status = DBG_CONTINUE;
1194
2dc38344
PA
1195 /* A specific PTID means `step only this thread id'. */
1196 int resume_all = ptid_equal (ptid, minus_one_ptid);
1197
1198 /* If we're continuing all threads, it's the current inferior that
1199 should be handled specially. */
1200 if (resume_all)
1201 ptid = inferior_ptid;
a244bdca
CF
1202
1203 if (sig != TARGET_SIGNAL_0)
1204 {
1205 if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
1206 {
1207 DEBUG_EXCEPT(("Cannot continue with signal %d here.\n",sig));
1208 }
1209 else if (sig == last_sig)
1210 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1211 else
1212#if 0
1213/* This code does not seem to work, because
1214 the kernel does probably not consider changes in the ExceptionRecord
1215 structure when passing the exception to the inferior.
1216 Note that this seems possible in the exception handler itself. */
1217 {
1218 int i;
1219 for (i = 0; xlate[i].them != -1; i++)
1220 if (xlate[i].us == sig)
1221 {
1222 current_event.u.Exception.ExceptionRecord.ExceptionCode =
1223 xlate[i].them;
1224 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1225 break;
1226 }
1227 if (continue_status == DBG_CONTINUE)
1228 {
1229 DEBUG_EXCEPT(("Cannot continue with signal %d.\n",sig));
1230 }
1231 }
1232#endif
1233 DEBUG_EXCEPT(("Can only continue with recieved signal %d.\n",
1234 last_sig));
1235 }
1236
1237 last_sig = TARGET_SIGNAL_0;
1238
dc05df57 1239 DEBUG_EXEC (("gdb: windows_resume (pid=%d, tid=%ld, step=%d, sig=%d);\n",
2dc38344 1240 ptid_get_pid (ptid), ptid_get_tid (ptid), step, sig));
a244bdca
CF
1241
1242 /* Get context for currently selected thread */
2dc38344 1243 th = thread_rec (ptid_get_tid (inferior_ptid), FALSE);
a244bdca
CF
1244 if (th)
1245 {
1246 if (step)
1247 {
1248 /* Single step by setting t bit */
28439f5e
PA
1249 windows_fetch_inferior_registers (ops,
1250 get_current_regcache (),
1251 gdbarch_ps_regnum (current_gdbarch));
a244bdca
CF
1252 th->context.EFlags |= FLAG_TRACE_BIT;
1253 }
1254
1255 if (th->context.ContextFlags)
1256 {
1257 if (debug_registers_changed)
1258 {
1259 th->context.Dr0 = dr[0];
1260 th->context.Dr1 = dr[1];
1261 th->context.Dr2 = dr[2];
1262 th->context.Dr3 = dr[3];
6537bb24 1263 th->context.Dr6 = DR6_CLEAR_VALUE;
a244bdca
CF
1264 th->context.Dr7 = dr[7];
1265 }
1266 CHECK (SetThreadContext (th->h, &th->context));
1267 th->context.ContextFlags = 0;
1268 }
1269 }
1270
1271 /* Allow continuing with the same signal that interrupted us.
1272 Otherwise complain. */
1273
2dc38344 1274 if (resume_all)
dc05df57 1275 windows_continue (continue_status, -1);
2dc38344 1276 else
dc05df57 1277 windows_continue (continue_status, ptid_get_tid (ptid));
a244bdca
CF
1278}
1279
695de547
CF
1280/* Ctrl-C handler used when the inferior is not run in the same console. The
1281 handler is in charge of interrupting the inferior using DebugBreakProcess.
1282 Note that this function is not available prior to Windows XP. In this case
1283 we emit a warning. */
1284BOOL WINAPI
1285ctrl_c_handler (DWORD event_type)
1286{
1287 const int attach_flag = current_inferior ()->attach_flag;
1288
1289 /* Only handle Ctrl-C event. Ignore others. */
1290 if (event_type != CTRL_C_EVENT)
1291 return FALSE;
1292
1293 /* If the inferior and the debugger share the same console, do nothing as
1294 the inferior has also received the Ctrl-C event. */
1295 if (!new_console && !attach_flag)
1296 return TRUE;
1297
1298 if (!DebugBreakProcess (current_process_handle))
1299 warning (_("\
1300Could not interrupt program. Press Ctrl-c in the program console."));
1301
1302 /* Return true to tell that Ctrl-C has been handled. */
1303 return TRUE;
1304}
1305
8a892701 1306/* Get the next event from the child. Return 1 if the event requires
695de547 1307 handling by WFI (or whatever). */
1e37c281 1308static int
28439f5e
PA
1309get_windows_debug_event (struct target_ops *ops,
1310 int pid, struct target_waitstatus *ourstatus)
1e37c281
JM
1311{
1312 BOOL debug_event;
8a892701 1313 DWORD continue_status, event_code;
87a45c96 1314 thread_info *th;
8a892701 1315 static thread_info dummy_thread_info;
450005e7 1316 int retval = 0;
1e37c281 1317
7393af7c 1318 last_sig = TARGET_SIGNAL_0;
9d3789f7 1319
8a892701 1320 if (!(debug_event = WaitForDebugEvent (&current_event, 1000)))
29fe111d 1321 goto out;
1e37c281
JM
1322
1323 event_count++;
1324 continue_status = DBG_CONTINUE;
1e37c281 1325
8a892701 1326 event_code = current_event.dwDebugEventCode;
450005e7 1327 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
87a45c96 1328 th = NULL;
a244bdca 1329 have_saved_context = 0;
8a892701
CF
1330
1331 switch (event_code)
1e37c281
JM
1332 {
1333 case CREATE_THREAD_DEBUG_EVENT:
1334 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%x code=%s)\n",
8a892701
CF
1335 (unsigned) current_event.dwProcessId,
1336 (unsigned) current_event.dwThreadId,
1337 "CREATE_THREAD_DEBUG_EVENT"));
dfe7f3ac 1338 if (saw_create != 1)
3ade5333 1339 {
181e7f93
PA
1340 struct inferior *inf;
1341 inf = find_inferior_pid (current_event.dwProcessId);
1342 if (!saw_create && inf->attach_flag)
3ade5333 1343 {
d6dc8049
CF
1344 /* Kludge around a Windows bug where first event is a create
1345 thread event. Caused when attached process does not have
1346 a main thread. */
3a3e9ee3 1347 retval = fake_create_process ();
181e7f93
PA
1348 if (retval)
1349 saw_create++;
3ade5333
CF
1350 }
1351 break;
1352 }
1e37c281 1353 /* Record the existence of this thread */
450005e7 1354 retval = current_event.dwThreadId;
dc05df57 1355 th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
2dc38344
PA
1356 current_event.dwThreadId),
1357 current_event.u.CreateThread.hThread);
1e37c281
JM
1358 break;
1359
1360 case EXIT_THREAD_DEBUG_EVENT:
1361 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
8a892701
CF
1362 (unsigned) current_event.dwProcessId,
1363 (unsigned) current_event.dwThreadId,
1364 "EXIT_THREAD_DEBUG_EVENT"));
87a45c96
CF
1365 if (current_event.dwThreadId != main_thread_id)
1366 {
dc05df57 1367 windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
2dc38344 1368 current_event.dwThreadId));
87a45c96
CF
1369 th = &dummy_thread_info;
1370 }
1e37c281
JM
1371 break;
1372
1373 case CREATE_PROCESS_DEBUG_EVENT:
1374 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
8a892701
CF
1375 (unsigned) current_event.dwProcessId,
1376 (unsigned) current_event.dwThreadId,
1377 "CREATE_PROCESS_DEBUG_EVENT"));
700b351b 1378 CloseHandle (current_event.u.CreateProcessInfo.hFile);
dfe7f3ac 1379 if (++saw_create != 1)
bf25528d 1380 break;
1e37c281 1381
dfe7f3ac 1382 current_process_handle = current_event.u.CreateProcessInfo.hProcess;
87a45c96 1383 if (main_thread_id)
695de547
CF
1384 windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
1385 main_thread_id));
9d3789f7 1386 main_thread_id = current_event.dwThreadId;
1e37c281 1387 /* Add the main thread */
dc05df57 1388 th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
695de547
CF
1389 current_event.dwThreadId),
1390 current_event.u.CreateProcessInfo.hThread);
3a3e9ee3 1391 retval = current_event.dwThreadId;
1e37c281
JM
1392 break;
1393
1394 case EXIT_PROCESS_DEBUG_EVENT:
1395 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
8a892701
CF
1396 (unsigned) current_event.dwProcessId,
1397 (unsigned) current_event.dwThreadId,
1398 "EXIT_PROCESS_DEBUG_EVENT"));
dfe7f3ac
CF
1399 if (saw_create != 1)
1400 break;
1e37c281
JM
1401 ourstatus->kind = TARGET_WAITKIND_EXITED;
1402 ourstatus->value.integer = current_event.u.ExitProcess.dwExitCode;
9d3789f7 1403 retval = main_thread_id;
8a892701 1404 break;
1e37c281
JM
1405
1406 case LOAD_DLL_DEBUG_EVENT:
1407 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
8a892701
CF
1408 (unsigned) current_event.dwProcessId,
1409 (unsigned) current_event.dwThreadId,
1410 "LOAD_DLL_DEBUG_EVENT"));
700b351b 1411 CloseHandle (current_event.u.LoadDll.hFile);
dfe7f3ac
CF
1412 if (saw_create != 1)
1413 break;
8a892701 1414 catch_errors (handle_load_dll, NULL, (char *) "", RETURN_MASK_ALL);
450005e7
CF
1415 ourstatus->kind = TARGET_WAITKIND_LOADED;
1416 ourstatus->value.integer = 0;
9d3789f7 1417 retval = main_thread_id;
1e37c281
JM
1418 break;
1419
1420 case UNLOAD_DLL_DEBUG_EVENT:
1421 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
8a892701
CF
1422 (unsigned) current_event.dwProcessId,
1423 (unsigned) current_event.dwThreadId,
1424 "UNLOAD_DLL_DEBUG_EVENT"));
dfe7f3ac
CF
1425 if (saw_create != 1)
1426 break;
d3ff4a77 1427 catch_errors (handle_unload_dll, NULL, (char *) "", RETURN_MASK_ALL);
de1b3c3d
PA
1428 ourstatus->kind = TARGET_WAITKIND_LOADED;
1429 ourstatus->value.integer = 0;
1430 retval = main_thread_id;
d3ff4a77 1431 break;
1e37c281
JM
1432
1433 case EXCEPTION_DEBUG_EVENT:
1434 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
8a892701
CF
1435 (unsigned) current_event.dwProcessId,
1436 (unsigned) current_event.dwThreadId,
1437 "EXCEPTION_DEBUG_EVENT"));
dfe7f3ac
CF
1438 if (saw_create != 1)
1439 break;
a244bdca
CF
1440 switch (handle_exception (ourstatus))
1441 {
1442 case 0:
1443 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1444 break;
1445 case 1:
1446 retval = current_event.dwThreadId;
1447 break;
1448 case -1:
1449 last_sig = 1;
1450 continue_status = -1;
1451 break;
1452 }
1e37c281
JM
1453 break;
1454
8a892701 1455 case OUTPUT_DEBUG_STRING_EVENT: /* message from the kernel */
1e37c281 1456 DEBUG_EVENTS (("gdb: kernel event for pid=%d tid=%d code=%s)\n",
8a892701
CF
1457 (unsigned) current_event.dwProcessId,
1458 (unsigned) current_event.dwThreadId,
1459 "OUTPUT_DEBUG_STRING_EVENT"));
dfe7f3ac
CF
1460 if (saw_create != 1)
1461 break;
a244bdca 1462 retval = handle_output_debug_string (ourstatus);
1e37c281 1463 break;
9d3789f7 1464
1e37c281 1465 default:
dfe7f3ac
CF
1466 if (saw_create != 1)
1467 break;
29fe111d
CF
1468 printf_unfiltered ("gdb: kernel event for pid=%ld tid=%ld\n",
1469 (DWORD) current_event.dwProcessId,
1470 (DWORD) current_event.dwThreadId);
1471 printf_unfiltered (" unknown event code %ld\n",
1e37c281
JM
1472 current_event.dwDebugEventCode);
1473 break;
1474 }
1475
dfe7f3ac 1476 if (!retval || saw_create != 1)
a244bdca
CF
1477 {
1478 if (continue_status == -1)
02529b48 1479 windows_resume (ops, minus_one_ptid, 0, 1);
a244bdca 1480 else
dc05df57 1481 CHECK (windows_continue (continue_status, -1));
a244bdca 1482 }
450005e7 1483 else
9d3789f7 1484 {
2dc38344
PA
1485 inferior_ptid = ptid_build (current_event.dwProcessId, 0,
1486 retval);
3ade5333 1487 current_thread = th ?: thread_rec (current_event.dwThreadId, TRUE);
9d3789f7 1488 }
1e37c281
JM
1489
1490out:
450005e7 1491 return retval;
1e37c281
JM
1492}
1493
2dc38344 1494/* Wait for interesting events to occur in the target process. */
39f77062 1495static ptid_t
117de6a9 1496windows_wait (struct target_ops *ops,
47608cb1 1497 ptid_t ptid, struct target_waitstatus *ourstatus, int options)
24e60978 1498{
2dc38344 1499 int pid = -1;
39f77062 1500
c44537cf
CV
1501 target_terminal_ours ();
1502
24e60978
SC
1503 /* We loop when we get a non-standard exception rather than return
1504 with a SPURIOUS because resume can try and step or modify things,
3cee93ac 1505 which needs a current_thread->h. But some of these exceptions mark
24e60978
SC
1506 the birth or death of threads, which mean that the current thread
1507 isn't necessarily what you think it is. */
1508
1509 while (1)
450005e7 1510 {
c57918b2 1511 int retval;
2b008701 1512
695de547
CF
1513 /* If the user presses Ctrl-c while the debugger is waiting
1514 for an event, he expects the debugger to interrupt his program
1515 and to get the prompt back. There are two possible situations:
1516
1517 - The debugger and the program do not share the console, in
1518 which case the Ctrl-c event only reached the debugger.
1519 In that case, the ctrl_c handler will take care of interrupting
1520 the inferior. Note that this case is working starting with
1521 Windows XP. For Windows 2000, Ctrl-C should be pressed in the
1522 inferior console.
1523
1524 - The debugger and the program share the same console, in which
1525 case both debugger and inferior will receive the Ctrl-c event.
1526 In that case the ctrl_c handler will ignore the event, as the
1527 Ctrl-c event generated inside the inferior will trigger the
1528 expected debug event.
1529
1530 FIXME: brobecker/2008-05-20: If the inferior receives the
1531 signal first and the delay until GDB receives that signal
1532 is sufficiently long, GDB can sometimes receive the SIGINT
1533 after we have unblocked the CTRL+C handler. This would
1534 lead to the debugger stopping prematurely while handling
1535 the new-thread event that comes with the handling of the SIGINT
1536 inside the inferior, and then stop again immediately when
1537 the user tries to resume the execution in the inferior.
1538 This is a classic race that we should try to fix one day. */
1539 SetConsoleCtrlHandler (&ctrl_c_handler, TRUE);
28439f5e 1540 retval = get_windows_debug_event (ops, pid, ourstatus);
695de547 1541 SetConsoleCtrlHandler (&ctrl_c_handler, FALSE);
c57918b2 1542
450005e7 1543 if (retval)
2dc38344 1544 return ptid_build (current_event.dwProcessId, 0, retval);
450005e7
CF
1545 else
1546 {
1547 int detach = 0;
3cee93ac 1548
98bbd631
AC
1549 if (deprecated_ui_loop_hook != NULL)
1550 detach = deprecated_ui_loop_hook (0);
0714f9bf 1551
450005e7 1552 if (detach)
7d85a9c0 1553 windows_kill_inferior (ops);
450005e7
CF
1554 }
1555 }
24e60978
SC
1556}
1557
9d3789f7 1558static void
dc05df57 1559do_initial_windows_stuff (struct target_ops *ops, DWORD pid, int attaching)
9d3789f7
CF
1560{
1561 extern int stop_after_trap;
fa4ba8da 1562 int i;
d6b48e9c 1563 struct inferior *inf;
2020b7ab 1564 struct thread_info *tp;
9d3789f7 1565
7393af7c 1566 last_sig = TARGET_SIGNAL_0;
9d3789f7
CF
1567 event_count = 0;
1568 exception_count = 0;
bf25528d 1569 open_process_used = 0;
fa4ba8da 1570 debug_registers_changed = 0;
dfe7f3ac 1571 debug_registers_used = 0;
fa4ba8da
PM
1572 for (i = 0; i < sizeof (dr) / sizeof (dr[0]); i++)
1573 dr[i] = 0;
10325bc5 1574#ifdef __CYGWIN__
de1b3c3d 1575 cygwin_load_start = cygwin_load_end = 0;
10325bc5 1576#endif
9d3789f7
CF
1577 current_event.dwProcessId = pid;
1578 memset (&current_event, 0, sizeof (current_event));
0795be10 1579 push_target (ops);
cb851954 1580 disable_breakpoints_in_shlibs ();
dc05df57 1581 windows_clear_solib ();
9d3789f7
CF
1582 clear_proceed_status ();
1583 init_wait_for_inferior ();
1584
d6b48e9c 1585 inf = add_inferior (pid);
181e7f93 1586 inf->attach_flag = attaching;
7f9f62ba 1587
9f9d052e
PM
1588 /* Make the new process the current inferior, so terminal handling
1589 can rely on it. When attaching, we don't know about any thread
1590 id here, but that's OK --- nothing should be referencing the
dc05df57 1591 current thread until we report an event out of windows_wait. */
9f9d052e
PM
1592 inferior_ptid = pid_to_ptid (pid);
1593
c44537cf 1594 terminal_init_inferior_with_pgrp (pid);
9d3789f7
CF
1595 target_terminal_inferior ();
1596
d6b48e9c 1597 inf->stop_soon = STOP_QUIETLY;
9d3789f7
CF
1598 while (1)
1599 {
1600 stop_after_trap = 1;
ae123ec6 1601 wait_for_inferior (0);
2020b7ab
PA
1602 tp = inferior_thread ();
1603 if (tp->stop_signal != TARGET_SIGNAL_TRAP)
1604 resume (0, tp->stop_signal);
9d3789f7
CF
1605 else
1606 break;
1607 }
eff8332b 1608
d6b48e9c 1609 inf->stop_soon = NO_STOP_QUIETLY;
9d3789f7
CF
1610 stop_after_trap = 0;
1611 return;
1612}
1613
616a9dc4
CV
1614/* Try to set or remove a user privilege to the current process. Return -1
1615 if that fails, the previous setting of that privilege otherwise.
1616
1617 This code is copied from the Cygwin source code and rearranged to allow
1618 dynamically loading of the needed symbols from advapi32 which is only
1619 available on NT/2K/XP. */
1620static int
1621set_process_privilege (const char *privilege, BOOL enable)
1622{
616a9dc4
CV
1623 HANDLE token_hdl = NULL;
1624 LUID restore_priv;
1625 TOKEN_PRIVILEGES new_priv, orig_priv;
1626 int ret = -1;
1627 DWORD size;
1628
616a9dc4
CV
1629 if (!OpenProcessToken (GetCurrentProcess (),
1630 TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES,
1631 &token_hdl))
1632 goto out;
1633
418c6cb3 1634 if (!LookupPrivilegeValueA (NULL, privilege, &restore_priv))
616a9dc4
CV
1635 goto out;
1636
1637 new_priv.PrivilegeCount = 1;
1638 new_priv.Privileges[0].Luid = restore_priv;
1639 new_priv.Privileges[0].Attributes = enable ? SE_PRIVILEGE_ENABLED : 0;
1640
1641 if (!AdjustTokenPrivileges (token_hdl, FALSE, &new_priv,
295732ea 1642 sizeof orig_priv, &orig_priv, &size))
616a9dc4
CV
1643 goto out;
1644#if 0
1645 /* Disabled, otherwise every `attach' in an unprivileged user session
1646 would raise the "Failed to get SE_DEBUG_NAME privilege" warning in
dc05df57 1647 windows_attach(). */
616a9dc4
CV
1648 /* AdjustTokenPrivileges returns TRUE even if the privilege could not
1649 be enabled. GetLastError () returns an correct error code, though. */
1650 if (enable && GetLastError () == ERROR_NOT_ALL_ASSIGNED)
1651 goto out;
1652#endif
1653
1654 ret = orig_priv.Privileges[0].Attributes == SE_PRIVILEGE_ENABLED ? 1 : 0;
1655
1656out:
1657 if (token_hdl)
1658 CloseHandle (token_hdl);
1659
1660 return ret;
1661}
1662
02cc9f49 1663/* Attach to process PID, then initialize for debugging it. */
24e60978 1664static void
dc05df57 1665windows_attach (struct target_ops *ops, char *args, int from_tty)
24e60978
SC
1666{
1667 BOOL ok;
559e75c0 1668 DWORD pid;
24e60978
SC
1669
1670 if (!args)
e2e0b3e5 1671 error_no_arg (_("process-id to attach"));
24e60978 1672
616a9dc4
CV
1673 if (set_process_privilege (SE_DEBUG_NAME, TRUE) < 0)
1674 {
1675 printf_unfiltered ("Warning: Failed to get SE_DEBUG_NAME privilege\n");
1676 printf_unfiltered ("This can cause attach to fail on Windows NT/2K/XP\n");
1677 }
1678
baa93fa6
CF
1679 pid = strtoul (args, 0, 0); /* Windows pid */
1680
dc05df57 1681 windows_init_thread_list ();
9d3789f7 1682 ok = DebugActiveProcess (pid);
91a175b3 1683 saw_create = 0;
24e60978 1684
10325bc5 1685#ifdef __CYGWIN__
24e60978 1686 if (!ok)
baa93fa6
CF
1687 {
1688 /* Try fall back to Cygwin pid */
1689 pid = cygwin_internal (CW_CYGWIN_PID_TO_WINPID, pid);
1690
1691 if (pid > 0)
1692 ok = DebugActiveProcess (pid);
10325bc5
PA
1693 }
1694#endif
baa93fa6 1695
10325bc5
PA
1696 if (!ok)
1697 error (_("Can't attach to process."));
24e60978 1698
2b008701 1699 DebugSetProcessKillOnExit (FALSE);
3ade5333 1700
24e60978
SC
1701 if (from_tty)
1702 {
1703 char *exec_file = (char *) get_exec_file (0);
1704
1705 if (exec_file)
1706 printf_unfiltered ("Attaching to program `%s', %s\n", exec_file,
39f77062 1707 target_pid_to_str (pid_to_ptid (pid)));
24e60978
SC
1708 else
1709 printf_unfiltered ("Attaching to %s\n",
39f77062 1710 target_pid_to_str (pid_to_ptid (pid)));
24e60978
SC
1711
1712 gdb_flush (gdb_stdout);
1713 }
1714
dc05df57 1715 do_initial_windows_stuff (ops, pid, 1);
9d3789f7 1716 target_terminal_ours ();
24e60978
SC
1717}
1718
24e60978 1719static void
dc05df57 1720windows_detach (struct target_ops *ops, char *args, int from_tty)
24e60978 1721{
02cc9f49
CV
1722 int detached = 1;
1723
2b008701
CF
1724 ptid_t ptid = {-1};
1725 windows_resume (ops, ptid, 0, TARGET_SIGNAL_0);
96998ce7 1726
2b008701
CF
1727 if (!DebugActiveProcessStop (current_event.dwProcessId))
1728 {
1729 error (_("Can't detach process %lu (error %lu)"),
1730 current_event.dwProcessId, GetLastError ());
1731 detached = 0;
02cc9f49 1732 }
2b008701
CF
1733 DebugSetProcessKillOnExit (FALSE);
1734
02cc9f49 1735 if (detached && from_tty)
24e60978
SC
1736 {
1737 char *exec_file = get_exec_file (0);
1738 if (exec_file == 0)
1739 exec_file = "";
02cc9f49
CV
1740 printf_unfiltered ("Detaching from program: %s, Pid %lu\n", exec_file,
1741 current_event.dwProcessId);
24e60978
SC
1742 gdb_flush (gdb_stdout);
1743 }
7f9f62ba 1744
39f77062 1745 inferior_ptid = null_ptid;
7f9f62ba
PA
1746 detach_inferior (current_event.dwProcessId);
1747
0795be10 1748 unpush_target (ops);
24e60978
SC
1749}
1750
3ee6f623 1751static char *
dc05df57 1752windows_pid_to_exec_file (int pid)
47216e51 1753{
47216e51 1754 static char path[MAX_PATH + 1];
10325bc5
PA
1755
1756#ifdef __CYGWIN__
33605d39
CF
1757 /* Try to find exe name as symlink target of /proc/<pid>/exe */
1758 int nchars;
1759 char procexe[sizeof ("/proc/4294967295/exe")];
2dc38344 1760 sprintf (procexe, "/proc/%u/exe", pid);
33605d39
CF
1761 nchars = readlink (procexe, path, sizeof(path));
1762 if (nchars > 0 && nchars < sizeof (path))
47216e51 1763 {
33605d39
CF
1764 path[nchars] = '\0'; /* Got it */
1765 return path;
47216e51 1766 }
10325bc5
PA
1767#endif
1768
33605d39
CF
1769 /* If we get here then either Cygwin is hosed, this isn't a Cygwin version
1770 of gdb, or we're trying to debug a non-Cygwin windows executable. */
1771 if (!get_module_name (0, path))
1772 path[0] = '\0';
1773
1774 return path;
47216e51
CV
1775}
1776
24e60978
SC
1777/* Print status information about what we're accessing. */
1778
1779static void
dc05df57 1780windows_files_info (struct target_ops *ignore)
24e60978 1781{
181e7f93
PA
1782 struct inferior *inf = current_inferior ();
1783
24e60978 1784 printf_unfiltered ("\tUsing the running image of %s %s.\n",
181e7f93
PA
1785 inf->attach_flag ? "attached" : "child",
1786 target_pid_to_str (inferior_ptid));
24e60978
SC
1787}
1788
24e60978 1789static void
dc05df57 1790windows_open (char *arg, int from_tty)
24e60978 1791{
8a3fe4f8 1792 error (_("Use the \"run\" command to start a Unix child process."));
24e60978
SC
1793}
1794
dc05df57 1795/* Start an inferior windows child process and sets inferior_ptid to its pid.
24e60978
SC
1796 EXEC_FILE is the file to run.
1797 ALLARGS is a string containing the arguments to the program.
1798 ENV is the environment vector to pass. Errors reported with error(). */
1799
24e60978 1800static void
dc05df57 1801windows_create_inferior (struct target_ops *ops, char *exec_file,
136d6dae 1802 char *allargs, char **in_env, int from_tty)
24e60978 1803{
24e60978
SC
1804 STARTUPINFO si;
1805 PROCESS_INFORMATION pi;
24e60978
SC
1806 BOOL ret;
1807 DWORD flags;
eb708f2e 1808 char *args;
dfe7f3ac
CF
1809 char real_path[MAXPATHLEN];
1810 char *toexec;
349b409f
CF
1811 char shell[MAX_PATH + 1]; /* Path to shell */
1812 const char *sh;
41b4aadc 1813#ifdef __CYGWIN__
2becadee
CF
1814 int tty;
1815 int ostdin, ostdout, ostderr;
41b4aadc
CF
1816#else
1817 HANDLE tty;
1818#endif
3cb3b8df 1819 const char *inferior_io_terminal = get_inferior_io_terminal ();
24e60978
SC
1820
1821 if (!exec_file)
8a3fe4f8 1822 error (_("No executable specified, use `target exec'."));
24e60978
SC
1823
1824 memset (&si, 0, sizeof (si));
1825 si.cb = sizeof (si);
1826
10325bc5 1827#ifdef __CYGWIN__
349b409f 1828 if (!useshell)
dfe7f3ac
CF
1829 {
1830 flags = DEBUG_ONLY_THIS_PROCESS;
1831 cygwin_conv_to_win32_path (exec_file, real_path);
1832 toexec = real_path;
1833 }
1834 else
1835 {
349b409f
CF
1836 char *newallargs;
1837 sh = getenv ("SHELL");
1838 if (!sh)
1839 sh = "/bin/sh";
1840 cygwin_conv_to_win32_path (sh, shell);
1841 newallargs = alloca (sizeof (" -c 'exec '") + strlen (exec_file)
1842 + strlen (allargs) + 2);
dfe7f3ac
CF
1843 sprintf (newallargs, " -c 'exec %s %s'", exec_file, allargs);
1844 allargs = newallargs;
1845 toexec = shell;
1846 flags = DEBUG_PROCESS;
1847 }
10325bc5
PA
1848#else
1849 toexec = exec_file;
1850 flags = DEBUG_ONLY_THIS_PROCESS;
1851#endif
eb708f2e 1852
eeb25b8a
PM
1853 if (new_group)
1854 flags |= CREATE_NEW_PROCESS_GROUP;
1855
1856 if (new_console)
1857 flags |= CREATE_NEW_CONSOLE;
1858
dfe7f3ac
CF
1859 args = alloca (strlen (toexec) + strlen (allargs) + 2);
1860 strcpy (args, toexec);
eb708f2e
SC
1861 strcat (args, " ");
1862 strcat (args, allargs);
1863
10325bc5 1864#ifdef __CYGWIN__
e88c49c3 1865 /* Prepare the environment vars for CreateProcess. */
002c07a9 1866 cygwin_internal (CW_SYNC_WINENV);
1750a5ef 1867
2becadee
CF
1868 if (!inferior_io_terminal)
1869 tty = ostdin = ostdout = ostderr = -1;
1870 else
1871 {
1872 tty = open (inferior_io_terminal, O_RDWR | O_NOCTTY);
1873 if (tty < 0)
1874 {
1875 print_sys_errmsg (inferior_io_terminal, errno);
1876 ostdin = ostdout = ostderr = -1;
1877 }
1878 else
1879 {
1880 ostdin = dup (0);
1881 ostdout = dup (1);
1882 ostderr = dup (2);
1883 dup2 (tty, 0);
1884 dup2 (tty, 1);
1885 dup2 (tty, 2);
1886 }
1887 }
41b4aadc
CF
1888#else
1889 if (!inferior_io_terminal)
1890 tty = INVALID_HANDLE_VALUE;
1891 else
1892 {
1893 SECURITY_ATTRIBUTES sa;
1894 sa.nLength = sizeof(sa);
1895 sa.lpSecurityDescriptor = 0;
1896 sa.bInheritHandle = TRUE;
1897 tty = CreateFileA (inferior_io_terminal, GENERIC_READ | GENERIC_WRITE,
1898 0, &sa, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
1899 if (tty == INVALID_HANDLE_VALUE)
1900 warning (_("Warning: Failed to open TTY %s, error %#x."),
1901 inferior_io_terminal, (unsigned) GetLastError ());
1902 else
1903 {
1904 si.hStdInput = tty;
1905 si.hStdOutput = tty;
1906 si.hStdError = tty;
1907 si.dwFlags |= STARTF_USESTDHANDLES;
1908 }
1909 }
10325bc5 1910#endif
2becadee 1911
dc05df57 1912 windows_init_thread_list ();
1750a5ef 1913 ret = CreateProcess (0,
3a4b77d8 1914 args, /* command line */
24e60978
SC
1915 NULL, /* Security */
1916 NULL, /* thread */
1917 TRUE, /* inherit handles */
1918 flags, /* start flags */
002c07a9 1919 NULL, /* environment */
24e60978
SC
1920 NULL, /* current directory */
1921 &si,
1922 &pi);
10325bc5
PA
1923
1924#ifdef __CYGWIN__
2becadee
CF
1925 if (tty >= 0)
1926 {
1927 close (tty);
1928 dup2 (ostdin, 0);
1929 dup2 (ostdout, 1);
1930 dup2 (ostderr, 2);
1931 close (ostdin);
1932 close (ostdout);
1933 close (ostderr);
1934 }
41b4aadc
CF
1935#else
1936 if (tty != INVALID_HANDLE_VALUE)
1937 CloseHandle (tty);
10325bc5 1938#endif
2becadee 1939
24e60978 1940 if (!ret)
8a3fe4f8
AC
1941 error (_("Error creating process %s, (error %d)."),
1942 exec_file, (unsigned) GetLastError ());
24e60978 1943
c1766e7d
PM
1944 CloseHandle (pi.hThread);
1945 CloseHandle (pi.hProcess);
1946
dfe7f3ac
CF
1947 if (useshell && shell[0] != '\0')
1948 saw_create = -1;
1949 else
1950 saw_create = 0;
1951
dc05df57 1952 do_initial_windows_stuff (ops, pi.dwProcessId, 0);
d3a09475 1953
dc05df57 1954 /* windows_continue (DBG_CONTINUE, -1); */
24e60978
SC
1955}
1956
1957static void
dc05df57 1958windows_mourn_inferior (struct target_ops *ops)
24e60978 1959{
dc05df57 1960 (void) windows_continue (DBG_CONTINUE, -1);
fa4ba8da 1961 i386_cleanup_dregs();
bf25528d
CF
1962 if (open_process_used)
1963 {
1964 CHECK (CloseHandle (current_process_handle));
1965 open_process_used = 0;
1966 }
0795be10 1967 unpush_target (ops);
24e60978
SC
1968 generic_mourn_inferior ();
1969}
1970
24e60978
SC
1971/* Send a SIGINT to the process group. This acts just like the user typed a
1972 ^C on the controlling terminal. */
1973
b607efe7 1974static void
dc05df57 1975windows_stop (ptid_t ptid)
24e60978 1976{
1ef980b9 1977 DEBUG_EVENTS (("gdb: GenerateConsoleCtrlEvent (CTRLC_EVENT, 0)\n"));
1e37c281 1978 CHECK (GenerateConsoleCtrlEvent (CTRL_C_EVENT, current_event.dwProcessId));
3a4b77d8 1979 registers_changed (); /* refresh register state */
24e60978
SC
1980}
1981
3ee6f623 1982static int
dc05df57 1983windows_xfer_memory (CORE_ADDR memaddr, gdb_byte *our, int len,
0a65a603
AC
1984 int write, struct mem_attrib *mem,
1985 struct target_ops *target)
24e60978 1986{
5732a500 1987 SIZE_T done = 0;
24e60978
SC
1988 if (write)
1989 {
29fe111d 1990 DEBUG_MEM (("gdb: write target memory, %d bytes at 0x%08lx\n",
2c647436 1991 len, (DWORD) (uintptr_t) memaddr));
2b008701 1992 if (!WriteProcessMemory (current_process_handle,
2c647436 1993 (LPVOID) (uintptr_t) memaddr, our,
6f17862b
CF
1994 len, &done))
1995 done = 0;
2b008701 1996 FlushInstructionCache (current_process_handle,
2c647436 1997 (LPCVOID) (uintptr_t) memaddr, len);
24e60978
SC
1998 }
1999 else
2000 {
29fe111d 2001 DEBUG_MEM (("gdb: read target memory, %d bytes at 0x%08lx\n",
2c647436 2002 len, (DWORD) (uintptr_t) memaddr));
2b008701 2003 if (!ReadProcessMemory (current_process_handle,
2c647436 2004 (LPCVOID) (uintptr_t) memaddr, our,
6f17862b
CF
2005 len, &done))
2006 done = 0;
24e60978
SC
2007 }
2008 return done;
2009}
2010
3ee6f623 2011static void
7d85a9c0 2012windows_kill_inferior (struct target_ops *ops)
24e60978 2013{
3cee93ac
CF
2014 CHECK (TerminateProcess (current_process_handle, 0));
2015
b5edcb45
ILT
2016 for (;;)
2017 {
dc05df57 2018 if (!windows_continue (DBG_CONTINUE, -1))
b5edcb45 2019 break;
3cee93ac 2020 if (!WaitForDebugEvent (&current_event, INFINITE))
b5edcb45 2021 break;
3cee93ac 2022 if (current_event.dwDebugEventCode == EXIT_PROCESS_DEBUG_EVENT)
b5edcb45
ILT
2023 break;
2024 }
2025
dc05df57 2026 target_mourn_inferior (); /* or just windows_mourn_inferior? */
24e60978
SC
2027}
2028
24e60978 2029static void
dc05df57 2030windows_prepare_to_store (struct regcache *regcache)
24e60978
SC
2031{
2032 /* Do nothing, since we can store individual regs */
2033}
2034
2035static int
dc05df57 2036windows_can_run (void)
24e60978
SC
2037{
2038 return 1;
2039}
2040
2041static void
dc05df57 2042windows_close (int x)
24e60978 2043{
dc05df57 2044 DEBUG_EVENTS (("gdb: windows_close, inferior_ptid=%d\n",
3bccec63 2045 PIDGET (inferior_ptid)));
24e60978 2046}
1ef980b9 2047
3ee6f623
CF
2048/* Convert pid to printable format. */
2049static char *
117de6a9 2050windows_pid_to_str (struct target_ops *ops, ptid_t ptid)
24e60978 2051{
3ee6f623 2052 static char buf[80];
3ee6f623 2053
2dc38344
PA
2054 if (ptid_get_tid (ptid) != 0)
2055 {
2056 snprintf (buf, sizeof (buf), "Thread %d.0x%lx",
2057 ptid_get_pid (ptid), ptid_get_tid (ptid));
2058 return buf;
2059 }
2060
2061 return normal_pid_to_str (ptid);
3ee6f623
CF
2062}
2063
de1b3c3d 2064static LONGEST
dc05df57 2065windows_xfer_shared_libraries (struct target_ops *ops,
de1b3c3d
PA
2066 enum target_object object, const char *annex,
2067 gdb_byte *readbuf, const gdb_byte *writebuf,
2068 ULONGEST offset, LONGEST len)
3cb8e7f6 2069{
de1b3c3d
PA
2070 struct obstack obstack;
2071 const char *buf;
2072 LONGEST len_avail;
3cb8e7f6 2073 struct so_list *so;
3cb8e7f6 2074
de1b3c3d
PA
2075 if (writebuf)
2076 return -1;
3cb8e7f6 2077
de1b3c3d
PA
2078 obstack_init (&obstack);
2079 obstack_grow_str (&obstack, "<library-list>\n");
2080 for (so = solib_start.next; so; so = so->next)
dc05df57
CF
2081 windows_xfer_shared_library (so->so_name, (CORE_ADDR) (uintptr_t) so->lm_info->load_addr,
2082 &obstack);
de1b3c3d 2083 obstack_grow_str0 (&obstack, "</library-list>\n");
3cb8e7f6 2084
de1b3c3d
PA
2085 buf = obstack_finish (&obstack);
2086 len_avail = strlen (buf);
2087 if (offset >= len_avail)
2088 return 0;
3cb8e7f6 2089
de1b3c3d
PA
2090 if (len > len_avail - offset)
2091 len = len_avail - offset;
2092 memcpy (readbuf, buf + offset, len);
3cb8e7f6 2093
de1b3c3d
PA
2094 obstack_free (&obstack, NULL);
2095 return len;
3cb8e7f6
CF
2096}
2097
de1b3c3d 2098static LONGEST
dc05df57 2099windows_xfer_partial (struct target_ops *ops, enum target_object object,
de1b3c3d
PA
2100 const char *annex, gdb_byte *readbuf,
2101 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
3cb8e7f6 2102{
de1b3c3d 2103 switch (object)
3cb8e7f6 2104 {
de1b3c3d
PA
2105 case TARGET_OBJECT_MEMORY:
2106 if (readbuf)
2107 return (*ops->deprecated_xfer_memory) (offset, readbuf,
244e85c8 2108 len, 0/*read*/, NULL, ops);
de1b3c3d
PA
2109 if (writebuf)
2110 return (*ops->deprecated_xfer_memory) (offset, (gdb_byte *) writebuf,
2111 len, 1/*write*/, NULL, ops);
2112 return -1;
2113
2114 case TARGET_OBJECT_LIBRARIES:
dc05df57 2115 return windows_xfer_shared_libraries (ops, object, annex, readbuf,
de1b3c3d 2116 writebuf, offset, len);
3929abe9 2117
de1b3c3d
PA
2118 default:
2119 if (ops->beneath != NULL)
2120 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
2121 readbuf, writebuf, offset, len);
2122 return -1;
3929abe9 2123 }
02c5aecd
CF
2124}
2125
1e2f1c5c
JB
2126static ptid_t
2127windows_get_ada_task_ptid (long lwp, long thread)
2128{
2129 return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
2130}
2131
3ee6f623 2132static void
dc05df57 2133init_windows_ops (void)
3ee6f623 2134{
dc05df57
CF
2135 windows_ops.to_shortname = "child";
2136 windows_ops.to_longname = "Win32 child process";
2137 windows_ops.to_doc = "Win32 child process (started by the \"run\" command).";
2138 windows_ops.to_open = windows_open;
2139 windows_ops.to_close = windows_close;
2140 windows_ops.to_attach = windows_attach;
2141 windows_ops.to_attach_no_wait = 1;
2142 windows_ops.to_detach = windows_detach;
2143 windows_ops.to_resume = windows_resume;
2144 windows_ops.to_wait = windows_wait;
2145 windows_ops.to_fetch_registers = windows_fetch_inferior_registers;
2146 windows_ops.to_store_registers = windows_store_inferior_registers;
2147 windows_ops.to_prepare_to_store = windows_prepare_to_store;
2148 windows_ops.deprecated_xfer_memory = windows_xfer_memory;
2149 windows_ops.to_xfer_partial = windows_xfer_partial;
2150 windows_ops.to_files_info = windows_files_info;
2151 windows_ops.to_insert_breakpoint = memory_insert_breakpoint;
2152 windows_ops.to_remove_breakpoint = memory_remove_breakpoint;
2153 windows_ops.to_terminal_init = terminal_init_inferior;
2154 windows_ops.to_terminal_inferior = terminal_inferior;
2155 windows_ops.to_terminal_ours_for_output = terminal_ours_for_output;
2156 windows_ops.to_terminal_ours = terminal_ours;
2157 windows_ops.to_terminal_save_ours = terminal_save_ours;
2158 windows_ops.to_terminal_info = child_terminal_info;
2159 windows_ops.to_kill = windows_kill_inferior;
2160 windows_ops.to_create_inferior = windows_create_inferior;
2161 windows_ops.to_mourn_inferior = windows_mourn_inferior;
2162 windows_ops.to_can_run = windows_can_run;
2163 windows_ops.to_thread_alive = windows_thread_alive;
2164 windows_ops.to_pid_to_str = windows_pid_to_str;
2165 windows_ops.to_stop = windows_stop;
2166 windows_ops.to_stratum = process_stratum;
2167 windows_ops.to_has_all_memory = 1;
2168 windows_ops.to_has_memory = 1;
2169 windows_ops.to_has_stack = 1;
2170 windows_ops.to_has_registers = 1;
2171 windows_ops.to_has_execution = 1;
2172 windows_ops.to_pid_to_exec_file = windows_pid_to_exec_file;
1e2f1c5c 2173 windows_ops.to_get_ada_task_ptid = windows_get_ada_task_ptid;
9bb9e8ad 2174
5aca5a82
PM
2175 i386_use_watchpoints (&windows_ops);
2176
9bb9e8ad
PM
2177 i386_dr_low.set_control = cygwin_set_dr7;
2178 i386_dr_low.set_addr = cygwin_set_dr;
2179 i386_dr_low.reset_addr = NULL;
2180 i386_dr_low.get_status = cygwin_get_dr6;
2181
2182 /* i386_dr_low.debug_register_length field is set by
2183 calling i386_set_debug_register_length function
2184 in processor windows specific native file. */
2185
dc05df57 2186 windows_ops.to_magic = OPS_MAGIC;
c719b714 2187}
24e60978 2188
3929abe9 2189static void
dc05df57 2190set_windows_aliases (char *argv0)
3929abe9
CF
2191{
2192 add_info_alias ("dll", "sharedlibrary", 1);
2193}
2194
24e60978 2195void
dc05df57 2196_initialize_windows_nat (void)
24e60978 2197{
fa58ee11
EZ
2198 struct cmd_list_element *c;
2199
dc05df57 2200 init_windows_ops ();
1ef980b9 2201
fa58ee11 2202 c = add_com ("dll-symbols", class_files, dll_symbol_command,
1bedd215 2203 _("Load dll library symbols from FILE."));
5ba2abeb 2204 set_cmd_completer (c, filename_completer);
450005e7
CF
2205
2206 add_com_alias ("sharedlibrary", "dll-symbols", class_alias, 1);
2207
10325bc5 2208#ifdef __CYGWIN__
5bf193a2
AC
2209 add_setshow_boolean_cmd ("shell", class_support, &useshell, _("\
2210Set use of shell to start subprocess."), _("\
2211Show use of shell to start subprocess."), NULL,
2212 NULL,
2213 NULL, /* FIXME: i18n: */
2214 &setlist, &showlist);
2215
09280ddf
CF
2216 add_setshow_boolean_cmd ("cygwin-exceptions", class_support, &cygwin_exceptions, _("\
2217Break when an exception is detected in the Cygwin DLL itself."), _("\
2218Show whether gdb breaks on exceptions in the Cygwin DLL itself."), NULL,
2219 NULL,
2220 NULL, /* FIXME: i18n: */
2221 &setlist, &showlist);
10325bc5 2222#endif
09280ddf 2223
5bf193a2
AC
2224 add_setshow_boolean_cmd ("new-console", class_support, &new_console, _("\
2225Set creation of new console when creating child process."), _("\
2226Show creation of new console when creating child process."), NULL,
2227 NULL,
2228 NULL, /* FIXME: i18n: */
2229 &setlist, &showlist);
2230
2231 add_setshow_boolean_cmd ("new-group", class_support, &new_group, _("\
2232Set creation of new group when creating child process."), _("\
2233Show creation of new group when creating child process."), NULL,
2234 NULL,
2235 NULL, /* FIXME: i18n: */
2236 &setlist, &showlist);
2237
2238 add_setshow_boolean_cmd ("debugexec", class_support, &debug_exec, _("\
2239Set whether to display execution in child process."), _("\
2240Show whether to display execution in child process."), NULL,
2241 NULL,
2242 NULL, /* FIXME: i18n: */
2243 &setlist, &showlist);
2244
2245 add_setshow_boolean_cmd ("debugevents", class_support, &debug_events, _("\
2246Set whether to display kernel events in child process."), _("\
2247Show whether to display kernel events in child process."), NULL,
2248 NULL,
2249 NULL, /* FIXME: i18n: */
2250 &setlist, &showlist);
2251
2252 add_setshow_boolean_cmd ("debugmemory", class_support, &debug_memory, _("\
2253Set whether to display memory accesses in child process."), _("\
2254Show whether to display memory accesses in child process."), NULL,
2255 NULL,
2256 NULL, /* FIXME: i18n: */
2257 &setlist, &showlist);
2258
2259 add_setshow_boolean_cmd ("debugexceptions", class_support,
2260 &debug_exceptions, _("\
2261Set whether to display kernel exceptions in child process."), _("\
2262Show whether to display kernel exceptions in child process."), NULL,
2263 NULL,
2264 NULL, /* FIXME: i18n: */
2265 &setlist, &showlist);
1ef980b9 2266
c1748f97 2267 add_prefix_cmd ("w32", class_info, info_w32_command,
1bedd215 2268 _("Print information specific to Win32 debugging."),
baa93fa6 2269 &info_w32_cmdlist, "info w32 ", 0, &infolist);
c1748f97
PM
2270
2271 add_cmd ("selector", class_info, display_selectors,
1a966eab 2272 _("Display selectors infos."),
c1748f97 2273 &info_w32_cmdlist);
dc05df57
CF
2274 add_target (&windows_ops);
2275 deprecated_init_ui_hook = set_windows_aliases;
24e60978 2276}
3cee93ac 2277
fa4ba8da
PM
2278/* Hardware watchpoint support, adapted from go32-nat.c code. */
2279
2280/* Pass the address ADDR to the inferior in the I'th debug register.
2281 Here we just store the address in dr array, the registers will be
dc05df57 2282 actually set up when windows_continue is called. */
9bb9e8ad 2283static void
fa4ba8da
PM
2284cygwin_set_dr (int i, CORE_ADDR addr)
2285{
2286 if (i < 0 || i > 3)
2287 internal_error (__FILE__, __LINE__,
e2e0b3e5 2288 _("Invalid register %d in cygwin_set_dr.\n"), i);
41b4aadc 2289 dr[i] = addr;
fa4ba8da
PM
2290 debug_registers_changed = 1;
2291 debug_registers_used = 1;
2292}
2293
2294/* Pass the value VAL to the inferior in the DR7 debug control
2295 register. Here we just store the address in D_REGS, the watchpoint
dc05df57 2296 will be actually set up in windows_wait. */
9bb9e8ad
PM
2297static void
2298cygwin_set_dr7 (unsigned long val)
fa4ba8da 2299{
9bb9e8ad 2300 dr[7] = (CORE_ADDR) val;
fa4ba8da
PM
2301 debug_registers_changed = 1;
2302 debug_registers_used = 1;
2303}
2304
2305/* Get the value of the DR6 debug status register from the inferior.
2306 Here we just return the value stored in dr[6]
2307 by the last call to thread_rec for current_event.dwThreadId id. */
9bb9e8ad 2308static unsigned long
fa4ba8da
PM
2309cygwin_get_dr6 (void)
2310{
9bb9e8ad 2311 return (unsigned long) dr[6];
fa4ba8da
PM
2312}
2313
2dc38344 2314/* Determine if the thread referenced by "ptid" is alive
3cee93ac 2315 by "polling" it. If WaitForSingleObject returns WAIT_OBJECT_0
2dc38344 2316 it means that the thread has died. Otherwise it is assumed to be alive. */
3cee93ac 2317static int
28439f5e 2318windows_thread_alive (struct target_ops *ops, ptid_t ptid)
3cee93ac 2319{
2dc38344
PA
2320 int tid;
2321
2322 gdb_assert (ptid_get_tid (ptid) != 0);
2323 tid = ptid_get_tid (ptid);
39f77062 2324
2dc38344 2325 return WaitForSingleObject (thread_rec (tid, FALSE)->h, 0) == WAIT_OBJECT_0 ?
3a4b77d8 2326 FALSE : TRUE;
3cee93ac
CF
2327}
2328
2a3d5645
CF
2329void
2330_initialize_check_for_gdb_ini (void)
2331{
2332 char *homedir;
2333 if (inhibit_gdbinit)
2334 return;
2335
2336 homedir = getenv ("HOME");
2337 if (homedir)
2338 {
2339 char *p;
2340 char *oldini = (char *) alloca (strlen (homedir) +
2341 sizeof ("/gdb.ini"));
2342 strcpy (oldini, homedir);
2343 p = strchr (oldini, '\0');
2344 if (p > oldini && p[-1] != '/')
2345 *p++ = '/';
2346 strcpy (p, "gdb.ini");
2347 if (access (oldini, 0) == 0)
2348 {
2349 int len = strlen (oldini);
2350 char *newini = alloca (len + 1);
dfe7f3ac 2351 sprintf (newini, "%.*s.gdbinit",
58fa08f0 2352 (int) (len - (sizeof ("gdb.ini") - 1)), oldini);
8a3fe4f8 2353 warning (_("obsolete '%s' found. Rename to '%s'."), oldini, newini);
2a3d5645
CF
2354 }
2355 }
2356}
33605d39 2357
2b008701
CF
2358/* Define dummy functions which always return error for the rare cases where
2359 these functions could not be found. */
2360static BOOL WINAPI
2361bad_DebugActiveProcessStop (DWORD w)
2362{
2363 return FALSE;
2364}
2365static BOOL WINAPI
2366bad_DebugBreakProcess (HANDLE w)
2367{
2368 return FALSE;
2369}
2370static BOOL WINAPI
2371bad_DebugSetProcessKillOnExit (BOOL w)
2372{
2373 return FALSE;
2374}
2375static BOOL WINAPI
2376bad_EnumProcessModules (HANDLE w, HMODULE *x, DWORD y, LPDWORD z)
2377{
2378 return FALSE;
2379}
2380static DWORD WINAPI
2381bad_GetModuleFileNameExA (HANDLE w, HMODULE x, LPSTR y, DWORD z)
2382{
2383 return 0;
2384}
2385static BOOL WINAPI
2386bad_GetModuleInformation (HANDLE w, HMODULE x, LPMODULEINFO y, DWORD z)
2387{
2388 return FALSE;
2389}
2390
418c6cb3
CF
2391static BOOL WINAPI
2392bad_OpenProcessToken (HANDLE w, DWORD x, PHANDLE y)
2393{
2394 return FALSE;
2395}
2396
2b008701
CF
2397/* Load any functions which may not be available in ancient versions
2398 of Windows. */
33605d39 2399void
2b008701 2400_initialize_loadable (void)
33605d39 2401{
2b008701
CF
2402 HMODULE hm = NULL;
2403
2404 hm = LoadLibrary ("kernel32.dll");
2405 if (hm)
33605d39 2406 {
2b008701
CF
2407 dyn_DebugActiveProcessStop = (void *)
2408 GetProcAddress (hm, "DebugActiveProcessStop");
2409 dyn_DebugBreakProcess = (void *)
2410 GetProcAddress (hm, "DebugBreakProcess");
2411 dyn_DebugSetProcessKillOnExit = (void *)
2412 GetProcAddress (hm, "DebugSetProcessKillOnExit");
2413 }
33605d39 2414
2b008701
CF
2415 /* Set variables to dummy versions of these processes if the function
2416 wasn't found in kernel32.dll. */
2417 if (!dyn_DebugBreakProcess)
2418 dyn_DebugBreakProcess = bad_DebugBreakProcess;
2419 if (!dyn_DebugActiveProcessStop || !dyn_DebugSetProcessKillOnExit)
2420 {
2421 dyn_DebugActiveProcessStop = bad_DebugActiveProcessStop;
2422 dyn_DebugSetProcessKillOnExit = bad_DebugSetProcessKillOnExit;
2423 }
33605d39 2424
2b008701
CF
2425 /* Load optional functions used for retrieving filename information
2426 associated with the currently debugged process or its dlls. */
2427 hm = LoadLibrary ("psapi.dll");
2428 if (hm)
2429 {
2430 dyn_EnumProcessModules = (void *)
2431 GetProcAddress (hm, "EnumProcessModules");
2432 dyn_GetModuleInformation = (void *)
2433 GetProcAddress (hm, "GetModuleInformation");
2434 dyn_GetModuleFileNameExA = (void *)
2435 GetProcAddress (hm, "GetModuleFileNameExA");
33605d39
CF
2436 }
2437
2b008701
CF
2438 if (!dyn_EnumProcessModules || !dyn_GetModuleInformation || !dyn_GetModuleFileNameExA)
2439 {
2440 /* Set variables to dummy versions of these processes if the function
2441 wasn't found in psapi.dll. */
2442 dyn_EnumProcessModules = bad_EnumProcessModules;
2443 dyn_GetModuleInformation = bad_GetModuleInformation;
2444 dyn_GetModuleFileNameExA = bad_GetModuleFileNameExA;
2445 /* This will probably fail on Windows 9x/Me. Let the user know that we're
2446 missing some functionality. */
418c6cb3
CF
2447 warning(_("cannot automatically find executable file or library to read symbols.\nUse \"file\" or \"dll\" command to load executable/libraries directly."));
2448 }
2449
2450 hm = LoadLibrary ("advapi32.dll");
2451 if (hm)
2452 {
2453 dyn_OpenProcessToken = (void *)
2454 GetProcAddress (hm, "OpenProcessToken");
2455 dyn_LookupPrivilegeValueA = (void *)
2456 GetProcAddress (hm, "LookupPrivilegeValueA");
2457 dyn_AdjustTokenPrivileges = (void *)
2458 GetProcAddress (hm, "AdjustTokenPrivileges");
2459 /* Only need to set one of these since if OpenProcessToken fails nothing
2460 else is needed. */
2461 if (!dyn_OpenProcessToken || !dyn_LookupPrivilegeValueA || !dyn_AdjustTokenPrivileges)
2462 dyn_OpenProcessToken = bad_OpenProcessToken;
2b008701 2463 }
33605d39 2464}
This page took 1.426407 seconds and 4 git commands to generate.