- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我是一个大型商业程序的开发人员,我正试图追踪一个特定的 C++ 内存泄漏。我想使用 Visual Studio 搜索我的进程的整个有效地址空间,但我看不出如何有效地执行此搜索。
我知道 .s 命令文档 here ,但它没有做我需要的。例如,我 100% 确定地址 0xfdfd240 包含值 0x0f0e34a8。我可以像这样成功地使用 .s 命令在该地址附近进行搜索:
.s -d 0x0fdfd200 L256000000 0x0f0e34a8
Found match at
0xfdfd240
但是我的程序进行了许多小的分配,这给我留下了许多小的非连续内存部分。如果我备份几千字节,搜索命令将失败:
.s -d 0x0fd00000 L256000000 0x0f0e34a8
Memory location could not be read. Please specify a valid memory location.
而且当搜索命令发现它的第一个错误地址时,它似乎不再尝试向前搜索,即使在它之外还有有效地址。
.s -d 0x0f000000 L256000000 0x0f0e34a8
No match was found
我隐约知道有一种方法可以询问 Windows 哪些内存范围对给定进程有效,因此我正在考虑编写一个小的一次性程序来收集该信息,然后自动执行一系列搜索命令立即窗口...但似乎有人以前处理过这个问题,并且一定做了更聪明的事情。
此外,我可以提取正在运行的进程的转储文件,因此如果有人可以推荐第三方工具将转储提供给具有更强大搜索功能的第三方工具,那么应该也能解决问题。
有什么建议吗?
编辑:我在 VS2008SP1 和 VS2010SP1 中看到了这种行为。
最佳答案
这是一个小工具,可以在目标进程中找到内存块1,在 block 中搜索模式,并打印出找到模式的地址。现在它相当原始——纯命令行,希望您提供目标进程的 PID,只接受命令行上的模式作为单个字符串。搜索部分应该相当健壮,所以这主要是一个非常弱的 UI 问题——尽管如此,只要您要查找的模式是您可以在命令行上输入字符串形式的内容,它就可以正常工作。如果你想包含不可打印的字符,很容易在 translator 中添加我多年前写过,可以让您在命令行上使用 C 风格的转义序列。
1 跳过包含该进程的可执行文件/DLL 代码等内容的 block 。
#include <iostream>
#include <vector>
#include <string>
#include <windows.h>
#include <algorithm>
#include <iterator>
template <class outIter>
void find_locs(HANDLE process, std::string const &pattern, outIter output) {
unsigned char *p = NULL;
MEMORY_BASIC_INFORMATION info;
// VirtualQueryEx does the hard part, telling use about each
// block in the target process.
for ( p = NULL;
VirtualQueryEx(process, p, &info, sizeof(info)) == sizeof(info);
p += info.RegionSize )
{
// buffer to hold copies of memory blocks from the target
std::vector<char> buffer;
std::vector<char>::iterator pos;
// We only want committed memory that's mapped or private --
// screens out things like the code in the target process.
//
if (info.State == MEM_COMMIT &&
(info.Type == MEM_MAPPED || info.Type == MEM_PRIVATE))
{
DWORD bytes_read;
// copy block from target to our buffer, search for pattern:
buffer.resize(info.RegionSize);
ReadProcessMemory(process, p, &buffer[0], info.RegionSize, &bytes_read);
buffer.resize(bytes_read);
// find all occurrences of pattern in buffer:
for ( pos = buffer.begin();
buffer.end()!=(pos=std::search(pos, buffer.end(), pattern.begin(), pattern.end()));
++pos)
{
// record each address in target where pattern was found:
*output++ = p+(pos-buffer.begin());
}
}
}
}
int main(int argc, char **argv) {
if (argc != 3) {
fprintf(stderr, "Usage: %s <process ID> <pattern>", argv[0]);
return 1;
}
// Read the target PID and search pattern:
int pid;
sscanf(argv[1], "%i", &pid);
std::string pattern(argv[2]);
// Open the target process with rights to read its information and memory:
HANDLE process = OpenProcess(
PROCESS_VM_READ | PROCESS_QUERY_INFORMATION,
false,
pid);
// Find the locations, and write them to standard output, one per line:
find_locs(process, pattern,
std::ostream_iterator<void *>(std::cout, "\n"));
return 0;
}
关于c++ - 如何从 Visual Studio 调试器执行所有进程内存的高级搜索?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5494340/
我经常使用 SSMS 查询数据和构建数据集,我的 IT 部门负责数据库管理。 最近我发现了 Azure Data Studio,我喜欢: 智能感知 源代码控制(例如使用 Git) 来自社区的扩展 SQ
我想根据我使用的 visual studio 版本编译不同的东西,比如 #if VISUAL_STUDIO_VERSION > 2015 eventH?.Invoke(this, EventArgs.
我们的开发团队计划从 visual studio 2005 升级到 visual studio 2010 -- 跳过 visual studio 2008。 大部分项目是VB ASP.NET项目,使用
我的Visual Studio 2015无法构建2010平台工具集。它说: The build tools for Visual Studio 2010 (v100) cannot be found.
我目前正在使用 Visual Studio 2015 来编程 ASP.NET Core 应用程序。我对安装 Visual Studio 2017 有以下疑问: 什么被认为是最佳实践和/或最干净的方法?
尝试从扩展和更新获取 Visual Studio 扩展时,出现以下错误:- 向 visualstudiogallery.msdn.microsoft.com/Services/VStudio/Exte
这个问题在这里已经有了答案: Can Visual Studio Code and VS 2012 be installed on same computer? (1 个回答) 关闭去年。 在安装了
作为标准安装的一部分,Visual Studio Code 带有一个名为“Monokai Dimmed”的颜色主题。 有没有办法将它移植到 Visual Studio 2015?我检查了社区主题( h
我想开始编程 CUDA。 我已经安装了 Visual Studio 2010 Express。 我还安装了 nVidia nSight Visual Studio。 而且我具备所有常见的先决条件(Ne
Visual Studio Community Edition是否可以使用Visual Studio Online帐户上的存储库? 我一直为包含在Online帐户中的Visual Studio Onl
我有一个我一直在开发的应用程序,但在 android studio 上遇到了问题。当我点击“build->run”然后选择我的设备时,应用程序永远不会在我的手机上运行(并且自动出现的android-s
我正在使用Visual Studio2010。我面临的一个问题是,当我创建一个新的Web项目时,Visual Studio将创建该项目,并且不会在解决方案资源管理器中显示其解决方案。 另一件事是,我想
我通读了这里的许多帖子,却找不到一个有效的明确答案。因此,在花了一些时间使它生效之后,我认为应该发布它。 问题:发布配置文件将建立在服务器上,但不会发布。 解: 确保已安装Microsoft Wind
我正在尝试使用Visual Studio 2012构建针对.NET 3.5的C++ CLI应用程序。 通过安装Visual Studio 2008,并指定v90平台工具集,我已经在一台机器上进行了这项
我在 Microsoft Visual Studios 2013 中有一个项目,我想在 Microsoft Visual Studios 2010 中打开它。有什么简单的方法吗?还是我必须在2010年
我想知道,如果我发送一个解决方案文件夹(它是用 visual studio C# 编写的),您可以在 visual studio for mac 中打开解决方案吗? 在visual studio 20
有没有办法在 Visual Studio Code 和 Visual Studio 中设置相同的快捷方式(而不必每次都手动更改它们)? 例如,我在 Visual Studio Code 中经常使用 A
我刚开始了解 Visual Studio Code。我想知道,我可以将 Visual Studio 替换为所有 .NET 开发相关的工作吗? 我可以节省 Visual Studio 许可的成本吗? V
我安装了具有有效许可证(Visual Studio 订阅)的 Visual Studio 2019 企业版(VS 2019 16.1.4),它运行良好。 突然之间,当我尝试打开项目或项目中的任何文件时
我一直在使用 Compass 编译 Windows 环境中的 sass 文件,无论是在命令行上还是使用 Compass-app 来查看目录。 我刚刚开始使用 Visual Studio(专业版 201
我是一名优秀的程序员,十分优秀!