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