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