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