Breakpoints, don't skip prologue of ifunc resolvers with debug info
[deliverable/binutils-gdb.git] / gdb / windows-nat.c
CommitLineData
dc05df57 1/* Target-vector operations for controlling windows child processes, for GDB.
0a65a603 2
e2882c85 3 Copyright (C) 1995-2018 Free Software Foundation, Inc.
0a65a603 4
e6433c28 5 Contributed by Cygnus Solutions, A Red Hat Company.
e88c49c3 6
24e60978
SC
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
24e60978
SC
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
a9762ec7 15 but WITHOUT ANY WARRANTY; without even the implied warranty of
24e60978
SC
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24e60978 21
dfe7f3ac 22/* Originally by Steve Chamberlain, sac@cygnus.com */
24e60978
SC
23
24#include "defs.h"
25#include "frame.h" /* required by inferior.h */
26#include "inferior.h"
45741a9c 27#include "infrun.h"
24e60978 28#include "target.h"
24e60978
SC
29#include "gdbcore.h"
30#include "command.h"
fa58ee11 31#include "completer.h"
4e052eda 32#include "regcache.h"
2a3d5645 33#include "top.h"
403d9909
CF
34#include <signal.h>
35#include <sys/types.h>
36#include <fcntl.h>
403d9909
CF
37#include <windows.h>
38#include <imagehlp.h>
2b008701 39#include <psapi.h>
10325bc5 40#ifdef __CYGWIN__
b7ff339d 41#include <wchar.h>
403d9909 42#include <sys/cygwin.h>
b7ff339d 43#include <cygwin/version.h>
10325bc5 44#endif
a1b85d28 45#include <algorithm>
cad9cd60 46
24e60978 47#include "buildsym.h"
0ba1096a 48#include "filenames.h"
1ef980b9
SC
49#include "symfile.h"
50#include "objfiles.h"
92107356 51#include "gdb_bfd.h"
de1b3c3d 52#include "gdb_obstack.h"
fdfa3315 53#include "gdbthread.h"
24e60978 54#include "gdbcmd.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"
463888ab 60#include "inttypes.h"
24e60978 61
6c7de422
MK
62#include "i386-tdep.h"
63#include "i387-tdep.h"
64
31b060a2
CF
65#include "windows-tdep.h"
66#include "windows-nat.h"
df7e5265 67#include "x86-nat.h"
ecc13e53 68#include "complaints.h"
51a9c8c5 69#include "inf-child.h"
d092c5a2 70#include "gdb_tilde_expand.h"
de1b3c3d 71
418c6cb3 72#define AdjustTokenPrivileges dyn_AdjustTokenPrivileges
2b008701
CF
73#define DebugActiveProcessStop dyn_DebugActiveProcessStop
74#define DebugBreakProcess dyn_DebugBreakProcess
75#define DebugSetProcessKillOnExit dyn_DebugSetProcessKillOnExit
76#define EnumProcessModules dyn_EnumProcessModules
2b008701 77#define GetModuleInformation dyn_GetModuleInformation
418c6cb3
CF
78#define LookupPrivilegeValueA dyn_LookupPrivilegeValueA
79#define OpenProcessToken dyn_OpenProcessToken
cd44747c
PM
80#define GetConsoleFontSize dyn_GetConsoleFontSize
81#define GetCurrentConsoleFont dyn_GetCurrentConsoleFont
2b008701 82
43499ea3
PA
83typedef BOOL WINAPI (AdjustTokenPrivileges_ftype) (HANDLE, BOOL,
84 PTOKEN_PRIVILEGES,
85 DWORD, PTOKEN_PRIVILEGES,
86 PDWORD);
87static AdjustTokenPrivileges_ftype *AdjustTokenPrivileges;
88
89typedef BOOL WINAPI (DebugActiveProcessStop_ftype) (DWORD);
90static DebugActiveProcessStop_ftype *DebugActiveProcessStop;
91
92typedef BOOL WINAPI (DebugBreakProcess_ftype) (HANDLE);
93static DebugBreakProcess_ftype *DebugBreakProcess;
94
95typedef BOOL WINAPI (DebugSetProcessKillOnExit_ftype) (BOOL);
96static DebugSetProcessKillOnExit_ftype *DebugSetProcessKillOnExit;
97
98typedef BOOL WINAPI (EnumProcessModules_ftype) (HANDLE, HMODULE *, DWORD,
99 LPDWORD);
100static EnumProcessModules_ftype *EnumProcessModules;
101
102typedef BOOL WINAPI (GetModuleInformation_ftype) (HANDLE, HMODULE,
103 LPMODULEINFO, DWORD);
104static GetModuleInformation_ftype *GetModuleInformation;
105
106typedef BOOL WINAPI (LookupPrivilegeValueA_ftype) (LPCSTR, LPCSTR, PLUID);
107static LookupPrivilegeValueA_ftype *LookupPrivilegeValueA;
108
109typedef BOOL WINAPI (OpenProcessToken_ftype) (HANDLE, DWORD, PHANDLE);
110static OpenProcessToken_ftype *OpenProcessToken;
111
112typedef BOOL WINAPI (GetCurrentConsoleFont_ftype) (HANDLE, BOOL,
113 CONSOLE_FONT_INFO *);
114static GetCurrentConsoleFont_ftype *GetCurrentConsoleFont;
115
116typedef COORD WINAPI (GetConsoleFontSize_ftype) (HANDLE, DWORD);
117static GetConsoleFontSize_ftype *GetConsoleFontSize;
2b008701 118
b3c613f2
CF
119#undef STARTUPINFO
120#undef CreateProcess
121#undef GetModuleFileNameEx
122
123#ifndef __CYGWIN__
124# define __PMAX (MAX_PATH + 1)
43499ea3
PA
125 typedef DWORD WINAPI (GetModuleFileNameEx_ftype) (HANDLE, HMODULE, LPSTR, DWORD);
126 static GetModuleFileNameEx_ftype *GetModuleFileNameEx;
b3c613f2
CF
127# define STARTUPINFO STARTUPINFOA
128# define CreateProcess CreateProcessA
129# define GetModuleFileNameEx_name "GetModuleFileNameExA"
130# define bad_GetModuleFileNameEx bad_GetModuleFileNameExA
131#else
132# define __PMAX PATH_MAX
581e13c1 133/* The starting and ending address of the cygwin1.dll text segment. */
b3c613f2
CF
134 static CORE_ADDR cygwin_load_start;
135 static CORE_ADDR cygwin_load_end;
b3c613f2
CF
136# define __USEWIDE
137 typedef wchar_t cygwin_buf_t;
43499ea3
PA
138 typedef DWORD WINAPI (GetModuleFileNameEx_ftype) (HANDLE, HMODULE,
139 LPWSTR, DWORD);
140 static GetModuleFileNameEx_ftype *GetModuleFileNameEx;
b3c613f2
CF
141# define STARTUPINFO STARTUPINFOW
142# define CreateProcess CreateProcessW
143# define GetModuleFileNameEx_name "GetModuleFileNameExW"
144# define bad_GetModuleFileNameEx bad_GetModuleFileNameExW
10325bc5 145#endif
a244bdca 146
581e13c1
MS
147static int have_saved_context; /* True if we've saved context from a
148 cygwin signal. */
149static CONTEXT saved_context; /* Containes the saved context from a
150 cygwin signal. */
a244bdca 151
0714f9bf
SS
152/* If we're not using the old Cygwin header file set, define the
153 following which never should have been in the generic Win32 API
581e13c1 154 headers in the first place since they were our own invention... */
0714f9bf 155#ifndef _GNU_H_WINDOWS_H
9d3789f7 156enum
8e860359
CF
157 {
158 FLAG_TRACE_BIT = 0x100,
8e860359 159 };
0714f9bf
SS
160#endif
161
5851ab76
JB
162#ifndef CONTEXT_EXTENDED_REGISTERS
163/* This macro is only defined on ia32. It only makes sense on this target,
164 so define it as zero if not already defined. */
165#define CONTEXT_EXTENDED_REGISTERS 0
166#endif
167
f0666312
JT
168#define CONTEXT_DEBUGGER_DR CONTEXT_FULL | CONTEXT_FLOATING_POINT \
169 | CONTEXT_SEGMENTS | CONTEXT_DEBUG_REGISTERS \
170 | CONTEXT_EXTENDED_REGISTERS
97da3b20 171
41b4aadc 172static uintptr_t dr[8];
87a45c96
CF
173static int debug_registers_changed;
174static int debug_registers_used;
16d905e2
CF
175
176static int windows_initialization_done;
6537bb24 177#define DR6_CLEAR_VALUE 0xffff0ff0
97da3b20 178
24cdb46e
РИ
179/* The exception thrown by a program to tell the debugger the name of
180 a thread. The exception record contains an ID of a thread and a
181 name to give it. This exception has no documented name, but MSDN
182 dubs it "MS_VC_EXCEPTION" in one code example. */
183#define MS_VC_EXCEPTION 0x406d1388
184
185typedef enum
186{
187 HANDLE_EXCEPTION_UNHANDLED = 0,
188 HANDLE_EXCEPTION_HANDLED,
189 HANDLE_EXCEPTION_IGNORED
190} handle_exception_result;
191
3cee93ac 192/* The string sent by cygwin when it processes a signal.
581e13c1 193 FIXME: This should be in a cygwin include file. */
3929abe9
CF
194#ifndef _CYGWIN_SIGNAL_STRING
195#define _CYGWIN_SIGNAL_STRING "cYgSiGw00f"
196#endif
3cee93ac 197
29fe111d 198#define CHECK(x) check (x, __FILE__,__LINE__)
dfe7f3ac 199#define DEBUG_EXEC(x) if (debug_exec) printf_unfiltered x
4e52d31c
PM
200#define DEBUG_EVENTS(x) if (debug_events) printf_unfiltered x
201#define DEBUG_MEM(x) if (debug_memory) printf_unfiltered x
202#define DEBUG_EXCEPT(x) if (debug_exceptions) printf_unfiltered x
24e60978 203
f6cfb427 204static void windows_interrupt (struct target_ops *self);
02529b48 205static int windows_thread_alive (struct target_ops *, ptid_t);
7d85a9c0 206static void windows_kill_inferior (struct target_ops *);
3cee93ac 207
9bb9e8ad
PM
208static void cygwin_set_dr (int i, CORE_ADDR addr);
209static void cygwin_set_dr7 (unsigned long val);
a961bc18 210static CORE_ADDR cygwin_get_dr (int i);
9bb9e8ad 211static unsigned long cygwin_get_dr6 (void);
a961bc18 212static unsigned long cygwin_get_dr7 (void);
9bb9e8ad 213
a493e3e2 214static enum gdb_signal last_sig = GDB_SIGNAL_0;
581e13c1 215/* Set if a signal was received from the debugged process. */
7393af7c 216
3cee93ac 217/* Thread information structure used to track information that is
6537bb24 218 not available in gdb's thread structure. */
876d1cd7 219typedef struct windows_thread_info_struct
3a4b77d8 220 {
876d1cd7 221 struct windows_thread_info_struct *next;
3a4b77d8
JM
222 DWORD id;
223 HANDLE h;
711e434b 224 CORE_ADDR thread_local_base;
3a4b77d8 225 char *name;
6537bb24 226 int suspended;
3ade5333 227 int reload_context;
3a4b77d8 228 CONTEXT context;
1e37c281 229 STACKFRAME sf;
8e860359 230 }
876d1cd7 231windows_thread_info;
1e37c281 232
876d1cd7 233static windows_thread_info thread_head;
24e60978 234
581e13c1 235/* The process and thread handles for the above context. */
24e60978 236
3cee93ac
CF
237static DEBUG_EVENT current_event; /* The current debug event from
238 WaitForDebugEvent */
239static HANDLE current_process_handle; /* Currently executing process */
876d1cd7 240static windows_thread_info *current_thread; /* Info on currently selected thread */
349b409f 241static DWORD main_thread_id; /* Thread ID of the main thread */
24e60978 242
581e13c1 243/* Counts of things. */
24e60978
SC
244static int exception_count = 0;
245static int event_count = 0;
dfe7f3ac 246static int saw_create;
bf25528d 247static int open_process_used = 0;
24e60978 248
581e13c1 249/* User options. */
24e60978 250static int new_console = 0;
10325bc5 251#ifdef __CYGWIN__
09280ddf 252static int cygwin_exceptions = 0;
10325bc5 253#endif
1e37c281 254static int new_group = 1;
dfe7f3ac
CF
255static int debug_exec = 0; /* show execution */
256static int debug_events = 0; /* show events from kernel */
257static int debug_memory = 0; /* show target memory accesses */
1ef980b9 258static int debug_exceptions = 0; /* show target exceptions */
dfe7f3ac
CF
259static int useshell = 0; /* use shell for subprocesses */
260
7e63b4e4 261/* This vector maps GDB's idea of a register's number into an offset
dc05df57 262 in the windows exception context vector.
24e60978 263
3cee93ac 264 It also contains the bit mask needed to load the register in question.
24e60978 265
7e63b4e4
JB
266 The contents of this table can only be computed by the units
267 that provide CPU-specific support for Windows native debugging.
268 These units should set the table by calling
dc05df57 269 windows_set_context_register_offsets.
7e63b4e4 270
24e60978
SC
271 One day we could read a reg, we could inspect the context we
272 already have loaded, if it doesn't have the bit set that we need,
273 we read that set of registers in using GetThreadContext. If the
581e13c1 274 context already contains what we need, we just unpack it. Then to
24e60978
SC
275 write a register, first we have to ensure that the context contains
276 the other regs of the group, and then we copy the info in and set
581e13c1 277 out bit. */
24e60978 278
7e63b4e4 279static const int *mappings;
d3a09475 280
d40dc7a8
JB
281/* The function to use in order to determine whether a register is
282 a segment register or not. */
283static segment_register_p_ftype *segment_register_p;
284
24e60978 285/* This vector maps the target's idea of an exception (extracted
581e13c1 286 from the DEBUG_EVENT structure) to GDB's idea. */
24e60978
SC
287
288struct xlate_exception
289 {
290 int them;
2ea28649 291 enum gdb_signal us;
24e60978
SC
292 };
293
24e60978
SC
294static const struct xlate_exception
295 xlate[] =
296{
a493e3e2
PA
297 {EXCEPTION_ACCESS_VIOLATION, GDB_SIGNAL_SEGV},
298 {STATUS_STACK_OVERFLOW, GDB_SIGNAL_SEGV},
299 {EXCEPTION_BREAKPOINT, GDB_SIGNAL_TRAP},
300 {DBG_CONTROL_C, GDB_SIGNAL_INT},
301 {EXCEPTION_SINGLE_STEP, GDB_SIGNAL_TRAP},
302 {STATUS_FLOAT_DIVIDE_BY_ZERO, GDB_SIGNAL_FPE},
56db1d67 303 {-1, GDB_SIGNAL_UNKNOWN}};
24e60978 304
7e63b4e4
JB
305/* Set the MAPPINGS static global to OFFSETS.
306 See the description of MAPPINGS for more details. */
307
308void
dc05df57 309windows_set_context_register_offsets (const int *offsets)
7e63b4e4
JB
310{
311 mappings = offsets;
312}
313
d40dc7a8
JB
314/* See windows-nat.h. */
315
316void
317windows_set_segment_register_p (segment_register_p_ftype *fun)
318{
319 segment_register_p = fun;
320}
321
fa4ba8da
PM
322static void
323check (BOOL ok, const char *file, int line)
324{
325 if (!ok)
d50a0ce2
CV
326 printf_filtered ("error return %s:%d was %u\n", file, line,
327 (unsigned) GetLastError ());
fa4ba8da
PM
328}
329
6537bb24
PA
330/* Find a thread record given a thread id. If GET_CONTEXT is not 0,
331 then also retrieve the context for this thread. If GET_CONTEXT is
332 negative, then don't suspend the thread. */
876d1cd7 333static windows_thread_info *
3cee93ac 334thread_rec (DWORD id, int get_context)
24e60978 335{
876d1cd7 336 windows_thread_info *th;
3cee93ac 337
3a4b77d8 338 for (th = &thread_head; (th = th->next) != NULL;)
3cee93ac
CF
339 if (th->id == id)
340 {
6537bb24 341 if (!th->suspended && get_context)
3cee93ac 342 {
8a892701 343 if (get_context > 0 && id != current_event.dwThreadId)
6537bb24
PA
344 {
345 if (SuspendThread (th->h) == (DWORD) -1)
346 {
347 DWORD err = GetLastError ();
22128028 348
17617f2d
EZ
349 /* We get Access Denied (5) when trying to suspend
350 threads that Windows started on behalf of the
351 debuggee, usually when those threads are just
5d9c55d3
JT
352 about to exit.
353 We can get Invalid Handle (6) if the main thread
354 has exited. */
355 if (err != ERROR_INVALID_HANDLE
356 && err != ERROR_ACCESS_DENIED)
17617f2d
EZ
357 warning (_("SuspendThread (tid=0x%x) failed."
358 " (winerr %u)"),
359 (unsigned) id, (unsigned) err);
360 th->suspended = -1;
6537bb24 361 }
17617f2d
EZ
362 else
363 th->suspended = 1;
6537bb24 364 }
3cee93ac 365 else if (get_context < 0)
6537bb24 366 th->suspended = -1;
3ade5333 367 th->reload_context = 1;
3cee93ac
CF
368 }
369 return th;
370 }
371
372 return NULL;
373}
374
2dc38344 375/* Add a thread to the thread list. */
876d1cd7 376static windows_thread_info *
711e434b 377windows_add_thread (ptid_t ptid, HANDLE h, void *tlb)
3cee93ac 378{
876d1cd7 379 windows_thread_info *th;
2dc38344
PA
380 DWORD id;
381
382 gdb_assert (ptid_get_tid (ptid) != 0);
383
384 id = ptid_get_tid (ptid);
3cee93ac
CF
385
386 if ((th = thread_rec (id, FALSE)))
387 return th;
388
876d1cd7 389 th = XCNEW (windows_thread_info);
3cee93ac
CF
390 th->id = id;
391 th->h = h;
711e434b 392 th->thread_local_base = (CORE_ADDR) (uintptr_t) tlb;
3cee93ac
CF
393 th->next = thread_head.next;
394 thread_head.next = th;
2dc38344
PA
395 add_thread (ptid);
396 /* Set the debug registers for the new thread if they are used. */
fa4ba8da
PM
397 if (debug_registers_used)
398 {
399 /* Only change the value of the debug registers. */
400 th->context.ContextFlags = CONTEXT_DEBUG_REGISTERS;
401 CHECK (GetThreadContext (th->h, &th->context));
402 th->context.Dr0 = dr[0];
403 th->context.Dr1 = dr[1];
404 th->context.Dr2 = dr[2];
405 th->context.Dr3 = dr[3];
6537bb24 406 th->context.Dr6 = DR6_CLEAR_VALUE;
fa4ba8da
PM
407 th->context.Dr7 = dr[7];
408 CHECK (SetThreadContext (th->h, &th->context));
409 th->context.ContextFlags = 0;
410 }
3cee93ac 411 return th;
24e60978
SC
412}
413
26c4b26f 414/* Clear out any old thread list and reinitialize it to a
581e13c1 415 pristine state. */
24e60978 416static void
dc05df57 417windows_init_thread_list (void)
24e60978 418{
876d1cd7 419 windows_thread_info *th = &thread_head;
3cee93ac 420
dc05df57 421 DEBUG_EVENTS (("gdb: windows_init_thread_list\n"));
3cee93ac
CF
422 init_thread_list ();
423 while (th->next != NULL)
24e60978 424 {
876d1cd7 425 windows_thread_info *here = th->next;
3cee93ac 426 th->next = here->next;
b8c9b27d 427 xfree (here);
24e60978 428 }
059198c1 429 thread_head.next = NULL;
3cee93ac
CF
430}
431
581e13c1 432/* Delete a thread from the list of threads. */
3cee93ac 433static void
e0ea48a0 434windows_delete_thread (ptid_t ptid, DWORD exit_code)
3cee93ac 435{
876d1cd7 436 windows_thread_info *th;
2dc38344
PA
437 DWORD id;
438
439 gdb_assert (ptid_get_tid (ptid) != 0);
440
441 id = ptid_get_tid (ptid);
3cee93ac
CF
442
443 if (info_verbose)
2dc38344 444 printf_unfiltered ("[Deleting %s]\n", target_pid_to_str (ptid));
e0ea48a0
EZ
445 else if (print_thread_events && id != main_thread_id)
446 printf_unfiltered (_("[%s exited with code %u]\n"),
564eac42 447 target_pid_to_str (ptid), (unsigned) exit_code);
2dc38344 448 delete_thread (ptid);
3cee93ac
CF
449
450 for (th = &thread_head;
451 th->next != NULL && th->next->id != id;
452 th = th->next)
453 continue;
454
455 if (th->next != NULL)
24e60978 456 {
876d1cd7 457 windows_thread_info *here = th->next;
3cee93ac 458 th->next = here->next;
24cdb46e 459 xfree (here->name);
b8c9b27d 460 xfree (here);
24e60978
SC
461 }
462}
463
3cee93ac 464static void
3de88e9a
SM
465do_windows_fetch_inferior_registers (struct regcache *regcache,
466 windows_thread_info *th, int r)
24e60978 467{
3de88e9a 468 char *context_offset = ((char *) &th->context) + mappings[r];
ac7936df 469 struct gdbarch *gdbarch = regcache->arch ();
20a6ec49 470 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1e37c281 471 long l;
6c7de422 472
3de88e9a 473 if (th->reload_context)
3ade5333 474 {
f20c58f5 475#ifdef __CYGWIN__
a244bdca
CF
476 if (have_saved_context)
477 {
581e13c1
MS
478 /* Lie about where the program actually is stopped since
479 cygwin has informed us that we should consider the signal
480 to have occurred at another location which is stored in
481 "saved_context. */
3de88e9a 482 memcpy (&th->context, &saved_context,
581e13c1 483 __COPY_CONTEXT_SIZE);
a244bdca
CF
484 have_saved_context = 0;
485 }
486 else
cb832706 487#endif
a244bdca 488 {
a244bdca 489 th->context.ContextFlags = CONTEXT_DEBUGGER_DR;
17617f2d 490 CHECK (GetThreadContext (th->h, &th->context));
2b008701 491 /* Copy dr values from that thread.
581e13c1
MS
492 But only if there were not modified since last stop.
493 PR gdb/2388 */
88616312
PM
494 if (!debug_registers_changed)
495 {
496 dr[0] = th->context.Dr0;
497 dr[1] = th->context.Dr1;
498 dr[2] = th->context.Dr2;
499 dr[3] = th->context.Dr3;
500 dr[6] = th->context.Dr6;
501 dr[7] = th->context.Dr7;
502 }
a244bdca 503 }
3de88e9a 504 th->reload_context = 0;
3ade5333
CF
505 }
506
20a6ec49 507 if (r == I387_FISEG_REGNUM (tdep))
1e37c281 508 {
8e860359 509 l = *((long *) context_offset) & 0xffff;
56be3814 510 regcache_raw_supply (regcache, r, (char *) &l);
1e37c281 511 }
20a6ec49 512 else if (r == I387_FOP_REGNUM (tdep))
1e37c281 513 {
8e860359 514 l = (*((long *) context_offset) >> 16) & ((1 << 11) - 1);
56be3814 515 regcache_raw_supply (regcache, r, (char *) &l);
1e37c281 516 }
d40dc7a8
JB
517 else if (segment_register_p (r))
518 {
519 /* GDB treats segment registers as 32bit registers, but they are
520 in fact only 16 bits long. Make sure we do not read extra
521 bits from our source buffer. */
522 l = *((long *) context_offset) & 0xffff;
523 regcache_raw_supply (regcache, r, (char *) &l);
524 }
1e37c281 525 else if (r >= 0)
56be3814 526 regcache_raw_supply (regcache, r, context_offset);
3cee93ac 527 else
24e60978 528 {
20a6ec49 529 for (r = 0; r < gdbarch_num_regs (gdbarch); r++)
3de88e9a 530 do_windows_fetch_inferior_registers (regcache, th, r);
24e60978 531 }
3cee93ac
CF
532}
533
534static void
28439f5e
PA
535windows_fetch_inferior_registers (struct target_ops *ops,
536 struct regcache *regcache, int r)
3cee93ac 537{
3de88e9a
SM
538 DWORD pid = ptid_get_tid (regcache_get_ptid (regcache));
539 windows_thread_info *th = thread_rec (pid, TRUE);
540
541 /* Check if TH exists. Windows sometimes uses a non-existent
581e13c1 542 thread id in its events. */
3de88e9a
SM
543 if (th != NULL)
544 do_windows_fetch_inferior_registers (regcache, th, r);
3cee93ac
CF
545}
546
547static void
3de88e9a
SM
548do_windows_store_inferior_registers (const struct regcache *regcache,
549 windows_thread_info *th, int r)
3cee93ac 550{
3de88e9a 551 if (r >= 0)
56be3814 552 regcache_raw_collect (regcache, r,
3de88e9a 553 ((char *) &th->context) + mappings[r]);
24e60978
SC
554 else
555 {
ac7936df 556 for (r = 0; r < gdbarch_num_regs (regcache->arch ()); r++)
3de88e9a 557 do_windows_store_inferior_registers (regcache, th, r);
24e60978
SC
558 }
559}
560
3de88e9a
SM
561/* Store a new register value into the context of the thread tied to
562 REGCACHE. */
3cee93ac 563static void
28439f5e
PA
564windows_store_inferior_registers (struct target_ops *ops,
565 struct regcache *regcache, int r)
3cee93ac 566{
3de88e9a
SM
567 DWORD pid = ptid_get_tid (regcache_get_ptid (regcache));
568 windows_thread_info *th = thread_rec (pid, TRUE);
569
570 /* Check if TH exists. Windows sometimes uses a non-existent
581e13c1 571 thread id in its events. */
3de88e9a
SM
572 if (th != NULL)
573 do_windows_store_inferior_registers (regcache, th, r);
3cee93ac 574}
24e60978 575
450005e7 576/* Encapsulate the information required in a call to
581e13c1 577 symbol_file_add_args. */
8a892701
CF
578struct safe_symbol_file_add_args
579{
580 char *name;
581 int from_tty;
4f7ae6f5 582 section_addr_info *addrs;
8a892701
CF
583 int mainline;
584 int flags;
7c5c87c0 585 struct ui_file *err, *out;
8a892701
CF
586 struct objfile *ret;
587};
588
581e13c1 589/* Maintain a linked list of "so" information. */
d0e449a1 590struct lm_info_windows : public lm_info_base
02e423b9 591{
f8fdb78e 592 LPVOID load_addr = 0;
3ee6f623
CF
593};
594
595static struct so_list solib_start, *solib_end;
02e423b9 596
de1b3c3d 597static struct so_list *
dc05df57 598windows_make_so (const char *name, LPVOID load_addr)
8e860359 599{
3ee6f623 600 struct so_list *so;
d0d0ab16
CV
601 char *p;
602#ifndef __CYGWIN__
b3c613f2
CF
603 char buf[__PMAX];
604 char cwd[__PMAX];
3f8ad85b
CF
605 WIN32_FIND_DATA w32_fd;
606 HANDLE h = FindFirstFile(name, &w32_fd);
3f8ad85b 607
6badb179
CF
608 if (h == INVALID_HANDLE_VALUE)
609 strcpy (buf, name);
610 else
3f8ad85b 611 {
c914e0cc
CF
612 FindClose (h);
613 strcpy (buf, name);
614 if (GetCurrentDirectory (MAX_PATH + 1, cwd))
615 {
616 p = strrchr (buf, '\\');
617 if (p)
618 p[1] = '\0';
619 SetCurrentDirectory (buf);
620 GetFullPathName (w32_fd.cFileName, MAX_PATH, buf, &p);
621 SetCurrentDirectory (cwd);
622 }
3f8ad85b 623 }
3ee6f623
CF
624 if (strcasecmp (buf, "ntdll.dll") == 0)
625 {
626 GetSystemDirectory (buf, sizeof (buf));
627 strcat (buf, "\\ntdll.dll");
628 }
d0d0ab16 629#else
b3c613f2 630 cygwin_buf_t buf[__PMAX];
d0d0ab16 631
b3c613f2 632 buf[0] = 0;
d0d0ab16
CV
633 if (access (name, F_OK) != 0)
634 {
635 if (strcasecmp (name, "ntdll.dll") == 0)
b3c613f2 636#ifdef __USEWIDE
d0d0ab16
CV
637 {
638 GetSystemDirectoryW (buf, sizeof (buf) / sizeof (wchar_t));
639 wcscat (buf, L"\\ntdll.dll");
640 }
b3c613f2
CF
641#else
642 {
643 GetSystemDirectoryA (buf, sizeof (buf) / sizeof (wchar_t));
644 strcat (buf, "\\ntdll.dll");
645 }
646#endif
d0d0ab16
CV
647 }
648#endif
41bf6aca 649 so = XCNEW (struct so_list);
f8fdb78e 650 lm_info_windows *li = new lm_info_windows;
d0e449a1
SM
651 so->lm_info = li;
652 li->load_addr = load_addr;
de1b3c3d 653 strcpy (so->so_original_name, name);
10325bc5
PA
654#ifndef __CYGWIN__
655 strcpy (so->so_name, buf);
656#else
d0d0ab16
CV
657 if (buf[0])
658 cygwin_conv_path (CCP_WIN_W_TO_POSIX, buf, so->so_name,
659 SO_NAME_MAX_PATH_SIZE);
660 else
661 {
60c5c021 662 char *rname = realpath (name, NULL);
d0d0ab16
CV
663 if (rname && strlen (rname) < SO_NAME_MAX_PATH_SIZE)
664 {
665 strcpy (so->so_name, rname);
666 free (rname);
667 }
668 else
669 error (_("dll path too long"));
670 }
de1b3c3d
PA
671 /* Record cygwin1.dll .text start/end. */
672 p = strchr (so->so_name, '\0') - (sizeof ("/cygwin1.dll") - 1);
673 if (p >= so->so_name && strcasecmp (p, "/cygwin1.dll") == 0)
674 {
de1b3c3d
PA
675 asection *text = NULL;
676 CORE_ADDR text_vma;
8e860359 677
192b62ce 678 gdb_bfd_ref_ptr abfd (gdb_bfd_open (so->so_name, "pei-i386", -1));
a244bdca 679
192b62ce 680 if (abfd == NULL)
de1b3c3d
PA
681 return so;
682
192b62ce
TT
683 if (bfd_check_format (abfd.get (), bfd_object))
684 text = bfd_get_section_by_name (abfd.get (), ".text");
de1b3c3d
PA
685
686 if (!text)
192b62ce 687 return so;
de1b3c3d 688
7a9dd1b2 689 /* The symbols in a dll are offset by 0x1000, which is the
de1b3c3d 690 offset from 0 of the first byte in an image - because of the
581e13c1
MS
691 file header and the section alignment. */
692 cygwin_load_start = (CORE_ADDR) (uintptr_t) ((char *)
693 load_addr + 0x1000);
192b62ce
TT
694 cygwin_load_end = cygwin_load_start + bfd_section_size (abfd.get (),
695 text);
de1b3c3d 696 }
10325bc5 697#endif
de1b3c3d
PA
698
699 return so;
8e860359
CF
700}
701
3ee6f623 702static char *
dfe7f3ac
CF
703get_image_name (HANDLE h, void *address, int unicode)
704{
d0d0ab16 705#ifdef __CYGWIN__
b3c613f2 706 static char buf[__PMAX];
d0d0ab16 707#else
b3c613f2 708 static char buf[(2 * __PMAX) + 1];
d0d0ab16 709#endif
dfe7f3ac
CF
710 DWORD size = unicode ? sizeof (WCHAR) : sizeof (char);
711 char *address_ptr;
712 int len = 0;
713 char b[2];
5732a500 714 SIZE_T done;
dfe7f3ac
CF
715
716 /* Attempt to read the name of the dll that was detected.
717 This is documented to work only when actively debugging
581e13c1 718 a program. It will not work for attached processes. */
dfe7f3ac
CF
719 if (address == NULL)
720 return NULL;
721
dfe7f3ac 722 /* See if we could read the address of a string, and that the
581e13c1
MS
723 address isn't null. */
724 if (!ReadProcessMemory (h, address, &address_ptr,
725 sizeof (address_ptr), &done)
6f17862b 726 || done != sizeof (address_ptr) || !address_ptr)
dfe7f3ac
CF
727 return NULL;
728
581e13c1 729 /* Find the length of the string. */
6f17862b
CF
730 while (ReadProcessMemory (h, address_ptr + len++ * size, &b, size, &done)
731 && (b[0] != 0 || b[size - 1] != 0) && done == size)
732 continue;
dfe7f3ac
CF
733
734 if (!unicode)
735 ReadProcessMemory (h, address_ptr, buf, len, &done);
736 else
737 {
738 WCHAR *unicode_address = (WCHAR *) alloca (len * sizeof (WCHAR));
739 ReadProcessMemory (h, address_ptr, unicode_address, len * sizeof (WCHAR),
740 &done);
d0d0ab16 741#ifdef __CYGWIN__
b3c613f2 742 wcstombs (buf, unicode_address, __PMAX);
d0d0ab16
CV
743#else
744 WideCharToMultiByte (CP_ACP, 0, unicode_address, len, buf, sizeof buf,
745 0, 0);
746#endif
dfe7f3ac
CF
747 }
748
749 return buf;
750}
751
1cd9feab
JB
752/* Handle a DLL load event, and return 1.
753
754 This function assumes that this event did not occur during inferior
755 initialization, where their event info may be incomplete (see
756 do_initial_windows_stuff and windows_add_all_dlls for more info
757 on how we handle DLL loading during that phase). */
758
bf469271
PA
759static void
760handle_load_dll ()
24e60978 761{
3a4b77d8 762 LOAD_DLL_DEBUG_INFO *event = &current_event.u.LoadDll;
1cd9feab 763 char *dll_name;
24e60978 764
94481b8c
JB
765 /* Try getting the DLL name via the lpImageName field of the event.
766 Note that Microsoft documents this fields as strictly optional,
767 in the sense that it might be NULL. And the first DLL event in
768 particular is explicitly documented as "likely not pass[ed]"
769 (source: MSDN LOAD_DLL_DEBUG_INFO structure). */
1cd9feab
JB
770 dll_name = get_image_name (current_process_handle,
771 event->lpImageName, event->fUnicode);
3cee93ac 772 if (!dll_name)
bf469271 773 return;
3cee93ac 774
dc05df57 775 solib_end->next = windows_make_so (dll_name, event->lpBaseOfDll);
de1b3c3d 776 solib_end = solib_end->next;
450005e7 777
d0e449a1
SM
778 lm_info_windows *li = (lm_info_windows *) solib_end->lm_info;
779
a74ce742 780 DEBUG_EVENTS (("gdb: Loading dll \"%s\" at %s.\n", solib_end->so_name,
d0e449a1 781 host_address_to_string (li->load_addr)));
450005e7
CF
782}
783
3ee6f623 784static void
dc05df57 785windows_free_so (struct so_list *so)
3ee6f623 786{
f8fdb78e
SM
787 lm_info_windows *li = (lm_info_windows *) so->lm_info;
788
789 delete li;
de1b3c3d 790 xfree (so);
3cb8e7f6
CF
791}
792
3be75f87
JB
793/* Handle a DLL unload event.
794 Return 1 if successful, or zero otherwise.
795
796 This function assumes that this event did not occur during inferior
797 initialization, where their event info may be incomplete (see
798 do_initial_windows_stuff and windows_add_all_dlls for more info
799 on how we handle DLL loading during that phase). */
800
bf469271
PA
801static void
802handle_unload_dll ()
d3ff4a77 803{
d3653bf6 804 LPVOID lpBaseOfDll = current_event.u.UnloadDll.lpBaseOfDll;
3ee6f623 805 struct so_list *so;
d3ff4a77
CF
806
807 for (so = &solib_start; so->next != NULL; so = so->next)
d0e449a1
SM
808 {
809 lm_info_windows *li_next = (lm_info_windows *) so->next->lm_info;
a25cd31f 810
d0e449a1
SM
811 if (li_next->load_addr == lpBaseOfDll)
812 {
813 struct so_list *sodel = so->next;
7488902c 814
d0e449a1
SM
815 so->next = sodel->next;
816 if (!so->next)
817 solib_end = so;
818 DEBUG_EVENTS (("gdb: Unloading dll \"%s\".\n", sodel->so_name));
819
820 windows_free_so (sodel);
bf469271 821 return;
d0e449a1
SM
822 }
823 }
3929abe9 824
ecc13e53
JB
825 /* We did not find any DLL that was previously loaded at this address,
826 so register a complaint. We do not report an error, because we have
827 observed that this may be happening under some circumstances. For
828 instance, running 32bit applications on x64 Windows causes us to receive
829 4 mysterious UNLOAD_DLL_DEBUG_EVENTs during the startup phase (these
830 events are apparently caused by the WOW layer, the interface between
831 32bit and 64bit worlds). */
832 complaint (&symfile_complaints, _("dll starting at %s not found."),
833 host_address_to_string (lpBaseOfDll));
bf469271
PA
834}
835
836/* Call FUNC wrapped in a TRY/CATCH that swallows all GDB
837 exceptions. */
d3ff4a77 838
bf469271
PA
839static void
840catch_errors (void (*func) ())
841{
842 TRY
843 {
844 func ();
845 }
846 CATCH (ex, RETURN_MASK_ALL)
847 {
848 exception_print (gdb_stderr, ex);
849 }
850 END_CATCH
d3ff4a77
CF
851}
852
581e13c1 853/* Clear list of loaded DLLs. */
3ee6f623 854static void
dc05df57 855windows_clear_solib (void)
450005e7 856{
450005e7
CF
857 solib_start.next = NULL;
858 solib_end = &solib_start;
450005e7 859}
295732ea 860
463888ab 861static void
0b39b52e 862signal_event_command (const char *args, int from_tty)
463888ab
РИ
863{
864 uintptr_t event_id = 0;
865 char *endargs = NULL;
866
867 if (args == NULL)
868 error (_("signal-event requires an argument (integer event id)"));
869
870 event_id = strtoumax (args, &endargs, 10);
871
872 if ((errno == ERANGE) || (event_id == 0) || (event_id > UINTPTR_MAX) ||
873 ((HANDLE) event_id == INVALID_HANDLE_VALUE))
874 error (_("Failed to convert `%s' to event id"), args);
875
876 SetEvent ((HANDLE) event_id);
877 CloseHandle ((HANDLE) event_id);
878}
879
3cee93ac
CF
880/* Handle DEBUG_STRING output from child process.
881 Cygwin prepends its messages with a "cygwin:". Interpret this as
581e13c1 882 a Cygwin signal. Otherwise just print the string as a warning. */
3cee93ac
CF
883static int
884handle_output_debug_string (struct target_waitstatus *ourstatus)
885{
e83e4e24 886 gdb::unique_xmalloc_ptr<char> s;
a244bdca 887 int retval = 0;
3cee93ac
CF
888
889 if (!target_read_string
2c647436 890 ((CORE_ADDR) (uintptr_t) current_event.u.DebugString.lpDebugStringData,
e83e4e24
TT
891 &s, 1024, 0)
892 || !s || !*(s.get ()))
a244bdca 893 /* nothing to do */;
e83e4e24 894 else if (!startswith (s.get (), _CYGWIN_SIGNAL_STRING))
3cee93ac 895 {
10325bc5 896#ifdef __CYGWIN__
e83e4e24 897 if (!startswith (s.get (), "cYg"))
10325bc5 898#endif
040ea00b 899 {
e83e4e24 900 char *p = strchr (s.get (), '\0');
040ea00b 901
e83e4e24 902 if (p > s.get () && *--p == '\n')
040ea00b 903 *p = '\0';
e83e4e24 904 warning (("%s"), s.get ());
040ea00b 905 }
3cee93ac 906 }
f20c58f5 907#ifdef __CYGWIN__
d3a09475 908 else
3cee93ac 909 {
581e13c1
MS
910 /* Got a cygwin signal marker. A cygwin signal is followed by
911 the signal number itself and then optionally followed by the
912 thread id and address to saved context within the DLL. If
913 these are supplied, then the given thread is assumed to have
914 issued the signal and the context from the thread is assumed
915 to be stored at the given address in the inferior. Tell gdb
916 to treat this like a real signal. */
3cee93ac 917 char *p;
e83e4e24 918 int sig = strtol (s.get () + sizeof (_CYGWIN_SIGNAL_STRING) - 1, &p, 0);
0ae534d2 919 gdb_signal gotasig = gdb_signal_from_host (sig);
c62fa0e2 920
0714f9bf
SS
921 ourstatus->value.sig = gotasig;
922 if (gotasig)
a244bdca
CF
923 {
924 LPCVOID x;
2c15ef43 925 SIZE_T n;
c62fa0e2 926
a244bdca
CF
927 ourstatus->kind = TARGET_WAITKIND_STOPPED;
928 retval = strtoul (p, &p, 0);
929 if (!retval)
930 retval = main_thread_id;
40653b35 931 else if ((x = (LPCVOID) (uintptr_t) strtoull (p, NULL, 0))
a244bdca 932 && ReadProcessMemory (current_process_handle, x,
581e13c1
MS
933 &saved_context,
934 __COPY_CONTEXT_SIZE, &n)
a244bdca
CF
935 && n == __COPY_CONTEXT_SIZE)
936 have_saved_context = 1;
a244bdca 937 }
3cee93ac 938 }
cb832706 939#endif
3cee93ac 940
a244bdca 941 return retval;
3cee93ac 942}
24e60978 943
c1748f97
PM
944static int
945display_selector (HANDLE thread, DWORD sel)
946{
947 LDT_ENTRY info;
948 if (GetThreadSelectorEntry (thread, sel, &info))
949 {
950 int base, limit;
d50a0ce2 951 printf_filtered ("0x%03x: ", (unsigned) sel);
c1748f97 952 if (!info.HighWord.Bits.Pres)
baa93fa6
CF
953 {
954 puts_filtered ("Segment not present\n");
955 return 0;
956 }
c1748f97
PM
957 base = (info.HighWord.Bits.BaseHi << 24) +
958 (info.HighWord.Bits.BaseMid << 16)
959 + info.BaseLow;
960 limit = (info.HighWord.Bits.LimitHi << 16) + info.LimitLow;
961 if (info.HighWord.Bits.Granularity)
caad7706 962 limit = (limit << 12) | 0xfff;
c1748f97
PM
963 printf_filtered ("base=0x%08x limit=0x%08x", base, limit);
964 if (info.HighWord.Bits.Default_Big)
baa93fa6 965 puts_filtered(" 32-bit ");
c1748f97 966 else
baa93fa6 967 puts_filtered(" 16-bit ");
c1748f97
PM
968 switch ((info.HighWord.Bits.Type & 0xf) >> 1)
969 {
970 case 0:
baa93fa6
CF
971 puts_filtered ("Data (Read-Only, Exp-up");
972 break;
c1748f97 973 case 1:
baa93fa6
CF
974 puts_filtered ("Data (Read/Write, Exp-up");
975 break;
c1748f97 976 case 2:
baa93fa6
CF
977 puts_filtered ("Unused segment (");
978 break;
c1748f97 979 case 3:
baa93fa6
CF
980 puts_filtered ("Data (Read/Write, Exp-down");
981 break;
c1748f97 982 case 4:
baa93fa6
CF
983 puts_filtered ("Code (Exec-Only, N.Conf");
984 break;
c1748f97 985 case 5:
baa93fa6 986 puts_filtered ("Code (Exec/Read, N.Conf");
c1748f97
PM
987 break;
988 case 6:
baa93fa6 989 puts_filtered ("Code (Exec-Only, Conf");
c1748f97
PM
990 break;
991 case 7:
baa93fa6 992 puts_filtered ("Code (Exec/Read, Conf");
c1748f97
PM
993 break;
994 default:
995 printf_filtered ("Unknown type 0x%x",info.HighWord.Bits.Type);
996 }
997 if ((info.HighWord.Bits.Type & 0x1) == 0)
baa93fa6 998 puts_filtered(", N.Acc");
c1748f97
PM
999 puts_filtered (")\n");
1000 if ((info.HighWord.Bits.Type & 0x10) == 0)
1001 puts_filtered("System selector ");
1002 printf_filtered ("Priviledge level = %d. ", info.HighWord.Bits.Dpl);
1003 if (info.HighWord.Bits.Granularity)
baa93fa6 1004 puts_filtered ("Page granular.\n");
c1748f97
PM
1005 else
1006 puts_filtered ("Byte granular.\n");
1007 return 1;
1008 }
1009 else
1010 {
5572ce1f
PM
1011 DWORD err = GetLastError ();
1012 if (err == ERROR_NOT_SUPPORTED)
1013 printf_filtered ("Function not supported\n");
1014 else
d50a0ce2 1015 printf_filtered ("Invalid selector 0x%x.\n", (unsigned) sel);
c1748f97
PM
1016 return 0;
1017 }
1018}
1019
1020static void
5fed81ff 1021display_selectors (const char * args, int from_tty)
c1748f97
PM
1022{
1023 if (!current_thread)
1024 {
1025 puts_filtered ("Impossible to display selectors now.\n");
1026 return;
1027 }
1028 if (!args)
1029 {
1030
1031 puts_filtered ("Selector $cs\n");
1032 display_selector (current_thread->h,
baa93fa6 1033 current_thread->context.SegCs);
c1748f97
PM
1034 puts_filtered ("Selector $ds\n");
1035 display_selector (current_thread->h,
baa93fa6 1036 current_thread->context.SegDs);
c1748f97
PM
1037 puts_filtered ("Selector $es\n");
1038 display_selector (current_thread->h,
baa93fa6 1039 current_thread->context.SegEs);
c1748f97
PM
1040 puts_filtered ("Selector $ss\n");
1041 display_selector (current_thread->h,
baa93fa6 1042 current_thread->context.SegSs);
c1748f97
PM
1043 puts_filtered ("Selector $fs\n");
1044 display_selector (current_thread->h,
1045 current_thread->context.SegFs);
1046 puts_filtered ("Selector $gs\n");
1047 display_selector (current_thread->h,
baa93fa6 1048 current_thread->context.SegGs);
c1748f97
PM
1049 }
1050 else
1051 {
1052 int sel;
1053 sel = parse_and_eval_long (args);
1054 printf_filtered ("Selector \"%s\"\n",args);
1055 display_selector (current_thread->h, sel);
1056 }
1057}
1058
7393af7c 1059#define DEBUG_EXCEPTION_SIMPLE(x) if (debug_exceptions) \
a74ce742
PM
1060 printf_unfiltered ("gdb: Target exception %s at %s\n", x, \
1061 host_address_to_string (\
1062 current_event.u.Exception.ExceptionRecord.ExceptionAddress))
7393af7c 1063
24cdb46e 1064static handle_exception_result
450005e7 1065handle_exception (struct target_waitstatus *ourstatus)
24e60978 1066{
24cdb46e
РИ
1067 EXCEPTION_RECORD *rec = &current_event.u.Exception.ExceptionRecord;
1068 DWORD code = rec->ExceptionCode;
1069 handle_exception_result result = HANDLE_EXCEPTION_HANDLED;
3cee93ac 1070
29fe111d 1071 ourstatus->kind = TARGET_WAITKIND_STOPPED;
8a892701 1072
581e13c1 1073 /* Record the context of the current thread. */
c25b7cce 1074 thread_rec (current_event.dwThreadId, -1);
24e60978 1075
29fe111d 1076 switch (code)
24e60978 1077 {
1ef980b9 1078 case EXCEPTION_ACCESS_VIOLATION:
7393af7c 1079 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ACCESS_VIOLATION");
a493e3e2 1080 ourstatus->value.sig = GDB_SIGNAL_SEGV;
10325bc5 1081#ifdef __CYGWIN__
8da8e0b3 1082 {
581e13c1
MS
1083 /* See if the access violation happened within the cygwin DLL
1084 itself. Cygwin uses a kind of exception handling to deal
1085 with passed-in invalid addresses. gdb should not treat
1086 these as real SEGVs since they will be silently handled by
1087 cygwin. A real SEGV will (theoretically) be caught by
1088 cygwin later in the process and will be sent as a
1089 cygwin-specific-signal. So, ignore SEGVs if they show up
1090 within the text segment of the DLL itself. */
2c02bd72 1091 const char *fn;
24cdb46e 1092 CORE_ADDR addr = (CORE_ADDR) (uintptr_t) rec->ExceptionAddress;
581e13c1
MS
1093
1094 if ((!cygwin_exceptions && (addr >= cygwin_load_start
1095 && addr < cygwin_load_end))
a244bdca 1096 || (find_pc_partial_function (addr, &fn, NULL, NULL)
61012eef 1097 && startswith (fn, "KERNEL32!IsBad")))
24cdb46e 1098 return HANDLE_EXCEPTION_UNHANDLED;
8da8e0b3 1099 }
10325bc5 1100#endif
7393af7c
PM
1101 break;
1102 case STATUS_STACK_OVERFLOW:
1103 DEBUG_EXCEPTION_SIMPLE ("STATUS_STACK_OVERFLOW");
a493e3e2 1104 ourstatus->value.sig = GDB_SIGNAL_SEGV;
7393af7c
PM
1105 break;
1106 case STATUS_FLOAT_DENORMAL_OPERAND:
1107 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DENORMAL_OPERAND");
a493e3e2 1108 ourstatus->value.sig = GDB_SIGNAL_FPE;
7393af7c
PM
1109 break;
1110 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
1111 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ARRAY_BOUNDS_EXCEEDED");
a493e3e2 1112 ourstatus->value.sig = GDB_SIGNAL_FPE;
7393af7c
PM
1113 break;
1114 case STATUS_FLOAT_INEXACT_RESULT:
1115 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INEXACT_RESULT");
a493e3e2 1116 ourstatus->value.sig = GDB_SIGNAL_FPE;
7393af7c
PM
1117 break;
1118 case STATUS_FLOAT_INVALID_OPERATION:
1119 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INVALID_OPERATION");
a493e3e2 1120 ourstatus->value.sig = GDB_SIGNAL_FPE;
7393af7c
PM
1121 break;
1122 case STATUS_FLOAT_OVERFLOW:
1123 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_OVERFLOW");
a493e3e2 1124 ourstatus->value.sig = GDB_SIGNAL_FPE;
7393af7c
PM
1125 break;
1126 case STATUS_FLOAT_STACK_CHECK:
1127 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_STACK_CHECK");
a493e3e2 1128 ourstatus->value.sig = GDB_SIGNAL_FPE;
1ef980b9 1129 break;
3b7c8b74 1130 case STATUS_FLOAT_UNDERFLOW:
7393af7c 1131 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_UNDERFLOW");
a493e3e2 1132 ourstatus->value.sig = GDB_SIGNAL_FPE;
7393af7c 1133 break;
3b7c8b74 1134 case STATUS_FLOAT_DIVIDE_BY_ZERO:
7393af7c 1135 DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DIVIDE_BY_ZERO");
a493e3e2 1136 ourstatus->value.sig = GDB_SIGNAL_FPE;
7393af7c 1137 break;
3b7c8b74 1138 case STATUS_INTEGER_DIVIDE_BY_ZERO:
7393af7c 1139 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_DIVIDE_BY_ZERO");
a493e3e2 1140 ourstatus->value.sig = GDB_SIGNAL_FPE;
3b7c8b74 1141 break;
7393af7c
PM
1142 case STATUS_INTEGER_OVERFLOW:
1143 DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_OVERFLOW");
a493e3e2 1144 ourstatus->value.sig = GDB_SIGNAL_FPE;
1ef980b9
SC
1145 break;
1146 case EXCEPTION_BREAKPOINT:
7393af7c 1147 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_BREAKPOINT");
a493e3e2 1148 ourstatus->value.sig = GDB_SIGNAL_TRAP;
1ef980b9
SC
1149 break;
1150 case DBG_CONTROL_C:
7393af7c 1151 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_C");
a493e3e2 1152 ourstatus->value.sig = GDB_SIGNAL_INT;
5b421780
PM
1153 break;
1154 case DBG_CONTROL_BREAK:
7393af7c 1155 DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_BREAK");
a493e3e2 1156 ourstatus->value.sig = GDB_SIGNAL_INT;
1ef980b9
SC
1157 break;
1158 case EXCEPTION_SINGLE_STEP:
7393af7c 1159 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_SINGLE_STEP");
a493e3e2 1160 ourstatus->value.sig = GDB_SIGNAL_TRAP;
1ef980b9 1161 break;
8227c82d 1162 case EXCEPTION_ILLEGAL_INSTRUCTION:
7393af7c 1163 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ILLEGAL_INSTRUCTION");
a493e3e2 1164 ourstatus->value.sig = GDB_SIGNAL_ILL;
7393af7c
PM
1165 break;
1166 case EXCEPTION_PRIV_INSTRUCTION:
1167 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_PRIV_INSTRUCTION");
a493e3e2 1168 ourstatus->value.sig = GDB_SIGNAL_ILL;
7393af7c
PM
1169 break;
1170 case EXCEPTION_NONCONTINUABLE_EXCEPTION:
1171 DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_NONCONTINUABLE_EXCEPTION");
a493e3e2 1172 ourstatus->value.sig = GDB_SIGNAL_ILL;
8227c82d 1173 break;
24cdb46e
РИ
1174 case MS_VC_EXCEPTION:
1175 if (rec->NumberParameters >= 3
1176 && (rec->ExceptionInformation[0] & 0xffffffff) == 0x1000)
1177 {
1178 DWORD named_thread_id;
1179 windows_thread_info *named_thread;
1180 CORE_ADDR thread_name_target;
1181
1182 DEBUG_EXCEPTION_SIMPLE ("MS_VC_EXCEPTION");
1183
1184 thread_name_target = rec->ExceptionInformation[1];
1185 named_thread_id = (DWORD) (0xffffffff & rec->ExceptionInformation[2]);
1186
1187 if (named_thread_id == (DWORD) -1)
1188 named_thread_id = current_event.dwThreadId;
1189
1190 named_thread = thread_rec (named_thread_id, 0);
1191 if (named_thread != NULL)
1192 {
1193 int thread_name_len;
e83e4e24 1194 gdb::unique_xmalloc_ptr<char> thread_name;
24cdb46e
РИ
1195
1196 thread_name_len = target_read_string (thread_name_target,
1197 &thread_name, 1025, NULL);
1198 if (thread_name_len > 0)
1199 {
e83e4e24 1200 thread_name.get ()[thread_name_len - 1] = '\0';
24cdb46e 1201 xfree (named_thread->name);
e83e4e24 1202 named_thread->name = thread_name.release ();
24cdb46e 1203 }
24cdb46e
РИ
1204 }
1205 ourstatus->value.sig = GDB_SIGNAL_TRAP;
1206 result = HANDLE_EXCEPTION_IGNORED;
1207 break;
1208 }
1209 /* treat improperly formed exception as unknown, fallthrough */
1ef980b9 1210 default:
581e13c1 1211 /* Treat unhandled first chance exceptions specially. */
02e423b9 1212 if (current_event.u.Exception.dwFirstChance)
24cdb46e 1213 return HANDLE_EXCEPTION_UNHANDLED;
d50a0ce2
CV
1214 printf_unfiltered ("gdb: unknown target exception 0x%08x at %s\n",
1215 (unsigned) current_event.u.Exception.ExceptionRecord.ExceptionCode,
a74ce742
PM
1216 host_address_to_string (
1217 current_event.u.Exception.ExceptionRecord.ExceptionAddress));
a493e3e2 1218 ourstatus->value.sig = GDB_SIGNAL_UNKNOWN;
1ef980b9 1219 break;
24e60978 1220 }
24e60978 1221 exception_count++;
7393af7c 1222 last_sig = ourstatus->value.sig;
24cdb46e 1223 return result;
24e60978
SC
1224}
1225
17617f2d
EZ
1226/* Resume thread specified by ID, or all artificially suspended
1227 threads, if we are continuing execution. KILLED non-zero means we
1228 have killed the inferior, so we should ignore weird errors due to
1229 threads shutting down. */
3cee93ac 1230static BOOL
17617f2d 1231windows_continue (DWORD continue_status, int id, int killed)
3cee93ac
CF
1232{
1233 int i;
876d1cd7 1234 windows_thread_info *th;
3cee93ac
CF
1235 BOOL res;
1236
0c3d84be 1237 DEBUG_EVENTS (("ContinueDebugEvent (cpid=%d, ctid=0x%x, %s);\n",
d50a0ce2
CV
1238 (unsigned) current_event.dwProcessId,
1239 (unsigned) current_event.dwThreadId,
dfe7f3ac 1240 continue_status == DBG_CONTINUE ?
7393af7c 1241 "DBG_CONTINUE" : "DBG_EXCEPTION_NOT_HANDLED"));
6537bb24
PA
1242
1243 for (th = &thread_head; (th = th->next) != NULL;)
1244 if ((id == -1 || id == (int) th->id)
1245 && th->suspended)
1246 {
1247 if (debug_registers_changed)
1248 {
1249 th->context.ContextFlags |= CONTEXT_DEBUG_REGISTERS;
1250 th->context.Dr0 = dr[0];
1251 th->context.Dr1 = dr[1];
1252 th->context.Dr2 = dr[2];
1253 th->context.Dr3 = dr[3];
1254 th->context.Dr6 = DR6_CLEAR_VALUE;
1255 th->context.Dr7 = dr[7];
1256 }
1257 if (th->context.ContextFlags)
1258 {
17617f2d
EZ
1259 DWORD ec = 0;
1260
1261 if (GetExitCodeThread (th->h, &ec)
1262 && ec == STILL_ACTIVE)
1263 {
1264 BOOL status = SetThreadContext (th->h, &th->context);
1265
1266 if (!killed)
1267 CHECK (status);
1268 }
6537bb24
PA
1269 th->context.ContextFlags = 0;
1270 }
1271 if (th->suspended > 0)
1272 (void) ResumeThread (th->h);
1273 th->suspended = 0;
1274 }
1275
0714f9bf
SS
1276 res = ContinueDebugEvent (current_event.dwProcessId,
1277 current_event.dwThreadId,
1278 continue_status);
3cee93ac 1279
68ffc902
JT
1280 if (!res)
1281 error (_("Failed to resume program execution"
1282 " (ContinueDebugEvent failed, error %u)"),
1283 (unsigned int) GetLastError ());
1284
fa4ba8da 1285 debug_registers_changed = 0;
3cee93ac
CF
1286 return res;
1287}
1288
d6dc8049
CF
1289/* Called in pathological case where Windows fails to send a
1290 CREATE_PROCESS_DEBUG_EVENT after an attach. */
3ee6f623 1291static DWORD
5439edaa 1292fake_create_process (void)
3ade5333
CF
1293{
1294 current_process_handle = OpenProcess (PROCESS_ALL_ACCESS, FALSE,
1295 current_event.dwProcessId);
bf25528d
CF
1296 if (current_process_handle != NULL)
1297 open_process_used = 1;
1298 else
1299 {
d50a0ce2
CV
1300 error (_("OpenProcess call failed, GetLastError = %u"),
1301 (unsigned) GetLastError ());
bf25528d
CF
1302 /* We can not debug anything in that case. */
1303 }
3ade5333 1304 main_thread_id = current_event.dwThreadId;
711e434b
PM
1305 current_thread = windows_add_thread (
1306 ptid_build (current_event.dwProcessId, 0,
1307 current_event.dwThreadId),
1308 current_event.u.CreateThread.hThread,
1309 current_event.u.CreateThread.lpThreadLocalBase);
3ade5333
CF
1310 return main_thread_id;
1311}
1312
a244bdca 1313static void
28439f5e 1314windows_resume (struct target_ops *ops,
2ea28649 1315 ptid_t ptid, int step, enum gdb_signal sig)
a244bdca 1316{
876d1cd7 1317 windows_thread_info *th;
a244bdca
CF
1318 DWORD continue_status = DBG_CONTINUE;
1319
2dc38344
PA
1320 /* A specific PTID means `step only this thread id'. */
1321 int resume_all = ptid_equal (ptid, minus_one_ptid);
1322
1323 /* If we're continuing all threads, it's the current inferior that
1324 should be handled specially. */
1325 if (resume_all)
1326 ptid = inferior_ptid;
a244bdca 1327
a493e3e2 1328 if (sig != GDB_SIGNAL_0)
a244bdca
CF
1329 {
1330 if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
1331 {
1332 DEBUG_EXCEPT(("Cannot continue with signal %d here.\n",sig));
1333 }
1334 else if (sig == last_sig)
1335 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1336 else
1337#if 0
1338/* This code does not seem to work, because
1339 the kernel does probably not consider changes in the ExceptionRecord
1340 structure when passing the exception to the inferior.
1341 Note that this seems possible in the exception handler itself. */
1342 {
1343 int i;
1344 for (i = 0; xlate[i].them != -1; i++)
1345 if (xlate[i].us == sig)
1346 {
581e13c1
MS
1347 current_event.u.Exception.ExceptionRecord.ExceptionCode
1348 = xlate[i].them;
a244bdca
CF
1349 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1350 break;
1351 }
1352 if (continue_status == DBG_CONTINUE)
1353 {
1354 DEBUG_EXCEPT(("Cannot continue with signal %d.\n",sig));
1355 }
1356 }
1357#endif
23942819 1358 DEBUG_EXCEPT(("Can only continue with received signal %d.\n",
a244bdca
CF
1359 last_sig));
1360 }
1361
a493e3e2 1362 last_sig = GDB_SIGNAL_0;
a244bdca 1363
dc05df57 1364 DEBUG_EXEC (("gdb: windows_resume (pid=%d, tid=%ld, step=%d, sig=%d);\n",
2dc38344 1365 ptid_get_pid (ptid), ptid_get_tid (ptid), step, sig));
a244bdca 1366
581e13c1 1367 /* Get context for currently selected thread. */
2dc38344 1368 th = thread_rec (ptid_get_tid (inferior_ptid), FALSE);
a244bdca
CF
1369 if (th)
1370 {
1371 if (step)
1372 {
581e13c1 1373 /* Single step by setting t bit. */
a97b0ac8 1374 struct regcache *regcache = get_current_regcache ();
ac7936df 1375 struct gdbarch *gdbarch = regcache->arch ();
a97b0ac8
UW
1376 windows_fetch_inferior_registers (ops, regcache,
1377 gdbarch_ps_regnum (gdbarch));
a244bdca
CF
1378 th->context.EFlags |= FLAG_TRACE_BIT;
1379 }
1380
1381 if (th->context.ContextFlags)
1382 {
1383 if (debug_registers_changed)
1384 {
1385 th->context.Dr0 = dr[0];
1386 th->context.Dr1 = dr[1];
1387 th->context.Dr2 = dr[2];
1388 th->context.Dr3 = dr[3];
6537bb24 1389 th->context.Dr6 = DR6_CLEAR_VALUE;
a244bdca
CF
1390 th->context.Dr7 = dr[7];
1391 }
1392 CHECK (SetThreadContext (th->h, &th->context));
1393 th->context.ContextFlags = 0;
1394 }
1395 }
1396
1397 /* Allow continuing with the same signal that interrupted us.
581e13c1 1398 Otherwise complain. */
a244bdca 1399
2dc38344 1400 if (resume_all)
17617f2d 1401 windows_continue (continue_status, -1, 0);
2dc38344 1402 else
17617f2d 1403 windows_continue (continue_status, ptid_get_tid (ptid), 0);
a244bdca
CF
1404}
1405
695de547
CF
1406/* Ctrl-C handler used when the inferior is not run in the same console. The
1407 handler is in charge of interrupting the inferior using DebugBreakProcess.
1408 Note that this function is not available prior to Windows XP. In this case
1409 we emit a warning. */
d603d4b3 1410static BOOL WINAPI
695de547
CF
1411ctrl_c_handler (DWORD event_type)
1412{
1413 const int attach_flag = current_inferior ()->attach_flag;
1414
bb0613a5
PM
1415 /* Only handle Ctrl-C and Ctrl-Break events. Ignore others. */
1416 if (event_type != CTRL_C_EVENT && event_type != CTRL_BREAK_EVENT)
695de547
CF
1417 return FALSE;
1418
1419 /* If the inferior and the debugger share the same console, do nothing as
1420 the inferior has also received the Ctrl-C event. */
1421 if (!new_console && !attach_flag)
1422 return TRUE;
1423
1424 if (!DebugBreakProcess (current_process_handle))
581e13c1
MS
1425 warning (_("Could not interrupt program. "
1426 "Press Ctrl-c in the program console."));
695de547
CF
1427
1428 /* Return true to tell that Ctrl-C has been handled. */
1429 return TRUE;
1430}
1431
e6ad66bd
JT
1432/* Get the next event from the child. Returns a non-zero thread id if the event
1433 requires handling by WFI (or whatever). */
1e37c281 1434static int
28439f5e
PA
1435get_windows_debug_event (struct target_ops *ops,
1436 int pid, struct target_waitstatus *ourstatus)
1e37c281
JM
1437{
1438 BOOL debug_event;
8a892701 1439 DWORD continue_status, event_code;
876d1cd7
YZ
1440 windows_thread_info *th;
1441 static windows_thread_info dummy_thread_info;
e6ad66bd 1442 DWORD thread_id = 0;
1e37c281 1443
a493e3e2 1444 last_sig = GDB_SIGNAL_0;
9d3789f7 1445
8a892701 1446 if (!(debug_event = WaitForDebugEvent (&current_event, 1000)))
29fe111d 1447 goto out;
1e37c281
JM
1448
1449 event_count++;
1450 continue_status = DBG_CONTINUE;
1e37c281 1451
8a892701 1452 event_code = current_event.dwDebugEventCode;
450005e7 1453 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
87a45c96 1454 th = NULL;
a244bdca 1455 have_saved_context = 0;
8a892701
CF
1456
1457 switch (event_code)
1e37c281
JM
1458 {
1459 case CREATE_THREAD_DEBUG_EVENT:
0c3d84be 1460 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
8a892701
CF
1461 (unsigned) current_event.dwProcessId,
1462 (unsigned) current_event.dwThreadId,
1463 "CREATE_THREAD_DEBUG_EVENT"));
dfe7f3ac 1464 if (saw_create != 1)
3ade5333 1465 {
181e7f93
PA
1466 struct inferior *inf;
1467 inf = find_inferior_pid (current_event.dwProcessId);
1468 if (!saw_create && inf->attach_flag)
3ade5333 1469 {
d6dc8049
CF
1470 /* Kludge around a Windows bug where first event is a create
1471 thread event. Caused when attached process does not have
581e13c1 1472 a main thread. */
e6ad66bd
JT
1473 thread_id = fake_create_process ();
1474 if (thread_id)
181e7f93 1475 saw_create++;
3ade5333
CF
1476 }
1477 break;
1478 }
581e13c1 1479 /* Record the existence of this thread. */
e6ad66bd 1480 thread_id = current_event.dwThreadId;
dc05df57 1481 th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
2dc38344 1482 current_event.dwThreadId),
711e434b
PM
1483 current_event.u.CreateThread.hThread,
1484 current_event.u.CreateThread.lpThreadLocalBase);
1485
1e37c281
JM
1486 break;
1487
1488 case EXIT_THREAD_DEBUG_EVENT:
0c3d84be 1489 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
8a892701
CF
1490 (unsigned) current_event.dwProcessId,
1491 (unsigned) current_event.dwThreadId,
1492 "EXIT_THREAD_DEBUG_EVENT"));
b3c613f2 1493
87a45c96
CF
1494 if (current_event.dwThreadId != main_thread_id)
1495 {
dc05df57 1496 windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
e0ea48a0
EZ
1497 current_event.dwThreadId),
1498 current_event.u.ExitThread.dwExitCode);
87a45c96
CF
1499 th = &dummy_thread_info;
1500 }
1e37c281
JM
1501 break;
1502
1503 case CREATE_PROCESS_DEBUG_EVENT:
0c3d84be 1504 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
8a892701
CF
1505 (unsigned) current_event.dwProcessId,
1506 (unsigned) current_event.dwThreadId,
1507 "CREATE_PROCESS_DEBUG_EVENT"));
700b351b 1508 CloseHandle (current_event.u.CreateProcessInfo.hFile);
dfe7f3ac 1509 if (++saw_create != 1)
bf25528d 1510 break;
1e37c281 1511
dfe7f3ac 1512 current_process_handle = current_event.u.CreateProcessInfo.hProcess;
87a45c96 1513 if (main_thread_id)
695de547 1514 windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
e0ea48a0
EZ
1515 main_thread_id),
1516 0);
9d3789f7 1517 main_thread_id = current_event.dwThreadId;
581e13c1 1518 /* Add the main thread. */
dc05df57 1519 th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
695de547 1520 current_event.dwThreadId),
711e434b
PM
1521 current_event.u.CreateProcessInfo.hThread,
1522 current_event.u.CreateProcessInfo.lpThreadLocalBase);
e6ad66bd 1523 thread_id = current_event.dwThreadId;
1e37c281
JM
1524 break;
1525
1526 case EXIT_PROCESS_DEBUG_EVENT:
0c3d84be 1527 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
8a892701
CF
1528 (unsigned) current_event.dwProcessId,
1529 (unsigned) current_event.dwThreadId,
1530 "EXIT_PROCESS_DEBUG_EVENT"));
16d905e2
CF
1531 if (!windows_initialization_done)
1532 {
223ffa71 1533 target_terminal::ours ();
bc1e6c81 1534 target_mourn_inferior (inferior_ptid);
16d905e2
CF
1535 error (_("During startup program exited with code 0x%x."),
1536 (unsigned int) current_event.u.ExitProcess.dwExitCode);
1537 }
1538 else if (saw_create == 1)
1539 {
1540 ourstatus->kind = TARGET_WAITKIND_EXITED;
1541 ourstatus->value.integer = current_event.u.ExitProcess.dwExitCode;
e6ad66bd 1542 thread_id = main_thread_id;
16d905e2 1543 }
8a892701 1544 break;
1e37c281
JM
1545
1546 case LOAD_DLL_DEBUG_EVENT:
0c3d84be 1547 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
8a892701
CF
1548 (unsigned) current_event.dwProcessId,
1549 (unsigned) current_event.dwThreadId,
1550 "LOAD_DLL_DEBUG_EVENT"));
700b351b 1551 CloseHandle (current_event.u.LoadDll.hFile);
ea39ad35 1552 if (saw_create != 1 || ! windows_initialization_done)
dfe7f3ac 1553 break;
bf469271 1554 catch_errors (handle_load_dll);
450005e7
CF
1555 ourstatus->kind = TARGET_WAITKIND_LOADED;
1556 ourstatus->value.integer = 0;
e6ad66bd 1557 thread_id = main_thread_id;
1e37c281
JM
1558 break;
1559
1560 case UNLOAD_DLL_DEBUG_EVENT:
0c3d84be 1561 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
8a892701
CF
1562 (unsigned) current_event.dwProcessId,
1563 (unsigned) current_event.dwThreadId,
1564 "UNLOAD_DLL_DEBUG_EVENT"));
ea39ad35 1565 if (saw_create != 1 || ! windows_initialization_done)
dfe7f3ac 1566 break;
bf469271 1567 catch_errors (handle_unload_dll);
de1b3c3d
PA
1568 ourstatus->kind = TARGET_WAITKIND_LOADED;
1569 ourstatus->value.integer = 0;
e6ad66bd 1570 thread_id = main_thread_id;
d3ff4a77 1571 break;
1e37c281
JM
1572
1573 case EXCEPTION_DEBUG_EVENT:
0c3d84be 1574 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
8a892701
CF
1575 (unsigned) current_event.dwProcessId,
1576 (unsigned) current_event.dwThreadId,
1577 "EXCEPTION_DEBUG_EVENT"));
dfe7f3ac
CF
1578 if (saw_create != 1)
1579 break;
24cdb46e
РИ
1580 switch (handle_exception (ourstatus))
1581 {
1582 case HANDLE_EXCEPTION_UNHANDLED:
1583 default:
1584 continue_status = DBG_EXCEPTION_NOT_HANDLED;
1585 break;
1586 case HANDLE_EXCEPTION_HANDLED:
1587 thread_id = current_event.dwThreadId;
1588 break;
1589 case HANDLE_EXCEPTION_IGNORED:
1590 continue_status = DBG_CONTINUE;
1591 break;
1592 }
1e37c281
JM
1593 break;
1594
581e13c1 1595 case OUTPUT_DEBUG_STRING_EVENT: /* Message from the kernel. */
0c3d84be 1596 DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
8a892701
CF
1597 (unsigned) current_event.dwProcessId,
1598 (unsigned) current_event.dwThreadId,
1599 "OUTPUT_DEBUG_STRING_EVENT"));
dfe7f3ac
CF
1600 if (saw_create != 1)
1601 break;
e6ad66bd 1602 thread_id = handle_output_debug_string (ourstatus);
1e37c281 1603 break;
9d3789f7 1604
1e37c281 1605 default:
dfe7f3ac
CF
1606 if (saw_create != 1)
1607 break;
0c3d84be 1608 printf_unfiltered ("gdb: kernel event for pid=%u tid=0x%x\n",
d50a0ce2
CV
1609 (unsigned) current_event.dwProcessId,
1610 (unsigned) current_event.dwThreadId);
1611 printf_unfiltered (" unknown event code %u\n",
1612 (unsigned) current_event.dwDebugEventCode);
1e37c281
JM
1613 break;
1614 }
1615
e6ad66bd 1616 if (!thread_id || saw_create != 1)
a244bdca 1617 {
95824559 1618 CHECK (windows_continue (continue_status, -1, 0));
a244bdca 1619 }
450005e7 1620 else
9d3789f7 1621 {
2dc38344 1622 inferior_ptid = ptid_build (current_event.dwProcessId, 0,
e6ad66bd 1623 thread_id);
776704b9
JT
1624 current_thread = th;
1625 if (!current_thread)
f16eab5f 1626 current_thread = thread_rec (thread_id, TRUE);
9d3789f7 1627 }
1e37c281
JM
1628
1629out:
e6ad66bd 1630 return thread_id;
1e37c281
JM
1631}
1632
2dc38344 1633/* Wait for interesting events to occur in the target process. */
39f77062 1634static ptid_t
117de6a9 1635windows_wait (struct target_ops *ops,
47608cb1 1636 ptid_t ptid, struct target_waitstatus *ourstatus, int options)
24e60978 1637{
2dc38344 1638 int pid = -1;
39f77062 1639
223ffa71 1640 target_terminal::ours ();
c44537cf 1641
24e60978
SC
1642 /* We loop when we get a non-standard exception rather than return
1643 with a SPURIOUS because resume can try and step or modify things,
3cee93ac 1644 which needs a current_thread->h. But some of these exceptions mark
24e60978 1645 the birth or death of threads, which mean that the current thread
581e13c1 1646 isn't necessarily what you think it is. */
24e60978
SC
1647
1648 while (1)
450005e7 1649 {
c57918b2 1650 int retval;
2b008701 1651
695de547
CF
1652 /* If the user presses Ctrl-c while the debugger is waiting
1653 for an event, he expects the debugger to interrupt his program
1654 and to get the prompt back. There are two possible situations:
1655
1656 - The debugger and the program do not share the console, in
1657 which case the Ctrl-c event only reached the debugger.
1658 In that case, the ctrl_c handler will take care of interrupting
581e13c1
MS
1659 the inferior. Note that this case is working starting with
1660 Windows XP. For Windows 2000, Ctrl-C should be pressed in the
695de547
CF
1661 inferior console.
1662
1663 - The debugger and the program share the same console, in which
1664 case both debugger and inferior will receive the Ctrl-c event.
1665 In that case the ctrl_c handler will ignore the event, as the
1666 Ctrl-c event generated inside the inferior will trigger the
1667 expected debug event.
1668
1669 FIXME: brobecker/2008-05-20: If the inferior receives the
1670 signal first and the delay until GDB receives that signal
1671 is sufficiently long, GDB can sometimes receive the SIGINT
1672 after we have unblocked the CTRL+C handler. This would
1673 lead to the debugger stopping prematurely while handling
1674 the new-thread event that comes with the handling of the SIGINT
1675 inside the inferior, and then stop again immediately when
1676 the user tries to resume the execution in the inferior.
1677 This is a classic race that we should try to fix one day. */
1678 SetConsoleCtrlHandler (&ctrl_c_handler, TRUE);
28439f5e 1679 retval = get_windows_debug_event (ops, pid, ourstatus);
695de547 1680 SetConsoleCtrlHandler (&ctrl_c_handler, FALSE);
c57918b2 1681
450005e7 1682 if (retval)
2dc38344 1683 return ptid_build (current_event.dwProcessId, 0, retval);
450005e7
CF
1684 else
1685 {
1686 int detach = 0;
3cee93ac 1687
98bbd631
AC
1688 if (deprecated_ui_loop_hook != NULL)
1689 detach = deprecated_ui_loop_hook (0);
0714f9bf 1690
450005e7 1691 if (detach)
7d85a9c0 1692 windows_kill_inferior (ops);
450005e7
CF
1693 }
1694 }
24e60978
SC
1695}
1696
ea39ad35
JB
1697/* Iterate over all DLLs currently mapped by our inferior, and
1698 add them to our list of solibs. */
94481b8c
JB
1699
1700static void
ea39ad35 1701windows_add_all_dlls (void)
94481b8c
JB
1702{
1703 struct so_list *so;
1704 HMODULE dummy_hmodule;
1705 DWORD cb_needed;
1706 HMODULE *hmodules;
1707 int i;
1708
94481b8c
JB
1709 if (EnumProcessModules (current_process_handle, &dummy_hmodule,
1710 sizeof (HMODULE), &cb_needed) == 0)
1711 return;
1712
1713 if (cb_needed < 1)
1714 return;
1715
1716 hmodules = (HMODULE *) alloca (cb_needed);
1717 if (EnumProcessModules (current_process_handle, hmodules,
1718 cb_needed, &cb_needed) == 0)
1719 return;
1720
ea39ad35 1721 for (i = 1; i < (int) (cb_needed / sizeof (HMODULE)); i++)
94481b8c
JB
1722 {
1723 MODULEINFO mi;
774f74c2
PM
1724#ifdef __USEWIDE
1725 wchar_t dll_name[__PMAX];
1726 char name[__PMAX];
1727#else
94481b8c 1728 char dll_name[__PMAX];
774f74c2
PM
1729 char *name;
1730#endif
94481b8c
JB
1731 if (GetModuleInformation (current_process_handle, hmodules[i],
1732 &mi, sizeof (mi)) == 0)
1733 continue;
1734 if (GetModuleFileNameEx (current_process_handle, hmodules[i],
1735 dll_name, sizeof (dll_name)) == 0)
1736 continue;
774f74c2
PM
1737#ifdef __USEWIDE
1738 wcstombs (name, dll_name, __PMAX);
1739#else
1740 name = dll_name;
1741#endif
ea39ad35
JB
1742
1743 solib_end->next = windows_make_so (name, mi.lpBaseOfDll);
1744 solib_end = solib_end->next;
94481b8c
JB
1745 }
1746}
1747
9d3789f7 1748static void
dc05df57 1749do_initial_windows_stuff (struct target_ops *ops, DWORD pid, int attaching)
9d3789f7 1750{
fa4ba8da 1751 int i;
d6b48e9c 1752 struct inferior *inf;
2020b7ab 1753 struct thread_info *tp;
9d3789f7 1754
a493e3e2 1755 last_sig = GDB_SIGNAL_0;
9d3789f7
CF
1756 event_count = 0;
1757 exception_count = 0;
bf25528d 1758 open_process_used = 0;
fa4ba8da 1759 debug_registers_changed = 0;
dfe7f3ac 1760 debug_registers_used = 0;
fa4ba8da
PM
1761 for (i = 0; i < sizeof (dr) / sizeof (dr[0]); i++)
1762 dr[i] = 0;
10325bc5 1763#ifdef __CYGWIN__
de1b3c3d 1764 cygwin_load_start = cygwin_load_end = 0;
10325bc5 1765#endif
9d3789f7
CF
1766 current_event.dwProcessId = pid;
1767 memset (&current_event, 0, sizeof (current_event));
6a3cb8e8
PA
1768 if (!target_is_pushed (ops))
1769 push_target (ops);
cb851954 1770 disable_breakpoints_in_shlibs ();
dc05df57 1771 windows_clear_solib ();
88056fbb 1772 clear_proceed_status (0);
9d3789f7
CF
1773 init_wait_for_inferior ();
1774
6c95b8df
PA
1775 inf = current_inferior ();
1776 inferior_appeared (inf, pid);
181e7f93 1777 inf->attach_flag = attaching;
7f9f62ba 1778
9f9d052e
PM
1779 /* Make the new process the current inferior, so terminal handling
1780 can rely on it. When attaching, we don't know about any thread
1781 id here, but that's OK --- nothing should be referencing the
dc05df57 1782 current thread until we report an event out of windows_wait. */
9f9d052e
PM
1783 inferior_ptid = pid_to_ptid (pid);
1784
223ffa71
TT
1785 target_terminal::init ();
1786 target_terminal::inferior ();
9d3789f7 1787
16d905e2 1788 windows_initialization_done = 0;
c72f45d1 1789
9d3789f7
CF
1790 while (1)
1791 {
c72f45d1
PA
1792 struct target_waitstatus status;
1793
1794 windows_wait (ops, minus_one_ptid, &status, 0);
1795
1796 /* Note windows_wait returns TARGET_WAITKIND_SPURIOUS for thread
1797 events. */
1798 if (status.kind != TARGET_WAITKIND_LOADED
1799 && status.kind != TARGET_WAITKIND_SPURIOUS)
9d3789f7 1800 break;
c72f45d1
PA
1801
1802 windows_resume (ops, minus_one_ptid, 0, GDB_SIGNAL_0);
9d3789f7 1803 }
eff8332b 1804
ea39ad35 1805 /* Now that the inferior has been started and all DLLs have been mapped,
3be75f87
JB
1806 we can iterate over all DLLs and load them in.
1807
1808 We avoid doing it any earlier because, on certain versions of Windows,
1809 LOAD_DLL_DEBUG_EVENTs are sometimes not complete. In particular,
1810 we have seen on Windows 8.1 that the ntdll.dll load event does not
1811 include the DLL name, preventing us from creating an associated SO.
1812 A possible explanation is that ntdll.dll might be mapped before
1813 the SO info gets created by the Windows system -- ntdll.dll is
1814 the first DLL to be reported via LOAD_DLL_DEBUG_EVENT and other DLLs
1815 do not seem to suffer from that problem.
1816
1817 Rather than try to work around this sort of issue, it is much
1818 simpler to just ignore DLL load/unload events during the startup
1819 phase, and then process them all in one batch now. */
ea39ad35 1820 windows_add_all_dlls ();
94481b8c 1821
16d905e2 1822 windows_initialization_done = 1;
9d3789f7
CF
1823 return;
1824}
1825
616a9dc4
CV
1826/* Try to set or remove a user privilege to the current process. Return -1
1827 if that fails, the previous setting of that privilege otherwise.
1828
1829 This code is copied from the Cygwin source code and rearranged to allow
1830 dynamically loading of the needed symbols from advapi32 which is only
581e13c1 1831 available on NT/2K/XP. */
616a9dc4
CV
1832static int
1833set_process_privilege (const char *privilege, BOOL enable)
1834{
616a9dc4
CV
1835 HANDLE token_hdl = NULL;
1836 LUID restore_priv;
1837 TOKEN_PRIVILEGES new_priv, orig_priv;
1838 int ret = -1;
1839 DWORD size;
1840
616a9dc4
CV
1841 if (!OpenProcessToken (GetCurrentProcess (),
1842 TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES,
1843 &token_hdl))
1844 goto out;
1845
418c6cb3 1846 if (!LookupPrivilegeValueA (NULL, privilege, &restore_priv))
616a9dc4
CV
1847 goto out;
1848
1849 new_priv.PrivilegeCount = 1;
1850 new_priv.Privileges[0].Luid = restore_priv;
1851 new_priv.Privileges[0].Attributes = enable ? SE_PRIVILEGE_ENABLED : 0;
1852
1853 if (!AdjustTokenPrivileges (token_hdl, FALSE, &new_priv,
295732ea 1854 sizeof orig_priv, &orig_priv, &size))
616a9dc4
CV
1855 goto out;
1856#if 0
1857 /* Disabled, otherwise every `attach' in an unprivileged user session
1858 would raise the "Failed to get SE_DEBUG_NAME privilege" warning in
581e13c1 1859 windows_attach(). */
616a9dc4 1860 /* AdjustTokenPrivileges returns TRUE even if the privilege could not
581e13c1 1861 be enabled. GetLastError () returns an correct error code, though. */
616a9dc4
CV
1862 if (enable && GetLastError () == ERROR_NOT_ALL_ASSIGNED)
1863 goto out;
1864#endif
1865
1866 ret = orig_priv.Privileges[0].Attributes == SE_PRIVILEGE_ENABLED ? 1 : 0;
1867
1868out:
1869 if (token_hdl)
1870 CloseHandle (token_hdl);
1871
1872 return ret;
1873}
1874
02cc9f49 1875/* Attach to process PID, then initialize for debugging it. */
24e60978 1876static void
c0939df1 1877windows_attach (struct target_ops *ops, const char *args, int from_tty)
24e60978
SC
1878{
1879 BOOL ok;
559e75c0 1880 DWORD pid;
24e60978 1881
74164c56 1882 pid = parse_pid_to_attach (args);
24e60978 1883
616a9dc4
CV
1884 if (set_process_privilege (SE_DEBUG_NAME, TRUE) < 0)
1885 {
1886 printf_unfiltered ("Warning: Failed to get SE_DEBUG_NAME privilege\n");
581e13c1
MS
1887 printf_unfiltered ("This can cause attach to "
1888 "fail on Windows NT/2K/XP\n");
616a9dc4
CV
1889 }
1890
dc05df57 1891 windows_init_thread_list ();
9d3789f7 1892 ok = DebugActiveProcess (pid);
91a175b3 1893 saw_create = 0;
24e60978 1894
10325bc5 1895#ifdef __CYGWIN__
24e60978 1896 if (!ok)
baa93fa6 1897 {
581e13c1 1898 /* Try fall back to Cygwin pid. */
baa93fa6
CF
1899 pid = cygwin_internal (CW_CYGWIN_PID_TO_WINPID, pid);
1900
1901 if (pid > 0)
1902 ok = DebugActiveProcess (pid);
10325bc5
PA
1903 }
1904#endif
baa93fa6 1905
10325bc5
PA
1906 if (!ok)
1907 error (_("Can't attach to process."));
24e60978 1908
2b008701 1909 DebugSetProcessKillOnExit (FALSE);
3ade5333 1910
24e60978
SC
1911 if (from_tty)
1912 {
1913 char *exec_file = (char *) get_exec_file (0);
1914
1915 if (exec_file)
1916 printf_unfiltered ("Attaching to program `%s', %s\n", exec_file,
39f77062 1917 target_pid_to_str (pid_to_ptid (pid)));
24e60978
SC
1918 else
1919 printf_unfiltered ("Attaching to %s\n",
39f77062 1920 target_pid_to_str (pid_to_ptid (pid)));
24e60978
SC
1921
1922 gdb_flush (gdb_stdout);
1923 }
1924
dc05df57 1925 do_initial_windows_stuff (ops, pid, 1);
223ffa71 1926 target_terminal::ours ();
24e60978
SC
1927}
1928
24e60978 1929static void
6e1e1966 1930windows_detach (struct target_ops *ops, inferior *inf, int from_tty)
24e60978 1931{
02cc9f49
CV
1932 int detached = 1;
1933
8473b447 1934 ptid_t ptid = minus_one_ptid;
a493e3e2 1935 windows_resume (ops, ptid, 0, GDB_SIGNAL_0);
96998ce7 1936
2b008701
CF
1937 if (!DebugActiveProcessStop (current_event.dwProcessId))
1938 {
d50a0ce2
CV
1939 error (_("Can't detach process %u (error %u)"),
1940 (unsigned) current_event.dwProcessId, (unsigned) GetLastError ());
2b008701 1941 detached = 0;
02cc9f49 1942 }
2b008701
CF
1943 DebugSetProcessKillOnExit (FALSE);
1944
02cc9f49 1945 if (detached && from_tty)
24e60978 1946 {
a121b7c1 1947 const char *exec_file = get_exec_file (0);
24e60978
SC
1948 if (exec_file == 0)
1949 exec_file = "";
d50a0ce2
CV
1950 printf_unfiltered ("Detaching from program: %s, Pid %u\n", exec_file,
1951 (unsigned) current_event.dwProcessId);
24e60978
SC
1952 gdb_flush (gdb_stdout);
1953 }
7f9f62ba 1954
df7e5265 1955 x86_cleanup_dregs ();
39f77062 1956 inferior_ptid = null_ptid;
7f9f62ba
PA
1957 detach_inferior (current_event.dwProcessId);
1958
6a3cb8e8 1959 inf_child_maybe_unpush_target (ops);
24e60978
SC
1960}
1961
47f7ffdb
JB
1962/* Try to determine the executable filename.
1963
1964 EXE_NAME_RET is a pointer to a buffer whose size is EXE_NAME_MAX_LEN.
1965
1966 Upon success, the filename is stored inside EXE_NAME_RET, and
1967 this function returns nonzero.
1968
1969 Otherwise, this function returns zero and the contents of
1970 EXE_NAME_RET is undefined. */
1971
1972static int
1973windows_get_exec_module_filename (char *exe_name_ret, size_t exe_name_max_len)
1974{
1975 DWORD len;
1976 HMODULE dh_buf;
1977 DWORD cbNeeded;
1978
1979 cbNeeded = 0;
1980 if (!EnumProcessModules (current_process_handle, &dh_buf,
1981 sizeof (HMODULE), &cbNeeded) || !cbNeeded)
1982 return 0;
1983
1984 /* We know the executable is always first in the list of modules,
1985 which we just fetched. So no need to fetch more. */
1986
1987#ifdef __CYGWIN__
1988 {
1989 /* Cygwin prefers that the path be in /x/y/z format, so extract
1990 the filename into a temporary buffer first, and then convert it
1991 to POSIX format into the destination buffer. */
0ae534d2 1992 cygwin_buf_t *pathbuf = (cygwin_buf_t *) alloca (exe_name_max_len * sizeof (cygwin_buf_t));
47f7ffdb
JB
1993
1994 len = GetModuleFileNameEx (current_process_handle,
1995 dh_buf, pathbuf, exe_name_max_len);
1996 if (len == 0)
1997 error (_("Error getting executable filename: %u."),
1998 (unsigned) GetLastError ());
1999 if (cygwin_conv_path (CCP_WIN_W_TO_POSIX, pathbuf, exe_name_ret,
2000 exe_name_max_len) < 0)
2001 error (_("Error converting executable filename to POSIX: %d."), errno);
2002 }
2003#else
2004 len = GetModuleFileNameEx (current_process_handle,
2005 dh_buf, exe_name_ret, exe_name_max_len);
2006 if (len == 0)
2007 error (_("Error getting executable filename: %u."),
2008 (unsigned) GetLastError ());
2009#endif
2010
2011 return 1; /* success */
2012}
2013
2014/* The pid_to_exec_file target_ops method for this platform. */
2015
3ee6f623 2016static char *
8dd27370 2017windows_pid_to_exec_file (struct target_ops *self, int pid)
47216e51 2018{
b3c613f2 2019 static char path[__PMAX];
10325bc5 2020#ifdef __CYGWIN__
581e13c1 2021 /* Try to find exe name as symlink target of /proc/<pid>/exe. */
33605d39
CF
2022 int nchars;
2023 char procexe[sizeof ("/proc/4294967295/exe")];
08850b56
PM
2024
2025 xsnprintf (procexe, sizeof (procexe), "/proc/%u/exe", pid);
33605d39
CF
2026 nchars = readlink (procexe, path, sizeof(path));
2027 if (nchars > 0 && nchars < sizeof (path))
47216e51 2028 {
33605d39
CF
2029 path[nchars] = '\0'; /* Got it */
2030 return path;
47216e51 2031 }
10325bc5
PA
2032#endif
2033
33605d39 2034 /* If we get here then either Cygwin is hosed, this isn't a Cygwin version
581e13c1 2035 of gdb, or we're trying to debug a non-Cygwin windows executable. */
47f7ffdb 2036 if (!windows_get_exec_module_filename (path, sizeof (path)))
33605d39
CF
2037 path[0] = '\0';
2038
2039 return path;
47216e51
CV
2040}
2041
24e60978
SC
2042/* Print status information about what we're accessing. */
2043
2044static void
dc05df57 2045windows_files_info (struct target_ops *ignore)
24e60978 2046{
181e7f93
PA
2047 struct inferior *inf = current_inferior ();
2048
24e60978 2049 printf_unfiltered ("\tUsing the running image of %s %s.\n",
181e7f93
PA
2050 inf->attach_flag ? "attached" : "child",
2051 target_pid_to_str (inferior_ptid));
24e60978
SC
2052}
2053
cd44747c
PM
2054/* Modify CreateProcess parameters for use of a new separate console.
2055 Parameters are:
2056 *FLAGS: DWORD parameter for general process creation flags.
2057 *SI: STARTUPINFO structure, for which the console window size and
2058 console buffer size is filled in if GDB is running in a console.
2059 to create the new console.
2060 The size of the used font is not available on all versions of
2061 Windows OS. Furthermore, the current font might not be the default
2062 font, but this is still better than before.
2063 If the windows and buffer sizes are computed,
2064 SI->DWFLAGS is changed so that this information is used
2065 by CreateProcess function. */
2066
2067static void
2068windows_set_console_info (STARTUPINFO *si, DWORD *flags)
2069{
2070 HANDLE hconsole = CreateFile ("CONOUT$", GENERIC_READ | GENERIC_WRITE,
2071 FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
2072
2073 if (hconsole != INVALID_HANDLE_VALUE)
2074 {
2075 CONSOLE_SCREEN_BUFFER_INFO sbinfo;
2076 COORD font_size;
2077 CONSOLE_FONT_INFO cfi;
2078
2079 GetCurrentConsoleFont (hconsole, FALSE, &cfi);
2080 font_size = GetConsoleFontSize (hconsole, cfi.nFont);
2081 GetConsoleScreenBufferInfo(hconsole, &sbinfo);
2082 si->dwXSize = sbinfo.srWindow.Right - sbinfo.srWindow.Left + 1;
2083 si->dwYSize = sbinfo.srWindow.Bottom - sbinfo.srWindow.Top + 1;
2084 if (font_size.X)
2085 si->dwXSize *= font_size.X;
2086 else
2087 si->dwXSize *= 8;
2088 if (font_size.Y)
2089 si->dwYSize *= font_size.Y;
2090 else
2091 si->dwYSize *= 12;
2092 si->dwXCountChars = sbinfo.dwSize.X;
2093 si->dwYCountChars = sbinfo.dwSize.Y;
2094 si->dwFlags |= STARTF_USESIZE | STARTF_USECOUNTCHARS;
2095 }
2096 *flags |= CREATE_NEW_CONSOLE;
2097}
2098
c93dbcba
EZ
2099#ifndef __CYGWIN__
2100/* Function called by qsort to sort environment strings. */
2101
2102static int
2103envvar_cmp (const void *a, const void *b)
2104{
2105 const char **p = (const char **) a;
2106 const char **q = (const char **) b;
2107 return strcasecmp (*p, *q);
2108}
2109#endif
2110
b7ff339d
CV
2111#ifdef __CYGWIN__
2112static void
2113clear_win32_environment (char **env)
2114{
2115 int i;
2116 size_t len;
2117 wchar_t *copy = NULL, *equalpos;
2118
2119 for (i = 0; env[i] && *env[i]; i++)
2120 {
2121 len = mbstowcs (NULL, env[i], 0) + 1;
2122 copy = (wchar_t *) xrealloc (copy, len * sizeof (wchar_t));
2123 mbstowcs (copy, env[i], len);
2124 equalpos = wcschr (copy, L'=');
2125 if (equalpos)
2126 *equalpos = L'\0';
2127 SetEnvironmentVariableW (copy, NULL);
2128 }
2129 xfree (copy);
2130}
2131#endif
2132
8ba42bc5
EZ
2133#ifndef __CYGWIN__
2134
2135/* Redirection of inferior I/O streams for native MS-Windows programs.
2136 Unlike on Unix, where this is handled by invoking the inferior via
2137 the shell, on MS-Windows we need to emulate the cmd.exe shell.
2138
2139 The official documentation of the cmd.exe redirection features is here:
2140
2141 http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/redirection.mspx
2142
2143 (That page talks about Windows XP, but there's no newer
2144 documentation, so we assume later versions of cmd.exe didn't change
2145 anything.)
2146
2147 Caveat: the documentation on that page seems to include a few lies.
2148 For example, it describes strange constructs 1<&2 and 2<&1, which
2149 seem to work only when 1>&2 resp. 2>&1 would make sense, and so I
2150 think the cmd.exe parser of the redirection symbols simply doesn't
2151 care about the < vs > distinction in these cases. Therefore, the
2152 supported features are explicitly documented below.
2153
2154 The emulation below aims at supporting all the valid use cases
2155 supported by cmd.exe, which include:
2156
2157 < FILE redirect standard input from FILE
2158 0< FILE redirect standard input from FILE
2159 <&N redirect standard input from file descriptor N
2160 0<&N redirect standard input from file descriptor N
2161 > FILE redirect standard output to FILE
2162 >> FILE append standard output to FILE
2163 1>> FILE append standard output to FILE
2164 >&N redirect standard output to file descriptor N
2165 1>&N redirect standard output to file descriptor N
2166 >>&N append standard output to file descriptor N
2167 1>>&N append standard output to file descriptor N
2168 2> FILE redirect standard error to FILE
2169 2>> FILE append standard error to FILE
2170 2>&N redirect standard error to file descriptor N
2171 2>>&N append standard error to file descriptor N
2172
2173 Note that using N > 2 in the above construct is supported, but
2174 requires that the corresponding file descriptor be open by some
2175 means elsewhere or outside GDB. Also note that using ">&0" or
2176 "<&2" will generally fail, because the file descriptor redirected
2177 from is normally open in an incompatible mode (e.g., FD 0 is open
2178 for reading only). IOW, use of such tricks is not recommended;
2179 you are on your own.
2180
2181 We do NOT support redirection of file descriptors above 2, as in
2182 "3>SOME-FILE", because MinGW compiled programs don't (supporting
2183 that needs special handling in the startup code that MinGW
2184 doesn't have). Pipes are also not supported.
2185
2186 As for invalid use cases, where the redirection contains some
2187 error, the emulation below will detect that and produce some
2188 error and/or failure. But the behavior in those cases is not
2189 bug-for-bug compatible with what cmd.exe does in those cases.
2190 That's because what cmd.exe does then is not well defined, and
2191 seems to be a side effect of the cmd.exe parsing of the command
2192 line more than anything else. For example, try redirecting to an
2193 invalid file name, as in "> foo:bar".
2194
2195 There are also minor syntactic deviations from what cmd.exe does
2196 in some corner cases. For example, it doesn't support the likes
2197 of "> &foo" to mean redirect to file named literally "&foo"; we
2198 do support that here, because that, too, sounds like some issue
2199 with the cmd.exe parser. Another nicety is that we support
2200 redirection targets that use file names with forward slashes,
2201 something cmd.exe doesn't -- this comes in handy since GDB
2202 file-name completion can be used when typing the command line for
2203 the inferior. */
2204
2205/* Support routines for redirecting standard handles of the inferior. */
2206
2207/* Parse a single redirection spec, open/duplicate the specified
2208 file/fd, and assign the appropriate value to one of the 3 standard
2209 file descriptors. */
2210static int
2211redir_open (const char *redir_string, int *inp, int *out, int *err)
2212{
2213 int *fd, ref_fd = -2;
2214 int mode;
2215 const char *fname = redir_string + 1;
2216 int rc = *redir_string;
2217
2218 switch (rc)
2219 {
2220 case '0':
2221 fname++;
2222 /* FALLTHROUGH */
2223 case '<':
2224 fd = inp;
2225 mode = O_RDONLY;
2226 break;
2227 case '1': case '2':
2228 fname++;
2229 /* FALLTHROUGH */
2230 case '>':
2231 fd = (rc == '2') ? err : out;
2232 mode = O_WRONLY | O_CREAT;
2233 if (*fname == '>')
2234 {
2235 fname++;
2236 mode |= O_APPEND;
2237 }
2238 else
2239 mode |= O_TRUNC;
2240 break;
2241 default:
2242 return -1;
2243 }
2244
2245 if (*fname == '&' && '0' <= fname[1] && fname[1] <= '9')
2246 {
2247 /* A reference to a file descriptor. */
2248 char *fdtail;
2249 ref_fd = (int) strtol (fname + 1, &fdtail, 10);
2250 if (fdtail > fname + 1 && *fdtail == '\0')
2251 {
2252 /* Don't allow redirection when open modes are incompatible. */
2253 if ((ref_fd == 0 && (fd == out || fd == err))
2254 || ((ref_fd == 1 || ref_fd == 2) && fd == inp))
2255 {
2256 errno = EPERM;
2257 return -1;
2258 }
2259 if (ref_fd == 0)
2260 ref_fd = *inp;
2261 else if (ref_fd == 1)
2262 ref_fd = *out;
2263 else if (ref_fd == 2)
2264 ref_fd = *err;
2265 }
2266 else
2267 {
2268 errno = EBADF;
2269 return -1;
2270 }
2271 }
2272 else
2273 fname++; /* skip the separator space */
2274 /* If the descriptor is already open, close it. This allows
2275 multiple specs of redirections for the same stream, which is
2276 somewhat nonsensical, but still valid and supported by cmd.exe.
2277 (But cmd.exe only opens a single file in this case, the one
2278 specified by the last redirection spec on the command line.) */
2279 if (*fd >= 0)
2280 _close (*fd);
2281 if (ref_fd == -2)
2282 {
2283 *fd = _open (fname, mode, _S_IREAD | _S_IWRITE);
2284 if (*fd < 0)
2285 return -1;
2286 }
2287 else if (ref_fd == -1)
2288 *fd = -1; /* reset to default destination */
2289 else
2290 {
2291 *fd = _dup (ref_fd);
2292 if (*fd < 0)
2293 return -1;
2294 }
2295 /* _open just sets a flag for O_APPEND, which won't be passed to the
2296 inferior, so we need to actually move the file pointer. */
2297 if ((mode & O_APPEND) != 0)
2298 _lseek (*fd, 0L, SEEK_END);
2299 return 0;
2300}
2301
2302/* Canonicalize a single redirection spec and set up the corresponding
2303 file descriptor as specified. */
2304static int
2305redir_set_redirection (const char *s, int *inp, int *out, int *err)
2306{
2307 char buf[__PMAX + 2 + 5]; /* extra space for quotes & redirection string */
2308 char *d = buf;
2309 const char *start = s;
2310 int quote = 0;
2311
2312 *d++ = *s++; /* copy the 1st character, < or > or a digit */
2313 if ((*start == '>' || *start == '1' || *start == '2')
2314 && *s == '>')
2315 {
2316 *d++ = *s++;
2317 if (*s == '>' && *start != '>')
2318 *d++ = *s++;
2319 }
2320 else if (*start == '0' && *s == '<')
2321 *d++ = *s++;
2322 /* cmd.exe recognizes "&N" only immediately after the redirection symbol. */
2323 if (*s != '&')
2324 {
2325 while (isspace (*s)) /* skip whitespace before file name */
2326 s++;
2327 *d++ = ' '; /* separate file name with a single space */
2328 }
2329
2330 /* Copy the file name. */
2331 while (*s)
2332 {
2333 /* Remove quoting characters from the file name in buf[]. */
2334 if (*s == '"') /* could support '..' quoting here */
2335 {
2336 if (!quote)
2337 quote = *s++;
2338 else if (*s == quote)
2339 {
2340 quote = 0;
2341 s++;
2342 }
2343 else
2344 *d++ = *s++;
2345 }
2346 else if (*s == '\\')
2347 {
2348 if (s[1] == '"') /* could support '..' here */
2349 s++;
2350 *d++ = *s++;
2351 }
2352 else if (isspace (*s) && !quote)
2353 break;
2354 else
2355 *d++ = *s++;
2356 if (d - buf >= sizeof (buf) - 1)
2357 {
2358 errno = ENAMETOOLONG;
2359 return 0;
2360 }
2361 }
2362 *d = '\0';
2363
2364 /* Windows doesn't allow redirection characters in file names, so we
2365 can bail out early if they use them, or if there's no target file
2366 name after the redirection symbol. */
2367 if (d[-1] == '>' || d[-1] == '<')
2368 {
2369 errno = ENOENT;
2370 return 0;
2371 }
2372 if (redir_open (buf, inp, out, err) == 0)
2373 return s - start;
2374 return 0;
2375}
2376
2377/* Parse the command line for redirection specs and prepare the file
2378 descriptors for the 3 standard streams accordingly. */
2379static bool
2380redirect_inferior_handles (const char *cmd_orig, char *cmd,
2381 int *inp, int *out, int *err)
2382{
2383 const char *s = cmd_orig;
2384 char *d = cmd;
2385 int quote = 0;
2386 bool retval = false;
2387
2388 while (isspace (*s))
2389 *d++ = *s++;
2390
2391 while (*s)
2392 {
2393 if (*s == '"') /* could also support '..' quoting here */
2394 {
2395 if (!quote)
2396 quote = *s;
2397 else if (*s == quote)
2398 quote = 0;
2399 }
2400 else if (*s == '\\')
2401 {
2402 if (s[1] == '"') /* escaped quote char */
2403 s++;
2404 }
2405 else if (!quote)
2406 {
2407 /* Process a single redirection candidate. */
2408 if (*s == '<' || *s == '>'
2409 || ((*s == '1' || *s == '2') && s[1] == '>')
2410 || (*s == '0' && s[1] == '<'))
2411 {
2412 int skip = redir_set_redirection (s, inp, out, err);
2413
2414 if (skip <= 0)
2415 return false;
2416 retval = true;
2417 s += skip;
2418 }
2419 }
2420 if (*s)
2421 *d++ = *s++;
2422 }
2423 *d = '\0';
2424 return retval;
2425}
2426#endif /* !__CYGWIN__ */
2427
dc05df57 2428/* Start an inferior windows child process and sets inferior_ptid to its pid.
24e60978
SC
2429 EXEC_FILE is the file to run.
2430 ALLARGS is a string containing the arguments to the program.
2431 ENV is the environment vector to pass. Errors reported with error(). */
2432
24e60978 2433static void
7c5ded6a
SDJ
2434windows_create_inferior (struct target_ops *ops, const char *exec_file,
2435 const std::string &origallargs, char **in_env,
2436 int from_tty)
24e60978 2437{
b3c613f2 2438 STARTUPINFO si;
41b4aadc 2439#ifdef __CYGWIN__
b3c613f2
CF
2440 cygwin_buf_t real_path[__PMAX];
2441 cygwin_buf_t shell[__PMAX]; /* Path to shell */
d092c5a2 2442 cygwin_buf_t infcwd[__PMAX];
d0d0ab16 2443 const char *sh;
b3c613f2
CF
2444 cygwin_buf_t *toexec;
2445 cygwin_buf_t *cygallargs;
2446 cygwin_buf_t *args;
b7ff339d
CV
2447 char **old_env = NULL;
2448 PWCHAR w32_env;
d0d0ab16 2449 size_t len;
2becadee
CF
2450 int tty;
2451 int ostdin, ostdout, ostderr;
8ba42bc5 2452#else /* !__CYGWIN__ */
b3c613f2
CF
2453 char real_path[__PMAX];
2454 char shell[__PMAX]; /* Path to shell */
5430098f 2455 const char *toexec;
8ba42bc5
EZ
2456 char *args, *allargs_copy;
2457 size_t args_len, allargs_len;
2458 int fd_inp = -1, fd_out = -1, fd_err = -1;
2459 HANDLE tty = INVALID_HANDLE_VALUE;
2460 HANDLE inf_stdin = INVALID_HANDLE_VALUE;
2461 HANDLE inf_stdout = INVALID_HANDLE_VALUE;
2462 HANDLE inf_stderr = INVALID_HANDLE_VALUE;
2463 bool redirected = false;
c93dbcba
EZ
2464 char *w32env;
2465 char *temp;
2466 size_t envlen;
2467 int i;
2468 size_t envsize;
2469 char **env;
8ba42bc5 2470#endif /* !__CYGWIN__ */
096c92dd 2471 const char *allargs = origallargs.c_str ();
d0d0ab16
CV
2472 PROCESS_INFORMATION pi;
2473 BOOL ret;
2474 DWORD flags = 0;
3cb3b8df 2475 const char *inferior_io_terminal = get_inferior_io_terminal ();
24e60978
SC
2476
2477 if (!exec_file)
8a3fe4f8 2478 error (_("No executable specified, use `target exec'."));
24e60978 2479
d092c5a2
SDJ
2480 const char *inferior_cwd = get_inferior_cwd ();
2481 std::string expanded_infcwd;
2482 if (inferior_cwd != NULL)
2483 {
2484 expanded_infcwd = gdb_tilde_expand (inferior_cwd);
2485 /* Mirror slashes on inferior's cwd. */
2486 std::replace (expanded_infcwd.begin (), expanded_infcwd.end (),
2487 '/', '\\');
2488 inferior_cwd = expanded_infcwd.c_str ();
2489 }
2490
24e60978
SC
2491 memset (&si, 0, sizeof (si));
2492 si.cb = sizeof (si);
2493
d0d0ab16
CV
2494 if (new_group)
2495 flags |= CREATE_NEW_PROCESS_GROUP;
2496
2497 if (new_console)
cd44747c 2498 windows_set_console_info (&si, &flags);
d0d0ab16 2499
10325bc5 2500#ifdef __CYGWIN__
349b409f 2501 if (!useshell)
dfe7f3ac 2502 {
d0d0ab16
CV
2503 flags |= DEBUG_ONLY_THIS_PROCESS;
2504 if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, exec_file, real_path,
b3c613f2 2505 __PMAX * sizeof (cygwin_buf_t)) < 0)
d0d0ab16 2506 error (_("Error starting executable: %d"), errno);
dfe7f3ac 2507 toexec = real_path;
b3c613f2 2508#ifdef __USEWIDE
d0d0ab16
CV
2509 len = mbstowcs (NULL, allargs, 0) + 1;
2510 if (len == (size_t) -1)
2511 error (_("Error starting executable: %d"), errno);
2512 cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t));
2513 mbstowcs (cygallargs, allargs, len);
8ba42bc5 2514#else /* !__USEWIDE */
60c5c021 2515 cygallargs = allargs;
b3c613f2 2516#endif
dfe7f3ac
CF
2517 }
2518 else
2519 {
349b409f
CF
2520 sh = getenv ("SHELL");
2521 if (!sh)
2522 sh = "/bin/sh";
b3c613f2 2523 if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, sh, shell, __PMAX) < 0)
d0d0ab16 2524 error (_("Error starting executable via shell: %d"), errno);
b3c613f2 2525#ifdef __USEWIDE
d0d0ab16
CV
2526 len = sizeof (L" -c 'exec '") + mbstowcs (NULL, exec_file, 0)
2527 + mbstowcs (NULL, allargs, 0) + 2;
2528 cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t));
2529 swprintf (cygallargs, len, L" -c 'exec %s %s'", exec_file, allargs);
8ba42bc5 2530#else /* !__USEWIDE */
08850b56
PM
2531 len = (sizeof (" -c 'exec '") + strlen (exec_file)
2532 + strlen (allargs) + 2);
2533 cygallargs = (char *) alloca (len);
2534 xsnprintf (cygallargs, len, " -c 'exec %s %s'", exec_file, allargs);
8ba42bc5 2535#endif /* __USEWIDE */
dfe7f3ac 2536 toexec = shell;
d0d0ab16 2537 flags |= DEBUG_PROCESS;
dfe7f3ac 2538 }
b3c613f2 2539
d092c5a2
SDJ
2540 if (inferior_cwd != NULL
2541 && cygwin_conv_path (CCP_POSIX_TO_WIN_W, inferior_cwd,
2542 infcwd, strlen (inferior_cwd)) < 0)
2543 error (_("Error converting inferior cwd: %d"), errno);
2544
b3c613f2
CF
2545#ifdef __USEWIDE
2546 args = (cygwin_buf_t *) alloca ((wcslen (toexec) + wcslen (cygallargs) + 2)
2547 * sizeof (wchar_t));
d0d0ab16
CV
2548 wcscpy (args, toexec);
2549 wcscat (args, L" ");
2550 wcscat (args, cygallargs);
8ba42bc5 2551#else /* !__USEWIDE */
b3c613f2
CF
2552 args = (cygwin_buf_t *) alloca (strlen (toexec) + strlen (cygallargs) + 2);
2553 strcpy (args, toexec);
2554 strcat (args, " ");
2555 strcat (args, cygallargs);
8ba42bc5 2556#endif /* !__USEWIDE */
b3c613f2 2557
b7ff339d
CV
2558#ifdef CW_CVT_ENV_TO_WINENV
2559 /* First try to create a direct Win32 copy of the POSIX environment. */
2560 w32_env = (PWCHAR) cygwin_internal (CW_CVT_ENV_TO_WINENV, in_env);
2561 if (w32_env != (PWCHAR) -1)
2562 flags |= CREATE_UNICODE_ENVIRONMENT;
2563 else
2564 /* If that fails, fall back to old method tweaking GDB's environment. */
8ba42bc5 2565#endif /* CW_CVT_ENV_TO_WINENV */
b7ff339d
CV
2566 {
2567 /* Reset all Win32 environment variables to avoid leftover on next run. */
2568 clear_win32_environment (environ);
2569 /* Prepare the environment vars for CreateProcess. */
2570 old_env = environ;
2571 environ = in_env;
2572 cygwin_internal (CW_SYNC_WINENV);
2573 w32_env = NULL;
2574 }
1750a5ef 2575
2becadee
CF
2576 if (!inferior_io_terminal)
2577 tty = ostdin = ostdout = ostderr = -1;
2578 else
2579 {
2580 tty = open (inferior_io_terminal, O_RDWR | O_NOCTTY);
2581 if (tty < 0)
2582 {
2583 print_sys_errmsg (inferior_io_terminal, errno);
2584 ostdin = ostdout = ostderr = -1;
2585 }
2586 else
2587 {
2588 ostdin = dup (0);
2589 ostdout = dup (1);
2590 ostderr = dup (2);
2591 dup2 (tty, 0);
2592 dup2 (tty, 1);
2593 dup2 (tty, 2);
2594 }
2595 }
d0d0ab16
CV
2596
2597 windows_init_thread_list ();
b3c613f2
CF
2598 ret = CreateProcess (0,
2599 args, /* command line */
2600 NULL, /* Security */
2601 NULL, /* thread */
2602 TRUE, /* inherit handles */
2603 flags, /* start flags */
b7ff339d 2604 w32_env, /* environment */
d092c5a2
SDJ
2605 inferior_cwd != NULL ? infcwd : NULL, /* current
2606 directory */
b3c613f2
CF
2607 &si,
2608 &pi);
b7ff339d
CV
2609 if (w32_env)
2610 /* Just free the Win32 environment, if it could be created. */
2611 free (w32_env);
2612 else
2613 {
2614 /* Reset all environment variables to avoid leftover on next run. */
2615 clear_win32_environment (in_env);
2616 /* Restore normal GDB environment variables. */
2617 environ = old_env;
2618 cygwin_internal (CW_SYNC_WINENV);
2619 }
2620
d0d0ab16
CV
2621 if (tty >= 0)
2622 {
2623 close (tty);
2624 dup2 (ostdin, 0);
2625 dup2 (ostdout, 1);
2626 dup2 (ostderr, 2);
2627 close (ostdin);
2628 close (ostdout);
2629 close (ostderr);
2630 }
8ba42bc5
EZ
2631#else /* !__CYGWIN__ */
2632 allargs_len = strlen (allargs);
2633 allargs_copy = strcpy ((char *) alloca (allargs_len + 1), allargs);
2634 if (strpbrk (allargs_copy, "<>") != NULL)
2635 {
2636 int e = errno;
2637 errno = 0;
2638 redirected =
2639 redirect_inferior_handles (allargs, allargs_copy,
2640 &fd_inp, &fd_out, &fd_err);
2641 if (errno)
2642 warning (_("Error in redirection: %s."), strerror (errno));
2643 else
2644 errno = e;
2645 allargs_len = strlen (allargs_copy);
2646 }
2647 /* If not all the standard streams are redirected by the command
2648 line, use inferior_io_terminal for those which aren't. */
2649 if (inferior_io_terminal
2650 && !(fd_inp >= 0 && fd_out >= 0 && fd_err >= 0))
41b4aadc
CF
2651 {
2652 SECURITY_ATTRIBUTES sa;
2653 sa.nLength = sizeof(sa);
2654 sa.lpSecurityDescriptor = 0;
2655 sa.bInheritHandle = TRUE;
2656 tty = CreateFileA (inferior_io_terminal, GENERIC_READ | GENERIC_WRITE,
2657 0, &sa, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
2658 if (tty == INVALID_HANDLE_VALUE)
2659 warning (_("Warning: Failed to open TTY %s, error %#x."),
2660 inferior_io_terminal, (unsigned) GetLastError ());
8ba42bc5
EZ
2661 }
2662 if (redirected || tty != INVALID_HANDLE_VALUE)
2663 {
2664 if (fd_inp >= 0)
2665 si.hStdInput = (HANDLE) _get_osfhandle (fd_inp);
2666 else if (tty != INVALID_HANDLE_VALUE)
2667 si.hStdInput = tty;
41b4aadc 2668 else
8ba42bc5
EZ
2669 si.hStdInput = GetStdHandle (STD_INPUT_HANDLE);
2670 if (fd_out >= 0)
2671 si.hStdOutput = (HANDLE) _get_osfhandle (fd_out);
2672 else if (tty != INVALID_HANDLE_VALUE)
2673 si.hStdOutput = tty;
2674 else
2675 si.hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
2676 if (fd_err >= 0)
2677 si.hStdError = (HANDLE) _get_osfhandle (fd_err);
2678 else if (tty != INVALID_HANDLE_VALUE)
2679 si.hStdError = tty;
2680 else
2681 si.hStdError = GetStdHandle (STD_ERROR_HANDLE);
2682 si.dwFlags |= STARTF_USESTDHANDLES;
41b4aadc 2683 }
2becadee 2684
8ba42bc5
EZ
2685 toexec = exec_file;
2686 /* Build the command line, a space-separated list of tokens where
2687 the first token is the name of the module to be executed.
2688 To avoid ambiguities introduced by spaces in the module name,
2689 we quote it. */
2690 args_len = strlen (toexec) + 2 /* quotes */ + allargs_len + 2;
2691 args = (char *) alloca (args_len);
2692 xsnprintf (args, args_len, "\"%s\" %s", toexec, allargs_copy);
2693
2694 flags |= DEBUG_ONLY_THIS_PROCESS;
2695
c93dbcba
EZ
2696 /* CreateProcess takes the environment list as a null terminated set of
2697 strings (i.e. two nulls terminate the list). */
2698
2699 /* Get total size for env strings. */
2700 for (envlen = 0, i = 0; in_env[i] && *in_env[i]; i++)
2701 envlen += strlen (in_env[i]) + 1;
2702
2703 envsize = sizeof (in_env[0]) * (i + 1);
2704 env = (char **) alloca (envsize);
2705 memcpy (env, in_env, envsize);
2706 /* Windows programs expect the environment block to be sorted. */
2707 qsort (env, i, sizeof (char *), envvar_cmp);
2708
0ae1c716 2709 w32env = (char *) alloca (envlen + 1);
c93dbcba
EZ
2710
2711 /* Copy env strings into new buffer. */
2712 for (temp = w32env, i = 0; env[i] && *env[i]; i++)
2713 {
2714 strcpy (temp, env[i]);
2715 temp += strlen (temp) + 1;
2716 }
2717
2718 /* Final nil string to terminate new env. */
2719 *temp = 0;
2720
dc05df57 2721 windows_init_thread_list ();
d0d0ab16
CV
2722 ret = CreateProcessA (0,
2723 args, /* command line */
2724 NULL, /* Security */
2725 NULL, /* thread */
2726 TRUE, /* inherit handles */
2727 flags, /* start flags */
c93dbcba 2728 w32env, /* environment */
d092c5a2 2729 inferior_cwd, /* current directory */
d0d0ab16
CV
2730 &si,
2731 &pi);
41b4aadc
CF
2732 if (tty != INVALID_HANDLE_VALUE)
2733 CloseHandle (tty);
8ba42bc5
EZ
2734 if (fd_inp >= 0)
2735 _close (fd_inp);
2736 if (fd_out >= 0)
2737 _close (fd_out);
2738 if (fd_err >= 0)
2739 _close (fd_err);
2740#endif /* !__CYGWIN__ */
2becadee 2741
24e60978 2742 if (!ret)
d50a0ce2 2743 error (_("Error creating process %s, (error %u)."),
8a3fe4f8 2744 exec_file, (unsigned) GetLastError ());
24e60978 2745
c1766e7d
PM
2746 CloseHandle (pi.hThread);
2747 CloseHandle (pi.hProcess);
2748
dfe7f3ac
CF
2749 if (useshell && shell[0] != '\0')
2750 saw_create = -1;
2751 else
2752 saw_create = 0;
2753
dc05df57 2754 do_initial_windows_stuff (ops, pi.dwProcessId, 0);
d3a09475 2755
17617f2d 2756 /* windows_continue (DBG_CONTINUE, -1, 0); */
24e60978
SC
2757}
2758
2759static void
dc05df57 2760windows_mourn_inferior (struct target_ops *ops)
24e60978 2761{
17617f2d 2762 (void) windows_continue (DBG_CONTINUE, -1, 0);
df7e5265 2763 x86_cleanup_dregs();
bf25528d
CF
2764 if (open_process_used)
2765 {
2766 CHECK (CloseHandle (current_process_handle));
2767 open_process_used = 0;
2768 }
c1ee2fb3 2769 inf_child_mourn_inferior (ops);
24e60978
SC
2770}
2771
24e60978 2772/* Send a SIGINT to the process group. This acts just like the user typed a
581e13c1 2773 ^C on the controlling terminal. */
24e60978 2774
b607efe7 2775static void
f6cfb427 2776windows_interrupt (struct target_ops *self)
24e60978 2777{
1ef980b9 2778 DEBUG_EVENTS (("gdb: GenerateConsoleCtrlEvent (CTRLC_EVENT, 0)\n"));
1e37c281 2779 CHECK (GenerateConsoleCtrlEvent (CTRL_C_EVENT, current_event.dwProcessId));
3a4b77d8 2780 registers_changed (); /* refresh register state */
24e60978
SC
2781}
2782
44f38867
PA
2783/* Helper for windows_xfer_partial that handles memory transfers.
2784 Arguments are like target_xfer_partial. */
2785
9b409511 2786static enum target_xfer_status
44f38867 2787windows_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
9b409511 2788 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
24e60978 2789{
5732a500 2790 SIZE_T done = 0;
44f38867 2791 BOOL success;
9e52adf9 2792 DWORD lasterror = 0;
44f38867
PA
2793
2794 if (writebuf != NULL)
24e60978 2795 {
a2388568 2796 DEBUG_MEM (("gdb: write target memory, %s bytes at %s\n",
b55e14c7 2797 pulongest (len), core_addr_to_string (memaddr)));
44f38867
PA
2798 success = WriteProcessMemory (current_process_handle,
2799 (LPVOID) (uintptr_t) memaddr, writebuf,
2800 len, &done);
9e52adf9 2801 if (!success)
7126d5c8 2802 lasterror = GetLastError ();
2b008701 2803 FlushInstructionCache (current_process_handle,
2c647436 2804 (LPCVOID) (uintptr_t) memaddr, len);
24e60978
SC
2805 }
2806 else
2807 {
a2388568 2808 DEBUG_MEM (("gdb: read target memory, %s bytes at %s\n",
b55e14c7 2809 pulongest (len), core_addr_to_string (memaddr)));
44f38867
PA
2810 success = ReadProcessMemory (current_process_handle,
2811 (LPCVOID) (uintptr_t) memaddr, readbuf,
2812 len, &done);
9e52adf9 2813 if (!success)
7126d5c8 2814 lasterror = GetLastError ();
24e60978 2815 }
9b409511 2816 *xfered_len = (ULONGEST) done;
9e52adf9 2817 if (!success && lasterror == ERROR_PARTIAL_COPY && done > 0)
9b409511 2818 return TARGET_XFER_OK;
9e52adf9 2819 else
9b409511 2820 return success ? TARGET_XFER_OK : TARGET_XFER_E_IO;
24e60978
SC
2821}
2822
3ee6f623 2823static void
7d85a9c0 2824windows_kill_inferior (struct target_ops *ops)
24e60978 2825{
3cee93ac
CF
2826 CHECK (TerminateProcess (current_process_handle, 0));
2827
b5edcb45
ILT
2828 for (;;)
2829 {
17617f2d 2830 if (!windows_continue (DBG_CONTINUE, -1, 1))
b5edcb45 2831 break;
3cee93ac 2832 if (!WaitForDebugEvent (&current_event, INFINITE))
b5edcb45 2833 break;
3cee93ac 2834 if (current_event.dwDebugEventCode == EXIT_PROCESS_DEBUG_EVENT)
b5edcb45
ILT
2835 break;
2836 }
2837
9eee20eb 2838 target_mourn_inferior (inferior_ptid); /* Or just windows_mourn_inferior? */
24e60978
SC
2839}
2840
24e60978 2841static void
de90e03d 2842windows_close (struct target_ops *self)
24e60978 2843{
dc05df57 2844 DEBUG_EVENTS (("gdb: windows_close, inferior_ptid=%d\n",
dfd4cc63 2845 ptid_get_pid (inferior_ptid)));
24e60978 2846}
1ef980b9 2847
581e13c1 2848/* Convert pid to printable format. */
7a114964 2849static const char *
117de6a9 2850windows_pid_to_str (struct target_ops *ops, ptid_t ptid)
24e60978 2851{
3ee6f623 2852 static char buf[80];
3ee6f623 2853
2dc38344
PA
2854 if (ptid_get_tid (ptid) != 0)
2855 {
2856 snprintf (buf, sizeof (buf), "Thread %d.0x%lx",
2857 ptid_get_pid (ptid), ptid_get_tid (ptid));
2858 return buf;
2859 }
2860
2861 return normal_pid_to_str (ptid);
3ee6f623
CF
2862}
2863
9b409511 2864static enum target_xfer_status
dc05df57 2865windows_xfer_shared_libraries (struct target_ops *ops,
9b409511
YQ
2866 enum target_object object, const char *annex,
2867 gdb_byte *readbuf, const gdb_byte *writebuf,
2868 ULONGEST offset, ULONGEST len,
2869 ULONGEST *xfered_len)
3cb8e7f6 2870{
de1b3c3d
PA
2871 struct obstack obstack;
2872 const char *buf;
2873 LONGEST len_avail;
3cb8e7f6 2874 struct so_list *so;
3cb8e7f6 2875
de1b3c3d 2876 if (writebuf)
2ed4b548 2877 return TARGET_XFER_E_IO;
3cb8e7f6 2878
de1b3c3d
PA
2879 obstack_init (&obstack);
2880 obstack_grow_str (&obstack, "<library-list>\n");
2881 for (so = solib_start.next; so; so = so->next)
d0e449a1
SM
2882 {
2883 lm_info_windows *li = (lm_info_windows *) so->lm_info;
2884
2885 windows_xfer_shared_library (so->so_name, (CORE_ADDR)
2886 (uintptr_t) li->load_addr,
2887 target_gdbarch (), &obstack);
2888 }
de1b3c3d 2889 obstack_grow_str0 (&obstack, "</library-list>\n");
3cb8e7f6 2890
0ae1c716 2891 buf = (const char *) obstack_finish (&obstack);
de1b3c3d
PA
2892 len_avail = strlen (buf);
2893 if (offset >= len_avail)
49dc7f4b
PM
2894 len= 0;
2895 else
2896 {
2897 if (len > len_avail - offset)
2898 len = len_avail - offset;
2899 memcpy (readbuf, buf + offset, len);
2900 }
3cb8e7f6 2901
de1b3c3d 2902 obstack_free (&obstack, NULL);
9b409511 2903 *xfered_len = (ULONGEST) len;
0837c976 2904 return len != 0 ? TARGET_XFER_OK : TARGET_XFER_EOF;
3cb8e7f6
CF
2905}
2906
9b409511 2907static enum target_xfer_status
dc05df57 2908windows_xfer_partial (struct target_ops *ops, enum target_object object,
9b409511
YQ
2909 const char *annex, gdb_byte *readbuf,
2910 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
2911 ULONGEST *xfered_len)
3cb8e7f6 2912{
de1b3c3d 2913 switch (object)
3cb8e7f6 2914 {
de1b3c3d 2915 case TARGET_OBJECT_MEMORY:
9b409511 2916 return windows_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
de1b3c3d
PA
2917
2918 case TARGET_OBJECT_LIBRARIES:
dc05df57 2919 return windows_xfer_shared_libraries (ops, object, annex, readbuf,
9b409511 2920 writebuf, offset, len, xfered_len);
3929abe9 2921
de1b3c3d 2922 default:
e75fdfca
TT
2923 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
2924 readbuf, writebuf, offset, len,
2925 xfered_len);
3929abe9 2926 }
02c5aecd
CF
2927}
2928
711e434b
PM
2929/* Provide thread local base, i.e. Thread Information Block address.
2930 Returns 1 if ptid is found and sets *ADDR to thread_local_base. */
2931
2932static int
bd7ae0f5
TT
2933windows_get_tib_address (struct target_ops *self,
2934 ptid_t ptid, CORE_ADDR *addr)
711e434b 2935{
876d1cd7 2936 windows_thread_info *th;
711e434b
PM
2937
2938 th = thread_rec (ptid_get_tid (ptid), 0);
2939 if (th == NULL)
2940 return 0;
2941
2942 if (addr != NULL)
2943 *addr = th->thread_local_base;
2944
2945 return 1;
2946}
2947
1e2f1c5c 2948static ptid_t
1e6b91a4 2949windows_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
1e2f1c5c
JB
2950{
2951 return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
2952}
2953
24cdb46e
РИ
2954/* Implementation of the to_thread_name method. */
2955
2956static const char *
2957windows_thread_name (struct target_ops *self, struct thread_info *thr)
2958{
2959 return thread_rec (ptid_get_tid (thr->ptid), 0)->name;
2960}
2961
51a9c8c5
PA
2962static struct target_ops *
2963windows_target (void)
3ee6f623 2964{
51a9c8c5
PA
2965 struct target_ops *t = inf_child_target ();
2966
51a9c8c5
PA
2967 t->to_close = windows_close;
2968 t->to_attach = windows_attach;
2969 t->to_attach_no_wait = 1;
2970 t->to_detach = windows_detach;
2971 t->to_resume = windows_resume;
2972 t->to_wait = windows_wait;
2973 t->to_fetch_registers = windows_fetch_inferior_registers;
2974 t->to_store_registers = windows_store_inferior_registers;
2975 t->to_xfer_partial = windows_xfer_partial;
2976 t->to_files_info = windows_files_info;
2977 t->to_kill = windows_kill_inferior;
2978 t->to_create_inferior = windows_create_inferior;
2979 t->to_mourn_inferior = windows_mourn_inferior;
2980 t->to_thread_alive = windows_thread_alive;
2981 t->to_pid_to_str = windows_pid_to_str;
bfedc46a 2982 t->to_interrupt = windows_interrupt;
51a9c8c5
PA
2983 t->to_pid_to_exec_file = windows_pid_to_exec_file;
2984 t->to_get_ada_task_ptid = windows_get_ada_task_ptid;
2985 t->to_get_tib_address = windows_get_tib_address;
24cdb46e 2986 t->to_thread_name = windows_thread_name;
51a9c8c5
PA
2987
2988 return t;
c719b714 2989}
24e60978
SC
2990
2991void
dc05df57 2992_initialize_windows_nat (void)
24e60978 2993{
51a9c8c5
PA
2994 struct target_ops *t;
2995
2996 t = windows_target ();
2997
df7e5265 2998 x86_use_watchpoints (t);
51a9c8c5 2999
df7e5265
GB
3000 x86_dr_low.set_control = cygwin_set_dr7;
3001 x86_dr_low.set_addr = cygwin_set_dr;
3002 x86_dr_low.get_addr = cygwin_get_dr;
3003 x86_dr_low.get_status = cygwin_get_dr6;
3004 x86_dr_low.get_control = cygwin_get_dr7;
51a9c8c5 3005
df7e5265
GB
3006 /* x86_dr_low.debug_register_length field is set by
3007 calling x86_set_debug_register_length function
51a9c8c5 3008 in processor windows specific native file. */
fa58ee11 3009
51a9c8c5 3010 add_target (t);
1ef980b9 3011
d0d0ab16
CV
3012#ifdef __CYGWIN__
3013 cygwin_internal (CW_SET_DOS_FILE_WARNING, 0);
3014#endif
3015
463888ab
РИ
3016 add_com ("signal-event", class_run, signal_event_command, _("\
3017Signal a crashed process with event ID, to allow its debugging.\n\
3018This command is needed in support of setting up GDB as JIT debugger on \
3019MS-Windows. The command should be invoked from the GDB command line using \
3020the '-ex' command-line option. The ID of the event that blocks the \
3021crashed process will be supplied by the Windows JIT debugging mechanism."));
3022
10325bc5 3023#ifdef __CYGWIN__
5bf193a2
AC
3024 add_setshow_boolean_cmd ("shell", class_support, &useshell, _("\
3025Set use of shell to start subprocess."), _("\
3026Show use of shell to start subprocess."), NULL,
3027 NULL,
3028 NULL, /* FIXME: i18n: */
3029 &setlist, &showlist);
3030
581e13c1
MS
3031 add_setshow_boolean_cmd ("cygwin-exceptions", class_support,
3032 &cygwin_exceptions, _("\
09280ddf
CF
3033Break when an exception is detected in the Cygwin DLL itself."), _("\
3034Show whether gdb breaks on exceptions in the Cygwin DLL itself."), NULL,
3035 NULL,
3036 NULL, /* FIXME: i18n: */
3037 &setlist, &showlist);
10325bc5 3038#endif
09280ddf 3039
5bf193a2
AC
3040 add_setshow_boolean_cmd ("new-console", class_support, &new_console, _("\
3041Set creation of new console when creating child process."), _("\
3042Show creation of new console when creating child process."), NULL,
3043 NULL,
3044 NULL, /* FIXME: i18n: */
3045 &setlist, &showlist);
3046
3047 add_setshow_boolean_cmd ("new-group", class_support, &new_group, _("\
3048Set creation of new group when creating child process."), _("\
3049Show creation of new group when creating child process."), NULL,
3050 NULL,
3051 NULL, /* FIXME: i18n: */
3052 &setlist, &showlist);
3053
3054 add_setshow_boolean_cmd ("debugexec", class_support, &debug_exec, _("\
3055Set whether to display execution in child process."), _("\
3056Show whether to display execution in child process."), NULL,
3057 NULL,
3058 NULL, /* FIXME: i18n: */
3059 &setlist, &showlist);
3060
3061 add_setshow_boolean_cmd ("debugevents", class_support, &debug_events, _("\
3062Set whether to display kernel events in child process."), _("\
3063Show whether to display kernel events in child process."), NULL,
3064 NULL,
3065 NULL, /* FIXME: i18n: */
3066 &setlist, &showlist);
3067
3068 add_setshow_boolean_cmd ("debugmemory", class_support, &debug_memory, _("\
3069Set whether to display memory accesses in child process."), _("\
3070Show whether to display memory accesses in child process."), NULL,
3071 NULL,
3072 NULL, /* FIXME: i18n: */
3073 &setlist, &showlist);
3074
3075 add_setshow_boolean_cmd ("debugexceptions", class_support,
3076 &debug_exceptions, _("\
3077Set whether to display kernel exceptions in child process."), _("\
3078Show whether to display kernel exceptions in child process."), NULL,
3079 NULL,
3080 NULL, /* FIXME: i18n: */
3081 &setlist, &showlist);
1ef980b9 3082
711e434b 3083 init_w32_command_list ();
c1748f97
PM
3084
3085 add_cmd ("selector", class_info, display_selectors,
1a966eab 3086 _("Display selectors infos."),
c1748f97 3087 &info_w32_cmdlist);
24e60978 3088}
3cee93ac 3089
fa4ba8da
PM
3090/* Hardware watchpoint support, adapted from go32-nat.c code. */
3091
3092/* Pass the address ADDR to the inferior in the I'th debug register.
3093 Here we just store the address in dr array, the registers will be
dc05df57 3094 actually set up when windows_continue is called. */
9bb9e8ad 3095static void
fa4ba8da
PM
3096cygwin_set_dr (int i, CORE_ADDR addr)
3097{
3098 if (i < 0 || i > 3)
3099 internal_error (__FILE__, __LINE__,
e2e0b3e5 3100 _("Invalid register %d in cygwin_set_dr.\n"), i);
41b4aadc 3101 dr[i] = addr;
fa4ba8da
PM
3102 debug_registers_changed = 1;
3103 debug_registers_used = 1;
3104}
3105
3106/* Pass the value VAL to the inferior in the DR7 debug control
3107 register. Here we just store the address in D_REGS, the watchpoint
dc05df57 3108 will be actually set up in windows_wait. */
9bb9e8ad
PM
3109static void
3110cygwin_set_dr7 (unsigned long val)
fa4ba8da 3111{
9bb9e8ad 3112 dr[7] = (CORE_ADDR) val;
fa4ba8da
PM
3113 debug_registers_changed = 1;
3114 debug_registers_used = 1;
3115}
3116
7b50312a
PA
3117/* Get the value of debug register I from the inferior. */
3118
3119static CORE_ADDR
3120cygwin_get_dr (int i)
3121{
3122 return dr[i];
3123}
3124
fa4ba8da
PM
3125/* Get the value of the DR6 debug status register from the inferior.
3126 Here we just return the value stored in dr[6]
3127 by the last call to thread_rec for current_event.dwThreadId id. */
9bb9e8ad 3128static unsigned long
fa4ba8da
PM
3129cygwin_get_dr6 (void)
3130{
9bb9e8ad 3131 return (unsigned long) dr[6];
fa4ba8da
PM
3132}
3133
7b50312a
PA
3134/* Get the value of the DR7 debug status register from the inferior.
3135 Here we just return the value stored in dr[7] by the last call to
3136 thread_rec for current_event.dwThreadId id. */
3137
3138static unsigned long
3139cygwin_get_dr7 (void)
3140{
3141 return (unsigned long) dr[7];
3142}
3143
2dc38344 3144/* Determine if the thread referenced by "ptid" is alive
3cee93ac 3145 by "polling" it. If WaitForSingleObject returns WAIT_OBJECT_0
581e13c1 3146 it means that the thread has died. Otherwise it is assumed to be alive. */
3cee93ac 3147static int
28439f5e 3148windows_thread_alive (struct target_ops *ops, ptid_t ptid)
3cee93ac 3149{
2dc38344
PA
3150 int tid;
3151
3152 gdb_assert (ptid_get_tid (ptid) != 0);
3153 tid = ptid_get_tid (ptid);
39f77062 3154
581e13c1
MS
3155 return WaitForSingleObject (thread_rec (tid, FALSE)->h, 0) == WAIT_OBJECT_0
3156 ? FALSE : TRUE;
3cee93ac
CF
3157}
3158
2a3d5645
CF
3159void
3160_initialize_check_for_gdb_ini (void)
3161{
3162 char *homedir;
3163 if (inhibit_gdbinit)
3164 return;
3165
3166 homedir = getenv ("HOME");
3167 if (homedir)
3168 {
3169 char *p;
3170 char *oldini = (char *) alloca (strlen (homedir) +
1270fac6 3171 sizeof ("gdb.ini") + 1);
2a3d5645
CF
3172 strcpy (oldini, homedir);
3173 p = strchr (oldini, '\0');
0ba1096a 3174 if (p > oldini && !IS_DIR_SEPARATOR (p[-1]))
2a3d5645
CF
3175 *p++ = '/';
3176 strcpy (p, "gdb.ini");
3177 if (access (oldini, 0) == 0)
3178 {
3179 int len = strlen (oldini);
1270fac6 3180 char *newini = (char *) alloca (len + 2);
08850b56 3181
1270fac6 3182 xsnprintf (newini, len + 2, "%.*s.gdbinit",
08850b56 3183 (int) (len - (sizeof ("gdb.ini") - 1)), oldini);
8a3fe4f8 3184 warning (_("obsolete '%s' found. Rename to '%s'."), oldini, newini);
2a3d5645
CF
3185 }
3186 }
3187}
33605d39 3188
2b008701 3189/* Define dummy functions which always return error for the rare cases where
581e13c1 3190 these functions could not be found. */
2b008701
CF
3191static BOOL WINAPI
3192bad_DebugActiveProcessStop (DWORD w)
3193{
3194 return FALSE;
3195}
3196static BOOL WINAPI
3197bad_DebugBreakProcess (HANDLE w)
3198{
3199 return FALSE;
3200}
3201static BOOL WINAPI
3202bad_DebugSetProcessKillOnExit (BOOL w)
3203{
3204 return FALSE;
3205}
3206static BOOL WINAPI
3207bad_EnumProcessModules (HANDLE w, HMODULE *x, DWORD y, LPDWORD z)
3208{
3209 return FALSE;
3210}
b3c613f2
CF
3211
3212#ifdef __USEWIDE
2b008701 3213static DWORD WINAPI
b3c613f2 3214bad_GetModuleFileNameExW (HANDLE w, HMODULE x, LPWSTR y, DWORD z)
2b008701
CF
3215{
3216 return 0;
3217}
d0d0ab16
CV
3218#else
3219static DWORD WINAPI
b3c613f2 3220bad_GetModuleFileNameExA (HANDLE w, HMODULE x, LPSTR y, DWORD z)
d0d0ab16
CV
3221{
3222 return 0;
3223}
3224#endif
b3c613f2 3225
2b008701
CF
3226static BOOL WINAPI
3227bad_GetModuleInformation (HANDLE w, HMODULE x, LPMODULEINFO y, DWORD z)
3228{
3229 return FALSE;
3230}
3231
418c6cb3
CF
3232static BOOL WINAPI
3233bad_OpenProcessToken (HANDLE w, DWORD x, PHANDLE y)
3234{
3235 return FALSE;
3236}
3237
cd44747c
PM
3238static BOOL WINAPI
3239bad_GetCurrentConsoleFont (HANDLE w, BOOL bMaxWindow, CONSOLE_FONT_INFO *f)
3240{
3241 f->nFont = 0;
3242 return 1;
3243}
3244static COORD WINAPI
3245bad_GetConsoleFontSize (HANDLE w, DWORD nFont)
3246{
3247 COORD size;
3248 size.X = 8;
3249 size.Y = 12;
3250 return size;
3251}
3252
2b008701 3253/* Load any functions which may not be available in ancient versions
581e13c1 3254 of Windows. */
d603d4b3 3255
33605d39 3256void
2b008701 3257_initialize_loadable (void)
33605d39 3258{
2b008701
CF
3259 HMODULE hm = NULL;
3260
43499ea3
PA
3261#define GPA(m, func) \
3262 func = (func ## _ftype *) GetProcAddress (m, #func)
3263
2b008701
CF
3264 hm = LoadLibrary ("kernel32.dll");
3265 if (hm)
33605d39 3266 {
43499ea3
PA
3267 GPA (hm, DebugActiveProcessStop);
3268 GPA (hm, DebugBreakProcess);
3269 GPA (hm, DebugSetProcessKillOnExit);
3270 GPA (hm, GetConsoleFontSize);
3271 GPA (hm, DebugActiveProcessStop);
3272 GPA (hm, GetCurrentConsoleFont);
2b008701 3273 }
33605d39 3274
2b008701 3275 /* Set variables to dummy versions of these processes if the function
581e13c1 3276 wasn't found in kernel32.dll. */
b3c613f2
CF
3277 if (!DebugBreakProcess)
3278 DebugBreakProcess = bad_DebugBreakProcess;
3279 if (!DebugActiveProcessStop || !DebugSetProcessKillOnExit)
2b008701 3280 {
b3c613f2
CF
3281 DebugActiveProcessStop = bad_DebugActiveProcessStop;
3282 DebugSetProcessKillOnExit = bad_DebugSetProcessKillOnExit;
2b008701 3283 }
cd44747c
PM
3284 if (!GetConsoleFontSize)
3285 GetConsoleFontSize = bad_GetConsoleFontSize;
3286 if (!GetCurrentConsoleFont)
3287 GetCurrentConsoleFont = bad_GetCurrentConsoleFont;
33605d39 3288
2b008701 3289 /* Load optional functions used for retrieving filename information
581e13c1 3290 associated with the currently debugged process or its dlls. */
2b008701
CF
3291 hm = LoadLibrary ("psapi.dll");
3292 if (hm)
3293 {
43499ea3
PA
3294 GPA (hm, EnumProcessModules);
3295 GPA (hm, GetModuleInformation);
aec47d1d
JB
3296 GetModuleFileNameEx = (GetModuleFileNameEx_ftype *)
3297 GetProcAddress (hm, GetModuleFileNameEx_name);
33605d39
CF
3298 }
3299
b3c613f2 3300 if (!EnumProcessModules || !GetModuleInformation || !GetModuleFileNameEx)
2b008701
CF
3301 {
3302 /* Set variables to dummy versions of these processes if the function
581e13c1 3303 wasn't found in psapi.dll. */
b3c613f2
CF
3304 EnumProcessModules = bad_EnumProcessModules;
3305 GetModuleInformation = bad_GetModuleInformation;
3306 GetModuleFileNameEx = bad_GetModuleFileNameEx;
581e13c1
MS
3307 /* This will probably fail on Windows 9x/Me. Let the user know
3308 that we're missing some functionality. */
3309 warning(_("\
3310cannot automatically find executable file or library to read symbols.\n\
3311Use \"file\" or \"dll\" command to load executable/libraries directly."));
418c6cb3
CF
3312 }
3313
3314 hm = LoadLibrary ("advapi32.dll");
3315 if (hm)
3316 {
43499ea3
PA
3317 GPA (hm, OpenProcessToken);
3318 GPA (hm, LookupPrivilegeValueA);
3319 GPA (hm, AdjustTokenPrivileges);
418c6cb3 3320 /* Only need to set one of these since if OpenProcessToken fails nothing
581e13c1
MS
3321 else is needed. */
3322 if (!OpenProcessToken || !LookupPrivilegeValueA
3323 || !AdjustTokenPrivileges)
b3c613f2 3324 OpenProcessToken = bad_OpenProcessToken;
2b008701 3325 }
43499ea3
PA
3326
3327#undef GPA
33605d39 3328}
This page took 2.334703 seconds and 4 git commands to generate.