blob: 5ea7013bf89bcd1fe5de02f729e0ee30b030bcee [file] [log] [blame]
Eric Pouech527eea92000-03-08 16:44:54 +00001/* -*- tab-width: 8; c-basic-offset: 4 -*- */
2
3/* Wine internal debugger
4 * Interface to Windows debugger API
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 * Copyright 2000 Eric Pouech
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Pouech527eea92000-03-08 16:44:54 +000020 */
21
22#include <stdlib.h>
Alexandre Julliard58d5a0a2000-07-29 21:58:17 +000023#include <stdarg.h>
Eric Pouech527eea92000-03-08 16:44:54 +000024#include <stdio.h>
Eric Poueche5efa0c2000-04-13 19:31:58 +000025#include <string.h>
Eric Pouech527eea92000-03-08 16:44:54 +000026#include "debugger.h"
Eric Pouechac11a682000-03-26 13:37:39 +000027
Alexandre Julliard09d78222001-05-05 00:44:48 +000028#include "ntddk.h"
Eric Pouechac11a682000-03-26 13:37:39 +000029#include "thread.h"
Alexandre Julliardf818d422000-05-03 17:48:21 +000030#include "wincon.h"
Eric Pouechac11a682000-03-26 13:37:39 +000031#include "wingdi.h"
32#include "winuser.h"
Peter Hunnisett73ab6492002-02-25 20:10:35 +000033#include "msvcrt/excpt.h"
Eric Pouechac11a682000-03-26 13:37:39 +000034
Eric Pouech527eea92000-03-08 16:44:54 +000035#include "winreg.h"
Eric Pouech527eea92000-03-08 16:44:54 +000036
Eric Pouechac11a682000-03-26 13:37:39 +000037DBG_PROCESS* DEBUG_CurrProcess = NULL;
38DBG_THREAD* DEBUG_CurrThread = NULL;
Eric Pouechf1822352000-05-11 21:43:43 +000039DWORD DEBUG_CurrTid;
40DWORD DEBUG_CurrPid;
Eric Pouechac11a682000-03-26 13:37:39 +000041CONTEXT DEBUG_context;
Eric Pouech52c75342001-05-03 18:32:47 +000042BOOL DEBUG_interactiveP = FALSE;
Eric Pouech911436b2000-06-18 19:30:24 +000043int curr_frame = 0;
44static char* DEBUG_LastCmdLine = NULL;
Eric Pouech527eea92000-03-08 16:44:54 +000045
Eric Pouech7c43b222000-06-24 12:52:13 +000046static DBG_PROCESS* DEBUG_ProcessList = NULL;
Alexandre Julliardf5a8b962001-10-22 19:00:34 +000047static int automatic_mode;
Eric Pouech04c16b82000-04-30 12:21:15 +000048DBG_INTVAR DEBUG_IntVars[DBG_IV_LAST];
Eric Poueche5efa0c2000-04-13 19:31:58 +000049
Eric Pouech04c16b82000-04-30 12:21:15 +000050void DEBUG_Output(int chn, const char* buffer, int len)
51{
52 if (DBG_IVAR(ConChannelMask) & chn)
53 WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buffer, len, NULL, NULL);
54 if (DBG_IVAR(StdChannelMask) & chn)
55 fwrite(buffer, len, 1, stderr);
56}
Eric Poueche5efa0c2000-04-13 19:31:58 +000057
58int DEBUG_Printf(int chn, const char* format, ...)
59{
Eric Pouech52c75342001-05-03 18:32:47 +000060static char buf[4*1024];
Eric Poueche5efa0c2000-04-13 19:31:58 +000061 va_list valist;
Eric Pouech04c16b82000-04-30 12:21:15 +000062 int len;
Eric Poueche5efa0c2000-04-13 19:31:58 +000063
64 va_start(valist, format);
Alexandre Julliard58d5a0a2000-07-29 21:58:17 +000065 len = vsnprintf(buf, sizeof(buf), format, valist);
Eric Poueche5efa0c2000-04-13 19:31:58 +000066 va_end(valist);
Eric Pouechb9717452000-05-05 18:14:34 +000067
Bill Medland7a364bb2001-12-24 20:23:57 +000068 if (len <= -1 || len >= sizeof(buf)) {
Eric Pouechb9717452000-05-05 18:14:34 +000069 len = sizeof(buf) - 1;
70 buf[len] = 0;
71 buf[len - 1] = buf[len - 2] = buf[len - 3] = '.';
72 }
Eric Pouech04c16b82000-04-30 12:21:15 +000073 DEBUG_Output(chn, buf, len);
74 return len;
Eric Poueche5efa0c2000-04-13 19:31:58 +000075}
Eric Pouech527eea92000-03-08 16:44:54 +000076
Eric Pouech04c16b82000-04-30 12:21:15 +000077static BOOL DEBUG_IntVarsRW(int read)
Eric Pouech527eea92000-03-08 16:44:54 +000078{
Eric Pouechac11a682000-03-26 13:37:39 +000079 HKEY hkey;
Eric Pouech04c16b82000-04-30 12:21:15 +000080 DWORD type = REG_DWORD;
Eric Pouechac11a682000-03-26 13:37:39 +000081 DWORD val;
82 DWORD count = sizeof(val);
Eric Pouech04c16b82000-04-30 12:21:15 +000083 int i;
84 DBG_INTVAR* div = DEBUG_IntVars;
Eric Pouechac11a682000-03-26 13:37:39 +000085
Eric Pouech04c16b82000-04-30 12:21:15 +000086 if (read) {
87/* initializes internal vars table */
88#define INTERNAL_VAR(_var,_val,_ref,_typ) \
89 div->val = _val; div->name = #_var; div->pval = _ref; \
Eric Pouech02ecb682001-12-21 20:29:58 +000090 div->type = DEBUG_GetBasicType(_typ); div++;
Eric Poueche5efa0c2000-04-13 19:31:58 +000091#include "intvar.h"
92#undef INTERNAL_VAR
Eric Pouech04c16b82000-04-30 12:21:15 +000093 }
94
Eric Pouechf1822352000-05-11 21:43:43 +000095 if (RegCreateKeyA(HKEY_CURRENT_USER, "Software\\Wine\\WineDbg", &hkey)) {
Eric Pouech26342c92000-05-01 14:22:02 +000096 /* since the IVars are not yet setup, DEBUG_Printf doesn't work,
97 * so don't use it */
98 fprintf(stderr, "Cannot create WineDbg key in registry\n");
99 return FALSE;
Eric Pouechac11a682000-03-26 13:37:39 +0000100 }
Eric Pouech26342c92000-05-01 14:22:02 +0000101
102 for (i = 0; i < DBG_IV_LAST; i++) {
103 if (read) {
104 if (!DEBUG_IntVars[i].pval) {
105 if (!RegQueryValueEx(hkey, DEBUG_IntVars[i].name, 0,
106 &type, (LPSTR)&val, &count))
107 DEBUG_IntVars[i].val = val;
108 DEBUG_IntVars[i].pval = &DEBUG_IntVars[i].val;
109 } else {
110 *DEBUG_IntVars[i].pval = 0;
111 }
112 } else {
113 /* FIXME: type should be infered from basic type -if any- of intvar */
114 if (DEBUG_IntVars[i].pval == &DEBUG_IntVars[i].val)
115 RegSetValueEx(hkey, DEBUG_IntVars[i].name, 0,
116 type, (LPCVOID)DEBUG_IntVars[i].pval, count);
117 }
118 }
119 RegCloseKey(hkey);
Eric Pouechac11a682000-03-26 13:37:39 +0000120 return TRUE;
121}
Eric Pouech04c16b82000-04-30 12:21:15 +0000122
123DBG_INTVAR* DEBUG_GetIntVar(const char* name)
124{
125 int i;
126
127 for (i = 0; i < DBG_IV_LAST; i++) {
128 if (!strcmp(DEBUG_IntVars[i].name, name))
129 return &DEBUG_IntVars[i];
130 }
131 return NULL;
132}
Eric Pouechac11a682000-03-26 13:37:39 +0000133
134static WINE_EXCEPTION_FILTER(wine_dbg)
135{
Eric Pouechb9717452000-05-05 18:14:34 +0000136 DEBUG_Printf(DBG_CHN_MESG, "\nwine_dbg: Exception (%lx) inside debugger, continuing...\n", GetExceptionCode());
Eric Pouechac11a682000-03-26 13:37:39 +0000137 DEBUG_ExternalDebugger();
Eric Pouechac11a682000-03-26 13:37:39 +0000138 return EXCEPTION_EXECUTE_HANDLER;
139}
140
Eric Pouech800773f2001-08-06 17:51:52 +0000141DBG_PROCESS* DEBUG_GetProcess(DWORD pid)
Eric Pouechac11a682000-03-26 13:37:39 +0000142{
143 DBG_PROCESS* p;
Eric Pouech527eea92000-03-08 16:44:54 +0000144
Eric Pouech7c43b222000-06-24 12:52:13 +0000145 for (p = DEBUG_ProcessList; p; p = p->next)
Eric Pouech527eea92000-03-08 16:44:54 +0000146 if (p->pid == pid) break;
147 return p;
148}
149
Eric Pouech800773f2001-08-06 17:51:52 +0000150static DBG_PROCESS* DEBUG_AddProcess(DWORD pid, HANDLE h, const char* imageName)
Eric Pouech527eea92000-03-08 16:44:54 +0000151{
Eric Pouechac11a682000-03-26 13:37:39 +0000152 DBG_PROCESS* p = DBG_alloc(sizeof(DBG_PROCESS));
Eric Pouech527eea92000-03-08 16:44:54 +0000153 if (!p)
154 return NULL;
155 p->handle = h;
156 p->pid = pid;
Eric Pouech800773f2001-08-06 17:51:52 +0000157 p->imageName = imageName ? DBG_strdup(imageName) : NULL;
Eric Pouech527eea92000-03-08 16:44:54 +0000158 p->threads = NULL;
Eric Pouechac11a682000-03-26 13:37:39 +0000159 p->num_threads = 0;
Eric Pouechb9717452000-05-05 18:14:34 +0000160 p->continue_on_first_exception = FALSE;
Eric Pouechac11a682000-03-26 13:37:39 +0000161 p->modules = NULL;
Eric Poueche9392062000-11-15 22:16:26 +0000162 p->num_modules = 0;
Eric Pouechac11a682000-03-26 13:37:39 +0000163 p->next_index = 0;
Eric Pouechb9717452000-05-05 18:14:34 +0000164 p->dbg_hdr_addr = 0;
Eric Pouecheaafb732001-05-21 18:33:15 +0000165 p->delayed_bp = NULL;
166 p->num_delayed_bp = 0;
Eric Pouech527eea92000-03-08 16:44:54 +0000167
Eric Pouech7c43b222000-06-24 12:52:13 +0000168 p->next = DEBUG_ProcessList;
Eric Pouech527eea92000-03-08 16:44:54 +0000169 p->prev = NULL;
Eric Pouech7c43b222000-06-24 12:52:13 +0000170 if (DEBUG_ProcessList) DEBUG_ProcessList->prev = p;
171 DEBUG_ProcessList = p;
Eric Pouech527eea92000-03-08 16:44:54 +0000172 return p;
173}
174
Eric Pouechac11a682000-03-26 13:37:39 +0000175static void DEBUG_DelThread(DBG_THREAD* p);
Eric Pouech527eea92000-03-08 16:44:54 +0000176
Eric Pouechac11a682000-03-26 13:37:39 +0000177static void DEBUG_DelProcess(DBG_PROCESS* p)
Eric Pouech527eea92000-03-08 16:44:54 +0000178{
Eric Pouecheaafb732001-05-21 18:33:15 +0000179 int i;
180
Eric Pouech527eea92000-03-08 16:44:54 +0000181 if (p->threads != NULL) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000182 DEBUG_Printf(DBG_CHN_ERR, "Shouldn't happen\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000183 while (p->threads) DEBUG_DelThread(p->threads);
184 }
Eric Pouecheaafb732001-05-21 18:33:15 +0000185 for (i = 0; i < p->num_delayed_bp; i++) {
186 DBG_free(p->delayed_bp[i].name);
187 }
188 DBG_free(p->delayed_bp);
Eric Pouech527eea92000-03-08 16:44:54 +0000189 if (p->prev) p->prev->next = p->next;
190 if (p->next) p->next->prev = p->prev;
Eric Pouech7c43b222000-06-24 12:52:13 +0000191 if (p == DEBUG_ProcessList) DEBUG_ProcessList = p->next;
Eric Pouech911436b2000-06-18 19:30:24 +0000192 if (p == DEBUG_CurrProcess) DEBUG_CurrProcess = NULL;
Eric Pouech800773f2001-08-06 17:51:52 +0000193 DBG_free((char*)p->imageName);
Eric Pouech527eea92000-03-08 16:44:54 +0000194 DBG_free(p);
195}
196
197static void DEBUG_InitCurrProcess(void)
198{
Eric Pouech527eea92000-03-08 16:44:54 +0000199}
200
Alexandre Julliard0966a6d2000-03-10 22:25:07 +0000201static BOOL DEBUG_ProcessGetString(char* buffer, int size, HANDLE hp, LPSTR addr)
202{
203 DWORD sz;
204 *(WCHAR*)buffer = 0;
205 return (addr && ReadProcessMemory(hp, addr, buffer, size, &sz));
206}
207
208static BOOL DEBUG_ProcessGetStringIndirect(char* buffer, int size, HANDLE hp, LPVOID addr)
Eric Pouech527eea92000-03-08 16:44:54 +0000209{
210 LPVOID ad;
211 DWORD sz;
212
213 if ( addr
214 && ReadProcessMemory(hp, addr, &ad, sizeof(ad), &sz)
215 && sz == sizeof(ad)
216 && ad
217 && ReadProcessMemory(hp, ad, buffer, size, &sz))
218 return TRUE;
219 *(WCHAR*)buffer = 0;
220 return FALSE;
221}
222
Eric Pouech800773f2001-08-06 17:51:52 +0000223DBG_THREAD* DEBUG_GetThread(DBG_PROCESS* p, DWORD tid)
Eric Pouech527eea92000-03-08 16:44:54 +0000224{
Eric Pouechac11a682000-03-26 13:37:39 +0000225 DBG_THREAD* t;
Eric Pouech527eea92000-03-08 16:44:54 +0000226
227 for (t = p->threads; t; t = t->next)
228 if (t->tid == tid) break;
229 return t;
230}
231
Eric Pouechac11a682000-03-26 13:37:39 +0000232static DBG_THREAD* DEBUG_AddThread(DBG_PROCESS* p, DWORD tid,
233 HANDLE h, LPVOID start, LPVOID teb)
Eric Pouech527eea92000-03-08 16:44:54 +0000234{
Eric Pouechac11a682000-03-26 13:37:39 +0000235 DBG_THREAD* t = DBG_alloc(sizeof(DBG_THREAD));
Eric Pouech527eea92000-03-08 16:44:54 +0000236 if (!t)
237 return NULL;
238
239 t->handle = h;
240 t->tid = tid;
241 t->start = start;
242 t->teb = teb;
243 t->process = p;
244 t->wait_for_first_exception = 0;
245 t->dbg_exec_mode = EXEC_CONT;
246 t->dbg_exec_count = 0;
Eric Pouech2b713ba2001-04-13 22:26:23 +0000247 sprintf(t->name, "%08lx", tid);
Eric Pouechac11a682000-03-26 13:37:39 +0000248
249 p->num_threads++;
Eric Pouech527eea92000-03-08 16:44:54 +0000250 t->next = p->threads;
251 t->prev = NULL;
252 if (p->threads) p->threads->prev = t;
253 p->threads = t;
254
255 return t;
256}
257
258static void DEBUG_InitCurrThread(void)
259{
Eric Pouech527eea92000-03-08 16:44:54 +0000260 if (DEBUG_CurrThread->start) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000261 if (DEBUG_CurrThread->process->num_threads == 1 ||
262 DBG_IVAR(BreakAllThreadsStartup)) {
Eric Pouechac11a682000-03-26 13:37:39 +0000263 DBG_VALUE value;
264
265 DEBUG_SetBreakpoints(FALSE);
266 value.type = NULL;
267 value.cookie = DV_TARGET;
268 value.addr.seg = 0;
269 value.addr.off = (DWORD)DEBUG_CurrThread->start;
Eric Pouechb9717452000-05-05 18:14:34 +0000270 DEBUG_AddBreakpoint(&value, NULL);
Eric Pouechac11a682000-03-26 13:37:39 +0000271 DEBUG_SetBreakpoints(TRUE);
272 }
Eric Pouech527eea92000-03-08 16:44:54 +0000273 } else {
274 DEBUG_CurrThread->wait_for_first_exception = 1;
275 }
276}
277
Eric Pouechac11a682000-03-26 13:37:39 +0000278static void DEBUG_DelThread(DBG_THREAD* t)
Eric Pouech527eea92000-03-08 16:44:54 +0000279{
280 if (t->prev) t->prev->next = t->next;
281 if (t->next) t->next->prev = t->prev;
282 if (t == t->process->threads) t->process->threads = t->next;
Eric Pouechac11a682000-03-26 13:37:39 +0000283 t->process->num_threads--;
Eric Pouech911436b2000-06-18 19:30:24 +0000284 if (t == DEBUG_CurrThread) DEBUG_CurrThread = NULL;
Eric Pouech527eea92000-03-08 16:44:54 +0000285 DBG_free(t);
286}
287
Eric Pouech911436b2000-06-18 19:30:24 +0000288BOOL DEBUG_Attach(DWORD pid, BOOL cofe)
289{
Eric Pouech800773f2001-08-06 17:51:52 +0000290 if (!(DEBUG_CurrProcess = DEBUG_AddProcess(pid, 0, NULL))) return FALSE;
Eric Pouech911436b2000-06-18 19:30:24 +0000291
292 if (!DebugActiveProcess(pid)) {
Alexandre Julliard1ce1bef2001-07-11 17:33:08 +0000293 DEBUG_Printf(DBG_CHN_MESG, "Can't attach process %lx: error %ld\n", pid, GetLastError());
294 DEBUG_DelProcess(DEBUG_CurrProcess);
295 DEBUG_CurrProcess = NULL;
Eric Pouech911436b2000-06-18 19:30:24 +0000296 return FALSE;
297 }
298 DEBUG_CurrProcess->continue_on_first_exception = cofe;
299 return TRUE;
300}
301
Eric Pouech21b366e2002-02-27 01:29:18 +0000302BOOL DEBUG_Detach(void)
303{
304 /* remove all set breakpoints in debuggee code */
305 DEBUG_SetBreakpoints(FALSE);
306 /* needed for single stepping (ugly).
307 * should this be handled inside the server ??? */
308#ifdef __i386__
309 DEBUG_context.EFlags &= ~STEP_FLAG;
310#endif
311 SetThreadContext(DEBUG_CurrThread->handle, &DEBUG_context);
312 DebugActiveProcessStop(DEBUG_CurrProcess->pid);
313 DEBUG_DelProcess(DEBUG_CurrProcess);
314 DEBUG_CurrProcess = NULL;
315 /* FIXME: should zero out the symbol table too */
316 return TRUE;
317}
318
Eric Pouech911436b2000-06-18 19:30:24 +0000319static BOOL DEBUG_ExceptionProlog(BOOL is_debug, BOOL force, DWORD code)
320{
321 DBG_ADDR addr;
322 int newmode;
323
324 DEBUG_GetCurrentAddress(&addr);
325 DEBUG_SuspendExecution();
326
327 if (!is_debug) {
Alexandre Julliard954a4132000-09-24 03:15:50 +0000328 if (!addr.seg)
Eric Pouech38f2be42001-08-15 17:40:31 +0000329 DEBUG_Printf(DBG_CHN_MESG, " in 32-bit code (0x%08lx)", addr.off);
Eric Pouech911436b2000-06-18 19:30:24 +0000330 else
Alexandre Julliard954a4132000-09-24 03:15:50 +0000331 switch(DEBUG_GetSelectorType(addr.seg))
332 {
333 case MODE_32:
Eric Pouech38f2be42001-08-15 17:40:31 +0000334 DEBUG_Printf(DBG_CHN_MESG, " in 32-bit code (%04lx:%08lx)", addr.seg, addr.off);
Alexandre Julliard954a4132000-09-24 03:15:50 +0000335 break;
336 case MODE_16:
Eric Pouech38f2be42001-08-15 17:40:31 +0000337 DEBUG_Printf(DBG_CHN_MESG, " in 16-bit code (%04lx:%04lx)", addr.seg, addr.off);
Alexandre Julliard954a4132000-09-24 03:15:50 +0000338 break;
339 case MODE_VM86:
Eric Pouech38f2be42001-08-15 17:40:31 +0000340 DEBUG_Printf(DBG_CHN_MESG, " in vm86 code (%04lx:%04lx)", addr.seg, addr.off);
Alexandre Julliard954a4132000-09-24 03:15:50 +0000341 break;
342 case MODE_INVALID:
Eric Pouech38f2be42001-08-15 17:40:31 +0000343 DEBUG_Printf(DBG_CHN_MESG, " bad CS (%lx)", addr.seg);
Alexandre Julliard954a4132000-09-24 03:15:50 +0000344 break;
345 }
Eric Pouech38f2be42001-08-15 17:40:31 +0000346 DEBUG_Printf(DBG_CHN_MESG, ".\n");
Eric Pouech911436b2000-06-18 19:30:24 +0000347 }
Eric Pouech38f2be42001-08-15 17:40:31 +0000348
Eric Pouech911436b2000-06-18 19:30:24 +0000349 DEBUG_LoadEntryPoints("Loading new modules symbols:\n");
350
351 if (!force && is_debug &&
James Abbatielloebef9a92000-09-01 01:22:05 +0000352 DEBUG_ShouldContinue(&addr,
353 code,
Eric Pouech911436b2000-06-18 19:30:24 +0000354 DEBUG_CurrThread->dbg_exec_mode,
355 &DEBUG_CurrThread->dbg_exec_count))
356 return FALSE;
357
Alexandre Julliard954a4132000-09-24 03:15:50 +0000358 if ((newmode = DEBUG_GetSelectorType(addr.seg)) == MODE_INVALID) newmode = MODE_32;
Eric Pouech911436b2000-06-18 19:30:24 +0000359 if (newmode != DEBUG_CurrThread->dbg_mode)
Alexandre Julliard954a4132000-09-24 03:15:50 +0000360 {
361 static const char * const names[] = { "???", "16-bit", "32-bit", "vm86" };
362 DEBUG_Printf(DBG_CHN_MESG,"In %s mode.\n", names[newmode] );
363 DEBUG_CurrThread->dbg_mode = newmode;
364 }
Eric Pouech911436b2000-06-18 19:30:24 +0000365
366 DEBUG_DoDisplay();
367
368 if (is_debug || force) {
369 /*
370 * Do a quiet backtrace so that we have an idea of what the situation
371 * is WRT the source files.
372 */
Eric Pouech800773f2001-08-06 17:51:52 +0000373 DEBUG_BackTrace(DEBUG_CurrTid, FALSE);
Eric Pouech911436b2000-06-18 19:30:24 +0000374 } else {
375 /* This is a real crash, dump some info */
376 DEBUG_InfoRegisters();
377 DEBUG_InfoStack();
378#ifdef __i386__
Alexandre Julliard954a4132000-09-24 03:15:50 +0000379 if (DEBUG_CurrThread->dbg_mode == MODE_16) {
Eric Pouech911436b2000-06-18 19:30:24 +0000380 DEBUG_InfoSegments(DEBUG_context.SegDs >> 3, 1);
381 if (DEBUG_context.SegEs != DEBUG_context.SegDs)
382 DEBUG_InfoSegments(DEBUG_context.SegEs >> 3, 1);
383 }
384 DEBUG_InfoSegments(DEBUG_context.SegFs >> 3, 1);
385#endif
Eric Pouech800773f2001-08-06 17:51:52 +0000386 DEBUG_BackTrace(DEBUG_CurrTid, TRUE);
Eric Pouech911436b2000-06-18 19:30:24 +0000387 }
388
389 if (!is_debug ||
390 (DEBUG_CurrThread->dbg_exec_mode == EXEC_STEPI_OVER) ||
391 (DEBUG_CurrThread->dbg_exec_mode == EXEC_STEPI_INSTR)) {
Eric Pouech71189b52000-07-25 12:51:56 +0000392
393 struct list_id list;
394
Eric Pouech911436b2000-06-18 19:30:24 +0000395 /* Show where we crashed */
396 curr_frame = 0;
Eric Pouech71189b52000-07-25 12:51:56 +0000397 DEBUG_DisassembleInstruction(&addr);
398
399 /* resets list internal arguments so we can look at source code when needed */
400 DEBUG_FindNearestSymbol(&addr, TRUE, NULL, 0, &list);
401 if (list.sourcefile) DEBUG_List(&list, NULL, 0);
Eric Pouech911436b2000-06-18 19:30:24 +0000402 }
403 return TRUE;
404}
405
406static DWORD DEBUG_ExceptionEpilog(void)
407{
408 DEBUG_CurrThread->dbg_exec_mode = DEBUG_RestartExecution(DEBUG_CurrThread->dbg_exec_mode,
409 DEBUG_CurrThread->dbg_exec_count);
410 /*
411 * This will have gotten absorbed into the breakpoint info
412 * if it was used. Otherwise it would have been ignored.
413 * In any case, we don't mess with it any more.
414 */
415 if (DEBUG_CurrThread->dbg_exec_mode == EXEC_CONT || DEBUG_CurrThread->dbg_exec_mode == EXEC_PASS)
416 DEBUG_CurrThread->dbg_exec_count = 0;
417
418 return (DEBUG_CurrThread->dbg_exec_mode == EXEC_PASS) ? DBG_EXCEPTION_NOT_HANDLED : DBG_CONTINUE;
419}
420
Eric Pouech21b366e2002-02-27 01:29:18 +0000421static enum exit_mode DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL force, LPDWORD cont)
Eric Pouech527eea92000-03-08 16:44:54 +0000422{
James Hathewayf5523592001-04-09 18:31:47 +0000423 BOOL is_debug = FALSE;
Eric Pouech21b366e2002-02-27 01:29:18 +0000424 enum exit_mode ret = EXIT_CONT;
James Hathewayf5523592001-04-09 18:31:47 +0000425 THREADNAME_INFO *pThreadName;
426 DBG_THREAD *pThread;
427
Eric Pouech527eea92000-03-08 16:44:54 +0000428
Eric Pouech911436b2000-06-18 19:30:24 +0000429 *cont = DBG_CONTINUE;
Eric Pouech527eea92000-03-08 16:44:54 +0000430
431 switch (rec->ExceptionCode)
432 {
433 case EXCEPTION_BREAKPOINT:
434 case EXCEPTION_SINGLE_STEP:
435 is_debug = TRUE;
436 break;
James Hathewayf5523592001-04-09 18:31:47 +0000437 case EXCEPTION_NAME_THREAD:
438 pThreadName = (THREADNAME_INFO*)(rec->ExceptionInformation);
439 if (pThreadName->dwThreadID == -1)
440 pThread = DEBUG_CurrThread;
441 else
442 pThread = DEBUG_GetThread(DEBUG_CurrProcess, pThreadName->dwThreadID);
443
444 if (ReadProcessMemory(DEBUG_CurrThread->process->handle, pThreadName->szName,
445 pThread->name, 9, NULL))
446 DEBUG_Printf (DBG_CHN_MESG,
447 "Thread ID=0x%lx renamed using MS VC6 extension (name==\"%s\")\n",
448 pThread->tid, pThread->name);
Eric Pouech21b366e2002-02-27 01:29:18 +0000449 return EXIT_CONT;
Eric Pouech527eea92000-03-08 16:44:54 +0000450 }
451
Alexandre Julliard840434a2001-10-04 16:17:16 +0000452 if (first_chance && !is_debug && !force && !DBG_IVAR(BreakOnFirstChance))
Alexandre Julliard954a4132000-09-24 03:15:50 +0000453 {
454 /* pass exception to program except for debug exceptions */
455 *cont = is_debug ? DBG_CONTINUE : DBG_EXCEPTION_NOT_HANDLED;
Eric Pouech21b366e2002-02-27 01:29:18 +0000456 return EXIT_CONT;
Alexandre Julliard954a4132000-09-24 03:15:50 +0000457 }
458
Eric Pouech527eea92000-03-08 16:44:54 +0000459 if (!is_debug)
460 {
461 /* print some infos */
Eric Pouech911436b2000-06-18 19:30:24 +0000462 DEBUG_Printf(DBG_CHN_MESG, "%s: ",
463 first_chance ? "First chance exception" : "Unhandled exception");
Eric Pouechb9717452000-05-05 18:14:34 +0000464 switch (rec->ExceptionCode)
Eric Pouech527eea92000-03-08 16:44:54 +0000465 {
466 case EXCEPTION_INT_DIVIDE_BY_ZERO:
Eric Pouech911436b2000-06-18 19:30:24 +0000467 DEBUG_Printf(DBG_CHN_MESG, "divide by zero");
Eric Pouech527eea92000-03-08 16:44:54 +0000468 break;
469 case EXCEPTION_INT_OVERFLOW:
Eric Pouech911436b2000-06-18 19:30:24 +0000470 DEBUG_Printf(DBG_CHN_MESG, "overflow");
Eric Pouech527eea92000-03-08 16:44:54 +0000471 break;
472 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
Eric Pouech911436b2000-06-18 19:30:24 +0000473 DEBUG_Printf(DBG_CHN_MESG, "array bounds ");
Eric Pouech527eea92000-03-08 16:44:54 +0000474 break;
475 case EXCEPTION_ILLEGAL_INSTRUCTION:
Eric Pouech911436b2000-06-18 19:30:24 +0000476 DEBUG_Printf(DBG_CHN_MESG, "illegal instruction");
Eric Pouech527eea92000-03-08 16:44:54 +0000477 break;
478 case EXCEPTION_STACK_OVERFLOW:
Eric Pouech911436b2000-06-18 19:30:24 +0000479 DEBUG_Printf(DBG_CHN_MESG, "stack overflow");
Eric Pouech527eea92000-03-08 16:44:54 +0000480 break;
481 case EXCEPTION_PRIV_INSTRUCTION:
Andreas Mohre15badb2001-10-21 15:18:15 +0000482 DEBUG_Printf(DBG_CHN_MESG, "privileged instruction");
Eric Pouech527eea92000-03-08 16:44:54 +0000483 break;
484 case EXCEPTION_ACCESS_VIOLATION:
485 if (rec->NumberParameters == 2)
Eric Pouech911436b2000-06-18 19:30:24 +0000486 DEBUG_Printf(DBG_CHN_MESG, "page fault on %s access to 0x%08lx",
Eric Poueche5efa0c2000-04-13 19:31:58 +0000487 rec->ExceptionInformation[0] ? "write" : "read",
Eric Pouech911436b2000-06-18 19:30:24 +0000488 rec->ExceptionInformation[1]);
Eric Pouech527eea92000-03-08 16:44:54 +0000489 else
Eric Pouech911436b2000-06-18 19:30:24 +0000490 DEBUG_Printf(DBG_CHN_MESG, "page fault");
Eric Pouech527eea92000-03-08 16:44:54 +0000491 break;
492 case EXCEPTION_DATATYPE_MISALIGNMENT:
Eric Pouech911436b2000-06-18 19:30:24 +0000493 DEBUG_Printf(DBG_CHN_MESG, "Alignment");
Eric Pouech527eea92000-03-08 16:44:54 +0000494 break;
Eric Pouechd0a04932001-11-23 23:10:08 +0000495 case DBG_CONTROL_C:
496 DEBUG_Printf(DBG_CHN_MESG, "^C");
497 break;
Eric Pouech527eea92000-03-08 16:44:54 +0000498 case CONTROL_C_EXIT:
Eric Pouech911436b2000-06-18 19:30:24 +0000499 DEBUG_Printf(DBG_CHN_MESG, "^C");
Eric Pouech527eea92000-03-08 16:44:54 +0000500 break;
501 case EXCEPTION_CRITICAL_SECTION_WAIT:
Eric Pouechc2b5cb32001-08-07 19:32:14 +0000502 {
503 DBG_ADDR addr;
504
505 addr.seg = 0;
506 addr.off = rec->ExceptionInformation[0];
507
508 DEBUG_Printf(DBG_CHN_MESG, "wait failed on critical section ");
509 DEBUG_PrintAddress(&addr, DEBUG_CurrThread->dbg_mode, FALSE);
510 }
Eric Pouech04c16b82000-04-30 12:21:15 +0000511 if (!DBG_IVAR(BreakOnCritSectTimeOut))
Andreas Mohr20cd9352000-09-12 23:40:40 +0000512 {
513 DEBUG_Printf(DBG_CHN_MESG, "\n");
Eric Pouech21b366e2002-02-27 01:29:18 +0000514 return EXIT_CONT;
Andreas Mohr20cd9352000-09-12 23:40:40 +0000515 }
Eric Pouech527eea92000-03-08 16:44:54 +0000516 break;
Alexandre Julliard634824b2000-10-26 22:03:34 +0000517 case EXCEPTION_WINE_STUB:
518 {
519 char dll[32], name[64];
520 DEBUG_ProcessGetString( dll, sizeof(dll), DEBUG_CurrThread->process->handle,
521 (char *)rec->ExceptionInformation[0] );
522 DEBUG_ProcessGetString( name, sizeof(name), DEBUG_CurrThread->process->handle,
523 (char *)rec->ExceptionInformation[1] );
524 DEBUG_Printf(DBG_CHN_MESG, "unimplemented function %s.%s called", dll, name );
525 }
526 break;
Alexandre Julliard954a4132000-09-24 03:15:50 +0000527 case EXCEPTION_VM86_INTx:
528 DEBUG_Printf(DBG_CHN_MESG, "interrupt %02lx in vm86 mode",
529 rec->ExceptionInformation[0]);
530 break;
531 case EXCEPTION_VM86_STI:
532 DEBUG_Printf(DBG_CHN_MESG, "sti in vm86 mode");
533 break;
534 case EXCEPTION_VM86_PICRETURN:
535 DEBUG_Printf(DBG_CHN_MESG, "PIC return in vm86 mode");
536 break;
Eric Pouech527eea92000-03-08 16:44:54 +0000537 default:
Eric Pouech911436b2000-06-18 19:30:24 +0000538 DEBUG_Printf(DBG_CHN_MESG, "%08lx", rec->ExceptionCode);
Eric Pouech527eea92000-03-08 16:44:54 +0000539 break;
540 }
541 }
542
Eric Pouech38f2be42001-08-15 17:40:31 +0000543#if 0
Eric Poueche5efa0c2000-04-13 19:31:58 +0000544 DEBUG_Printf(DBG_CHN_TRACE,
545 "Entering debugger PC=%lx EFL=%08lx mode=%d count=%d\n",
Ulrich Weigand1cbf27a2000-06-04 01:33:21 +0000546#ifdef __i386__
Eric Poueche5efa0c2000-04-13 19:31:58 +0000547 DEBUG_context.Eip, DEBUG_context.EFlags,
Ulrich Weigand1cbf27a2000-06-04 01:33:21 +0000548#else
549 0L, 0L,
550#endif
Eric Poueche5efa0c2000-04-13 19:31:58 +0000551 DEBUG_CurrThread->dbg_exec_mode, DEBUG_CurrThread->dbg_exec_count);
Eric Pouech38f2be42001-08-15 17:40:31 +0000552#endif
Eric Pouech527eea92000-03-08 16:44:54 +0000553
Alexandre Julliardf5a8b962001-10-22 19:00:34 +0000554 if (automatic_mode)
555 {
556 DEBUG_ExceptionProlog(is_debug, FALSE, rec->ExceptionCode);
Eric Pouech21b366e2002-02-27 01:29:18 +0000557 return EXIT_QUIT; /* terminate execution */
Alexandre Julliardf5a8b962001-10-22 19:00:34 +0000558 }
559
Eric Pouech911436b2000-06-18 19:30:24 +0000560 if (DEBUG_ExceptionProlog(is_debug, force, rec->ExceptionCode)) {
Eric Pouech52c75342001-05-03 18:32:47 +0000561 DEBUG_interactiveP = TRUE;
Eric Pouech21b366e2002-02-27 01:29:18 +0000562 while ((ret = DEBUG_Parser()) == EXIT_CONT) {
Eric Pouech5b471ba2000-06-25 12:49:13 +0000563 if (DEBUG_ValidateRegisters()) {
564 if (DEBUG_CurrThread->dbg_exec_mode != EXEC_PASS || first_chance)
565 break;
566 DEBUG_Printf(DBG_CHN_MESG, "Cannot pass on last chance exception. You must use cont\n");
567 }
Eric Pouech911436b2000-06-18 19:30:24 +0000568 }
Eric Pouech52c75342001-05-03 18:32:47 +0000569 DEBUG_interactiveP = FALSE;
Eric Pouech911436b2000-06-18 19:30:24 +0000570 }
571 *cont = DEBUG_ExceptionEpilog();
Eric Poueche5efa0c2000-04-13 19:31:58 +0000572
Eric Pouech38f2be42001-08-15 17:40:31 +0000573#if 0
Eric Poueche5efa0c2000-04-13 19:31:58 +0000574 DEBUG_Printf(DBG_CHN_TRACE,
575 "Exiting debugger PC=%lx EFL=%08lx mode=%d count=%d\n",
Ulrich Weigand1cbf27a2000-06-04 01:33:21 +0000576#ifdef __i386__
Eric Poueche5efa0c2000-04-13 19:31:58 +0000577 DEBUG_context.Eip, DEBUG_context.EFlags,
Ulrich Weigand1cbf27a2000-06-04 01:33:21 +0000578#else
579 0L, 0L,
580#endif
Eric Poueche5efa0c2000-04-13 19:31:58 +0000581 DEBUG_CurrThread->dbg_exec_mode, DEBUG_CurrThread->dbg_exec_count);
Eric Pouech38f2be42001-08-15 17:40:31 +0000582#endif
Eric Pouech527eea92000-03-08 16:44:54 +0000583
584 return ret;
585}
586
Eric Poueche5efa0c2000-04-13 19:31:58 +0000587static BOOL DEBUG_HandleDebugEvent(DEBUG_EVENT* de, LPDWORD cont)
Eric Pouech527eea92000-03-08 16:44:54 +0000588{
Eric Pouech527eea92000-03-08 16:44:54 +0000589 char buffer[256];
Eric Pouech21b366e2002-02-27 01:29:18 +0000590 enum exit_mode ret;
Eric Pouech911436b2000-06-18 19:30:24 +0000591
Eric Pouechf1822352000-05-11 21:43:43 +0000592 DEBUG_CurrPid = de->dwProcessId;
593 DEBUG_CurrTid = de->dwThreadId;
594
Eric Pouechac11a682000-03-26 13:37:39 +0000595 __TRY {
Eric Pouech21b366e2002-02-27 01:29:18 +0000596 ret = EXIT_CONT;
Eric Poueche5efa0c2000-04-13 19:31:58 +0000597 *cont = 0L;
Eric Pouechac11a682000-03-26 13:37:39 +0000598
599 if ((DEBUG_CurrProcess = DEBUG_GetProcess(de->dwProcessId)) != NULL)
600 DEBUG_CurrThread = DEBUG_GetThread(DEBUG_CurrProcess, de->dwThreadId);
Eric Pouech527eea92000-03-08 16:44:54 +0000601 else
602 DEBUG_CurrThread = NULL;
Eric Pouechac11a682000-03-26 13:37:39 +0000603
604 switch (de->dwDebugEventCode) {
Eric Pouech527eea92000-03-08 16:44:54 +0000605 case EXCEPTION_DEBUG_EVENT:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000606 if (!DEBUG_CurrThread) {
607 DEBUG_Printf(DBG_CHN_ERR, "%08lx:%08lx: not a registered process or thread (perhaps a 16 bit one ?)\n",
608 de->dwProcessId, de->dwThreadId);
609 break;
610 }
Eric Pouechac11a682000-03-26 13:37:39 +0000611
Eric Pouechb9717452000-05-05 18:14:34 +0000612 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: exception code=%08lx\n",
Eric Poueche5efa0c2000-04-13 19:31:58 +0000613 de->dwProcessId, de->dwThreadId,
Eric Pouechb9717452000-05-05 18:14:34 +0000614 de->u.Exception.ExceptionRecord.ExceptionCode);
615
616 if (DEBUG_CurrProcess->continue_on_first_exception) {
617 DEBUG_CurrProcess->continue_on_first_exception = FALSE;
618 if (!DBG_IVAR(BreakOnAttach)) {
619 *cont = DBG_CONTINUE;
620 break;
621 }
622 }
623
Ulrich Weigand1cbf27a2000-06-04 01:33:21 +0000624 DEBUG_context.ContextFlags = CONTEXT_CONTROL
625 | CONTEXT_INTEGER
626#ifdef CONTEXT_SEGMENTS
627 | CONTEXT_SEGMENTS
628#endif
629#ifdef CONTEXT_DEBUG_REGISTERS
630 | CONTEXT_DEBUG_REGISTERS
631#endif
632 ;
633
Eric Pouech527eea92000-03-08 16:44:54 +0000634 if (!GetThreadContext(DEBUG_CurrThread->handle, &DEBUG_context)) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000635 DEBUG_Printf(DBG_CHN_WARN, "Can't get thread's context\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000636 break;
637 }
Eric Pouechac11a682000-03-26 13:37:39 +0000638
Eric Pouech911436b2000-06-18 19:30:24 +0000639 ret = DEBUG_HandleException(&de->u.Exception.ExceptionRecord,
640 de->u.Exception.dwFirstChance,
641 DEBUG_CurrThread->wait_for_first_exception,
642 cont);
643 if (DEBUG_CurrThread) {
Eric Pouech527eea92000-03-08 16:44:54 +0000644 DEBUG_CurrThread->wait_for_first_exception = 0;
Eric Poueche5efa0c2000-04-13 19:31:58 +0000645 SetThreadContext(DEBUG_CurrThread->handle, &DEBUG_context);
Eric Pouech527eea92000-03-08 16:44:54 +0000646 }
Eric Pouech527eea92000-03-08 16:44:54 +0000647 break;
648
649 case CREATE_THREAD_DEBUG_EVENT:
Eric Pouechf1822352000-05-11 21:43:43 +0000650 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: create thread D @%08lx\n", de->dwProcessId, de->dwThreadId,
651 (unsigned long)(LPVOID)de->u.CreateThread.lpStartAddress);
Eric Pouech527eea92000-03-08 16:44:54 +0000652
653 if (DEBUG_CurrProcess == NULL) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000654 DEBUG_Printf(DBG_CHN_ERR, "Unknown process\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000655 break;
656 }
Eric Pouechac11a682000-03-26 13:37:39 +0000657 if (DEBUG_GetThread(DEBUG_CurrProcess, de->dwThreadId) != NULL) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000658 DEBUG_Printf(DBG_CHN_TRACE, "Thread already listed, skipping\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000659 break;
660 }
Eric Pouechac11a682000-03-26 13:37:39 +0000661
Eric Pouech527eea92000-03-08 16:44:54 +0000662 DEBUG_CurrThread = DEBUG_AddThread(DEBUG_CurrProcess,
Eric Pouechac11a682000-03-26 13:37:39 +0000663 de->dwThreadId,
664 de->u.CreateThread.hThread,
665 de->u.CreateThread.lpStartAddress,
666 de->u.CreateThread.lpThreadLocalBase);
Eric Pouech527eea92000-03-08 16:44:54 +0000667 if (!DEBUG_CurrThread) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000668 DEBUG_Printf(DBG_CHN_ERR, "Couldn't create thread\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000669 break;
670 }
671 DEBUG_InitCurrThread();
672 break;
673
674 case CREATE_PROCESS_DEBUG_EVENT:
Alexandre Julliard0966a6d2000-03-10 22:25:07 +0000675 DEBUG_ProcessGetStringIndirect(buffer, sizeof(buffer),
Eric Pouechac11a682000-03-26 13:37:39 +0000676 de->u.CreateProcessInfo.hProcess,
Eric Poueche5efa0c2000-04-13 19:31:58 +0000677 de->u.CreateProcessInfo.lpImageName);
Eric Pouech800773f2001-08-06 17:51:52 +0000678
Eric Pouechac11a682000-03-26 13:37:39 +0000679 /* FIXME unicode ? de->u.CreateProcessInfo.fUnicode */
Eric Pouech800773f2001-08-06 17:51:52 +0000680 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: create process '%s'/%p @%08lx (%ld<%ld>)\n",
Eric Poueche5efa0c2000-04-13 19:31:58 +0000681 de->dwProcessId, de->dwThreadId,
Eric Pouech800773f2001-08-06 17:51:52 +0000682 buffer, de->u.CreateProcessInfo.lpImageName,
Eric Pouechf1822352000-05-11 21:43:43 +0000683 (unsigned long)(LPVOID)de->u.CreateProcessInfo.lpStartAddress,
Eric Poueche5efa0c2000-04-13 19:31:58 +0000684 de->u.CreateProcessInfo.dwDebugInfoFileOffset,
685 de->u.CreateProcessInfo.nDebugInfoSize);
Eric Pouech527eea92000-03-08 16:44:54 +0000686
Eric Pouechb9717452000-05-05 18:14:34 +0000687 if ((DEBUG_CurrProcess = DEBUG_GetProcess(de->dwProcessId)) != NULL) {
688 if (DEBUG_CurrProcess->handle) {
689 DEBUG_Printf(DBG_CHN_ERR, "Skipping already defined process\n");
690 break;
691 }
692 DEBUG_CurrProcess->handle = de->u.CreateProcessInfo.hProcess;
Eric Pouech800773f2001-08-06 17:51:52 +0000693 if (DEBUG_CurrProcess->imageName == NULL)
694 DEBUG_CurrProcess->imageName = DBG_strdup(buffer[0] ? buffer : "<Debugged Process>");
695
Eric Pouechb9717452000-05-05 18:14:34 +0000696 } else {
697 DEBUG_CurrProcess = DEBUG_AddProcess(de->dwProcessId,
Eric Pouech800773f2001-08-06 17:51:52 +0000698 de->u.CreateProcessInfo.hProcess,
699 buffer[0] ? buffer : "<Debugged Process>");
Eric Pouechb9717452000-05-05 18:14:34 +0000700 if (DEBUG_CurrProcess == NULL) {
701 DEBUG_Printf(DBG_CHN_ERR, "Unknown process\n");
702 break;
703 }
Eric Pouech527eea92000-03-08 16:44:54 +0000704 }
705
Eric Pouechf1822352000-05-11 21:43:43 +0000706 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: create thread I @%08lx\n",
Eric Poueche5efa0c2000-04-13 19:31:58 +0000707 de->dwProcessId, de->dwThreadId,
Eric Pouechf1822352000-05-11 21:43:43 +0000708 (unsigned long)(LPVOID)de->u.CreateProcessInfo.lpStartAddress);
Eric Pouech527eea92000-03-08 16:44:54 +0000709
710 DEBUG_CurrThread = DEBUG_AddThread(DEBUG_CurrProcess,
Eric Pouechac11a682000-03-26 13:37:39 +0000711 de->dwThreadId,
712 de->u.CreateProcessInfo.hThread,
713 de->u.CreateProcessInfo.lpStartAddress,
714 de->u.CreateProcessInfo.lpThreadLocalBase);
Eric Pouech527eea92000-03-08 16:44:54 +0000715 if (!DEBUG_CurrThread) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000716 DEBUG_Printf(DBG_CHN_ERR, "Couldn't create thread\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000717 break;
718 }
719
720 DEBUG_InitCurrProcess();
721 DEBUG_InitCurrThread();
Alexandre Julliard291fa662000-06-08 05:02:19 +0000722
Eric Pouech800773f2001-08-06 17:51:52 +0000723 DEBUG_LoadModule32(DEBUG_CurrProcess->imageName, de->u.CreateProcessInfo.hFile,
Eric Poueche5efa0c2000-04-13 19:31:58 +0000724 (DWORD)de->u.CreateProcessInfo.lpBaseOfImage);
Alexandre Julliard291fa662000-06-08 05:02:19 +0000725
726 if (buffer[0]) /* we got a process name */
727 {
728 DWORD type;
729 if (!GetBinaryTypeA( buffer, &type ))
730 {
731 /* not a Windows binary, assume it's a Unix executable then */
Alexandre Julliard633293f2000-12-06 03:20:47 +0000732 char unixname[MAX_PATH];
Alexandre Julliard291fa662000-06-08 05:02:19 +0000733 /* HACK!! should fix DEBUG_ReadExecutableDbgInfo to accept DOS filenames */
Alexandre Julliard633293f2000-12-06 03:20:47 +0000734 if (wine_get_unix_file_name( buffer, unixname, sizeof(unixname) ))
Alexandre Julliard291fa662000-06-08 05:02:19 +0000735 {
Alexandre Julliard633293f2000-12-06 03:20:47 +0000736 DEBUG_ReadExecutableDbgInfo( unixname );
Alexandre Julliard291fa662000-06-08 05:02:19 +0000737 break;
738 }
739 }
740 }
741 /* if it is a Windows binary, or an invalid or missing file name,
742 * we use wine itself as the main executable */
743 DEBUG_ReadExecutableDbgInfo( "wine" );
Eric Pouech527eea92000-03-08 16:44:54 +0000744 break;
745
746 case EXIT_THREAD_DEBUG_EVENT:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000747 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: exit thread (%ld)\n",
748 de->dwProcessId, de->dwThreadId, de->u.ExitThread.dwExitCode);
Eric Pouechac11a682000-03-26 13:37:39 +0000749
Eric Pouech527eea92000-03-08 16:44:54 +0000750 if (DEBUG_CurrThread == NULL) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000751 DEBUG_Printf(DBG_CHN_ERR, "Unknown thread\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000752 break;
753 }
754 /* FIXME: remove break point set on thread startup */
755 DEBUG_DelThread(DEBUG_CurrThread);
756 break;
757
758 case EXIT_PROCESS_DEBUG_EVENT:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000759 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: exit process (%ld)\n",
760 de->dwProcessId, de->dwThreadId, de->u.ExitProcess.dwExitCode);
Eric Pouechac11a682000-03-26 13:37:39 +0000761
Eric Pouech527eea92000-03-08 16:44:54 +0000762 if (DEBUG_CurrProcess == NULL) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000763 DEBUG_Printf(DBG_CHN_ERR, "Unknown process\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000764 break;
765 }
Eric Poueche5efa0c2000-04-13 19:31:58 +0000766 /* just in case */
767 DEBUG_SetBreakpoints(FALSE);
Eric Pouech527eea92000-03-08 16:44:54 +0000768 /* kill last thread */
769 DEBUG_DelThread(DEBUG_CurrProcess->threads);
Eric Pouech527eea92000-03-08 16:44:54 +0000770 DEBUG_DelProcess(DEBUG_CurrProcess);
Eric Pouech911436b2000-06-18 19:30:24 +0000771
772 DEBUG_Printf(DBG_CHN_MESG, "Process of pid=%08lx has terminated\n", DEBUG_CurrPid);
Eric Pouech527eea92000-03-08 16:44:54 +0000773 break;
774
775 case LOAD_DLL_DEBUG_EVENT:
776 if (DEBUG_CurrThread == NULL) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000777 DEBUG_Printf(DBG_CHN_ERR, "Unknown thread\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000778 break;
779 }
Alexandre Julliard0966a6d2000-03-10 22:25:07 +0000780 DEBUG_ProcessGetStringIndirect(buffer, sizeof(buffer),
781 DEBUG_CurrThread->process->handle,
Eric Pouechac11a682000-03-26 13:37:39 +0000782 de->u.LoadDll.lpImageName);
Eric Pouech527eea92000-03-08 16:44:54 +0000783
Eric Pouechac11a682000-03-26 13:37:39 +0000784 /* FIXME unicode: de->u.LoadDll.fUnicode */
Eric Pouechf1822352000-05-11 21:43:43 +0000785 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: loads DLL %s @%08lx (%ld<%ld>)\n",
Eric Poueche5efa0c2000-04-13 19:31:58 +0000786 de->dwProcessId, de->dwThreadId,
Eric Pouechf1822352000-05-11 21:43:43 +0000787 buffer, (unsigned long)de->u.LoadDll.lpBaseOfDll,
Eric Poueche5efa0c2000-04-13 19:31:58 +0000788 de->u.LoadDll.dwDebugInfoFileOffset,
789 de->u.LoadDll.nDebugInfoSize);
Alexandre Julliard09d78222001-05-05 00:44:48 +0000790 _strupr(buffer);
Eric Poueche5efa0c2000-04-13 19:31:58 +0000791 DEBUG_LoadModule32(buffer, de->u.LoadDll.hFile, (DWORD)de->u.LoadDll.lpBaseOfDll);
Eric Pouecheaafb732001-05-21 18:33:15 +0000792 DEBUG_CheckDelayedBP();
Eric Pouechf516be62000-07-10 13:05:44 +0000793 if (DBG_IVAR(BreakOnDllLoad)) {
794 DEBUG_Printf(DBG_CHN_MESG, "Stopping on DLL %s loading at %08lx\n",
795 buffer, (unsigned long)de->u.LoadDll.lpBaseOfDll);
796 ret = DEBUG_Parser();
797 }
Eric Pouech527eea92000-03-08 16:44:54 +0000798 break;
799
800 case UNLOAD_DLL_DEBUG_EVENT:
Eric Pouechf1822352000-05-11 21:43:43 +0000801 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: unload DLL @%08lx\n", de->dwProcessId, de->dwThreadId,
802 (unsigned long)de->u.UnloadDll.lpBaseOfDll);
Eric Pouech527eea92000-03-08 16:44:54 +0000803 break;
804
805 case OUTPUT_DEBUG_STRING_EVENT:
806 if (DEBUG_CurrThread == NULL) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000807 DEBUG_Printf(DBG_CHN_ERR, "Unknown thread\n");
Eric Pouech527eea92000-03-08 16:44:54 +0000808 break;
809 }
Eric Pouechac11a682000-03-26 13:37:39 +0000810
Eric Pouech527eea92000-03-08 16:44:54 +0000811 DEBUG_ProcessGetString(buffer, sizeof(buffer),
812 DEBUG_CurrThread->process->handle,
Eric Pouechac11a682000-03-26 13:37:39 +0000813 de->u.DebugString.lpDebugStringData);
Eric Pouech527eea92000-03-08 16:44:54 +0000814
Dimitrie O. Paun693cca52002-01-29 03:12:19 +0000815 /* FIXME unicode de->u.DebugString.fUnicode ? */
Eric Poueche5efa0c2000-04-13 19:31:58 +0000816 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: output debug string (%s)\n",
817 de->dwProcessId, de->dwThreadId, buffer);
Eric Pouech527eea92000-03-08 16:44:54 +0000818 break;
819
820 case RIP_EVENT:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000821 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: rip error=%ld type=%ld\n",
822 de->dwProcessId, de->dwThreadId, de->u.RipInfo.dwError,
823 de->u.RipInfo.dwType);
Eric Pouech527eea92000-03-08 16:44:54 +0000824 break;
825
826 default:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000827 DEBUG_Printf(DBG_CHN_TRACE, "%08lx:%08lx: unknown event (%ld)\n",
828 de->dwProcessId, de->dwThreadId, de->dwDebugEventCode);
Eric Pouech527eea92000-03-08 16:44:54 +0000829 }
Eric Pouechac11a682000-03-26 13:37:39 +0000830
831 } __EXCEPT(wine_dbg) {
Eric Poueche5efa0c2000-04-13 19:31:58 +0000832 *cont = 0;
Eric Pouech21b366e2002-02-27 01:29:18 +0000833 ret = EXIT_CONT;
Eric Pouechac11a682000-03-26 13:37:39 +0000834 }
835 __ENDTRY;
Eric Poueche5efa0c2000-04-13 19:31:58 +0000836 return ret;
Eric Pouechac11a682000-03-26 13:37:39 +0000837}
838
Eric Pouech911436b2000-06-18 19:30:24 +0000839static DWORD DEBUG_MainLoop(void)
Eric Pouechac11a682000-03-26 13:37:39 +0000840{
841 DEBUG_EVENT de;
842 DWORD cont;
Eric Pouech21b366e2002-02-27 01:29:18 +0000843 enum exit_mode ret = EXIT_CONT;
Eric Pouechac11a682000-03-26 13:37:39 +0000844
Alexandre Julliard954a4132000-09-24 03:15:50 +0000845 DEBUG_Printf(DBG_CHN_MESG, " on pid %lx\n", DEBUG_CurrPid);
Eric Poueche5efa0c2000-04-13 19:31:58 +0000846
Eric Pouech21b366e2002-02-27 01:29:18 +0000847 while (ret == EXIT_CONT)
848 {
Eric Pouech911436b2000-06-18 19:30:24 +0000849 /* wait until we get at least one loaded process */
Eric Pouech21b366e2002-02-27 01:29:18 +0000850 while (!DEBUG_ProcessList && (ret = DEBUG_Parser()) == EXIT_CONT);
851 if (ret != EXIT_CONT) break;
Eric Pouech911436b2000-06-18 19:30:24 +0000852
Eric Pouech21b366e2002-02-27 01:29:18 +0000853 while (ret == EXIT_CONT && DEBUG_ProcessList && WaitForDebugEvent(&de, INFINITE)) {
Eric Pouech911436b2000-06-18 19:30:24 +0000854 ret = DEBUG_HandleDebugEvent(&de, &cont);
855 ContinueDebugEvent(de.dwProcessId, de.dwThreadId, cont);
856 }
Eric Pouech21b366e2002-02-27 01:29:18 +0000857 if (ret == EXIT_DETACH && DEBUG_Detach())
858 {
859 /* ret = EXIT_CONT; */
860 /* FIXME: as we don't have a simple way to zero out the process symbol table
861 * we simply quit the debugger on detach...
862 */
863 ret = EXIT_QUIT;
864 }
865 }
Eric Pouech527eea92000-03-08 16:44:54 +0000866
Alexandre Julliard954a4132000-09-24 03:15:50 +0000867 DEBUG_Printf(DBG_CHN_MESG, "WineDbg terminated on pid %lx\n", DEBUG_CurrPid);
Eric Pouech04c16b82000-04-30 12:21:15 +0000868
869 return 0;
Eric Pouech527eea92000-03-08 16:44:54 +0000870}
871
Alexandre Julliardf5a8b962001-10-22 19:00:34 +0000872static DWORD DEBUG_AutoMode(void)
873{
874 DEBUG_EVENT de;
875 DWORD cont;
Eric Pouech21b366e2002-02-27 01:29:18 +0000876 enum exit_mode ret = EXIT_CONT;
Alexandre Julliardf5a8b962001-10-22 19:00:34 +0000877
878 DEBUG_Printf(DBG_CHN_MESG, " on pid %lx\n", DEBUG_CurrPid);
879
Eric Pouech21b366e2002-02-27 01:29:18 +0000880 while (ret == EXIT_CONT && DEBUG_ProcessList && WaitForDebugEvent(&de, INFINITE))
Alexandre Julliardf5a8b962001-10-22 19:00:34 +0000881 {
882 ret = DEBUG_HandleDebugEvent(&de, &cont);
883 ContinueDebugEvent(de.dwProcessId, de.dwThreadId, cont);
884 }
885 /* print some extra information */
886 DEBUG_Printf(DBG_CHN_MESG, "Modules:\n");
887 DEBUG_WalkModules();
888 DEBUG_Printf(DBG_CHN_MESG, "Threads:\n");
889 DEBUG_WalkThreads();
890
891 DEBUG_Printf(DBG_CHN_MESG, "WineDbg terminated on pid %lx\n", DEBUG_CurrPid);
892 return 0;
893}
894
Eric Pouech911436b2000-06-18 19:30:24 +0000895static BOOL DEBUG_Start(LPSTR cmdLine)
896{
897 PROCESS_INFORMATION info;
898 STARTUPINFOA startup;
899
900 memset(&startup, 0, sizeof(startup));
901 startup.cb = sizeof(startup);
902 startup.dwFlags = STARTF_USESHOWWINDOW;
903 startup.wShowWindow = SW_SHOWNORMAL;
904
905 if (!CreateProcess(NULL, cmdLine, NULL, NULL,
Eric Pouechd0a04932001-11-23 23:10:08 +0000906 FALSE, DEBUG_PROCESS|DETACHED_PROCESS, NULL, NULL, &startup, &info)) {
Eric Pouech911436b2000-06-18 19:30:24 +0000907 DEBUG_Printf(DBG_CHN_MESG, "Couldn't start process '%s'\n", cmdLine);
908 return FALSE;
909 }
910 DEBUG_CurrPid = info.dwProcessId;
Eric Pouech800773f2001-08-06 17:51:52 +0000911 if (!(DEBUG_CurrProcess = DEBUG_AddProcess(DEBUG_CurrPid, 0, NULL))) return FALSE;
Eric Pouech911436b2000-06-18 19:30:24 +0000912
913 return TRUE;
914}
915
916void DEBUG_Run(const char* args)
917{
918 DBG_MODULE* wmod = DEBUG_GetProcessMainModule(DEBUG_CurrProcess);
919 const char* pgm = (wmod) ? wmod->module_name : "none";
920
921 if (args) {
922 DEBUG_Printf(DBG_CHN_MESG, "Run (%s) with '%s'\n", pgm, args);
923 } else {
924 if (!DEBUG_LastCmdLine) {
925 DEBUG_Printf(DBG_CHN_MESG, "Cannot find previously used command line.\n");
926 return;
927 }
928 DEBUG_Start(DEBUG_LastCmdLine);
929 }
930}
931
Eric Pouechd0a04932001-11-23 23:10:08 +0000932static void DEBUG_InitConsole(void)
933{
934 COORD c;
935 SMALL_RECT sr;
936 DWORD mode;
937
938 /* keep it as a cuiexe for now, so that Wine won't touch the Unix stdin,
939 * stdout and stderr streams
940 */
941 if (DBG_IVAR(UseXTerm))
942 {
943 FreeConsole();
944 AllocConsole();
945 }
Eric Pouech21b366e2002-02-27 01:29:18 +0000946
Eric Pouechd0a04932001-11-23 23:10:08 +0000947 /* this would be nicer for output */
948 c.X = 132;
949 c.Y = 500;
950 SetConsoleScreenBufferSize(GetStdHandle(STD_OUTPUT_HANDLE), c);
951
952 /* sets the console's window width accordingly */
953 sr.Left = 0;
954 sr.Top = 0;
955 sr.Right = c.X - 1;
956 sr.Bottom = 50;
957 SetConsoleWindowInfo(GetStdHandle(STD_OUTPUT_HANDLE), TRUE, &sr);
958
959 /* put the line editing mode with the nice emacs features (FIXME: could be triggered by a IVAR) */
960 if (GetConsoleMode(GetStdHandle(STD_INPUT_HANDLE), &mode))
961 SetConsoleMode(GetStdHandle(STD_INPUT_HANDLE), mode | WINE_ENABLE_LINE_INPUT_EMACS);
962}
963
Eric Pouech04c16b82000-04-30 12:21:15 +0000964int DEBUG_main(int argc, char** argv)
Eric Pouech527eea92000-03-08 16:44:54 +0000965{
Eric Pouech911436b2000-06-18 19:30:24 +0000966 DWORD retv = 0;
Eric Poueche5efa0c2000-04-13 19:31:58 +0000967
Eric Pouech04c16b82000-04-30 12:21:15 +0000968 /* Initialize the type handling stuff. */
969 DEBUG_InitTypes();
970 DEBUG_InitCVDataTypes();
Eric Pouech527eea92000-03-08 16:44:54 +0000971
Eric Pouech800773f2001-08-06 17:51:52 +0000972 /* Initialize internal vars (types must have been initialized before) */
Eric Pouech26342c92000-05-01 14:22:02 +0000973 if (!DEBUG_IntVarsRW(TRUE)) return -1;
Eric Pouech04c16b82000-04-30 12:21:15 +0000974
Alexandre Julliardf5a8b962001-10-22 19:00:34 +0000975 if (argc > 1 && !strcmp( argv[1], "--auto" ))
976 {
977 argc--;
978 argv++;
979 automatic_mode = 1;
980 /* force some internal variables */
981 DBG_IVAR(UseXTerm) = 0;
982 DBG_IVAR(BreakOnDllLoad) = 0;
983 DBG_IVAR(ConChannelMask) = 0;
984 DBG_IVAR(StdChannelMask) = DBG_CHN_MESG;
985 }
986
Eric Pouechd0a04932001-11-23 23:10:08 +0000987 DEBUG_InitConsole();
988
Andreas Mohra59324d2000-11-25 01:40:10 +0000989 DEBUG_Printf(DBG_CHN_MESG, "WineDbg starting... ");
Eric Pouech52c75342001-05-03 18:32:47 +0000990
Eric Pouech04c16b82000-04-30 12:21:15 +0000991 if (argc == 3) {
992 HANDLE hEvent;
Eric Pouech911436b2000-06-18 19:30:24 +0000993 DWORD pid;
Eric Poueche5efa0c2000-04-13 19:31:58 +0000994
François Gougetd5042c42000-12-29 05:38:00 +0000995 if ((pid = atoi(argv[1])) != 0 && (hEvent = (HANDLE)atoi(argv[2])) != 0) {
Eric Pouech2b713ba2001-04-13 22:26:23 +0000996 if (!DEBUG_Attach(pid, TRUE)) {
Eric Pouech2b713ba2001-04-13 22:26:23 +0000997 /* don't care about result */
998 SetEvent(hEvent);
Eric Pouechf1822352000-05-11 21:43:43 +0000999 goto leave;
1000 }
Eric Pouech2b713ba2001-04-13 22:26:23 +00001001 if (!SetEvent(hEvent)) {
1002 DEBUG_Printf(DBG_CHN_ERR, "Invalid event handle: %p\n", hEvent);
1003 goto leave;
1004 }
1005 CloseHandle(hEvent);
Eric Pouech911436b2000-06-18 19:30:24 +00001006 DEBUG_CurrPid = pid;
Eric Pouechf1822352000-05-11 21:43:43 +00001007 }
1008 }
1009
Eric Pouech911436b2000-06-18 19:30:24 +00001010 if (DEBUG_CurrPid == 0 && argc > 1) {
1011 int i, len;
1012 LPSTR cmdLine;
1013
1014 if (!(cmdLine = DBG_alloc(len = 1))) goto oom_leave;
1015 cmdLine[0] = '\0';
Eric Poueche5efa0c2000-04-13 19:31:58 +00001016
Eric Pouech911436b2000-06-18 19:30:24 +00001017 for (i = 1; i < argc; i++) {
1018 len += strlen(argv[i]) + 1;
1019 if (!(cmdLine = DBG_realloc(cmdLine, len))) goto oom_leave;
1020 strcat(cmdLine, argv[i]);
1021 cmdLine[len - 2] = ' ';
1022 cmdLine[len - 1] = '\0';
1023 }
Eric Poueche5efa0c2000-04-13 19:31:58 +00001024
Eric Pouech911436b2000-06-18 19:30:24 +00001025 if (!DEBUG_Start(cmdLine)) {
1026 DEBUG_Printf(DBG_CHN_MESG, "Couldn't start process '%s'\n", cmdLine);
Eric Pouech04c16b82000-04-30 12:21:15 +00001027 goto leave;
Eric Poueche5efa0c2000-04-13 19:31:58 +00001028 }
Eric Pouech911436b2000-06-18 19:30:24 +00001029 DBG_free(DEBUG_LastCmdLine);
1030 DEBUG_LastCmdLine = cmdLine;
Eric Pouech04c16b82000-04-30 12:21:15 +00001031 }
1032
Alexandre Julliardf5a8b962001-10-22 19:00:34 +00001033 if (automatic_mode)
1034 {
1035 retv = DEBUG_AutoMode();
1036 /* don't save modified variables in auto mode */
1037 }
1038 else
1039 {
1040 retv = DEBUG_MainLoop();
1041 /* saves modified variables */
1042 DEBUG_IntVarsRW(FALSE);
1043 }
Eric Pouech04c16b82000-04-30 12:21:15 +00001044
Eric Pouech800773f2001-08-06 17:51:52 +00001045 leave:
Eric Pouech04c16b82000-04-30 12:21:15 +00001046 return retv;
Eric Pouech911436b2000-06-18 19:30:24 +00001047
1048 oom_leave:
1049 DEBUG_Printf(DBG_CHN_MESG, "Out of memory\n");
1050 goto leave;
Eric Pouechcbb7a172000-03-09 18:45:43 +00001051}