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