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