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