在一个进程中混合和匹配 Visual C++ 运行时 DLL 文件有多糟糕?

2021-12-18 00:00:00 dll c winapi visual-c++ c++

我有一个使用 Visual Studio 2012 构建的应用程序,因此它依赖于 MSVCP110.DLLMSVCR110.DLL.我正在使用另一个 DLL 文件,它似乎是用 Visual Studio 2010 构建的,并且依赖于 MSVCP100.DLLMSVCR100.DLL.我的另一个 DLL 是使用 Visual Studio 2008 构建的,并且依赖于 MSVCR90.DLL.

I have an application that is built with Visual Studio 2012, and thus it depends on MSVCP110.DLL and MSVCR110.DLL. I'm using another DLL file, which seems to have been built with Visual Studio 2010 and depends on MSVCP100.DLL and MSVCR100.DLL. Yet another DLL I have was build with Visual Studio 2008 and depends on MSVCR90.DLL.

这是件坏事吗?真的是坏事吗?我应该担心吗?我问的原因是运行时堆分配器抱怨堆损坏.这可能与混合运行时版本有关吗?

Is this a bad thing? A really bad thing? Should I be worried? The reason I ask is that the runtime heap allocator is complaining about heap corruption. Could this be related to the mixed runtime versions?

推荐答案

混合和匹配来自不同编译器版本的 Visual Studio 运行时是不安全的,主要是因为每个运行时都会创建自己独立的堆.由于堆将完全独立,因此您不能使用 1 个堆分配内存并将其释放到不同的堆中.这样做会破坏你的堆.损坏通常不会导致立即崩溃,因为在接下来的几次分配或解除分配中可能无法访问堆的损坏部分,因此可能很难调试.

It's not safe to mix and match Visual Studio runtimes from different compiler versions mainly because each runtime will create its own independent heap. Since the heaps will be totally independent you can not allocate memory using 1 heap and free it in a different heap. Doing so will corrupt your heaps. The corruption does not usually cause an immediate crash since the corrupt part of the heap may not be accessed on the next few allocations or deallocations so it can be very hard to debug.

对于具有与应用程序不同的堆的单个 dll 的情况,可以以非常有限的方式解决该问题.您必须隔离 dll,以便 dll 的所有分配和解除分配仅发生在 dll 内部.而且隔离也必须走另一条路.如果没有隔离,dll 将无法安全地从应用程序中释放内存.

For the case of a single dll having a different heap than the application it is possible to work around the problem in a very limited way. You would have to isolate the dll such that all allocations and deallocations of dll happens only inside of the dll. And also isolation would have to go the other way as well. The dll will not be able to safely free memory from the applicaton without isolation.

有关混合 CRT 版本导致的堆损坏的更多信息,请访问:http://siomsystems.com/mixing-visual-studio-versions/

More info on heap corruption caused by mixing CRT versions can be found here: http://siomsystems.com/mixing-visual-studio-versions/

编辑(2020 年 4 月 1 日):上面的答案早于 Visual Studio 2015.Visual Studio 2015 到 2019 彼此二进制兼容,但与任何以前的版本都不兼容.

Edit (April 1, 2020): The answer above predates Visual Studio 2015. Visual Studio 2015 through 2019 are binary compatible with each other but not compatible with any previous version.

以下链接讨论了这些版本之间的二进制兼容性:https://docs.microsoft.com/en-us/cpp/porting/binary-compat-2015-2017?view=vs-2019

The following link discusses the binary compatibility between these versions: https://docs.microsoft.com/en-us/cpp/porting/binary-compat-2015-2017?view=vs-2019

相关文章