winedbg, winedump: Embed wine build-id information info minidump, and display it.
[wine] / programs / winedbg / tgt_minidump.c
1 /*
2  * Wine debugger - minidump handling
3  *
4  * Copyright 2005 Eric Pouech
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #define NONAMELESSUNION
22 #define NONAMELESSSTRUCT
23
24 #include "config.h"
25 #include "wine/port.h"
26
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdarg.h>
31
32 #include "debugger.h"
33 #include "wingdi.h"
34 #include "winuser.h"
35 #include "tlhelp32.h"
36 #include "wine/debug.h"
37 #include "wine/exception.h"
38
39 WINE_DEFAULT_DEBUG_CHANNEL(winedbg);
40
41 static struct be_process_io be_process_minidump_io;
42
43 /* we need this function on 32bit hosts to ensure we zero out the higher DWORD
44  * stored in the minidump file (sometimes it's not cleared, or the conversion from
45  * 32bit to 64bit wide integers is done as signed, which is wrong)
46  * So we clamp on 32bit CPUs (as stored in minidump information) all addresses to
47  * keep only the lower 32 bits.
48  * FIXME: as of today, since we don't support a backend CPU which is different from
49  * CPU this process is running on, casting to (DWORD_PTR) will do just fine.
50  */
51 static inline DWORD64  get_addr64(DWORD64 addr)
52 {
53     return (DWORD_PTR)addr;
54 }
55
56 void minidump_write(const char* file, const EXCEPTION_RECORD* rec)
57 {
58     HANDLE                              hFile;
59     MINIDUMP_EXCEPTION_INFORMATION      mei;
60     EXCEPTION_POINTERS                  ep;
61
62     hFile = CreateFileA(file, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
63                         FILE_ATTRIBUTE_NORMAL, NULL);
64
65     if (hFile == INVALID_HANDLE_VALUE) return;
66
67     if (rec)
68     {
69         mei.ThreadId = dbg_curr_thread->tid;
70         mei.ExceptionPointers = &ep;
71         ep.ExceptionRecord = (EXCEPTION_RECORD*)rec;
72         ep.ContextRecord = &dbg_context;
73         mei.ClientPointers = FALSE;
74     }
75     MiniDumpWriteDump(dbg_curr_process->handle, dbg_curr_process->pid,
76                       hFile, MiniDumpNormal/*|MiniDumpWithDataSegs*/,
77                       rec ? &mei : NULL, NULL, NULL);
78     CloseHandle(hFile);
79 }
80
81 #define Wine_ElfModuleListStream        0xFFF0
82
83 struct tgt_process_minidump_data
84 {
85     void*       mapping;
86     HANDLE      hFile;
87     HANDLE      hMap;
88 };
89
90 static inline struct tgt_process_minidump_data* private_data(struct dbg_process* pcs)
91 {
92     return pcs->pio_data;
93 }
94
95 static BOOL tgt_process_minidump_read(HANDLE hProcess, const void* addr,
96                                       void* buffer, SIZE_T len, SIZE_T* rlen)
97 {
98     void*               stream;
99
100     if (!private_data(dbg_curr_process)->mapping) return FALSE;
101     if (MiniDumpReadDumpStream(private_data(dbg_curr_process)->mapping,
102                                MemoryListStream, NULL, &stream, NULL))
103     {
104         MINIDUMP_MEMORY_LIST*   mml = stream;
105         MINIDUMP_MEMORY_DESCRIPTOR* mmd = &mml->MemoryRanges[0];
106         int                     i;
107
108         for (i = 0; i < mml->NumberOfMemoryRanges; i++, mmd++)
109         {
110             if (get_addr64(mmd->StartOfMemoryRange) <= (DWORD_PTR)addr &&
111                 (DWORD_PTR)addr < get_addr64(mmd->StartOfMemoryRange) + mmd->Memory.DataSize)
112             {
113                 len = min(len,
114                           get_addr64(mmd->StartOfMemoryRange) + mmd->Memory.DataSize - (DWORD_PTR)addr);
115                 memcpy(buffer,
116                        (char*)private_data(dbg_curr_process)->mapping + mmd->Memory.Rva + (DWORD_PTR)addr - get_addr64(mmd->StartOfMemoryRange),
117                        len);
118                 if (rlen) *rlen = len;
119                 return TRUE;
120             }
121         }
122     }
123     /* FIXME: this is a dirty hack to let the last frame in a bt to work
124      * However, we need to check who's to blame, this code or the current 
125      * dbghelp!StackWalk implementation
126      */
127     if ((DWORD_PTR)addr < 32)
128     {
129         memset(buffer, 0, len); 
130         if (rlen) *rlen = len;
131         return TRUE;
132     }
133     return FALSE;
134 }
135
136 static BOOL tgt_process_minidump_write(HANDLE hProcess, void* addr,
137                                        const void* buffer, SIZE_T len, SIZE_T* wlen)
138 {
139     return FALSE;
140 }
141
142 static BOOL CALLBACK validate_file(PCWSTR name, void* user)
143 {
144     return FALSE; /* get the first file we find !! */
145 }
146
147 static BOOL is_pe_module_embedded(struct tgt_process_minidump_data* data,
148                                   MINIDUMP_MODULE* pe_mm)
149 {
150     MINIDUMP_MODULE_LIST*       mml;
151
152     if (MiniDumpReadDumpStream(data->mapping, Wine_ElfModuleListStream, NULL,
153                                (void**)&mml, NULL))
154     {
155         MINIDUMP_MODULE*        mm;
156         unsigned                i;
157
158         for (i = 0, mm = &mml->Modules[0]; i < mml->NumberOfModules; i++, mm++)
159         {
160             if (get_addr64(mm->BaseOfImage) <= get_addr64(pe_mm->BaseOfImage) &&
161                 get_addr64(mm->BaseOfImage) + mm->SizeOfImage >= get_addr64(pe_mm->BaseOfImage) + pe_mm->SizeOfImage)
162                 return TRUE;
163         }
164     }
165     return FALSE;
166 }
167
168 static enum dbg_start minidump_do_reload(struct tgt_process_minidump_data* data)
169 {
170     void*                       stream;
171     DWORD                       pid = 1; /* by default */
172     HANDLE                      hProc = (HANDLE)0x900DBAAD;
173     int                         i;
174     MINIDUMP_MODULE_LIST*       mml;
175     MINIDUMP_MODULE*            mm;
176     MINIDUMP_STRING*            mds;
177     MINIDUMP_DIRECTORY*         dir;
178     WCHAR                       exec_name[1024];
179     WCHAR                       nameW[1024];
180     unsigned                    len;
181     static WCHAR                default_exec_name[] = {'<','m','i','n','i','d','u','m','p','-','e','x','e','c','>',0};
182
183     /* fetch PID */
184     if (MiniDumpReadDumpStream(data->mapping, MiscInfoStream, NULL, &stream, NULL))
185     {
186         MINIDUMP_MISC_INFO* mmi = stream;
187         if (mmi->Flags1 & MINIDUMP_MISC1_PROCESS_ID)
188             pid = mmi->ProcessId;
189     }
190
191     /* fetch executable name (it's normally the first one in module list) */
192     lstrcpyW(exec_name, default_exec_name);
193     if (MiniDumpReadDumpStream(data->mapping, ModuleListStream, NULL, &stream, NULL))
194     {
195         mml = stream;
196         if (mml->NumberOfModules)
197         {
198             WCHAR*      ptr;
199
200             mm = &mml->Modules[0];
201             mds = (MINIDUMP_STRING*)((char*)data->mapping + mm->ModuleNameRva);
202             len = mds->Length / 2;
203             memcpy(exec_name, mds->Buffer, mds->Length);
204             exec_name[len] = 0;
205             for (ptr = exec_name + len - 1; ptr >= exec_name; ptr--)
206             {
207                 if (*ptr == '/' || *ptr == '\\')
208                 {
209                     memmove(exec_name, ptr + 1, (lstrlenW(ptr + 1) + 1) * sizeof(WCHAR));
210                     break;
211                 }
212             }
213         }
214     }
215
216     if (MiniDumpReadDumpStream(data->mapping, SystemInfoStream, &dir, &stream, NULL))
217     {
218         MINIDUMP_SYSTEM_INFO*   msi = stream;
219         const char *str;
220         char tmp[128];
221
222         dbg_printf("WineDbg starting on minidump on pid %04x\n", pid);
223         switch (msi->ProcessorArchitecture)
224         {
225         case PROCESSOR_ARCHITECTURE_UNKNOWN:
226             str = "Unknown";
227             break;
228         case PROCESSOR_ARCHITECTURE_INTEL:
229             strcpy(tmp, "Intel ");
230             switch (msi->ProcessorLevel)
231             {
232             case  3: str = "80386"; break;
233             case  4: str = "80486"; break;
234             case  5: str = "Pentium"; break;
235             case  6: str = "Pentium Pro/II or AMD Athlon"; break;
236             case 15: str = "Pentium 4 or AMD Athlon64"; break;
237             default: str = "???"; break;
238             }
239             strcat(tmp, str);
240             if (msi->ProcessorLevel == 3 || msi->ProcessorLevel == 4)
241             {
242                 if (HIBYTE(msi->ProcessorRevision) == 0xFF)
243                     sprintf(tmp + strlen(tmp), " (%c%d)",
244                             'A' + ((msi->ProcessorRevision>>4)&0xf)-0x0a,
245                             ((msi->ProcessorRevision&0xf)));
246                 else
247                     sprintf(tmp + strlen(tmp), " (%c%d)",
248                             'A' + HIBYTE(msi->ProcessorRevision),
249                             LOBYTE(msi->ProcessorRevision));
250             }
251             else sprintf(tmp + strlen(tmp), " (%d.%d)",
252                          HIBYTE(msi->ProcessorRevision),
253                          LOBYTE(msi->ProcessorRevision));
254             str = tmp;
255             break;
256         case PROCESSOR_ARCHITECTURE_MIPS:
257             str = "Mips";
258             break;
259         case PROCESSOR_ARCHITECTURE_ALPHA:
260             str = "Alpha";
261             break;
262         case PROCESSOR_ARCHITECTURE_PPC:
263             str = "PowerPC";
264             break;
265         case PROCESSOR_ARCHITECTURE_AMD64:
266             str = "X86_64";
267             break;
268         case PROCESSOR_ARCHITECTURE_ARM:
269             str = "ARM";
270             break;
271         default:
272             str = "???";
273             break;
274         }
275         dbg_printf("  %s was running on #%d %s CPU%s",
276                    dbg_W2A(exec_name, -1), msi->u.s.NumberOfProcessors, str,
277                    msi->u.s.NumberOfProcessors < 2 ? "" : "s");
278         switch (msi->MajorVersion)
279         {
280         case 3:
281             switch (msi->MinorVersion)
282             {
283             case 51: str = "NT 3.51"; break;
284             default: str = "3-????"; break;
285             }
286             break;
287         case 4:
288             switch (msi->MinorVersion)
289             {
290             case 0: str = (msi->PlatformId == VER_PLATFORM_WIN32_NT) ? "NT 4.0" : "95"; break;
291             case 10: str = "98"; break;
292             case 90: str = "ME"; break;
293             default: str = "5-????"; break;
294             }
295             break;
296         case 5:
297             switch (msi->MinorVersion)
298             {
299             case 0: str = "2000"; break;
300             case 1: str = "XP"; break;
301             case 2: str = "Server 2003"; break;
302             default: str = "5-????"; break;
303             }
304             break;
305         default: str = "???"; break;
306         }
307         dbg_printf(" on Windows %s (%u)\n", str, msi->BuildNumber);
308         /* FIXME CSD: msi->CSDVersionRva */
309
310         if (sizeof(MINIDUMP_SYSTEM_INFO) + 4 > dir->Location.DataSize &&
311             msi->CSDVersionRva >= dir->Location.Rva + sizeof(MINIDUMP_SYSTEM_INFO) + 4)
312         {
313             const char*     code = (const char*)stream + sizeof(MINIDUMP_SYSTEM_INFO);
314             const DWORD*    wes;
315
316             if (code[0] == 'W' && code[1] == 'I' && code[2] == 'N' && code[3] == 'E' &&
317                 *(wes = (const DWORD*)(code += 4)) >= 3)
318             {
319                 /* assume we have wine extensions */
320                 dbg_printf("    [on %s, on top of %s (%s)]\n",
321                            code + wes[1], code + wes[2], code + wes[3]);
322             }
323         }
324     }
325
326     dbg_curr_process = dbg_add_process(&be_process_minidump_io, pid, hProc);
327     dbg_curr_pid = pid;
328     dbg_curr_process->pio_data = data;
329     dbg_set_process_name(dbg_curr_process, exec_name);
330
331     dbg_init(hProc, NULL, FALSE);
332
333     if (MiniDumpReadDumpStream(data->mapping, ThreadListStream, NULL, &stream, NULL))
334     {
335         MINIDUMP_THREAD_LIST*   mtl = stream;
336         ULONG                   i;
337
338         for (i = 0; i < mtl->NumberOfThreads; i++)
339         {
340             dbg_add_thread(dbg_curr_process, mtl->Threads[i].ThreadId, NULL,
341                            (void*)(DWORD_PTR)get_addr64(mtl->Threads[i].Teb));
342         }
343     }
344     /* first load ELF modules, then do the PE ones */
345     if (MiniDumpReadDumpStream(data->mapping, Wine_ElfModuleListStream, NULL,
346                                &stream, NULL))
347     {
348         WCHAR   buffer[MAX_PATH];
349
350         mml = stream;
351         for (i = 0, mm = &mml->Modules[0]; i < mml->NumberOfModules; i++, mm++)
352         {
353             mds = (MINIDUMP_STRING*)((char*)data->mapping + mm->ModuleNameRva);
354             memcpy(nameW, mds->Buffer, mds->Length);
355             nameW[mds->Length / sizeof(WCHAR)] = 0;
356             if (SymFindFileInPathW(hProc, NULL, nameW, (void*)(DWORD_PTR)mm->CheckSum,
357                                    0, 0, SSRVOPT_DWORD, buffer, validate_file, NULL))
358                 dbg_load_module(hProc, NULL, buffer, get_addr64(mm->BaseOfImage),
359                                  mm->SizeOfImage);
360             else
361                 SymLoadModuleExW(hProc, NULL, nameW, NULL, get_addr64(mm->BaseOfImage),
362                                  mm->SizeOfImage, NULL, SLMFLAG_VIRTUAL);
363         }
364     }
365     if (MiniDumpReadDumpStream(data->mapping, ModuleListStream, NULL, &stream, NULL))
366     {
367         WCHAR   buffer[MAX_PATH];
368
369         mml = stream;
370         for (i = 0, mm = &mml->Modules[0]; i < mml->NumberOfModules; i++, mm++)
371         {
372             mds = (MINIDUMP_STRING*)((char*)data->mapping + mm->ModuleNameRva);
373             memcpy(nameW, mds->Buffer, mds->Length);
374             nameW[mds->Length / sizeof(WCHAR)] = 0;
375             if (SymFindFileInPathW(hProc, NULL, nameW, (void*)(DWORD_PTR)mm->TimeDateStamp,
376                                    mm->SizeOfImage, 0, SSRVOPT_DWORD, buffer, validate_file, NULL))
377                 dbg_load_module(hProc, NULL, buffer, get_addr64(mm->BaseOfImage),
378                                  mm->SizeOfImage);
379             else if (is_pe_module_embedded(data, mm))
380                 dbg_load_module(hProc, NULL, nameW, get_addr64(mm->BaseOfImage),
381                                  mm->SizeOfImage);
382             else
383                 SymLoadModuleExW(hProc, NULL, nameW, NULL, get_addr64(mm->BaseOfImage),
384                                  mm->SizeOfImage, NULL, SLMFLAG_VIRTUAL);
385         }
386     }
387     if (MiniDumpReadDumpStream(data->mapping, ExceptionStream, NULL, &stream, NULL))
388     {
389         MINIDUMP_EXCEPTION_STREAM*      mes = stream;
390
391         if ((dbg_curr_thread = dbg_get_thread(dbg_curr_process, mes->ThreadId)))
392         {
393             ADDRESS64   addr;
394
395             dbg_curr_tid = mes->ThreadId;
396             dbg_curr_thread->in_exception = TRUE;
397             dbg_curr_thread->excpt_record.ExceptionCode = mes->ExceptionRecord.ExceptionCode;
398             dbg_curr_thread->excpt_record.ExceptionFlags = mes->ExceptionRecord.ExceptionFlags;
399             dbg_curr_thread->excpt_record.ExceptionRecord = (void*)(DWORD_PTR)get_addr64(mes->ExceptionRecord.ExceptionRecord);
400             dbg_curr_thread->excpt_record.ExceptionAddress = (void*)(DWORD_PTR)get_addr64(mes->ExceptionRecord.ExceptionAddress);
401             dbg_curr_thread->excpt_record.NumberParameters = mes->ExceptionRecord.NumberParameters;
402             for (i = 0; i < dbg_curr_thread->excpt_record.NumberParameters; i++)
403             {
404                 dbg_curr_thread->excpt_record.ExceptionInformation[i] = mes->ExceptionRecord.ExceptionInformation[i];
405             }
406             memcpy(&dbg_context, (char*)data->mapping + mes->ThreadContext.Rva,
407                    min(sizeof(dbg_context), mes->ThreadContext.DataSize));
408             memory_get_current_pc(&addr);
409             stack_fetch_frames(&dbg_context);
410             be_cpu->print_context(dbg_curr_thread->handle, &dbg_context, 0);
411             stack_info(-1);
412             be_cpu->print_segment_info(dbg_curr_thread->handle, &dbg_context);
413             stack_backtrace(mes->ThreadId);
414             source_list_from_addr(&addr, 0);
415         }
416     }
417     return start_ok;
418 }
419
420 static void cleanup(struct tgt_process_minidump_data* data)
421 {
422     if (data->mapping)                          UnmapViewOfFile(data->mapping);
423     if (data->hMap)                             CloseHandle(data->hMap);
424     if (data->hFile != INVALID_HANDLE_VALUE)    CloseHandle(data->hFile);
425     HeapFree(GetProcessHeap(), 0, data);
426 }
427
428 static struct be_process_io be_process_minidump_io;
429
430 enum dbg_start minidump_reload(int argc, char* argv[])
431 {
432     struct tgt_process_minidump_data*   data;
433     enum dbg_start                      ret = start_error_parse;
434
435     /* try the form <myself> minidump-file */
436     if (argc != 1) return start_error_parse;
437     
438     WINE_TRACE("Processing Minidump file %s\n", argv[0]);
439
440     data = HeapAlloc(GetProcessHeap(), 0, sizeof(struct tgt_process_minidump_data));
441     if (!data) return start_error_init;
442     data->mapping = NULL;
443     data->hMap    = NULL;
444     data->hFile   = INVALID_HANDLE_VALUE;
445
446     if ((data->hFile = CreateFileA(argv[0], GENERIC_READ, FILE_SHARE_READ, NULL, 
447                                    OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL)) != INVALID_HANDLE_VALUE &&
448         ((data->hMap = CreateFileMappingA(data->hFile, NULL, PAGE_READONLY, 0, 0, NULL)) != 0) &&
449         ((data->mapping = MapViewOfFile(data->hMap, FILE_MAP_READ, 0, 0, 0)) != NULL))
450     {
451         __TRY
452         {
453             if (((MINIDUMP_HEADER*)data->mapping)->Signature == MINIDUMP_SIGNATURE)
454             {
455                 ret = minidump_do_reload(data);
456             }
457         }
458         __EXCEPT_PAGE_FAULT
459         {
460             dbg_printf("Unexpected fault while reading minidump %s\n", argv[0]);
461             dbg_curr_pid = 0;
462         }
463         __ENDTRY;
464     }
465     if (ret != start_ok) cleanup(data);
466     return ret;
467 }
468
469 static BOOL tgt_process_minidump_close_process(struct dbg_process* pcs, BOOL kill)
470 {
471     struct tgt_process_minidump_data*    data = private_data(pcs);
472
473     cleanup(data);
474     pcs->pio_data = NULL;
475     SymCleanup(pcs->handle);
476     dbg_del_process(pcs);
477     return TRUE;
478 }
479
480 static BOOL tgt_process_minidump_get_selector(HANDLE hThread, DWORD sel, LDT_ENTRY* le)
481 {
482     /* so far, pretend all selectors are valid, and mapped to a 32bit flat address space */
483     memset(le, 0, sizeof(*le));
484     le->HighWord.Bits.Default_Big = 1;
485     return TRUE;
486 }
487
488 static struct be_process_io be_process_minidump_io =
489 {
490     tgt_process_minidump_close_process,
491     tgt_process_minidump_read,
492     tgt_process_minidump_write,
493     tgt_process_minidump_get_selector,
494 };