diff options
| author | Kevin Wasserman <kevin.wasserman@painless-security.com> | 2012-07-17 14:25:39 -0400 |
|---|---|---|
| committer | Ben Kaduk <kaduk@mit.edu> | 2012-08-23 15:29:42 -0400 |
| commit | fd2d1932d262e6e342f795f9aaab2da62585fae2 (patch) | |
| tree | 413fb74e0a3bd7fae7c12b5a49bba01e81c6bb3f /src/windows/leash | |
| parent | 1aac6932b77e7dd13a43f1d098b39313dc6474ae (diff) | |
| download | krb5-fd2d1932d262e6e342f795f9aaab2da62585fae2.tar.gz krb5-fd2d1932d262e6e342f795f9aaab2da62585fae2.tar.xz krb5-fd2d1932d262e6e342f795f9aaab2da62585fae2.zip | |
Load additional krb5 and come_err funcs
Required for multiple identity management and for migration of code from
leashdll to leash proper.
Signed-off-by: Kevin Wasserman <kevin.wasserman@painless-security.com>
ticket: 7238 (new)
queue: kfw
target_version: 1.10.4
tags: pullup
Diffstat (limited to 'src/windows/leash')
| -rw-r--r-- | src/windows/leash/Leash.cpp | 56 | ||||
| -rw-r--r-- | src/windows/leash/Leash.h | 1 | ||||
| -rw-r--r-- | src/windows/leash/Lglobals.h | 27 |
3 files changed, 84 insertions, 0 deletions
diff --git a/src/windows/leash/Leash.cpp b/src/windows/leash/Leash.cpp index 0c68faf5e..a4469972e 100644 --- a/src/windows/leash/Leash.cpp +++ b/src/windows/leash/Leash.cpp @@ -55,6 +55,7 @@ HANDLE m_tgsReqMutex = 0; HWND CLeashApp::m_hProgram = 0; HINSTANCE CLeashApp::m_hLeashDLL = 0; +HINSTANCE CLeashApp::m_hComErr = 0; ////@#+Remove #ifndef NO_KRB4 HINSTANCE CLeashApp::m_hKrb4DLL = 0; @@ -625,6 +626,12 @@ FUNC_INFO krb4_fi[] = { }; #endif +// com_err funcitons +DECL_FUNC_PTR(error_message); +FUNC_INFO ce_fi[] = { + MAKE_FUNC_INFO(error_message), + END_FUNC_INFO +}; // psapi functions DECL_FUNC_PTR(GetModuleFileNameExA); @@ -669,6 +676,27 @@ DECL_FUNC_PTR(krb5_free_cred_contents); DECL_FUNC_PTR(krb5_cc_resolve); DECL_FUNC_PTR(krb5_unparse_name); DECL_FUNC_PTR(krb5_free_unparsed_name); +DECL_FUNC_PTR(krb5_cc_destroy); +DECL_FUNC_PTR(krb5_cccol_cursor_new); +DECL_FUNC_PTR(krb5_cccol_cursor_free); +DECL_FUNC_PTR(krb5_cccol_cursor_next); +DECL_FUNC_PTR(krb5_cc_start_seq_get); +DECL_FUNC_PTR(krb5_cc_next_cred); +DECL_FUNC_PTR(krb5_cc_end_seq_get); +DECL_FUNC_PTR(krb5_cc_get_name); +DECL_FUNC_PTR(krb5_cc_set_flags); +DECL_FUNC_PTR(krb5_is_config_principal); +DECL_FUNC_PTR(krb5_free_ticket); +DECL_FUNC_PTR(krb5_decode_ticket); +DECL_FUNC_PTR(krb5_cc_switch); +DECL_FUNC_PTR(krb5_build_principal_ext); +DECL_FUNC_PTR(krb5_get_renewed_creds); +DECL_FUNC_PTR(krb5_cc_initialize); +DECL_FUNC_PTR(krb5_cc_store_cred); +DECL_FUNC_PTR(krb5_cc_get_full_name); +DECL_FUNC_PTR(krb5_enctype_to_name); +DECL_FUNC_PTR(krb5_cc_get_type); +DECL_FUNC_PTR(krb5int_cc_user_set_default_name); FUNC_INFO krb5_fi[] = { MAKE_FUNC_INFO(krb5_cc_default_name), @@ -691,6 +719,27 @@ FUNC_INFO krb5_fi[] = { MAKE_FUNC_INFO(krb5_cc_resolve), MAKE_FUNC_INFO(krb5_unparse_name), MAKE_FUNC_INFO(krb5_free_unparsed_name), + MAKE_FUNC_INFO(krb5_cc_destroy), + MAKE_FUNC_INFO(krb5_cccol_cursor_new), + MAKE_FUNC_INFO(krb5_cccol_cursor_next), + MAKE_FUNC_INFO(krb5_cccol_cursor_free), + MAKE_FUNC_INFO(krb5_cc_start_seq_get), + MAKE_FUNC_INFO(krb5_cc_next_cred), + MAKE_FUNC_INFO(krb5_cc_end_seq_get), + MAKE_FUNC_INFO(krb5_cc_get_name), + MAKE_FUNC_INFO(krb5_cc_set_flags), + MAKE_FUNC_INFO(krb5_is_config_principal), + MAKE_FUNC_INFO(krb5_free_ticket), + MAKE_FUNC_INFO(krb5_decode_ticket), + MAKE_FUNC_INFO(krb5_cc_switch), + MAKE_FUNC_INFO(krb5_build_principal_ext), + MAKE_FUNC_INFO(krb5_get_renewed_creds), + MAKE_FUNC_INFO(krb5_cc_initialize), + MAKE_FUNC_INFO(krb5_cc_store_cred), + MAKE_FUNC_INFO(krb5_cc_get_full_name), + MAKE_FUNC_INFO(krb5_enctype_to_name), + MAKE_FUNC_INFO(krb5_cc_get_type), + MAKE_FUNC_INFO(krb5int_cc_user_set_default_name), END_FUNC_INFO }; @@ -738,6 +787,7 @@ BOOL CLeashApp::InitDLLs() #endif m_hKrb5DLL = AfxLoadLibrary(KERB5DLL); m_hKrb5ProfileDLL = AfxLoadLibrary(KERB5_PPROFILE_DLL); + m_hComErr - AfxLoadLibrary(COMERR_DLL); #ifndef NO_AFS afscompat_init(); @@ -767,6 +817,12 @@ BOOL CLeashApp::InitDLLs() return FALSE; } + if (!LoadFuncs(COMERR_DLL, ce_fi, &m_hComErr, 0, 0, 1, 0)) { + MessageBox(hwnd, + "Functions within " COMERR_DLL "didn't load properly!", + "Error", MB_OK); + return FALSE; + } //// #ifndef NO_KRB4 if (m_hKrb4DLL) diff --git a/src/windows/leash/Leash.h b/src/windows/leash/Leash.h index 557e40f2b..43c7da78a 100644 --- a/src/windows/leash/Leash.h +++ b/src/windows/leash/Leash.h @@ -106,6 +106,7 @@ private: public: static HWND m_hProgram; static HINSTANCE m_hLeashDLL; + static HINSTANCE m_hComErr; //// #ifndef NO_KRB4 static HINSTANCE m_hKrb4DLL; diff --git a/src/windows/leash/Lglobals.h b/src/windows/leash/Lglobals.h index 2ec5f756a..7ad47a24e 100644 --- a/src/windows/leash/Lglobals.h +++ b/src/windows/leash/Lglobals.h @@ -17,6 +17,7 @@ #define LEASHGLOBALS_H #include <tlhelp32.h> +#include <loadfuncs-com_err.h> #include <loadfuncs-krb5.h> ////#include <loadfuncs-krb.h> #include <loadfuncs-profile.h> @@ -167,6 +168,9 @@ extern DECL_FUNC_PTR(CreateToolhelp32Snapshot); extern DECL_FUNC_PTR(Module32First); extern DECL_FUNC_PTR(Module32Next); +// com_err functions +extern DECL_FUNC_PTR(error_message); + // krb5 functions extern DECL_FUNC_PTR(krb5_cc_default_name); extern DECL_FUNC_PTR(krb5_cc_set_default_name); @@ -185,6 +189,29 @@ extern DECL_FUNC_PTR(krb5_unparse_name); extern DECL_FUNC_PTR(krb5_free_unparsed_name); extern DECL_FUNC_PTR(krb5_free_principal); extern DECL_FUNC_PTR(krb5_cc_close); +extern DECL_FUNC_PTR(krb5_cc_default); +extern DECL_FUNC_PTR(krb5_cc_destroy); +extern DECL_FUNC_PTR(krb5_cc_set_flags); +extern DECL_FUNC_PTR(krb5_cc_get_name); +extern DECL_FUNC_PTR(krb5_cc_start_seq_get); +extern DECL_FUNC_PTR(krb5_cc_end_seq_get); +extern DECL_FUNC_PTR(krb5_cc_next_cred); +extern DECL_FUNC_PTR(krb5_cccol_cursor_new); +extern DECL_FUNC_PTR(krb5_cccol_cursor_next); +extern DECL_FUNC_PTR(krb5_cccol_cursor_free); +extern DECL_FUNC_PTR(krb5_decode_ticket); +extern DECL_FUNC_PTR(krb5_free_ticket); +extern DECL_FUNC_PTR(krb5_init_context); +extern DECL_FUNC_PTR(krb5_is_config_principal); +extern DECL_FUNC_PTR(krb5_cc_switch); +extern DECL_FUNC_PTR(krb5_build_principal_ext); +extern DECL_FUNC_PTR(krb5_get_renewed_creds); +extern DECL_FUNC_PTR(krb5_cc_initialize); +extern DECL_FUNC_PTR(krb5_cc_store_cred); +extern DECL_FUNC_PTR(krb5_cc_get_full_name); +extern DECL_FUNC_PTR(krb5_enctype_to_name); +extern DECL_FUNC_PTR(krb5_cc_get_type); +extern DECL_FUNC_PTR(krb5int_cc_user_set_default_name); // extern DECL_FUNC_PTR(krb5_get_host_realm); // profile functions |
