我正在开发一个使用标准 PKCS#11 访问智能卡的应用程序。目前,该应用程序在 Ubuntu 和 OS X 上都运行良好。现在我将它移植到 Windows,但是每当我从运行时链接的 pkcs#11 库中调用函数时,我都会收到“访问冲突”异常.
下面我尝试重现我的代码的 SSCCE(异常发生的地方用注释标识)。
void * libraryHandle = NULL;
CK_RV rv;
CK_C_GetFunctionList pC_GetFunctionList;
CK_FUNCTION_LIST_PTR functions;
libraryHandle = LoadLibrary(L"C:\\WINDOWS\\system32\\pteidpkcs11.dll");
if (libraryHandle == NULL)
{
printf("Library not loaded\n");
exit(1);
}
pC_GetFunctionList = (CK_C_GetFunctionList) GetProcAddress((HMODULE)libraryHandle, "C_GetFunctionList");
if (pC_GetFunctionList == NULL)
{
printf("Function not loaded\n");
FreeLibrary((HMODULE)libraryHandle);
exit(1);
}
rv = (*pC_GetFunctionList) (&functions);
assert(rv == CKR_OK);
printf("Point A\n");
if(functions == NULL)
{
printf("Functions not loaded\n");
FreeLibrary((HMODULE)libraryHandle);
exit(1);
}
printf("%u - %u\n",functions->version.major, functions->version.minor); // Prints without problems
rv = (*functions->C_Initialize) (NULL_PTR); //THIS IS THE PLACE WHERE I AM GETTING THE ACCESS VIOLATION
assert(rv == CKR_OK);
//printf("Point B\n");
FreeLibrary((HMODULE)libraryHandle);
当我调试应用程序时,结构“CK_FUNCTION_LIST_PTR 函数”似乎是有效的。
有谁知道是什么导致了这个异常?
我正在使用 Visual Studio 2010 Ultimate 和 Windows XP SP3。
谢谢!
(PS:我已经尝试使用库中的“GetProcAddress”加载函数“C_Initialize”,并且成功了)
- - 编辑
CK_FUNCTION_LIST 定义
struct CK_FUNCTION_LIST {
CK_VERSION version; /* Cryptoki version */
/* Pile all the function pointers into the CK_FUNCTION_LIST. */
/* pkcs11f.h has all the information about the Cryptoki
* function prototypes. */
#include "pkcs11f.h"
};