winedbg: stack_get_register_current_frame() is not used anymore so remove it.
[wine] / programs / winedbg / stack.c
1 /*
2  * Debugger stack handling
3  *
4  * Copyright 1995 Alexandre Julliard
5  * Copyright 1996 Eric Youngdale
6  * Copyright 1999 Ove Kåven
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library 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 GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #include "config.h"
24
25 #include <stdlib.h>
26 #include <stdio.h>
27
28 #include "debugger.h"
29 #include "winbase.h"
30 #include "wine/winbase16.h"
31 #include "tlhelp32.h"
32
33 /***********************************************************************
34  *           stack_info
35  *
36  * Dump the top of the stack. If len <= 0, a default length is used.
37  */
38 void stack_info(int len)
39 {
40     struct dbg_lvalue lvalue;
41
42     if(len <= 0)
43         len = 24;
44
45     lvalue.cookie = 0;
46     lvalue.type.id = dbg_itype_segptr;
47     lvalue.type.module = 0;
48
49     /* FIXME: we assume stack grows the same way as on i386 */
50     if (!memory_get_current_stack(&lvalue.addr))
51         dbg_printf("Bad segment (%d)\n", lvalue.addr.Segment);
52
53     dbg_printf("Stack dump:\n");
54     switch (lvalue.addr.Mode)
55     {
56     case AddrModeFlat: /* 32-bit or 64-bit mode */
57         memory_examine(&lvalue, len, 'a');
58         break;
59     case AddrMode1632: /* 32-bit mode */
60         memory_examine(&lvalue, len, 'x');
61         break;
62     case AddrModeReal:  /* 16-bit mode */
63     case AddrMode1616:
64         memory_examine(&lvalue, len, 'w');
65         break;
66     }
67 }
68
69 static BOOL stack_set_frame_internal(int newframe)
70 {
71     if (newframe >= dbg_curr_thread->num_frames)
72         newframe = dbg_curr_thread->num_frames - 1;
73     if (newframe < 0)
74         newframe = 0;
75
76     if (dbg_curr_thread->curr_frame != newframe)
77     {
78         IMAGEHLP_STACK_FRAME    ihsf;
79
80         dbg_curr_thread->curr_frame = newframe;
81         stack_get_current_frame(&ihsf);
82         SymSetContext(dbg_curr_process->handle, &ihsf, NULL);
83     }
84     return TRUE;
85 }
86
87 static BOOL stack_get_frame(int nf, IMAGEHLP_STACK_FRAME* ihsf)
88 {
89     memset(ihsf, 0, sizeof(*ihsf));
90     ihsf->InstructionOffset = dbg_curr_thread->frames[nf].linear_pc;
91     /* if we're not the first frame, InstructionOffset is the return address
92      * after the call instruction (at least on most processors I know of).
93      * However, there are cases where this address is outside of the current function.
94      * This happens when the called function is marked <NO RETURN>, in which
95      * case the compiler can omit the epilog (gcc 4 does it)
96      * Therefore, we decrement InstructionOffset in order to ensure that
97      * the considered address is really inside the current function.
98      */
99     if (nf) ihsf->InstructionOffset--;
100     ihsf->FrameOffset = dbg_curr_thread->frames[nf].linear_frame;
101     ihsf->StackOffset = dbg_curr_thread->frames[nf].linear_stack;
102     return TRUE;
103 }
104
105 BOOL stack_get_current_frame(IMAGEHLP_STACK_FRAME* ihsf)
106 {
107     /*
108      * If we don't have a valid backtrace, then just return.
109      */
110     if (dbg_curr_thread->frames == NULL) return FALSE;
111     return stack_get_frame(dbg_curr_thread->curr_frame, ihsf);
112 }
113
114 BOOL stack_get_register_frame(const struct dbg_internal_var* div, DWORD_PTR** pval)
115 {
116     if (dbg_curr_thread->frames == NULL) return FALSE;
117     if (dbg_curr_thread->frames[dbg_curr_thread->curr_frame].is_ctx_valid)
118         *pval = (DWORD_PTR*)((char*)&dbg_curr_thread->frames[dbg_curr_thread->curr_frame].context +
119                              (DWORD_PTR)div->pval);
120     else
121     {
122         enum be_cpu_addr        kind;
123
124         if (!be_cpu->get_register_info(div->val, &kind)) return FALSE;
125
126         /* reuse some known registers directly out of stackwalk details */
127         switch (kind)
128         {
129         case be_cpu_addr_pc:
130             *pval = &dbg_curr_thread->frames[dbg_curr_thread->curr_frame].linear_pc;
131             break;
132         case be_cpu_addr_stack:
133             *pval = &dbg_curr_thread->frames[dbg_curr_thread->curr_frame].linear_stack;
134             break;
135         case be_cpu_addr_frame:
136             *pval = &dbg_curr_thread->frames[dbg_curr_thread->curr_frame].linear_frame;
137             break;
138         }
139     }
140     return TRUE;
141 }
142
143 BOOL stack_set_frame(int newframe)
144 {
145     ADDRESS64   addr;
146     if (!stack_set_frame_internal(newframe)) return FALSE;
147     addr.Mode = AddrModeFlat;
148     addr.Offset = (DWORD_PTR)memory_to_linear_addr(&dbg_curr_thread->frames[dbg_curr_thread->curr_frame].addr_pc);
149     source_list_from_addr(&addr, 0);
150     return TRUE;
151 }
152
153 /******************************************************************
154  *              stack_get_current_symbol
155  *
156  * Retrieves the symbol information for the current frame element
157  */
158 BOOL stack_get_current_symbol(SYMBOL_INFO* symbol)
159 {
160     IMAGEHLP_STACK_FRAME        ihsf;
161     DWORD64                     disp;
162
163     if (!stack_get_current_frame(&ihsf)) return FALSE;
164     return SymFromAddr(dbg_curr_process->handle, ihsf.InstructionOffset,
165                        &disp, symbol);
166 }
167
168 static BOOL CALLBACK stack_read_mem(HANDLE hProc, DWORD64 addr, 
169                                     PVOID buffer, DWORD size, PDWORD written)
170 {
171     SIZE_T sz;
172     BOOL ret;
173
174     struct dbg_process* pcs = dbg_get_process_h(hProc);
175     if (!pcs) return FALSE;
176     ret = pcs->process_io->read(hProc, (const void*)(DWORD_PTR)addr, buffer,
177                                 size, &sz);
178     if (written != NULL) *written = sz;
179     return ret;
180 }
181
182 /******************************************************************
183  *              stack_fetch_frames
184  *
185  * Do a backtrace on the current thread
186  */
187 unsigned stack_fetch_frames(const CONTEXT* _ctx)
188 {
189     STACKFRAME64 sf;
190     unsigned     nf = 0;
191     /* as native stackwalk can modify the context passed to it, simply copy
192      * it to avoid any damage
193      */
194     CONTEXT      ctx = *_ctx;
195
196     HeapFree(GetProcessHeap(), 0, dbg_curr_thread->frames);
197     dbg_curr_thread->frames = NULL;
198
199     memset(&sf, 0, sizeof(sf));
200     be_cpu->get_addr(dbg_curr_thread->handle, &ctx, be_cpu_addr_frame, &sf.AddrFrame);
201     be_cpu->get_addr(dbg_curr_thread->handle, &ctx, be_cpu_addr_pc, &sf.AddrPC);
202     be_cpu->get_addr(dbg_curr_thread->handle, &ctx, be_cpu_addr_stack, &sf.AddrStack);
203
204     /* don't confuse StackWalk by passing in inconsistent addresses */
205     if ((sf.AddrPC.Mode == AddrModeFlat) && (sf.AddrFrame.Mode != AddrModeFlat))
206     {
207         sf.AddrFrame.Offset = (ULONG_PTR)memory_to_linear_addr(&sf.AddrFrame);
208         sf.AddrFrame.Mode = AddrModeFlat;
209     }
210
211     while (StackWalk64(be_cpu->machine, dbg_curr_process->handle,
212                        dbg_curr_thread->handle, &sf, &ctx, stack_read_mem,
213                        SymFunctionTableAccess64, SymGetModuleBase64, NULL))
214     {
215         dbg_curr_thread->frames = dbg_heap_realloc(dbg_curr_thread->frames, 
216                                                    (nf + 1) * sizeof(dbg_curr_thread->frames[0]));
217
218         dbg_curr_thread->frames[nf].addr_pc      = sf.AddrPC;
219         dbg_curr_thread->frames[nf].linear_pc    = (DWORD_PTR)memory_to_linear_addr(&sf.AddrPC);
220         dbg_curr_thread->frames[nf].addr_frame   = sf.AddrFrame;
221         dbg_curr_thread->frames[nf].linear_frame = (DWORD_PTR)memory_to_linear_addr(&sf.AddrFrame);
222         dbg_curr_thread->frames[nf].addr_stack   = sf.AddrStack;
223         dbg_curr_thread->frames[nf].linear_stack = (DWORD_PTR)memory_to_linear_addr(&sf.AddrStack);
224         dbg_curr_thread->frames[nf].context      = ctx;
225         /* FIXME: can this heuristic be improved: we declare first context always valid, and next ones
226          * if it has been modified by the call to StackWalk...
227          */
228         dbg_curr_thread->frames[nf].is_ctx_valid =
229             (nf == 0 ||
230              (dbg_curr_thread->frames[nf - 1].is_ctx_valid &&
231               memcmp(&dbg_curr_thread->frames[nf - 1].context, &ctx, sizeof(ctx))));
232         nf++;
233         /* we've probably gotten ourselves into an infinite loop so bail */
234         if (nf > 200) break;
235     }
236     dbg_curr_thread->curr_frame = -1;
237     dbg_curr_thread->num_frames = nf;
238     stack_set_frame_internal(0);
239     return nf;
240 }
241
242 struct sym_enum
243 {
244     DWORD_PTR   frame;
245     BOOL        first;
246 };
247
248 static BOOL WINAPI sym_enum_cb(PSYMBOL_INFO sym_info, ULONG size, PVOID user)
249 {
250     struct sym_enum*    se = user;
251
252     if (sym_info->Flags & SYMFLAG_PARAMETER)
253     {
254         if (!se->first) dbg_printf(", "); else se->first = FALSE;
255         symbol_print_local(sym_info, se->frame, FALSE);
256     }
257     return TRUE;
258 }
259
260 static void stack_print_addr_and_args(int nf)
261 {
262     char                        buffer[sizeof(SYMBOL_INFO) + 256];
263     SYMBOL_INFO*                si = (SYMBOL_INFO*)buffer;
264     IMAGEHLP_STACK_FRAME        ihsf;
265     IMAGEHLP_LINE64             il;
266     IMAGEHLP_MODULE             im;
267     DWORD64                     disp64;
268
269     print_bare_address(&dbg_curr_thread->frames[nf].addr_pc);
270
271     stack_get_frame(nf, &ihsf);
272
273     /* grab module where symbol is. If we don't have a module, we cannot print more */
274     im.SizeOfStruct = sizeof(im);
275     if (!SymGetModuleInfo(dbg_curr_process->handle, ihsf.InstructionOffset, &im))
276         return;
277
278     si->SizeOfStruct = sizeof(*si);
279     si->MaxNameLen   = 256;
280     if (SymFromAddr(dbg_curr_process->handle, ihsf.InstructionOffset, &disp64, si))
281     {
282         struct sym_enum se;
283         DWORD           disp;
284
285         dbg_printf(" %s", si->Name);
286         if (disp64) dbg_printf("+0x%lx", (DWORD_PTR)disp64);
287
288         SymSetContext(dbg_curr_process->handle, &ihsf, NULL);
289         se.first = TRUE;
290         se.frame = ihsf.FrameOffset;
291         dbg_printf("(");
292         SymEnumSymbols(dbg_curr_process->handle, 0, NULL, sym_enum_cb, &se);
293         dbg_printf(")");
294
295         il.SizeOfStruct = sizeof(il);
296         if (SymGetLineFromAddr64(dbg_curr_process->handle,
297                                  ihsf.InstructionOffset, &disp, &il))
298             dbg_printf(" [%s:%u]", il.FileName, il.LineNumber);
299         dbg_printf(" in %s", im.ModuleName);
300     }
301     else dbg_printf(" in %s (+0x%lx)", 
302                     im.ModuleName, (DWORD_PTR)(ihsf.InstructionOffset - im.BaseOfImage));
303 }
304
305 /******************************************************************
306  *              backtrace
307  *
308  * Do a backtrace on the current thread
309  */
310 static void backtrace(void)
311 {
312     unsigned                    cf = dbg_curr_thread->curr_frame;
313     IMAGEHLP_STACK_FRAME        ihsf;
314
315     dbg_printf("Backtrace:\n");
316     for (dbg_curr_thread->curr_frame = 0;
317          dbg_curr_thread->curr_frame < dbg_curr_thread->num_frames;
318          dbg_curr_thread->curr_frame++)
319     {
320         dbg_printf("%s%d ", 
321                    (cf == dbg_curr_thread->curr_frame ? "=>" : "  "),
322                    dbg_curr_thread->curr_frame);
323         stack_print_addr_and_args(dbg_curr_thread->curr_frame);
324         dbg_printf(" (");
325         print_bare_address(&dbg_curr_thread->frames[dbg_curr_thread->curr_frame].addr_frame);
326         dbg_printf(")\n");
327     }
328     /* reset context to current stack frame */
329     dbg_curr_thread->curr_frame = cf;
330     if (!dbg_curr_thread->frames) return;
331     stack_get_frame(dbg_curr_thread->curr_frame, &ihsf);
332     SymSetContext(dbg_curr_process->handle, &ihsf, NULL);
333 }
334
335 /******************************************************************
336  *              backtrace_tid
337  *
338  * Do a backtrace on a thread from its process and its identifier
339  * (preserves current thread and context information)
340  */
341 static void backtrace_tid(struct dbg_process* pcs, DWORD tid)
342 {
343     struct dbg_thread*  thread = dbg_curr_thread;
344
345     if (!(dbg_curr_thread = dbg_get_thread(pcs, tid)))
346         dbg_printf("Unknown thread id (%04x) in process (%04x)\n", tid, pcs->pid);
347     else
348     {
349         CONTEXT context;
350
351         dbg_curr_tid = dbg_curr_thread->tid;
352         memset(&context, 0, sizeof(context));
353         context.ContextFlags = CONTEXT_FULL;
354         if (SuspendThread(dbg_curr_thread->handle) != -1)
355         {
356             if (!GetThreadContext(dbg_curr_thread->handle, &context))
357             {
358                 dbg_printf("Can't get context for thread %04x in current process\n",
359                            tid);
360             }
361             else
362             {
363                 stack_fetch_frames(&context);
364                 backtrace();
365             }
366             ResumeThread(dbg_curr_thread->handle);
367         }
368         else dbg_printf("Can't suspend thread %04x in current process\n", tid);
369     }
370     dbg_curr_thread = thread;
371     dbg_curr_tid = thread ? thread->tid : 0;
372 }
373
374 /******************************************************************
375  *              backtrace_all
376  *
377  * Do a backtrace on every running thread in the system (except the debugger)
378  * (preserves current process information)
379  */
380 static void backtrace_all(void)
381 {
382     struct dbg_process* process = dbg_curr_process;
383     struct dbg_thread*  thread = dbg_curr_thread;
384     CONTEXT             ctx = dbg_context;
385     DWORD               cpid = dbg_curr_pid;
386     THREADENTRY32       entry;
387     HANDLE              snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0);
388
389     if (snapshot == INVALID_HANDLE_VALUE)
390     {
391         dbg_printf("Unable to create toolhelp snapshot\n");
392         return;
393     }
394
395     entry.dwSize = sizeof(entry);
396     if (Thread32First(snapshot, &entry))
397     {
398         do
399         {
400             if (entry.th32OwnerProcessID == GetCurrentProcessId()) continue;
401             if (dbg_curr_process && dbg_curr_pid != entry.th32OwnerProcessID &&
402                 cpid != dbg_curr_pid)
403                 dbg_curr_process->process_io->close_process(dbg_curr_process, FALSE);
404
405             if (entry.th32OwnerProcessID == cpid)
406             {
407                 dbg_curr_process = process;
408                 dbg_curr_pid = cpid;
409             }
410             else if (entry.th32OwnerProcessID != dbg_curr_pid)
411             {
412                 if (!dbg_attach_debuggee(entry.th32OwnerProcessID, FALSE))
413                 {
414                     dbg_printf("\nwarning: could not attach to %04x\n",
415                                entry.th32OwnerProcessID);
416                     continue;
417                 }
418                 dbg_curr_pid = dbg_curr_process->pid;
419                 dbg_active_wait_for_first_exception();
420             }
421
422             dbg_printf("\nBacktracing for thread %04x in process %04lx (%s):\n",
423                        entry.th32ThreadID, dbg_curr_pid,
424                        dbg_W2A(dbg_curr_process->imageName, -1));
425             backtrace_tid(dbg_curr_process, entry.th32ThreadID);
426         }
427         while (Thread32Next(snapshot, &entry));
428
429         if (dbg_curr_process && cpid != dbg_curr_pid)
430             dbg_curr_process->process_io->close_process(dbg_curr_process, FALSE);
431     }
432     CloseHandle(snapshot);
433     dbg_curr_process = process;
434     dbg_curr_pid = cpid;
435     dbg_curr_thread = thread;
436     dbg_curr_tid = thread ? thread->tid : 0;
437     dbg_context = ctx;
438 }
439
440 void stack_backtrace(DWORD tid)
441 {
442     /* backtrace every thread in every process except the debugger itself,
443      * invoking via "bt all"
444      */
445     if (tid == -1) return backtrace_all();
446
447     if (!dbg_curr_process) 
448     {
449         dbg_printf("You must be attached to a process to run this command.\n");
450         return;
451     }
452     
453     if (tid == dbg_curr_tid)
454     {
455         backtrace();
456     }
457     else
458     {
459         backtrace_tid(dbg_curr_process, tid);
460     }
461 }