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