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