2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 2008 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
57 #include <openssl/crypto.h>
58 #include <openssl/buffer.h>
59 #include <openssl/bn.h>
61 #ifdef OPENSSL_SYS_WIN32
62 #ifndef OPENSSL_NO_CAPIENG
64 #include <openssl/rsa.h>
69 #define _WIN32_WINNT 0x0400
75 * This module uses several "new" interfaces, among which is
76 * CertGetCertificateContextProperty. CERT_KEY_PROV_INFO_PROP_ID is
77 * one of possible values you can pass to function in question. By
78 * checking if it's defined we can see if wincrypt.h and accompanying
79 * crypt32.lib are in shape. The native MingW32 headers up to and
80 * including __W32API_VERSION 3.14 lack of struct DSSPUBKEY and the
81 * defines CERT_STORE_PROV_SYSTEM_A and CERT_STORE_READONLY_FLAG,
82 * so we check for these too and avoid compiling.
83 * Yes, it's rather "weak" test and if compilation fails,
84 * then re-configure with -DOPENSSL_NO_CAPIENG.
86 #if defined(CERT_KEY_PROV_INFO_PROP_ID) && \
87 defined(CERT_STORE_PROV_SYSTEM_A) && \
88 defined(CERT_STORE_READONLY_FLAG)
89 # define __COMPILE_CAPIENG
90 #endif /* CERT_KEY_PROV_INFO_PROP_ID */
91 #endif /* OPENSSL_NO_CAPIENG */
92 #endif /* OPENSSL_SYS_WIN32 */
94 #ifdef __COMPILE_CAPIENG
96 #undef X509_EXTENSIONS
99 /* Definitions which may be missing from earlier version of headers */
100 #ifndef CERT_STORE_OPEN_EXISTING_FLAG
101 #define CERT_STORE_OPEN_EXISTING_FLAG 0x00004000
104 #ifndef CERT_STORE_CREATE_NEW_FLAG
105 #define CERT_STORE_CREATE_NEW_FLAG 0x00002000
108 #ifndef CERT_SYSTEM_STORE_CURRENT_USER
109 #define CERT_SYSTEM_STORE_CURRENT_USER 0x00010000
112 #include <openssl/engine.h>
113 #include <openssl/pem.h>
114 #include <openssl/x509v3.h>
116 #include "e_capi_err.h"
117 #include "e_capi_err.c"
120 static const char *engine_capi_id
= "capi";
121 static const char *engine_capi_name
= "CryptoAPI ENGINE";
123 typedef struct CAPI_CTX_st CAPI_CTX
;
124 typedef struct CAPI_KEY_st CAPI_KEY
;
126 static void capi_addlasterror(void);
127 static void capi_adderror(DWORD err
);
129 static void CAPI_trace(CAPI_CTX
*ctx
, char *format
, ...);
131 static int capi_list_providers(CAPI_CTX
*ctx
, BIO
*out
);
132 static int capi_list_containers(CAPI_CTX
*ctx
, BIO
*out
);
133 int capi_list_certs(CAPI_CTX
*ctx
, BIO
*out
, char *storename
);
134 void capi_free_key(CAPI_KEY
*key
);
136 static PCCERT_CONTEXT
capi_find_cert(CAPI_CTX
*ctx
, const char *id
, HCERTSTORE hstore
);
138 CAPI_KEY
*capi_find_key(CAPI_CTX
*ctx
, const char *id
);
140 static EVP_PKEY
*capi_load_privkey(ENGINE
*eng
, const char *key_id
,
141 UI_METHOD
*ui_method
, void *callback_data
);
142 static int capi_rsa_sign(int dtype
, const unsigned char *m
, unsigned int m_len
,
143 unsigned char *sigret
, unsigned int *siglen
, const RSA
*rsa
);
144 static int capi_rsa_priv_enc(int flen
, const unsigned char *from
,
145 unsigned char *to
, RSA
*rsa
, int padding
);
146 static int capi_rsa_priv_dec(int flen
, const unsigned char *from
,
147 unsigned char *to
, RSA
*rsa
, int padding
);
148 static int capi_rsa_free(RSA
*rsa
);
150 static DSA_SIG
*capi_dsa_do_sign(const unsigned char *digest
, int dlen
,
152 static int capi_dsa_free(DSA
*dsa
);
154 static int capi_load_ssl_client_cert(ENGINE
*e
, SSL
*ssl
,
155 STACK_OF(X509_NAME
) *ca_dn
, X509
**pcert
, EVP_PKEY
**pkey
,
156 STACK_OF(X509
) **pother
, UI_METHOD
*ui_method
, void *callback_data
);
158 static int cert_select_simple(ENGINE
*e
, SSL
*ssl
, STACK_OF(X509
) *certs
);
159 #ifdef OPENSSL_CAPIENG_DIALOG
160 static int cert_select_dialog(ENGINE
*e
, SSL
*ssl
, STACK_OF(X509
) *certs
);
163 typedef PCCERT_CONTEXT (WINAPI
*CERTDLG
)(HCERTSTORE
, HWND
, LPCWSTR
,
164 LPCWSTR
, DWORD
, DWORD
,
166 typedef HWND (WINAPI
*GETCONSWIN
)(void);
168 /* This structure contains CAPI ENGINE specific data:
169 * it contains various global options and affects how
170 * other functions behave.
173 #define CAPI_DBG_TRACE 2
174 #define CAPI_DBG_ERROR 1
179 /* Parameters to use for container lookup */
183 /* Certificate store name to use */
185 LPSTR ssl_client_store
;
186 /* System store flags */
189 /* Lookup string meanings in load_private_key */
190 /* Substring of subject: uses "storename" */
191 #define CAPI_LU_SUBSTR 1
192 /* Friendly name: uses storename */
193 #define CAPI_LU_FNAME 2
194 /* Container name: uses cspname, keytype */
195 #define CAPI_LU_CONTNAME 3
197 /* Info to dump with dumpcerts option */
198 /* Issuer and serial name strings */
199 #define CAPI_DMP_SUMMARY 0x1
201 #define CAPI_DMP_FNAME 0x2
202 /* Full X509_print dump */
203 #define CAPI_DMP_FULL 0x4
204 /* Dump PEM format certificate */
205 #define CAPI_DMP_PEM 0x8
206 /* Dump pseudo key (if possible) */
207 #define CAPI_DMP_PSKEY 0x10
208 /* Dump key info (if possible) */
209 #define CAPI_DMP_PKEYINFO 0x20
212 int (*client_cert_select
)(ENGINE
*e
, SSL
*ssl
, STACK_OF(X509
) *certs
);
214 CERTDLG certselectdlg
;
215 GETCONSWIN getconswindow
;
219 static CAPI_CTX
*capi_ctx_new();
220 static void capi_ctx_free(CAPI_CTX
*ctx
);
221 static int capi_ctx_set_provname(CAPI_CTX
*ctx
, LPSTR pname
, DWORD type
, int check
);
222 static int capi_ctx_set_provname_idx(CAPI_CTX
*ctx
, int idx
);
224 #define CAPI_CMD_LIST_CERTS ENGINE_CMD_BASE
225 #define CAPI_CMD_LOOKUP_CERT (ENGINE_CMD_BASE + 1)
226 #define CAPI_CMD_DEBUG_LEVEL (ENGINE_CMD_BASE + 2)
227 #define CAPI_CMD_DEBUG_FILE (ENGINE_CMD_BASE + 3)
228 #define CAPI_CMD_KEYTYPE (ENGINE_CMD_BASE + 4)
229 #define CAPI_CMD_LIST_CSPS (ENGINE_CMD_BASE + 5)
230 #define CAPI_CMD_SET_CSP_IDX (ENGINE_CMD_BASE + 6)
231 #define CAPI_CMD_SET_CSP_NAME (ENGINE_CMD_BASE + 7)
232 #define CAPI_CMD_SET_CSP_TYPE (ENGINE_CMD_BASE + 8)
233 #define CAPI_CMD_LIST_CONTAINERS (ENGINE_CMD_BASE + 9)
234 #define CAPI_CMD_LIST_OPTIONS (ENGINE_CMD_BASE + 10)
235 #define CAPI_CMD_LOOKUP_METHOD (ENGINE_CMD_BASE + 11)
236 #define CAPI_CMD_STORE_NAME (ENGINE_CMD_BASE + 12)
237 #define CAPI_CMD_STORE_FLAGS (ENGINE_CMD_BASE + 13)
239 static const ENGINE_CMD_DEFN capi_cmd_defns
[] = {
240 {CAPI_CMD_LIST_CERTS
,
242 "List all certificates in store",
243 ENGINE_CMD_FLAG_NO_INPUT
},
244 {CAPI_CMD_LOOKUP_CERT
,
246 "Lookup and output certificates",
247 ENGINE_CMD_FLAG_STRING
},
248 {CAPI_CMD_DEBUG_LEVEL
,
250 "debug level (1=errors, 2=trace)",
251 ENGINE_CMD_FLAG_NUMERIC
},
252 {CAPI_CMD_DEBUG_FILE
,
254 "debugging filename)",
255 ENGINE_CMD_FLAG_STRING
},
258 "Key type: 1=AT_KEYEXCHANGE (default), 2=AT_SIGNATURE",
259 ENGINE_CMD_FLAG_NUMERIC
},
263 ENGINE_CMD_FLAG_NO_INPUT
},
264 {CAPI_CMD_SET_CSP_IDX
,
267 ENGINE_CMD_FLAG_NUMERIC
},
268 {CAPI_CMD_SET_CSP_NAME
,
270 "Set CSP name, (default CSP used if not specified)",
271 ENGINE_CMD_FLAG_STRING
},
272 {CAPI_CMD_SET_CSP_TYPE
,
274 "Set CSP type, (default RSA_PROV_FULL)",
275 ENGINE_CMD_FLAG_NUMERIC
},
276 {CAPI_CMD_LIST_CONTAINERS
,
278 "list container names",
279 ENGINE_CMD_FLAG_NO_INPUT
},
280 {CAPI_CMD_LIST_OPTIONS
,
282 "Set list options (1=summary,2=friendly name, 4=full printout, 8=PEM output, 16=XXX, "
283 "32=private key info)",
284 ENGINE_CMD_FLAG_NUMERIC
},
285 {CAPI_CMD_LOOKUP_METHOD
,
287 "Set key lookup method (1=substring, 2=friendlyname, 3=container name)",
288 ENGINE_CMD_FLAG_NUMERIC
},
289 {CAPI_CMD_STORE_NAME
,
291 "certificate store name, default \"MY\"",
292 ENGINE_CMD_FLAG_STRING
},
293 {CAPI_CMD_STORE_FLAGS
,
295 "Certificate store flags: 1 = system store",
296 ENGINE_CMD_FLAG_NUMERIC
},
301 static int capi_idx
= -1;
302 static int rsa_capi_idx
= -1;
303 static int dsa_capi_idx
= -1;
304 static int cert_capi_idx
= -1;
306 static int capi_ctrl(ENGINE
*e
, int cmd
, long i
, void *p
, void (*f
)(void))
313 CAPIerr(CAPI_F_CAPI_CTRL
, CAPI_R_ENGINE_NOT_INITIALIZED
);
316 ctx
= ENGINE_get_ex_data(e
, capi_idx
);
317 out
= BIO_new_fp(stdout
, BIO_NOCLOSE
);
320 case CAPI_CMD_LIST_CSPS
:
321 ret
= capi_list_providers(ctx
, out
);
324 case CAPI_CMD_LIST_CERTS
:
325 ret
= capi_list_certs(ctx
, out
, NULL
);
328 case CAPI_CMD_LOOKUP_CERT
:
329 ret
= capi_list_certs(ctx
, out
, p
);
332 case CAPI_CMD_LIST_CONTAINERS
:
333 ret
= capi_list_containers(ctx
, out
);
336 case CAPI_CMD_STORE_NAME
:
338 OPENSSL_free(ctx
->storename
);
339 ctx
->storename
= BUF_strdup(p
);
340 CAPI_trace(ctx
, "Setting store name to %s\n", p
);
343 case CAPI_CMD_STORE_FLAGS
:
346 ctx
->store_flags
|= CERT_SYSTEM_STORE_LOCAL_MACHINE
;
347 ctx
->store_flags
&= ~CERT_SYSTEM_STORE_CURRENT_USER
;
351 ctx
->store_flags
|= CERT_SYSTEM_STORE_CURRENT_USER
;
352 ctx
->store_flags
&= ~CERT_SYSTEM_STORE_LOCAL_MACHINE
;
354 CAPI_trace(ctx
, "Setting flags to %d\n", i
);
357 case CAPI_CMD_DEBUG_LEVEL
:
358 ctx
->debug_level
= (int)i
;
359 CAPI_trace(ctx
, "Setting debug level to %d\n", ctx
->debug_level
);
362 case CAPI_CMD_DEBUG_FILE
:
363 ctx
->debug_file
= BUF_strdup(p
);
364 CAPI_trace(ctx
, "Setting debug file to %s\n", ctx
->debug_file
);
367 case CAPI_CMD_KEYTYPE
:
369 CAPI_trace(ctx
, "Setting key type to %d\n", ctx
->keytype
);
372 case CAPI_CMD_SET_CSP_IDX
:
373 ret
= capi_ctx_set_provname_idx(ctx
, i
);
376 case CAPI_CMD_LIST_OPTIONS
:
380 case CAPI_CMD_LOOKUP_METHOD
:
383 CAPIerr(CAPI_F_CAPI_CTRL
, CAPI_R_INVALID_LOOKUP_METHOD
);
386 ctx
->lookup_method
= i
;
389 case CAPI_CMD_SET_CSP_NAME
:
390 ret
= capi_ctx_set_provname(ctx
, p
, ctx
->csptype
, 1);
393 case CAPI_CMD_SET_CSP_TYPE
:
398 CAPIerr(CAPI_F_CAPI_CTRL
, CAPI_R_UNKNOWN_COMMAND
);
407 static RSA_METHOD capi_rsa_method
=
409 "CryptoAPI RSA method",
412 capi_rsa_priv_enc
, /* priv_enc */
413 capi_rsa_priv_dec
, /* priv_dec */
417 capi_rsa_free
, /* finish */
418 RSA_FLAG_SIGN_VER
, /* flags */
420 capi_rsa_sign
, /* rsa_sign */
424 static DSA_METHOD capi_dsa_method
=
426 "CryptoAPI DSA method",
427 capi_dsa_do_sign
, /* dsa_do_sign */
428 0, /* dsa_sign_setup */
429 0, /* dsa_do_verify */
433 capi_dsa_free
, /* finish */
436 0, /* dsa_paramgen */
440 static int capi_init(ENGINE
*e
)
443 const RSA_METHOD
*ossl_rsa_meth
;
444 const DSA_METHOD
*ossl_dsa_meth
;
448 capi_idx
= ENGINE_get_ex_new_index(0, NULL
, NULL
, NULL
, 0);
452 cert_capi_idx
= X509_get_ex_new_index(0, NULL
, NULL
, NULL
, 0);
454 /* Setup RSA_METHOD */
455 rsa_capi_idx
= RSA_get_ex_new_index(0, NULL
, NULL
, NULL
, 0);
456 ossl_rsa_meth
= RSA_PKCS1_SSLeay();
457 capi_rsa_method
.rsa_pub_enc
= ossl_rsa_meth
->rsa_pub_enc
;
458 capi_rsa_method
.rsa_pub_dec
= ossl_rsa_meth
->rsa_pub_dec
;
459 capi_rsa_method
.rsa_mod_exp
= ossl_rsa_meth
->rsa_mod_exp
;
460 capi_rsa_method
.bn_mod_exp
= ossl_rsa_meth
->bn_mod_exp
;
462 /* Setup DSA Method */
463 dsa_capi_idx
= DSA_get_ex_new_index(0, NULL
, NULL
, NULL
, 0);
464 ossl_dsa_meth
= DSA_OpenSSL();
465 capi_dsa_method
.dsa_do_verify
= ossl_dsa_meth
->dsa_do_verify
;
466 capi_dsa_method
.dsa_mod_exp
= ossl_dsa_meth
->dsa_mod_exp
;
467 capi_dsa_method
.bn_mod_exp
= ossl_dsa_meth
->bn_mod_exp
;
470 ctx
= capi_ctx_new();
474 ENGINE_set_ex_data(e
, capi_idx
, ctx
);
476 #ifdef OPENSSL_CAPIENG_DIALOG
478 HMODULE cryptui
= LoadLibrary(TEXT("CRYPTUI.DLL"));
479 HMODULE kernel
= GetModuleHandle(TEXT("KERNEL32.DLL"));
481 ctx
->certselectdlg
= (CERTDLG
)GetProcAddress(cryptui
, "CryptUIDlgSelectCertificateFromStore");
483 ctx
->getconswindow
= (GETCONSWIN
)GetProcAddress(kernel
, "GetConsoleWindow");
484 if (cryptui
&& !OPENSSL_isservice())
485 ctx
->client_cert_select
= cert_select_dialog
;
493 CAPIerr(CAPI_F_CAPI_INIT
, ERR_R_MALLOC_FAILURE
);
499 static int capi_destroy(ENGINE
*e
)
501 ERR_unload_CAPI_strings();
505 static int capi_finish(ENGINE
*e
)
508 ctx
= ENGINE_get_ex_data(e
, capi_idx
);
510 ENGINE_set_ex_data(e
, capi_idx
, NULL
);
515 /* CryptoAPI key application data. This contains
516 * a handle to the private key container (for sign operations)
517 * and a handle to the key (for decrypt operations).
522 /* Associated certificate context (if any) */
523 PCCERT_CONTEXT pcert
;
529 static int bind_capi(ENGINE
*e
)
531 if (!ENGINE_set_id(e
, engine_capi_id
)
532 || !ENGINE_set_name(e
, engine_capi_name
)
533 || !ENGINE_set_flags(e
, ENGINE_FLAGS_NO_REGISTER_ALL
)
534 || !ENGINE_set_init_function(e
, capi_init
)
535 || !ENGINE_set_finish_function(e
, capi_finish
)
536 || !ENGINE_set_destroy_function(e
, capi_destroy
)
537 || !ENGINE_set_RSA(e
, &capi_rsa_method
)
538 || !ENGINE_set_DSA(e
, &capi_dsa_method
)
539 || !ENGINE_set_load_privkey_function(e
, capi_load_privkey
)
540 || !ENGINE_set_load_ssl_client_cert_function(e
,
541 capi_load_ssl_client_cert
)
542 || !ENGINE_set_cmd_defns(e
, capi_cmd_defns
)
543 || !ENGINE_set_ctrl_function(e
, capi_ctrl
))
545 ERR_load_CAPI_strings();
551 #ifndef OPENSSL_NO_DYNAMIC_ENGINE
552 static int bind_helper(ENGINE
*e
, const char *id
)
554 if(id
&& (strcmp(id
, engine_capi_id
) != 0))
560 IMPLEMENT_DYNAMIC_CHECK_FN()
561 IMPLEMENT_DYNAMIC_BIND_FN(bind_helper
)
563 static ENGINE
*engine_capi(void)
565 ENGINE
*ret
= ENGINE_new();
576 void ENGINE_load_capi(void)
578 /* Copied from eng_[openssl|dyn].c */
579 ENGINE
*toadd
= engine_capi();
588 static int lend_tobn(BIGNUM
*bn
, unsigned char *bin
, int binlen
)
591 /* Reverse buffer in place: since this is a keyblob structure
592 * that will be freed up after conversion anyway it doesn't
593 * matter if we change it.
595 for(i
= 0; i
< binlen
/ 2; i
++)
599 bin
[i
] = bin
[binlen
- i
- 1];
600 bin
[binlen
- i
- 1] = c
;
603 if (!BN_bin2bn(bin
, binlen
, bn
))
608 /* Given a CAPI_KEY get an EVP_PKEY structure */
610 static EVP_PKEY
*capi_get_pkey(ENGINE
*eng
, CAPI_KEY
*key
)
612 unsigned char *pubkey
= NULL
;
617 EVP_PKEY
*ret
= NULL
;
618 if (!CryptExportKey(key
->key
, 0, PUBLICKEYBLOB
, 0, NULL
, &len
))
620 CAPIerr(CAPI_F_CAPI_GET_PKEY
, CAPI_R_PUBKEY_EXPORT_LENGTH_ERROR
);
625 pubkey
= OPENSSL_malloc(len
);
630 if (!CryptExportKey(key
->key
, 0, PUBLICKEYBLOB
, 0, pubkey
, &len
))
632 CAPIerr(CAPI_F_CAPI_GET_PKEY
, CAPI_R_PUBKEY_EXPORT_ERROR
);
637 bh
= (BLOBHEADER
*)pubkey
;
638 if (bh
->bType
!= PUBLICKEYBLOB
)
640 CAPIerr(CAPI_F_CAPI_GET_PKEY
, CAPI_R_INVALID_PUBLIC_KEY_BLOB
);
643 if (bh
->aiKeyAlg
== CALG_RSA_SIGN
|| bh
->aiKeyAlg
== CALG_RSA_KEYX
)
647 unsigned char *rsa_modulus
;
648 rp
= (RSAPUBKEY
*)(bh
+ 1);
649 if (rp
->magic
!= 0x31415352)
652 BIO_snprintf(magstr
, 10, "%lx", rp
->magic
);
653 CAPIerr(CAPI_F_CAPI_GET_PKEY
, CAPI_R_INVALID_RSA_PUBLIC_KEY_BLOB_MAGIC_NUMBER
);
654 ERR_add_error_data(2, "magic=0x", magstr
);
657 rsa_modulus
= (unsigned char *)(rp
+ 1);
658 rkey
= RSA_new_method(eng
);
665 if (!rkey
->e
|| !rkey
->n
)
668 if (!BN_set_word(rkey
->e
, rp
->pubexp
))
671 rsa_modlen
= rp
->bitlen
/ 8;
672 if (!lend_tobn(rkey
->n
, rsa_modulus
, rsa_modlen
))
675 RSA_set_ex_data(rkey
, rsa_capi_idx
, key
);
677 if (!(ret
= EVP_PKEY_new()))
680 EVP_PKEY_assign_RSA(ret
, rkey
);
684 else if (bh
->aiKeyAlg
== CALG_DSS_SIGN
)
689 dp
= (DSSPUBKEY
*)(bh
+ 1);
690 if (dp
->magic
!= 0x31535344)
693 BIO_snprintf(magstr
, 10, "%lx", dp
->magic
);
694 CAPIerr(CAPI_F_CAPI_GET_PKEY
, CAPI_R_INVALID_DSA_PUBLIC_KEY_BLOB_MAGIC_NUMBER
);
695 ERR_add_error_data(2, "magic=0x", magstr
);
698 dsa_plen
= dp
->bitlen
/ 8;
699 btmp
= (unsigned char *)(dp
+ 1);
700 dkey
= DSA_new_method(eng
);
706 dkey
->pub_key
= BN_new();
707 if (!dkey
->p
|| !dkey
->q
|| !dkey
->g
|| !dkey
->pub_key
)
709 if (!lend_tobn(dkey
->p
, btmp
, dsa_plen
))
712 if (!lend_tobn(dkey
->q
, btmp
, 20))
715 if (!lend_tobn(dkey
->g
, btmp
, dsa_plen
))
718 if (!lend_tobn(dkey
->pub_key
, btmp
, dsa_plen
))
722 DSA_set_ex_data(dkey
, dsa_capi_idx
, key
);
724 if (!(ret
= EVP_PKEY_new()))
727 EVP_PKEY_assign_DSA(ret
, dkey
);
733 BIO_snprintf(algstr
, 10, "%lx", bh
->aiKeyAlg
);
734 CAPIerr(CAPI_F_CAPI_GET_PKEY
, CAPI_R_UNSUPPORTED_PUBLIC_KEY_ALGORITHM
);
735 ERR_add_error_data(2, "aiKeyAlg=0x", algstr
);
742 OPENSSL_free(pubkey
);
754 CAPIerr(CAPI_F_CAPI_GET_PKEY
, ERR_R_MALLOC_FAILURE
);
759 static EVP_PKEY
*capi_load_privkey(ENGINE
*eng
, const char *key_id
,
760 UI_METHOD
*ui_method
, void *callback_data
)
765 ctx
= ENGINE_get_ex_data(eng
, capi_idx
);
769 CAPIerr(CAPI_F_CAPI_LOAD_PRIVKEY
, CAPI_R_CANT_FIND_CAPI_CONTEXT
);
773 key
= capi_find_key(ctx
, key_id
);
778 ret
= capi_get_pkey(eng
, key
);
786 /* CryptoAPI RSA operations */
788 int capi_rsa_priv_enc(int flen
, const unsigned char *from
,
789 unsigned char *to
, RSA
*rsa
, int padding
)
791 CAPIerr(CAPI_F_CAPI_RSA_PRIV_ENC
, CAPI_R_FUNCTION_NOT_SUPPORTED
);
795 int capi_rsa_sign(int dtype
, const unsigned char *m
, unsigned int m_len
,
796 unsigned char *sigret
, unsigned int *siglen
, const RSA
*rsa
)
806 ctx
= ENGINE_get_ex_data(rsa
->engine
, capi_idx
);
808 CAPI_trace(ctx
, "Called CAPI_rsa_sign()\n");
810 capi_key
= RSA_get_ex_data(rsa
, rsa_capi_idx
);
813 CAPIerr(CAPI_F_CAPI_RSA_SIGN
, CAPI_R_CANT_GET_KEY
);
816 /* Convert the signature type to a CryptoAPI algorithm ID */
828 alg
= CALG_SSL3_SHAMD5
;
833 BIO_snprintf(algstr
, 10, "%lx", dtype
);
834 CAPIerr(CAPI_F_CAPI_RSA_SIGN
, CAPI_R_UNSUPPORTED_ALGORITHM_NID
);
835 ERR_add_error_data(2, "NID=0x", algstr
);
842 /* Create the hash object */
843 if(!CryptCreateHash(capi_key
->hprov
, alg
, 0, 0, &hash
))
845 CAPIerr(CAPI_F_CAPI_RSA_SIGN
, CAPI_R_CANT_CREATE_HASH_OBJECT
);
849 /* Set the hash value to the value passed */
851 if(!CryptSetHashParam(hash
, HP_HASHVAL
, (unsigned char *)m
, 0))
853 CAPIerr(CAPI_F_CAPI_RSA_SIGN
, CAPI_R_CANT_SET_HASH_VALUE
);
859 /* Finally sign it */
860 slen
= RSA_size(rsa
);
861 if(!CryptSignHashA(hash
, capi_key
->keyspec
, NULL
, 0, sigret
, &slen
))
863 CAPIerr(CAPI_F_CAPI_RSA_SIGN
, CAPI_R_ERROR_SIGNING_HASH
);
870 /* Inplace byte reversal of signature */
871 for(i
= 0; i
< slen
/ 2; i
++)
875 sigret
[i
] = sigret
[slen
- i
- 1];
876 sigret
[slen
- i
- 1] = c
;
884 CryptDestroyHash(hash
);
889 int capi_rsa_priv_dec(int flen
, const unsigned char *from
,
890 unsigned char *to
, RSA
*rsa
, int padding
)
893 unsigned char *tmpbuf
;
896 ctx
= ENGINE_get_ex_data(rsa
->engine
, capi_idx
);
898 CAPI_trace(ctx
, "Called capi_rsa_priv_dec()\n");
901 capi_key
= RSA_get_ex_data(rsa
, rsa_capi_idx
);
904 CAPIerr(CAPI_F_CAPI_RSA_PRIV_DEC
, CAPI_R_CANT_GET_KEY
);
908 if(padding
!= RSA_PKCS1_PADDING
)
911 BIO_snprintf(errstr
, 10, "%d", padding
);
912 CAPIerr(CAPI_F_CAPI_RSA_PRIV_DEC
, CAPI_R_UNSUPPORTED_PADDING
);
913 ERR_add_error_data(2, "padding=", errstr
);
917 /* Create temp reverse order version of input */
918 if(!(tmpbuf
= OPENSSL_malloc(flen
)) )
920 CAPIerr(CAPI_F_CAPI_RSA_PRIV_DEC
, ERR_R_MALLOC_FAILURE
);
923 for(i
= 0; i
< flen
; i
++)
924 tmpbuf
[flen
- i
- 1] = from
[i
];
926 /* Finally decrypt it */
927 if(!CryptDecrypt(capi_key
->key
, 0, TRUE
, 0, tmpbuf
, &flen
))
929 CAPIerr(CAPI_F_CAPI_RSA_PRIV_DEC
, CAPI_R_DECRYPT_ERROR
);
931 OPENSSL_free(tmpbuf
);
934 else memcpy(to
, tmpbuf
, flen
);
936 OPENSSL_free(tmpbuf
);
941 static int capi_rsa_free(RSA
*rsa
)
944 capi_key
= RSA_get_ex_data(rsa
, rsa_capi_idx
);
945 capi_free_key(capi_key
);
946 RSA_set_ex_data(rsa
, rsa_capi_idx
, 0);
950 /* CryptoAPI DSA operations */
952 static DSA_SIG
*capi_dsa_do_sign(const unsigned char *digest
, int dlen
,
960 unsigned char csigbuf
[40];
962 ctx
= ENGINE_get_ex_data(dsa
->engine
, capi_idx
);
964 CAPI_trace(ctx
, "Called CAPI_dsa_do_sign()\n");
966 capi_key
= DSA_get_ex_data(dsa
, dsa_capi_idx
);
970 CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN
, CAPI_R_CANT_GET_KEY
);
976 CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN
, CAPI_R_INVALID_DIGEST_LENGTH
);
980 /* Create the hash object */
981 if(!CryptCreateHash(capi_key
->hprov
, CALG_SHA1
, 0, 0, &hash
))
983 CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN
, CAPI_R_CANT_CREATE_HASH_OBJECT
);
988 /* Set the hash value to the value passed */
989 if(!CryptSetHashParam(hash
, HP_HASHVAL
, (unsigned char *)digest
, 0))
991 CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN
, CAPI_R_CANT_SET_HASH_VALUE
);
997 /* Finally sign it */
998 slen
= sizeof(csigbuf
);
999 if(!CryptSignHashA(hash
, capi_key
->keyspec
, NULL
, 0, csigbuf
, &slen
))
1001 CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN
, CAPI_R_ERROR_SIGNING_HASH
);
1002 capi_addlasterror();
1007 ret
= DSA_SIG_new();
1012 if (!ret
->r
|| !ret
->s
)
1014 if (!lend_tobn(ret
->r
, csigbuf
, 20)
1015 || !lend_tobn(ret
->s
, csigbuf
+ 20, 20))
1026 OPENSSL_cleanse(csigbuf
, 40);
1027 CryptDestroyHash(hash
);
1031 static int capi_dsa_free(DSA
*dsa
)
1034 capi_key
= DSA_get_ex_data(dsa
, dsa_capi_idx
);
1035 capi_free_key(capi_key
);
1036 DSA_set_ex_data(dsa
, dsa_capi_idx
, 0);
1040 static void capi_vtrace(CAPI_CTX
*ctx
, int level
, char *format
, va_list argptr
)
1044 if (!ctx
|| (ctx
->debug_level
< level
) || (!ctx
->debug_file
))
1046 out
= BIO_new_file(ctx
->debug_file
, "a+");
1047 BIO_vprintf(out
, format
, argptr
);
1051 static void CAPI_trace(CAPI_CTX
*ctx
, char *format
, ...)
1054 va_start(args
, format
);
1055 capi_vtrace(ctx
, CAPI_DBG_TRACE
, format
, args
);
1059 static void capi_addlasterror(void)
1061 capi_adderror(GetLastError());
1064 static void capi_adderror(DWORD err
)
1067 BIO_snprintf(errstr
, 10, "%lX", err
);
1068 ERR_add_error_data(2, "Error code= 0x", errstr
);
1071 static char *wide_to_asc(LPWSTR wstr
)
1078 len_0
= (int)wcslen(wstr
)+1; /* WideCharToMultiByte expects int */
1079 sz
= WideCharToMultiByte(CP_ACP
,0,wstr
,len_0
,NULL
,0,NULL
,NULL
);
1082 CAPIerr(CAPI_F_WIDE_TO_ASC
, CAPI_R_WIN32_ERROR
);
1085 str
= OPENSSL_malloc(sz
);
1088 CAPIerr(CAPI_F_WIDE_TO_ASC
, ERR_R_MALLOC_FAILURE
);
1091 if (!WideCharToMultiByte(CP_ACP
,0,wstr
,len_0
,str
,sz
,NULL
,NULL
))
1094 CAPIerr(CAPI_F_WIDE_TO_ASC
, CAPI_R_WIN32_ERROR
);
1100 static int capi_get_provname(CAPI_CTX
*ctx
, LPSTR
*pname
, DWORD
*ptype
, DWORD idx
)
1104 CAPI_trace(ctx
, "capi_get_provname, index=%d\n", idx
);
1105 if (!CryptEnumProvidersA(idx
, NULL
, 0, ptype
, NULL
, &len
))
1107 err
= GetLastError();
1108 if (err
== ERROR_NO_MORE_ITEMS
)
1110 CAPIerr(CAPI_F_CAPI_GET_PROVNAME
, CAPI_R_CRYPTENUMPROVIDERS_ERROR
);
1114 name
= OPENSSL_malloc(len
);
1115 if (!CryptEnumProvidersA(idx
, NULL
, 0, ptype
, name
, &len
))
1117 err
= GetLastError();
1118 if (err
== ERROR_NO_MORE_ITEMS
)
1120 CAPIerr(CAPI_F_CAPI_GET_PROVNAME
, CAPI_R_CRYPTENUMPROVIDERS_ERROR
);
1125 CAPI_trace(ctx
, "capi_get_provname, returned name=%s, type=%d\n", name
, *ptype
);
1130 static int capi_list_providers(CAPI_CTX
*ctx
, BIO
*out
)
1134 LPSTR provname
= NULL
;
1135 CAPI_trace(ctx
, "capi_list_providers\n");
1136 BIO_printf(out
, "Available CSPs:\n");
1137 for(idx
= 0; ; idx
++)
1139 ret
= capi_get_provname(ctx
, &provname
, &ptype
, idx
);
1144 BIO_printf(out
, "%d. %s, type %d\n", idx
, provname
, ptype
);
1145 OPENSSL_free(provname
);
1150 static int capi_list_containers(CAPI_CTX
*ctx
, BIO
*out
)
1154 DWORD err
, idx
, flags
, buflen
= 0, clen
;
1156 CAPI_trace(ctx
, "Listing containers CSP=%s, type = %d\n", ctx
->cspname
, ctx
->csptype
);
1157 if (!CryptAcquireContextA(&hprov
, NULL
, ctx
->cspname
, ctx
->csptype
, CRYPT_VERIFYCONTEXT
))
1159 CAPIerr(CAPI_F_CAPI_LIST_CONTAINERS
, CAPI_R_CRYPTACQUIRECONTEXT_ERROR
);
1160 capi_addlasterror();
1163 if (!CryptGetProvParam(hprov
, PP_ENUMCONTAINERS
, NULL
, &buflen
, CRYPT_FIRST
))
1165 CAPIerr(CAPI_F_CAPI_LIST_CONTAINERS
, CAPI_R_ENUMCONTAINERS_ERROR
);
1166 capi_addlasterror();
1167 CryptReleaseContext(hprov
, 0);
1170 CAPI_trace(ctx
, "Got max container len %d\n", buflen
);
1173 cname
= OPENSSL_malloc(buflen
);
1176 CAPIerr(CAPI_F_CAPI_LIST_CONTAINERS
, ERR_R_MALLOC_FAILURE
);
1180 for (idx
= 0;;idx
++)
1186 flags
= CRYPT_FIRST
;
1189 if(!CryptGetProvParam(hprov
, PP_ENUMCONTAINERS
, cname
, &clen
, flags
))
1191 err
= GetLastError();
1192 if (err
== ERROR_NO_MORE_ITEMS
)
1194 CAPIerr(CAPI_F_CAPI_LIST_CONTAINERS
, CAPI_R_ENUMCONTAINERS_ERROR
);
1198 CAPI_trace(ctx
, "Container name %s, len=%d, index=%d, flags=%d\n", cname
, clen
, idx
, flags
);
1199 if (!cname
[0] && (clen
== buflen
))
1201 CAPI_trace(ctx
, "Enumerate bug: using workaround\n");
1204 BIO_printf(out
, "%d. %s\n", idx
, cname
);
1212 OPENSSL_free(cname
);
1213 CryptReleaseContext(hprov
, 0);
1218 CRYPT_KEY_PROV_INFO
*capi_get_prov_info(CAPI_CTX
*ctx
, PCCERT_CONTEXT cert
)
1221 CRYPT_KEY_PROV_INFO
*pinfo
;
1223 if(!CertGetCertificateContextProperty(cert
, CERT_KEY_PROV_INFO_PROP_ID
, NULL
, &len
))
1225 pinfo
= OPENSSL_malloc(len
);
1228 CAPIerr(CAPI_F_CAPI_GET_PROV_INFO
, ERR_R_MALLOC_FAILURE
);
1231 if(!CertGetCertificateContextProperty(cert
, CERT_KEY_PROV_INFO_PROP_ID
, pinfo
, &len
))
1233 CAPIerr(CAPI_F_CAPI_GET_PROV_INFO
, CAPI_R_ERROR_GETTING_KEY_PROVIDER_INFO
);
1234 capi_addlasterror();
1235 OPENSSL_free(pinfo
);
1241 static void capi_dump_prov_info(CAPI_CTX
*ctx
, BIO
*out
, CRYPT_KEY_PROV_INFO
*pinfo
)
1243 char *provname
= NULL
, *contname
= NULL
;
1246 BIO_printf(out
, " No Private Key\n");
1249 provname
= wide_to_asc(pinfo
->pwszProvName
);
1250 contname
= wide_to_asc(pinfo
->pwszContainerName
);
1251 if (!provname
|| !contname
)
1254 BIO_printf(out
, " Private Key Info:\n");
1255 BIO_printf(out
, " Provider Name: %s, Provider Type %d\n", provname
, pinfo
->dwProvType
);
1256 BIO_printf(out
, " Container Name: %s, Key Type %d\n", contname
, pinfo
->dwKeySpec
);
1259 OPENSSL_free(provname
);
1261 OPENSSL_free(contname
);
1264 char * capi_cert_get_fname(CAPI_CTX
*ctx
, PCCERT_CONTEXT cert
)
1269 CAPI_trace(ctx
, "capi_cert_get_fname\n");
1270 if (!CertGetCertificateContextProperty(cert
, CERT_FRIENDLY_NAME_PROP_ID
, NULL
, &dlen
))
1272 wfname
= OPENSSL_malloc(dlen
);
1273 if (CertGetCertificateContextProperty(cert
, CERT_FRIENDLY_NAME_PROP_ID
, wfname
, &dlen
))
1275 char *fname
= wide_to_asc(wfname
);
1276 OPENSSL_free(wfname
);
1279 CAPIerr(CAPI_F_CAPI_CERT_GET_FNAME
, CAPI_R_ERROR_GETTING_FRIENDLY_NAME
);
1280 capi_addlasterror();
1282 OPENSSL_free(wfname
);
1287 void capi_dump_cert(CAPI_CTX
*ctx
, BIO
*out
, PCCERT_CONTEXT cert
)
1291 unsigned long flags
= ctx
->dump_flags
;
1292 if (flags
& CAPI_DMP_FNAME
)
1295 fname
= capi_cert_get_fname(ctx
, cert
);
1298 BIO_printf(out
, " Friendly Name \"%s\"\n", fname
);
1299 OPENSSL_free(fname
);
1302 BIO_printf(out
, " <No Friendly Name>\n");
1305 p
= cert
->pbCertEncoded
;
1306 x
= d2i_X509(NULL
, &p
, cert
->cbCertEncoded
);
1308 BIO_printf(out
, " <Can't parse certificate>\n");
1309 if (flags
& CAPI_DMP_SUMMARY
)
1311 BIO_printf(out
, " Subject: ");
1312 X509_NAME_print_ex(out
, X509_get_subject_name(x
), 0, XN_FLAG_ONELINE
);
1313 BIO_printf(out
, "\n Issuer: ");
1314 X509_NAME_print_ex(out
, X509_get_issuer_name(x
), 0, XN_FLAG_ONELINE
);
1315 BIO_printf(out
, "\n");
1317 if (flags
& CAPI_DMP_FULL
)
1318 X509_print_ex(out
, x
, XN_FLAG_ONELINE
,0);
1320 if (flags
& CAPI_DMP_PKEYINFO
)
1322 CRYPT_KEY_PROV_INFO
*pinfo
;
1323 pinfo
= capi_get_prov_info(ctx
, cert
);
1324 capi_dump_prov_info(ctx
, out
, pinfo
);
1326 OPENSSL_free(pinfo
);
1329 if (flags
& CAPI_DMP_PEM
)
1330 PEM_write_bio_X509(out
, x
);
1334 HCERTSTORE
capi_open_store(CAPI_CTX
*ctx
, char *storename
)
1339 storename
= ctx
->storename
;
1342 CAPI_trace(ctx
, "Opening certificate store %s\n", storename
);
1344 hstore
= CertOpenStore(CERT_STORE_PROV_SYSTEM_A
, 0, 0,
1345 ctx
->store_flags
, storename
);
1348 CAPIerr(CAPI_F_CAPI_OPEN_STORE
, CAPI_R_ERROR_OPENING_STORE
);
1349 capi_addlasterror();
1354 int capi_list_certs(CAPI_CTX
*ctx
, BIO
*out
, char *id
)
1360 PCCERT_CONTEXT cert
= NULL
;
1362 storename
= ctx
->storename
;
1365 CAPI_trace(ctx
, "Listing certs for store %s\n", storename
);
1367 hstore
= capi_open_store(ctx
, storename
);
1372 cert
= capi_find_cert(ctx
, id
, hstore
);
1378 capi_dump_cert(ctx
, out
, cert
);
1379 CertFreeCertificateContext(cert
);
1385 LPWSTR fname
= NULL
;
1386 cert
= CertEnumCertificatesInStore(hstore
, cert
);
1389 BIO_printf(out
, "Certificate %d\n", idx
);
1390 capi_dump_cert(ctx
, out
, cert
);
1394 CertCloseStore(hstore
, 0);
1398 static PCCERT_CONTEXT
capi_find_cert(CAPI_CTX
*ctx
, const char *id
, HCERTSTORE hstore
)
1400 PCCERT_CONTEXT cert
= NULL
;
1403 switch(ctx
->lookup_method
)
1405 case CAPI_LU_SUBSTR
:
1406 return CertFindCertificateInStore(hstore
,
1407 X509_ASN_ENCODING
, 0,
1408 CERT_FIND_SUBJECT_STR_A
, id
, NULL
);
1412 cert
= CertEnumCertificatesInStore(hstore
, cert
);
1415 fname
= capi_cert_get_fname(ctx
, cert
);
1418 if (strcmp(fname
, id
))
1422 OPENSSL_free(fname
);
1432 static CAPI_KEY
*capi_get_key(CAPI_CTX
*ctx
, const char *contname
, char *provname
, DWORD ptype
, DWORD keyspec
)
1436 key
= OPENSSL_malloc(sizeof(CAPI_KEY
));
1437 CAPI_trace(ctx
, "capi_get_key, contname=%s, provname=%s, type=%d\n",
1438 contname
, provname
, ptype
);
1439 if(ctx
->store_flags
& CERT_SYSTEM_STORE_LOCAL_MACHINE
)
1440 dwFlags
= CRYPT_MACHINE_KEYSET
;
1441 if (!CryptAcquireContextA(&key
->hprov
, contname
, provname
, ptype
, dwFlags
))
1443 CAPIerr(CAPI_F_CAPI_GET_KEY
, CAPI_R_CRYPTACQUIRECONTEXT_ERROR
);
1444 capi_addlasterror();
1447 if (!CryptGetUserKey(key
->hprov
, keyspec
, &key
->key
))
1449 CAPIerr(CAPI_F_CAPI_GET_KEY
, CAPI_R_GETUSERKEY_ERROR
);
1450 capi_addlasterror();
1451 CryptReleaseContext(key
->hprov
, 0);
1454 key
->keyspec
= keyspec
;
1463 static CAPI_KEY
*capi_get_cert_key(CAPI_CTX
*ctx
, PCCERT_CONTEXT cert
)
1465 CAPI_KEY
*key
= NULL
;
1466 CRYPT_KEY_PROV_INFO
*pinfo
= NULL
;
1467 char *provname
= NULL
, *contname
= NULL
;
1468 pinfo
= capi_get_prov_info(ctx
, cert
);
1471 provname
= wide_to_asc(pinfo
->pwszProvName
);
1472 contname
= wide_to_asc(pinfo
->pwszContainerName
);
1473 if (!provname
|| !contname
)
1475 key
= capi_get_key(ctx
, contname
, provname
,
1476 pinfo
->dwProvType
, pinfo
->dwKeySpec
);
1480 OPENSSL_free(pinfo
);
1482 OPENSSL_free(provname
);
1484 OPENSSL_free(contname
);
1488 CAPI_KEY
*capi_find_key(CAPI_CTX
*ctx
, const char *id
)
1490 PCCERT_CONTEXT cert
;
1492 CAPI_KEY
*key
= NULL
;
1493 switch (ctx
->lookup_method
)
1495 case CAPI_LU_SUBSTR
:
1497 hstore
= capi_open_store(ctx
, NULL
);
1500 cert
= capi_find_cert(ctx
, id
, hstore
);
1503 key
= capi_get_cert_key(ctx
, cert
);
1504 CertFreeCertificateContext(cert
);
1506 CertCloseStore(hstore
, 0);
1509 case CAPI_LU_CONTNAME
:
1510 key
= capi_get_key(ctx
, id
, ctx
->cspname
, ctx
->csptype
,
1518 void capi_free_key(CAPI_KEY
*key
)
1522 CryptDestroyKey(key
->key
);
1523 CryptReleaseContext(key
->hprov
, 0);
1525 CertFreeCertificateContext(key
->pcert
);
1530 /* Initialize a CAPI_CTX structure */
1532 static CAPI_CTX
*capi_ctx_new()
1535 ctx
= OPENSSL_malloc(sizeof(CAPI_CTX
));
1538 CAPIerr(CAPI_F_CAPI_CTX_NEW
, ERR_R_MALLOC_FAILURE
);
1541 ctx
->cspname
= NULL
;
1542 ctx
->csptype
= PROV_RSA_FULL
;
1543 ctx
->dump_flags
= CAPI_DMP_SUMMARY
|CAPI_DMP_FNAME
;
1544 ctx
->keytype
= AT_KEYEXCHANGE
;
1545 ctx
->storename
= NULL
;
1546 ctx
->ssl_client_store
= NULL
;
1547 ctx
->store_flags
= CERT_STORE_OPEN_EXISTING_FLAG
|
1548 CERT_STORE_READONLY_FLAG
|
1549 CERT_SYSTEM_STORE_CURRENT_USER
;
1550 ctx
->lookup_method
= CAPI_LU_SUBSTR
;
1551 ctx
->debug_level
= 0;
1552 ctx
->debug_file
= NULL
;
1553 ctx
->client_cert_select
= cert_select_simple
;
1557 static void capi_ctx_free(CAPI_CTX
*ctx
)
1559 CAPI_trace(ctx
, "Calling capi_ctx_free with %lx\n", ctx
);
1563 OPENSSL_free(ctx
->cspname
);
1564 if (ctx
->debug_file
)
1565 OPENSSL_free(ctx
->debug_file
);
1567 OPENSSL_free(ctx
->storename
);
1568 if (ctx
->ssl_client_store
)
1569 OPENSSL_free(ctx
->ssl_client_store
);
1573 static int capi_ctx_set_provname(CAPI_CTX
*ctx
, LPSTR pname
, DWORD type
, int check
)
1575 CAPI_trace(ctx
, "capi_ctx_set_provname, name=%s, type=%d\n", pname
, type
);
1579 if (!CryptAcquireContextA(&hprov
, NULL
, pname
, type
,
1580 CRYPT_VERIFYCONTEXT
))
1582 CAPIerr(CAPI_F_CAPI_CTX_SET_PROVNAME
, CAPI_R_CRYPTACQUIRECONTEXT_ERROR
);
1583 capi_addlasterror();
1586 CryptReleaseContext(hprov
, 0);
1589 OPENSSL_free(ctx
->cspname
);
1590 ctx
->cspname
= BUF_strdup(pname
);
1591 ctx
->csptype
= type
;
1595 static int capi_ctx_set_provname_idx(CAPI_CTX
*ctx
, int idx
)
1600 if (capi_get_provname(ctx
, &pname
, &type
, idx
) != 1)
1602 res
= capi_ctx_set_provname(ctx
, pname
, type
, 0);
1603 OPENSSL_free(pname
);
1607 static int cert_issuer_match(STACK_OF(X509_NAME
) *ca_dn
, X509
*x
)
1611 /* Special case: empty list: match anything */
1612 if (sk_X509_NAME_num(ca_dn
) <= 0)
1614 for (i
= 0; i
< sk_X509_NAME_num(ca_dn
); i
++)
1616 nm
= sk_X509_NAME_value(ca_dn
, i
);
1617 if (!X509_NAME_cmp(nm
, X509_get_issuer_name(x
)))
1625 static int capi_load_ssl_client_cert(ENGINE
*e
, SSL
*ssl
,
1626 STACK_OF(X509_NAME
) *ca_dn
, X509
**pcert
, EVP_PKEY
**pkey
,
1627 STACK_OF(X509
) **pother
, UI_METHOD
*ui_method
, void *callback_data
)
1629 STACK_OF(X509
) *certs
= NULL
;
1633 int i
, client_cert_idx
;
1635 PCCERT_CONTEXT cert
= NULL
, excert
= NULL
;
1638 ctx
= ENGINE_get_ex_data(e
, capi_idx
);
1643 storename
= ctx
->ssl_client_store
;
1647 hstore
= capi_open_store(ctx
, storename
);
1650 /* Enumerate all certificates collect any matches */
1653 cert
= CertEnumCertificatesInStore(hstore
, cert
);
1656 p
= cert
->pbCertEncoded
;
1657 x
= d2i_X509(NULL
, &p
, cert
->cbCertEncoded
);
1660 CAPI_trace(ctx
, "Can't Parse Certificate %d\n", i
);
1663 if (cert_issuer_match(ca_dn
, x
)
1664 && X509_check_purpose(x
, X509_PURPOSE_SSL_CLIENT
, 0))
1666 key
= capi_get_cert_key(ctx
, cert
);
1672 /* Match found: attach extra data to it so
1673 * we can retrieve the key later.
1675 excert
= CertDuplicateCertificateContext(cert
);
1676 key
->pcert
= excert
;
1677 X509_set_ex_data(x
, cert_capi_idx
, key
);
1680 certs
= sk_X509_new_null();
1682 sk_X509_push(certs
, x
);
1690 CertFreeCertificateContext(cert
);
1692 CertCloseStore(hstore
, 0);
1698 /* Select the appropriate certificate */
1700 client_cert_idx
= ctx
->client_cert_select(e
, ssl
, certs
);
1702 /* Set the selected certificate and free the rest */
1704 for(i
= 0; i
< sk_X509_num(certs
); i
++)
1706 x
= sk_X509_value(certs
, i
);
1707 if (i
== client_cert_idx
)
1711 key
= X509_get_ex_data(x
, cert_capi_idx
);
1717 sk_X509_free(certs
);
1722 /* Setup key for selected certificate */
1724 key
= X509_get_ex_data(*pcert
, cert_capi_idx
);
1725 *pkey
= capi_get_pkey(e
, key
);
1726 X509_set_ex_data(*pcert
, cert_capi_idx
, NULL
);
1733 /* Simple client cert selection function: always select first */
1735 static int cert_select_simple(ENGINE
*e
, SSL
*ssl
, STACK_OF(X509
) *certs
)
1740 #ifdef OPENSSL_CAPIENG_DIALOG
1742 /* More complex cert selection function, using standard function
1743 * CryptUIDlgSelectCertificateFromStore() to produce a dialog box.
1746 /* Definitions which are in cryptuiapi.h but this is not present in older
1747 * versions of headers.
1750 #ifndef CRYPTUI_SELECT_LOCATION_COLUMN
1751 #define CRYPTUI_SELECT_LOCATION_COLUMN 0x000000010
1752 #define CRYPTUI_SELECT_INTENDEDUSE_COLUMN 0x000000004
1755 #define dlg_title L"OpenSSL Application SSL Client Certificate Selection"
1756 #define dlg_prompt L"Select a certificate to use for authentication"
1757 #define dlg_columns CRYPTUI_SELECT_LOCATION_COLUMN \
1758 |CRYPTUI_SELECT_INTENDEDUSE_COLUMN
1760 static int cert_select_dialog(ENGINE
*e
, SSL
*ssl
, STACK_OF(X509
) *certs
)
1764 PCCERT_CONTEXT cert
;
1769 if (sk_X509_num(certs
) == 1)
1771 ctx
= ENGINE_get_ex_data(e
, capi_idx
);
1772 /* Create an in memory store of certificates */
1773 dstore
= CertOpenStore(CERT_STORE_PROV_MEMORY
, 0, 0,
1774 CERT_STORE_CREATE_NEW_FLAG
, NULL
);
1777 CAPIerr(CAPI_F_CERT_SELECT_DIALOG
, CAPI_R_ERROR_CREATING_STORE
);
1778 capi_addlasterror();
1781 /* Add all certificates to store */
1782 for(i
= 0; i
< sk_X509_num(certs
); i
++)
1784 x
= sk_X509_value(certs
, i
);
1785 key
= X509_get_ex_data(x
, cert_capi_idx
);
1787 if (!CertAddCertificateContextToStore(dstore
, key
->pcert
,
1788 CERT_STORE_ADD_NEW
, NULL
))
1790 CAPIerr(CAPI_F_CERT_SELECT_DIALOG
, CAPI_R_ERROR_ADDING_CERT
);
1791 capi_addlasterror();
1796 hwnd
= GetForegroundWindow();
1798 hwnd
= GetActiveWindow();
1799 if (!hwnd
&& ctx
->getconswindow
)
1800 hwnd
= ctx
->getconswindow();
1801 /* Call dialog to select one */
1802 cert
= ctx
->certselectdlg(dstore
, hwnd
, dlg_title
, dlg_prompt
,
1803 dlg_columns
, 0, NULL
);
1805 /* Find matching cert from list */
1808 for(i
= 0; i
< sk_X509_num(certs
); i
++)
1810 x
= sk_X509_value(certs
, i
);
1811 key
= X509_get_ex_data(x
, cert_capi_idx
);
1812 if (CertCompareCertificate(
1813 X509_ASN_ENCODING
| PKCS_7_ASN_ENCODING
,
1815 key
->pcert
->pCertInfo
))
1825 CertCloseStore(dstore
, 0);
1831 #else /* !__COMPILE_CAPIENG */
1832 #include <openssl/engine.h>
1833 #ifndef OPENSSL_NO_DYNAMIC_ENGINE
1835 int bind_engine(ENGINE
*e
, const char *id
, const dynamic_fns
*fns
);
1837 int bind_engine(ENGINE
*e
, const char *id
, const dynamic_fns
*fns
) { return 0; }
1838 IMPLEMENT_DYNAMIC_CHECK_FN()
1840 void ENGINE_load_capi(void){}