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