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