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