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