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