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