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