123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- /*
- * ReactOS Task Manager
- *
- * dbgchnl.c
- *
- * Copyright (C) 2003 - 2004 Eric Pouech
- * Copyright (C) 2008 Vladimir Pankratov
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
- #include <ctype.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <windows.h>
- #include <commctrl.h>
- #include <winnt.h>
- #include "taskmgr.h"
- #include "perfdata.h"
- #include "column.h"
- #include "wine/debug.h"
- /* TODO:
- * - the dialog box could be non modal
- * - in that case,
- * + could refresh channels from time to time
- * + set the name of exec (and perhaps its pid) in dialog title
- * - get a better UI (replace the 'x' by real tick boxes in list view)
- * - enhance visual feedback: the list is large, and it's hard to get the
- * right line when clicking on rightmost column (trace for example)
- * - get rid of printfs (error reporting) and use real message boxes
- * - include the column width settings in the full column management scheme
- * - use more global settings (like having a temporary on/off
- * setting for a fixme:s or err:s
- */
- static DWORD get_selected_pid(void)
- {
- LVITEMW lvitem;
- ULONG Index, Count;
- DWORD dwProcessId;
- Count = SendMessageW(hProcessPageListCtrl, LVM_GETITEMCOUNT, 0, 0);
- for (Index = 0; Index < Count; Index++)
- {
- lvitem.mask = LVIF_STATE;
- lvitem.stateMask = LVIS_SELECTED;
- lvitem.iItem = Index;
- lvitem.iSubItem = 0;
- SendMessageW(hProcessPageListCtrl, LVM_GETITEMW, 0, (LPARAM) &lvitem);
- if (lvitem.state & LVIS_SELECTED)
- break;
- }
- Count = SendMessageW(hProcessPageListCtrl, LVM_GETSELECTEDCOUNT, 0, 0);
- dwProcessId = PerfDataGetProcessId(Index);
- if ((Count != 1) || (dwProcessId == 0))
- return 0;
- return dwProcessId;
- }
- static int list_channel_CB(HANDLE hProcess, void* addr, struct __wine_debug_channel* channel, void* user)
- {
- int j;
- WCHAR nameW[sizeof(channel->name)], val[2];
- LVITEMW lvitem;
- int index;
- HWND hChannelLV = user;
- MultiByteToWideChar(CP_ACP, 0, channel->name, sizeof(channel->name), nameW, ARRAY_SIZE(nameW));
- lvitem.mask = LVIF_TEXT;
- lvitem.pszText = nameW;
- lvitem.iItem = 0;
- lvitem.iSubItem = 0;
- index = ListView_InsertItemW(hChannelLV, &lvitem);
- if (index == -1) return 0;
- val[1] = '\0';
- for (j = 0; j < 4; j++)
- {
- val[0] = (channel->flags & (1 << j)) ? 'x' : ' ';
- ListView_SetItemTextW(hChannelLV, index, j + 1, val);
- }
- return 1;
- }
- struct cce_user
- {
- const char* name; /* channel to look for */
- unsigned value, mask; /* how to change channel */
- unsigned done; /* number of successful changes */
- unsigned notdone; /* number of unsuccessful changes */
- };
- /******************************************************************
- * change_channel_CB
- *
- * Callback used for changing a given channel attributes
- */
- static int change_channel_CB(HANDLE hProcess, void* addr, struct __wine_debug_channel *channel, void* pmt)
- {
- struct cce_user* user = (struct cce_user*)pmt;
- if (!user->name || !strcmp(channel->name, user->name))
- {
- channel->flags = (channel->flags & ~user->mask) | (user->value & user->mask);
- if (WriteProcessMemory(hProcess, addr, channel, sizeof(*channel), NULL))
- user->done++;
- else
- user->notdone++;
- }
- return 1;
- }
- typedef int (*EnumChannelCB)(HANDLE, void*, struct __wine_debug_channel*, void*);
- /******************************************************************
- * enum_channel
- *
- * Enumerates all known channels on process hProcess through callback
- * ce.
- */
- static int enum_channel(HANDLE hProcess, EnumChannelCB ce, void* user)
- {
- struct __wine_debug_channel channel;
- PROCESS_BASIC_INFORMATION info;
- int ret = 1;
- void* addr;
- NtQueryInformationProcess( hProcess, ProcessBasicInformation, &info, sizeof(info), NULL );
- #ifdef _WIN64
- addr = (char *)info.PebBaseAddress + 0x2000;
- #else
- addr = (char *)info.PebBaseAddress + 0x1000;
- #endif
- while (ret && addr && ReadProcessMemory(hProcess, addr, &channel, sizeof(channel), NULL))
- {
- if (!channel.name[0]) break;
- ret = ce(hProcess, addr, &channel, user);
- addr = (struct __wine_debug_channel *)addr + 1;
- }
- return 0;
- }
- static void DebugChannels_FillList(HWND hChannelLV)
- {
- HANDLE hProcess;
- SendMessageW(hChannelLV, LVM_DELETEALLITEMS, 0, 0);
- hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_OPERATION | PROCESS_VM_READ, FALSE, get_selected_pid());
- if (!hProcess) return; /* FIXME messagebox */
- SendMessageW(hChannelLV, WM_SETREDRAW, FALSE, 0);
- enum_channel(hProcess, list_channel_CB, (void*)hChannelLV);
- SendMessageW(hChannelLV, WM_SETREDRAW, TRUE, 0);
- CloseHandle(hProcess);
- }
- static void DebugChannels_OnCreate(HWND hwndDlg)
- {
- static WCHAR fixmeW[] = {'F','i','x','m','e','\0'};
- static WCHAR errW[] = {'E','r','r','\0'};
- static WCHAR warnW[] = {'W','a','r','n','\0'};
- static WCHAR traceW[] = {'T','r','a','c','e','\0'};
- HWND hLV = GetDlgItem(hwndDlg, IDC_DEBUG_CHANNELS_LIST);
- LVCOLUMNW lvc;
- WCHAR debug_channelW[255];
- LoadStringW(hInst, IDS_DEBUG_CHANNEL, debug_channelW, ARRAY_SIZE(debug_channelW));
- lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
- lvc.fmt = LVCFMT_LEFT;
- lvc.pszText = debug_channelW;
- lvc.cx = 100;
- SendMessageW(hLV, LVM_INSERTCOLUMNW, 0, (LPARAM) &lvc);
- lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
- lvc.fmt = LVCFMT_CENTER;
- lvc.pszText = fixmeW;
- lvc.cx = 55;
- SendMessageW(hLV, LVM_INSERTCOLUMNW, 1, (LPARAM) &lvc);
- lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
- lvc.fmt = LVCFMT_CENTER;
- lvc.pszText = errW;
- lvc.cx = 55;
- SendMessageW(hLV, LVM_INSERTCOLUMNW, 2, (LPARAM) &lvc);
- lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
- lvc.fmt = LVCFMT_CENTER;
- lvc.pszText = warnW;
- lvc.cx = 55;
- SendMessageW(hLV, LVM_INSERTCOLUMNW, 3, (LPARAM) &lvc);
- lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
- lvc.fmt = LVCFMT_CENTER;
- lvc.pszText = traceW;
- lvc.cx = 55;
- SendMessageW(hLV, LVM_INSERTCOLUMNW, 4, (LPARAM) &lvc);
- DebugChannels_FillList(hLV);
- }
- static void DebugChannels_OnNotify(HWND hDlg, LPARAM lParam)
- {
- NMHDR* nmh = (NMHDR*)lParam;
- switch (nmh->code)
- {
- case NM_CLICK:
- if (nmh->idFrom == IDC_DEBUG_CHANNELS_LIST)
- {
- LVHITTESTINFO lhti;
- HWND hChannelLV;
- HANDLE hProcess;
- NMITEMACTIVATE* nmia = (NMITEMACTIVATE*)lParam;
- hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE,
- FALSE, get_selected_pid());
- if (!hProcess) return; /* FIXME message box */
- lhti.pt = nmia->ptAction;
- hChannelLV = GetDlgItem(hDlg, IDC_DEBUG_CHANNELS_LIST);
- SendMessageW(hChannelLV, LVM_SUBITEMHITTEST, 0, (LPARAM)&lhti);
- if (nmia->iSubItem >= 1 && nmia->iSubItem <= 4)
- {
- WCHAR val[2];
- char name[32];
- unsigned bitmask = 1 << (lhti.iSubItem - 1);
- struct cce_user user;
- ListView_GetItemTextA(hChannelLV, lhti.iItem, 0, name, ARRAY_SIZE(name));
- ListView_GetItemTextW(hChannelLV, lhti.iItem, lhti.iSubItem, val, ARRAY_SIZE(val));
- user.name = name;
- user.value = (val[0] == 'x') ? 0 : bitmask;
- user.mask = bitmask;
- user.done = user.notdone = 0;
- enum_channel(hProcess, change_channel_CB, &user);
- if (user.done)
- {
- val[0] ^= ('x' ^ ' ');
- ListView_SetItemTextW(hChannelLV, lhti.iItem, lhti.iSubItem, val);
- }
- if (user.notdone)
- printf("Some channel instances weren't correctly set\n");
- }
- CloseHandle(hProcess);
- }
- break;
- }
- }
- static INT_PTR CALLBACK DebugChannelsDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
- {
- switch (message)
- {
- case WM_INITDIALOG:
- DebugChannels_OnCreate(hDlg);
- return TRUE;
- case WM_COMMAND:
- if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
- {
- EndDialog(hDlg, LOWORD(wParam));
- return TRUE;
- }
- break;
- case WM_NOTIFY:
- DebugChannels_OnNotify(hDlg, lParam);
- break;
- }
- return FALSE;
- }
- void ProcessPage_OnDebugChannels(void)
- {
- DialogBoxW(hInst, (LPCWSTR)IDD_DEBUG_CHANNELS_DIALOG, hMainWnd, DebugChannelsDlgProc);
- }
|