mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
b02427417c
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5614 21ef857c-d57f-4fe0-8362-d861dc6d29cd
1434 lines
51 KiB
C#
1434 lines
51 KiB
C#
/*
|
|
* Process Hacker -
|
|
* process properties window
|
|
*
|
|
* Copyright (C) 2008-2010 wj32
|
|
* Copyright (C) 2009 Dean
|
|
*
|
|
* This file is part of Process Hacker.
|
|
*
|
|
* Process Hacker is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Process Hacker 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Process Hacker. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
using ProcessHacker.Common;
|
|
using ProcessHacker.Common.Ui;
|
|
using ProcessHacker.Components;
|
|
using ProcessHacker.Native;
|
|
using ProcessHacker.Native.Api;
|
|
using ProcessHacker.Native.Objects;
|
|
using ProcessHacker.Native.Security;
|
|
using ProcessHacker.Native.Security.AccessControl;
|
|
using ProcessHacker.Native.Symbols;
|
|
using ProcessHacker.UI;
|
|
using ProcessHacker.UI.Actions;
|
|
|
|
namespace ProcessHacker
|
|
{
|
|
public partial class ProcessWindow : Form
|
|
{
|
|
private bool _isFirstPaint = true;
|
|
|
|
private ProcessItem _processItem;
|
|
private int _pid;
|
|
private ProcessHandle _processHandle;
|
|
private Bitmap _processImage;
|
|
|
|
private ThreadProvider _threadP;
|
|
private ModuleProvider _moduleP;
|
|
private MemoryProvider _memoryP;
|
|
private HandleProvider _handleP;
|
|
|
|
private ProcessStatistics _processStats;
|
|
private TokenProperties _tokenProps;
|
|
private JobProperties _jobProps;
|
|
private ServiceProperties _serviceProps;
|
|
private DotNetCounters _dotNetCounters;
|
|
private bool _dotNetCountersInitialized = false;
|
|
|
|
private ProcessHacker.Common.Threading.ActionSync _selectThreadRun;
|
|
|
|
public ProcessWindow(ProcessItem process)
|
|
{
|
|
this.SetPhParent();
|
|
InitializeComponent();
|
|
this.AddEscapeToClose();
|
|
this.SetTopMost();
|
|
|
|
_processItem = process;
|
|
_pid = process.Pid;
|
|
|
|
if (process.Icon != null)
|
|
this.Icon = process.Icon;
|
|
else
|
|
this.Icon = Program.HackerWindow.Icon;
|
|
|
|
textFileDescription.Text = "";
|
|
textFileCompany.Text = "";
|
|
textFileVersion.Text = "";
|
|
|
|
if (!Program.PWindows.ContainsKey(_pid))
|
|
Program.PWindows.Add(_pid, this);
|
|
|
|
this.FixTabs();
|
|
|
|
_dontCalculate = false;
|
|
|
|
_selectThreadRun = new ProcessHacker.Common.Threading.ActionSync(this.SelectThreadInternal, 2);
|
|
}
|
|
|
|
private void ProcessWindow_Load(object sender, EventArgs e)
|
|
{
|
|
// Load settings.
|
|
this.Size = Settings.Instance.ProcessWindowSize;
|
|
buttonSearch.Text = Settings.Instance.SearchType;
|
|
checkHideHandlesNoName.Checked = Settings.Instance.HideHandlesWithNoName;
|
|
|
|
if (tabControl.TabPages[Settings.Instance.ProcessWindowSelectedTab] != null)
|
|
tabControl.SelectedTab = tabControl.TabPages[Settings.Instance.ProcessWindowSelectedTab];
|
|
|
|
// Load location, cascade if possible.
|
|
Rectangle bounds = Screen.GetWorkingArea(this);
|
|
Point location = Settings.Instance.ProcessWindowLocation;
|
|
|
|
if (Program.PWindows.Count > 1)
|
|
{
|
|
location.X += 20;
|
|
location.Y += 20;
|
|
}
|
|
|
|
Settings.Instance.ProcessWindowLocation = this.Location =
|
|
Utils.FitRectangle(new Rectangle(location, this.Size), this).Location;
|
|
|
|
// Update the Window menu.
|
|
Program.UpdateWindowMenu(windowMenuItem, this);
|
|
|
|
SymbolProviderExtensions.ShowWarning(this, false);
|
|
}
|
|
|
|
public ListView ThreadListView
|
|
{
|
|
get { return listThreads.List; }
|
|
}
|
|
|
|
public ListView ModuleListView
|
|
{
|
|
get { return listModules.List; }
|
|
}
|
|
|
|
public ListView MemoryListView
|
|
{
|
|
get { return listMemory.List; }
|
|
}
|
|
|
|
public ListView HandleListView
|
|
{
|
|
get { return listHandles.List; }
|
|
}
|
|
|
|
public ListView ServiceListView
|
|
{
|
|
get { return _serviceProps.List; }
|
|
}
|
|
|
|
// ==== Performance hacks ====
|
|
protected override void WndProc(ref Message m)
|
|
{
|
|
switch (m.Msg)
|
|
{
|
|
case (int)WindowMessage.Paint:
|
|
{
|
|
if (_isFirstPaint)
|
|
{
|
|
_isFirstPaint = false;
|
|
this.LoadStage1();
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
if (!this.IsDisposed)
|
|
base.WndProc(ref m);
|
|
}
|
|
|
|
private bool _dontCalculate = true;
|
|
|
|
protected override void OnResize(EventArgs e)
|
|
{
|
|
if (_dontCalculate)
|
|
return;
|
|
|
|
base.OnResize(e);
|
|
}
|
|
|
|
private void FixTabs()
|
|
{
|
|
if (_pid <= 0)
|
|
{
|
|
// this "process" is probably Idle, DPCs or Interrupts, so we won't try to load any more information.
|
|
buttonEditDEP.Enabled = false;
|
|
buttonEditProtected.Enabled = false;
|
|
buttonInspectParent.Enabled = false;
|
|
buttonInspectPEB.Enabled = false;
|
|
|
|
if (fileCurrentDirectory.Text != "")
|
|
fileCurrentDirectory.Enabled = false;
|
|
|
|
if (_pid != 4)
|
|
fileImage.Enabled = false;
|
|
|
|
buttonSearch.Enabled = false;
|
|
buttonPermissions.Enabled = false;
|
|
buttonTerminate.Enabled = false;
|
|
|
|
// Remove tab controls not relevant to Idle/DPCs/Interrupts.
|
|
tabControl.TabPages.Remove(tabHandles);
|
|
tabControl.TabPages.Remove(tabMemory);
|
|
tabControl.TabPages.Remove(tabModules);
|
|
tabControl.TabPages.Remove(tabServices);
|
|
if (_pid != 0) // Idle has threads
|
|
tabControl.TabPages.Remove(tabThreads);
|
|
tabControl.TabPages.Remove(tabToken);
|
|
if (tabControl.TabPages.Contains(tabJob))
|
|
tabControl.TabPages.Remove(tabJob);
|
|
tabControl.TabPages.Remove(tabEnvironment);
|
|
tabControl.TabPages.Remove(tabDotNet);
|
|
}
|
|
else
|
|
{
|
|
try
|
|
{
|
|
using (var phandle = new ProcessHandle(_pid, Program.MinProcessQueryRights))
|
|
{
|
|
// Check if the process is in a job.
|
|
if (phandle.GetJobObject(JobObjectAccess.Query) == null)
|
|
tabControl.TabPages.Remove(tabJob);
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
tabControl.TabPages.Remove(tabJob);
|
|
}
|
|
|
|
if (Program.HackerWindow != null)
|
|
{
|
|
if (Program.HackerWindow.ProcessServices.ContainsKey(_pid))
|
|
{
|
|
if (Program.HackerWindow.ProcessServices[_pid].Count == 0)
|
|
tabControl.TabPages.Remove(tabServices);
|
|
}
|
|
else
|
|
{
|
|
tabControl.TabPages.Remove(tabServices);
|
|
}
|
|
}
|
|
|
|
if (!_processItem.IsDotNet)
|
|
tabControl.TabPages.Remove(tabDotNet);
|
|
}
|
|
}
|
|
|
|
private void LoadStage1()
|
|
{
|
|
// May fail.
|
|
if (_pid > 4)
|
|
{
|
|
try
|
|
{
|
|
_processHandle = new ProcessHandle(
|
|
_pid,
|
|
(ProcessAccess)StandardRights.Synchronize |
|
|
Program.MinProcessQueryRights |
|
|
Program.MinProcessReadMemoryRights
|
|
);
|
|
}
|
|
catch (WindowsException)
|
|
{ }
|
|
}
|
|
|
|
// Get the shared waiter to wait on the process.
|
|
if (_processHandle != null)
|
|
{
|
|
Program.SharedWaiter.Add(_processHandle);
|
|
Program.SharedWaiter.ObjectSignaled += SharedWaiter_ObjectSignaled;
|
|
}
|
|
|
|
this.UpdateProcessProperties();
|
|
|
|
// System Idle Process, DPCs, or Interrupts
|
|
if (_pid <= 0)
|
|
{
|
|
this.Text = _processItem.Name;
|
|
textFileDescription.Text = _processItem.Name;
|
|
textFileCompany.Text = "";
|
|
}
|
|
else
|
|
{
|
|
this.Text = _processItem.Name + " (PID " + _pid.ToString() + ")";
|
|
}
|
|
|
|
Application.DoEvents();
|
|
|
|
// add our handler to the process provider
|
|
Program.ProcessProvider.Updated +=
|
|
new ProcessSystemProvider.ProviderUpdateOnce(ProcessProvider_Updated);
|
|
|
|
// Check if window was closed before this began executing, bail out if true.
|
|
if (!this.IsHandleCreated)
|
|
return;
|
|
|
|
this.BeginInvoke(new MethodInvoker(this.LoadStage2));
|
|
}
|
|
|
|
private void LoadStage2()
|
|
{
|
|
this.SuspendLayout();
|
|
|
|
plotterCPUUsage.Data1 = _processItem.CpuKernelHistory;
|
|
plotterCPUUsage.Data2 = _processItem.CpuUserHistory;
|
|
plotterCPUUsage.GetToolTip = i =>
|
|
((plotterCPUUsage.Data1[i] + plotterCPUUsage.Data2[i]) * 100).ToString("N2") +
|
|
"% (K: " + (plotterCPUUsage.Data1[i] * 100).ToString("N2") +
|
|
"%, U: " + (plotterCPUUsage.Data2[i] * 100).ToString("N2") + "%)" + "\n" +
|
|
Program.ProcessProvider.TimeHistory[i].ToString();
|
|
plotterMemory.LongData1 = _processItem.PrivateMemoryHistory;
|
|
plotterMemory.LongData2 = _processItem.WorkingSetHistory;
|
|
plotterMemory.GetToolTip = i =>
|
|
"Pvt. Memory: " + Utils.FormatSize(plotterMemory.LongData1[i]) + "\n" +
|
|
"Working Set: " + Utils.FormatSize(plotterMemory.LongData2[i]) + "\n" +
|
|
Program.ProcessProvider.TimeHistory[i].ToString();
|
|
plotterIO.LongData1 = _processItem.IoReadOtherHistory;
|
|
plotterIO.LongData2 = _processItem.IoWriteHistory;
|
|
plotterIO.GetToolTip = i =>
|
|
"R+O: " + Utils.FormatSize(plotterIO.LongData1[i]) + "\n" +
|
|
"W: " + Utils.FormatSize(plotterIO.LongData2[i]) + "\n" +
|
|
Program.ProcessProvider.TimeHistory[i].ToString();
|
|
|
|
// Set the indicator colors.
|
|
indicatorCpu.Color1 = Settings.Instance.PlotterCPUKernelColor;
|
|
indicatorCpu.Color2 = Settings.Instance.PlotterCPUUserColor;
|
|
indicatorPvt.Color1 = Settings.Instance.PlotterMemoryPrivateColor;
|
|
indicatorIO.Color1 = Settings.Instance.PlotterIOROColor;
|
|
|
|
this.ApplyFont(Settings.Instance.Font);
|
|
|
|
this.InitializeSubControls();
|
|
|
|
try
|
|
{
|
|
this.InitializeProviders();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logging.Log(ex);
|
|
}
|
|
|
|
this.UpdateEnvironmentVariables();
|
|
|
|
// disable providers which aren't in use
|
|
tabControl_SelectedIndexChanged(null, null);
|
|
|
|
this.ResumeLayout();
|
|
|
|
_selectThreadRun.Increment();
|
|
|
|
// Auto-size the .NET counter columns
|
|
if (_dotNetCounters != null)
|
|
_dotNetCounters.InitialColumnAutoSize();
|
|
}
|
|
|
|
private void ProcessWindow_FormClosing(object sender, FormClosingEventArgs e)
|
|
{
|
|
if (this.WindowState == FormWindowState.Normal)
|
|
{
|
|
Settings.Instance.ProcessWindowSize = this.Size;
|
|
|
|
Point p = Settings.Instance.ProcessWindowLocation;
|
|
|
|
if (
|
|
(this.Location.X < p.X && this.Location.Y < p.Y &&
|
|
Program.PWindows.Count > 1) ||
|
|
Program.PWindows.Count <= 1)
|
|
Settings.Instance.ProcessWindowLocation = this.Location;
|
|
}
|
|
|
|
this.Visible = false;
|
|
|
|
if (_pid >= 0)
|
|
{
|
|
listThreads.SaveSettings();
|
|
listModules.SaveSettings();
|
|
listMemory.SaveSettings();
|
|
listHandles.SaveSettings();
|
|
}
|
|
|
|
if (_tokenProps != null)
|
|
{
|
|
_tokenProps.SaveSettings();
|
|
(_tokenProps.Object as ProcessHandle).Dispose();
|
|
}
|
|
|
|
if (_jobProps != null)
|
|
{
|
|
_jobProps.SaveSettings();
|
|
_jobProps.JobObject.Dispose();
|
|
}
|
|
|
|
if (_serviceProps != null)
|
|
{
|
|
_serviceProps.SaveSettings();
|
|
}
|
|
|
|
if (_processStats != null)
|
|
_processStats.Dispose();
|
|
|
|
// Remove the process handle from the shared waiter.
|
|
if (_processHandle != null)
|
|
{
|
|
Program.SharedWaiter.Remove(_processHandle);
|
|
Program.SharedWaiter.ObjectSignaled -= SharedWaiter_ObjectSignaled;
|
|
}
|
|
|
|
if (_processImage != null)
|
|
{
|
|
pictureIcon.Image = null;
|
|
_processImage.Dispose();
|
|
}
|
|
|
|
Program.ProcessProvider.Updated -=
|
|
new ProcessSystemProvider.ProviderUpdateOnce(ProcessProvider_Updated);
|
|
|
|
Settings.Instance.EnvironmentListViewColumns = ColumnSettings.SaveSettings(listEnvironment);
|
|
Settings.Instance.ProcessWindowSelectedTab = tabControl.SelectedTab.Name;
|
|
Settings.Instance.SearchType = buttonSearch.Text;
|
|
}
|
|
|
|
private void ProcessWindow_SizeChanged(object sender, EventArgs e)
|
|
{
|
|
this.Invalidate(true);
|
|
}
|
|
|
|
public void ApplyFont(Font f)
|
|
{
|
|
listThreads.List.Font = f;
|
|
listModules.List.Font = f;
|
|
listMemory.List.Font = f;
|
|
listHandles.List.Font = f;
|
|
listEnvironment.Font = f;
|
|
|
|
if (_serviceProps != null)
|
|
_serviceProps.List.Font = f;
|
|
}
|
|
|
|
private void UpdateProcessProperties()
|
|
{
|
|
try
|
|
{
|
|
string fileName;
|
|
|
|
if (_pid == 4)
|
|
fileName = Windows.KernelFileName;
|
|
else
|
|
fileName = _processItem.FileName;
|
|
|
|
if (fileName == null)
|
|
{
|
|
pictureIcon.Image = _processImage = ProcessHacker.Properties.Resources.Process.ToBitmap();
|
|
return;
|
|
}
|
|
|
|
var info = _processItem.VersionInfo;
|
|
|
|
textFileDescription.Text = info.FileDescription;
|
|
textFileCompany.Text = info.CompanyName;
|
|
textFileVersion.Text = info.FileVersion;
|
|
fileImage.Text = info.FileName;
|
|
|
|
try
|
|
{
|
|
pictureIcon.Image = _processImage = _processItem.LargeIcon.ToBitmap();
|
|
}
|
|
catch
|
|
{
|
|
pictureIcon.Image = _processImage = ProcessHacker.Properties.Resources.Process.ToBitmap();
|
|
}
|
|
|
|
var verifyResult = _processItem.VerifyResult;
|
|
|
|
if (verifyResult == VerifyResult.Trusted && !string.IsNullOrEmpty(_processItem.VerifySignerName))
|
|
textFileCompany.Text = _processItem.VerifySignerName;
|
|
|
|
if (verifyResult == VerifyResult.Unknown)
|
|
textFileCompany.Text += "";
|
|
else if (verifyResult == VerifyResult.Trusted)
|
|
textFileCompany.Text += " (verified)";
|
|
else if (verifyResult == VerifyResult.NoSignature)
|
|
textFileCompany.Text += " (not verified, no signature)";
|
|
else if (verifyResult == VerifyResult.Distrust)
|
|
textFileCompany.Text += " (not verified, distrusted)";
|
|
else if (verifyResult == VerifyResult.Expired)
|
|
textFileCompany.Text += " (not verified, expired)";
|
|
else if (verifyResult == VerifyResult.Revoked)
|
|
textFileCompany.Text += " (not verified, revoked)";
|
|
else if (verifyResult == VerifyResult.SecuritySettings)
|
|
textFileCompany.Text += " (not verified, security settings)";
|
|
else
|
|
textFileCompany.Text += " (not verified)";
|
|
}
|
|
catch
|
|
{
|
|
fileImage.Text = _processItem.FileName;
|
|
textFileDescription.Text = "";
|
|
textFileCompany.Text = "";
|
|
}
|
|
|
|
// Update WOW64 info.
|
|
if (OSVersion.Architecture == OSArch.I386)
|
|
{
|
|
// 32-bit. Hide the labels.
|
|
labelProcessType.Visible = false;
|
|
labelProcessTypeValue.Visible = false;
|
|
}
|
|
else
|
|
{
|
|
// 64-bit. Show the label.
|
|
labelProcessType.Visible = true;
|
|
labelProcessTypeValue.Visible = true;
|
|
|
|
try
|
|
{
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid, Program.MinProcessQueryRights))
|
|
{
|
|
labelProcessTypeValue.Text = phandle.IsWow64() ? "32-bit" : "64-bit";
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
labelProcessTypeValue.Text = "(" + ex.Message + ")";
|
|
}
|
|
}
|
|
|
|
if (_pid <= 0)
|
|
return;
|
|
|
|
if (_processItem.CmdLine != null)
|
|
textCmdLine.Text = _processItem.CmdLine.Replace("\0", "");
|
|
|
|
try
|
|
{
|
|
DateTime startTime = DateTime.FromFileTime(_processItem.Process.CreateTime);
|
|
|
|
textStartTime.Text = Utils.FormatRelativeDateTime(startTime) +
|
|
" (" + startTime.ToString() + ")";
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
textStartTime.Text = "(" + ex.Message + ")";
|
|
}
|
|
|
|
// The System process doesn't have a current directory or PEB address.
|
|
if (_pid > 4)
|
|
{
|
|
try
|
|
{
|
|
using (ProcessHandle phandle
|
|
= new ProcessHandle(_pid, Program.MinProcessQueryRights | Program.MinProcessReadMemoryRights))
|
|
{
|
|
fileCurrentDirectory.Text =
|
|
phandle.GetPebString(PebOffset.CurrentDirectoryPath);
|
|
}
|
|
|
|
fileCurrentDirectory.Enabled = true;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
fileCurrentDirectory.Text = "(" + ex.Message + ")";
|
|
fileCurrentDirectory.Enabled = false;
|
|
}
|
|
|
|
try
|
|
{
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid, Program.MinProcessQueryRights))
|
|
{
|
|
textPEBAddress.Text = Utils.FormatAddress(phandle.GetBasicInformation().PebBaseAddress);
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
textPEBAddress.Text = "(" + ex.Message + ")";
|
|
buttonInspectPEB.Enabled = false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
fileCurrentDirectory.Enabled = false;
|
|
buttonInspectPEB.Enabled = false;
|
|
}
|
|
|
|
if (_processItem.HasParent)
|
|
{
|
|
if (Program.ProcessProvider.Dictionary.ContainsKey(_processItem.ParentPid))
|
|
{
|
|
textParent.Text =
|
|
Program.ProcessProvider.Dictionary[_processItem.ParentPid].Name +
|
|
" (" + _processItem.ParentPid.ToString() + ")";
|
|
}
|
|
else
|
|
{
|
|
textParent.Text = "Non-existent Process (" + _processItem.ParentPid.ToString() + ")";
|
|
buttonInspectParent.Enabled = false;
|
|
}
|
|
}
|
|
else if (_processItem.ParentPid == -1)
|
|
{
|
|
// this process doesn't actually have a parent
|
|
textParent.Text = "No Parent Process";
|
|
buttonInspectParent.Enabled = false;
|
|
}
|
|
else
|
|
{
|
|
// This process had a parent and it's dead, but
|
|
// another running process has the same PID as
|
|
// its parent. We checked their creation times
|
|
// back in ProcessSystemProvider.cs.
|
|
textParent.Text = "Non-existent Process (" + _processItem.ParentPid.ToString() + ")";
|
|
buttonInspectParent.Enabled = false;
|
|
}
|
|
|
|
this.UpdateProtected();
|
|
this.UpdateDepStatus();
|
|
}
|
|
|
|
private void InitializeSubControls()
|
|
{
|
|
var processStats = new ProcessStatistics(_pid);
|
|
processStats.Dock = DockStyle.Fill;
|
|
tabStatistics.Controls.Add(processStats);
|
|
_processStats = processStats;
|
|
|
|
// If this is a non-process, we need to clear the statistics first.
|
|
if (_pid <= 0)
|
|
_processStats.ClearStatistics();
|
|
|
|
try
|
|
{
|
|
_tokenProps = new TokenProperties(new ProcessHandle(_pid, Program.MinProcessQueryRights));
|
|
_tokenProps.Dock = DockStyle.Fill;
|
|
tabToken.Controls.Add(_tokenProps);
|
|
}
|
|
catch
|
|
{ }
|
|
|
|
try
|
|
{
|
|
using (var phandle = new ProcessHandle(_pid, Program.MinProcessQueryRights))
|
|
{
|
|
var jhandle = phandle.GetJobObject(JobObjectAccess.Query);
|
|
|
|
if (jhandle != null)
|
|
{
|
|
using (jhandle)
|
|
{
|
|
_jobProps = new JobProperties(jhandle);
|
|
_jobProps.Dock = DockStyle.Fill;
|
|
tabJob.Controls.Add(_jobProps);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{ }
|
|
|
|
if (Program.HackerWindow != null)
|
|
{
|
|
if (Program.HackerWindow.ProcessServices.ContainsKey(_pid))
|
|
{
|
|
if (Program.HackerWindow.ProcessServices[_pid].Count > 0)
|
|
{
|
|
_serviceProps = new ServiceProperties(
|
|
Program.HackerWindow.ProcessServices.ContainsKey(_pid) ?
|
|
Program.HackerWindow.ProcessServices[_pid].ToArray() :
|
|
new string[0]);
|
|
_serviceProps.Dock = DockStyle.Fill;
|
|
_serviceProps.PID = _pid;
|
|
tabServices.Controls.Add(_serviceProps);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (_processItem.IsDotNet)
|
|
{
|
|
try
|
|
{
|
|
_dotNetCounters = new DotNetCounters(_pid, _processItem.Name);
|
|
_dotNetCounters.Dock = DockStyle.Fill;
|
|
tabDotNet.Controls.Add(_dotNetCounters);
|
|
}
|
|
catch
|
|
{ }
|
|
}
|
|
|
|
listEnvironment.ListViewItemSorter = new SortedListViewComparer(listEnvironment);
|
|
listEnvironment.SetDoubleBuffered(true);
|
|
listEnvironment.SetTheme("explorer");
|
|
listEnvironment.ContextMenu = listEnvironment.GetCopyMenu();
|
|
ColumnSettings.LoadSettings(Settings.Instance.EnvironmentListViewColumns, listEnvironment);
|
|
}
|
|
|
|
private void InitializeProviders()
|
|
{
|
|
listThreads.BeginUpdate();
|
|
_threadP = new ThreadProvider(_pid);
|
|
Program.SecondaryProviderThread.Add(_threadP);
|
|
_threadP.Updated += new ThreadProvider.ProviderUpdateOnce(_threadP_Updated);
|
|
listThreads.Provider = _threadP;
|
|
|
|
listModules.BeginUpdate();
|
|
_moduleP = new ModuleProvider(_pid);
|
|
Program.SecondaryProviderThread.Add(_moduleP);
|
|
_moduleP.Updated += new ModuleProvider.ProviderUpdateOnce(_moduleP_Updated);
|
|
listModules.Provider = _moduleP;
|
|
|
|
listMemory.BeginUpdate();
|
|
_memoryP = new MemoryProvider(_pid);
|
|
Program.SecondaryProviderThread.Add(_memoryP);
|
|
_memoryP.IgnoreFreeRegions = true;
|
|
_memoryP.Updated += new MemoryProvider.ProviderUpdateOnce(_memoryP_Updated);
|
|
listMemory.Provider = _memoryP;
|
|
|
|
listHandles.BeginUpdate();
|
|
_handleP = new HandleProvider(_pid);
|
|
Program.SecondaryProviderThread.Add(_handleP);
|
|
_handleP.HideHandlesWithNoName = Settings.Instance.HideHandlesWithNoName;
|
|
_handleP.Updated += new HandleProvider.ProviderUpdateOnce(_handleP_Updated);
|
|
listHandles.Provider = _handleP;
|
|
|
|
listThreads.List.SetTheme("explorer");
|
|
listModules.List.SetTheme("explorer");
|
|
listMemory.List.SetTheme("explorer");
|
|
listHandles.List.SetTheme("explorer");
|
|
|
|
this.InitializeShortcuts();
|
|
}
|
|
|
|
private void InitializeShortcuts()
|
|
{
|
|
listThreads.List.AddShortcuts();
|
|
listModules.List.AddShortcuts();
|
|
listMemory.List.AddShortcuts();
|
|
listHandles.List.AddShortcuts();
|
|
listEnvironment.AddShortcuts();
|
|
}
|
|
|
|
private void UpdateEnvironmentVariables()
|
|
{
|
|
listEnvironment.Items.Clear();
|
|
|
|
listEnvironment.BeginUpdate();
|
|
|
|
WorkQueue.GlobalQueueWorkItemTag(new Action(() =>
|
|
{
|
|
try
|
|
{
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid,
|
|
ProcessAccess.QueryInformation | Program.MinProcessReadMemoryRights))
|
|
{
|
|
foreach (var pair in phandle.GetEnvironmentVariables())
|
|
{
|
|
if (pair.Key != "")
|
|
{
|
|
if (this.IsHandleCreated)
|
|
{
|
|
// Work around delegate variable capturing.
|
|
var localPair = pair;
|
|
|
|
this.BeginInvoke(new MethodInvoker(() =>
|
|
{
|
|
listEnvironment.Items.Add(
|
|
new ListViewItem(new string[] { localPair.Key, localPair.Value }));
|
|
}));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{ }
|
|
|
|
if (this.IsHandleCreated)
|
|
{
|
|
this.BeginInvoke(new MethodInvoker(() => listEnvironment.EndUpdate()));
|
|
}
|
|
}), "process-update-environment-variables");
|
|
}
|
|
|
|
public void UpdateProtected()
|
|
{
|
|
labelProtected.Enabled = true;
|
|
textProtected.Enabled = true;
|
|
buttonEditProtected.Enabled = true;
|
|
|
|
if (KProcessHacker.Instance != null && OSVersion.HasProtectedProcesses)
|
|
{
|
|
try
|
|
{
|
|
textProtected.Text = KProcessHacker.Instance.GetProcessProtected(_pid) ? "Protected" : "Not Protected";
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
textProtected.Text = "(" + ex.Message + ")";
|
|
buttonEditProtected.Enabled = false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
labelProtected.Enabled = false;
|
|
textProtected.Enabled = false;
|
|
buttonEditProtected.Enabled = false;
|
|
}
|
|
}
|
|
|
|
public void UpdateDepStatus()
|
|
{
|
|
labelDEP.Enabled = true;
|
|
textDEP.Enabled = true;
|
|
try
|
|
{
|
|
using (var phandle = new ProcessHandle(_pid, ProcessAccess.QueryInformation))
|
|
{
|
|
var depStatus = phandle.GetDepStatus();
|
|
string str;
|
|
|
|
if ((depStatus & DepStatus.Enabled) != 0)
|
|
{
|
|
str = "Enabled";
|
|
}
|
|
else
|
|
{
|
|
str = "Disabled";
|
|
}
|
|
|
|
if ((depStatus & DepStatus.Permanent) != 0)
|
|
{
|
|
buttonEditDEP.Enabled = false;
|
|
str += ", Permanent";
|
|
}
|
|
|
|
if ((depStatus & DepStatus.AtlThunkEmulationDisabled) != 0)
|
|
str += ", DEP-ATL thunk emulation disabled";
|
|
|
|
textDEP.Text = str;
|
|
}
|
|
}
|
|
catch (EntryPointNotFoundException)
|
|
{
|
|
labelDEP.Enabled = false;
|
|
textDEP.Enabled = false;
|
|
textDEP.Text = "";
|
|
//textDEP.Text = "(This feature is not supported on your version of Windows)";
|
|
buttonEditDEP.Enabled = false;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
textDEP.Text = "(" + ex.Message + ")";
|
|
buttonEditDEP.Enabled = false;
|
|
}
|
|
|
|
// Can't set DEP status on processes in other sessions without KPH.
|
|
if (
|
|
KProcessHacker.Instance == null &&
|
|
_processItem.SessionId != Program.CurrentSessionId
|
|
)
|
|
buttonEditDEP.Enabled = false;
|
|
}
|
|
|
|
private void PerformSearch(string text)
|
|
{
|
|
Point location = this.Location;
|
|
System.Drawing.Size size = this.Size;
|
|
|
|
ResultsWindow rw = Program.GetResultsWindow(_pid,
|
|
new Program.ResultsWindowInvokeAction(delegate(ResultsWindow f)
|
|
{
|
|
if (text == "&New Results Window...")
|
|
{
|
|
f.Show();
|
|
}
|
|
else if (text == "&Literal...")
|
|
{
|
|
if (f.EditSearch(SearchType.Literal, location, size) == DialogResult.OK)
|
|
{
|
|
f.Show();
|
|
f.StartSearch();
|
|
}
|
|
else
|
|
{
|
|
f.Close();
|
|
}
|
|
}
|
|
else if (text == "&Regex...")
|
|
{
|
|
if (f.EditSearch(SearchType.Regex, location, size) == DialogResult.OK)
|
|
{
|
|
f.Show();
|
|
f.StartSearch();
|
|
}
|
|
else
|
|
{
|
|
f.Close();
|
|
}
|
|
}
|
|
else if (text == "&String Scan...")
|
|
{
|
|
f.SearchOptions.Type = SearchType.String;
|
|
f.Show();
|
|
f.StartSearch();
|
|
}
|
|
else if (text == "&Heap Scan...")
|
|
{
|
|
f.SearchOptions.Type = SearchType.Heap;
|
|
f.Show();
|
|
f.StartSearch();
|
|
}
|
|
else if (text == "S&truct...")
|
|
{
|
|
if (f.EditSearch(SearchType.Struct, location, size) == DialogResult.OK)
|
|
{
|
|
f.Show();
|
|
f.StartSearch();
|
|
}
|
|
else
|
|
{
|
|
f.Close();
|
|
}
|
|
}
|
|
}));
|
|
|
|
buttonSearch.Text = text;
|
|
}
|
|
|
|
private void UpdatePerformance()
|
|
{
|
|
ProcessSystemProvider sysProvider = Program.ProcessProvider;
|
|
|
|
if (!sysProvider.Dictionary.ContainsKey(_pid))
|
|
return;
|
|
|
|
ProcessItem item = sysProvider.Dictionary[_pid];
|
|
|
|
plotterCPUUsage.LineColor1 = Settings.Instance.PlotterCPUKernelColor;
|
|
plotterCPUUsage.LineColor2 = Settings.Instance.PlotterCPUUserColor;
|
|
plotterMemory.LineColor1 = Settings.Instance.PlotterMemoryPrivateColor;
|
|
plotterMemory.LineColor2 = Settings.Instance.PlotterMemoryWSColor;
|
|
plotterIO.LineColor1 = Settings.Instance.PlotterIOROColor;
|
|
plotterIO.LineColor2 = Settings.Instance.PlotterIOWColor;
|
|
|
|
// Update the graphs.
|
|
long sysTotal = sysProvider.CpuKernelDelta.Delta + sysProvider.CpuUserDelta.Delta
|
|
+ sysProvider.CpuOtherDelta.Delta;
|
|
float procKernel = (float)item.CpuKernelDelta.Delta / sysTotal;
|
|
float procUser = (float)item.CpuUserDelta.Delta / sysTotal;
|
|
long ioRO = item.IoReadDelta.Delta + item.IoOtherDelta.Delta;
|
|
long ioW = item.IoWriteDelta.Delta;
|
|
|
|
string cpuStr = ((procKernel + procUser) * 100).ToString("F2") + "%";
|
|
plotterCPUUsage.Text = cpuStr +
|
|
" (K: " + (procKernel * 100).ToString("F2") +
|
|
"%, U: " + (procUser * 100).ToString("F2") + "%)";
|
|
|
|
string pvtString = Utils.FormatSize(item.Process.VirtualMemoryCounters.PrivatePageCount);
|
|
plotterMemory.Text = "Pvt: " + pvtString +
|
|
", WS: " + Utils.FormatSize(item.Process.VirtualMemoryCounters.WorkingSetSize);
|
|
|
|
string ioROString = Utils.FormatSize(ioRO);
|
|
plotterIO.Text = "R+O: " + ioROString + ", W: " + Utils.FormatSize(ioW);
|
|
|
|
plotterCPUUsage.MoveGrid();
|
|
plotterCPUUsage.Draw();
|
|
plotterMemory.MoveGrid();
|
|
plotterMemory.Draw();
|
|
plotterIO.MoveGrid();
|
|
plotterIO.Draw();
|
|
|
|
// Update the CPU indicator.
|
|
indicatorCpu.Maximum = (int)((procKernel + procUser) * int.MaxValue);
|
|
indicatorCpu.Data1 = (int)(procKernel * indicatorCpu.Maximum);
|
|
indicatorCpu.Data2 = (int)(procUser * indicatorCpu.Maximum);
|
|
indicatorCpu.TextValue = cpuStr;
|
|
|
|
// Update the Pvt. Memory indicator.
|
|
int count = plotterIO.Width / plotterIO.EffectiveMoveStep;
|
|
long maxPvt = _processItem.PrivateMemoryHistory.Take(count).Max();
|
|
long maxWS = _processItem.WorkingSetHistory.Take(count).Max();
|
|
if(maxPvt>maxWS)
|
|
indicatorPvt.Maximum = maxPvt;
|
|
else
|
|
indicatorPvt.Maximum = maxWS;
|
|
indicatorPvt.Data1 = item.Process.VirtualMemoryCounters.PrivatePageCount.ToInt64();
|
|
indicatorPvt.TextValue = pvtString;
|
|
|
|
// Update the I/O Bytes indicator.
|
|
long maxRO = _processItem.IoReadOtherHistory.Take(count).Max();
|
|
long maxW = _processItem.IoWriteHistory.Take(count).Max();
|
|
if (maxRO > maxW)
|
|
indicatorIO.Maximum = maxRO;
|
|
else
|
|
indicatorIO.Maximum = maxW;
|
|
indicatorIO.Data1 = ioRO;
|
|
indicatorIO.TextValue = ioROString;
|
|
}
|
|
|
|
#region Select Thread Code
|
|
|
|
private int _selectTid;
|
|
|
|
public void SelectThread(int tid)
|
|
{
|
|
_selectTid = tid;
|
|
_selectThreadRun.IncrementMultiple();
|
|
}
|
|
|
|
private void SelectThreadInternal()
|
|
{
|
|
if (_threadP.RunCount == 0)
|
|
{
|
|
listThreads.ThreadItemsAdded += SelectThread_listThreads_ThreadItemsAdded;
|
|
_threadP.Boost();
|
|
}
|
|
else
|
|
{
|
|
this.SelectThreadInListView();
|
|
}
|
|
}
|
|
|
|
private void SelectThreadInListView()
|
|
{
|
|
tabControl.SelectedTab = tabThreads;
|
|
|
|
var litem = listThreads.Items[_selectTid.ToString()];
|
|
|
|
if (litem != null)
|
|
{
|
|
Program.HackerWindow.DeselectAll(listThreads.List);
|
|
litem.Selected = true;
|
|
litem.EnsureVisible();
|
|
}
|
|
}
|
|
|
|
private void SelectThread_listThreads_ThreadItemsAdded()
|
|
{
|
|
listThreads.ThreadItemsAdded -= SelectThread_listThreads_ThreadItemsAdded;
|
|
this.SelectThreadInListView();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Buttons
|
|
|
|
private void buttonTerminate_Click(object sender, EventArgs e)
|
|
{
|
|
ProcessActions.Terminate(this, new int[] { _processItem.Pid }, new string[] { _processItem.Name }, true);
|
|
}
|
|
|
|
private void buttonEditDEP_Click(object sender, EventArgs e)
|
|
{
|
|
EditDEPWindow w = new EditDEPWindow(_pid);
|
|
|
|
w.TopMost = this.TopMost;
|
|
w.ShowDialog();
|
|
|
|
this.UpdateDepStatus();
|
|
}
|
|
|
|
private void buttonEditProtected_Click(object sender, EventArgs e)
|
|
{
|
|
try
|
|
{
|
|
ComboBoxPickerWindow picker = new ComboBoxPickerWindow(new string[] { "Protect", "Unprotect" });
|
|
|
|
picker.Message = "Select an action below:";
|
|
picker.SelectedItem = (textProtected.Text == "Protected") ? "Protect" : "Unprotect";
|
|
|
|
if (picker.ShowDialog() == DialogResult.OK)
|
|
{
|
|
KProcessHacker.Instance.SetProcessProtected(_pid, picker.SelectedItem == "Protect");
|
|
this.UpdateProtected();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
PhUtils.ShowException("Unable to change process protection", ex);
|
|
}
|
|
}
|
|
|
|
private void buttonInspectPEB_Click(object sender, EventArgs e)
|
|
{
|
|
try
|
|
{
|
|
if (!Program.Structs.ContainsKey("PEB"))
|
|
throw new Exception("The struct 'PEB' has not been loaded. Make sure structs.txt was loaded successfully.");
|
|
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid, Program.MinProcessQueryRights))
|
|
{
|
|
IntPtr baseAddress = phandle.GetBasicInformation().PebBaseAddress;
|
|
|
|
Program.HackerWindow.BeginInvoke(new MethodInvoker(delegate
|
|
{
|
|
StructWindow sw = new StructWindow(_pid, baseAddress, Program.Structs["PEB"]);
|
|
|
|
try
|
|
{
|
|
sw.Show();
|
|
sw.Activate();
|
|
}
|
|
catch
|
|
{ }
|
|
}));
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
PhUtils.ShowException("Unable to inspect the PEB", ex);
|
|
}
|
|
}
|
|
|
|
private void buttonInspectParent_Click(object sender, EventArgs e)
|
|
{
|
|
try
|
|
{
|
|
ProcessActions.ShowProperties(
|
|
this,
|
|
_processItem.ParentPid,
|
|
Program.ProcessProvider.Dictionary[_processItem.ParentPid].Name
|
|
);
|
|
}
|
|
catch (KeyNotFoundException)
|
|
{
|
|
PhUtils.ShowError("The process could not be found.");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
PhUtils.ShowException("Unable to inspect the parent process", ex);
|
|
}
|
|
}
|
|
|
|
private void buttonSearch_Click(object sender, EventArgs e)
|
|
{
|
|
PerformSearch(buttonSearch.Text);
|
|
}
|
|
|
|
private void buttonPermissions_Click(object sender, EventArgs e)
|
|
{
|
|
try
|
|
{
|
|
SecurityEditor.EditSecurity(
|
|
this,
|
|
SecurityEditor.GetSecurableWrapper((access) => new ProcessHandle(_pid, (ProcessAccess)access)),
|
|
_processItem.Name,
|
|
NativeTypeFactory.GetAccessEntries(NativeTypeFactory.ObjectType.Process)
|
|
);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
PhUtils.ShowException("Unable to edit permissions", ex);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Check Boxes
|
|
|
|
private void checkHideFreeRegions_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
checkHideFreeRegions.Enabled = false;
|
|
this.Cursor = Cursors.WaitCursor;
|
|
listMemory.BeginUpdate();
|
|
_memoryP.IgnoreFreeRegions = checkHideFreeRegions.Checked;
|
|
_memoryP.Updated += new MemoryProvider.ProviderUpdateOnce(_memoryP_Updated);
|
|
_memoryP.Boost();
|
|
}
|
|
|
|
private void checkHideHandlesNoName_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (_handleP != null)
|
|
{
|
|
checkHideHandlesNoName.Enabled = false;
|
|
this.Cursor = Cursors.WaitCursor;
|
|
Program.SecondaryProviderThread.Remove(_handleP);
|
|
_handleP.Dispose();
|
|
listHandles.BeginUpdate();
|
|
_handleP = new HandleProvider(_pid);
|
|
Program.SecondaryProviderThread.Add(_handleP);
|
|
_handleP.HideHandlesWithNoName = checkHideHandlesNoName.Checked;
|
|
_handleP.Updated += new HandleProvider.ProviderUpdateOnce(_handleP_Updated);
|
|
_handleP.Boost();
|
|
listHandles.Provider = _handleP;
|
|
_handleP.Enabled = true;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Menu Items
|
|
|
|
private void inspectImageFileMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
try
|
|
{
|
|
string path;
|
|
|
|
if (_pid == 4)
|
|
{
|
|
path = Windows.KernelFileName;
|
|
}
|
|
else
|
|
{
|
|
path = _processItem.FileName;
|
|
}
|
|
|
|
PEWindow pw = Program.GetPEWindow(path,
|
|
new Program.PEWindowInvokeAction(delegate(PEWindow f)
|
|
{
|
|
try
|
|
{
|
|
f.Show();
|
|
f.Activate();
|
|
}
|
|
catch
|
|
{ }
|
|
}));
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
PhUtils.ShowException("Unable to inspect the image file", ex);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Providers
|
|
|
|
private void ProcessProvider_Updated()
|
|
{
|
|
try
|
|
{
|
|
this.BeginInvoke(new MethodInvoker(delegate
|
|
{
|
|
if (tabControl.SelectedTab == tabStatistics)
|
|
{
|
|
if (_processStats != null)
|
|
_processStats.UpdateStatistics();
|
|
}
|
|
else if (tabControl.SelectedTab == tabPerformance)
|
|
{
|
|
this.UpdatePerformance();
|
|
}
|
|
else if (tabControl.SelectedTab == tabDotNet)
|
|
{
|
|
if (_dotNetCounters != null)
|
|
_dotNetCounters.UpdateInfo();
|
|
}
|
|
}));
|
|
}
|
|
catch
|
|
{ }
|
|
}
|
|
|
|
private void _memoryP_Updated()
|
|
{
|
|
if (_memoryP.RunCount > 1)
|
|
{
|
|
this.BeginInvoke(new MethodInvoker(delegate
|
|
{
|
|
listMemory.EndUpdate();
|
|
listMemory.Refresh();
|
|
checkHideFreeRegions.Enabled = true;
|
|
this.Cursor = Cursors.Default;
|
|
}));
|
|
_memoryP.Updated -= new MemoryProvider.ProviderUpdateOnce(_memoryP_Updated);
|
|
}
|
|
}
|
|
|
|
private void _handleP_Updated()
|
|
{
|
|
if (_handleP.RunCount > 1)
|
|
{
|
|
this.BeginInvoke(new MethodInvoker(delegate
|
|
{
|
|
listHandles.EndUpdate();
|
|
listHandles.Refresh();
|
|
checkHideHandlesNoName.Enabled = true;
|
|
this.Cursor = Cursors.Default;
|
|
}));
|
|
_handleP.Updated -= new HandleProvider.ProviderUpdateOnce(_handleP_Updated);
|
|
}
|
|
}
|
|
|
|
private void _moduleP_Updated()
|
|
{
|
|
if (_moduleP.RunCount > 1)
|
|
{
|
|
this.BeginInvoke(new MethodInvoker(delegate
|
|
{
|
|
listModules.EndUpdate();
|
|
listModules.Refresh();
|
|
}));
|
|
_moduleP.Updated -= new ModuleProvider.ProviderUpdateOnce(_moduleP_Updated);
|
|
}
|
|
}
|
|
|
|
private void _threadP_Updated()
|
|
{
|
|
if (_threadP.RunCount > 1)
|
|
{
|
|
this.BeginInvoke(new MethodInvoker(delegate
|
|
{
|
|
listThreads.EndUpdate();
|
|
listThreads.Refresh();
|
|
}));
|
|
_threadP.Updated -= new ThreadProvider.ProviderUpdateOnce(_threadP_Updated);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Search Menu Items
|
|
|
|
private void newWindowSearchMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
PerformSearch(newWindowSearchMenuItem.Text);
|
|
}
|
|
|
|
private void literalSearchMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
PerformSearch(literalSearchMenuItem.Text);
|
|
}
|
|
|
|
private void regexSearchMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
PerformSearch(regexSearchMenuItem.Text);
|
|
}
|
|
|
|
private void stringScanMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
PerformSearch(stringScanMenuItem.Text);
|
|
}
|
|
|
|
private void heapScanMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
PerformSearch(heapScanMenuItem.Text);
|
|
}
|
|
|
|
private void structSearchMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
PerformSearch(structSearchMenuItem.Text);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Tab Controls
|
|
|
|
private void tabControl_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
if (_threadP != null)
|
|
if (_threadP.Enabled = tabControl.SelectedTab == tabThreads)
|
|
_threadP.Boost();
|
|
if (_moduleP != null)
|
|
if (_moduleP.Enabled = tabControl.SelectedTab == tabModules)
|
|
_moduleP.Boost();
|
|
if (_memoryP != null)
|
|
if (_memoryP.Enabled = tabControl.SelectedTab == tabMemory)
|
|
_memoryP.Boost();
|
|
if (_handleP != null)
|
|
if (_handleP.Enabled = tabControl.SelectedTab == tabHandles)
|
|
_handleP.Boost();
|
|
|
|
if (tabControl.SelectedTab == tabStatistics)
|
|
{
|
|
if (_processStats != null)
|
|
_processStats.UpdateStatistics();
|
|
}
|
|
|
|
if (tabControl.SelectedTab == tabPerformance)
|
|
{
|
|
this.UpdatePerformance();
|
|
}
|
|
|
|
if (_jobProps != null)
|
|
{
|
|
if (tabControl.SelectedTab == tabJob)
|
|
{
|
|
_jobProps.UpdateEnabled = true;
|
|
}
|
|
else
|
|
{
|
|
_jobProps.UpdateEnabled = false;
|
|
}
|
|
}
|
|
|
|
// Delay initialization of the .NET tab until this point.
|
|
if (
|
|
tabControl.SelectedTab == tabDotNet &&
|
|
_dotNetCounters != null &&
|
|
!_dotNetCountersInitialized
|
|
)
|
|
{
|
|
_dotNetCounters.Initialize();
|
|
_dotNetCountersInitialized = true;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Waiters
|
|
|
|
private void SharedWaiter_ObjectSignaled(ISynchronizable obj)
|
|
{
|
|
// Check if the object is our process handle.
|
|
if (obj == _processHandle)
|
|
{
|
|
if (this.IsHandleCreated)
|
|
{
|
|
this.BeginInvoke(new MethodInvoker(() =>
|
|
{
|
|
NtStatus exitStatus = _processHandle.GetExitStatus();
|
|
string exitString = exitStatus.ToString();
|
|
long exitLong;
|
|
|
|
// We want "Success" instead of "Wait0" (both are 0x0).
|
|
if (exitString == "Wait0")
|
|
exitString = "Success";
|
|
|
|
// If we have a NT status string, display it.
|
|
// Otherwise, display the NT status value in hex.
|
|
if (!long.TryParse(exitString, out exitLong))
|
|
{
|
|
this.Text += " (exited with status " + exitString + ")";
|
|
}
|
|
else
|
|
{
|
|
this.Text += " (exited with status 0x" + exitLong.ToString("x8") + ")";
|
|
}
|
|
}));
|
|
}
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|