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