push cc8bc80451cc24f4d7cf75168b569f0ebfe19547
[wine/hacks.git] / programs / taskmgr / dbgchnl.c
blob382675fe6e8a3784b49083b2111f2be60c162c3c
1 /*
2 * ReactOS Task Manager
4 * dbgchnl.c
6 * Copyright (C) 2003 - 2004 Eric Pouech
7 * Copyright (C) 2008 Vladimir Pankratov
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */
25 #include <windows.h>
26 #include <ctype.h>
27 #include <commctrl.h>
28 #include <stdlib.h>
29 #include <memory.h>
30 #include <stdio.h>
31 #include <winnt.h>
32 #include <dbghelp.h>
34 #include "taskmgr.h"
35 #include "perfdata.h"
36 #include "column.h"
37 #include "wine/debug.h"
39 /* TODO:
40 * - the dialog box could be non modal
41 * - in that case,
42 * + could refresh channels from time to time
43 * + set the name of exec (and perhaps its pid) in dialog title
44 * - get a better UI (replace the 'x' by real tick boxes in list view)
45 * - enhance visual feedback: the list is large, and it's hard to get the
46 * right line when clicking on rightmost column (trace for example)
47 * - get rid of printfs (error reporting) and use real message boxes
48 * - include the column width settings in the full column management scheme
49 * - use more global settings (like having a temporary on/off
50 * setting for a fixme:s or err:s
53 static DWORD (WINAPI *pSymSetOptions)(DWORD);
54 static BOOL (WINAPI *pSymInitialize)(HANDLE, PSTR, BOOL);
55 static DWORD (WINAPI *pSymLoadModule)(HANDLE, HANDLE, PCSTR, PCSTR, DWORD, DWORD);
56 static BOOL (WINAPI *pSymCleanup)(HANDLE);
57 static BOOL (WINAPI *pSymFromName)(HANDLE, PCSTR, PSYMBOL_INFO);
59 BOOL AreDebugChannelsSupported(void)
61 static HANDLE hDbgHelp /* = NULL */;
63 static const WCHAR wszDbgHelp[] = {'D','B','G','H','E','L','P','.','D','L','L',0};
65 if (hDbgHelp) return TRUE;
67 if (!(hDbgHelp = LoadLibraryW(wszDbgHelp))) return FALSE;
68 pSymSetOptions = (void*)GetProcAddress(hDbgHelp, "SymSetOptions");
69 pSymInitialize = (void*)GetProcAddress(hDbgHelp, "SymInitialize");
70 pSymLoadModule = (void*)GetProcAddress(hDbgHelp, "SymLoadModule");
71 pSymFromName = (void*)GetProcAddress(hDbgHelp, "SymFromName");
72 pSymCleanup = (void*)GetProcAddress(hDbgHelp, "SymCleanup");
73 if (!pSymSetOptions || !pSymInitialize || !pSymLoadModule || !pSymCleanup || !pSymFromName)
75 FreeLibrary(hDbgHelp);
76 hDbgHelp = NULL;
77 return FALSE;
79 return TRUE;
82 static DWORD get_selected_pid(void)
84 LVITEM lvitem;
85 ULONG Index;
86 DWORD dwProcessId;
88 for (Index = 0; Index < (ULONG)ListView_GetItemCount(hProcessPageListCtrl); Index++)
90 lvitem.mask = LVIF_STATE;
91 lvitem.stateMask = LVIS_SELECTED;
92 lvitem.iItem = Index;
93 lvitem.iSubItem = 0;
95 SendMessage(hProcessPageListCtrl, LVM_GETITEM, 0, (LPARAM) &lvitem);
97 if (lvitem.state & LVIS_SELECTED)
98 break;
101 dwProcessId = PerfDataGetProcessId(Index);
103 if ((ListView_GetSelectedCount(hProcessPageListCtrl) != 1) || (dwProcessId == 0))
104 return 0;
105 return dwProcessId;
108 static int list_channel_CB(HANDLE hProcess, void* addr, struct __wine_debug_channel* channel, void* user)
110 int j;
111 char val[2];
112 LVITEMA lvitem;
113 int index;
114 HWND hChannelLV = user;
116 lvitem.mask = LVIF_TEXT;
117 lvitem.pszText = channel->name;
118 lvitem.iItem = 0;
119 lvitem.iSubItem = 0;
121 index = ListView_InsertItem(hChannelLV, &lvitem);
122 if (index == -1) return 0;
124 val[1] = '\0';
125 for (j = 0; j < 4; j++)
127 val[0] = (channel->flags & (1 << j)) ? 'x' : ' ';
128 ListView_SetItemText(hChannelLV, index, j + 1, val);
130 return 1;
133 struct cce_user
135 const char* name; /* channel to look for */
136 unsigned value, mask; /* how to change channel */
137 unsigned done; /* number of successful changes */
138 unsigned notdone; /* number of unsuccessful changes */
141 /******************************************************************
142 * change_channel_CB
144 * Callback used for changing a given channel attributes
146 static int change_channel_CB(HANDLE hProcess, void* addr, struct __wine_debug_channel *channel, void* pmt)
148 struct cce_user* user = (struct cce_user*)pmt;
150 if (!user->name || !strcmp(channel->name, user->name))
152 channel->flags = (channel->flags & ~user->mask) | (user->value & user->mask);
153 if (WriteProcessMemory(hProcess, addr, channel, sizeof(*channel), NULL))
154 user->done++;
155 else
156 user->notdone++;
158 return 1;
161 static void* get_symbol(HANDLE hProcess, const char* name)
163 char buffer[sizeof(IMAGEHLP_SYMBOL) + 256];
164 SYMBOL_INFO* si = (SYMBOL_INFO*)buffer;
165 void* ret = NULL;
167 /* also ask for wine extensions (loading symbols from ELF files) */
168 pSymSetOptions(SYMOPT_DEFERRED_LOADS | SYMOPT_PUBLICS_ONLY | 0x40000000);
169 /* FIXME: the TRUE option is due to the fact that dbghelp requires it
170 * when loading an ELF module
172 if (pSymInitialize(hProcess, NULL, TRUE))
174 si->SizeOfStruct = sizeof(*si);
175 si->MaxNameLen = sizeof(buffer) - sizeof(IMAGEHLP_SYMBOL);
176 if (pSymFromName(hProcess, name, si))
177 ret = (void*)(ULONG_PTR)si->Address;
178 pSymCleanup(hProcess);
180 return ret;
183 typedef int (*EnumChannelCB)(HANDLE, void*, struct __wine_debug_channel*, void*);
185 /******************************************************************
186 * enum_channel
188 * Enumerates all known channels on process hProcess through callback
189 * ce.
191 static int enum_channel(HANDLE hProcess, EnumChannelCB ce, void* user)
193 struct __wine_debug_channel channel;
194 int ret = 1;
195 void* addr;
197 if (!(addr = get_symbol(hProcess, "libwine.so.1!debug_options"))) return -1;
199 while (ret && addr && ReadProcessMemory(hProcess, addr, &channel, sizeof(channel), NULL))
201 if (!channel.name[0]) break;
202 ret = ce(hProcess, addr, &channel, user);
203 addr = (struct __wine_debug_channel *)addr + 1;
205 return 0;
208 static void DebugChannels_FillList(HWND hChannelLV)
210 HANDLE hProcess;
212 SendMessage(hChannelLV, LVM_DELETEALLITEMS, 0, 0);
214 hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_OPERATION | PROCESS_VM_READ, FALSE, get_selected_pid());
215 if (!hProcess) return; /* FIXME messagebox */
216 SendMessage(hChannelLV, WM_SETREDRAW, FALSE, 0);
217 enum_channel(hProcess, list_channel_CB, (void*)hChannelLV);
218 SendMessage(hChannelLV, WM_SETREDRAW, TRUE, 0);
219 CloseHandle(hProcess);
222 static void DebugChannels_OnCreate(HWND hwndDlg)
224 HWND hLV = GetDlgItem(hwndDlg, IDC_DEBUG_CHANNELS_LIST);
225 LVCOLUMNW lvc;
227 static WCHAR debug_channelW[] = {'D','e','b','u','g',' ','C','h','a','n','n','e','l',0},
228 fixmeW[] = {'F','i','x','m','e',0},
229 errW[] = {'E','r','r',0},
230 warnW[] = {'W','a','r','n',0},
231 traceW[] = {'T','r','a','c','e',0};
233 lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
234 lvc.fmt = LVCFMT_LEFT;
235 lvc.pszText = debug_channelW;
236 lvc.cx = 100;
237 SendMessageW(hLV, LVM_INSERTCOLUMNW, 0, (LPARAM) &lvc);
239 lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
240 lvc.fmt = LVCFMT_CENTER;
241 lvc.pszText = fixmeW;
242 lvc.cx = 55;
243 SendMessageW(hLV, LVM_INSERTCOLUMNW, 1, (LPARAM) &lvc);
245 lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
246 lvc.fmt = LVCFMT_CENTER;
247 lvc.pszText = errW;
248 lvc.cx = 55;
249 SendMessageW(hLV, LVM_INSERTCOLUMNW, 2, (LPARAM) &lvc);
251 lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
252 lvc.fmt = LVCFMT_CENTER;
253 lvc.pszText = warnW;
254 lvc.cx = 55;
255 SendMessageW(hLV, LVM_INSERTCOLUMNW, 3, (LPARAM) &lvc);
257 lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
258 lvc.fmt = LVCFMT_CENTER;
259 lvc.pszText = traceW;
260 lvc.cx = 55;
261 SendMessageW(hLV, LVM_INSERTCOLUMNW, 4, (LPARAM) &lvc);
263 DebugChannels_FillList(hLV);
266 static void DebugChannels_OnNotify(HWND hDlg, LPARAM lParam)
268 NMHDR* nmh = (NMHDR*)lParam;
270 switch (nmh->code)
272 case NM_CLICK:
273 if (nmh->idFrom == IDC_DEBUG_CHANNELS_LIST)
275 LVHITTESTINFO lhti;
276 HWND hChannelLV;
277 HANDLE hProcess;
278 NMITEMACTIVATE* nmia = (NMITEMACTIVATE*)lParam;
280 hProcess = OpenProcess(PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE, FALSE, get_selected_pid());
281 if (!hProcess) return; /* FIXME message box */
282 lhti.pt = nmia->ptAction;
283 hChannelLV = GetDlgItem(hDlg, IDC_DEBUG_CHANNELS_LIST);
284 SendMessage(hChannelLV, LVM_SUBITEMHITTEST, 0, (LPARAM)&lhti);
285 if (nmia->iSubItem >= 1 && nmia->iSubItem <= 4)
287 TCHAR val[2];
288 TCHAR name[32];
289 unsigned bitmask = 1 << (lhti.iSubItem - 1);
290 struct cce_user user;
292 ListView_GetItemText(hChannelLV, lhti.iItem, 0, name, sizeof(name) / sizeof(name[0]));
293 ListView_GetItemText(hChannelLV, lhti.iItem, lhti.iSubItem, val, sizeof(val) / sizeof(val[0]));
294 user.name = name;
295 user.value = (val[0] == 'x') ? 0 : bitmask;
296 user.mask = bitmask;
297 user.done = user.notdone = 0;
298 enum_channel(hProcess, change_channel_CB, &user);
299 if (user.done)
301 val[0] ^= ('x' ^ ' ');
302 ListView_SetItemText(hChannelLV, lhti.iItem, lhti.iSubItem, val);
304 if (user.notdone)
305 printf("Some channel instances weren't correctly set\n");
307 CloseHandle(hProcess);
309 break;
313 static INT_PTR CALLBACK DebugChannelsDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
315 switch (message)
317 case WM_INITDIALOG:
318 DebugChannels_OnCreate(hDlg);
319 return TRUE;
320 case WM_COMMAND:
321 if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
323 EndDialog(hDlg, LOWORD(wParam));
324 return TRUE;
326 break;
327 case WM_NOTIFY:
328 DebugChannels_OnNotify(hDlg, lParam);
329 break;
331 return FALSE;
334 void ProcessPage_OnDebugChannels(void)
336 DialogBoxW(hInst, (LPCWSTR)IDD_DEBUG_CHANNELS_DIALOG, hMainWnd, DebugChannelsDlgProc);