在Windows Server 2012上构建的二进制文件失败

时间:2016-02-10 17:12:45

标签: c# winapi windows-7-x64 windows-server-2012

在夜间构建计算机上构建的应用程序在Windows Server 2012上不起作用,但在其他桌面上运行良好。

这种例外 “试图读取或写入受保护的内存。这通常表明其他内存已损坏。”扔了。

当我在WindowsServer2012机器和构建机器上使用远程调试进行调试时,我发现在代码中进行了kernel32调用HeapSize的地方抛出了这个异常。以下是HeapSize导入和调用的方式:

[DllImport("kernel32")] 
static extern int HeapSize(int hHeap, int flags, void* block); 
// Returns the size of a memory block. 

public static int SizeOf(void* block) 
{ 
    int result = HeapSize(ph, 0, block); 
    if (result == -1) throw new InvalidOperationException(); 
    return result; 
}

这被称为不安全类的构造函数的一部分:

    public UnManagedBuffer(StringBuilder sb)
    {
        PtrStart = (byte*)Marshal.StringToHGlobalAnsi(sb.ToString());
        Size = UnManagedMemory.SizeOf(PtrStart);
        PtrWriteNextValue = PtrStart + Size - 1;
        PtrReturnNextValue = PtrStart;
    }

有关可能遗漏的内容以及如何解决此问题的任何线索?

这就是我在Windbg中看到的:

This is what I see in Windbg

EventLog显示:

    Log Name:      Application
    Source:        .NET Runtime
    Level:         Error
    Keywords:      Classic
    Description:
Application: TestEngine.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.AccessViolationException
   at Core.Utils.UnManagedMemory.HeapSize(Int32, Int32, Void*)
   at Core.Utils.UnManagedMemory.SizeOf(Void*)
   at Core.Utils.UnManagedBuffer..ctor</Event>

Faulting application name: TestEngine.exe, version: 1.0.0.0, time stamp: 0x56b532bb
Faulting module name: ntdll.dll, version: 6.3.9600.18185, time stamp: 0x5683f0c5
Exception code: 0xc0000005
Fault offset: 0x0000000000057306
Faulting process id: 0x2eb8
Faulting application start time: 0x01d164e45b12d7dd
Faulting application path: C:\NGDLM\Lib\TestEngine.exe
Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
Report Id: bea6eb89-d0d7-11e5-80eb-0050568cd888
Faulting package full name: 
Faulting package-relative application ID: 

1 个答案:

答案 0 :(得分:2)

您编写的代码不应该有效。

HeapSize返回堆的大小,例如,通过调用HeapAlloc分配的内容。提供给HeapSize的指针必须是通过调用HeapAlloc返回的指针:

  

lpMem [in]

     
    

指向函数将获取其大小的内存块的指针。这是HeapAlloc或HeapReAlloc函数返回的指针。

  

您正在调用HeapSize,但提供的指针可能位于该堆内的任何位置;或根本不在那堆:

    PtrStart = (byte*)Marshal.StringToHGlobalAnsi(sb.ToString());
    Size = UnManagedMemory.SizeOf(PtrStart);
    PtrWriteNextValue = PtrStart + Size - 1;
    PtrReturnNextValue = PtrStart;

Marshal.StringToHGlobalAnsi()不仅会在堆中的某处返回一个指针,而不是指向堆本身的指针,你甚至不知道指针是从哪个堆分配的,因为该过程可以分配多个堆。

所有这一切都无关紧要,因为看起来你对这个函数的目的有一个根本的误解 - 你似乎正在使用它来检索堆内的分配大小。 Marshal.StringToHGlobalAnsi()返回的内存不是通过调用HeapAlloc()来分配的(因为它不是堆!),它是通过调用AllocHGlobal来分配的。必须通过调用Marshal.FreeHGlobal()来释放由它分配的内存:

来自Marshal.StringToHGlobal()的文档:

  

因为此方法分配字符串所需的非托管内存,所以始终通过调用FreeHGlobal释放内存。

Marshal方法与HeapAllocHeapSize或相关函数无关。

如果你确实想知道Marshal.StringToHGlobal()返回的指针的内存分配大小,你可以挖掘source of the the Marshal class并发现它使用了win32函数{{3 }}。碰巧LocalAlloc有一个姐妹函数LocalAlloc,确实可以用来查找分配的大小。

但是,无法保证这样做将来会有效,因为.Net框架无法保证它会继续使用LocalAlloc。如果他们改变了内部LocalSize可能会停止工作。

...

所有这些都说:

我不认为这首先是你打算做的事情

再次查看您的代码:

    PtrStart = (byte*)Marshal.StringToHGlobalAnsi(sb.ToString());
    Size = UnManagedMemory.SizeOf(PtrStart);
    PtrWriteNextValue = PtrStart + Size - 1;
    PtrReturnNextValue = PtrStart;

您正在尝试查找返回给您的ansi字符串的长度。

HeapSizeLocalSize的所有这些业务完全无关紧要。

如果你只是想找到一个&#39; ansi&#39; string,你只需要实现一个愚蠢的简单字符串长度,或者使用已经存在的任何实现。

以下程序使用Marshal.StringToHGlobal(),并打印:

  

字符串:&#39;你好&#39 ;;长度:5

    public static void Main( string[] args )
    {
        IntPtr strPtr = IntPtr.Zero;
        string str = "Hello";
        try
        {
            strPtr = Marshal.StringToHGlobalAnsi( str );

            Console.Out.WriteLine( "String: '{0}'; Length: {1}", str, AnsiStrLen( strPtr ) );
        }
        finally
        {
            if( strPtr != IntPtr.Zero )
            {
                Marshal.FreeHGlobal( strPtr );
            }
        }
    }

    public static int AnsiStrLen( IntPtr strPtr )
    {
        int size = 0;

        while( Marshal.ReadByte( strPtr ) != 0 )
        {
            size++;
            strPtr = IntPtr.Add( strPtr, 1 );
        }

        return size;
    }