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