summaryrefslogtreecommitdiff
path: root/src/windows/csp/RegDll.cpp
blob: bc5418b998483d0ecefb8e26f11740cae3d6aaae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/** BEGIN COPYRIGHT BLOCK
* This Program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; version 2 of the License.
*
* This Program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA.
*
* Copyright (C) 2006 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/

/*****************************************************************
/
/ File   :   RegDll.cpp
/ Date   :   July 20, 2006
/ Purpose:   Register our Capi provider
/
******************************************************************/

#include "csp.h"
#include "windows.h"
#include "winreg.h"
#include "fcntl.h"
#include "io.h"

extern HINSTANCE g_hModule;


#define WINDOWS_CSP_PROVIDER \
	"SOFTWARE\\Microsoft\\Cryptography\\Defaults\\Provider"
// Windows key values
#define TYPE_KEY		"Type"
#define IMAGE_KEY		"Image Path"
#define SIG_KEY			"Signature"

// CSP specific key values
#define LOG_KEY			"Logging"
#define KEYGEN_KEY		"KeyGenHack"
#define PIN_KEY			"PIN"
#define MODULE_KEY		"PKCS11Module"
#define DEFAULT_PKCS11_MODULE	"coolkeypk11.dll"
#define DEFAULT_PIN		"1234"


//
// set the key value if it doesn't exist
//
static LONG 
regSetValueIf(HKEY hKey, LPCTSTR lpSubKey, 
  		DWORD dwType, const BYTE *lpData, DWORD cbData)
{
    DWORD size;
    LONG wrc = RegQueryValueEx(hKey,lpSubKey, 0, NULL, NULL, &size);
    if (wrc == ERROR_SUCCESS) {
	return wrc;
    }
    return RegSetValueEx(hKey, lpSubKey, 0, dwType, lpData, cbData);
}

static LONG
getThisLibraryName(char **returnedLibName, DWORD *returnedLibLen)
{
    char *cspLibraryName;
    DWORD cspLibraryLen;
    char myModuleName[MAX_PATH];

    *returnedLibName = NULL;
    *returnedLibLen = 0;

    cspLibraryLen = GetModuleFileName(g_hModule, 
				myModuleName, sizeof(myModuleName));
    if (cspLibraryLen == 0) {
	return GetLastError();
    }
    cspLibraryName = (char *)malloc(cspLibraryLen);
    if (cspLibraryName == NULL) {
	return ERROR_NOT_ENOUGH_MEMORY;
    }
    memcpy(cspLibraryName, myModuleName, cspLibraryLen);
    *returnedLibName = cspLibraryName;
    *returnedLibLen = cspLibraryLen;
    return ERROR_SUCCESS;
}

#define SIG_SUFFIX ".sig"

static char *
getSigFileName(const char *libName)
{
    int libLen = strlen(libName);
    char *sigFile = (char *)malloc(libLen+sizeof(SIG_SUFFIX));
    char *ext;

    if (sigFile == NULL) {
	return NULL;
    }

    ext = (char *) strrchr(libName, '.');
    if (ext) {
	libLen = ext - libName;
    }
    memcpy(sigFile,libName,libLen);
    memcpy(&sigFile[libLen],SIG_SUFFIX,sizeof(SIG_SUFFIX));
    return sigFile;
}

static DWORD
getFileSize(int fd)
{
   unsigned long offset;
   unsigned long current;

   current = lseek(fd, 0, SEEK_CUR);
   offset = lseek(fd, 0, SEEK_END);
   lseek(fd, current, SEEK_SET);
   return offset;
}

static LONG
getSignature(const char *cspLibrary, unsigned char **returnedSig, 
		DWORD *returnedSigLen)
{
    char *sigFile = getSigFileName(cspLibrary);
    int fd;
    unsigned char *signature = NULL;
    DWORD signatureLen;
    int error;
    LONG wrc = ERROR_SUCCESS;

    *returnedSig = NULL;
    *returnedSigLen = 0;

    if (sigFile == NULL) {
	return ERROR_NOT_ENOUGH_MEMORY;
    }

    fd = open (sigFile, O_RDONLY | O_BINARY);
    free(sigFile);
    if (fd < 0) {
	return GetLastError();
    }
    signatureLen = getFileSize(fd);

    signature = (unsigned char *)malloc(signatureLen);
    if (signature == NULL) {
	wrc = ERROR_NOT_ENOUGH_MEMORY;
	goto loser;
    }
    error = read(fd, signature, signatureLen);
    if (error != signatureLen) {
	wrc = (error < 0) ? GetLastError() : ERROR_FILE_NOT_FOUND;
	goto loser;
    }

    *returnedSig = signature;
    *returnedSigLen = signatureLen;
    
loser:
    close(fd);
    if (signature && (wrc != ERROR_SUCCESS) ) {
	free(signature);
    }
    return wrc;
}

	



STDAPI
DllUnregisterServer(void)
{
    HKEY provKey;
    DWORD disp;
    LONG wrc;

    wrc = RegCreateKeyEx(HKEY_LOCAL_MACHINE, WINDOWS_CSP_PROVIDER, 0, NULL,
			  REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, 0, 
			  &provKey, &disp);
    if (wrc != ERROR_SUCCESS) {
	return HRESULT_FROM_WIN32(wrc);
    }
    RegDeleteKey(provKey, PROVIDER_NAME);
    RegCloseKey(provKey);
    return S_OK;
}


STDAPI
DllRegisterServer(void)
{
    HKEY provKey = NULL;
    HKEY cspKey = NULL;
    char *cspLibrary = NULL;
    unsigned char *signature = NULL;
    DWORD cspLibraryLen, signatureLen;
    DWORD dvalue;
    DWORD disp;
    LONG wrc;

    wrc = RegCreateKeyEx(HKEY_LOCAL_MACHINE, WINDOWS_CSP_PROVIDER, 0, NULL,
			  REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, 0, 
			  &provKey, &disp);
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    wrc = RegCreateKeyEx(provKey, PROVIDER_NAME, 0, NULL,
			  REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, 0, 
			  &cspKey, &disp);
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    dvalue = PROVIDER_TYPE;
    wrc = RegSetValueEx(cspKey, TYPE_KEY, 0, REG_DWORD, 
			(BYTE *)&dvalue, sizeof(dvalue));
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    dvalue = 0;
    wrc = regSetValueIf(cspKey, LOG_KEY, REG_DWORD, 
			(BYTE *)&dvalue, sizeof(dvalue));
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    dvalue = 1;
    wrc = regSetValueIf(cspKey, KEYGEN_KEY, REG_DWORD, 
			(BYTE *)&dvalue, sizeof(dvalue));
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    wrc = regSetValueIf(cspKey, PIN_KEY, REG_DWORD, 
			(BYTE *)DEFAULT_PIN, sizeof(DEFAULT_PIN));
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    wrc = regSetValueIf(cspKey, MODULE_KEY, REG_SZ, 
	(BYTE *)DEFAULT_PKCS11_MODULE, sizeof(DEFAULT_PKCS11_MODULE));
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    wrc = getThisLibraryName(&cspLibrary, &cspLibraryLen);
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    wrc = RegSetValueEx(cspKey, IMAGE_KEY, 0, REG_SZ, 
			(BYTE *)cspLibrary, cspLibraryLen);
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    wrc = getSignature(cspLibrary, &signature, &signatureLen);
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
    wrc = RegSetValueEx(cspKey, SIG_KEY, 0, REG_BINARY, 
			signature, signatureLen);
    if (wrc != ERROR_SUCCESS) {
	goto loser;
    }
loser:
    if (signature) {
	free(signature);
    }
    if (cspLibrary) {
	free(cspLibrary);
    }
    if (cspKey) {
	RegCloseKey(cspKey);
	if (wrc != ERROR_SUCCESS) {
	    RegDeleteKey(provKey, PROVIDER_NAME);
	}
    }
    if (provKey) {
	RegCloseKey(provKey);
    }
    return HRESULT_FROM_WIN32(wrc);
}