gpt4 book ai didi

c++ - LoadLibraryEx 忽略并排 list

转载 作者:太空狗 更新时间:2023-10-29 20:20:46 26 4
gpt4 key购买 nike

LoadLibraryEx 函数是否使用并排 list ?我有带有嵌入式 SxS list 的 bar.dll,该 list 描述了此 bar.dll 的版本,其他 dll 文件 foo.dll 具有将 bar.dll 列为依赖项并具有指定版本的 list 。但是当我尝试使用 LoadLibraryEx("bar.dll", NULL, 0) 从 foo.dll 加载 bar.dll 时,我看到(启用带有 gflags 的 sls)它忽略了这些 list ,并加载它在搜索路径中看到的第一个 bar.dll 版本,如果我定义 ISOLATION_AWARE_ENABLED 并使用 LoadLibrary 它会找到正确的版本,但是这个 ISOLATION_AWARE_ENABLED 没有为了不影响 LoadLibraryEx 的行为,我需要使用 LoadLibraryEx 加载正确的版本,因为 LoadLibraryEx 隐式用于延迟加载 dll。 LoadLibraryEx 应该这样工作,还是我的项目配置有问题?

foo 动态链接库

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity name="foo" version="0.1.2.3" type="win32"/>
<dependency>
<dependentAssembly>
<assemblyIdentity name="bar" version="0.1.2.3" type="win32" />
</dependentAssembly>
</dependency>
<file name="foo.dll">
</file>
</assembly>

bar.dll

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity name="bar" version="0.1.2.3" type="win32"/>
<file name="bar.dll">
</file>
</assembly>

最佳答案

LoadLibrary 使用调用线程的事件激活上下文。但是这个上下文是什么?为什么它必须来自您的 foo.dll ?为什么不来自 xyz.dll 或来自 exe?实际上大多数时间事件激活上下文正是来自 exe。

如果 dll 有自己的 list - 系统为这个 dll 创建激活上下文并保存它(直到 dll 被卸载)但不激活它。这显然是 - 我们有多个 dll 正在处理,但事件上下文只有一个 - 从哪个 dll 选择它?来自exe。但是系统在调用它的入口点之前激活(使其成为当前事件的)dll 激活上下文。并在入口点返回后停用它。但是在另一个 dll 函数中说 - (谁调用它?)上下文已经不是来自你的 dll。

所以解决方案必须是下一个:

在dll中定义2个全局变量:

BOOL gActCtx;
HANDLE ghActCtx

DLL_PROCESS_ATTACH 上保存当前激活上下文(它来自您的 dll list )

gActCtx = GetCurrentActCtx(&ghActCtx);

DLL_PROCESS_DETACH 上释放它

if (gActCtx) ReleaseActCtx(ghActCtx);

当你需要加载bar.dll时,做下一步:

if (gActCtx)
{
ULONG_PTR Cookie;

if (ActivateActCtx(ghActCtx, &Cookie))
{
LoadLibraryExW(L"bar.dll", NULL, 0);

DeactivateActCtx(0, Cookie);
}
}

关于c++ - LoadLibraryEx 忽略并排 list ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48308530/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com