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