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