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