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