Fix gdb mingw build
[external/binutils.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 (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 (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 (r, (char *) &l);
572     }
573   else if (r >= 0)
574     regcache->raw_supply (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->ptid ());
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 (r, ((char *) &th->context) + mappings[r]);
600   else
601     {
602       for (r = 0; r < gdbarch_num_regs (regcache->arch ()); r++)
603         do_windows_store_inferior_registers (regcache, th, r);
604     }
605 }
606
607 /* Store a new register value into the context of the thread tied to
608    REGCACHE.  */
609
610 void
611 windows_nat_target::store_registers (struct regcache *regcache, int r)
612 {
613   DWORD pid = ptid_get_tid (regcache->ptid ());
614   windows_thread_info *th = thread_rec (pid, TRUE);
615
616   /* Check if TH exists.  Windows sometimes uses a non-existent
617      thread id in its events.  */
618   if (th != NULL)
619     do_windows_store_inferior_registers (regcache, th, r);
620 }
621
622 /* Encapsulate the information required in a call to
623    symbol_file_add_args.  */
624 struct safe_symbol_file_add_args
625 {
626   char *name;
627   int from_tty;
628   section_addr_info *addrs;
629   int mainline;
630   int flags;
631   struct ui_file *err, *out;
632   struct objfile *ret;
633 };
634
635 /* Maintain a linked list of "so" information.  */
636 struct lm_info_windows : public lm_info_base
637 {
638   LPVOID load_addr = 0;
639 };
640
641 static struct so_list solib_start, *solib_end;
642
643 static struct so_list *
644 windows_make_so (const char *name, LPVOID load_addr)
645 {
646   struct so_list *so;
647   char *p;
648 #ifndef __CYGWIN__
649   char buf[__PMAX];
650   char cwd[__PMAX];
651   WIN32_FIND_DATA w32_fd;
652   HANDLE h = FindFirstFile(name, &w32_fd);
653
654   if (h == INVALID_HANDLE_VALUE)
655     strcpy (buf, name);
656   else
657     {
658       FindClose (h);
659       strcpy (buf, name);
660       if (GetCurrentDirectory (MAX_PATH + 1, cwd))
661         {
662           p = strrchr (buf, '\\');
663           if (p)
664             p[1] = '\0';
665           SetCurrentDirectory (buf);
666           GetFullPathName (w32_fd.cFileName, MAX_PATH, buf, &p);
667           SetCurrentDirectory (cwd);
668         }
669     }
670   if (strcasecmp (buf, "ntdll.dll") == 0)
671     {
672       GetSystemDirectory (buf, sizeof (buf));
673       strcat (buf, "\\ntdll.dll");
674     }
675 #else
676   cygwin_buf_t buf[__PMAX];
677
678   buf[0] = 0;
679   if (access (name, F_OK) != 0)
680     {
681       if (strcasecmp (name, "ntdll.dll") == 0)
682 #ifdef __USEWIDE
683         {
684           GetSystemDirectoryW (buf, sizeof (buf) / sizeof (wchar_t));
685           wcscat (buf, L"\\ntdll.dll");
686         }
687 #else
688         {
689           GetSystemDirectoryA (buf, sizeof (buf) / sizeof (wchar_t));
690           strcat (buf, "\\ntdll.dll");
691         }
692 #endif
693     }
694 #endif
695   so = XCNEW (struct so_list);
696   lm_info_windows *li = new lm_info_windows;
697   so->lm_info = li;
698   li->load_addr = load_addr;
699   strcpy (so->so_original_name, name);
700 #ifndef __CYGWIN__
701   strcpy (so->so_name, buf);
702 #else
703   if (buf[0])
704     cygwin_conv_path (CCP_WIN_W_TO_POSIX, buf, so->so_name,
705                       SO_NAME_MAX_PATH_SIZE);
706   else
707     {
708       char *rname = realpath (name, NULL);
709       if (rname && strlen (rname) < SO_NAME_MAX_PATH_SIZE)
710         {
711           strcpy (so->so_name, rname);
712           free (rname);
713         }
714       else
715         error (_("dll path too long"));
716     }
717   /* Record cygwin1.dll .text start/end.  */
718   p = strchr (so->so_name, '\0') - (sizeof ("/cygwin1.dll") - 1);
719   if (p >= so->so_name && strcasecmp (p, "/cygwin1.dll") == 0)
720     {
721       asection *text = NULL;
722       CORE_ADDR text_vma;
723
724       gdb_bfd_ref_ptr abfd (gdb_bfd_open (so->so_name, "pei-i386", -1));
725
726       if (abfd == NULL)
727         return so;
728
729       if (bfd_check_format (abfd.get (), bfd_object))
730         text = bfd_get_section_by_name (abfd.get (), ".text");
731
732       if (!text)
733         return so;
734
735       /* The symbols in a dll are offset by 0x1000, which is the
736          offset from 0 of the first byte in an image - because of the
737          file header and the section alignment.  */
738       cygwin_load_start = (CORE_ADDR) (uintptr_t) ((char *)
739                                                    load_addr + 0x1000);
740       cygwin_load_end = cygwin_load_start + bfd_section_size (abfd.get (),
741                                                               text);
742     }
743 #endif
744
745   return so;
746 }
747
748 static char *
749 get_image_name (HANDLE h, void *address, int unicode)
750 {
751 #ifdef __CYGWIN__
752   static char buf[__PMAX];
753 #else
754   static char buf[(2 * __PMAX) + 1];
755 #endif
756   DWORD size = unicode ? sizeof (WCHAR) : sizeof (char);
757   char *address_ptr;
758   int len = 0;
759   char b[2];
760   SIZE_T done;
761
762   /* Attempt to read the name of the dll that was detected.
763      This is documented to work only when actively debugging
764      a program.  It will not work for attached processes.  */
765   if (address == NULL)
766     return NULL;
767
768   /* See if we could read the address of a string, and that the
769      address isn't null.  */
770   if (!ReadProcessMemory (h, address,  &address_ptr,
771                           sizeof (address_ptr), &done)
772       || done != sizeof (address_ptr) || !address_ptr)
773     return NULL;
774
775   /* Find the length of the string.  */
776   while (ReadProcessMemory (h, address_ptr + len++ * size, &b, size, &done)
777          && (b[0] != 0 || b[size - 1] != 0) && done == size)
778     continue;
779
780   if (!unicode)
781     ReadProcessMemory (h, address_ptr, buf, len, &done);
782   else
783     {
784       WCHAR *unicode_address = (WCHAR *) alloca (len * sizeof (WCHAR));
785       ReadProcessMemory (h, address_ptr, unicode_address, len * sizeof (WCHAR),
786                          &done);
787 #ifdef __CYGWIN__
788       wcstombs (buf, unicode_address, __PMAX);
789 #else
790       WideCharToMultiByte (CP_ACP, 0, unicode_address, len, buf, sizeof buf,
791                            0, 0);
792 #endif
793     }
794
795   return buf;
796 }
797
798 /* Handle a DLL load event, and return 1.
799
800    This function assumes that this event did not occur during inferior
801    initialization, where their event info may be incomplete (see
802    do_initial_windows_stuff and windows_add_all_dlls for more info
803    on how we handle DLL loading during that phase).  */
804
805 static void
806 handle_load_dll ()
807 {
808   LOAD_DLL_DEBUG_INFO *event = &current_event.u.LoadDll;
809   char *dll_name;
810
811   /* Try getting the DLL name via the lpImageName field of the event.
812      Note that Microsoft documents this fields as strictly optional,
813      in the sense that it might be NULL.  And the first DLL event in
814      particular is explicitly documented as "likely not pass[ed]"
815      (source: MSDN LOAD_DLL_DEBUG_INFO structure).  */
816   dll_name = get_image_name (current_process_handle,
817                              event->lpImageName, event->fUnicode);
818   if (!dll_name)
819     return;
820
821   solib_end->next = windows_make_so (dll_name, event->lpBaseOfDll);
822   solib_end = solib_end->next;
823
824   lm_info_windows *li = (lm_info_windows *) solib_end->lm_info;
825
826   DEBUG_EVENTS (("gdb: Loading dll \"%s\" at %s.\n", solib_end->so_name,
827                  host_address_to_string (li->load_addr)));
828 }
829
830 static void
831 windows_free_so (struct so_list *so)
832 {
833   lm_info_windows *li = (lm_info_windows *) so->lm_info;
834
835   delete li;
836   xfree (so);
837 }
838
839 /* Handle a DLL unload event.
840    Return 1 if successful, or zero otherwise.
841
842    This function assumes that this event did not occur during inferior
843    initialization, where their event info may be incomplete (see
844    do_initial_windows_stuff and windows_add_all_dlls for more info
845    on how we handle DLL loading during that phase).  */
846
847 static void
848 handle_unload_dll ()
849 {
850   LPVOID lpBaseOfDll = current_event.u.UnloadDll.lpBaseOfDll;
851   struct so_list *so;
852
853   for (so = &solib_start; so->next != NULL; so = so->next)
854     {
855       lm_info_windows *li_next = (lm_info_windows *) so->next->lm_info;
856
857       if (li_next->load_addr == lpBaseOfDll)
858         {
859           struct so_list *sodel = so->next;
860
861           so->next = sodel->next;
862           if (!so->next)
863             solib_end = so;
864           DEBUG_EVENTS (("gdb: Unloading dll \"%s\".\n", sodel->so_name));
865
866           windows_free_so (sodel);
867           return;
868         }
869     }
870
871   /* We did not find any DLL that was previously loaded at this address,
872      so register a complaint.  We do not report an error, because we have
873      observed that this may be happening under some circumstances.  For
874      instance, running 32bit applications on x64 Windows causes us to receive
875      4 mysterious UNLOAD_DLL_DEBUG_EVENTs during the startup phase (these
876      events are apparently caused by the WOW layer, the interface between
877      32bit and 64bit worlds).  */
878   complaint (_("dll starting at %s not found."),
879              host_address_to_string (lpBaseOfDll));
880 }
881
882 /* Call FUNC wrapped in a TRY/CATCH that swallows all GDB
883    exceptions.  */
884
885 static void
886 catch_errors (void (*func) ())
887 {
888   TRY
889     {
890       func ();
891     }
892   CATCH (ex, RETURN_MASK_ALL)
893     {
894       exception_print (gdb_stderr, ex);
895     }
896   END_CATCH
897 }
898
899 /* Clear list of loaded DLLs.  */
900 static void
901 windows_clear_solib (void)
902 {
903   solib_start.next = NULL;
904   solib_end = &solib_start;
905 }
906
907 static void
908 signal_event_command (const char *args, int from_tty)
909 {
910   uintptr_t event_id = 0;
911   char *endargs = NULL;
912
913   if (args == NULL)
914     error (_("signal-event requires an argument (integer event id)"));
915
916   event_id = strtoumax (args, &endargs, 10);
917
918   if ((errno == ERANGE) || (event_id == 0) || (event_id > UINTPTR_MAX) ||
919       ((HANDLE) event_id == INVALID_HANDLE_VALUE))
920     error (_("Failed to convert `%s' to event id"), args);
921
922   SetEvent ((HANDLE) event_id);
923   CloseHandle ((HANDLE) event_id);
924 }
925
926 /* Handle DEBUG_STRING output from child process.
927    Cygwin prepends its messages with a "cygwin:".  Interpret this as
928    a Cygwin signal.  Otherwise just print the string as a warning.  */
929 static int
930 handle_output_debug_string (struct target_waitstatus *ourstatus)
931 {
932   gdb::unique_xmalloc_ptr<char> s;
933   int retval = 0;
934
935   if (!target_read_string
936         ((CORE_ADDR) (uintptr_t) current_event.u.DebugString.lpDebugStringData,
937          &s, 1024, 0)
938       || !s || !*(s.get ()))
939     /* nothing to do */;
940   else if (!startswith (s.get (), _CYGWIN_SIGNAL_STRING))
941     {
942 #ifdef __CYGWIN__
943       if (!startswith (s.get (), "cYg"))
944 #endif
945         {
946           char *p = strchr (s.get (), '\0');
947
948           if (p > s.get () && *--p == '\n')
949             *p = '\0';
950           warning (("%s"), s.get ());
951         }
952     }
953 #ifdef __CYGWIN__
954   else
955     {
956       /* Got a cygwin signal marker.  A cygwin signal is followed by
957          the signal number itself and then optionally followed by the
958          thread id and address to saved context within the DLL.  If
959          these are supplied, then the given thread is assumed to have
960          issued the signal and the context from the thread is assumed
961          to be stored at the given address in the inferior.  Tell gdb
962          to treat this like a real signal.  */
963       char *p;
964       int sig = strtol (s.get () + sizeof (_CYGWIN_SIGNAL_STRING) - 1, &p, 0);
965       gdb_signal gotasig = gdb_signal_from_host (sig);
966
967       ourstatus->value.sig = gotasig;
968       if (gotasig)
969         {
970           LPCVOID x;
971           SIZE_T n;
972
973           ourstatus->kind = TARGET_WAITKIND_STOPPED;
974           retval = strtoul (p, &p, 0);
975           if (!retval)
976             retval = main_thread_id;
977           else if ((x = (LPCVOID) (uintptr_t) strtoull (p, NULL, 0))
978                    && ReadProcessMemory (current_process_handle, x,
979                                          &saved_context,
980                                          __COPY_CONTEXT_SIZE, &n)
981                    && n == __COPY_CONTEXT_SIZE)
982             have_saved_context = 1;
983         }
984     }
985 #endif
986
987   return retval;
988 }
989
990 static int
991 display_selector (HANDLE thread, DWORD sel)
992 {
993   LDT_ENTRY info;
994   if (GetThreadSelectorEntry (thread, sel, &info))
995     {
996       int base, limit;
997       printf_filtered ("0x%03x: ", (unsigned) sel);
998       if (!info.HighWord.Bits.Pres)
999         {
1000           puts_filtered ("Segment not present\n");
1001           return 0;
1002         }
1003       base = (info.HighWord.Bits.BaseHi << 24) +
1004              (info.HighWord.Bits.BaseMid << 16)
1005              + info.BaseLow;
1006       limit = (info.HighWord.Bits.LimitHi << 16) + info.LimitLow;
1007       if (info.HighWord.Bits.Granularity)
1008         limit = (limit << 12) | 0xfff;
1009       printf_filtered ("base=0x%08x limit=0x%08x", base, limit);
1010       if (info.HighWord.Bits.Default_Big)
1011         puts_filtered(" 32-bit ");
1012       else
1013         puts_filtered(" 16-bit ");
1014       switch ((info.HighWord.Bits.Type & 0xf) >> 1)
1015         {
1016         case 0:
1017           puts_filtered ("Data (Read-Only, Exp-up");
1018           break;
1019         case 1:
1020           puts_filtered ("Data (Read/Write, Exp-up");
1021           break;
1022         case 2:
1023           puts_filtered ("Unused segment (");
1024           break;
1025         case 3:
1026           puts_filtered ("Data (Read/Write, Exp-down");
1027           break;
1028         case 4:
1029           puts_filtered ("Code (Exec-Only, N.Conf");
1030           break;
1031         case 5:
1032           puts_filtered ("Code (Exec/Read, N.Conf");
1033           break;
1034         case 6:
1035           puts_filtered ("Code (Exec-Only, Conf");
1036           break;
1037         case 7:
1038           puts_filtered ("Code (Exec/Read, Conf");
1039           break;
1040         default:
1041           printf_filtered ("Unknown type 0x%x",info.HighWord.Bits.Type);
1042         }
1043       if ((info.HighWord.Bits.Type & 0x1) == 0)
1044         puts_filtered(", N.Acc");
1045       puts_filtered (")\n");
1046       if ((info.HighWord.Bits.Type & 0x10) == 0)
1047         puts_filtered("System selector ");
1048       printf_filtered ("Priviledge level = %d. ", info.HighWord.Bits.Dpl);
1049       if (info.HighWord.Bits.Granularity)
1050         puts_filtered ("Page granular.\n");
1051       else
1052         puts_filtered ("Byte granular.\n");
1053       return 1;
1054     }
1055   else
1056     {
1057       DWORD err = GetLastError ();
1058       if (err == ERROR_NOT_SUPPORTED)
1059         printf_filtered ("Function not supported\n");
1060       else
1061         printf_filtered ("Invalid selector 0x%x.\n", (unsigned) sel);
1062       return 0;
1063     }
1064 }
1065
1066 static void
1067 display_selectors (const char * args, int from_tty)
1068 {
1069   if (!current_thread)
1070     {
1071       puts_filtered ("Impossible to display selectors now.\n");
1072       return;
1073     }
1074   if (!args)
1075     {
1076
1077       puts_filtered ("Selector $cs\n");
1078       display_selector (current_thread->h,
1079         current_thread->context.SegCs);
1080       puts_filtered ("Selector $ds\n");
1081       display_selector (current_thread->h,
1082         current_thread->context.SegDs);
1083       puts_filtered ("Selector $es\n");
1084       display_selector (current_thread->h,
1085         current_thread->context.SegEs);
1086       puts_filtered ("Selector $ss\n");
1087       display_selector (current_thread->h,
1088         current_thread->context.SegSs);
1089       puts_filtered ("Selector $fs\n");
1090       display_selector (current_thread->h,
1091         current_thread->context.SegFs);
1092       puts_filtered ("Selector $gs\n");
1093       display_selector (current_thread->h,
1094         current_thread->context.SegGs);
1095     }
1096   else
1097     {
1098       int sel;
1099       sel = parse_and_eval_long (args);
1100       printf_filtered ("Selector \"%s\"\n",args);
1101       display_selector (current_thread->h, sel);
1102     }
1103 }
1104
1105 #define DEBUG_EXCEPTION_SIMPLE(x)       if (debug_exceptions) \
1106   printf_unfiltered ("gdb: Target exception %s at %s\n", x, \
1107     host_address_to_string (\
1108       current_event.u.Exception.ExceptionRecord.ExceptionAddress))
1109
1110 static handle_exception_result
1111 handle_exception (struct target_waitstatus *ourstatus)
1112 {
1113   EXCEPTION_RECORD *rec = &current_event.u.Exception.ExceptionRecord;
1114   DWORD code = rec->ExceptionCode;
1115   handle_exception_result result = HANDLE_EXCEPTION_HANDLED;
1116
1117   ourstatus->kind = TARGET_WAITKIND_STOPPED;
1118
1119   /* Record the context of the current thread.  */
1120   thread_rec (current_event.dwThreadId, -1);
1121
1122   switch (code)
1123     {
1124     case EXCEPTION_ACCESS_VIOLATION:
1125       DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ACCESS_VIOLATION");
1126       ourstatus->value.sig = GDB_SIGNAL_SEGV;
1127 #ifdef __CYGWIN__
1128       {
1129         /* See if the access violation happened within the cygwin DLL
1130            itself.  Cygwin uses a kind of exception handling to deal
1131            with passed-in invalid addresses.  gdb should not treat
1132            these as real SEGVs since they will be silently handled by
1133            cygwin.  A real SEGV will (theoretically) be caught by
1134            cygwin later in the process and will be sent as a
1135            cygwin-specific-signal.  So, ignore SEGVs if they show up
1136            within the text segment of the DLL itself.  */
1137         const char *fn;
1138         CORE_ADDR addr = (CORE_ADDR) (uintptr_t) rec->ExceptionAddress;
1139
1140         if ((!cygwin_exceptions && (addr >= cygwin_load_start
1141                                     && addr < cygwin_load_end))
1142             || (find_pc_partial_function (addr, &fn, NULL, NULL)
1143                 && startswith (fn, "KERNEL32!IsBad")))
1144           return HANDLE_EXCEPTION_UNHANDLED;
1145       }
1146 #endif
1147       break;
1148     case STATUS_STACK_OVERFLOW:
1149       DEBUG_EXCEPTION_SIMPLE ("STATUS_STACK_OVERFLOW");
1150       ourstatus->value.sig = GDB_SIGNAL_SEGV;
1151       break;
1152     case STATUS_FLOAT_DENORMAL_OPERAND:
1153       DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DENORMAL_OPERAND");
1154       ourstatus->value.sig = GDB_SIGNAL_FPE;
1155       break;
1156     case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
1157       DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ARRAY_BOUNDS_EXCEEDED");
1158       ourstatus->value.sig = GDB_SIGNAL_FPE;
1159       break;
1160     case STATUS_FLOAT_INEXACT_RESULT:
1161       DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INEXACT_RESULT");
1162       ourstatus->value.sig = GDB_SIGNAL_FPE;
1163       break;
1164     case STATUS_FLOAT_INVALID_OPERATION:
1165       DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INVALID_OPERATION");
1166       ourstatus->value.sig = GDB_SIGNAL_FPE;
1167       break;
1168     case STATUS_FLOAT_OVERFLOW:
1169       DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_OVERFLOW");
1170       ourstatus->value.sig = GDB_SIGNAL_FPE;
1171       break;
1172     case STATUS_FLOAT_STACK_CHECK:
1173       DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_STACK_CHECK");
1174       ourstatus->value.sig = GDB_SIGNAL_FPE;
1175       break;
1176     case STATUS_FLOAT_UNDERFLOW:
1177       DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_UNDERFLOW");
1178       ourstatus->value.sig = GDB_SIGNAL_FPE;
1179       break;
1180     case STATUS_FLOAT_DIVIDE_BY_ZERO:
1181       DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DIVIDE_BY_ZERO");
1182       ourstatus->value.sig = GDB_SIGNAL_FPE;
1183       break;
1184     case STATUS_INTEGER_DIVIDE_BY_ZERO:
1185       DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_DIVIDE_BY_ZERO");
1186       ourstatus->value.sig = GDB_SIGNAL_FPE;
1187       break;
1188     case STATUS_INTEGER_OVERFLOW:
1189       DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_OVERFLOW");
1190       ourstatus->value.sig = GDB_SIGNAL_FPE;
1191       break;
1192     case EXCEPTION_BREAKPOINT:
1193       DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_BREAKPOINT");
1194       ourstatus->value.sig = GDB_SIGNAL_TRAP;
1195       break;
1196     case DBG_CONTROL_C:
1197       DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_C");
1198       ourstatus->value.sig = GDB_SIGNAL_INT;
1199       break;
1200     case DBG_CONTROL_BREAK:
1201       DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_BREAK");
1202       ourstatus->value.sig = GDB_SIGNAL_INT;
1203       break;
1204     case EXCEPTION_SINGLE_STEP:
1205       DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_SINGLE_STEP");
1206       ourstatus->value.sig = GDB_SIGNAL_TRAP;
1207       break;
1208     case EXCEPTION_ILLEGAL_INSTRUCTION:
1209       DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ILLEGAL_INSTRUCTION");
1210       ourstatus->value.sig = GDB_SIGNAL_ILL;
1211       break;
1212     case EXCEPTION_PRIV_INSTRUCTION:
1213       DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_PRIV_INSTRUCTION");
1214       ourstatus->value.sig = GDB_SIGNAL_ILL;
1215       break;
1216     case EXCEPTION_NONCONTINUABLE_EXCEPTION:
1217       DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_NONCONTINUABLE_EXCEPTION");
1218       ourstatus->value.sig = GDB_SIGNAL_ILL;
1219       break;
1220     case MS_VC_EXCEPTION:
1221       if (rec->NumberParameters >= 3
1222           && (rec->ExceptionInformation[0] & 0xffffffff) == 0x1000)
1223         {
1224           DWORD named_thread_id;
1225           windows_thread_info *named_thread;
1226           CORE_ADDR thread_name_target;
1227
1228           DEBUG_EXCEPTION_SIMPLE ("MS_VC_EXCEPTION");
1229
1230           thread_name_target = rec->ExceptionInformation[1];
1231           named_thread_id = (DWORD) (0xffffffff & rec->ExceptionInformation[2]);
1232
1233           if (named_thread_id == (DWORD) -1)
1234             named_thread_id = current_event.dwThreadId;
1235
1236           named_thread = thread_rec (named_thread_id, 0);
1237           if (named_thread != NULL)
1238             {
1239               int thread_name_len;
1240               gdb::unique_xmalloc_ptr<char> thread_name;
1241
1242               thread_name_len = target_read_string (thread_name_target,
1243                                                     &thread_name, 1025, NULL);
1244               if (thread_name_len > 0)
1245                 {
1246                   thread_name.get ()[thread_name_len - 1] = '\0';
1247                   xfree (named_thread->name);
1248                   named_thread->name = thread_name.release ();
1249                 }
1250             }
1251           ourstatus->value.sig = GDB_SIGNAL_TRAP;
1252           result = HANDLE_EXCEPTION_IGNORED;
1253           break;
1254         }
1255         /* treat improperly formed exception as unknown */
1256         /* 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,
2957                                   ULONGEST len, 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       if (beneath () == NULL)
2970         {
2971           /* This can happen when requesting the transfer of unsupported
2972              objects before a program has been started (and therefore
2973              with the current_target having no target beneath).  */
2974           return TARGET_XFER_E_IO;
2975         }
2976       return beneath ()->xfer_partial (object, annex,
2977                                        readbuf, writebuf, offset, len,
2978                                        xfered_len);
2979     }
2980 }
2981
2982 /* Provide thread local base, i.e. Thread Information Block address.
2983    Returns 1 if ptid is found and sets *ADDR to thread_local_base.  */
2984
2985 bool
2986 windows_nat_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
2987 {
2988   windows_thread_info *th;
2989
2990   th = thread_rec (ptid_get_tid (ptid), 0);
2991   if (th == NULL)
2992     return false;
2993
2994   if (addr != NULL)
2995     *addr = th->thread_local_base;
2996
2997   return true;
2998 }
2999
3000 ptid_t
3001 windows_nat_target::get_ada_task_ptid (long lwp, long thread)
3002 {
3003   return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
3004 }
3005
3006 /* Implementation of the to_thread_name method.  */
3007
3008 const char *
3009 windows_nat_target::thread_name (struct thread_info *thr)
3010 {
3011   return thread_rec (ptid_get_tid (thr->ptid), 0)->name;
3012 }
3013
3014
3015 void
3016 _initialize_windows_nat (void)
3017 {
3018   x86_dr_low.set_control = cygwin_set_dr7;
3019   x86_dr_low.set_addr = cygwin_set_dr;
3020   x86_dr_low.get_addr = cygwin_get_dr;
3021   x86_dr_low.get_status = cygwin_get_dr6;
3022   x86_dr_low.get_control = cygwin_get_dr7;
3023
3024   /* x86_dr_low.debug_register_length field is set by
3025      calling x86_set_debug_register_length function
3026      in processor windows specific native file.  */
3027
3028   add_inf_child_target (&the_windows_nat_target);
3029
3030 #ifdef __CYGWIN__
3031   cygwin_internal (CW_SET_DOS_FILE_WARNING, 0);
3032 #endif
3033
3034   add_com ("signal-event", class_run, signal_event_command, _("\
3035 Signal a crashed process with event ID, to allow its debugging.\n\
3036 This command is needed in support of setting up GDB as JIT debugger on \
3037 MS-Windows.  The command should be invoked from the GDB command line using \
3038 the '-ex' command-line option.  The ID of the event that blocks the \
3039 crashed process will be supplied by the Windows JIT debugging mechanism."));
3040
3041 #ifdef __CYGWIN__
3042   add_setshow_boolean_cmd ("shell", class_support, &useshell, _("\
3043 Set use of shell to start subprocess."), _("\
3044 Show use of shell to start subprocess."), NULL,
3045                            NULL,
3046                            NULL, /* FIXME: i18n: */
3047                            &setlist, &showlist);
3048
3049   add_setshow_boolean_cmd ("cygwin-exceptions", class_support,
3050                            &cygwin_exceptions, _("\
3051 Break when an exception is detected in the Cygwin DLL itself."), _("\
3052 Show whether gdb breaks on exceptions in the Cygwin DLL itself."), NULL,
3053                            NULL,
3054                            NULL, /* FIXME: i18n: */
3055                            &setlist, &showlist);
3056 #endif
3057
3058   add_setshow_boolean_cmd ("new-console", class_support, &new_console, _("\
3059 Set creation of new console when creating child process."), _("\
3060 Show creation of new console when creating child process."), NULL,
3061                            NULL,
3062                            NULL, /* FIXME: i18n: */
3063                            &setlist, &showlist);
3064
3065   add_setshow_boolean_cmd ("new-group", class_support, &new_group, _("\
3066 Set creation of new group when creating child process."), _("\
3067 Show creation of new group when creating child process."), NULL,
3068                            NULL,
3069                            NULL, /* FIXME: i18n: */
3070                            &setlist, &showlist);
3071
3072   add_setshow_boolean_cmd ("debugexec", class_support, &debug_exec, _("\
3073 Set whether to display execution in child process."), _("\
3074 Show whether to display execution in child process."), NULL,
3075                            NULL,
3076                            NULL, /* FIXME: i18n: */
3077                            &setlist, &showlist);
3078
3079   add_setshow_boolean_cmd ("debugevents", class_support, &debug_events, _("\
3080 Set whether to display kernel events in child process."), _("\
3081 Show whether to display kernel events in child process."), NULL,
3082                            NULL,
3083                            NULL, /* FIXME: i18n: */
3084                            &setlist, &showlist);
3085
3086   add_setshow_boolean_cmd ("debugmemory", class_support, &debug_memory, _("\
3087 Set whether to display memory accesses in child process."), _("\
3088 Show whether to display memory accesses in child process."), NULL,
3089                            NULL,
3090                            NULL, /* FIXME: i18n: */
3091                            &setlist, &showlist);
3092
3093   add_setshow_boolean_cmd ("debugexceptions", class_support,
3094                            &debug_exceptions, _("\
3095 Set whether to display kernel exceptions in child process."), _("\
3096 Show whether to display kernel exceptions in child process."), NULL,
3097                            NULL,
3098                            NULL, /* FIXME: i18n: */
3099                            &setlist, &showlist);
3100
3101   init_w32_command_list ();
3102
3103   add_cmd ("selector", class_info, display_selectors,
3104            _("Display selectors infos."),
3105            &info_w32_cmdlist);
3106 }
3107
3108 /* Hardware watchpoint support, adapted from go32-nat.c code.  */
3109
3110 /* Pass the address ADDR to the inferior in the I'th debug register.
3111    Here we just store the address in dr array, the registers will be
3112    actually set up when windows_continue is called.  */
3113 static void
3114 cygwin_set_dr (int i, CORE_ADDR addr)
3115 {
3116   if (i < 0 || i > 3)
3117     internal_error (__FILE__, __LINE__,
3118                     _("Invalid register %d in cygwin_set_dr.\n"), i);
3119   dr[i] = addr;
3120   debug_registers_changed = 1;
3121   debug_registers_used = 1;
3122 }
3123
3124 /* Pass the value VAL to the inferior in the DR7 debug control
3125    register.  Here we just store the address in D_REGS, the watchpoint
3126    will be actually set up in windows_wait.  */
3127 static void
3128 cygwin_set_dr7 (unsigned long val)
3129 {
3130   dr[7] = (CORE_ADDR) val;
3131   debug_registers_changed = 1;
3132   debug_registers_used = 1;
3133 }
3134
3135 /* Get the value of debug register I from the inferior.  */
3136
3137 static CORE_ADDR
3138 cygwin_get_dr (int i)
3139 {
3140   return dr[i];
3141 }
3142
3143 /* Get the value of the DR6 debug status register from the inferior.
3144    Here we just return the value stored in dr[6]
3145    by the last call to thread_rec for current_event.dwThreadId id.  */
3146 static unsigned long
3147 cygwin_get_dr6 (void)
3148 {
3149   return (unsigned long) dr[6];
3150 }
3151
3152 /* Get the value of the DR7 debug status register from the inferior.
3153    Here we just return the value stored in dr[7] by the last call to
3154    thread_rec for current_event.dwThreadId id.  */
3155
3156 static unsigned long
3157 cygwin_get_dr7 (void)
3158 {
3159   return (unsigned long) dr[7];
3160 }
3161
3162 /* Determine if the thread referenced by "ptid" is alive
3163    by "polling" it.  If WaitForSingleObject returns WAIT_OBJECT_0
3164    it means that the thread has died.  Otherwise it is assumed to be alive.  */
3165
3166 bool
3167 windows_nat_target::thread_alive (ptid_t ptid)
3168 {
3169   int tid;
3170
3171   gdb_assert (ptid_get_tid (ptid) != 0);
3172   tid = ptid_get_tid (ptid);
3173
3174   return WaitForSingleObject (thread_rec (tid, FALSE)->h, 0) != WAIT_OBJECT_0;
3175 }
3176
3177 void
3178 _initialize_check_for_gdb_ini (void)
3179 {
3180   char *homedir;
3181   if (inhibit_gdbinit)
3182     return;
3183
3184   homedir = getenv ("HOME");
3185   if (homedir)
3186     {
3187       char *p;
3188       char *oldini = (char *) alloca (strlen (homedir) +
3189                                       sizeof ("gdb.ini") + 1);
3190       strcpy (oldini, homedir);
3191       p = strchr (oldini, '\0');
3192       if (p > oldini && !IS_DIR_SEPARATOR (p[-1]))
3193         *p++ = '/';
3194       strcpy (p, "gdb.ini");
3195       if (access (oldini, 0) == 0)
3196         {
3197           int len = strlen (oldini);
3198           char *newini = (char *) alloca (len + 2);
3199
3200           xsnprintf (newini, len + 2, "%.*s.gdbinit",
3201                      (int) (len - (sizeof ("gdb.ini") - 1)), oldini);
3202           warning (_("obsolete '%s' found. Rename to '%s'."), oldini, newini);
3203         }
3204     }
3205 }
3206
3207 /* Define dummy functions which always return error for the rare cases where
3208    these functions could not be found.  */
3209 static BOOL WINAPI
3210 bad_DebugActiveProcessStop (DWORD w)
3211 {
3212   return FALSE;
3213 }
3214 static BOOL WINAPI
3215 bad_DebugBreakProcess (HANDLE w)
3216 {
3217   return FALSE;
3218 }
3219 static BOOL WINAPI
3220 bad_DebugSetProcessKillOnExit (BOOL w)
3221 {
3222   return FALSE;
3223 }
3224 static BOOL WINAPI
3225 bad_EnumProcessModules (HANDLE w, HMODULE *x, DWORD y, LPDWORD z)
3226 {
3227   return FALSE;
3228 }
3229
3230 #ifdef __USEWIDE
3231 static DWORD WINAPI
3232 bad_GetModuleFileNameExW (HANDLE w, HMODULE x, LPWSTR y, DWORD z)
3233 {
3234   return 0;
3235 }
3236 #else
3237 static DWORD WINAPI
3238 bad_GetModuleFileNameExA (HANDLE w, HMODULE x, LPSTR y, DWORD z)
3239 {
3240   return 0;
3241 }
3242 #endif
3243
3244 static BOOL WINAPI
3245 bad_GetModuleInformation (HANDLE w, HMODULE x, LPMODULEINFO y, DWORD z)
3246 {
3247   return FALSE;
3248 }
3249
3250 static BOOL WINAPI
3251 bad_OpenProcessToken (HANDLE w, DWORD x, PHANDLE y)
3252 {
3253   return FALSE;
3254 }
3255
3256 static BOOL WINAPI
3257 bad_GetCurrentConsoleFont (HANDLE w, BOOL bMaxWindow, CONSOLE_FONT_INFO *f)
3258 {
3259   f->nFont = 0;
3260   return 1;
3261 }
3262 static COORD WINAPI
3263 bad_GetConsoleFontSize (HANDLE w, DWORD nFont)
3264 {
3265   COORD size;
3266   size.X = 8;
3267   size.Y = 12;
3268   return size;
3269 }
3270  
3271 /* Load any functions which may not be available in ancient versions
3272    of Windows.  */
3273
3274 void
3275 _initialize_loadable (void)
3276 {
3277   HMODULE hm = NULL;
3278
3279 #define GPA(m, func)                                    \
3280   func = (func ## _ftype *) GetProcAddress (m, #func)
3281
3282   hm = LoadLibrary ("kernel32.dll");
3283   if (hm)
3284     {
3285       GPA (hm, DebugActiveProcessStop);
3286       GPA (hm, DebugBreakProcess);
3287       GPA (hm, DebugSetProcessKillOnExit);
3288       GPA (hm, GetConsoleFontSize);
3289       GPA (hm, DebugActiveProcessStop);
3290       GPA (hm, GetCurrentConsoleFont);
3291     }
3292
3293   /* Set variables to dummy versions of these processes if the function
3294      wasn't found in kernel32.dll.  */
3295   if (!DebugBreakProcess)
3296     DebugBreakProcess = bad_DebugBreakProcess;
3297   if (!DebugActiveProcessStop || !DebugSetProcessKillOnExit)
3298     {
3299       DebugActiveProcessStop = bad_DebugActiveProcessStop;
3300       DebugSetProcessKillOnExit = bad_DebugSetProcessKillOnExit;
3301     }
3302   if (!GetConsoleFontSize)
3303     GetConsoleFontSize = bad_GetConsoleFontSize;
3304   if (!GetCurrentConsoleFont)
3305     GetCurrentConsoleFont = bad_GetCurrentConsoleFont;
3306
3307   /* Load optional functions used for retrieving filename information
3308      associated with the currently debugged process or its dlls.  */
3309   hm = LoadLibrary ("psapi.dll");
3310   if (hm)
3311     {
3312       GPA (hm, EnumProcessModules);
3313       GPA (hm, GetModuleInformation);
3314       GetModuleFileNameEx = (GetModuleFileNameEx_ftype *)
3315         GetProcAddress (hm, GetModuleFileNameEx_name);
3316     }
3317
3318   if (!EnumProcessModules || !GetModuleInformation || !GetModuleFileNameEx)
3319     {
3320       /* Set variables to dummy versions of these processes if the function
3321          wasn't found in psapi.dll.  */
3322       EnumProcessModules = bad_EnumProcessModules;
3323       GetModuleInformation = bad_GetModuleInformation;
3324       GetModuleFileNameEx = bad_GetModuleFileNameEx;
3325       /* This will probably fail on Windows 9x/Me.  Let the user know
3326          that we're missing some functionality.  */
3327       warning(_("\
3328 cannot automatically find executable file or library to read symbols.\n\
3329 Use \"file\" or \"dll\" command to load executable/libraries directly."));
3330     }
3331
3332   hm = LoadLibrary ("advapi32.dll");
3333   if (hm)
3334     {
3335       GPA (hm, OpenProcessToken);
3336       GPA (hm, LookupPrivilegeValueA);
3337       GPA (hm, AdjustTokenPrivileges);
3338       /* Only need to set one of these since if OpenProcessToken fails nothing
3339          else is needed.  */
3340       if (!OpenProcessToken || !LookupPrivilegeValueA
3341           || !AdjustTokenPrivileges)
3342         OpenProcessToken = bad_OpenProcessToken;
3343     }
3344
3345 #undef GPA
3346 }