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