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