diff options
author | Stef Walter <stefw@gnome.org> | 2013-02-06 22:16:42 +0100 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2013-02-20 10:17:54 +0100 |
commit | 95ec58961a480c15fe780bbce6d6cd974f478407 (patch) | |
tree | ed8044874aec4d1a5a73c5a2dc7da55147fc19c5 /trust/module.c | |
parent | c6ebe7eb68e07e4f22c7b7ede14a1e4f04e893b7 (diff) | |
download | p11-kit-95ec58961a480c15fe780bbce6d6cd974f478407.tar.gz |
Only do shared object and DLL initialization in libraries
Don't do library initialization on shared object load when not running
in a library. We'll want to plug into this and do different things
per library in the future.
Diffstat (limited to 'trust/module.c')
-rw-r--r-- | trust/module.c | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/trust/module.c b/trust/module.c index ab28095..2583b2b 100644 --- a/trust/module.c +++ b/trust/module.c @@ -1506,6 +1506,7 @@ __declspec(dllexport) CK_RV C_GetFunctionList (CK_FUNCTION_LIST_PTR_PTR list) { + p11_library_init_once (); return sys_C_GetFunctionList (list); } @@ -1515,3 +1516,57 @@ p11_module_next_id (void) static CK_ULONG unique = 0x10; return (unique)++; } + +#ifdef OS_UNIX + +void p11_trust_module_init (void); + +void p11_trust_module_fini (void); + +#ifdef __GNUC__ +__attribute__((constructor)) +#endif +void +p11_trust_module_init (void) +{ + p11_library_init_once (); +} + +#ifdef __GNUC__ +__attribute__((destructor)) +#endif +void +p11_trust_module_fini (void) +{ + p11_library_uninit (); +} + +#endif /* OS_UNIX */ + +#ifdef OS_WIN32 + +BOOL WINAPI +DllMain (HINSTANCE instance, + DWORD reason, + LPVOID reserved) +{ + LPVOID data; + + switch (reason) { + case DLL_PROCESS_ATTACH: + p11_library_init (); + break; + case DLL_THREAD_DETACH: + p11_library_thread_cleanup (); + break; + case DLL_PROCESS_DETACH: + p11_library_uninit (); + break; + default: + break; + } + + return TRUE; +} + +#endif /* OS_WIN32 */ |