gdb/gdbserver/
[deliverable/binutils-gdb.git] / gdb / gdbserver / win32-low.c
CommitLineData
b80864fb 1/* Low level interface to Windows debugging, for gdbserver.
4c38e0a4 2 Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
b80864fb
DJ
3
4 Contributed by Leo Zayas. Based on "win32-nat.c" from GDB.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
b80864fb
DJ
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
b80864fb
DJ
20
21#include "server.h"
22#include "regcache.h"
23#include "gdb/signals.h"
59a016f0 24#include "gdb/fileio.h"
ed50f18f
PA
25#include "mem-break.h"
26#include "win32-low.h"
b80864fb
DJ
27
28#include <windows.h>
ed50f18f 29#include <winnt.h>
b80864fb 30#include <imagehlp.h>
255e7678 31#include <tlhelp32.h>
b80864fb
DJ
32#include <psapi.h>
33#include <sys/param.h>
34#include <malloc.h>
35#include <process.h>
36
37#ifndef USE_WIN32API
38#include <sys/cygwin.h>
39#endif
40
10357975
PA
41#define OUTMSG(X) do { printf X; fflush (stderr); } while (0)
42
43#define OUTMSG2(X) \
44 do \
45 { \
46 if (debug_threads) \
47 { \
48 printf X; \
49 fflush (stderr); \
50 } \
51 } while (0)
ed50f18f
PA
52
53#ifndef _T
54#define _T(x) TEXT (x)
55#endif
56
57#ifndef COUNTOF
58#define COUNTOF(STR) (sizeof (STR) / sizeof ((STR)[0]))
b80864fb
DJ
59#endif
60
bf914831
PA
61#ifdef _WIN32_WCE
62# define GETPROCADDRESS(DLL, PROC) \
63 ((winapi_ ## PROC) GetProcAddress (DLL, TEXT (#PROC)))
64#else
65# define GETPROCADDRESS(DLL, PROC) \
66 ((winapi_ ## PROC) GetProcAddress (DLL, #PROC))
67#endif
68
b80864fb
DJ
69int using_threads = 1;
70
71/* Globals. */
d97903b2 72static int attaching = 0;
b80864fb
DJ
73static HANDLE current_process_handle = NULL;
74static DWORD current_process_id = 0;
5ac588cf 75static DWORD main_thread_id = 0;
b80864fb
DJ
76static enum target_signal last_sig = TARGET_SIGNAL_0;
77
78/* The current debug event from WaitForDebugEvent. */
79static DEBUG_EVENT current_event;
80
4d5d1aaa
PA
81/* Non zero if an interrupt request is to be satisfied by suspending
82 all threads. */
83static int soft_interrupt_requested = 0;
84
85/* Non zero if the inferior is stopped in a simulated breakpoint done
86 by suspending all the threads. */
87static int faked_breakpoint = 0;
88
ed50f18f 89#define NUM_REGS (the_low_target.num_regs)
b80864fb 90
bf914831
PA
91typedef BOOL WINAPI (*winapi_DebugActiveProcessStop) (DWORD dwProcessId);
92typedef BOOL WINAPI (*winapi_DebugSetProcessKillOnExit) (BOOL KillOnExit);
7390519e
PA
93typedef BOOL WINAPI (*winapi_DebugBreakProcess) (HANDLE);
94typedef BOOL WINAPI (*winapi_GenerateConsoleCtrlEvent) (DWORD, DWORD);
b80864fb 95
2bd7c093 96static void win32_resume (struct thread_resume *resume_info, size_t n);
34b34921 97
b80864fb
DJ
98/* Get the thread ID from the current selected inferior (the current
99 thread). */
95954743
PA
100static ptid_t
101current_inferior_ptid (void)
b80864fb 102{
95954743
PA
103 return ((struct inferior_list_entry*) current_inferior)->id;
104}
105
106/* The current debug event from WaitForDebugEvent. */
107static ptid_t
108debug_event_ptid (DEBUG_EVENT *event)
109{
110 return ptid_build (event->dwProcessId, event->dwThreadId, 0);
b80864fb
DJ
111}
112
9c6c8194
PA
113/* Get the thread context of the thread associated with TH. */
114
115static void
116win32_get_thread_context (win32_thread_info *th)
117{
118 memset (&th->context, 0, sizeof (CONTEXT));
119 (*the_low_target.get_thread_context) (th, &current_event);
120#ifdef _WIN32_WCE
121 memcpy (&th->base_context, &th->context, sizeof (CONTEXT));
122#endif
123}
124
125/* Set the thread context of the thread associated with TH. */
126
127static void
128win32_set_thread_context (win32_thread_info *th)
129{
130#ifdef _WIN32_WCE
131 /* Calling SuspendThread on a thread that is running kernel code
132 will report that the suspending was successful, but in fact, that
133 will often not be true. In those cases, the context returned by
134 GetThreadContext will not be correct by the time the thread
135 stops, hence we can't set that context back into the thread when
136 resuming - it will most likelly crash the inferior.
137 Unfortunately, there is no way to know when the thread will
138 really stop. To work around it, we'll only write the context
139 back to the thread when either the user or GDB explicitly change
140 it between stopping and resuming. */
141 if (memcmp (&th->context, &th->base_context, sizeof (CONTEXT)) != 0)
142#endif
143 (*the_low_target.set_thread_context) (th, &current_event);
144}
145
b80864fb
DJ
146/* Find a thread record given a thread id. If GET_CONTEXT is set then
147 also retrieve the context for this thread. */
41093d81 148static win32_thread_info *
95954743 149thread_rec (ptid_t ptid, int get_context)
b80864fb
DJ
150{
151 struct thread_info *thread;
41093d81 152 win32_thread_info *th;
b80864fb 153
95954743 154 thread = (struct thread_info *) find_inferior_id (&all_threads, ptid);
b80864fb
DJ
155 if (thread == NULL)
156 return NULL;
157
158 th = inferior_target_data (thread);
c436e841 159 if (get_context && th->context.ContextFlags == 0)
b80864fb 160 {
c436e841
PA
161 if (!th->suspended)
162 {
163 if (SuspendThread (th->h) == (DWORD) -1)
164 {
165 DWORD err = GetLastError ();
166 OUTMSG (("warning: SuspendThread failed in thread_rec, "
167 "(error %d): %s\n", (int) err, strwinerror (err)));
168 }
169 else
170 th->suspended = 1;
171 }
b80864fb 172
9c6c8194 173 win32_get_thread_context (th);
b80864fb
DJ
174 }
175
176 return th;
177}
178
179/* Add a thread to the thread list. */
41093d81 180static win32_thread_info *
95954743 181child_add_thread (DWORD pid, DWORD tid, HANDLE h)
b80864fb 182{
41093d81 183 win32_thread_info *th;
95954743 184 ptid_t ptid = ptid_build (pid, tid, 0);
b80864fb 185
95954743 186 if ((th = thread_rec (ptid, FALSE)))
b80864fb
DJ
187 return th;
188
bca929d3 189 th = xcalloc (1, sizeof (*th));
b80864fb
DJ
190 th->tid = tid;
191 th->h = h;
192
95954743 193 add_thread (ptid, th);
b80864fb 194 set_inferior_regcache_data ((struct thread_info *)
95954743 195 find_inferior_id (&all_threads, ptid),
b80864fb
DJ
196 new_register_cache ());
197
34b34921
PA
198 if (the_low_target.thread_added != NULL)
199 (*the_low_target.thread_added) (th);
b80864fb
DJ
200
201 return th;
202}
203
204/* Delete a thread from the list of threads. */
205static void
206delete_thread_info (struct inferior_list_entry *thread)
207{
41093d81 208 win32_thread_info *th = inferior_target_data ((struct thread_info *) thread);
b80864fb
DJ
209
210 remove_thread ((struct thread_info *) thread);
211 CloseHandle (th->h);
212 free (th);
213}
214
215/* Delete a thread from the list of threads. */
216static void
95954743 217child_delete_thread (DWORD pid, DWORD tid)
b80864fb
DJ
218{
219 struct inferior_list_entry *thread;
95954743 220 ptid_t ptid;
b80864fb
DJ
221
222 /* If the last thread is exiting, just return. */
223 if (all_threads.head == all_threads.tail)
224 return;
225
95954743
PA
226 ptid = ptid_build (pid, tid, 0);
227 thread = find_inferior_id (&all_threads, ptid);
b80864fb
DJ
228 if (thread == NULL)
229 return;
230
231 delete_thread_info (thread);
232}
233
aa5ca48f
DE
234/* These watchpoint related wrapper functions simply pass on the function call
235 if the low target has registered a corresponding function. */
236
237static int
238win32_insert_point (char type, CORE_ADDR addr, int len)
239{
240 if (the_low_target.insert_point != NULL)
241 return the_low_target.insert_point (type, addr, len);
242 else
243 /* Unsupported (see target.h). */
244 return 1;
245}
246
247static int
248win32_remove_point (char type, CORE_ADDR addr, int len)
249{
250 if (the_low_target.remove_point != NULL)
251 return the_low_target.remove_point (type, addr, len);
252 else
253 /* Unsupported (see target.h). */
254 return 1;
255}
256
257static int
258win32_stopped_by_watchpoint (void)
259{
260 if (the_low_target.stopped_by_watchpoint != NULL)
261 return the_low_target.stopped_by_watchpoint ();
262 else
263 return 0;
264}
265
266static CORE_ADDR
267win32_stopped_data_address (void)
268{
269 if (the_low_target.stopped_data_address != NULL)
270 return the_low_target.stopped_data_address ();
271 else
272 return 0;
273}
274
275
b80864fb
DJ
276/* Transfer memory from/to the debugged process. */
277static int
278child_xfer_memory (CORE_ADDR memaddr, char *our, int len,
279 int write, struct target_ops *target)
280{
281 SIZE_T done;
282 long addr = (long) memaddr;
283
284 if (write)
285 {
286 WriteProcessMemory (current_process_handle, (LPVOID) addr,
287 (LPCVOID) our, len, &done);
288 FlushInstructionCache (current_process_handle, (LPCVOID) addr, len);
289 }
290 else
291 {
292 ReadProcessMemory (current_process_handle, (LPCVOID) addr, (LPVOID) our,
293 len, &done);
294 }
295 return done;
296}
297
ed50f18f 298/* Clear out any old thread list and reinitialize it to a pristine
b80864fb
DJ
299 state. */
300static void
301child_init_thread_list (void)
302{
303 for_each_inferior (&all_threads, delete_thread_info);
304}
305
306static void
95954743 307do_initial_child_stuff (HANDLE proch, DWORD pid, int attached)
b80864fb 308{
b80864fb
DJ
309 last_sig = TARGET_SIGNAL_0;
310
5ac588cf
PA
311 current_process_handle = proch;
312 current_process_id = pid;
313 main_thread_id = 0;
314
315 soft_interrupt_requested = 0;
316 faked_breakpoint = 0;
317
b80864fb
DJ
318 memset (&current_event, 0, sizeof (current_event));
319
95954743 320 add_process (pid, attached);
b80864fb 321 child_init_thread_list ();
ed50f18f
PA
322
323 if (the_low_target.initial_stuff != NULL)
324 (*the_low_target.initial_stuff) ();
b80864fb
DJ
325}
326
327/* Resume all artificially suspended threads if we are continuing
328 execution. */
329static int
330continue_one_thread (struct inferior_list_entry *this_thread, void *id_ptr)
331{
332 struct thread_info *thread = (struct thread_info *) this_thread;
333 int thread_id = * (int *) id_ptr;
41093d81 334 win32_thread_info *th = inferior_target_data (thread);
b80864fb
DJ
335
336 if ((thread_id == -1 || thread_id == th->tid)
c436e841 337 && th->suspended)
b80864fb 338 {
34b34921 339 if (th->context.ContextFlags)
b80864fb 340 {
9c6c8194 341 win32_set_thread_context (th);
b80864fb
DJ
342 th->context.ContextFlags = 0;
343 }
34b34921 344
c436e841
PA
345 if (ResumeThread (th->h) == (DWORD) -1)
346 {
347 DWORD err = GetLastError ();
348 OUTMSG (("warning: ResumeThread failed in continue_one_thread, "
349 "(error %d): %s\n", (int) err, strwinerror (err)));
350 }
351 th->suspended = 0;
b80864fb
DJ
352 }
353
354 return 0;
355}
356
357static BOOL
358child_continue (DWORD continue_status, int thread_id)
359{
4d5d1aaa
PA
360 /* The inferior will only continue after the ContinueDebugEvent
361 call. */
362 find_inferior (&all_threads, continue_one_thread, &thread_id);
363 faked_breakpoint = 0;
b80864fb 364
4d5d1aaa
PA
365 if (!ContinueDebugEvent (current_event.dwProcessId,
366 current_event.dwThreadId,
367 continue_status))
368 return FALSE;
b80864fb 369
4d5d1aaa 370 return TRUE;
b80864fb
DJ
371}
372
b80864fb
DJ
373/* Fetch register(s) from the current thread context. */
374static void
442ea881 375child_fetch_inferior_registers (struct regcache *regcache, int r)
b80864fb
DJ
376{
377 int regno;
95954743 378 win32_thread_info *th = thread_rec (current_inferior_ptid (), TRUE);
4463ce24 379 if (r == -1 || r > NUM_REGS)
442ea881 380 child_fetch_inferior_registers (regcache, NUM_REGS);
b80864fb
DJ
381 else
382 for (regno = 0; regno < r; regno++)
442ea881 383 (*the_low_target.fetch_inferior_register) (regcache, th, regno);
b80864fb
DJ
384}
385
386/* Store a new register value into the current thread context. We don't
387 change the program's context until later, when we resume it. */
388static void
442ea881 389child_store_inferior_registers (struct regcache *regcache, int r)
b80864fb
DJ
390{
391 int regno;
95954743 392 win32_thread_info *th = thread_rec (current_inferior_ptid (), TRUE);
b80864fb 393 if (r == -1 || r == 0 || r > NUM_REGS)
442ea881 394 child_store_inferior_registers (regcache, NUM_REGS);
b80864fb
DJ
395 else
396 for (regno = 0; regno < r; regno++)
442ea881 397 (*the_low_target.store_inferior_register) (regcache, th, regno);
b80864fb
DJ
398}
399
ed50f18f
PA
400/* Map the Windows error number in ERROR to a locale-dependent error
401 message string and return a pointer to it. Typically, the values
402 for ERROR come from GetLastError.
403
404 The string pointed to shall not be modified by the application,
405 but may be overwritten by a subsequent call to strwinerror
406
407 The strwinerror function does not change the current setting
408 of GetLastError. */
409
410char *
411strwinerror (DWORD error)
412{
413 static char buf[1024];
414 TCHAR *msgbuf;
415 DWORD lasterr = GetLastError ();
416 DWORD chars = FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM
417 | FORMAT_MESSAGE_ALLOCATE_BUFFER,
418 NULL,
419 error,
420 0, /* Default language */
421 (LPVOID)&msgbuf,
422 0,
423 NULL);
424 if (chars != 0)
425 {
426 /* If there is an \r\n appended, zap it. */
427 if (chars >= 2
428 && msgbuf[chars - 2] == '\r'
429 && msgbuf[chars - 1] == '\n')
430 {
431 chars -= 2;
432 msgbuf[chars] = 0;
433 }
434
435 if (chars > ((COUNTOF (buf)) - 1))
436 {
437 chars = COUNTOF (buf) - 1;
438 msgbuf [chars] = 0;
439 }
440
441#ifdef UNICODE
442 wcstombs (buf, msgbuf, chars + 1);
443#else
444 strncpy (buf, msgbuf, chars + 1);
445#endif
446 LocalFree (msgbuf);
447 }
448 else
449 sprintf (buf, "unknown win32 error (%ld)", error);
450
451 SetLastError (lasterr);
452 return buf;
453}
454
aec18585
PA
455static BOOL
456create_process (const char *program, char *args,
457 DWORD flags, PROCESS_INFORMATION *pi)
458{
459 BOOL ret;
460
461#ifdef _WIN32_WCE
462 wchar_t *p, *wprogram, *wargs;
463 size_t argslen;
464
465 wprogram = alloca ((strlen (program) + 1) * sizeof (wchar_t));
466 mbstowcs (wprogram, program, strlen (program) + 1);
467
468 for (p = wprogram; *p; ++p)
469 if (L'/' == *p)
470 *p = L'\\';
471
472 argslen = strlen (args);
473 wargs = alloca ((argslen + 1) * sizeof (wchar_t));
474 mbstowcs (wargs, args, argslen + 1);
475
476 ret = CreateProcessW (wprogram, /* image name */
1b3f6016
PA
477 wargs, /* command line */
478 NULL, /* security, not supported */
479 NULL, /* thread, not supported */
480 FALSE, /* inherit handles, not supported */
481 flags, /* start flags */
482 NULL, /* environment, not supported */
483 NULL, /* current directory, not supported */
484 NULL, /* start info, not supported */
485 pi); /* proc info */
aec18585
PA
486#else
487 STARTUPINFOA si = { sizeof (STARTUPINFOA) };
488
489 ret = CreateProcessA (program, /* image name */
490 args, /* command line */
491 NULL, /* security */
492 NULL, /* thread */
493 TRUE, /* inherit handles */
494 flags, /* start flags */
495 NULL, /* environment */
496 NULL, /* current directory */
497 &si, /* start info */
498 pi); /* proc info */
499#endif
500
501 return ret;
502}
503
b80864fb
DJ
504/* Start a new process.
505 PROGRAM is a path to the program to execute.
506 ARGS is a standard NULL-terminated array of arguments,
507 to be passed to the inferior as ``argv''.
508 Returns the new PID on success, -1 on failure. Registers the new
509 process with the process list. */
510static int
511win32_create_inferior (char *program, char **program_args)
512{
513#ifndef USE_WIN32API
514 char real_path[MAXPATHLEN];
515 char *orig_path, *new_path, *path_ptr;
516#endif
b80864fb
DJ
517 BOOL ret;
518 DWORD flags;
519 char *args;
520 int argslen;
521 int argc;
ed50f18f 522 PROCESS_INFORMATION pi;
aec18585 523 DWORD err;
b80864fb 524
d97903b2
PA
525 /* win32_wait needs to know we're not attaching. */
526 attaching = 0;
527
b80864fb
DJ
528 if (!program)
529 error ("No executable specified, specify executable to debug.\n");
530
b80864fb
DJ
531 flags = DEBUG_PROCESS | DEBUG_ONLY_THIS_PROCESS;
532
533#ifndef USE_WIN32API
534 orig_path = NULL;
535 path_ptr = getenv ("PATH");
536 if (path_ptr)
537 {
538 orig_path = alloca (strlen (path_ptr) + 1);
539 new_path = alloca (cygwin_posix_to_win32_path_list_buf_size (path_ptr));
540 strcpy (orig_path, path_ptr);
541 cygwin_posix_to_win32_path_list (path_ptr, new_path);
542 setenv ("PATH", new_path, 1);
543 }
544 cygwin_conv_to_win32_path (program, real_path);
545 program = real_path;
546#endif
547
ed50f18f 548 argslen = 1;
b80864fb
DJ
549 for (argc = 1; program_args[argc]; argc++)
550 argslen += strlen (program_args[argc]) + 1;
551 args = alloca (argslen);
ed50f18f 552 args[0] = '\0';
b80864fb
DJ
553 for (argc = 1; program_args[argc]; argc++)
554 {
555 /* FIXME: Can we do better about quoting? How does Cygwin
1b3f6016 556 handle this? */
b80864fb
DJ
557 strcat (args, " ");
558 strcat (args, program_args[argc]);
559 }
ed50f18f 560 OUTMSG2 (("Command line is \"%s\"\n", args));
b80864fb 561
ed50f18f 562#ifdef CREATE_NEW_PROCESS_GROUP
b80864fb 563 flags |= CREATE_NEW_PROCESS_GROUP;
ed50f18f 564#endif
b80864fb 565
aec18585
PA
566 ret = create_process (program, args, flags, &pi);
567 err = GetLastError ();
568 if (!ret && err == ERROR_FILE_NOT_FOUND)
569 {
570 char *exename = alloca (strlen (program) + 5);
571 strcat (strcpy (exename, program), ".exe");
572 ret = create_process (exename, args, flags, &pi);
573 err = GetLastError ();
574 }
b80864fb
DJ
575
576#ifndef USE_WIN32API
577 if (orig_path)
578 setenv ("PATH", orig_path, 1);
579#endif
580
581 if (!ret)
582 {
ed50f18f
PA
583 error ("Error creating process \"%s%s\", (error %d): %s\n",
584 program, args, (int) err, strwinerror (err));
b80864fb
DJ
585 }
586 else
587 {
588 OUTMSG2 (("Process created: %s\n", (char *) args));
589 }
590
ed50f18f
PA
591#ifndef _WIN32_WCE
592 /* On Windows CE this handle can't be closed. The OS reuses
593 it in the debug events, while the 9x/NT versions of Windows
594 probably use a DuplicateHandle'd one. */
b80864fb 595 CloseHandle (pi.hThread);
ed50f18f 596#endif
b80864fb 597
95954743 598 do_initial_child_stuff (pi.hProcess, pi.dwProcessId, 0);
b80864fb
DJ
599
600 return current_process_id;
601}
602
603/* Attach to a running process.
604 PID is the process ID to attach to, specified by the user
605 or a higher layer. */
606static int
607win32_attach (unsigned long pid)
608{
5ca906e6 609 HANDLE h;
bf914831 610 winapi_DebugSetProcessKillOnExit DebugSetProcessKillOnExit = NULL;
5ca906e6 611 DWORD err;
ed50f18f
PA
612#ifdef _WIN32_WCE
613 HMODULE dll = GetModuleHandle (_T("COREDLL.DLL"));
614#else
615 HMODULE dll = GetModuleHandle (_T("KERNEL32.DLL"));
616#endif
bf914831 617 DebugSetProcessKillOnExit = GETPROCADDRESS (dll, DebugSetProcessKillOnExit);
b80864fb 618
5ca906e6
PA
619 h = OpenProcess (PROCESS_ALL_ACCESS, FALSE, pid);
620 if (h != NULL)
1d5315fe 621 {
5ca906e6
PA
622 if (DebugActiveProcess (pid))
623 {
624 if (DebugSetProcessKillOnExit != NULL)
625 DebugSetProcessKillOnExit (FALSE);
626
d97903b2 627 /* win32_wait needs to know we're attaching. */
1b3f6016 628 attaching = 1;
95954743 629 do_initial_child_stuff (h, pid, 1);
5ca906e6
PA
630 return 0;
631 }
632
633 CloseHandle (h);
b80864fb
DJ
634 }
635
5ca906e6
PA
636 err = GetLastError ();
637 error ("Attach to process failed (error %d): %s\n",
638 (int) err, strwinerror (err));
b80864fb
DJ
639}
640
bce7165d
PA
641/* Handle OUTPUT_DEBUG_STRING_EVENT from child process. */
642static void
643handle_output_debug_string (struct target_waitstatus *ourstatus)
644{
645#define READ_BUFFER_LEN 1024
646 CORE_ADDR addr;
647 char s[READ_BUFFER_LEN + 1] = { 0 };
648 DWORD nbytes = current_event.u.DebugString.nDebugStringLength;
649
650 if (nbytes == 0)
651 return;
652
653 if (nbytes > READ_BUFFER_LEN)
654 nbytes = READ_BUFFER_LEN;
655
656 addr = (CORE_ADDR) (size_t) current_event.u.DebugString.lpDebugStringData;
657
658 if (current_event.u.DebugString.fUnicode)
659 {
660 /* The event tells us how many bytes, not chars, even
1b3f6016 661 in Unicode. */
bce7165d
PA
662 WCHAR buffer[(READ_BUFFER_LEN + 1) / sizeof (WCHAR)] = { 0 };
663 if (read_inferior_memory (addr, (unsigned char *) buffer, nbytes) != 0)
664 return;
665 wcstombs (s, buffer, (nbytes + 1) / sizeof (WCHAR));
666 }
667 else
668 {
669 if (read_inferior_memory (addr, (unsigned char *) s, nbytes) != 0)
670 return;
671 }
672
673 if (strncmp (s, "cYg", 3) != 0)
45e2715e
PA
674 {
675 if (!server_waiting)
676 {
677 OUTMSG2(("%s", s));
678 return;
679 }
680
681 monitor_output (s);
682 }
bce7165d
PA
683#undef READ_BUFFER_LEN
684}
685
5ac588cf
PA
686static void
687win32_clear_inferiors (void)
688{
689 if (current_process_handle != NULL)
690 CloseHandle (current_process_handle);
691
692 for_each_inferior (&all_threads, delete_thread_info);
693 clear_inferiors ();
694}
695
b80864fb 696/* Kill all inferiors. */
95954743
PA
697static int
698win32_kill (int pid)
b80864fb 699{
95954743
PA
700 struct process_info *process;
701
9d606399 702 if (current_process_handle == NULL)
95954743 703 return -1;
9d606399 704
b80864fb
DJ
705 TerminateProcess (current_process_handle, 0);
706 for (;;)
707 {
708 if (!child_continue (DBG_CONTINUE, -1))
709 break;
710 if (!WaitForDebugEvent (&current_event, INFINITE))
711 break;
712 if (current_event.dwDebugEventCode == EXIT_PROCESS_DEBUG_EVENT)
713 break;
bce7165d
PA
714 else if (current_event.dwDebugEventCode == OUTPUT_DEBUG_STRING_EVENT)
715 {
1b3f6016 716 struct target_waitstatus our_status = { 0 };
bce7165d 717 handle_output_debug_string (&our_status);
1b3f6016 718 }
b80864fb 719 }
ed50f18f 720
5ac588cf 721 win32_clear_inferiors ();
95954743
PA
722
723 process = find_process_pid (pid);
724 remove_process (process);
725 return 0;
b80864fb
DJ
726}
727
95954743 728/* Detach from inferior PID. */
444d6139 729static int
95954743 730win32_detach (int pid)
b80864fb 731{
95954743 732 struct process_info *process;
bf914831
PA
733 winapi_DebugActiveProcessStop DebugActiveProcessStop = NULL;
734 winapi_DebugSetProcessKillOnExit DebugSetProcessKillOnExit = NULL;
ed50f18f
PA
735#ifdef _WIN32_WCE
736 HMODULE dll = GetModuleHandle (_T("COREDLL.DLL"));
737#else
738 HMODULE dll = GetModuleHandle (_T("KERNEL32.DLL"));
739#endif
bf914831
PA
740 DebugActiveProcessStop = GETPROCADDRESS (dll, DebugActiveProcessStop);
741 DebugSetProcessKillOnExit = GETPROCADDRESS (dll, DebugSetProcessKillOnExit);
b80864fb 742
444d6139
PA
743 if (DebugSetProcessKillOnExit == NULL
744 || DebugActiveProcessStop == NULL)
745 return -1;
b80864fb 746
444d6139
PA
747 {
748 struct thread_resume resume;
95954743 749 resume.thread = minus_one_ptid;
bd99dc85 750 resume.kind = resume_continue;
444d6139 751 resume.sig = 0;
2bd7c093 752 win32_resume (&resume, 1);
444d6139
PA
753 }
754
755 if (!DebugActiveProcessStop (current_process_id))
5ac588cf
PA
756 return -1;
757
444d6139 758 DebugSetProcessKillOnExit (FALSE);
95954743
PA
759 process = find_process_pid (pid);
760 remove_process (process);
444d6139 761
5ac588cf 762 win32_clear_inferiors ();
444d6139
PA
763 return 0;
764}
765
505106cd
PA
766static void
767win32_mourn (struct process_info *process)
768{
769 remove_process (process);
770}
771
444d6139
PA
772/* Wait for inferiors to end. */
773static void
95954743 774win32_join (int pid)
444d6139 775{
95954743 776 HANDLE h = OpenProcess (PROCESS_ALL_ACCESS, FALSE, pid);
5ac588cf
PA
777 if (h != NULL)
778 {
779 WaitForSingleObject (h, INFINITE);
780 CloseHandle (h);
781 }
b80864fb
DJ
782}
783
784/* Return 1 iff the thread with thread ID TID is alive. */
785static int
95954743 786win32_thread_alive (ptid_t ptid)
b80864fb
DJ
787{
788 int res;
789
790 /* Our thread list is reliable; don't bother to poll target
791 threads. */
95954743 792 if (find_inferior_id (&all_threads, ptid) != NULL)
b80864fb
DJ
793 res = 1;
794 else
795 res = 0;
796 return res;
797}
798
799/* Resume the inferior process. RESUME_INFO describes how we want
800 to resume. */
801static void
2bd7c093 802win32_resume (struct thread_resume *resume_info, size_t n)
b80864fb
DJ
803{
804 DWORD tid;
805 enum target_signal sig;
806 int step;
41093d81 807 win32_thread_info *th;
b80864fb 808 DWORD continue_status = DBG_CONTINUE;
95954743 809 ptid_t ptid;
b80864fb
DJ
810
811 /* This handles the very limited set of resume packets that GDB can
812 currently produce. */
813
95954743 814 if (n == 1 && ptid_equal (resume_info[0].thread, minus_one_ptid))
b80864fb 815 tid = -1;
2bd7c093 816 else if (n > 1)
b80864fb
DJ
817 tid = -1;
818 else
819 /* Yes, we're ignoring resume_info[0].thread. It'd be tricky to make
820 the Windows resume code do the right thing for thread switching. */
821 tid = current_event.dwThreadId;
822
95954743 823 if (!ptid_equal (resume_info[0].thread, minus_one_ptid))
b80864fb
DJ
824 {
825 sig = resume_info[0].sig;
bd99dc85 826 step = resume_info[0].kind == resume_step;
b80864fb
DJ
827 }
828 else
829 {
830 sig = 0;
831 step = 0;
832 }
833
834 if (sig != TARGET_SIGNAL_0)
835 {
836 if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
837 {
838 OUTMSG (("Cannot continue with signal %d here.\n", sig));
839 }
840 else if (sig == last_sig)
841 continue_status = DBG_EXCEPTION_NOT_HANDLED;
842 else
843 OUTMSG (("Can only continue with recieved signal %d.\n", last_sig));
844 }
845
846 last_sig = TARGET_SIGNAL_0;
847
848 /* Get context for the currently selected thread. */
95954743
PA
849 ptid = debug_event_ptid (&current_event);
850 th = thread_rec (ptid, FALSE);
b80864fb
DJ
851 if (th)
852 {
853 if (th->context.ContextFlags)
854 {
b80864fb
DJ
855 /* Move register values from the inferior into the thread
856 context structure. */
857 regcache_invalidate ();
858
859 if (step)
ed50f18f
PA
860 {
861 if (the_low_target.single_step != NULL)
862 (*the_low_target.single_step) (th);
863 else
864 error ("Single stepping is not supported "
865 "in this configuration.\n");
866 }
34b34921 867
9c6c8194 868 win32_set_thread_context (th);
b80864fb
DJ
869 th->context.ContextFlags = 0;
870 }
871 }
872
873 /* Allow continuing with the same signal that interrupted us.
874 Otherwise complain. */
875
876 child_continue (continue_status, tid);
877}
878
255e7678
DJ
879static void
880win32_add_one_solib (const char *name, CORE_ADDR load_addr)
881{
882 char buf[MAX_PATH + 1];
883 char buf2[MAX_PATH + 1];
884
885#ifdef _WIN32_WCE
886 WIN32_FIND_DATA w32_fd;
887 WCHAR wname[MAX_PATH + 1];
888 mbstowcs (wname, name, MAX_PATH);
889 HANDLE h = FindFirstFile (wname, &w32_fd);
890#else
891 WIN32_FIND_DATAA w32_fd;
892 HANDLE h = FindFirstFileA (name, &w32_fd);
893#endif
894
895 if (h == INVALID_HANDLE_VALUE)
896 strcpy (buf, name);
897 else
898 {
899 FindClose (h);
900 strcpy (buf, name);
901#ifndef _WIN32_WCE
902 {
903 char cwd[MAX_PATH + 1];
904 char *p;
905 if (GetCurrentDirectoryA (MAX_PATH + 1, cwd))
906 {
907 p = strrchr (buf, '\\');
908 if (p)
909 p[1] = '\0';
910 SetCurrentDirectoryA (buf);
911 GetFullPathNameA (w32_fd.cFileName, MAX_PATH, buf, &p);
912 SetCurrentDirectoryA (cwd);
913 }
914 }
915#endif
916 }
917
cf6e3471
PA
918#ifndef _WIN32_WCE
919 if (strcasecmp (buf, "ntdll.dll") == 0)
920 {
921 GetSystemDirectoryA (buf, sizeof (buf));
922 strcat (buf, "\\ntdll.dll");
923 }
924#endif
925
255e7678
DJ
926#ifdef __CYGWIN__
927 cygwin_conv_to_posix_path (buf, buf2);
928#else
929 strcpy (buf2, buf);
930#endif
931
932 loaded_dll (buf2, load_addr);
933}
934
935static char *
936get_image_name (HANDLE h, void *address, int unicode)
937{
938 static char buf[(2 * MAX_PATH) + 1];
939 DWORD size = unicode ? sizeof (WCHAR) : sizeof (char);
940 char *address_ptr;
941 int len = 0;
942 char b[2];
943 DWORD done;
944
945 /* Attempt to read the name of the dll that was detected.
946 This is documented to work only when actively debugging
947 a program. It will not work for attached processes. */
948 if (address == NULL)
949 return NULL;
950
951#ifdef _WIN32_WCE
952 /* Windows CE reports the address of the image name,
953 instead of an address of a pointer into the image name. */
954 address_ptr = address;
955#else
956 /* See if we could read the address of a string, and that the
957 address isn't null. */
958 if (!ReadProcessMemory (h, address, &address_ptr,
959 sizeof (address_ptr), &done)
960 || done != sizeof (address_ptr)
961 || !address_ptr)
962 return NULL;
963#endif
964
965 /* Find the length of the string */
966 while (ReadProcessMemory (h, address_ptr + len++ * size, &b, size, &done)
967 && (b[0] != 0 || b[size - 1] != 0) && done == size)
968 continue;
969
970 if (!unicode)
971 ReadProcessMemory (h, address_ptr, buf, len, &done);
972 else
973 {
974 WCHAR *unicode_address = (WCHAR *) alloca (len * sizeof (WCHAR));
975 ReadProcessMemory (h, address_ptr, unicode_address, len * sizeof (WCHAR),
976 &done);
977
978 WideCharToMultiByte (CP_ACP, 0, unicode_address, len, buf, len, 0, 0);
979 }
980
981 return buf;
982}
983
984typedef BOOL (WINAPI *winapi_EnumProcessModules) (HANDLE, HMODULE *,
985 DWORD, LPDWORD);
986typedef BOOL (WINAPI *winapi_GetModuleInformation) (HANDLE, HMODULE,
987 LPMODULEINFO, DWORD);
988typedef DWORD (WINAPI *winapi_GetModuleFileNameExA) (HANDLE, HMODULE,
989 LPSTR, DWORD);
990
991static winapi_EnumProcessModules win32_EnumProcessModules;
992static winapi_GetModuleInformation win32_GetModuleInformation;
993static winapi_GetModuleFileNameExA win32_GetModuleFileNameExA;
994
995static BOOL
996load_psapi (void)
997{
998 static int psapi_loaded = 0;
999 static HMODULE dll = NULL;
1000
1001 if (!psapi_loaded)
1002 {
1003 psapi_loaded = 1;
1004 dll = LoadLibrary (TEXT("psapi.dll"));
1005 if (!dll)
1006 return FALSE;
1007 win32_EnumProcessModules =
1008 GETPROCADDRESS (dll, EnumProcessModules);
1009 win32_GetModuleInformation =
1010 GETPROCADDRESS (dll, GetModuleInformation);
1011 win32_GetModuleFileNameExA =
1012 GETPROCADDRESS (dll, GetModuleFileNameExA);
1013 }
1014
1015 return (win32_EnumProcessModules != NULL
1016 && win32_GetModuleInformation != NULL
1017 && win32_GetModuleFileNameExA != NULL);
1018}
1019
1020static int
1021psapi_get_dll_name (DWORD BaseAddress, char *dll_name_ret)
1022{
1023 DWORD len;
1024 MODULEINFO mi;
1025 size_t i;
1026 HMODULE dh_buf[1];
1027 HMODULE *DllHandle = dh_buf;
1028 DWORD cbNeeded;
1029 BOOL ok;
1030
1031 if (!load_psapi ())
1032 goto failed;
1033
1034 cbNeeded = 0;
1035 ok = (*win32_EnumProcessModules) (current_process_handle,
1036 DllHandle,
1037 sizeof (HMODULE),
1038 &cbNeeded);
1039
1040 if (!ok || !cbNeeded)
1041 goto failed;
1042
1043 DllHandle = (HMODULE *) alloca (cbNeeded);
1044 if (!DllHandle)
1045 goto failed;
1046
1047 ok = (*win32_EnumProcessModules) (current_process_handle,
1048 DllHandle,
1049 cbNeeded,
1050 &cbNeeded);
1051 if (!ok)
1052 goto failed;
1053
1054 for (i = 0; i < ((size_t) cbNeeded / sizeof (HMODULE)); i++)
1055 {
1056 if (!(*win32_GetModuleInformation) (current_process_handle,
1057 DllHandle[i],
1058 &mi,
1059 sizeof (mi)))
1060 {
1061 DWORD err = GetLastError ();
1062 error ("Can't get module info: (error %d): %s\n",
1063 (int) err, strwinerror (err));
1064 }
1065
1066 if ((DWORD) (mi.lpBaseOfDll) == BaseAddress)
1067 {
1068 len = (*win32_GetModuleFileNameExA) (current_process_handle,
1069 DllHandle[i],
1070 dll_name_ret,
1071 MAX_PATH);
1072 if (len == 0)
1073 {
1074 DWORD err = GetLastError ();
1075 error ("Error getting dll name: (error %d): %s\n",
1076 (int) err, strwinerror (err));
1077 }
1078 return 1;
1079 }
1080 }
1081
1082failed:
1083 dll_name_ret[0] = '\0';
1084 return 0;
1085}
1086
1087typedef HANDLE (WINAPI *winapi_CreateToolhelp32Snapshot) (DWORD, DWORD);
1088typedef BOOL (WINAPI *winapi_Module32First) (HANDLE, LPMODULEENTRY32);
1089typedef BOOL (WINAPI *winapi_Module32Next) (HANDLE, LPMODULEENTRY32);
1090
1091static winapi_CreateToolhelp32Snapshot win32_CreateToolhelp32Snapshot;
1092static winapi_Module32First win32_Module32First;
1093static winapi_Module32Next win32_Module32Next;
6b3d9b83
PA
1094#ifdef _WIN32_WCE
1095typedef BOOL (WINAPI *winapi_CloseToolhelp32Snapshot) (HANDLE);
1096static winapi_CloseToolhelp32Snapshot win32_CloseToolhelp32Snapshot;
1097#endif
255e7678
DJ
1098
1099static BOOL
1100load_toolhelp (void)
1101{
1102 static int toolhelp_loaded = 0;
1103 static HMODULE dll = NULL;
1104
1105 if (!toolhelp_loaded)
1106 {
1107 toolhelp_loaded = 1;
1108#ifndef _WIN32_WCE
1109 dll = GetModuleHandle (_T("KERNEL32.DLL"));
1110#else
6b3d9b83 1111 dll = LoadLibrary (L"TOOLHELP.DLL");
255e7678
DJ
1112#endif
1113 if (!dll)
1114 return FALSE;
1115
1116 win32_CreateToolhelp32Snapshot =
1117 GETPROCADDRESS (dll, CreateToolhelp32Snapshot);
1118 win32_Module32First = GETPROCADDRESS (dll, Module32First);
1119 win32_Module32Next = GETPROCADDRESS (dll, Module32Next);
6b3d9b83
PA
1120#ifdef _WIN32_WCE
1121 win32_CloseToolhelp32Snapshot =
1122 GETPROCADDRESS (dll, CloseToolhelp32Snapshot);
1123#endif
255e7678
DJ
1124 }
1125
1126 return (win32_CreateToolhelp32Snapshot != NULL
1127 && win32_Module32First != NULL
6b3d9b83
PA
1128 && win32_Module32Next != NULL
1129#ifdef _WIN32_WCE
1130 && win32_CloseToolhelp32Snapshot != NULL
1131#endif
1132 );
255e7678
DJ
1133}
1134
1135static int
1136toolhelp_get_dll_name (DWORD BaseAddress, char *dll_name_ret)
1137{
1138 HANDLE snapshot_module;
1139 MODULEENTRY32 modEntry = { sizeof (MODULEENTRY32) };
6b3d9b83 1140 int found = 0;
255e7678
DJ
1141
1142 if (!load_toolhelp ())
1143 return 0;
1144
1145 snapshot_module = win32_CreateToolhelp32Snapshot (TH32CS_SNAPMODULE,
1146 current_event.dwProcessId);
1147 if (snapshot_module == INVALID_HANDLE_VALUE)
1148 return 0;
1149
1150 /* Ignore the first module, which is the exe. */
6b3d9b83
PA
1151 if (win32_Module32First (snapshot_module, &modEntry))
1152 while (win32_Module32Next (snapshot_module, &modEntry))
1153 if ((DWORD) modEntry.modBaseAddr == BaseAddress)
1154 {
255e7678 1155#ifdef UNICODE
6b3d9b83 1156 wcstombs (dll_name_ret, modEntry.szExePath, MAX_PATH + 1);
255e7678 1157#else
6b3d9b83 1158 strcpy (dll_name_ret, modEntry.szExePath);
255e7678 1159#endif
6b3d9b83
PA
1160 found = 1;
1161 break;
1162 }
255e7678 1163
6b3d9b83
PA
1164#ifdef _WIN32_WCE
1165 win32_CloseToolhelp32Snapshot (snapshot_module);
1166#else
255e7678 1167 CloseHandle (snapshot_module);
6b3d9b83
PA
1168#endif
1169 return found;
255e7678
DJ
1170}
1171
1172static void
1173handle_load_dll (void)
1174{
1175 LOAD_DLL_DEBUG_INFO *event = &current_event.u.LoadDll;
1176 char dll_buf[MAX_PATH + 1];
1177 char *dll_name = NULL;
1178 DWORD load_addr;
1179
1180 dll_buf[0] = dll_buf[sizeof (dll_buf) - 1] = '\0';
1181
34d86ddd
PA
1182 /* Windows does not report the image name of the dlls in the debug
1183 event on attaches. We resort to iterating over the list of
1184 loaded dlls looking for a match by image base. */
1185 if (!psapi_get_dll_name ((DWORD) event->lpBaseOfDll, dll_buf))
1186 {
1187 if (!server_waiting)
1188 /* On some versions of Windows and Windows CE, we can't create
1189 toolhelp snapshots while the inferior is stopped in a
1190 LOAD_DLL_DEBUG_EVENT due to a dll load, but we can while
1191 Windows is reporting the already loaded dlls. */
1192 toolhelp_get_dll_name ((DWORD) event->lpBaseOfDll, dll_buf);
1193 }
255e7678
DJ
1194
1195 dll_name = dll_buf;
1196
1197 if (*dll_name == '\0')
1198 dll_name = get_image_name (current_process_handle,
1199 event->lpImageName, event->fUnicode);
1200 if (!dll_name)
1201 return;
1202
1203 /* The symbols in a dll are offset by 0x1000, which is the
1204 the offset from 0 of the first byte in an image - because
1205 of the file header and the section alignment. */
1206
1207 load_addr = (DWORD) event->lpBaseOfDll + 0x1000;
1208 win32_add_one_solib (dll_name, load_addr);
1209}
1210
1211static void
1212handle_unload_dll (void)
1213{
1214 CORE_ADDR load_addr =
1215 (CORE_ADDR) (DWORD) current_event.u.UnloadDll.lpBaseOfDll;
1216 load_addr += 0x1000;
1217 unloaded_dll (NULL, load_addr);
1218}
1219
34b34921 1220static void
b80864fb
DJ
1221handle_exception (struct target_waitstatus *ourstatus)
1222{
b80864fb
DJ
1223 DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode;
1224
1225 ourstatus->kind = TARGET_WAITKIND_STOPPED;
1226
b80864fb
DJ
1227 switch (code)
1228 {
1229 case EXCEPTION_ACCESS_VIOLATION:
1230 OUTMSG2 (("EXCEPTION_ACCESS_VIOLATION"));
1231 ourstatus->value.sig = TARGET_SIGNAL_SEGV;
1232 break;
1233 case STATUS_STACK_OVERFLOW:
1234 OUTMSG2 (("STATUS_STACK_OVERFLOW"));
1235 ourstatus->value.sig = TARGET_SIGNAL_SEGV;
1236 break;
1237 case STATUS_FLOAT_DENORMAL_OPERAND:
1238 OUTMSG2 (("STATUS_FLOAT_DENORMAL_OPERAND"));
1239 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1240 break;
1241 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
1242 OUTMSG2 (("EXCEPTION_ARRAY_BOUNDS_EXCEEDED"));
1243 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1244 break;
1245 case STATUS_FLOAT_INEXACT_RESULT:
1246 OUTMSG2 (("STATUS_FLOAT_INEXACT_RESULT"));
1247 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1248 break;
1249 case STATUS_FLOAT_INVALID_OPERATION:
1250 OUTMSG2 (("STATUS_FLOAT_INVALID_OPERATION"));
1251 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1252 break;
1253 case STATUS_FLOAT_OVERFLOW:
1254 OUTMSG2 (("STATUS_FLOAT_OVERFLOW"));
1255 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1256 break;
1257 case STATUS_FLOAT_STACK_CHECK:
1258 OUTMSG2 (("STATUS_FLOAT_STACK_CHECK"));
1259 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1260 break;
1261 case STATUS_FLOAT_UNDERFLOW:
1262 OUTMSG2 (("STATUS_FLOAT_UNDERFLOW"));
1263 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1264 break;
1265 case STATUS_FLOAT_DIVIDE_BY_ZERO:
1266 OUTMSG2 (("STATUS_FLOAT_DIVIDE_BY_ZERO"));
1267 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1268 break;
1269 case STATUS_INTEGER_DIVIDE_BY_ZERO:
1270 OUTMSG2 (("STATUS_INTEGER_DIVIDE_BY_ZERO"));
1271 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1272 break;
1273 case STATUS_INTEGER_OVERFLOW:
1274 OUTMSG2 (("STATUS_INTEGER_OVERFLOW"));
1275 ourstatus->value.sig = TARGET_SIGNAL_FPE;
1276 break;
1277 case EXCEPTION_BREAKPOINT:
1278 OUTMSG2 (("EXCEPTION_BREAKPOINT"));
1279 ourstatus->value.sig = TARGET_SIGNAL_TRAP;
ed50f18f
PA
1280#ifdef _WIN32_WCE
1281 /* Remove the initial breakpoint. */
1282 check_breakpoints ((CORE_ADDR) (long) current_event
1b3f6016 1283 .u.Exception.ExceptionRecord.ExceptionAddress);
ed50f18f 1284#endif
b80864fb
DJ
1285 break;
1286 case DBG_CONTROL_C:
1287 OUTMSG2 (("DBG_CONTROL_C"));
1288 ourstatus->value.sig = TARGET_SIGNAL_INT;
1289 break;
1290 case DBG_CONTROL_BREAK:
1291 OUTMSG2 (("DBG_CONTROL_BREAK"));
1292 ourstatus->value.sig = TARGET_SIGNAL_INT;
1293 break;
1294 case EXCEPTION_SINGLE_STEP:
1295 OUTMSG2 (("EXCEPTION_SINGLE_STEP"));
1296 ourstatus->value.sig = TARGET_SIGNAL_TRAP;
1297 break;
1298 case EXCEPTION_ILLEGAL_INSTRUCTION:
1299 OUTMSG2 (("EXCEPTION_ILLEGAL_INSTRUCTION"));
1300 ourstatus->value.sig = TARGET_SIGNAL_ILL;
1301 break;
1302 case EXCEPTION_PRIV_INSTRUCTION:
1303 OUTMSG2 (("EXCEPTION_PRIV_INSTRUCTION"));
1304 ourstatus->value.sig = TARGET_SIGNAL_ILL;
1305 break;
1306 case EXCEPTION_NONCONTINUABLE_EXCEPTION:
1307 OUTMSG2 (("EXCEPTION_NONCONTINUABLE_EXCEPTION"));
1308 ourstatus->value.sig = TARGET_SIGNAL_ILL;
1309 break;
1310 default:
1311 if (current_event.u.Exception.dwFirstChance)
34b34921
PA
1312 {
1313 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1314 return;
1315 }
b80864fb
DJ
1316 OUTMSG2 (("gdbserver: unknown target exception 0x%08lx at 0x%08lx",
1317 current_event.u.Exception.ExceptionRecord.ExceptionCode,
1318 (DWORD) current_event.u.Exception.ExceptionRecord.
1319 ExceptionAddress));
1320 ourstatus->value.sig = TARGET_SIGNAL_UNKNOWN;
1321 break;
1322 }
1323 OUTMSG2 (("\n"));
1324 last_sig = ourstatus->value.sig;
b80864fb
DJ
1325}
1326
4d5d1aaa 1327
34b34921 1328static void
4d5d1aaa
PA
1329suspend_one_thread (struct inferior_list_entry *entry)
1330{
1331 struct thread_info *thread = (struct thread_info *) entry;
1332 win32_thread_info *th = inferior_target_data (thread);
1333
1334 if (!th->suspended)
1335 {
1336 if (SuspendThread (th->h) == (DWORD) -1)
1337 {
1338 DWORD err = GetLastError ();
1339 OUTMSG (("warning: SuspendThread failed in suspend_one_thread, "
1340 "(error %d): %s\n", (int) err, strwinerror (err)));
1341 }
1342 else
1343 th->suspended = 1;
1344 }
1345}
1346
1347static void
1348fake_breakpoint_event (void)
b80864fb 1349{
4d5d1aaa 1350 OUTMSG2(("fake_breakpoint_event\n"));
b80864fb 1351
4d5d1aaa
PA
1352 faked_breakpoint = 1;
1353
1354 memset (&current_event, 0, sizeof (current_event));
1355 current_event.dwThreadId = main_thread_id;
1356 current_event.dwDebugEventCode = EXCEPTION_DEBUG_EVENT;
1357 current_event.u.Exception.ExceptionRecord.ExceptionCode
1358 = EXCEPTION_BREAKPOINT;
1359
1360 for_each_inferior (&all_threads, suspend_one_thread);
1361}
1362
b65d95c5
DJ
1363#ifdef _WIN32_WCE
1364static int
1365auto_delete_breakpoint (CORE_ADDR stop_pc)
1366{
1367 return 1;
1368}
1369#endif
1370
4d5d1aaa
PA
1371/* Get the next event from the child. */
1372
1373static int
1374get_child_debug_event (struct target_waitstatus *ourstatus)
1375{
95954743
PA
1376 ptid_t ptid;
1377
b80864fb
DJ
1378 last_sig = TARGET_SIGNAL_0;
1379 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1380
4d5d1aaa
PA
1381 /* Check if GDB sent us an interrupt request. */
1382 check_remote_input_interrupt_request ();
1383
1384 if (soft_interrupt_requested)
1385 {
1386 soft_interrupt_requested = 0;
1387 fake_breakpoint_event ();
1388 goto gotevent;
1389 }
1390
d97903b2
PA
1391#ifndef _WIN32_WCE
1392 attaching = 0;
1393#else
1394 if (attaching)
1395 {
1396 /* WinCE doesn't set an initial breakpoint automatically. To
1b3f6016
PA
1397 stop the inferior, we flush all currently pending debug
1398 events -- the thread list and the dll list are always
1399 reported immediatelly without delay, then, we suspend all
1400 threads and pretend we saw a trap at the current PC of the
1401 main thread.
1402
1403 Contrary to desktop Windows, Windows CE *does* report the dll
1404 names on LOAD_DLL_DEBUG_EVENTs resulting from a
1405 DebugActiveProcess call. This limits the way we can detect
1406 if all the dlls have already been reported. If we get a real
1407 debug event before leaving attaching, the worst that will
1408 happen is the user will see a spurious breakpoint. */
d97903b2
PA
1409
1410 current_event.dwDebugEventCode = 0;
1411 if (!WaitForDebugEvent (&current_event, 0))
1b3f6016
PA
1412 {
1413 OUTMSG2(("no attach events left\n"));
1414 fake_breakpoint_event ();
1415 attaching = 0;
1416 }
d97903b2 1417 else
1b3f6016 1418 OUTMSG2(("got attach event\n"));
d97903b2
PA
1419 }
1420 else
1421#endif
1422 {
1423 /* Keep the wait time low enough for confortable remote
1b3f6016
PA
1424 interruption, but high enough so gdbserver doesn't become a
1425 bottleneck. */
d97903b2 1426 if (!WaitForDebugEvent (&current_event, 250))
912cf4ba
PA
1427 {
1428 DWORD e = GetLastError();
1429
1430 if (e == ERROR_PIPE_NOT_CONNECTED)
1431 {
1432 /* This will happen if the loader fails to succesfully
1433 load the application, e.g., if the main executable
1434 tries to pull in a non-existing export from a
1435 DLL. */
1436 ourstatus->kind = TARGET_WAITKIND_EXITED;
1437 ourstatus->value.integer = 1;
1438 return 1;
1439 }
1440
1441 return 0;
1442 }
d97903b2 1443 }
4d5d1aaa
PA
1444
1445 gotevent:
b80864fb 1446
34b34921 1447 switch (current_event.dwDebugEventCode)
b80864fb
DJ
1448 {
1449 case CREATE_THREAD_DEBUG_EVENT:
1450 OUTMSG2 (("gdbserver: kernel event CREATE_THREAD_DEBUG_EVENT "
1451 "for pid=%d tid=%x)\n",
1452 (unsigned) current_event.dwProcessId,
1453 (unsigned) current_event.dwThreadId));
1454
1455 /* Record the existence of this thread. */
95954743
PA
1456 child_add_thread (current_event.dwProcessId,
1457 current_event.dwThreadId,
1458 current_event.u.CreateThread.hThread);
b80864fb
DJ
1459 break;
1460
1461 case EXIT_THREAD_DEBUG_EVENT:
1462 OUTMSG2 (("gdbserver: kernel event EXIT_THREAD_DEBUG_EVENT "
1463 "for pid=%d tid=%x\n",
1464 (unsigned) current_event.dwProcessId,
1465 (unsigned) current_event.dwThreadId));
95954743
PA
1466 child_delete_thread (current_event.dwProcessId,
1467 current_event.dwThreadId);
aeeb81d1
PA
1468
1469 current_inferior = (struct thread_info *) all_threads.head;
1470 return 1;
b80864fb
DJ
1471
1472 case CREATE_PROCESS_DEBUG_EVENT:
1473 OUTMSG2 (("gdbserver: kernel event CREATE_PROCESS_DEBUG_EVENT "
1474 "for pid=%d tid=%x\n",
1475 (unsigned) current_event.dwProcessId,
1476 (unsigned) current_event.dwThreadId));
1477 CloseHandle (current_event.u.CreateProcessInfo.hFile);
1478
1479 current_process_handle = current_event.u.CreateProcessInfo.hProcess;
1480 main_thread_id = current_event.dwThreadId;
1481
1482 ourstatus->kind = TARGET_WAITKIND_EXECD;
1483 ourstatus->value.execd_pathname = "Main executable";
1484
1485 /* Add the main thread. */
95954743
PA
1486 child_add_thread (current_event.dwProcessId,
1487 main_thread_id,
34b34921 1488 current_event.u.CreateProcessInfo.hThread);
b80864fb 1489
95954743 1490 ourstatus->value.related_pid = debug_event_ptid (&current_event);
ed50f18f 1491#ifdef _WIN32_WCE
d97903b2
PA
1492 if (!attaching)
1493 {
1494 /* Windows CE doesn't set the initial breakpoint
1495 automatically like the desktop versions of Windows do.
1496 We add it explicitly here. It will be removed as soon as
1497 it is hit. */
1498 set_breakpoint_at ((CORE_ADDR) (long) current_event.u
1499 .CreateProcessInfo.lpStartAddress,
b65d95c5 1500 auto_delete_breakpoint);
d97903b2 1501 }
ed50f18f 1502#endif
b80864fb
DJ
1503 break;
1504
1505 case EXIT_PROCESS_DEBUG_EVENT:
1506 OUTMSG2 (("gdbserver: kernel event EXIT_PROCESS_DEBUG_EVENT "
1507 "for pid=%d tid=%x\n",
1508 (unsigned) current_event.dwProcessId,
1509 (unsigned) current_event.dwThreadId));
1510 ourstatus->kind = TARGET_WAITKIND_EXITED;
1511 ourstatus->value.integer = current_event.u.ExitProcess.dwExitCode;
18aae699 1512 child_continue (DBG_CONTINUE, -1);
b80864fb 1513 CloseHandle (current_process_handle);
9d606399 1514 current_process_handle = NULL;
b80864fb
DJ
1515 break;
1516
1517 case LOAD_DLL_DEBUG_EVENT:
1518 OUTMSG2 (("gdbserver: kernel event LOAD_DLL_DEBUG_EVENT "
1519 "for pid=%d tid=%x\n",
1520 (unsigned) current_event.dwProcessId,
1521 (unsigned) current_event.dwThreadId));
1522 CloseHandle (current_event.u.LoadDll.hFile);
255e7678 1523 handle_load_dll ();
b80864fb
DJ
1524
1525 ourstatus->kind = TARGET_WAITKIND_LOADED;
255e7678 1526 ourstatus->value.sig = TARGET_SIGNAL_TRAP;
b80864fb
DJ
1527 break;
1528
1529 case UNLOAD_DLL_DEBUG_EVENT:
1530 OUTMSG2 (("gdbserver: kernel event UNLOAD_DLL_DEBUG_EVENT "
1531 "for pid=%d tid=%x\n",
1532 (unsigned) current_event.dwProcessId,
1533 (unsigned) current_event.dwThreadId));
255e7678
DJ
1534 handle_unload_dll ();
1535 ourstatus->kind = TARGET_WAITKIND_LOADED;
1536 ourstatus->value.sig = TARGET_SIGNAL_TRAP;
b80864fb
DJ
1537 break;
1538
1539 case EXCEPTION_DEBUG_EVENT:
1540 OUTMSG2 (("gdbserver: kernel event EXCEPTION_DEBUG_EVENT "
1541 "for pid=%d tid=%x\n",
1542 (unsigned) current_event.dwProcessId,
1543 (unsigned) current_event.dwThreadId));
34b34921 1544 handle_exception (ourstatus);
b80864fb
DJ
1545 break;
1546
1547 case OUTPUT_DEBUG_STRING_EVENT:
1548 /* A message from the kernel (or Cygwin). */
1549 OUTMSG2 (("gdbserver: kernel event OUTPUT_DEBUG_STRING_EVENT "
1550 "for pid=%d tid=%x\n",
1551 (unsigned) current_event.dwProcessId,
1552 (unsigned) current_event.dwThreadId));
bce7165d 1553 handle_output_debug_string (ourstatus);
b80864fb
DJ
1554 break;
1555
1556 default:
1557 OUTMSG2 (("gdbserver: kernel event unknown "
1558 "for pid=%d tid=%x code=%ld\n",
1559 (unsigned) current_event.dwProcessId,
1560 (unsigned) current_event.dwThreadId,
1561 current_event.dwDebugEventCode));
1562 break;
1563 }
1564
aeeb81d1 1565 ptid = debug_event_ptid (&current_event);
b80864fb 1566 current_inferior =
95954743 1567 (struct thread_info *) find_inferior_id (&all_threads, ptid);
4d5d1aaa 1568 return 1;
b80864fb
DJ
1569}
1570
1571/* Wait for the inferior process to change state.
1572 STATUS will be filled in with a response code to send to GDB.
1573 Returns the signal which caused the process to stop. */
95954743
PA
1574static ptid_t
1575win32_wait (ptid_t ptid, struct target_waitstatus *ourstatus, int options)
b80864fb 1576{
95954743 1577 struct process_info *process;
442ea881 1578 struct regcache *regcache;
95954743 1579
b80864fb
DJ
1580 while (1)
1581 {
5b1c542e 1582 if (!get_child_debug_event (ourstatus))
4d5d1aaa 1583 continue;
b80864fb 1584
5b1c542e 1585 switch (ourstatus->kind)
b80864fb 1586 {
34b34921 1587 case TARGET_WAITKIND_EXITED:
b80864fb 1588 OUTMSG2 (("Child exited with retcode = %x\n",
5b1c542e 1589 ourstatus->value.integer));
5ac588cf 1590 win32_clear_inferiors ();
95954743 1591 return pid_to_ptid (current_event.dwProcessId);
34b34921 1592 case TARGET_WAITKIND_STOPPED:
1b3f6016 1593 case TARGET_WAITKIND_LOADED:
f72f3e60 1594 OUTMSG2 (("Child Stopped with signal = %d \n",
10357975 1595 ourstatus->value.sig));
b80864fb 1596
442ea881
PA
1597 regcache = get_thread_regcache (current_inferior, 1);
1598 child_fetch_inferior_registers (regcache, -1);
b80864fb 1599
5b1c542e 1600 if (ourstatus->kind == TARGET_WAITKIND_LOADED
255e7678
DJ
1601 && !server_waiting)
1602 {
1603 /* When gdb connects, we want to be stopped at the
1604 initial breakpoint, not in some dll load event. */
1605 child_continue (DBG_CONTINUE, -1);
1606 break;
1607 }
1608
5b1c542e
PA
1609 /* We don't expose _LOADED events to gdbserver core. See
1610 the `dlls_changed' global. */
1611 if (ourstatus->kind == TARGET_WAITKIND_LOADED)
1612 ourstatus->kind = TARGET_WAITKIND_STOPPED;
1613
95954743 1614 return debug_event_ptid (&current_event);
1b3f6016 1615 default:
5b1c542e 1616 OUTMSG (("Ignoring unknown internal event, %d\n", ourstatus->kind));
1b3f6016
PA
1617 /* fall-through */
1618 case TARGET_WAITKIND_SPURIOUS:
1619 case TARGET_WAITKIND_EXECD:
34b34921
PA
1620 /* do nothing, just continue */
1621 child_continue (DBG_CONTINUE, -1);
1622 break;
b80864fb 1623 }
b80864fb
DJ
1624 }
1625}
1626
1627/* Fetch registers from the inferior process.
1628 If REGNO is -1, fetch all registers; otherwise, fetch at least REGNO. */
1629static void
442ea881 1630win32_fetch_inferior_registers (struct regcache *regcache, int regno)
b80864fb 1631{
442ea881 1632 child_fetch_inferior_registers (regcache, regno);
b80864fb
DJ
1633}
1634
1635/* Store registers to the inferior process.
1636 If REGNO is -1, store all registers; otherwise, store at least REGNO. */
1637static void
442ea881 1638win32_store_inferior_registers (struct regcache *regcache, int regno)
b80864fb 1639{
442ea881 1640 child_store_inferior_registers (regcache, regno);
b80864fb
DJ
1641}
1642
1643/* Read memory from the inferior process. This should generally be
1644 called through read_inferior_memory, which handles breakpoint shadowing.
1645 Read LEN bytes at MEMADDR into a buffer at MYADDR. */
1646static int
1647win32_read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
1648{
ed50f18f 1649 return child_xfer_memory (memaddr, (char *) myaddr, len, 0, 0) != len;
b80864fb
DJ
1650}
1651
1652/* Write memory to the inferior process. This should generally be
1653 called through write_inferior_memory, which handles breakpoint shadowing.
1654 Write LEN bytes from the buffer at MYADDR to MEMADDR.
1655 Returns 0 on success and errno on failure. */
1656static int
1657win32_write_inferior_memory (CORE_ADDR memaddr, const unsigned char *myaddr,
1658 int len)
1659{
1660 return child_xfer_memory (memaddr, (char *) myaddr, len, 1, 0) != len;
1661}
1662
7390519e
PA
1663/* Send an interrupt request to the inferior process. */
1664static void
1665win32_request_interrupt (void)
1666{
1667 winapi_DebugBreakProcess DebugBreakProcess;
1668 winapi_GenerateConsoleCtrlEvent GenerateConsoleCtrlEvent;
1669
1670#ifdef _WIN32_WCE
1671 HMODULE dll = GetModuleHandle (_T("COREDLL.DLL"));
1672#else
1673 HMODULE dll = GetModuleHandle (_T("KERNEL32.DLL"));
1674#endif
1675
1676 GenerateConsoleCtrlEvent = GETPROCADDRESS (dll, GenerateConsoleCtrlEvent);
1677
1678 if (GenerateConsoleCtrlEvent != NULL
1679 && GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT, current_process_id))
1680 return;
1681
1682 /* GenerateConsoleCtrlEvent can fail if process id being debugged is
1683 not a process group id.
1684 Fallback to XP/Vista 'DebugBreakProcess', which generates a
1685 breakpoint exception in the interior process. */
1686
1687 DebugBreakProcess = GETPROCADDRESS (dll, DebugBreakProcess);
1688
1689 if (DebugBreakProcess != NULL
1690 && DebugBreakProcess (current_process_handle))
1691 return;
1692
4d5d1aaa
PA
1693 /* Last resort, suspend all threads manually. */
1694 soft_interrupt_requested = 1;
7390519e
PA
1695}
1696
59a016f0
PA
1697#ifdef _WIN32_WCE
1698int
1699win32_error_to_fileio_error (DWORD err)
1700{
1701 switch (err)
1702 {
1703 case ERROR_BAD_PATHNAME:
1704 case ERROR_FILE_NOT_FOUND:
1705 case ERROR_INVALID_NAME:
1706 case ERROR_PATH_NOT_FOUND:
1707 return FILEIO_ENOENT;
1708 case ERROR_CRC:
1709 case ERROR_IO_DEVICE:
1710 case ERROR_OPEN_FAILED:
1711 return FILEIO_EIO;
1712 case ERROR_INVALID_HANDLE:
1713 return FILEIO_EBADF;
1714 case ERROR_ACCESS_DENIED:
1715 case ERROR_SHARING_VIOLATION:
1716 return FILEIO_EACCES;
1717 case ERROR_NOACCESS:
1718 return FILEIO_EFAULT;
1719 case ERROR_BUSY:
1720 return FILEIO_EBUSY;
1721 case ERROR_ALREADY_EXISTS:
1722 case ERROR_FILE_EXISTS:
1723 return FILEIO_EEXIST;
1724 case ERROR_BAD_DEVICE:
1725 return FILEIO_ENODEV;
1726 case ERROR_DIRECTORY:
1727 return FILEIO_ENOTDIR;
1728 case ERROR_FILENAME_EXCED_RANGE:
1729 case ERROR_INVALID_DATA:
1730 case ERROR_INVALID_PARAMETER:
1731 case ERROR_NEGATIVE_SEEK:
1732 return FILEIO_EINVAL;
1733 case ERROR_TOO_MANY_OPEN_FILES:
1734 return FILEIO_EMFILE;
1735 case ERROR_HANDLE_DISK_FULL:
1736 case ERROR_DISK_FULL:
1737 return FILEIO_ENOSPC;
1738 case ERROR_WRITE_PROTECT:
1739 return FILEIO_EROFS;
1740 case ERROR_NOT_SUPPORTED:
1741 return FILEIO_ENOSYS;
1742 }
1743
1744 return FILEIO_EUNKNOWN;
1745}
1746
1747static void
1748wince_hostio_last_error (char *buf)
1749{
1750 DWORD winerr = GetLastError ();
1751 int fileio_err = win32_error_to_fileio_error (winerr);
1752 sprintf (buf, "F-1,%x", fileio_err);
1753}
1754#endif
1755
b80864fb
DJ
1756static struct target_ops win32_target_ops = {
1757 win32_create_inferior,
1758 win32_attach,
1759 win32_kill,
1760 win32_detach,
505106cd 1761 win32_mourn,
444d6139 1762 win32_join,
b80864fb
DJ
1763 win32_thread_alive,
1764 win32_resume,
1765 win32_wait,
1766 win32_fetch_inferior_registers,
1767 win32_store_inferior_registers,
1768 win32_read_inferior_memory,
1769 win32_write_inferior_memory,
820f2bda 1770 NULL,
7390519e 1771 win32_request_interrupt,
820f2bda 1772 NULL,
aa5ca48f
DE
1773 win32_insert_point,
1774 win32_remove_point,
1775 win32_stopped_by_watchpoint,
1776 win32_stopped_data_address,
820f2bda
PA
1777 NULL,
1778 NULL,
59a016f0
PA
1779 NULL,
1780#ifdef _WIN32_WCE
1781 wince_hostio_last_error,
1782#else
1783 hostio_last_error_from_errno,
1784#endif
b80864fb
DJ
1785};
1786
1787/* Initialize the Win32 backend. */
1788void
1789initialize_low (void)
1790{
1791 set_target_ops (&win32_target_ops);
ed50f18f
PA
1792 if (the_low_target.breakpoint != NULL)
1793 set_breakpoint_data (the_low_target.breakpoint,
1794 the_low_target.breakpoint_len);
d05b4ac3 1795 the_low_target.arch_setup ();
b80864fb 1796}
This page took 0.353933 seconds and 4 git commands to generate.