项目中遇到一个诡异的问题,程序在升级到.net4.6.1后会崩溃,提示访问只读内存区。大概现象如下:
- debug版不崩溃,release版稳定崩溃。
- 只有x64位的程序崩溃,32位及anycpu编译出来的程序运行不会崩溃。
- 出问题的代码范围很小
以上信息,各位有什么想法呢?
由于release版可以稳定重现,而且范围不大,故通过二分排除法很快定位到了导致问题的代码。
最后发现并不是由于升级.net版本导致的,而是程序本身的问题: x64下MemoryStatus结构体中的成员有些不是4字节大小,而是8字节大小了。而我们的代码依然按4字节定义的。
我写了一个模拟程序来模拟出问题的代码。 参见后面的代码。
总结: 如果不是那么稳定的崩溃,恐怕解决这个问题还会花些时间的吧,how lucky I am!!!
BTW: 启用托管调试助手(MDA)有时候会对调试问题有极大的帮助,虽然我这次调试没有借助MDA,但我第一个想到的就是MDA。
完整的测试代码如下(如想重现问题,请编译x64版本)
- using System.Runtime.InteropServices;
- namespace ConsoleApplication1
- {
- class Program
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1815:OverrideEqualsAndOperatorEqualsOnValueTypes"),StructLayout(LayoutKind.Sequential)]
- public struct MemoryStatus
- {
- /// ---
- [MarshalAs(UnmanagedType.U4)]
- public uint dwLength;
- /// ---
- [MarshalAs(UnmanagedType.U4)]
- public uint dwMemoryLoad;
- /// ---
- [MarshalAs(UnmanagedType.U4)]
- public uint dwTotalPhys;
- /// ---
- [MarshalAs(UnmanagedType.U4)]
- public uint dwAvailPhys;
- /// ---
- [MarshalAs(UnmanagedType.U4)]
- public uint dwTotalPageFile;
- /// ---
- [MarshalAs(UnmanagedType.U4)]
- public uint dwAvailPageFile;
- /// ---
- [MarshalAs(UnmanagedType.U4)]
- public uint dwTotalVirtual;
- /// ---
- [MarshalAs(UnmanagedType.U4)]
- public uint dwAvailVirtual;
- }
- [DllImport("kernel32.dll")]
- public static extern void GlobalMemoryStatus(ref MemoryStatus memoryStatus);
- class CMyClass
- {
- public int n1 = 0;
- }
- struct CMyStruct
- {
- public CMyClass data;
- }
- static void Main(string[] args)
- {
- CMyStruct myObj = new CMyStruct(); myObj.data = new CMyClass();
- MemoryStatus memoryStatus = new MemoryStatus();
- // this line will corrupt the stack if we run in x64, because memoryStatus is defined on the stack
- GlobalMemoryStatus(ref memoryStatus);
- // myObj.data is corrupted
- System.Console.WriteLine("{0}", myObj.data);
- }
- }
- }