gdbsupport: rename source files to .cc
[deliverable/binutils-gdb.git] / gdbserver / win32-low.c
CommitLineData
b80864fb 1/* Low level interface to Windows debugging, for gdbserver.
b811d2c2 2 Copyright (C) 2006-2020 Free Software Foundation, Inc.
b80864fb
DJ
3
4 Contributed by Leo Zayas. Based on "win32-nat.c" from GDB.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
b80864fb
DJ
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
b80864fb
DJ
20
21#include "server.h"
22#include "regcache.h"
59a016f0 23#include "gdb/fileio.h"
ed50f18f
PA
24#include "mem-break.h"
25#include "win32-low.h"
623b6bdf 26#include "gdbthread.h"
799cdc37 27#include "dll.h"
533b0600 28#include "hostio.h"
b80864fb 29#include <windows.h>
ed50f18f 30#include <winnt.h>
b80864fb 31#include <imagehlp.h>
255e7678 32#include <tlhelp32.h>
b80864fb 33#include <psapi.h>
b80864fb 34#include <process.h>
268a13a5
TT
35#include "gdbsupport/gdb_tilde_expand.h"
36#include "gdbsupport/common-inferior.h"
559e7e50 37#include "gdbsupport/gdb_wait.h"
b80864fb
DJ
38
39#ifndef USE_WIN32API
40#include <sys/cygwin.h>
41#endif
42
10357975
PA
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)
ed50f18f
PA
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]))
b80864fb
DJ
61#endif
62
bf914831
PA
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
b80864fb
DJ
71int using_threads = 1;
72
73/* Globals. */
d97903b2 74static int attaching = 0;
b80864fb
DJ
75static HANDLE current_process_handle = NULL;
76static DWORD current_process_id = 0;
5ac588cf 77static DWORD main_thread_id = 0;
7928d571 78static EXCEPTION_RECORD siginfo_er; /* Contents of $_siginfo */
a493e3e2 79static enum gdb_signal last_sig = GDB_SIGNAL_0;
b80864fb
DJ
80
81/* The current debug event from WaitForDebugEvent. */
82static DEBUG_EVENT current_event;
83
4210d83e
PA
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. */
87static struct target_waitstatus cached_status;
88
4d5d1aaa
PA
89/* Non zero if an interrupt request is to be satisfied by suspending
90 all threads. */
91static 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. */
95static int faked_breakpoint = 0;
96
3aee8918
PA
97const struct target_desc *win32_tdesc;
98
ed50f18f 99#define NUM_REGS (the_low_target.num_regs)
b80864fb 100
7a9a7487
MG
101typedef BOOL (WINAPI *winapi_DebugActiveProcessStop) (DWORD dwProcessId);
102typedef BOOL (WINAPI *winapi_DebugSetProcessKillOnExit) (BOOL KillOnExit);
103typedef BOOL (WINAPI *winapi_DebugBreakProcess) (HANDLE);
104typedef BOOL (WINAPI *winapi_GenerateConsoleCtrlEvent) (DWORD, DWORD);
b80864fb 105
4210d83e
PA
106static ptid_t win32_wait (ptid_t ptid, struct target_waitstatus *ourstatus,
107 int options);
2bd7c093 108static void win32_resume (struct thread_resume *resume_info, size_t n);
379a5e2d 109#ifndef _WIN32_WCE
f25b3fc3 110static void win32_add_all_dlls (void);
379a5e2d 111#endif
34b34921 112
b80864fb
DJ
113/* Get the thread ID from the current selected inferior (the current
114 thread). */
95954743 115static ptid_t
0bfdf32f 116current_thread_ptid (void)
b80864fb 117{
80894984 118 return current_ptid;
95954743
PA
119}
120
121/* The current debug event from WaitForDebugEvent. */
122static ptid_t
123debug_event_ptid (DEBUG_EVENT *event)
124{
fd79271b 125 return ptid_t (event->dwProcessId, event->dwThreadId, 0);
b80864fb
DJ
126}
127
9c6c8194
PA
128/* Get the thread context of the thread associated with TH. */
129
130static void
131win32_get_thread_context (win32_thread_info *th)
132{
133 memset (&th->context, 0, sizeof (CONTEXT));
a2abc7de 134 (*the_low_target.get_thread_context) (th);
9c6c8194
PA
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
142static void
143win32_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
30baf67b 151 resuming - it will most likely crash the inferior.
9c6c8194
PA
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
a2abc7de 158 SetThreadContext (th->h, &th->context);
9c6c8194
PA
159}
160
a2abc7de
PA
161/* Set the thread context of the thread associated with TH. */
162
163static void
164win32_prepare_to_resume (win32_thread_info *th)
b80864fb 165{
a2abc7de
PA
166 if (the_low_target.prepare_to_resume != NULL)
167 (*the_low_target.prepare_to_resume) (th);
168}
b80864fb 169
a2abc7de 170/* See win32-low.h. */
b80864fb 171
a2abc7de
PA
172void
173win32_require_context (win32_thread_info *th)
174{
175 if (th->context.ContextFlags == 0)
b80864fb 176 {
c436e841
PA
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 }
b80864fb 188
9c6c8194 189 win32_get_thread_context (th);
b80864fb 190 }
a2abc7de
PA
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. */
195static win32_thread_info *
196thread_rec (ptid_t ptid, int get_context)
197{
8dc7b443 198 thread_info *thread = find_thread_ptid (ptid);
a2abc7de
PA
199 if (thread == NULL)
200 return NULL;
201
8dc7b443 202 win32_thread_info *th = (win32_thread_info *) thread_target_data (thread);
a2abc7de
PA
203 if (get_context)
204 win32_require_context (th);
b80864fb
DJ
205 return th;
206}
207
208/* Add a thread to the thread list. */
41093d81 209static win32_thread_info *
711e434b 210child_add_thread (DWORD pid, DWORD tid, HANDLE h, void *tlb)
b80864fb 211{
41093d81 212 win32_thread_info *th;
fd79271b 213 ptid_t ptid = ptid_t (pid, tid, 0);
b80864fb 214
95954743 215 if ((th = thread_rec (ptid, FALSE)))
b80864fb
DJ
216 return th;
217
8d749320 218 th = XCNEW (win32_thread_info);
b80864fb
DJ
219 th->tid = tid;
220 th->h = h;
711e434b 221 th->thread_local_base = (CORE_ADDR) (uintptr_t) tlb;
b80864fb 222
95954743 223 add_thread (ptid, th);
b80864fb 224
34b34921
PA
225 if (the_low_target.thread_added != NULL)
226 (*the_low_target.thread_added) (th);
b80864fb
DJ
227
228 return th;
229}
230
231/* Delete a thread from the list of threads. */
232static void
9c80ecd6 233delete_thread_info (thread_info *thread)
b80864fb 234{
6afd337d 235 win32_thread_info *th = (win32_thread_info *) thread_target_data (thread);
b80864fb 236
c3de4d92 237 remove_thread (thread);
b80864fb
DJ
238 CloseHandle (th->h);
239 free (th);
240}
241
242/* Delete a thread from the list of threads. */
243static void
95954743 244child_delete_thread (DWORD pid, DWORD tid)
b80864fb 245{
b80864fb 246 /* If the last thread is exiting, just return. */
9c80ecd6 247 if (all_threads.size () == 1)
b80864fb
DJ
248 return;
249
8dc7b443 250 thread_info *thread = find_thread_ptid (ptid_t (pid, tid));
b80864fb
DJ
251 if (thread == NULL)
252 return;
253
254 delete_thread_info (thread);
255}
256
aa5ca48f
DE
257/* These watchpoint related wrapper functions simply pass on the function call
258 if the low target has registered a corresponding function. */
259
260static int
802e8e6d
PA
261win32_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
267static int
268win32_insert_point (enum raw_bkpt_type type, CORE_ADDR addr,
269 int size, struct raw_breakpoint *bp)
aa5ca48f
DE
270{
271 if (the_low_target.insert_point != NULL)
802e8e6d 272 return the_low_target.insert_point (type, addr, size, bp);
aa5ca48f
DE
273 else
274 /* Unsupported (see target.h). */
275 return 1;
276}
277
278static int
802e8e6d
PA
279win32_remove_point (enum raw_bkpt_type type, CORE_ADDR addr,
280 int size, struct raw_breakpoint *bp)
aa5ca48f
DE
281{
282 if (the_low_target.remove_point != NULL)
802e8e6d 283 return the_low_target.remove_point (type, addr, size, bp);
aa5ca48f
DE
284 else
285 /* Unsupported (see target.h). */
286 return 1;
287}
288
289static int
290win32_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
298static CORE_ADDR
299win32_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
b80864fb
DJ
308/* Transfer memory from/to the debugged process. */
309static int
310child_xfer_memory (CORE_ADDR memaddr, char *our, int len,
5b6d1e4f 311 int write, process_stratum_target *target)
b80864fb 312{
cee83bcb
PM
313 BOOL success;
314 SIZE_T done = 0;
315 DWORD lasterror = 0;
e8f0053d 316 uintptr_t addr = (uintptr_t) memaddr;
b80864fb
DJ
317
318 if (write)
319 {
cee83bcb
PM
320 success = WriteProcessMemory (current_process_handle, (LPVOID) addr,
321 (LPCVOID) our, len, &done);
322 if (!success)
323 lasterror = GetLastError ();
b80864fb
DJ
324 FlushInstructionCache (current_process_handle, (LPCVOID) addr, len);
325 }
326 else
327 {
cee83bcb
PM
328 success = ReadProcessMemory (current_process_handle, (LPCVOID) addr,
329 (LPVOID) our, len, &done);
330 if (!success)
331 lasterror = GetLastError ();
b80864fb 332 }
cee83bcb
PM
333 if (!success && lasterror == ERROR_PARTIAL_COPY && done > 0)
334 return done;
335 else
336 return success ? done : -1;
b80864fb
DJ
337}
338
ed50f18f 339/* Clear out any old thread list and reinitialize it to a pristine
b80864fb
DJ
340 state. */
341static void
342child_init_thread_list (void)
343{
f0045347 344 for_each_thread (delete_thread_info);
b80864fb
DJ
345}
346
f25b3fc3
JB
347/* Zero during the child initialization phase, and nonzero otherwise. */
348
349static int child_initialization_done = 0;
350
b80864fb 351static void
95954743 352do_initial_child_stuff (HANDLE proch, DWORD pid, int attached)
b80864fb 353{
3aee8918
PA
354 struct process_info *proc;
355
a493e3e2 356 last_sig = GDB_SIGNAL_0;
b80864fb 357
5ac588cf
PA
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
b80864fb
DJ
365 memset (&current_event, 0, sizeof (current_event));
366
3aee8918
PA
367 proc = add_process (pid, attached);
368 proc->tdesc = win32_tdesc;
b80864fb 369 child_init_thread_list ();
f25b3fc3 370 child_initialization_done = 0;
ed50f18f
PA
371
372 if (the_low_target.initial_stuff != NULL)
373 (*the_low_target.initial_stuff) ();
4210d83e
PA
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 }
379a5e2d
JB
402
403#ifndef _WIN32_WCE
f25b3fc3
JB
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 ();
379a5e2d 420#endif
f25b3fc3
JB
421
422 child_initialization_done = 1;
b80864fb
DJ
423}
424
425/* Resume all artificially suspended threads if we are continuing
426 execution. */
2bee2b6c
SM
427static void
428continue_one_thread (thread_info *thread, int thread_id)
b80864fb 429{
6afd337d 430 win32_thread_info *th = (win32_thread_info *) thread_target_data (thread);
b80864fb 431
a2abc7de 432 if (thread_id == -1 || thread_id == th->tid)
b80864fb 433 {
a2abc7de 434 win32_prepare_to_resume (th);
34b34921 435
a2abc7de 436 if (th->suspended)
c436e841 437 {
a2abc7de
PA
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;
c436e841 451 }
b80864fb 452 }
b80864fb
DJ
453}
454
455static BOOL
456child_continue (DWORD continue_status, int thread_id)
457{
4d5d1aaa
PA
458 /* The inferior will only continue after the ContinueDebugEvent
459 call. */
2bee2b6c
SM
460 for_each_thread ([&] (thread_info *thread)
461 {
462 continue_one_thread (thread, thread_id);
463 });
4d5d1aaa 464 faked_breakpoint = 0;
b80864fb 465
4d5d1aaa
PA
466 if (!ContinueDebugEvent (current_event.dwProcessId,
467 current_event.dwThreadId,
468 continue_status))
469 return FALSE;
b80864fb 470
4d5d1aaa 471 return TRUE;
b80864fb
DJ
472}
473
b80864fb
DJ
474/* Fetch register(s) from the current thread context. */
475static void
442ea881 476child_fetch_inferior_registers (struct regcache *regcache, int r)
b80864fb
DJ
477{
478 int regno;
0bfdf32f 479 win32_thread_info *th = thread_rec (current_thread_ptid (), TRUE);
4463ce24 480 if (r == -1 || r > NUM_REGS)
442ea881 481 child_fetch_inferior_registers (regcache, NUM_REGS);
b80864fb
DJ
482 else
483 for (regno = 0; regno < r; regno++)
442ea881 484 (*the_low_target.fetch_inferior_register) (regcache, th, regno);
b80864fb
DJ
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. */
489static void
442ea881 490child_store_inferior_registers (struct regcache *regcache, int r)
b80864fb
DJ
491{
492 int regno;
0bfdf32f 493 win32_thread_info *th = thread_rec (current_thread_ptid (), TRUE);
b80864fb 494 if (r == -1 || r == 0 || r > NUM_REGS)
442ea881 495 child_store_inferior_registers (regcache, NUM_REGS);
b80864fb
DJ
496 else
497 for (regno = 0; regno < r; regno++)
442ea881 498 (*the_low_target.store_inferior_register) (regcache, th, regno);
b80864fb
DJ
499}
500
ed50f18f
PA
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
511char *
512strwinerror (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 */
c3de4d92 522 (LPTSTR) &msgbuf,
ed50f18f
PA
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
dfe07582 550 sprintf (buf, "unknown win32 error (%u)", (unsigned) error);
ed50f18f
PA
551
552 SetLastError (lasterr);
553 return buf;
554}
555
aec18585
PA
556static BOOL
557create_process (const char *program, char *args,
558 DWORD flags, PROCESS_INFORMATION *pi)
559{
bc3b087d 560 const char *inferior_cwd = get_inferior_cwd ();
aec18585
PA
561 BOOL ret;
562
563#ifdef _WIN32_WCE
bc3b087d 564 wchar_t *p, *wprogram, *wargs, *wcwd = NULL;
aec18585
PA
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
bc3b087d
SDJ
578 if (inferior_cwd != NULL)
579 {
906994d9 580 std::string expanded_infcwd = gdb_tilde_expand (inferior_cwd);
bc3b087d
SDJ
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 (_("\
588Could not convert the expanded inferior cwd to wide-char."));
589 }
590 }
591
aec18585 592 ret = CreateProcessW (wprogram, /* image name */
1b3f6016
PA
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 */
bc3b087d 599 wcwd, /* current directory */
1b3f6016
PA
600 NULL, /* start info, not supported */
601 pi); /* proc info */
aec18585
PA
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 */
906994d9
JB
612 /* current directory */
613 (inferior_cwd == NULL
614 ? NULL
615 : gdb_tilde_expand (inferior_cwd).c_str()),
aec18585
PA
616 &si, /* start info */
617 pi); /* proc info */
618#endif
619
620 return ret;
621}
622
b80864fb 623/* Start a new process.
2090129c
SDJ
624 PROGRAM is the program name.
625 PROGRAM_ARGS is the vector containing the inferior's args.
b80864fb
DJ
626 Returns the new PID on success, -1 on failure. Registers the new
627 process with the process list. */
628static int
2090129c
SDJ
629win32_create_inferior (const char *program,
630 const std::vector<char *> &program_args)
b80864fb 631{
6341380d 632 client_state &cs = get_client_state ();
b80864fb 633#ifndef USE_WIN32API
d8d2a3ee 634 char real_path[PATH_MAX];
b80864fb
DJ
635 char *orig_path, *new_path, *path_ptr;
636#endif
b80864fb
DJ
637 BOOL ret;
638 DWORD flags;
ed50f18f 639 PROCESS_INFORMATION pi;
aec18585 640 DWORD err;
2090129c
SDJ
641 std::string str_program_args = stringify_argv (program_args);
642 char *args = (char *) str_program_args.c_str ();
b80864fb 643
d97903b2
PA
644 /* win32_wait needs to know we're not attaching. */
645 attaching = 0;
646
b80864fb
DJ
647 if (!program)
648 error ("No executable specified, specify executable to debug.\n");
649
b80864fb
DJ
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 {
81239425 657 int size = cygwin_conv_path_list (CCP_POSIX_TO_WIN_A, path_ptr, NULL, 0);
0ae534d2
JT
658 orig_path = (char *) alloca (strlen (path_ptr) + 1);
659 new_path = (char *) alloca (size);
b80864fb 660 strcpy (orig_path, path_ptr);
81239425 661 cygwin_conv_path_list (CCP_POSIX_TO_WIN_A, path_ptr, new_path, size);
b80864fb 662 setenv ("PATH", new_path, 1);
81239425 663 }
d8d2a3ee 664 cygwin_conv_path (CCP_POSIX_TO_WIN_A, program, real_path, PATH_MAX);
b80864fb
DJ
665 program = real_path;
666#endif
667
ed50f18f 668 OUTMSG2 (("Command line is \"%s\"\n", args));
b80864fb 669
ed50f18f 670#ifdef CREATE_NEW_PROCESS_GROUP
b80864fb 671 flags |= CREATE_NEW_PROCESS_GROUP;
ed50f18f 672#endif
b80864fb 673
aec18585
PA
674 ret = create_process (program, args, flags, &pi);
675 err = GetLastError ();
676 if (!ret && err == ERROR_FILE_NOT_FOUND)
677 {
c3de4d92 678 char *exename = (char *) alloca (strlen (program) + 5);
aec18585
PA
679 strcat (strcpy (exename, program), ".exe");
680 ret = create_process (exename, args, flags, &pi);
681 err = GetLastError ();
682 }
b80864fb
DJ
683
684#ifndef USE_WIN32API
685 if (orig_path)
686 setenv ("PATH", orig_path, 1);
687#endif
688
689 if (!ret)
690 {
ed50f18f
PA
691 error ("Error creating process \"%s%s\", (error %d): %s\n",
692 program, args, (int) err, strwinerror (err));
b80864fb
DJ
693 }
694 else
695 {
696 OUTMSG2 (("Process created: %s\n", (char *) args));
697 }
698
ed50f18f
PA
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. */
b80864fb 703 CloseHandle (pi.hThread);
ed50f18f 704#endif
b80864fb 705
95954743 706 do_initial_child_stuff (pi.hProcess, pi.dwProcessId, 0);
b80864fb 707
7dbac825
JB
708 /* Wait till we are at 1st instruction in program, return new pid
709 (assuming success). */
f2907e49 710 cs.last_ptid = win32_wait (ptid_t (current_process_id), &cs.last_status, 0);
7dbac825 711
052793ad
HD
712 /* Necessary for handle_v_kill. */
713 signal_pid = current_process_id;
714
b80864fb
DJ
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. */
721static int
722win32_attach (unsigned long pid)
723{
5ca906e6 724 HANDLE h;
bf914831 725 winapi_DebugSetProcessKillOnExit DebugSetProcessKillOnExit = NULL;
5ca906e6 726 DWORD err;
ed50f18f
PA
727#ifdef _WIN32_WCE
728 HMODULE dll = GetModuleHandle (_T("COREDLL.DLL"));
729#else
730 HMODULE dll = GetModuleHandle (_T("KERNEL32.DLL"));
731#endif
bf914831 732 DebugSetProcessKillOnExit = GETPROCADDRESS (dll, DebugSetProcessKillOnExit);
b80864fb 733
5ca906e6
PA
734 h = OpenProcess (PROCESS_ALL_ACCESS, FALSE, pid);
735 if (h != NULL)
1d5315fe 736 {
5ca906e6
PA
737 if (DebugActiveProcess (pid))
738 {
739 if (DebugSetProcessKillOnExit != NULL)
740 DebugSetProcessKillOnExit (FALSE);
741
d97903b2 742 /* win32_wait needs to know we're attaching. */
1b3f6016 743 attaching = 1;
95954743 744 do_initial_child_stuff (h, pid, 1);
5ca906e6
PA
745 return 0;
746 }
747
748 CloseHandle (h);
b80864fb
DJ
749 }
750
5ca906e6
PA
751 err = GetLastError ();
752 error ("Attach to process failed (error %d): %s\n",
753 (int) err, strwinerror (err));
b80864fb
DJ
754}
755
bce7165d
PA
756/* Handle OUTPUT_DEBUG_STRING_EVENT from child process. */
757static void
c0879059 758handle_output_debug_string (void)
bce7165d
PA
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
1b3f6016 776 in Unicode. */
bce7165d
PA
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
61012eef 788 if (!startswith (s, "cYg"))
45e2715e
PA
789 {
790 if (!server_waiting)
791 {
792 OUTMSG2(("%s", s));
793 return;
794 }
795
796 monitor_output (s);
797 }
bce7165d
PA
798#undef READ_BUFFER_LEN
799}
800
5ac588cf
PA
801static void
802win32_clear_inferiors (void)
803{
804 if (current_process_handle != NULL)
805 CloseHandle (current_process_handle);
806
f0045347 807 for_each_thread (delete_thread_info);
7928d571 808 siginfo_er.ExceptionCode = 0;
5ac588cf
PA
809 clear_inferiors ();
810}
811
a780ef4f
PA
812/* Implementation of target_ops::kill. */
813
95954743 814static int
a780ef4f 815win32_kill (process_info *process)
b80864fb
DJ
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;
bce7165d 826 else if (current_event.dwDebugEventCode == OUTPUT_DEBUG_STRING_EVENT)
c0879059 827 handle_output_debug_string ();
b80864fb 828 }
ed50f18f 829
5ac588cf 830 win32_clear_inferiors ();
95954743 831
95954743
PA
832 remove_process (process);
833 return 0;
b80864fb
DJ
834}
835
ef2ddb33
PA
836/* Implementation of target_ops::detach. */
837
444d6139 838static int
ef2ddb33 839win32_detach (process_info *process)
b80864fb 840{
bf914831
PA
841 winapi_DebugActiveProcessStop DebugActiveProcessStop = NULL;
842 winapi_DebugSetProcessKillOnExit DebugSetProcessKillOnExit = NULL;
ed50f18f
PA
843#ifdef _WIN32_WCE
844 HMODULE dll = GetModuleHandle (_T("COREDLL.DLL"));
845#else
846 HMODULE dll = GetModuleHandle (_T("KERNEL32.DLL"));
847#endif
bf914831
PA
848 DebugActiveProcessStop = GETPROCADDRESS (dll, DebugActiveProcessStop);
849 DebugSetProcessKillOnExit = GETPROCADDRESS (dll, DebugSetProcessKillOnExit);
b80864fb 850
444d6139
PA
851 if (DebugSetProcessKillOnExit == NULL
852 || DebugActiveProcessStop == NULL)
853 return -1;
b80864fb 854
444d6139
PA
855 {
856 struct thread_resume resume;
95954743 857 resume.thread = minus_one_ptid;
bd99dc85 858 resume.kind = resume_continue;
444d6139 859 resume.sig = 0;
2bd7c093 860 win32_resume (&resume, 1);
444d6139
PA
861 }
862
863 if (!DebugActiveProcessStop (current_process_id))
5ac588cf
PA
864 return -1;
865
444d6139 866 DebugSetProcessKillOnExit (FALSE);
95954743 867 remove_process (process);
444d6139 868
5ac588cf 869 win32_clear_inferiors ();
444d6139
PA
870 return 0;
871}
872
505106cd
PA
873static void
874win32_mourn (struct process_info *process)
875{
876 remove_process (process);
877}
878
ef2ddb33
PA
879/* Implementation of target_ops::join. */
880
444d6139 881static void
d105de22 882win32_join (int pid)
444d6139 883{
d105de22 884 HANDLE h = OpenProcess (PROCESS_ALL_ACCESS, FALSE, pid);
5ac588cf
PA
885 if (h != NULL)
886 {
887 WaitForSingleObject (h, INFINITE);
888 CloseHandle (h);
889 }
b80864fb
DJ
890}
891
892/* Return 1 iff the thread with thread ID TID is alive. */
893static int
95954743 894win32_thread_alive (ptid_t ptid)
b80864fb 895{
b80864fb
DJ
896 /* Our thread list is reliable; don't bother to poll target
897 threads. */
8dc7b443 898 return find_thread_ptid (ptid) != NULL;
b80864fb
DJ
899}
900
901/* Resume the inferior process. RESUME_INFO describes how we want
902 to resume. */
903static void
2bd7c093 904win32_resume (struct thread_resume *resume_info, size_t n)
b80864fb
DJ
905{
906 DWORD tid;
2ea28649 907 enum gdb_signal sig;
b80864fb 908 int step;
41093d81 909 win32_thread_info *th;
b80864fb 910 DWORD continue_status = DBG_CONTINUE;
95954743 911 ptid_t ptid;
b80864fb
DJ
912
913 /* This handles the very limited set of resume packets that GDB can
914 currently produce. */
915
d7e15655 916 if (n == 1 && resume_info[0].thread == minus_one_ptid)
b80864fb 917 tid = -1;
2bd7c093 918 else if (n > 1)
b80864fb
DJ
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
d7e15655 925 if (resume_info[0].thread != minus_one_ptid)
b80864fb 926 {
ce7715e2 927 sig = gdb_signal_from_host (resume_info[0].sig);
bd99dc85 928 step = resume_info[0].kind == resume_step;
b80864fb
DJ
929 }
930 else
931 {
ce7715e2 932 sig = GDB_SIGNAL_0;
b80864fb
DJ
933 step = 0;
934 }
935
a493e3e2 936 if (sig != GDB_SIGNAL_0)
b80864fb
DJ
937 {
938 if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
939 {
ce7715e2
PA
940 OUTMSG (("Cannot continue with signal %s here.\n",
941 gdb_signal_to_string (sig)));
b80864fb
DJ
942 }
943 else if (sig == last_sig)
944 continue_status = DBG_EXCEPTION_NOT_HANDLED;
945 else
ce7715e2
PA
946 OUTMSG (("Can only continue with received signal %s.\n",
947 gdb_signal_to_string (last_sig)));
b80864fb
DJ
948 }
949
a493e3e2 950 last_sig = GDB_SIGNAL_0;
b80864fb
DJ
951
952 /* Get context for the currently selected thread. */
95954743
PA
953 ptid = debug_event_ptid (&current_event);
954 th = thread_rec (ptid, FALSE);
b80864fb
DJ
955 if (th)
956 {
a2abc7de
PA
957 win32_prepare_to_resume (th);
958
b80864fb
DJ
959 if (th->context.ContextFlags)
960 {
b80864fb
DJ
961 /* Move register values from the inferior into the thread
962 context structure. */
963 regcache_invalidate ();
964
965 if (step)
ed50f18f
PA
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 }
34b34921 973
9c6c8194 974 win32_set_thread_context (th);
b80864fb
DJ
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
255e7678
DJ
985static void
986win32_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
850a0f76
JB
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
255e7678
DJ
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
cf6e3471
PA
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
255e7678 1037#ifdef __CYGWIN__
81239425 1038 cygwin_conv_path (CCP_WIN_A_TO_POSIX, buf, buf2, sizeof (buf2));
255e7678
DJ
1039#else
1040 strcpy (buf2, buf);
1041#endif
1042
1043 loaded_dll (buf2, load_addr);
1044}
1045
1046static char *
1047get_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];
e8f0053d 1054 SIZE_T done;
255e7678
DJ
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 {
8d749320 1085 WCHAR *unicode_address = XALLOCAVEC (WCHAR, len);
255e7678
DJ
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
1095typedef BOOL (WINAPI *winapi_EnumProcessModules) (HANDLE, HMODULE *,
1096 DWORD, LPDWORD);
1097typedef BOOL (WINAPI *winapi_GetModuleInformation) (HANDLE, HMODULE,
1098 LPMODULEINFO, DWORD);
1099typedef DWORD (WINAPI *winapi_GetModuleFileNameExA) (HANDLE, HMODULE,
1100 LPSTR, DWORD);
1101
1102static winapi_EnumProcessModules win32_EnumProcessModules;
1103static winapi_GetModuleInformation win32_GetModuleInformation;
1104static winapi_GetModuleFileNameExA win32_GetModuleFileNameExA;
1105
1106static BOOL
1107load_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
379a5e2d 1131#ifndef _WIN32_WCE
649ebbca 1132
f25b3fc3
JB
1133/* Iterate over all DLLs currently mapped by our inferior, and
1134 add them to our list of solibs. */
379a5e2d
JB
1135
1136static void
f25b3fc3 1137win32_add_all_dlls (void)
379a5e2d 1138{
379a5e2d
JB
1139 size_t i;
1140 HMODULE dh_buf[1];
1141 HMODULE *DllHandle = dh_buf;
1142 DWORD cbNeeded;
1143 BOOL ok;
1144
379a5e2d
JB
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
f25b3fc3 1168 for (i = 1; i < ((size_t) cbNeeded / sizeof (HMODULE)); i++)
379a5e2d
JB
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;
850a0f76 1183 win32_add_one_solib (dll_name, (CORE_ADDR) (uintptr_t) mi.lpBaseOfDll);
379a5e2d
JB
1184 }
1185}
1186#endif
1187
255e7678
DJ
1188typedef HANDLE (WINAPI *winapi_CreateToolhelp32Snapshot) (DWORD, DWORD);
1189typedef BOOL (WINAPI *winapi_Module32First) (HANDLE, LPMODULEENTRY32);
1190typedef BOOL (WINAPI *winapi_Module32Next) (HANDLE, LPMODULEENTRY32);
1191
d763de10 1192/* Handle a DLL load event.
255e7678 1193
d763de10
JB
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). */
255e7678
DJ
1198
1199static void
1200handle_load_dll (void)
1201{
1202 LOAD_DLL_DEBUG_INFO *event = &current_event.u.LoadDll;
d763de10 1203 char *dll_name;
255e7678 1204
d763de10
JB
1205 dll_name = get_image_name (current_process_handle,
1206 event->lpImageName, event->fUnicode);
255e7678
DJ
1207 if (!dll_name)
1208 return;
1209
850a0f76 1210 win32_add_one_solib (dll_name, (CORE_ADDR) (uintptr_t) event->lpBaseOfDll);
255e7678
DJ
1211}
1212
f25b3fc3
JB
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
255e7678
DJ
1220static void
1221handle_unload_dll (void)
1222{
1223 CORE_ADDR load_addr =
e8f0053d 1224 (CORE_ADDR) (uintptr_t) current_event.u.UnloadDll.lpBaseOfDll;
850a0f76
JB
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. */
255e7678
DJ
1229 load_addr += 0x1000;
1230 unloaded_dll (NULL, load_addr);
1231}
1232
34b34921 1233static void
b80864fb
DJ
1234handle_exception (struct target_waitstatus *ourstatus)
1235{
b80864fb
DJ
1236 DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode;
1237
7928d571
HD
1238 memcpy (&siginfo_er, &current_event.u.Exception.ExceptionRecord,
1239 sizeof siginfo_er);
1240
b80864fb
DJ
1241 ourstatus->kind = TARGET_WAITKIND_STOPPED;
1242
b80864fb
DJ
1243 switch (code)
1244 {
1245 case EXCEPTION_ACCESS_VIOLATION:
1246 OUTMSG2 (("EXCEPTION_ACCESS_VIOLATION"));
a493e3e2 1247 ourstatus->value.sig = GDB_SIGNAL_SEGV;
b80864fb
DJ
1248 break;
1249 case STATUS_STACK_OVERFLOW:
1250 OUTMSG2 (("STATUS_STACK_OVERFLOW"));
a493e3e2 1251 ourstatus->value.sig = GDB_SIGNAL_SEGV;
b80864fb
DJ
1252 break;
1253 case STATUS_FLOAT_DENORMAL_OPERAND:
1254 OUTMSG2 (("STATUS_FLOAT_DENORMAL_OPERAND"));
a493e3e2 1255 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1256 break;
1257 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
1258 OUTMSG2 (("EXCEPTION_ARRAY_BOUNDS_EXCEEDED"));
a493e3e2 1259 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1260 break;
1261 case STATUS_FLOAT_INEXACT_RESULT:
1262 OUTMSG2 (("STATUS_FLOAT_INEXACT_RESULT"));
a493e3e2 1263 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1264 break;
1265 case STATUS_FLOAT_INVALID_OPERATION:
1266 OUTMSG2 (("STATUS_FLOAT_INVALID_OPERATION"));
a493e3e2 1267 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1268 break;
1269 case STATUS_FLOAT_OVERFLOW:
1270 OUTMSG2 (("STATUS_FLOAT_OVERFLOW"));
a493e3e2 1271 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1272 break;
1273 case STATUS_FLOAT_STACK_CHECK:
1274 OUTMSG2 (("STATUS_FLOAT_STACK_CHECK"));
a493e3e2 1275 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1276 break;
1277 case STATUS_FLOAT_UNDERFLOW:
1278 OUTMSG2 (("STATUS_FLOAT_UNDERFLOW"));
a493e3e2 1279 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1280 break;
1281 case STATUS_FLOAT_DIVIDE_BY_ZERO:
1282 OUTMSG2 (("STATUS_FLOAT_DIVIDE_BY_ZERO"));
a493e3e2 1283 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1284 break;
1285 case STATUS_INTEGER_DIVIDE_BY_ZERO:
1286 OUTMSG2 (("STATUS_INTEGER_DIVIDE_BY_ZERO"));
a493e3e2 1287 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1288 break;
1289 case STATUS_INTEGER_OVERFLOW:
1290 OUTMSG2 (("STATUS_INTEGER_OVERFLOW"));
a493e3e2 1291 ourstatus->value.sig = GDB_SIGNAL_FPE;
b80864fb
DJ
1292 break;
1293 case EXCEPTION_BREAKPOINT:
1294 OUTMSG2 (("EXCEPTION_BREAKPOINT"));
a493e3e2 1295 ourstatus->value.sig = GDB_SIGNAL_TRAP;
ed50f18f
PA
1296#ifdef _WIN32_WCE
1297 /* Remove the initial breakpoint. */
1298 check_breakpoints ((CORE_ADDR) (long) current_event
1b3f6016 1299 .u.Exception.ExceptionRecord.ExceptionAddress);
ed50f18f 1300#endif
b80864fb
DJ
1301 break;
1302 case DBG_CONTROL_C:
1303 OUTMSG2 (("DBG_CONTROL_C"));
a493e3e2 1304 ourstatus->value.sig = GDB_SIGNAL_INT;
b80864fb
DJ
1305 break;
1306 case DBG_CONTROL_BREAK:
1307 OUTMSG2 (("DBG_CONTROL_BREAK"));
a493e3e2 1308 ourstatus->value.sig = GDB_SIGNAL_INT;
b80864fb
DJ
1309 break;
1310 case EXCEPTION_SINGLE_STEP:
1311 OUTMSG2 (("EXCEPTION_SINGLE_STEP"));
a493e3e2 1312 ourstatus->value.sig = GDB_SIGNAL_TRAP;
b80864fb
DJ
1313 break;
1314 case EXCEPTION_ILLEGAL_INSTRUCTION:
1315 OUTMSG2 (("EXCEPTION_ILLEGAL_INSTRUCTION"));
a493e3e2 1316 ourstatus->value.sig = GDB_SIGNAL_ILL;
b80864fb
DJ
1317 break;
1318 case EXCEPTION_PRIV_INSTRUCTION:
1319 OUTMSG2 (("EXCEPTION_PRIV_INSTRUCTION"));
a493e3e2 1320 ourstatus->value.sig = GDB_SIGNAL_ILL;
b80864fb
DJ
1321 break;
1322 case EXCEPTION_NONCONTINUABLE_EXCEPTION:
1323 OUTMSG2 (("EXCEPTION_NONCONTINUABLE_EXCEPTION"));
a493e3e2 1324 ourstatus->value.sig = GDB_SIGNAL_ILL;
b80864fb
DJ
1325 break;
1326 default:
1327 if (current_event.u.Exception.dwFirstChance)
34b34921
PA
1328 {
1329 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1330 return;
1331 }
dfe07582
CV
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))));
a493e3e2 1336 ourstatus->value.sig = GDB_SIGNAL_UNKNOWN;
b80864fb
DJ
1337 break;
1338 }
1339 OUTMSG2 (("\n"));
1340 last_sig = ourstatus->value.sig;
b80864fb
DJ
1341}
1342
4d5d1aaa 1343
34b34921 1344static void
9c80ecd6 1345suspend_one_thread (thread_info *thread)
4d5d1aaa 1346{
6afd337d 1347 win32_thread_info *th = (win32_thread_info *) thread_target_data (thread);
4d5d1aaa
PA
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
1362static void
1363fake_breakpoint_event (void)
b80864fb 1364{
4d5d1aaa 1365 OUTMSG2(("fake_breakpoint_event\n"));
b80864fb 1366
4d5d1aaa
PA
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
f0045347 1375 for_each_thread (suspend_one_thread);
4d5d1aaa
PA
1376}
1377
b65d95c5
DJ
1378#ifdef _WIN32_WCE
1379static int
1380auto_delete_breakpoint (CORE_ADDR stop_pc)
1381{
1382 return 1;
1383}
1384#endif
1385
4d5d1aaa
PA
1386/* Get the next event from the child. */
1387
1388static int
1389get_child_debug_event (struct target_waitstatus *ourstatus)
1390{
95954743
PA
1391 ptid_t ptid;
1392
a493e3e2 1393 last_sig = GDB_SIGNAL_0;
b80864fb
DJ
1394 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1395
4d5d1aaa
PA
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
d97903b2
PA
1406#ifndef _WIN32_WCE
1407 attaching = 0;
1408#else
1409 if (attaching)
1410 {
1411 /* WinCE doesn't set an initial breakpoint automatically. To
1b3f6016
PA
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. */
d97903b2
PA
1424
1425 current_event.dwDebugEventCode = 0;
1426 if (!WaitForDebugEvent (&current_event, 0))
1b3f6016
PA
1427 {
1428 OUTMSG2(("no attach events left\n"));
1429 fake_breakpoint_event ();
1430 attaching = 0;
1431 }
d97903b2 1432 else
1b3f6016 1433 OUTMSG2(("got attach event\n"));
d97903b2
PA
1434 }
1435 else
1436#endif
1437 {
30baf67b 1438 /* Keep the wait time low enough for comfortable remote
1b3f6016
PA
1439 interruption, but high enough so gdbserver doesn't become a
1440 bottleneck. */
d97903b2 1441 if (!WaitForDebugEvent (&current_event, 250))
912cf4ba
PA
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 }
d97903b2 1458 }
4d5d1aaa
PA
1459
1460 gotevent:
b80864fb 1461
34b34921 1462 switch (current_event.dwDebugEventCode)
b80864fb
DJ
1463 {
1464 case CREATE_THREAD_DEBUG_EVENT:
1465 OUTMSG2 (("gdbserver: kernel event CREATE_THREAD_DEBUG_EVENT "
dfe07582 1466 "for pid=%u tid=%x)\n",
b80864fb
DJ
1467 (unsigned) current_event.dwProcessId,
1468 (unsigned) current_event.dwThreadId));
1469
1470 /* Record the existence of this thread. */
95954743
PA
1471 child_add_thread (current_event.dwProcessId,
1472 current_event.dwThreadId,
711e434b
PM
1473 current_event.u.CreateThread.hThread,
1474 current_event.u.CreateThread.lpThreadLocalBase);
b80864fb
DJ
1475 break;
1476
1477 case EXIT_THREAD_DEBUG_EVENT:
1478 OUTMSG2 (("gdbserver: kernel event EXIT_THREAD_DEBUG_EVENT "
dfe07582 1479 "for pid=%u tid=%x\n",
b80864fb
DJ
1480 (unsigned) current_event.dwProcessId,
1481 (unsigned) current_event.dwThreadId));
95954743
PA
1482 child_delete_thread (current_event.dwProcessId,
1483 current_event.dwThreadId);
aeeb81d1 1484
9c80ecd6 1485 current_thread = get_first_thread ();
aeeb81d1 1486 return 1;
b80864fb
DJ
1487
1488 case CREATE_PROCESS_DEBUG_EVENT:
1489 OUTMSG2 (("gdbserver: kernel event CREATE_PROCESS_DEBUG_EVENT "
dfe07582 1490 "for pid=%u tid=%x\n",
b80864fb
DJ
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
b80864fb 1498 /* Add the main thread. */
95954743
PA
1499 child_add_thread (current_event.dwProcessId,
1500 main_thread_id,
711e434b
PM
1501 current_event.u.CreateProcessInfo.hThread,
1502 current_event.u.CreateProcessInfo.lpThreadLocalBase);
b80864fb 1503
ed50f18f 1504#ifdef _WIN32_WCE
d97903b2
PA
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,
b65d95c5 1513 auto_delete_breakpoint);
d97903b2 1514 }
ed50f18f 1515#endif
b80864fb
DJ
1516 break;
1517
1518 case EXIT_PROCESS_DEBUG_EVENT:
1519 OUTMSG2 (("gdbserver: kernel event EXIT_PROCESS_DEBUG_EVENT "
dfe07582 1520 "for pid=%u tid=%x\n",
b80864fb
DJ
1521 (unsigned) current_event.dwProcessId,
1522 (unsigned) current_event.dwThreadId));
559e7e50
EZ
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 }
18aae699 1541 child_continue (DBG_CONTINUE, -1);
b80864fb 1542 CloseHandle (current_process_handle);
9d606399 1543 current_process_handle = NULL;
b80864fb
DJ
1544 break;
1545
1546 case LOAD_DLL_DEBUG_EVENT:
1547 OUTMSG2 (("gdbserver: kernel event LOAD_DLL_DEBUG_EVENT "
dfe07582 1548 "for pid=%u tid=%x\n",
b80864fb
DJ
1549 (unsigned) current_event.dwProcessId,
1550 (unsigned) current_event.dwThreadId));
1551 CloseHandle (current_event.u.LoadDll.hFile);
f25b3fc3
JB
1552 if (! child_initialization_done)
1553 break;
255e7678 1554 handle_load_dll ();
b80864fb
DJ
1555
1556 ourstatus->kind = TARGET_WAITKIND_LOADED;
a493e3e2 1557 ourstatus->value.sig = GDB_SIGNAL_TRAP;
b80864fb
DJ
1558 break;
1559
1560 case UNLOAD_DLL_DEBUG_EVENT:
1561 OUTMSG2 (("gdbserver: kernel event UNLOAD_DLL_DEBUG_EVENT "
dfe07582 1562 "for pid=%u tid=%x\n",
b80864fb
DJ
1563 (unsigned) current_event.dwProcessId,
1564 (unsigned) current_event.dwThreadId));
f25b3fc3
JB
1565 if (! child_initialization_done)
1566 break;
255e7678
DJ
1567 handle_unload_dll ();
1568 ourstatus->kind = TARGET_WAITKIND_LOADED;
a493e3e2 1569 ourstatus->value.sig = GDB_SIGNAL_TRAP;
b80864fb
DJ
1570 break;
1571
1572 case EXCEPTION_DEBUG_EVENT:
1573 OUTMSG2 (("gdbserver: kernel event EXCEPTION_DEBUG_EVENT "
dfe07582 1574 "for pid=%u tid=%x\n",
b80864fb
DJ
1575 (unsigned) current_event.dwProcessId,
1576 (unsigned) current_event.dwThreadId));
34b34921 1577 handle_exception (ourstatus);
b80864fb
DJ
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 "
dfe07582 1583 "for pid=%u tid=%x\n",
b80864fb
DJ
1584 (unsigned) current_event.dwProcessId,
1585 (unsigned) current_event.dwThreadId));
c0879059 1586 handle_output_debug_string ();
b80864fb
DJ
1587 break;
1588
1589 default:
1590 OUTMSG2 (("gdbserver: kernel event unknown "
dfe07582 1591 "for pid=%u tid=%x code=%x\n",
b80864fb
DJ
1592 (unsigned) current_event.dwProcessId,
1593 (unsigned) current_event.dwThreadId,
dfe07582 1594 (unsigned) current_event.dwDebugEventCode));
b80864fb
DJ
1595 break;
1596 }
1597
aeeb81d1 1598 ptid = debug_event_ptid (&current_event);
8dc7b443 1599 current_thread = find_thread_ptid (ptid);
4d5d1aaa 1600 return 1;
b80864fb
DJ
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. */
95954743
PA
1606static ptid_t
1607win32_wait (ptid_t ptid, struct target_waitstatus *ourstatus, int options)
b80864fb 1608{
442ea881 1609 struct regcache *regcache;
95954743 1610
4210d83e
PA
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
b80864fb
DJ
1622 while (1)
1623 {
5b1c542e 1624 if (!get_child_debug_event (ourstatus))
4d5d1aaa 1625 continue;
b80864fb 1626
5b1c542e 1627 switch (ourstatus->kind)
b80864fb 1628 {
34b34921 1629 case TARGET_WAITKIND_EXITED:
b80864fb 1630 OUTMSG2 (("Child exited with retcode = %x\n",
5b1c542e 1631 ourstatus->value.integer));
5ac588cf 1632 win32_clear_inferiors ();
f2907e49 1633 return ptid_t (current_event.dwProcessId);
34b34921 1634 case TARGET_WAITKIND_STOPPED:
559e7e50 1635 case TARGET_WAITKIND_SIGNALLED:
1b3f6016 1636 case TARGET_WAITKIND_LOADED:
f72f3e60 1637 OUTMSG2 (("Child Stopped with signal = %d \n",
10357975 1638 ourstatus->value.sig));
b80864fb 1639
0bfdf32f 1640 regcache = get_thread_regcache (current_thread, 1);
442ea881 1641 child_fetch_inferior_registers (regcache, -1);
95954743 1642 return debug_event_ptid (&current_event);
1b3f6016 1643 default:
5b1c542e 1644 OUTMSG (("Ignoring unknown internal event, %d\n", ourstatus->kind));
1b3f6016
PA
1645 /* fall-through */
1646 case TARGET_WAITKIND_SPURIOUS:
34b34921
PA
1647 /* do nothing, just continue */
1648 child_continue (DBG_CONTINUE, -1);
1649 break;
b80864fb 1650 }
b80864fb
DJ
1651 }
1652}
1653
1654/* Fetch registers from the inferior process.
1655 If REGNO is -1, fetch all registers; otherwise, fetch at least REGNO. */
1656static void
442ea881 1657win32_fetch_inferior_registers (struct regcache *regcache, int regno)
b80864fb 1658{
442ea881 1659 child_fetch_inferior_registers (regcache, regno);
b80864fb
DJ
1660}
1661
1662/* Store registers to the inferior process.
1663 If REGNO is -1, store all registers; otherwise, store at least REGNO. */
1664static void
442ea881 1665win32_store_inferior_registers (struct regcache *regcache, int regno)
b80864fb 1666{
442ea881 1667 child_store_inferior_registers (regcache, regno);
b80864fb
DJ
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. */
1673static int
1674win32_read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
1675{
ed50f18f 1676 return child_xfer_memory (memaddr, (char *) myaddr, len, 0, 0) != len;
b80864fb
DJ
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. */
1683static int
1684win32_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
7390519e
PA
1690/* Send an interrupt request to the inferior process. */
1691static void
1692win32_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
4d5d1aaa
PA
1720 /* Last resort, suspend all threads manually. */
1721 soft_interrupt_requested = 1;
7390519e
PA
1722}
1723
59a016f0
PA
1724#ifdef _WIN32_WCE
1725int
1726win32_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
1774static void
1775wince_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
7928d571
HD
1783/* Write Windows signal info. */
1784
1785static int
1786win32_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
711e434b
PM
1806/* Write Windows OS Thread Information Block address. */
1807
1808static int
1809win32_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
fb78e89c
AT
1820/* Implementation of the target_ops method "sw_breakpoint_from_kind". */
1821
1822static const gdb_byte *
1823win32_sw_breakpoint_from_kind (int kind, int *size)
1824{
1825 *size = the_low_target.breakpoint_len;
1826 return the_low_target.breakpoint;
1827}
1828
5b6d1e4f 1829static process_stratum_target win32_target_ops = {
b80864fb 1830 win32_create_inferior,
ece66d65 1831 NULL, /* post_create_inferior */
b80864fb
DJ
1832 win32_attach,
1833 win32_kill,
1834 win32_detach,
505106cd 1835 win32_mourn,
444d6139 1836 win32_join,
b80864fb
DJ
1837 win32_thread_alive,
1838 win32_resume,
1839 win32_wait,
1840 win32_fetch_inferior_registers,
1841 win32_store_inferior_registers,
90d74c30 1842 NULL, /* prepare_to_access_memory */
0146f85b 1843 NULL, /* done_accessing_memory */
b80864fb
DJ
1844 win32_read_inferior_memory,
1845 win32_write_inferior_memory,
711e434b 1846 NULL, /* lookup_symbols */
7390519e 1847 win32_request_interrupt,
711e434b 1848 NULL, /* read_auxv */
802e8e6d 1849 win32_supports_z_point_type,
aa5ca48f
DE
1850 win32_insert_point,
1851 win32_remove_point,
f5771b1d
PA
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 */
70b90b91 1856 target_can_do_hardware_single_step,
aa5ca48f
DE
1857 win32_stopped_by_watchpoint,
1858 win32_stopped_data_address,
711e434b
PM
1859 NULL, /* read_offsets */
1860 NULL, /* get_tls_address */
59a016f0
PA
1861#ifdef _WIN32_WCE
1862 wince_hostio_last_error,
1863#else
1864 hostio_last_error_from_errno,
1865#endif
711e434b 1866 NULL, /* qxfer_osdata */
7928d571 1867 win32_xfer_siginfo,
711e434b
PM
1868 NULL, /* supports_non_stop */
1869 NULL, /* async */
1870 NULL, /* start_non_stop */
1871 NULL, /* supports_multi_process */
89245bc0
DB
1872 NULL, /* supports_fork_events */
1873 NULL, /* supports_vfork_events */
94585166 1874 NULL, /* supports_exec_events */
de0d863e 1875 NULL, /* handle_new_gdb_connection */
711e434b
PM
1876 NULL, /* handle_monitor_command */
1877 NULL, /* core_of_thread */
881127c9 1878 NULL, /* read_loadmap */
711e434b
PM
1879 NULL, /* process_qsupported */
1880 NULL, /* supports_tracepoints */
1881 NULL, /* read_pc */
1882 NULL, /* write_pc */
1883 NULL, /* thread_stopped */
fb78e89c
AT
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 */
fb78e89c
AT
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,
b80864fb
DJ
1905};
1906
1907/* Initialize the Win32 backend. */
1908void
1909initialize_low (void)
1910{
1911 set_target_ops (&win32_target_ops);
d05b4ac3 1912 the_low_target.arch_setup ();
b80864fb 1913}
This page took 1.549798 seconds and 4 git commands to generate.