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