ALG: Add AFALG engine
[openssl.git] / engines / e_capi.c
1 /*
2  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3  * project.
4  */
5 /* ====================================================================
6  * Copyright (c) 2008 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
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
18  *    distribution.
19  *
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/)"
24  *
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.
29  *
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.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
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  * ====================================================================
52  */
53
54 #include <stdio.h>
55 #include <string.h>
56 #include <stdlib.h>
57
58 #include <openssl/crypto.h>
59
60 #ifdef OPENSSL_SYS_WIN32
61 # ifndef OPENSSL_NO_CAPIENG
62
63 #  include <openssl/buffer.h>
64 #  include <openssl/bn.h>
65 #  include <openssl/rsa.h>
66 #  include <openssl/dsa.h>
67
68 #  ifndef _WIN32_WINNT
69 #   define _WIN32_WINNT 0x0400
70 #  endif
71
72 #  include <windows.h>
73 #  include <wincrypt.h>
74 #  include <malloc.h>
75 #  ifndef alloca
76 #   define alloca _alloca
77 #  endif
78
79 /*
80  * This module uses several "new" interfaces, among which is
81  * CertGetCertificateContextProperty. CERT_KEY_PROV_INFO_PROP_ID is
82  * one of possible values you can pass to function in question. By
83  * checking if it's defined we can see if wincrypt.h and accompanying
84  * crypt32.lib are in shape. The native MingW32 headers up to and
85  * including __W32API_VERSION 3.14 lack of struct DSSPUBKEY and the
86  * defines CERT_STORE_PROV_SYSTEM_A and CERT_STORE_READONLY_FLAG,
87  * so we check for these too and avoid compiling.
88  * Yes, it's rather "weak" test and if compilation fails,
89  * then re-configure with -DOPENSSL_NO_CAPIENG.
90  */
91 #  if defined(CERT_KEY_PROV_INFO_PROP_ID) && \
92     defined(CERT_STORE_PROV_SYSTEM_A) && \
93     defined(CERT_STORE_READONLY_FLAG)
94 #   define __COMPILE_CAPIENG
95 #  endif                        /* CERT_KEY_PROV_INFO_PROP_ID */
96 # endif                         /* OPENSSL_NO_CAPIENG */
97 #endif                          /* OPENSSL_SYS_WIN32 */
98
99 #ifdef __COMPILE_CAPIENG
100
101 # undef X509_EXTENSIONS
102
103 /* Definitions which may be missing from earlier version of headers */
104 # ifndef CERT_STORE_OPEN_EXISTING_FLAG
105 #  define CERT_STORE_OPEN_EXISTING_FLAG                   0x00004000
106 # endif
107
108 # ifndef CERT_STORE_CREATE_NEW_FLAG
109 #  define CERT_STORE_CREATE_NEW_FLAG                      0x00002000
110 # endif
111
112 # ifndef CERT_SYSTEM_STORE_CURRENT_USER
113 #  define CERT_SYSTEM_STORE_CURRENT_USER                  0x00010000
114 # endif
115
116 # ifndef ALG_SID_SHA_256
117 #  define ALG_SID_SHA_256                 12
118 # endif
119 # ifndef ALG_SID_SHA_384
120 #  define ALG_SID_SHA_384                 13
121 # endif
122 # ifndef ALG_SID_SHA_512
123 #  define ALG_SID_SHA_512                 14
124 # endif
125
126 # ifndef CALG_SHA_256
127 #  define CALG_SHA_256            (ALG_CLASS_HASH | ALG_TYPE_ANY | ALG_SID_SHA_256)
128 # endif
129 # ifndef CALG_SHA_384
130 #  define CALG_SHA_384            (ALG_CLASS_HASH | ALG_TYPE_ANY | ALG_SID_SHA_384)
131 # endif
132 # ifndef CALG_SHA_512
133 #  define CALG_SHA_512            (ALG_CLASS_HASH | ALG_TYPE_ANY | ALG_SID_SHA_512)
134 # endif
135
136 # ifndef PROV_RSA_AES
137 #  define PROV_RSA_AES 24
138 # endif
139
140 # include <openssl/engine.h>
141 # include <openssl/pem.h>
142 # include <openssl/x509v3.h>
143
144 # include "e_capi_err.h"
145 # include "e_capi_err.c"
146
147 static const char *engine_capi_id = "capi";
148 static const char *engine_capi_name = "CryptoAPI ENGINE";
149
150 typedef struct CAPI_CTX_st CAPI_CTX;
151 typedef struct CAPI_KEY_st CAPI_KEY;
152
153 static void capi_addlasterror(void);
154 static void capi_adderror(DWORD err);
155
156 static void CAPI_trace(CAPI_CTX * ctx, char *format, ...);
157
158 static int capi_list_providers(CAPI_CTX * ctx, BIO *out);
159 static int capi_list_containers(CAPI_CTX * ctx, BIO *out);
160 int capi_list_certs(CAPI_CTX * ctx, BIO *out, char *storename);
161 void capi_free_key(CAPI_KEY * key);
162
163 static PCCERT_CONTEXT capi_find_cert(CAPI_CTX * ctx, const char *id,
164                                      HCERTSTORE hstore);
165
166 CAPI_KEY *capi_find_key(CAPI_CTX * ctx, const char *id);
167
168 static EVP_PKEY *capi_load_privkey(ENGINE *eng, const char *key_id,
169                                    UI_METHOD *ui_method, void *callback_data);
170 static int capi_rsa_sign(int dtype, const unsigned char *m,
171                          unsigned int m_len, unsigned char *sigret,
172                          unsigned int *siglen, const RSA *rsa);
173 static int capi_rsa_priv_enc(int flen, const unsigned char *from,
174                              unsigned char *to, RSA *rsa, int padding);
175 static int capi_rsa_priv_dec(int flen, const unsigned char *from,
176                              unsigned char *to, RSA *rsa, int padding);
177 static int capi_rsa_free(RSA *rsa);
178
179 static DSA_SIG *capi_dsa_do_sign(const unsigned char *digest, int dlen,
180                                  DSA *dsa);
181 static int capi_dsa_free(DSA *dsa);
182
183 static int capi_load_ssl_client_cert(ENGINE *e, SSL *ssl,
184                                      STACK_OF(X509_NAME) *ca_dn, X509 **pcert,
185                                      EVP_PKEY **pkey, STACK_OF(X509) **pother,
186                                      UI_METHOD *ui_method,
187                                      void *callback_data);
188
189 static int cert_select_simple(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
190 # ifdef OPENSSL_CAPIENG_DIALOG
191 static int cert_select_dialog(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
192 # endif
193
194 void engine_load_capi_internal(void);
195
196 typedef PCCERT_CONTEXT(WINAPI *CERTDLG) (HCERTSTORE, HWND, LPCWSTR,
197                                          LPCWSTR, DWORD, DWORD, void *);
198 typedef HWND(WINAPI *GETCONSWIN) (void);
199
200 /*
201  * This structure contains CAPI ENGINE specific data: it contains various
202  * global options and affects how other functions behave.
203  */
204
205 # define CAPI_DBG_TRACE  2
206 # define CAPI_DBG_ERROR  1
207
208 struct CAPI_CTX_st {
209     int debug_level;
210     char *debug_file;
211     /* Parameters to use for container lookup */
212     DWORD keytype;
213     LPSTR cspname;
214     DWORD csptype;
215     /* Certificate store name to use */
216     LPSTR storename;
217     LPSTR ssl_client_store;
218     /* System store flags */
219     DWORD store_flags;
220 /* Lookup string meanings in load_private_key */
221 /* Substring of subject: uses "storename" */
222 # define CAPI_LU_SUBSTR          1
223 /* Friendly name: uses storename */
224 # define CAPI_LU_FNAME           2
225 /* Container name: uses cspname, keytype */
226 # define CAPI_LU_CONTNAME        3
227     int lookup_method;
228 /* Info to dump with dumpcerts option */
229 /* Issuer and serial name strings */
230 # define CAPI_DMP_SUMMARY        0x1
231 /* Friendly name */
232 # define CAPI_DMP_FNAME          0x2
233 /* Full X509_print dump */
234 # define CAPI_DMP_FULL           0x4
235 /* Dump PEM format certificate */
236 # define CAPI_DMP_PEM            0x8
237 /* Dump pseudo key (if possible) */
238 # define CAPI_DMP_PSKEY          0x10
239 /* Dump key info (if possible) */
240 # define CAPI_DMP_PKEYINFO       0x20
241     DWORD dump_flags;
242     int (*client_cert_select) (ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
243     CERTDLG certselectdlg;
244     GETCONSWIN getconswindow;
245 };
246
247 static CAPI_CTX *capi_ctx_new(void);
248 static void capi_ctx_free(CAPI_CTX * ctx);
249 static int capi_ctx_set_provname(CAPI_CTX * ctx, LPSTR pname, DWORD type,
250                                  int check);
251 static int capi_ctx_set_provname_idx(CAPI_CTX * ctx, int idx);
252
253 # define CAPI_CMD_LIST_CERTS             ENGINE_CMD_BASE
254 # define CAPI_CMD_LOOKUP_CERT            (ENGINE_CMD_BASE + 1)
255 # define CAPI_CMD_DEBUG_LEVEL            (ENGINE_CMD_BASE + 2)
256 # define CAPI_CMD_DEBUG_FILE             (ENGINE_CMD_BASE + 3)
257 # define CAPI_CMD_KEYTYPE                (ENGINE_CMD_BASE + 4)
258 # define CAPI_CMD_LIST_CSPS              (ENGINE_CMD_BASE + 5)
259 # define CAPI_CMD_SET_CSP_IDX            (ENGINE_CMD_BASE + 6)
260 # define CAPI_CMD_SET_CSP_NAME           (ENGINE_CMD_BASE + 7)
261 # define CAPI_CMD_SET_CSP_TYPE           (ENGINE_CMD_BASE + 8)
262 # define CAPI_CMD_LIST_CONTAINERS        (ENGINE_CMD_BASE + 9)
263 # define CAPI_CMD_LIST_OPTIONS           (ENGINE_CMD_BASE + 10)
264 # define CAPI_CMD_LOOKUP_METHOD          (ENGINE_CMD_BASE + 11)
265 # define CAPI_CMD_STORE_NAME             (ENGINE_CMD_BASE + 12)
266 # define CAPI_CMD_STORE_FLAGS            (ENGINE_CMD_BASE + 13)
267
268 static const ENGINE_CMD_DEFN capi_cmd_defns[] = {
269     {CAPI_CMD_LIST_CERTS,
270      "list_certs",
271      "List all certificates in store",
272      ENGINE_CMD_FLAG_NO_INPUT},
273     {CAPI_CMD_LOOKUP_CERT,
274      "lookup_cert",
275      "Lookup and output certificates",
276      ENGINE_CMD_FLAG_STRING},
277     {CAPI_CMD_DEBUG_LEVEL,
278      "debug_level",
279      "debug level (1=errors, 2=trace)",
280      ENGINE_CMD_FLAG_NUMERIC},
281     {CAPI_CMD_DEBUG_FILE,
282      "debug_file",
283      "debugging filename)",
284      ENGINE_CMD_FLAG_STRING},
285     {CAPI_CMD_KEYTYPE,
286      "key_type",
287      "Key type: 1=AT_KEYEXCHANGE (default), 2=AT_SIGNATURE",
288      ENGINE_CMD_FLAG_NUMERIC},
289     {CAPI_CMD_LIST_CSPS,
290      "list_csps",
291      "List all CSPs",
292      ENGINE_CMD_FLAG_NO_INPUT},
293     {CAPI_CMD_SET_CSP_IDX,
294      "csp_idx",
295      "Set CSP by index",
296      ENGINE_CMD_FLAG_NUMERIC},
297     {CAPI_CMD_SET_CSP_NAME,
298      "csp_name",
299      "Set CSP name, (default CSP used if not specified)",
300      ENGINE_CMD_FLAG_STRING},
301     {CAPI_CMD_SET_CSP_TYPE,
302      "csp_type",
303      "Set CSP type, (default RSA_PROV_FULL)",
304      ENGINE_CMD_FLAG_NUMERIC},
305     {CAPI_CMD_LIST_CONTAINERS,
306      "list_containers",
307      "list container names",
308      ENGINE_CMD_FLAG_NO_INPUT},
309     {CAPI_CMD_LIST_OPTIONS,
310      "list_options",
311      "Set list options (1=summary,2=friendly name, 4=full printout, 8=PEM output, 16=XXX, "
312      "32=private key info)",
313      ENGINE_CMD_FLAG_NUMERIC},
314     {CAPI_CMD_LOOKUP_METHOD,
315      "lookup_method",
316      "Set key lookup method (1=substring, 2=friendlyname, 3=container name)",
317      ENGINE_CMD_FLAG_NUMERIC},
318     {CAPI_CMD_STORE_NAME,
319      "store_name",
320      "certificate store name, default \"MY\"",
321      ENGINE_CMD_FLAG_STRING},
322     {CAPI_CMD_STORE_FLAGS,
323      "store_flags",
324      "Certificate store flags: 1 = system store",
325      ENGINE_CMD_FLAG_NUMERIC},
326
327     {0, NULL, NULL, 0}
328 };
329
330 static int capi_idx = -1;
331 static int rsa_capi_idx = -1;
332 static int dsa_capi_idx = -1;
333 static int cert_capi_idx = -1;
334
335 static int capi_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void))
336 {
337     int ret = 1;
338     CAPI_CTX *ctx;
339     BIO *out;
340     if (capi_idx == -1) {
341         CAPIerr(CAPI_F_CAPI_CTRL, CAPI_R_ENGINE_NOT_INITIALIZED);
342         return 0;
343     }
344     ctx = ENGINE_get_ex_data(e, capi_idx);
345     out = BIO_new_fp(stdout, BIO_NOCLOSE);
346     if (out == NULL) {
347         CAPIerr(CAPI_F_CAPI_CTRL, CAPI_R_FILE_OPEN_ERROR);
348         return 0;
349     }
350     switch (cmd) {
351     case CAPI_CMD_LIST_CSPS:
352         ret = capi_list_providers(ctx, out);
353         break;
354
355     case CAPI_CMD_LIST_CERTS:
356         ret = capi_list_certs(ctx, out, NULL);
357         break;
358
359     case CAPI_CMD_LOOKUP_CERT:
360         ret = capi_list_certs(ctx, out, p);
361         break;
362
363     case CAPI_CMD_LIST_CONTAINERS:
364         ret = capi_list_containers(ctx, out);
365         break;
366
367     case CAPI_CMD_STORE_NAME:
368         OPENSSL_free(ctx->storename);
369         ctx->storename = OPENSSL_strdup(p);
370         CAPI_trace(ctx, "Setting store name to %s\n", p);
371         break;
372
373     case CAPI_CMD_STORE_FLAGS:
374         if (i & 1) {
375             ctx->store_flags |= CERT_SYSTEM_STORE_LOCAL_MACHINE;
376             ctx->store_flags &= ~CERT_SYSTEM_STORE_CURRENT_USER;
377         } else {
378             ctx->store_flags |= CERT_SYSTEM_STORE_CURRENT_USER;
379             ctx->store_flags &= ~CERT_SYSTEM_STORE_LOCAL_MACHINE;
380         }
381         CAPI_trace(ctx, "Setting flags to %d\n", i);
382         break;
383
384     case CAPI_CMD_DEBUG_LEVEL:
385         ctx->debug_level = (int)i;
386         CAPI_trace(ctx, "Setting debug level to %d\n", ctx->debug_level);
387         break;
388
389     case CAPI_CMD_DEBUG_FILE:
390         ctx->debug_file = OPENSSL_strdup(p);
391         CAPI_trace(ctx, "Setting debug file to %s\n", ctx->debug_file);
392         break;
393
394     case CAPI_CMD_KEYTYPE:
395         ctx->keytype = i;
396         CAPI_trace(ctx, "Setting key type to %d\n", ctx->keytype);
397         break;
398
399     case CAPI_CMD_SET_CSP_IDX:
400         ret = capi_ctx_set_provname_idx(ctx, i);
401         break;
402
403     case CAPI_CMD_LIST_OPTIONS:
404         ctx->dump_flags = i;
405         break;
406
407     case CAPI_CMD_LOOKUP_METHOD:
408         if (i < 1 || i > 3) {
409             CAPIerr(CAPI_F_CAPI_CTRL, CAPI_R_INVALID_LOOKUP_METHOD);
410             BIO_free(out);
411             return 0;
412         }
413         ctx->lookup_method = i;
414         break;
415
416     case CAPI_CMD_SET_CSP_NAME:
417         ret = capi_ctx_set_provname(ctx, p, ctx->csptype, 1);
418         break;
419
420     case CAPI_CMD_SET_CSP_TYPE:
421         ctx->csptype = i;
422         break;
423
424     default:
425         CAPIerr(CAPI_F_CAPI_CTRL, CAPI_R_UNKNOWN_COMMAND);
426         ret = 0;
427     }
428
429     BIO_free(out);
430     return ret;
431
432 }
433
434 static RSA_METHOD capi_rsa_method = {
435     "CryptoAPI RSA method",
436     0,                          /* pub_enc */
437     0,                          /* pub_dec */
438     capi_rsa_priv_enc,          /* priv_enc */
439     capi_rsa_priv_dec,          /* priv_dec */
440     0,                          /* rsa_mod_exp */
441     0,                          /* bn_mod_exp */
442     0,                          /* init */
443     capi_rsa_free,              /* finish */
444     0,                          /* flags */
445     NULL,                       /* app_data */
446     capi_rsa_sign,              /* rsa_sign */
447     0                           /* rsa_verify */
448 };
449
450 static DSA_METHOD capi_dsa_method = {
451     "CryptoAPI DSA method",
452     capi_dsa_do_sign,           /* dsa_do_sign */
453     0,                          /* dsa_sign_setup */
454     0,                          /* dsa_do_verify */
455     0,                          /* dsa_mod_exp */
456     0,                          /* bn_mod_exp */
457     0,                          /* init */
458     capi_dsa_free,              /* finish */
459     0,                          /* flags */
460     NULL,                       /* app_data */
461     0,                          /* dsa_paramgen */
462     0                           /* dsa_keygen */
463 };
464
465 static int use_aes_csp = 0;
466
467 static int capi_init(ENGINE *e)
468 {
469     CAPI_CTX *ctx;
470     const RSA_METHOD *ossl_rsa_meth;
471     const DSA_METHOD *ossl_dsa_meth;
472     HCRYPTPROV hprov;
473
474     if (capi_idx < 0) {
475         capi_idx = ENGINE_get_ex_new_index(0, NULL, NULL, NULL, 0);
476         if (capi_idx < 0)
477             goto memerr;
478
479         cert_capi_idx = X509_get_ex_new_index(0, NULL, NULL, NULL, 0);
480
481         /* Setup RSA_METHOD */
482         rsa_capi_idx = RSA_get_ex_new_index(0, NULL, NULL, NULL, 0);
483         ossl_rsa_meth = RSA_PKCS1_OpenSSL();
484         capi_rsa_method.rsa_pub_enc = ossl_rsa_meth->rsa_pub_enc;
485         capi_rsa_method.rsa_pub_dec = ossl_rsa_meth->rsa_pub_dec;
486         capi_rsa_method.rsa_mod_exp = ossl_rsa_meth->rsa_mod_exp;
487         capi_rsa_method.bn_mod_exp = ossl_rsa_meth->bn_mod_exp;
488
489         /* Setup DSA Method */
490         dsa_capi_idx = DSA_get_ex_new_index(0, NULL, NULL, NULL, 0);
491         ossl_dsa_meth = DSA_OpenSSL();
492         capi_dsa_method.dsa_do_verify = ossl_dsa_meth->dsa_do_verify;
493         capi_dsa_method.dsa_mod_exp = ossl_dsa_meth->dsa_mod_exp;
494         capi_dsa_method.bn_mod_exp = ossl_dsa_meth->bn_mod_exp;
495     }
496
497     ctx = capi_ctx_new();
498     if (ctx == NULL)
499         goto memerr;
500
501     ENGINE_set_ex_data(e, capi_idx, ctx);
502
503 # ifdef OPENSSL_CAPIENG_DIALOG
504     {
505         HMODULE cryptui = LoadLibrary(TEXT("CRYPTUI.DLL"));
506         HMODULE kernel = GetModuleHandle(TEXT("KERNEL32.DLL"));
507         if (cryptui)
508             ctx->certselectdlg =
509                 (CERTDLG) GetProcAddress(cryptui,
510                                          "CryptUIDlgSelectCertificateFromStore");
511         if (kernel)
512             ctx->getconswindow =
513                 (GETCONSWIN) GetProcAddress(kernel, "GetConsoleWindow");
514         if (cryptui && !OPENSSL_isservice())
515             ctx->client_cert_select = cert_select_dialog;
516     }
517 # endif
518
519     /* See if we support AES CSP */
520
521     if (CryptAcquireContext(&hprov, NULL, NULL, PROV_RSA_AES,
522                             CRYPT_VERIFYCONTEXT)) {
523         use_aes_csp = 1;
524         CryptReleaseContext(hprov, 0);
525     }
526
527     return 1;
528
529  memerr:
530     CAPIerr(CAPI_F_CAPI_INIT, ERR_R_MALLOC_FAILURE);
531     return 0;
532
533     return 1;
534 }
535
536 static int capi_destroy(ENGINE *e)
537 {
538     ERR_unload_CAPI_strings();
539     return 1;
540 }
541
542 static int capi_finish(ENGINE *e)
543 {
544     CAPI_CTX *ctx;
545     ctx = ENGINE_get_ex_data(e, capi_idx);
546     capi_ctx_free(ctx);
547     ENGINE_set_ex_data(e, capi_idx, NULL);
548     return 1;
549 }
550
551 /*
552  * CryptoAPI key application data. This contains a handle to the private key
553  * container (for sign operations) and a handle to the key (for decrypt
554  * operations).
555  */
556
557 struct CAPI_KEY_st {
558     /* Associated certificate context (if any) */
559     PCCERT_CONTEXT pcert;
560     HCRYPTPROV hprov;
561     HCRYPTKEY key;
562     DWORD keyspec;
563 };
564
565 static int bind_capi(ENGINE *e)
566 {
567     if (!ENGINE_set_id(e, engine_capi_id)
568         || !ENGINE_set_name(e, engine_capi_name)
569         || !ENGINE_set_flags(e, ENGINE_FLAGS_NO_REGISTER_ALL)
570         || !ENGINE_set_init_function(e, capi_init)
571         || !ENGINE_set_finish_function(e, capi_finish)
572         || !ENGINE_set_destroy_function(e, capi_destroy)
573         || !ENGINE_set_RSA(e, &capi_rsa_method)
574         || !ENGINE_set_DSA(e, &capi_dsa_method)
575         || !ENGINE_set_load_privkey_function(e, capi_load_privkey)
576         || !ENGINE_set_load_ssl_client_cert_function(e,
577                                                      capi_load_ssl_client_cert)
578         || !ENGINE_set_cmd_defns(e, capi_cmd_defns)
579         || !ENGINE_set_ctrl_function(e, capi_ctrl))
580         return 0;
581     ERR_load_CAPI_strings();
582
583     return 1;
584
585 }
586
587 # ifndef OPENSSL_NO_DYNAMIC_ENGINE
588 static int bind_helper(ENGINE *e, const char *id)
589 {
590     if (id && (strcmp(id, engine_capi_id) != 0))
591         return 0;
592     if (!bind_capi(e))
593         return 0;
594     return 1;
595 }
596
597 IMPLEMENT_DYNAMIC_CHECK_FN()
598     IMPLEMENT_DYNAMIC_BIND_FN(bind_helper)
599 # else
600 static ENGINE *engine_capi(void)
601 {
602     ENGINE *ret = ENGINE_new();
603     if (ret == NULL)
604         return NULL;
605     if (!bind_capi(ret)) {
606         ENGINE_free(ret);
607         return NULL;
608     }
609     return ret;
610 }
611
612 void engine_load_capi_internal(void)
613 {
614     /* Copied from eng_[openssl|dyn].c */
615     ENGINE *toadd = engine_capi();
616     if (!toadd)
617         return;
618     ENGINE_add(toadd);
619     ENGINE_free(toadd);
620     ERR_clear_error();
621 }
622 # endif
623
624 static int lend_tobn(BIGNUM *bn, unsigned char *bin, int binlen)
625 {
626     int i;
627     /*
628      * Reverse buffer in place: since this is a keyblob structure that will
629      * be freed up after conversion anyway it doesn't matter if we change
630      * it.
631      */
632     for (i = 0; i < binlen / 2; i++) {
633         unsigned char c;
634         c = bin[i];
635         bin[i] = bin[binlen - i - 1];
636         bin[binlen - i - 1] = c;
637     }
638
639     if (!BN_bin2bn(bin, binlen, bn))
640         return 0;
641     return 1;
642 }
643
644 /* Given a CAPI_KEY get an EVP_PKEY structure */
645
646 static EVP_PKEY *capi_get_pkey(ENGINE *eng, CAPI_KEY * key)
647 {
648     unsigned char *pubkey = NULL;
649     DWORD len;
650     BLOBHEADER *bh;
651     RSA *rkey = NULL;
652     DSA *dkey = NULL;
653     EVP_PKEY *ret = NULL;
654     if (!CryptExportKey(key->key, 0, PUBLICKEYBLOB, 0, NULL, &len)) {
655         CAPIerr(CAPI_F_CAPI_GET_PKEY, CAPI_R_PUBKEY_EXPORT_LENGTH_ERROR);
656         capi_addlasterror();
657         return NULL;
658     }
659
660     pubkey = OPENSSL_malloc(len);
661
662     if (pubkey == NULL)
663         goto memerr;
664
665     if (!CryptExportKey(key->key, 0, PUBLICKEYBLOB, 0, pubkey, &len)) {
666         CAPIerr(CAPI_F_CAPI_GET_PKEY, CAPI_R_PUBKEY_EXPORT_ERROR);
667         capi_addlasterror();
668         goto err;
669     }
670
671     bh = (BLOBHEADER *) pubkey;
672     if (bh->bType != PUBLICKEYBLOB) {
673         CAPIerr(CAPI_F_CAPI_GET_PKEY, CAPI_R_INVALID_PUBLIC_KEY_BLOB);
674         goto err;
675     }
676     if (bh->aiKeyAlg == CALG_RSA_SIGN || bh->aiKeyAlg == CALG_RSA_KEYX) {
677         RSAPUBKEY *rp;
678         DWORD rsa_modlen;
679         unsigned char *rsa_modulus;
680         rp = (RSAPUBKEY *) (bh + 1);
681         if (rp->magic != 0x31415352) {
682             char magstr[10];
683             BIO_snprintf(magstr, 10, "%lx", rp->magic);
684             CAPIerr(CAPI_F_CAPI_GET_PKEY,
685                     CAPI_R_INVALID_RSA_PUBLIC_KEY_BLOB_MAGIC_NUMBER);
686             ERR_add_error_data(2, "magic=0x", magstr);
687             goto err;
688         }
689         rsa_modulus = (unsigned char *)(rp + 1);
690         rkey = RSA_new_method(eng);
691         if (!rkey)
692             goto memerr;
693
694         rkey->e = BN_new();
695         rkey->n = BN_new();
696
697         if (rkey->e == NULL || rkey->n == NULL)
698             goto memerr;
699
700         if (!BN_set_word(rkey->e, rp->pubexp))
701             goto memerr;
702
703         rsa_modlen = rp->bitlen / 8;
704         if (!lend_tobn(rkey->n, rsa_modulus, rsa_modlen))
705             goto memerr;
706
707         RSA_set_ex_data(rkey, rsa_capi_idx, key);
708
709         if ((ret = EVP_PKEY_new()) == NULL)
710             goto memerr;
711
712         EVP_PKEY_assign_RSA(ret, rkey);
713         rkey = NULL;
714
715     } else if (bh->aiKeyAlg == CALG_DSS_SIGN) {
716         DSSPUBKEY *dp;
717         DWORD dsa_plen;
718         unsigned char *btmp;
719         dp = (DSSPUBKEY *) (bh + 1);
720         if (dp->magic != 0x31535344) {
721             char magstr[10];
722             BIO_snprintf(magstr, 10, "%lx", dp->magic);
723             CAPIerr(CAPI_F_CAPI_GET_PKEY,
724                     CAPI_R_INVALID_DSA_PUBLIC_KEY_BLOB_MAGIC_NUMBER);
725             ERR_add_error_data(2, "magic=0x", magstr);
726             goto err;
727         }
728         dsa_plen = dp->bitlen / 8;
729         btmp = (unsigned char *)(dp + 1);
730         dkey = DSA_new_method(eng);
731         if (!dkey)
732             goto memerr;
733         dkey->p = BN_new();
734         dkey->q = BN_new();
735         dkey->g = BN_new();
736         dkey->pub_key = BN_new();
737         if (dkey->p == NULL || dkey->q == NULL || dkey->g == NULL
738                 || dkey->pub_key == NULL)
739             goto memerr;
740         if (!lend_tobn(dkey->p, btmp, dsa_plen))
741             goto memerr;
742         btmp += dsa_plen;
743         if (!lend_tobn(dkey->q, btmp, 20))
744             goto memerr;
745         btmp += 20;
746         if (!lend_tobn(dkey->g, btmp, dsa_plen))
747             goto memerr;
748         btmp += dsa_plen;
749         if (!lend_tobn(dkey->pub_key, btmp, dsa_plen))
750             goto memerr;
751         btmp += dsa_plen;
752
753         DSA_set_ex_data(dkey, dsa_capi_idx, key);
754
755         if ((ret = EVP_PKEY_new()) == NULL)
756             goto memerr;
757
758         EVP_PKEY_assign_DSA(ret, dkey);
759         dkey = NULL;
760     } else {
761         char algstr[10];
762         BIO_snprintf(algstr, 10, "%ux", bh->aiKeyAlg);
763         CAPIerr(CAPI_F_CAPI_GET_PKEY,
764                 CAPI_R_UNSUPPORTED_PUBLIC_KEY_ALGORITHM);
765         ERR_add_error_data(2, "aiKeyAlg=0x", algstr);
766         goto err;
767     }
768
769  err:
770     OPENSSL_free(pubkey);
771     if (!ret) {
772         RSA_free(rkey);
773         DSA_free(dkey);
774     }
775
776     return ret;
777
778  memerr:
779     CAPIerr(CAPI_F_CAPI_GET_PKEY, ERR_R_MALLOC_FAILURE);
780     goto err;
781
782 }
783
784 static EVP_PKEY *capi_load_privkey(ENGINE *eng, const char *key_id,
785                                    UI_METHOD *ui_method, void *callback_data)
786 {
787     CAPI_CTX *ctx;
788     CAPI_KEY *key;
789     EVP_PKEY *ret;
790     ctx = ENGINE_get_ex_data(eng, capi_idx);
791
792     if (!ctx) {
793         CAPIerr(CAPI_F_CAPI_LOAD_PRIVKEY, CAPI_R_CANT_FIND_CAPI_CONTEXT);
794         return NULL;
795     }
796
797     key = capi_find_key(ctx, key_id);
798
799     if (!key)
800         return NULL;
801
802     ret = capi_get_pkey(eng, key);
803
804     if (!ret)
805         capi_free_key(key);
806     return ret;
807
808 }
809
810 /* CryptoAPI RSA operations */
811
812 int capi_rsa_priv_enc(int flen, const unsigned char *from,
813                       unsigned char *to, RSA *rsa, int padding)
814 {
815     CAPIerr(CAPI_F_CAPI_RSA_PRIV_ENC, CAPI_R_FUNCTION_NOT_SUPPORTED);
816     return -1;
817 }
818
819 int capi_rsa_sign(int dtype, const unsigned char *m, unsigned int m_len,
820                   unsigned char *sigret, unsigned int *siglen, const RSA *rsa)
821 {
822     ALG_ID alg;
823     HCRYPTHASH hash;
824     DWORD slen;
825     unsigned int i;
826     int ret = -1;
827     CAPI_KEY *capi_key;
828     CAPI_CTX *ctx;
829
830     ctx = ENGINE_get_ex_data(rsa->engine, capi_idx);
831
832     CAPI_trace(ctx, "Called CAPI_rsa_sign()\n");
833
834     capi_key = RSA_get_ex_data(rsa, rsa_capi_idx);
835     if (!capi_key) {
836         CAPIerr(CAPI_F_CAPI_RSA_SIGN, CAPI_R_CANT_GET_KEY);
837         return -1;
838     }
839 /* Convert the signature type to a CryptoAPI algorithm ID */
840     switch (dtype) {
841     case NID_sha256:
842         alg = CALG_SHA_256;
843         break;
844
845     case NID_sha384:
846         alg = CALG_SHA_384;
847         break;
848
849     case NID_sha512:
850         alg = CALG_SHA_512;
851         break;
852
853     case NID_sha1:
854         alg = CALG_SHA1;
855         break;
856
857     case NID_md5:
858         alg = CALG_MD5;
859         break;
860
861     case NID_md5_sha1:
862         alg = CALG_SSL3_SHAMD5;
863         break;
864     default:
865         {
866             char algstr[10];
867             BIO_snprintf(algstr, 10, "%x", dtype);
868             CAPIerr(CAPI_F_CAPI_RSA_SIGN, CAPI_R_UNSUPPORTED_ALGORITHM_NID);
869             ERR_add_error_data(2, "NID=0x", algstr);
870             return -1;
871         }
872     }
873
874 /* Create the hash object */
875     if (!CryptCreateHash(capi_key->hprov, alg, 0, 0, &hash)) {
876         CAPIerr(CAPI_F_CAPI_RSA_SIGN, CAPI_R_CANT_CREATE_HASH_OBJECT);
877         capi_addlasterror();
878         return -1;
879     }
880 /* Set the hash value to the value passed */
881
882     if (!CryptSetHashParam(hash, HP_HASHVAL, (unsigned char *)m, 0)) {
883         CAPIerr(CAPI_F_CAPI_RSA_SIGN, CAPI_R_CANT_SET_HASH_VALUE);
884         capi_addlasterror();
885         goto err;
886     }
887
888 /* Finally sign it */
889     slen = RSA_size(rsa);
890     if (!CryptSignHash(hash, capi_key->keyspec, NULL, 0, sigret, &slen)) {
891         CAPIerr(CAPI_F_CAPI_RSA_SIGN, CAPI_R_ERROR_SIGNING_HASH);
892         capi_addlasterror();
893         goto err;
894     } else {
895         ret = 1;
896         /* Inplace byte reversal of signature */
897         for (i = 0; i < slen / 2; i++) {
898             unsigned char c;
899             c = sigret[i];
900             sigret[i] = sigret[slen - i - 1];
901             sigret[slen - i - 1] = c;
902         }
903         *siglen = slen;
904     }
905
906     /* Now cleanup */
907
908  err:
909     CryptDestroyHash(hash);
910
911     return ret;
912 }
913
914 int capi_rsa_priv_dec(int flen, const unsigned char *from,
915                       unsigned char *to, RSA *rsa, int padding)
916 {
917     int i;
918     unsigned char *tmpbuf;
919     CAPI_KEY *capi_key;
920     CAPI_CTX *ctx;
921     DWORD dlen;
922
923     if (flen <= 0)
924         return flen;
925
926     ctx = ENGINE_get_ex_data(rsa->engine, capi_idx);
927
928     CAPI_trace(ctx, "Called capi_rsa_priv_dec()\n");
929
930     capi_key = RSA_get_ex_data(rsa, rsa_capi_idx);
931     if (!capi_key) {
932         CAPIerr(CAPI_F_CAPI_RSA_PRIV_DEC, CAPI_R_CANT_GET_KEY);
933         return -1;
934     }
935
936     if (padding != RSA_PKCS1_PADDING) {
937         char errstr[10];
938         BIO_snprintf(errstr, 10, "%d", padding);
939         CAPIerr(CAPI_F_CAPI_RSA_PRIV_DEC, CAPI_R_UNSUPPORTED_PADDING);
940         ERR_add_error_data(2, "padding=", errstr);
941         return -1;
942     }
943
944     /* Create temp reverse order version of input */
945     if ((tmpbuf = OPENSSL_malloc(flen)) == NULL) {
946         CAPIerr(CAPI_F_CAPI_RSA_PRIV_DEC, ERR_R_MALLOC_FAILURE);
947         return -1;
948     }
949     for (i = 0; i < flen; i++)
950         tmpbuf[flen - i - 1] = from[i];
951
952     /* Finally decrypt it */
953     dlen = flen;
954     if (!CryptDecrypt(capi_key->key, 0, TRUE, 0, tmpbuf, &dlen)) {
955         CAPIerr(CAPI_F_CAPI_RSA_PRIV_DEC, CAPI_R_DECRYPT_ERROR);
956         capi_addlasterror();
957         OPENSSL_free(tmpbuf);
958         return -1;
959     } else
960         memcpy(to, tmpbuf, (flen = (int)dlen));
961
962     OPENSSL_free(tmpbuf);
963
964     return flen;
965 }
966
967 static int capi_rsa_free(RSA *rsa)
968 {
969     CAPI_KEY *capi_key;
970     capi_key = RSA_get_ex_data(rsa, rsa_capi_idx);
971     capi_free_key(capi_key);
972     RSA_set_ex_data(rsa, rsa_capi_idx, 0);
973     return 1;
974 }
975
976 /* CryptoAPI DSA operations */
977
978 static DSA_SIG *capi_dsa_do_sign(const unsigned char *digest, int dlen,
979                                  DSA *dsa)
980 {
981     HCRYPTHASH hash;
982     DWORD slen;
983     DSA_SIG *ret = NULL;
984     CAPI_KEY *capi_key;
985     CAPI_CTX *ctx;
986     unsigned char csigbuf[40];
987
988     ctx = ENGINE_get_ex_data(dsa->engine, capi_idx);
989
990     CAPI_trace(ctx, "Called CAPI_dsa_do_sign()\n");
991
992     capi_key = DSA_get_ex_data(dsa, dsa_capi_idx);
993
994     if (!capi_key) {
995         CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN, CAPI_R_CANT_GET_KEY);
996         return NULL;
997     }
998
999     if (dlen != 20) {
1000         CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN, CAPI_R_INVALID_DIGEST_LENGTH);
1001         return NULL;
1002     }
1003
1004     /* Create the hash object */
1005     if (!CryptCreateHash(capi_key->hprov, CALG_SHA1, 0, 0, &hash)) {
1006         CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN, CAPI_R_CANT_CREATE_HASH_OBJECT);
1007         capi_addlasterror();
1008         return NULL;
1009     }
1010
1011     /* Set the hash value to the value passed */
1012     if (!CryptSetHashParam(hash, HP_HASHVAL, (unsigned char *)digest, 0)) {
1013         CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN, CAPI_R_CANT_SET_HASH_VALUE);
1014         capi_addlasterror();
1015         goto err;
1016     }
1017
1018     /* Finally sign it */
1019     slen = sizeof(csigbuf);
1020     if (!CryptSignHash(hash, capi_key->keyspec, NULL, 0, csigbuf, &slen)) {
1021         CAPIerr(CAPI_F_CAPI_DSA_DO_SIGN, CAPI_R_ERROR_SIGNING_HASH);
1022         capi_addlasterror();
1023         goto err;
1024     } else {
1025         ret = DSA_SIG_new();
1026         if (ret == NULL)
1027             goto err;
1028         ret->r = BN_new();
1029         ret->s = BN_new();
1030         if (ret->r == NULL || ret->s == NULL)
1031             goto err;
1032         if (!lend_tobn(ret->r, csigbuf, 20)
1033             || !lend_tobn(ret->s, csigbuf + 20, 20)) {
1034             DSA_SIG_free(ret);
1035             ret = NULL;
1036             goto err;
1037         }
1038     }
1039
1040     /* Now cleanup */
1041
1042  err:
1043     OPENSSL_cleanse(csigbuf, 40);
1044     CryptDestroyHash(hash);
1045     return ret;
1046 }
1047
1048 static int capi_dsa_free(DSA *dsa)
1049 {
1050     CAPI_KEY *capi_key;
1051     capi_key = DSA_get_ex_data(dsa, dsa_capi_idx);
1052     capi_free_key(capi_key);
1053     DSA_set_ex_data(dsa, dsa_capi_idx, 0);
1054     return 1;
1055 }
1056
1057 static void capi_vtrace(CAPI_CTX * ctx, int level, char *format,
1058                         va_list argptr)
1059 {
1060     BIO *out;
1061
1062     if (!ctx || (ctx->debug_level < level) || (!ctx->debug_file))
1063         return;
1064     out = BIO_new_file(ctx->debug_file, "a+");
1065     if (out == NULL) {
1066         CAPIerr(CAPI_F_CAPI_VTRACE, CAPI_R_FILE_OPEN_ERROR);
1067         return;
1068     }
1069     BIO_vprintf(out, format, argptr);
1070     BIO_free(out);
1071 }
1072
1073 static void CAPI_trace(CAPI_CTX * ctx, char *format, ...)
1074 {
1075     va_list args;
1076     va_start(args, format);
1077     capi_vtrace(ctx, CAPI_DBG_TRACE, format, args);
1078     va_end(args);
1079 }
1080
1081 static void capi_addlasterror(void)
1082 {
1083     capi_adderror(GetLastError());
1084 }
1085
1086 static void capi_adderror(DWORD err)
1087 {
1088     char errstr[10];
1089     BIO_snprintf(errstr, 10, "%lX", err);
1090     ERR_add_error_data(2, "Error code= 0x", errstr);
1091 }
1092
1093 static char *wide_to_asc(LPCWSTR wstr)
1094 {
1095     char *str;
1096     int len_0, sz;
1097
1098     if (!wstr)
1099         return NULL;
1100     len_0 = (int)wcslen(wstr) + 1; /* WideCharToMultiByte expects int */
1101     sz = WideCharToMultiByte(CP_ACP, 0, wstr, len_0, NULL, 0, NULL, NULL);
1102     if (!sz) {
1103         CAPIerr(CAPI_F_WIDE_TO_ASC, CAPI_R_WIN32_ERROR);
1104         return NULL;
1105     }
1106     str = OPENSSL_malloc(sz);
1107     if (str == NULL) {
1108         CAPIerr(CAPI_F_WIDE_TO_ASC, ERR_R_MALLOC_FAILURE);
1109         return NULL;
1110     }
1111     if (!WideCharToMultiByte(CP_ACP, 0, wstr, len_0, str, sz, NULL, NULL)) {
1112         OPENSSL_free(str);
1113         CAPIerr(CAPI_F_WIDE_TO_ASC, CAPI_R_WIN32_ERROR);
1114         return NULL;
1115     }
1116     return str;
1117 }
1118
1119 static int capi_get_provname(CAPI_CTX * ctx, LPSTR * pname, DWORD * ptype,
1120                              DWORD idx)
1121 {
1122     DWORD len, err;
1123     LPTSTR name;
1124     CAPI_trace(ctx, "capi_get_provname, index=%d\n", idx);
1125     if (!CryptEnumProviders(idx, NULL, 0, ptype, NULL, &len)) {
1126         err = GetLastError();
1127         if (err == ERROR_NO_MORE_ITEMS)
1128             return 2;
1129         CAPIerr(CAPI_F_CAPI_GET_PROVNAME, CAPI_R_CRYPTENUMPROVIDERS_ERROR);
1130         capi_adderror(err);
1131         return 0;
1132     }
1133     name = OPENSSL_malloc(len);
1134     if (name == NULL) {
1135         CAPIerr(CAPI_F_CAPI_GET_PROVNAME, ERR_R_MALLOC_FAILURE);
1136         return 0;
1137     }
1138     if (!CryptEnumProviders(idx, NULL, 0, ptype, name, &len)) {
1139         err = GetLastError();
1140         OPENSSL_free(name);
1141         if (err == ERROR_NO_MORE_ITEMS)
1142             return 2;
1143         CAPIerr(CAPI_F_CAPI_GET_PROVNAME, CAPI_R_CRYPTENUMPROVIDERS_ERROR);
1144         capi_adderror(err);
1145         return 0;
1146     }
1147     if (sizeof(TCHAR) != sizeof(char)) {
1148         *pname = wide_to_asc((WCHAR *)name);
1149         OPENSSL_free(name);
1150         if (*pname == NULL)
1151             return 0;
1152     } else
1153         *pname = (char *)name;
1154     CAPI_trace(ctx, "capi_get_provname, returned name=%s, type=%d\n", *pname,
1155                *ptype);
1156
1157     return 1;
1158 }
1159
1160 static int capi_list_providers(CAPI_CTX * ctx, BIO *out)
1161 {
1162     DWORD idx, ptype;
1163     int ret;
1164     LPSTR provname = NULL;
1165     CAPI_trace(ctx, "capi_list_providers\n");
1166     BIO_printf(out, "Available CSPs:\n");
1167     for (idx = 0;; idx++) {
1168         ret = capi_get_provname(ctx, &provname, &ptype, idx);
1169         if (ret == 2)
1170             break;
1171         if (ret == 0)
1172             break;
1173         BIO_printf(out, "%lu. %s, type %lu\n", idx, provname, ptype);
1174         OPENSSL_free(provname);
1175     }
1176     return 1;
1177 }
1178
1179 static int capi_list_containers(CAPI_CTX * ctx, BIO *out)
1180 {
1181     int ret = 1;
1182     HCRYPTPROV hprov;
1183     DWORD err, idx, flags, buflen = 0, clen;
1184     LPSTR cname;
1185     LPTSTR cspname = NULL;
1186
1187     CAPI_trace(ctx, "Listing containers CSP=%s, type = %d\n", ctx->cspname,
1188                ctx->csptype);
1189     if (ctx->cspname && sizeof(TCHAR) != sizeof(char)) {
1190         if ((clen =
1191              MultiByteToWideChar(CP_ACP, 0, ctx->cspname, -1, NULL, 0))) {
1192             cspname = alloca(clen * sizeof(WCHAR));
1193             MultiByteToWideChar(CP_ACP, 0, ctx->cspname, -1, (WCHAR *)cspname,
1194                                 clen);
1195         }
1196         if (!cspname) {
1197             CAPIerr(CAPI_F_CAPI_LIST_CONTAINERS, ERR_R_MALLOC_FAILURE);
1198             capi_addlasterror();
1199             return 0;
1200         }
1201     } else
1202         cspname = (TCHAR *)ctx->cspname;
1203     if (!CryptAcquireContext
1204         (&hprov, NULL, cspname, ctx->csptype, CRYPT_VERIFYCONTEXT)) {
1205         CAPIerr(CAPI_F_CAPI_LIST_CONTAINERS,
1206                 CAPI_R_CRYPTACQUIRECONTEXT_ERROR);
1207         capi_addlasterror();
1208         return 0;
1209     }
1210     if (!CryptGetProvParam
1211         (hprov, PP_ENUMCONTAINERS, NULL, &buflen, CRYPT_FIRST)) {
1212         CAPIerr(CAPI_F_CAPI_LIST_CONTAINERS, CAPI_R_ENUMCONTAINERS_ERROR);
1213         capi_addlasterror();
1214         CryptReleaseContext(hprov, 0);
1215         return 0;
1216     }
1217     CAPI_trace(ctx, "Got max container len %d\n", buflen);
1218     if (buflen == 0)
1219         buflen = 1024;
1220     cname = OPENSSL_malloc(buflen);
1221     if (cname == NULL) {
1222         CAPIerr(CAPI_F_CAPI_LIST_CONTAINERS, ERR_R_MALLOC_FAILURE);
1223         goto err;
1224     }
1225
1226     for (idx = 0;; idx++) {
1227         clen = buflen;
1228         cname[0] = 0;
1229
1230         if (idx == 0)
1231             flags = CRYPT_FIRST;
1232         else
1233             flags = 0;
1234         if (!CryptGetProvParam
1235             (hprov, PP_ENUMCONTAINERS, (BYTE *) cname, &clen, flags)) {
1236             err = GetLastError();
1237             if (err == ERROR_NO_MORE_ITEMS)
1238                 goto done;
1239             CAPIerr(CAPI_F_CAPI_LIST_CONTAINERS, CAPI_R_ENUMCONTAINERS_ERROR);
1240             capi_adderror(err);
1241             goto err;
1242         }
1243         CAPI_trace(ctx, "Container name %s, len=%d, index=%d, flags=%d\n",
1244                    cname, clen, idx, flags);
1245         if (!cname[0] && (clen == buflen)) {
1246             CAPI_trace(ctx, "Enumerate bug: using workaround\n");
1247             goto done;
1248         }
1249         BIO_printf(out, "%lu. %s\n", idx, cname);
1250     }
1251  err:
1252
1253     ret = 0;
1254
1255  done:
1256     OPENSSL_free(cname);
1257     CryptReleaseContext(hprov, 0);
1258
1259     return ret;
1260 }
1261
1262 static CRYPT_KEY_PROV_INFO *capi_get_prov_info(CAPI_CTX * ctx, PCCERT_CONTEXT cert)
1263 {
1264     DWORD len;
1265     CRYPT_KEY_PROV_INFO *pinfo;
1266
1267     if (!CertGetCertificateContextProperty
1268         (cert, CERT_KEY_PROV_INFO_PROP_ID, NULL, &len))
1269         return NULL;
1270     pinfo = OPENSSL_malloc(len);
1271     if (pinfo == NULL) {
1272         CAPIerr(CAPI_F_CAPI_GET_PROV_INFO, ERR_R_MALLOC_FAILURE);
1273         return NULL;
1274     }
1275     if (!CertGetCertificateContextProperty
1276         (cert, CERT_KEY_PROV_INFO_PROP_ID, pinfo, &len)) {
1277         CAPIerr(CAPI_F_CAPI_GET_PROV_INFO,
1278                 CAPI_R_ERROR_GETTING_KEY_PROVIDER_INFO);
1279         capi_addlasterror();
1280         OPENSSL_free(pinfo);
1281         return NULL;
1282     }
1283     return pinfo;
1284 }
1285
1286 static void capi_dump_prov_info(CAPI_CTX * ctx, BIO *out,
1287                                 CRYPT_KEY_PROV_INFO * pinfo)
1288 {
1289     char *provname = NULL, *contname = NULL;
1290     if (!pinfo) {
1291         BIO_printf(out, "  No Private Key\n");
1292         return;
1293     }
1294     provname = wide_to_asc(pinfo->pwszProvName);
1295     contname = wide_to_asc(pinfo->pwszContainerName);
1296     if (!provname || !contname)
1297         goto err;
1298
1299     BIO_printf(out, "  Private Key Info:\n");
1300     BIO_printf(out, "    Provider Name:  %s, Provider Type %lu\n", provname,
1301                pinfo->dwProvType);
1302     BIO_printf(out, "    Container Name: %s, Key Type %lu\n", contname,
1303                pinfo->dwKeySpec);
1304  err:
1305     OPENSSL_free(provname);
1306     OPENSSL_free(contname);
1307 }
1308
1309 static char *capi_cert_get_fname(CAPI_CTX * ctx, PCCERT_CONTEXT cert)
1310 {
1311     LPWSTR wfname;
1312     DWORD dlen;
1313
1314     CAPI_trace(ctx, "capi_cert_get_fname\n");
1315     if (!CertGetCertificateContextProperty
1316         (cert, CERT_FRIENDLY_NAME_PROP_ID, NULL, &dlen))
1317         return NULL;
1318     wfname = OPENSSL_malloc(dlen);
1319     if (wfname == NULL)
1320         return NULL;
1321     if (CertGetCertificateContextProperty
1322         (cert, CERT_FRIENDLY_NAME_PROP_ID, wfname, &dlen)) {
1323         char *fname = wide_to_asc(wfname);
1324         OPENSSL_free(wfname);
1325         return fname;
1326     }
1327     CAPIerr(CAPI_F_CAPI_CERT_GET_FNAME, CAPI_R_ERROR_GETTING_FRIENDLY_NAME);
1328     capi_addlasterror();
1329
1330     OPENSSL_free(wfname);
1331     return NULL;
1332 }
1333
1334 static void capi_dump_cert(CAPI_CTX * ctx, BIO *out, PCCERT_CONTEXT cert)
1335 {
1336     X509 *x;
1337     const unsigned char *p;
1338     unsigned long flags = ctx->dump_flags;
1339     if (flags & CAPI_DMP_FNAME) {
1340         char *fname;
1341         fname = capi_cert_get_fname(ctx, cert);
1342         if (fname) {
1343             BIO_printf(out, "  Friendly Name \"%s\"\n", fname);
1344             OPENSSL_free(fname);
1345         } else
1346             BIO_printf(out, "  <No Friendly Name>\n");
1347     }
1348
1349     p = cert->pbCertEncoded;
1350     x = d2i_X509(NULL, &p, cert->cbCertEncoded);
1351     if (!x)
1352         BIO_printf(out, "  <Can't parse certificate>\n");
1353     if (flags & CAPI_DMP_SUMMARY) {
1354         BIO_printf(out, "  Subject: ");
1355         X509_NAME_print_ex(out, X509_get_subject_name(x), 0, XN_FLAG_ONELINE);
1356         BIO_printf(out, "\n  Issuer: ");
1357         X509_NAME_print_ex(out, X509_get_issuer_name(x), 0, XN_FLAG_ONELINE);
1358         BIO_printf(out, "\n");
1359     }
1360     if (flags & CAPI_DMP_FULL)
1361         X509_print_ex(out, x, XN_FLAG_ONELINE, 0);
1362
1363     if (flags & CAPI_DMP_PKEYINFO) {
1364         CRYPT_KEY_PROV_INFO *pinfo;
1365         pinfo = capi_get_prov_info(ctx, cert);
1366         capi_dump_prov_info(ctx, out, pinfo);
1367         OPENSSL_free(pinfo);
1368     }
1369
1370     if (flags & CAPI_DMP_PEM)
1371         PEM_write_bio_X509(out, x);
1372     X509_free(x);
1373 }
1374
1375 static HCERTSTORE capi_open_store(CAPI_CTX * ctx, char *storename)
1376 {
1377     HCERTSTORE hstore;
1378
1379     if (!storename)
1380         storename = ctx->storename;
1381     if (!storename)
1382         storename = "MY";
1383     CAPI_trace(ctx, "Opening certificate store %s\n", storename);
1384
1385     hstore = CertOpenStore(CERT_STORE_PROV_SYSTEM_A, 0, 0,
1386                            ctx->store_flags, storename);
1387     if (!hstore) {
1388         CAPIerr(CAPI_F_CAPI_OPEN_STORE, CAPI_R_ERROR_OPENING_STORE);
1389         capi_addlasterror();
1390     }
1391     return hstore;
1392 }
1393
1394 int capi_list_certs(CAPI_CTX * ctx, BIO *out, char *id)
1395 {
1396     char *storename;
1397     int idx;
1398     int ret = 1;
1399     HCERTSTORE hstore;
1400     PCCERT_CONTEXT cert = NULL;
1401
1402     storename = ctx->storename;
1403     if (!storename)
1404         storename = "MY";
1405     CAPI_trace(ctx, "Listing certs for store %s\n", storename);
1406
1407     hstore = capi_open_store(ctx, storename);
1408     if (!hstore)
1409         return 0;
1410     if (id) {
1411         cert = capi_find_cert(ctx, id, hstore);
1412         if (!cert) {
1413             ret = 0;
1414             goto err;
1415         }
1416         capi_dump_cert(ctx, out, cert);
1417         CertFreeCertificateContext(cert);
1418     } else {
1419         for (idx = 0;; idx++) {
1420             cert = CertEnumCertificatesInStore(hstore, cert);
1421             if (!cert)
1422                 break;
1423             BIO_printf(out, "Certificate %d\n", idx);
1424             capi_dump_cert(ctx, out, cert);
1425         }
1426     }
1427  err:
1428     CertCloseStore(hstore, 0);
1429     return ret;
1430 }
1431
1432 static PCCERT_CONTEXT capi_find_cert(CAPI_CTX * ctx, const char *id,
1433                                      HCERTSTORE hstore)
1434 {
1435     PCCERT_CONTEXT cert = NULL;
1436     char *fname = NULL;
1437     int match;
1438     switch (ctx->lookup_method) {
1439     case CAPI_LU_SUBSTR:
1440         return CertFindCertificateInStore(hstore,
1441                                           X509_ASN_ENCODING, 0,
1442                                           CERT_FIND_SUBJECT_STR_A, id, NULL);
1443     case CAPI_LU_FNAME:
1444         for (;;) {
1445             cert = CertEnumCertificatesInStore(hstore, cert);
1446             if (!cert)
1447                 return NULL;
1448             fname = capi_cert_get_fname(ctx, cert);
1449             if (fname) {
1450                 if (strcmp(fname, id))
1451                     match = 0;
1452                 else
1453                     match = 1;
1454                 OPENSSL_free(fname);
1455                 if (match)
1456                     return cert;
1457             }
1458         }
1459     default:
1460         return NULL;
1461     }
1462 }
1463
1464 static CAPI_KEY *capi_get_key(CAPI_CTX * ctx, const TCHAR *contname,
1465                               TCHAR *provname, DWORD ptype, DWORD keyspec)
1466 {
1467     DWORD dwFlags = 0;
1468     CAPI_KEY *key = OPENSSL_malloc(sizeof(*key));
1469
1470     if (key == NULL)
1471         return NULL;
1472     /* If PROV_RSA_AES supported use it instead */
1473     if (ptype == PROV_RSA_FULL && use_aes_csp) {
1474         provname = NULL;
1475         ptype = PROV_RSA_AES;
1476         CAPI_trace(ctx, "capi_get_key, contname=%s, RSA_AES_CSP\n", contname);
1477     } else if (sizeof(TCHAR) == sizeof(char)) {
1478         CAPI_trace(ctx, "capi_get_key, contname=%s, provname=%s, type=%d\n",
1479                    contname, provname, ptype);
1480     } else if (ctx && ctx->debug_level >= CAPI_DBG_TRACE && ctx->debug_file) {
1481         /* above 'if' is optimization to minimize malloc-ations */
1482         char *_contname = wide_to_asc((WCHAR *)contname);
1483         char *_provname = wide_to_asc((WCHAR *)provname);
1484
1485         CAPI_trace(ctx, "capi_get_key, contname=%s, provname=%s, type=%d\n",
1486                    _contname, _provname, ptype);
1487         OPENSSL_free(_provname);
1488         OPENSSL_free(_contname);
1489     }
1490     if (ctx->store_flags & CERT_SYSTEM_STORE_LOCAL_MACHINE)
1491         dwFlags = CRYPT_MACHINE_KEYSET;
1492     if (!CryptAcquireContext(&key->hprov, contname, provname, ptype, dwFlags)) {
1493         CAPIerr(CAPI_F_CAPI_GET_KEY, CAPI_R_CRYPTACQUIRECONTEXT_ERROR);
1494         capi_addlasterror();
1495         goto err;
1496     }
1497     if (!CryptGetUserKey(key->hprov, keyspec, &key->key)) {
1498         CAPIerr(CAPI_F_CAPI_GET_KEY, CAPI_R_GETUSERKEY_ERROR);
1499         capi_addlasterror();
1500         CryptReleaseContext(key->hprov, 0);
1501         goto err;
1502     }
1503     key->keyspec = keyspec;
1504     key->pcert = NULL;
1505     return key;
1506
1507  err:
1508     OPENSSL_free(key);
1509     return NULL;
1510 }
1511
1512 static CAPI_KEY *capi_get_cert_key(CAPI_CTX * ctx, PCCERT_CONTEXT cert)
1513 {
1514     CAPI_KEY *key = NULL;
1515     CRYPT_KEY_PROV_INFO *pinfo = NULL;
1516     char *provname = NULL, *contname = NULL;
1517     pinfo = capi_get_prov_info(ctx, cert);
1518     if (!pinfo)
1519         goto err;
1520     if (sizeof(TCHAR) != sizeof(char))
1521         key = capi_get_key(ctx, (TCHAR *)pinfo->pwszContainerName,
1522                            (TCHAR *)pinfo->pwszProvName,
1523                            pinfo->dwProvType, pinfo->dwKeySpec);
1524     else {
1525         provname = wide_to_asc(pinfo->pwszProvName);
1526         contname = wide_to_asc(pinfo->pwszContainerName);
1527         if (!provname || !contname)
1528             goto err;
1529         key = capi_get_key(ctx, (TCHAR *)contname, (TCHAR *)provname,
1530                            pinfo->dwProvType, pinfo->dwKeySpec);
1531     }
1532
1533  err:
1534     OPENSSL_free(pinfo);
1535     OPENSSL_free(provname);
1536     OPENSSL_free(contname);
1537     return key;
1538 }
1539
1540 CAPI_KEY *capi_find_key(CAPI_CTX * ctx, const char *id)
1541 {
1542     PCCERT_CONTEXT cert;
1543     HCERTSTORE hstore;
1544     CAPI_KEY *key = NULL;
1545     switch (ctx->lookup_method) {
1546     case CAPI_LU_SUBSTR:
1547     case CAPI_LU_FNAME:
1548         hstore = capi_open_store(ctx, NULL);
1549         if (!hstore)
1550             return NULL;
1551         cert = capi_find_cert(ctx, id, hstore);
1552         if (cert) {
1553             key = capi_get_cert_key(ctx, cert);
1554             CertFreeCertificateContext(cert);
1555         }
1556         CertCloseStore(hstore, 0);
1557         break;
1558
1559     case CAPI_LU_CONTNAME:
1560         if (sizeof(TCHAR) != sizeof(char)) {
1561             WCHAR *contname, *provname;
1562             DWORD len;
1563
1564             if ((len = MultiByteToWideChar(CP_ACP, 0, id, -1, NULL, 0)) &&
1565                 (contname = alloca(len * sizeof(WCHAR)),
1566                  MultiByteToWideChar(CP_ACP, 0, id, -1, contname, len)) &&
1567                 (len =
1568                  MultiByteToWideChar(CP_ACP, 0, ctx->cspname, -1, NULL, 0))
1569                 && (provname =
1570                     alloca(len * sizeof(WCHAR)), MultiByteToWideChar(CP_ACP,
1571                                                                      0,
1572                                                                      ctx->cspname,
1573                                                                      -1,
1574                                                                      provname,
1575                                                                      len)))
1576                 key =
1577                     capi_get_key(ctx, (TCHAR *)contname, (TCHAR *)provname,
1578                                  ctx->csptype, ctx->keytype);
1579         } else
1580             key = capi_get_key(ctx, (TCHAR *)id,
1581                                (TCHAR *)ctx->cspname,
1582                                ctx->csptype, ctx->keytype);
1583         break;
1584     }
1585
1586     return key;
1587 }
1588
1589 void capi_free_key(CAPI_KEY * key)
1590 {
1591     if (!key)
1592         return;
1593     CryptDestroyKey(key->key);
1594     CryptReleaseContext(key->hprov, 0);
1595     if (key->pcert)
1596         CertFreeCertificateContext(key->pcert);
1597     OPENSSL_free(key);
1598 }
1599
1600 /* Initialize a CAPI_CTX structure */
1601
1602 static CAPI_CTX *capi_ctx_new(void)
1603 {
1604     CAPI_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx));
1605
1606     if (ctx == NULL) {
1607         CAPIerr(CAPI_F_CAPI_CTX_NEW, ERR_R_MALLOC_FAILURE);
1608         return NULL;
1609     }
1610     ctx->csptype = PROV_RSA_FULL;
1611     ctx->dump_flags = CAPI_DMP_SUMMARY | CAPI_DMP_FNAME;
1612     ctx->keytype = AT_KEYEXCHANGE;
1613     ctx->store_flags = CERT_STORE_OPEN_EXISTING_FLAG |
1614         CERT_STORE_READONLY_FLAG | CERT_SYSTEM_STORE_CURRENT_USER;
1615     ctx->lookup_method = CAPI_LU_SUBSTR;
1616     ctx->client_cert_select = cert_select_simple;
1617     return ctx;
1618 }
1619
1620 static void capi_ctx_free(CAPI_CTX * ctx)
1621 {
1622     CAPI_trace(ctx, "Calling capi_ctx_free with %lx\n", ctx);
1623     if (!ctx)
1624         return;
1625     OPENSSL_free(ctx->cspname);
1626     OPENSSL_free(ctx->debug_file);
1627     OPENSSL_free(ctx->storename);
1628     OPENSSL_free(ctx->ssl_client_store);
1629     OPENSSL_free(ctx);
1630 }
1631
1632 static int capi_ctx_set_provname(CAPI_CTX * ctx, LPSTR pname, DWORD type,
1633                                  int check)
1634 {
1635     CAPI_trace(ctx, "capi_ctx_set_provname, name=%s, type=%d\n", pname, type);
1636     if (check) {
1637         HCRYPTPROV hprov;
1638         LPTSTR name = NULL;
1639
1640         if (sizeof(TCHAR) != sizeof(char)) {
1641             DWORD len;
1642             if ((len = MultiByteToWideChar(CP_ACP, 0, pname, -1, NULL, 0))) {
1643                 name = alloca(len * sizeof(WCHAR));
1644                 MultiByteToWideChar(CP_ACP, 0, pname, -1, (WCHAR *)name, len);
1645             }
1646         } else
1647             name = (TCHAR *)pname;
1648
1649         if (!name || !CryptAcquireContext(&hprov, NULL, name, type,
1650                                           CRYPT_VERIFYCONTEXT)) {
1651             CAPIerr(CAPI_F_CAPI_CTX_SET_PROVNAME,
1652                     CAPI_R_CRYPTACQUIRECONTEXT_ERROR);
1653             capi_addlasterror();
1654             return 0;
1655         }
1656         CryptReleaseContext(hprov, 0);
1657     }
1658     OPENSSL_free(ctx->cspname);
1659     ctx->cspname = OPENSSL_strdup(pname);
1660     ctx->csptype = type;
1661     return 1;
1662 }
1663
1664 static int capi_ctx_set_provname_idx(CAPI_CTX * ctx, int idx)
1665 {
1666     LPSTR pname;
1667     DWORD type;
1668     int res;
1669     if (capi_get_provname(ctx, &pname, &type, idx) != 1)
1670         return 0;
1671     res = capi_ctx_set_provname(ctx, pname, type, 0);
1672     OPENSSL_free(pname);
1673     return res;
1674 }
1675
1676 static int cert_issuer_match(STACK_OF(X509_NAME) *ca_dn, X509 *x)
1677 {
1678     int i;
1679     X509_NAME *nm;
1680     /* Special case: empty list: match anything */
1681     if (sk_X509_NAME_num(ca_dn) <= 0)
1682         return 1;
1683     for (i = 0; i < sk_X509_NAME_num(ca_dn); i++) {
1684         nm = sk_X509_NAME_value(ca_dn, i);
1685         if (!X509_NAME_cmp(nm, X509_get_issuer_name(x)))
1686             return 1;
1687     }
1688     return 0;
1689 }
1690
1691 static int capi_load_ssl_client_cert(ENGINE *e, SSL *ssl,
1692                                      STACK_OF(X509_NAME) *ca_dn, X509 **pcert,
1693                                      EVP_PKEY **pkey, STACK_OF(X509) **pother,
1694                                      UI_METHOD *ui_method,
1695                                      void *callback_data)
1696 {
1697     STACK_OF(X509) *certs = NULL;
1698     X509 *x;
1699     char *storename;
1700     const unsigned char *p;
1701     int i, client_cert_idx;
1702     HCERTSTORE hstore;
1703     PCCERT_CONTEXT cert = NULL, excert = NULL;
1704     CAPI_CTX *ctx;
1705     CAPI_KEY *key;
1706     ctx = ENGINE_get_ex_data(e, capi_idx);
1707
1708     *pcert = NULL;
1709     *pkey = NULL;
1710
1711     storename = ctx->ssl_client_store;
1712     if (!storename)
1713         storename = "MY";
1714
1715     hstore = capi_open_store(ctx, storename);
1716     if (!hstore)
1717         return 0;
1718     /* Enumerate all certificates collect any matches */
1719     for (i = 0;; i++) {
1720         cert = CertEnumCertificatesInStore(hstore, cert);
1721         if (!cert)
1722             break;
1723         p = cert->pbCertEncoded;
1724         x = d2i_X509(NULL, &p, cert->cbCertEncoded);
1725         if (!x) {
1726             CAPI_trace(ctx, "Can't Parse Certificate %d\n", i);
1727             continue;
1728         }
1729         if (cert_issuer_match(ca_dn, x)
1730             && X509_check_purpose(x, X509_PURPOSE_SSL_CLIENT, 0)) {
1731             key = capi_get_cert_key(ctx, cert);
1732             if (!key) {
1733                 X509_free(x);
1734                 continue;
1735             }
1736             /*
1737              * Match found: attach extra data to it so we can retrieve the
1738              * key later.
1739              */
1740             excert = CertDuplicateCertificateContext(cert);
1741             key->pcert = excert;
1742             X509_set_ex_data(x, cert_capi_idx, key);
1743
1744             if (!certs)
1745                 certs = sk_X509_new_null();
1746
1747             sk_X509_push(certs, x);
1748         } else
1749             X509_free(x);
1750
1751     }
1752
1753     if (cert)
1754         CertFreeCertificateContext(cert);
1755     if (hstore)
1756         CertCloseStore(hstore, 0);
1757
1758     if (!certs)
1759         return 0;
1760
1761     /* Select the appropriate certificate */
1762
1763     client_cert_idx = ctx->client_cert_select(e, ssl, certs);
1764
1765     /* Set the selected certificate and free the rest */
1766
1767     for (i = 0; i < sk_X509_num(certs); i++) {
1768         x = sk_X509_value(certs, i);
1769         if (i == client_cert_idx)
1770             *pcert = x;
1771         else {
1772             key = X509_get_ex_data(x, cert_capi_idx);
1773             capi_free_key(key);
1774             X509_free(x);
1775         }
1776     }
1777
1778     sk_X509_free(certs);
1779
1780     if (!*pcert)
1781         return 0;
1782
1783     /* Setup key for selected certificate */
1784
1785     key = X509_get_ex_data(*pcert, cert_capi_idx);
1786     *pkey = capi_get_pkey(e, key);
1787     X509_set_ex_data(*pcert, cert_capi_idx, NULL);
1788
1789     return 1;
1790
1791 }
1792
1793 /* Simple client cert selection function: always select first */
1794
1795 static int cert_select_simple(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs)
1796 {
1797     return 0;
1798 }
1799
1800 # ifdef OPENSSL_CAPIENG_DIALOG
1801
1802 /*
1803  * More complex cert selection function, using standard function
1804  * CryptUIDlgSelectCertificateFromStore() to produce a dialog box.
1805  */
1806
1807 /*
1808  * Definitions which are in cryptuiapi.h but this is not present in older
1809  * versions of headers.
1810  */
1811
1812 #  ifndef CRYPTUI_SELECT_LOCATION_COLUMN
1813 #   define CRYPTUI_SELECT_LOCATION_COLUMN                   0x000000010
1814 #   define CRYPTUI_SELECT_INTENDEDUSE_COLUMN                0x000000004
1815 #  endif
1816
1817 #  define dlg_title L"OpenSSL Application SSL Client Certificate Selection"
1818 #  define dlg_prompt L"Select a certificate to use for authentication"
1819 #  define dlg_columns      CRYPTUI_SELECT_LOCATION_COLUMN \
1820                         |CRYPTUI_SELECT_INTENDEDUSE_COLUMN
1821
1822 static int cert_select_dialog(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs)
1823 {
1824     X509 *x;
1825     HCERTSTORE dstore;
1826     PCCERT_CONTEXT cert;
1827     CAPI_CTX *ctx;
1828     CAPI_KEY *key;
1829     HWND hwnd;
1830     int i, idx = -1;
1831     if (sk_X509_num(certs) == 1)
1832         return 0;
1833     ctx = ENGINE_get_ex_data(e, capi_idx);
1834     /* Create an in memory store of certificates */
1835     dstore = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, 0,
1836                            CERT_STORE_CREATE_NEW_FLAG, NULL);
1837     if (!dstore) {
1838         CAPIerr(CAPI_F_CERT_SELECT_DIALOG, CAPI_R_ERROR_CREATING_STORE);
1839         capi_addlasterror();
1840         goto err;
1841     }
1842     /* Add all certificates to store */
1843     for (i = 0; i < sk_X509_num(certs); i++) {
1844         x = sk_X509_value(certs, i);
1845         key = X509_get_ex_data(x, cert_capi_idx);
1846
1847         if (!CertAddCertificateContextToStore(dstore, key->pcert,
1848                                               CERT_STORE_ADD_NEW, NULL)) {
1849             CAPIerr(CAPI_F_CERT_SELECT_DIALOG, CAPI_R_ERROR_ADDING_CERT);
1850             capi_addlasterror();
1851             goto err;
1852         }
1853
1854     }
1855     hwnd = GetForegroundWindow();
1856     if (!hwnd)
1857         hwnd = GetActiveWindow();
1858     if (!hwnd && ctx->getconswindow)
1859         hwnd = ctx->getconswindow();
1860     /* Call dialog to select one */
1861     cert = ctx->certselectdlg(dstore, hwnd, dlg_title, dlg_prompt,
1862                               dlg_columns, 0, NULL);
1863
1864     /* Find matching cert from list */
1865     if (cert) {
1866         for (i = 0; i < sk_X509_num(certs); i++) {
1867             x = sk_X509_value(certs, i);
1868             key = X509_get_ex_data(x, cert_capi_idx);
1869             if (CertCompareCertificate
1870                 (X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, cert->pCertInfo,
1871                  key->pcert->pCertInfo)) {
1872                 idx = i;
1873                 break;
1874             }
1875         }
1876     }
1877
1878  err:
1879     if (dstore)
1880         CertCloseStore(dstore, 0);
1881     return idx;
1882
1883 }
1884 # endif
1885
1886 #else                           /* !__COMPILE_CAPIENG */
1887 # include <openssl/engine.h>
1888 # ifndef OPENSSL_NO_DYNAMIC_ENGINE
1889 OPENSSL_EXPORT
1890     int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns);
1891 OPENSSL_EXPORT
1892     int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns)
1893 {
1894     return 0;
1895 }
1896
1897 IMPLEMENT_DYNAMIC_CHECK_FN()
1898 # else
1899 void engine_load_capi_internal(void);
1900 void engine_load_capi_internal(void)
1901 {
1902 }
1903 # endif
1904 #endif