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