remove the CVSish $Id$ lines
[platform/upstream/curl.git] / lib / curl_sspi.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at http://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22
23 #include "setup.h"
24
25 #ifdef USE_WINDOWS_SSPI
26
27 #include <curl/curl.h>
28
29 #include "curl_sspi.h"
30
31 #define _MPRINTF_REPLACE /* use our functions only */
32 #include <curl/mprintf.h>
33
34 #include "curl_memory.h"
35 /* The last #include file should be: */
36 #include "memdebug.h"
37
38
39 /* Handle of security.dll or secur32.dll, depending on Windows version */
40 HMODULE s_hSecDll = NULL;
41
42 /* Pointer to SSPI dispatch table */
43 PSecurityFunctionTableA s_pSecFn = NULL;
44
45
46 /*
47  * Curl_sspi_global_init()
48  *
49  * This is used to load the Security Service Provider Interface (SSPI)
50  * dynamic link library portably across all Windows versions, without
51  * the need to directly link libcurl, nor the application using it, at
52  * build time.
53  *
54  * Once this function has been executed, Windows SSPI functions can be
55  * called through the Security Service Provider Interface dispatch table.
56  */
57
58 CURLcode
59 Curl_sspi_global_init(void)
60 {
61   OSVERSIONINFO osver;
62   INIT_SECURITY_INTERFACE_A pInitSecurityInterface;
63
64   /* If security interface is not yet initialized try to do this */
65   if(s_hSecDll == NULL) {
66
67     /* Find out Windows version */
68     memset(&osver, 0, sizeof(osver));
69     osver.dwOSVersionInfoSize = sizeof(osver);
70     if(! GetVersionEx(&osver))
71       return CURLE_FAILED_INIT;
72
73     /* Security Service Provider Interface (SSPI) functions are located in
74      * security.dll on WinNT 4.0 and in secur32.dll on Win9x. Win2K and XP
75      * have both these DLLs (security.dll forwards calls to secur32.dll) */
76
77     /* Load SSPI dll into the address space of the calling process */
78     if(osver.dwPlatformId == VER_PLATFORM_WIN32_NT
79       && osver.dwMajorVersion == 4)
80       s_hSecDll = LoadLibrary("security.dll");
81     else
82       s_hSecDll = LoadLibrary("secur32.dll");
83     if(! s_hSecDll)
84       return CURLE_FAILED_INIT;
85
86     /* Get address of the InitSecurityInterfaceA function from the SSPI dll */
87     pInitSecurityInterface = (INIT_SECURITY_INTERFACE_A)
88       GetProcAddress(s_hSecDll, "InitSecurityInterfaceA");
89     if(! pInitSecurityInterface)
90       return CURLE_FAILED_INIT;
91
92     /* Get pointer to Security Service Provider Interface dispatch table */
93     s_pSecFn = pInitSecurityInterface();
94     if(! s_pSecFn)
95       return CURLE_FAILED_INIT;
96
97   }
98   return CURLE_OK;
99 }
100
101
102 /*
103  * Curl_sspi_global_cleanup()
104  *
105  * This deinitializes the Security Service Provider Interface from libcurl.
106  */
107
108 void
109 Curl_sspi_global_cleanup(void)
110 {
111   if(s_hSecDll) {
112     FreeLibrary(s_hSecDll);
113     s_hSecDll = NULL;
114     s_pSecFn = NULL;
115   }
116 }
117
118 #endif /* USE_WINDOWS_SSPI */