e_chil.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:37k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* crypto/engine/e_chil.c -*- mode: C; c-file-style: "eay" -*- */
  2. /* Written by Richard Levitte (richard@levitte.org), Geoff Thorpe
  3.  * (geoff@geoffthorpe.net) and Dr Stephen N Henson (shenson@bigfoot.com)
  4.  * for the OpenSSL project 2000.
  5.  */
  6. /* ====================================================================
  7.  * Copyright (c) 1999-2001 The OpenSSL Project.  All rights reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  *
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer. 
  15.  *
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in
  18.  *    the documentation and/or other materials provided with the
  19.  *    distribution.
  20.  *
  21.  * 3. All advertising materials mentioning features or use of this
  22.  *    software must display the following acknowledgment:
  23.  *    "This product includes software developed by the OpenSSL Project
  24.  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  25.  *
  26.  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27.  *    endorse or promote products derived from this software without
  28.  *    prior written permission. For written permission, please contact
  29.  *    licensing@OpenSSL.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "OpenSSL"
  32.  *    nor may "OpenSSL" appear in their names without prior written
  33.  *    permission of the OpenSSL Project.
  34.  *
  35.  * 6. Redistributions of any form whatsoever must retain the following
  36.  *    acknowledgment:
  37.  *    "This product includes software developed by the OpenSSL Project
  38.  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39.  *
  40.  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41.  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43.  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47.  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49.  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50.  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51.  * OF THE POSSIBILITY OF SUCH DAMAGE.
  52.  * ====================================================================
  53.  *
  54.  * This product includes cryptographic software written by Eric Young
  55.  * (eay@cryptsoft.com).  This product includes software written by Tim
  56.  * Hudson (tjh@cryptsoft.com).
  57.  *
  58.  */
  59. #include <stdio.h>
  60. #include <string.h>
  61. #include <openssl/crypto.h>
  62. #include <openssl/pem.h>
  63. #include <openssl/dso.h>
  64. #include <openssl/engine.h>
  65. #include <openssl/ui.h>
  66. #include <openssl/rand.h>
  67. #ifndef OPENSSL_NO_RSA
  68. #include <openssl/rsa.h>
  69. #endif
  70. #ifndef OPENSSL_NO_DH
  71. #include <openssl/dh.h>
  72. #endif
  73. #include <openssl/bn.h>
  74. #ifndef OPENSSL_NO_HW
  75. #ifndef OPENSSL_NO_HW_CHIL
  76. /* Attribution notice: nCipher have said several times that it's OK for
  77.  * us to implement a general interface to their boxes, and recently declared
  78.  * their HWCryptoHook to be public, and therefore available for us to use.
  79.  * Thanks, nCipher.
  80.  *
  81.  * The hwcryptohook.h included here is from May 2000.
  82.  * [Richard Levitte]
  83.  */
  84. #ifdef FLAT_INC
  85. #include "hwcryptohook.h"
  86. #else
  87. #include "vendor_defns/hwcryptohook.h"
  88. #endif
  89. #define HWCRHK_LIB_NAME "CHIL engine"
  90. #include "e_chil_err.c"
  91. static int hwcrhk_destroy(ENGINE *e);
  92. static int hwcrhk_init(ENGINE *e);
  93. static int hwcrhk_finish(ENGINE *e);
  94. static int hwcrhk_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)); 
  95. /* Functions to handle mutexes */
  96. static int hwcrhk_mutex_init(HWCryptoHook_Mutex*, HWCryptoHook_CallerContext*);
  97. static int hwcrhk_mutex_lock(HWCryptoHook_Mutex*);
  98. static void hwcrhk_mutex_unlock(HWCryptoHook_Mutex*);
  99. static void hwcrhk_mutex_destroy(HWCryptoHook_Mutex*);
  100. /* BIGNUM stuff */
  101. static int hwcrhk_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
  102. const BIGNUM *m, BN_CTX *ctx);
  103. #ifndef OPENSSL_NO_RSA
  104. /* RSA stuff */
  105. static int hwcrhk_rsa_mod_exp(BIGNUM *r, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
  106. #endif
  107. #ifndef OPENSSL_NO_RSA
  108. /* This function is aliased to mod_exp (with the mont stuff dropped). */
  109. static int hwcrhk_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
  110. const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
  111. #endif
  112. #ifndef OPENSSL_NO_DH
  113. /* DH stuff */
  114. /* This function is alised to mod_exp (with the DH and mont dropped). */
  115. static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r,
  116. const BIGNUM *a, const BIGNUM *p,
  117. const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
  118. #endif
  119. /* RAND stuff */
  120. static int hwcrhk_rand_bytes(unsigned char *buf, int num);
  121. static int hwcrhk_rand_status(void);
  122. /* KM stuff */
  123. static EVP_PKEY *hwcrhk_load_privkey(ENGINE *eng, const char *key_id,
  124. UI_METHOD *ui_method, void *callback_data);
  125. static EVP_PKEY *hwcrhk_load_pubkey(ENGINE *eng, const char *key_id,
  126. UI_METHOD *ui_method, void *callback_data);
  127. #ifndef OPENSSL_NO_RSA
  128. static void hwcrhk_ex_free(void *obj, void *item, CRYPTO_EX_DATA *ad,
  129. int ind,long argl, void *argp);
  130. #endif
  131. /* Interaction stuff */
  132. static int hwcrhk_insert_card(const char *prompt_info,
  133. const char *wrong_info,
  134. HWCryptoHook_PassphraseContext *ppctx,
  135. HWCryptoHook_CallerContext *cactx);
  136. static int hwcrhk_get_pass(const char *prompt_info,
  137. int *len_io, char *buf,
  138. HWCryptoHook_PassphraseContext *ppctx,
  139. HWCryptoHook_CallerContext *cactx);
  140. static void hwcrhk_log_message(void *logstr, const char *message);
  141. /* The definitions for control commands specific to this engine */
  142. #define HWCRHK_CMD_SO_PATH ENGINE_CMD_BASE
  143. #define HWCRHK_CMD_FORK_CHECK (ENGINE_CMD_BASE + 1)
  144. #define HWCRHK_CMD_THREAD_LOCKING (ENGINE_CMD_BASE + 2)
  145. #define HWCRHK_CMD_SET_USER_INTERFACE   (ENGINE_CMD_BASE + 3)
  146. #define HWCRHK_CMD_SET_CALLBACK_DATA    (ENGINE_CMD_BASE + 4)
  147. static const ENGINE_CMD_DEFN hwcrhk_cmd_defns[] = {
  148. {HWCRHK_CMD_SO_PATH,
  149. "SO_PATH",
  150. "Specifies the path to the 'hwcrhk' shared library",
  151. ENGINE_CMD_FLAG_STRING},
  152. {HWCRHK_CMD_FORK_CHECK,
  153. "FORK_CHECK",
  154. "Turns fork() checking on or off (boolean)",
  155. ENGINE_CMD_FLAG_NUMERIC},
  156. {HWCRHK_CMD_THREAD_LOCKING,
  157. "THREAD_LOCKING",
  158. "Turns thread-safe locking on or off (boolean)",
  159. ENGINE_CMD_FLAG_NUMERIC},
  160. {HWCRHK_CMD_SET_USER_INTERFACE,
  161. "SET_USER_INTERFACE",
  162. "Set the global user interface (internal)",
  163. ENGINE_CMD_FLAG_INTERNAL},
  164. {HWCRHK_CMD_SET_CALLBACK_DATA,
  165. "SET_CALLBACK_DATA",
  166. "Set the global user interface extra data (internal)",
  167. ENGINE_CMD_FLAG_INTERNAL},
  168. {0, NULL, NULL, 0}
  169. };
  170. #ifndef OPENSSL_NO_RSA
  171. /* Our internal RSA_METHOD that we provide pointers to */
  172. static RSA_METHOD hwcrhk_rsa =
  173. {
  174. "CHIL RSA method",
  175. NULL,
  176. NULL,
  177. NULL,
  178. NULL,
  179. hwcrhk_rsa_mod_exp,
  180. hwcrhk_mod_exp_mont,
  181. NULL,
  182. NULL,
  183. 0,
  184. NULL,
  185. NULL,
  186. NULL,
  187. NULL
  188. };
  189. #endif
  190. #ifndef OPENSSL_NO_DH
  191. /* Our internal DH_METHOD that we provide pointers to */
  192. static DH_METHOD hwcrhk_dh =
  193. {
  194. "CHIL DH method",
  195. NULL,
  196. NULL,
  197. hwcrhk_mod_exp_dh,
  198. NULL,
  199. NULL,
  200. 0,
  201. NULL,
  202. NULL
  203. };
  204. #endif
  205. static RAND_METHOD hwcrhk_rand =
  206. {
  207. /* "CHIL RAND method", */
  208. NULL,
  209. hwcrhk_rand_bytes,
  210. NULL,
  211. NULL,
  212. hwcrhk_rand_bytes,
  213. hwcrhk_rand_status,
  214. };
  215. /* Constants used when creating the ENGINE */
  216. static const char *engine_hwcrhk_id = "chil";
  217. static const char *engine_hwcrhk_name = "CHIL hardware engine support";
  218. #ifndef OPENSSL_NO_DYNAMIC_ENGINE 
  219. /* Compatibility hack, the dynamic library uses this form in the path */
  220. static const char *engine_hwcrhk_id_alt = "ncipher";
  221. #endif
  222. /* Internal stuff for HWCryptoHook */
  223. /* Some structures needed for proper use of thread locks */
  224. /* hwcryptohook.h has some typedefs that turn struct HWCryptoHook_MutexValue
  225.    into HWCryptoHook_Mutex */
  226. struct HWCryptoHook_MutexValue
  227. {
  228. int lockid;
  229. };
  230. /* hwcryptohook.h has some typedefs that turn
  231.    struct HWCryptoHook_PassphraseContextValue
  232.    into HWCryptoHook_PassphraseContext */
  233. struct HWCryptoHook_PassphraseContextValue
  234. {
  235.         UI_METHOD *ui_method;
  236. void *callback_data;
  237. };
  238. /* hwcryptohook.h has some typedefs that turn
  239.    struct HWCryptoHook_CallerContextValue
  240.    into HWCryptoHook_CallerContext */
  241. struct HWCryptoHook_CallerContextValue
  242. {
  243. pem_password_cb *password_callback; /* Deprecated!  Only present for
  244.                                                backward compatibility! */
  245.         UI_METHOD *ui_method;
  246. void *callback_data;
  247. };
  248. /* The MPI structure in HWCryptoHook is pretty compatible with OpenSSL
  249.    BIGNUM's, so lets define a couple of conversion macros */
  250. #define BN2MPI(mp, bn) 
  251.     {mp.size = bn->top * sizeof(BN_ULONG); mp.buf = (unsigned char *)bn->d;}
  252. #define MPI2BN(bn, mp) 
  253.     {mp.size = bn->dmax * sizeof(BN_ULONG); mp.buf = (unsigned char *)bn->d;}
  254. static BIO *logstream = NULL;
  255. static int disable_mutex_callbacks = 0;
  256. /* One might wonder why these are needed, since one can pass down at least
  257.    a UI_METHOD and a pointer to callback data to the key-loading functions.
  258.    The thing is that the ModExp and RSAImmed functions can load keys as well,
  259.    if the data they get is in a special, nCipher-defined format (hint: if you
  260.    look at the private exponent of the RSA data as a string, you'll see this
  261.    string: "nCipher KM tool key id", followed by some bytes, followed a key
  262.    identity string, followed by more bytes.  This happens when you use "embed"
  263.    keys instead of "hwcrhk" keys).  Unfortunately, those functions do not take
  264.    any passphrase or caller context, and our functions can't really take any
  265.    callback data either.  Still, the "insert_card" and "get_passphrase"
  266.    callbacks may be called down the line, and will need to know what user
  267.    interface callbacks to call, and having callback data from the application
  268.    may be a nice thing as well, so we need to keep track of that globally. */
  269. static HWCryptoHook_CallerContext password_context = { NULL, NULL, NULL };
  270. /* Stuff to pass to the HWCryptoHook library */
  271. static HWCryptoHook_InitInfo hwcrhk_globals = {
  272. HWCryptoHook_InitFlags_SimpleForkCheck, /* Flags */
  273. &logstream, /* logstream */
  274. sizeof(BN_ULONG), /* limbsize */
  275. 0, /* mslimb first: false for BNs */
  276. -1, /* msbyte first: use native */
  277. 0, /* Max mutexes, 0 = no small limit */
  278. 0, /* Max simultaneous, 0 = default */
  279. /* The next few are mutex stuff: we write wrapper functions
  280.    around the OS mutex functions.  We initialise them to 0
  281.    here, and change that to actual function pointers in hwcrhk_init()
  282.    if dynamic locks are supported (that is, if the application
  283.    programmer has made sure of setting up callbacks bafore starting
  284.    this engine) *and* if disable_mutex_callbacks hasn't been set by
  285.    a call to ENGINE_ctrl(ENGINE_CTRL_CHIL_NO_LOCKING). */
  286. sizeof(HWCryptoHook_Mutex),
  287. 0,
  288. 0,
  289. 0,
  290. 0,
  291. /* The next few are condvar stuff: we write wrapper functions
  292.    round the OS functions.  Currently not implemented and not
  293.    and absolute necessity even in threaded programs, therefore
  294.    0'ed.  Will hopefully be implemented some day, since it
  295.    enhances the efficiency of HWCryptoHook.  */
  296. 0, /* sizeof(HWCryptoHook_CondVar), */
  297. 0, /* hwcrhk_cv_init, */
  298. 0, /* hwcrhk_cv_wait, */
  299. 0, /* hwcrhk_cv_signal, */
  300. 0, /* hwcrhk_cv_broadcast, */
  301. 0, /* hwcrhk_cv_destroy, */
  302. hwcrhk_get_pass, /* pass phrase */
  303. hwcrhk_insert_card, /* insert a card */
  304. hwcrhk_log_message /* Log message */
  305. };
  306. /* Now, to our own code */
  307. /* This internal function is used by ENGINE_chil() and possibly by the
  308.  * "dynamic" ENGINE support too */
  309. static int bind_helper(ENGINE *e)
  310. {
  311. #ifndef OPENSSL_NO_RSA
  312. const RSA_METHOD *meth1;
  313. #endif
  314. #ifndef OPENSSL_NO_DH
  315. const DH_METHOD *meth2;
  316. #endif
  317. if(!ENGINE_set_id(e, engine_hwcrhk_id) ||
  318. !ENGINE_set_name(e, engine_hwcrhk_name) ||
  319. #ifndef OPENSSL_NO_RSA
  320. !ENGINE_set_RSA(e, &hwcrhk_rsa) ||
  321. #endif
  322. #ifndef OPENSSL_NO_DH
  323. !ENGINE_set_DH(e, &hwcrhk_dh) ||
  324. #endif
  325. !ENGINE_set_RAND(e, &hwcrhk_rand) ||
  326. !ENGINE_set_destroy_function(e, hwcrhk_destroy) ||
  327. !ENGINE_set_init_function(e, hwcrhk_init) ||
  328. !ENGINE_set_finish_function(e, hwcrhk_finish) ||
  329. !ENGINE_set_ctrl_function(e, hwcrhk_ctrl) ||
  330. !ENGINE_set_load_privkey_function(e, hwcrhk_load_privkey) ||
  331. !ENGINE_set_load_pubkey_function(e, hwcrhk_load_pubkey) ||
  332. !ENGINE_set_cmd_defns(e, hwcrhk_cmd_defns))
  333. return 0;
  334. #ifndef OPENSSL_NO_RSA
  335. /* We know that the "PKCS1_SSLeay()" functions hook properly
  336.  * to the cswift-specific mod_exp and mod_exp_crt so we use
  337.  * those functions. NB: We don't use ENGINE_openssl() or
  338.  * anything "more generic" because something like the RSAref
  339.  * code may not hook properly, and if you own one of these
  340.  * cards then you have the right to do RSA operations on it
  341.  * anyway! */ 
  342. meth1 = RSA_PKCS1_SSLeay();
  343. hwcrhk_rsa.rsa_pub_enc = meth1->rsa_pub_enc;
  344. hwcrhk_rsa.rsa_pub_dec = meth1->rsa_pub_dec;
  345. hwcrhk_rsa.rsa_priv_enc = meth1->rsa_priv_enc;
  346. hwcrhk_rsa.rsa_priv_dec = meth1->rsa_priv_dec;
  347. #endif
  348. #ifndef OPENSSL_NO_DH
  349. /* Much the same for Diffie-Hellman */
  350. meth2 = DH_OpenSSL();
  351. hwcrhk_dh.generate_key = meth2->generate_key;
  352. hwcrhk_dh.compute_key = meth2->compute_key;
  353. #endif
  354. /* Ensure the hwcrhk error handling is set up */
  355. ERR_load_HWCRHK_strings();
  356. return 1;
  357. }
  358. #ifdef OPENSSL_NO_DYNAMIC_ENGINE
  359. static ENGINE *engine_chil(void)
  360. {
  361. ENGINE *ret = ENGINE_new();
  362. if(!ret)
  363. return NULL;
  364. if(!bind_helper(ret))
  365. {
  366. ENGINE_free(ret);
  367. return NULL;
  368. }
  369. return ret;
  370. }
  371. void ENGINE_load_chil(void)
  372. {
  373. /* Copied from eng_[openssl|dyn].c */
  374. ENGINE *toadd = engine_chil();
  375. if(!toadd) return;
  376. ENGINE_add(toadd);
  377. ENGINE_free(toadd);
  378. ERR_clear_error();
  379. }
  380. #endif
  381. /* This is a process-global DSO handle used for loading and unloading
  382.  * the HWCryptoHook library. NB: This is only set (or unset) during an
  383.  * init() or finish() call (reference counts permitting) and they're
  384.  * operating with global locks, so this should be thread-safe
  385.  * implicitly. */
  386. static DSO *hwcrhk_dso = NULL;
  387. static HWCryptoHook_ContextHandle hwcrhk_context = 0;
  388. #ifndef OPENSSL_NO_RSA
  389. static int hndidx_rsa = -1;    /* Index for KM handle.  Not really used yet. */
  390. #endif
  391. /* These are the function pointers that are (un)set when the library has
  392.  * successfully (un)loaded. */
  393. static HWCryptoHook_Init_t *p_hwcrhk_Init = NULL;
  394. static HWCryptoHook_Finish_t *p_hwcrhk_Finish = NULL;
  395. static HWCryptoHook_ModExp_t *p_hwcrhk_ModExp = NULL;
  396. #ifndef OPENSSL_NO_RSA
  397. static HWCryptoHook_RSA_t *p_hwcrhk_RSA = NULL;
  398. #endif
  399. static HWCryptoHook_RandomBytes_t *p_hwcrhk_RandomBytes = NULL;
  400. #ifndef OPENSSL_NO_RSA
  401. static HWCryptoHook_RSALoadKey_t *p_hwcrhk_RSALoadKey = NULL;
  402. static HWCryptoHook_RSAGetPublicKey_t *p_hwcrhk_RSAGetPublicKey = NULL;
  403. static HWCryptoHook_RSAUnloadKey_t *p_hwcrhk_RSAUnloadKey = NULL;
  404. #endif
  405. static HWCryptoHook_ModExpCRT_t *p_hwcrhk_ModExpCRT = NULL;
  406. /* Used in the DSO operations. */
  407. static const char *HWCRHK_LIBNAME = NULL;
  408. static void free_HWCRHK_LIBNAME(void)
  409. {
  410. if(HWCRHK_LIBNAME)
  411. OPENSSL_free((void*)HWCRHK_LIBNAME);
  412. HWCRHK_LIBNAME = NULL;
  413. }
  414. static const char *get_HWCRHK_LIBNAME(void)
  415. {
  416. if(HWCRHK_LIBNAME)
  417. return HWCRHK_LIBNAME;
  418. return "nfhwcrhk";
  419. }
  420. static long set_HWCRHK_LIBNAME(const char *name)
  421. {
  422. free_HWCRHK_LIBNAME();
  423. return (((HWCRHK_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0);
  424. }
  425. static const char *n_hwcrhk_Init = "HWCryptoHook_Init";
  426. static const char *n_hwcrhk_Finish = "HWCryptoHook_Finish";
  427. static const char *n_hwcrhk_ModExp = "HWCryptoHook_ModExp";
  428. #ifndef OPENSSL_NO_RSA
  429. static const char *n_hwcrhk_RSA = "HWCryptoHook_RSA";
  430. #endif
  431. static const char *n_hwcrhk_RandomBytes = "HWCryptoHook_RandomBytes";
  432. #ifndef OPENSSL_NO_RSA
  433. static const char *n_hwcrhk_RSALoadKey = "HWCryptoHook_RSALoadKey";
  434. static const char *n_hwcrhk_RSAGetPublicKey = "HWCryptoHook_RSAGetPublicKey";
  435. static const char *n_hwcrhk_RSAUnloadKey = "HWCryptoHook_RSAUnloadKey";
  436. #endif
  437. static const char *n_hwcrhk_ModExpCRT = "HWCryptoHook_ModExpCRT";
  438. /* HWCryptoHook library functions and mechanics - these are used by the
  439.  * higher-level functions further down. NB: As and where there's no
  440.  * error checking, take a look lower down where these functions are
  441.  * called, the checking and error handling is probably down there. */
  442. /* utility function to obtain a context */
  443. static int get_context(HWCryptoHook_ContextHandle *hac,
  444.         HWCryptoHook_CallerContext *cac)
  445. {
  446. char tempbuf[1024];
  447. HWCryptoHook_ErrMsgBuf rmsg;
  448. rmsg.buf = tempbuf;
  449. rmsg.size = sizeof(tempbuf);
  450.         *hac = p_hwcrhk_Init(&hwcrhk_globals, sizeof(hwcrhk_globals), &rmsg,
  451. cac);
  452. if (!*hac)
  453.                 return 0;
  454.         return 1;
  455. }
  456.  
  457. /* similarly to release one. */
  458. static void release_context(HWCryptoHook_ContextHandle hac)
  459. {
  460. p_hwcrhk_Finish(hac);
  461. }
  462. /* Destructor (complements the "ENGINE_chil()" constructor) */
  463. static int hwcrhk_destroy(ENGINE *e)
  464. {
  465. free_HWCRHK_LIBNAME();
  466. ERR_unload_HWCRHK_strings();
  467. return 1;
  468. }
  469. /* (de)initialisation functions. */
  470. static int hwcrhk_init(ENGINE *e)
  471. {
  472. HWCryptoHook_Init_t *p1;
  473. HWCryptoHook_Finish_t *p2;
  474. HWCryptoHook_ModExp_t *p3;
  475. #ifndef OPENSSL_NO_RSA
  476. HWCryptoHook_RSA_t *p4;
  477. HWCryptoHook_RSALoadKey_t *p5;
  478. HWCryptoHook_RSAGetPublicKey_t *p6;
  479. HWCryptoHook_RSAUnloadKey_t *p7;
  480. #endif
  481. HWCryptoHook_RandomBytes_t *p8;
  482. HWCryptoHook_ModExpCRT_t *p9;
  483. if(hwcrhk_dso != NULL)
  484. {
  485. HWCRHKerr(HWCRHK_F_HWCRHK_INIT,HWCRHK_R_ALREADY_LOADED);
  486. goto err;
  487. }
  488. /* Attempt to load libnfhwcrhk.so/nfhwcrhk.dll/whatever. */
  489. hwcrhk_dso = DSO_load(NULL, get_HWCRHK_LIBNAME(), NULL, 0);
  490. if(hwcrhk_dso == NULL)
  491. {
  492. HWCRHKerr(HWCRHK_F_HWCRHK_INIT,HWCRHK_R_DSO_FAILURE);
  493. goto err;
  494. }
  495. if(!(p1 = (HWCryptoHook_Init_t *)
  496. DSO_bind_func(hwcrhk_dso, n_hwcrhk_Init)) ||
  497. !(p2 = (HWCryptoHook_Finish_t *)
  498. DSO_bind_func(hwcrhk_dso, n_hwcrhk_Finish)) ||
  499. !(p3 = (HWCryptoHook_ModExp_t *)
  500. DSO_bind_func(hwcrhk_dso, n_hwcrhk_ModExp)) ||
  501. #ifndef OPENSSL_NO_RSA
  502. !(p4 = (HWCryptoHook_RSA_t *)
  503. DSO_bind_func(hwcrhk_dso, n_hwcrhk_RSA)) ||
  504. !(p5 = (HWCryptoHook_RSALoadKey_t *)
  505. DSO_bind_func(hwcrhk_dso, n_hwcrhk_RSALoadKey)) ||
  506. !(p6 = (HWCryptoHook_RSAGetPublicKey_t *)
  507. DSO_bind_func(hwcrhk_dso, n_hwcrhk_RSAGetPublicKey)) ||
  508. !(p7 = (HWCryptoHook_RSAUnloadKey_t *)
  509. DSO_bind_func(hwcrhk_dso, n_hwcrhk_RSAUnloadKey)) ||
  510. #endif
  511. !(p8 = (HWCryptoHook_RandomBytes_t *)
  512. DSO_bind_func(hwcrhk_dso, n_hwcrhk_RandomBytes)) ||
  513. !(p9 = (HWCryptoHook_ModExpCRT_t *)
  514. DSO_bind_func(hwcrhk_dso, n_hwcrhk_ModExpCRT)))
  515. {
  516. HWCRHKerr(HWCRHK_F_HWCRHK_INIT,HWCRHK_R_DSO_FAILURE);
  517. goto err;
  518. }
  519. /* Copy the pointers */
  520. p_hwcrhk_Init = p1;
  521. p_hwcrhk_Finish = p2;
  522. p_hwcrhk_ModExp = p3;
  523. #ifndef OPENSSL_NO_RSA
  524. p_hwcrhk_RSA = p4;
  525. p_hwcrhk_RSALoadKey = p5;
  526. p_hwcrhk_RSAGetPublicKey = p6;
  527. p_hwcrhk_RSAUnloadKey = p7;
  528. #endif
  529. p_hwcrhk_RandomBytes = p8;
  530. p_hwcrhk_ModExpCRT = p9;
  531. /* Check if the application decided to support dynamic locks,
  532.    and if it does, use them. */
  533. if (disable_mutex_callbacks == 0)
  534. {
  535. if (CRYPTO_get_dynlock_create_callback() != NULL &&
  536. CRYPTO_get_dynlock_lock_callback() != NULL &&
  537. CRYPTO_get_dynlock_destroy_callback() != NULL)
  538. {
  539. hwcrhk_globals.mutex_init = hwcrhk_mutex_init;
  540. hwcrhk_globals.mutex_acquire = hwcrhk_mutex_lock;
  541. hwcrhk_globals.mutex_release = hwcrhk_mutex_unlock;
  542. hwcrhk_globals.mutex_destroy = hwcrhk_mutex_destroy;
  543. }
  544. else if (CRYPTO_get_locking_callback() != NULL)
  545. {
  546. HWCRHKerr(HWCRHK_F_HWCRHK_INIT,HWCRHK_R_LOCKING_MISSING);
  547. ERR_add_error_data(1,"You HAVE to add dynamic locking callbacks via CRYPTO_set_dynlock_{create,lock,destroy}_callback()");
  548. goto err;
  549. }
  550. }
  551. /* Try and get a context - if not, we may have a DSO but no
  552.  * accelerator! */
  553. if(!get_context(&hwcrhk_context, &password_context))
  554. {
  555. HWCRHKerr(HWCRHK_F_HWCRHK_INIT,HWCRHK_R_UNIT_FAILURE);
  556. goto err;
  557. }
  558. /* Everything's fine. */
  559. #ifndef OPENSSL_NO_RSA
  560. if (hndidx_rsa == -1)
  561. hndidx_rsa = RSA_get_ex_new_index(0,
  562. "nFast HWCryptoHook RSA key handle",
  563. NULL, NULL, hwcrhk_ex_free);
  564. #endif
  565. return 1;
  566. err:
  567. if(hwcrhk_dso)
  568. DSO_free(hwcrhk_dso);
  569. hwcrhk_dso = NULL;
  570. p_hwcrhk_Init = NULL;
  571. p_hwcrhk_Finish = NULL;
  572. p_hwcrhk_ModExp = NULL;
  573. #ifndef OPENSSL_NO_RSA
  574. p_hwcrhk_RSA = NULL;
  575. p_hwcrhk_RSALoadKey = NULL;
  576. p_hwcrhk_RSAGetPublicKey = NULL;
  577. p_hwcrhk_RSAUnloadKey = NULL;
  578. #endif
  579. p_hwcrhk_ModExpCRT = NULL;
  580. p_hwcrhk_RandomBytes = NULL;
  581. return 0;
  582. }
  583. static int hwcrhk_finish(ENGINE *e)
  584. {
  585. int to_return = 1;
  586. free_HWCRHK_LIBNAME();
  587. if(hwcrhk_dso == NULL)
  588. {
  589. HWCRHKerr(HWCRHK_F_HWCRHK_FINISH,HWCRHK_R_NOT_LOADED);
  590. to_return = 0;
  591. goto err;
  592. }
  593. release_context(hwcrhk_context);
  594. if(!DSO_free(hwcrhk_dso))
  595. {
  596. HWCRHKerr(HWCRHK_F_HWCRHK_FINISH,HWCRHK_R_DSO_FAILURE);
  597. to_return = 0;
  598. goto err;
  599. }
  600.  err:
  601. if (logstream)
  602. BIO_free(logstream);
  603. hwcrhk_dso = NULL;
  604. p_hwcrhk_Init = NULL;
  605. p_hwcrhk_Finish = NULL;
  606. p_hwcrhk_ModExp = NULL;
  607. #ifndef OPENSSL_NO_RSA
  608. p_hwcrhk_RSA = NULL;
  609. p_hwcrhk_RSALoadKey = NULL;
  610. p_hwcrhk_RSAGetPublicKey = NULL;
  611. p_hwcrhk_RSAUnloadKey = NULL;
  612. #endif
  613. p_hwcrhk_ModExpCRT = NULL;
  614. p_hwcrhk_RandomBytes = NULL;
  615. return to_return;
  616. }
  617. static int hwcrhk_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void))
  618. {
  619. int to_return = 1;
  620. switch(cmd)
  621. {
  622. case HWCRHK_CMD_SO_PATH:
  623. if(hwcrhk_dso)
  624. {
  625. HWCRHKerr(HWCRHK_F_HWCRHK_CTRL,HWCRHK_R_ALREADY_LOADED);
  626. return 0;
  627. }
  628. if(p == NULL)
  629. {
  630. HWCRHKerr(HWCRHK_F_HWCRHK_CTRL,ERR_R_PASSED_NULL_PARAMETER);
  631. return 0;
  632. }
  633. return set_HWCRHK_LIBNAME((const char *)p);
  634. case ENGINE_CTRL_SET_LOGSTREAM:
  635. {
  636. BIO *bio = (BIO *)p;
  637. CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
  638. if (logstream)
  639. {
  640. BIO_free(logstream);
  641. logstream = NULL;
  642. }
  643. if (CRYPTO_add(&bio->references,1,CRYPTO_LOCK_BIO) > 1)
  644. logstream = bio;
  645. else
  646. HWCRHKerr(HWCRHK_F_HWCRHK_CTRL,HWCRHK_R_BIO_WAS_FREED);
  647. }
  648. CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
  649. break;
  650. case ENGINE_CTRL_SET_PASSWORD_CALLBACK:
  651. CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
  652. password_context.password_callback = (pem_password_cb *)f;
  653. CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
  654. break;
  655. case ENGINE_CTRL_SET_USER_INTERFACE:
  656. case HWCRHK_CMD_SET_USER_INTERFACE:
  657. CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
  658. password_context.ui_method = (UI_METHOD *)p;
  659. CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
  660. break;
  661. case ENGINE_CTRL_SET_CALLBACK_DATA:
  662. case HWCRHK_CMD_SET_CALLBACK_DATA:
  663. CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
  664. password_context.callback_data = p;
  665. CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
  666. break;
  667. /* this enables or disables the "SimpleForkCheck" flag used in the
  668.  * initialisation structure. */
  669. case ENGINE_CTRL_CHIL_SET_FORKCHECK:
  670. case HWCRHK_CMD_FORK_CHECK:
  671. CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
  672. if(i)
  673. hwcrhk_globals.flags |=
  674. HWCryptoHook_InitFlags_SimpleForkCheck;
  675. else
  676. hwcrhk_globals.flags &=
  677. ~HWCryptoHook_InitFlags_SimpleForkCheck;
  678. CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
  679. break;
  680. /* This will prevent the initialisation function from "installing"
  681.  * the mutex-handling callbacks, even if they are available from
  682.  * within the library (or were provided to the library from the
  683.  * calling application). This is to remove any baggage for
  684.  * applications not using multithreading. */
  685. case ENGINE_CTRL_CHIL_NO_LOCKING:
  686. CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
  687. disable_mutex_callbacks = 1;
  688. CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
  689. break;
  690. case HWCRHK_CMD_THREAD_LOCKING:
  691. CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
  692. disable_mutex_callbacks = ((i == 0) ? 0 : 1);
  693. CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
  694. break;
  695. /* The command isn't understood by this engine */
  696. default:
  697. HWCRHKerr(HWCRHK_F_HWCRHK_CTRL,
  698. HWCRHK_R_CTRL_COMMAND_NOT_IMPLEMENTED);
  699. to_return = 0;
  700. break;
  701. }
  702. return to_return;
  703. }
  704. static EVP_PKEY *hwcrhk_load_privkey(ENGINE *eng, const char *key_id,
  705. UI_METHOD *ui_method, void *callback_data)
  706. {
  707. #ifndef OPENSSL_NO_RSA
  708. RSA *rtmp = NULL;
  709. #endif
  710. EVP_PKEY *res = NULL;
  711. #ifndef OPENSSL_NO_RSA
  712. HWCryptoHook_MPI e, n;
  713. HWCryptoHook_RSAKeyHandle *hptr;
  714. #endif
  715. #if !defined(OPENSSL_NO_RSA)
  716. char tempbuf[1024];
  717. HWCryptoHook_ErrMsgBuf rmsg;
  718. HWCryptoHook_PassphraseContext ppctx;
  719. #endif
  720. #if !defined(OPENSSL_NO_RSA)
  721. rmsg.buf = tempbuf;
  722. rmsg.size = sizeof(tempbuf);
  723. #endif
  724. if(!hwcrhk_context)
  725. {
  726. HWCRHKerr(HWCRHK_F_HWCRHK_LOAD_PRIVKEY,
  727. HWCRHK_R_NOT_INITIALISED);
  728. goto err;
  729. }
  730. #ifndef OPENSSL_NO_RSA
  731. hptr = OPENSSL_malloc(sizeof(HWCryptoHook_RSAKeyHandle));
  732. if (!hptr)
  733. {
  734. HWCRHKerr(HWCRHK_F_HWCRHK_LOAD_PRIVKEY,
  735. ERR_R_MALLOC_FAILURE);
  736. goto err;
  737. }
  738.         ppctx.ui_method = ui_method;
  739. ppctx.callback_data = callback_data;
  740. if (p_hwcrhk_RSALoadKey(hwcrhk_context, key_id, hptr,
  741. &rmsg, &ppctx))
  742. {
  743. HWCRHKerr(HWCRHK_F_HWCRHK_LOAD_PRIVKEY,
  744. HWCRHK_R_CHIL_ERROR);
  745. ERR_add_error_data(1,rmsg.buf);
  746. goto err;
  747. }
  748. if (!*hptr)
  749. {
  750. HWCRHKerr(HWCRHK_F_HWCRHK_LOAD_PRIVKEY,
  751. HWCRHK_R_NO_KEY);
  752. goto err;
  753. }
  754. #endif
  755. #ifndef OPENSSL_NO_RSA
  756. rtmp = RSA_new_method(eng);
  757. RSA_set_ex_data(rtmp, hndidx_rsa, (char *)hptr);
  758. rtmp->e = BN_new();
  759. rtmp->n = BN_new();
  760. rtmp->flags |= RSA_FLAG_EXT_PKEY;
  761. MPI2BN(rtmp->e, e);
  762. MPI2BN(rtmp->n, n);
  763. if (p_hwcrhk_RSAGetPublicKey(*hptr, &n, &e, &rmsg)
  764. != HWCRYPTOHOOK_ERROR_MPISIZE)
  765. {
  766. HWCRHKerr(HWCRHK_F_HWCRHK_LOAD_PRIVKEY,HWCRHK_R_CHIL_ERROR);
  767. ERR_add_error_data(1,rmsg.buf);
  768. goto err;
  769. }
  770. bn_expand2(rtmp->e, e.size/sizeof(BN_ULONG));
  771. bn_expand2(rtmp->n, n.size/sizeof(BN_ULONG));
  772. MPI2BN(rtmp->e, e);
  773. MPI2BN(rtmp->n, n);
  774. if (p_hwcrhk_RSAGetPublicKey(*hptr, &n, &e, &rmsg))
  775. {
  776. HWCRHKerr(HWCRHK_F_HWCRHK_LOAD_PRIVKEY,
  777. HWCRHK_R_CHIL_ERROR);
  778. ERR_add_error_data(1,rmsg.buf);
  779. goto err;
  780. }
  781. rtmp->e->top = e.size / sizeof(BN_ULONG);
  782. bn_fix_top(rtmp->e);
  783. rtmp->n->top = n.size / sizeof(BN_ULONG);
  784. bn_fix_top(rtmp->n);
  785. res = EVP_PKEY_new();
  786. EVP_PKEY_assign_RSA(res, rtmp);
  787. #endif
  788.         if (!res)
  789.                 HWCRHKerr(HWCRHK_F_HWCRHK_LOAD_PRIVKEY,
  790.                         HWCRHK_R_PRIVATE_KEY_ALGORITHMS_DISABLED);
  791. return res;
  792.  err:
  793. if (res)
  794. EVP_PKEY_free(res);
  795. #ifndef OPENSSL_NO_RSA
  796. if (rtmp)
  797. RSA_free(rtmp);
  798. #endif
  799. return NULL;
  800. }
  801. static EVP_PKEY *hwcrhk_load_pubkey(ENGINE *eng, const char *key_id,
  802. UI_METHOD *ui_method, void *callback_data)
  803. {
  804. EVP_PKEY *res = NULL;
  805. #ifndef OPENSSL_NO_RSA
  806.         res = hwcrhk_load_privkey(eng, key_id,
  807.                 ui_method, callback_data);
  808. #endif
  809. if (res)
  810. switch(res->type)
  811. {
  812. #ifndef OPENSSL_NO_RSA
  813. case EVP_PKEY_RSA:
  814. {
  815. RSA *rsa = NULL;
  816. CRYPTO_w_lock(CRYPTO_LOCK_EVP_PKEY);
  817. rsa = res->pkey.rsa;
  818. res->pkey.rsa = RSA_new();
  819. res->pkey.rsa->n = rsa->n;
  820. res->pkey.rsa->e = rsa->e;
  821. rsa->n = NULL;
  822. rsa->e = NULL;
  823. CRYPTO_w_unlock(CRYPTO_LOCK_EVP_PKEY);
  824. RSA_free(rsa);
  825. }
  826. break;
  827. #endif
  828. default:
  829. HWCRHKerr(HWCRHK_F_HWCRHK_LOAD_PUBKEY,
  830. HWCRHK_R_CTRL_COMMAND_NOT_IMPLEMENTED);
  831. goto err;
  832. }
  833. return res;
  834.  err:
  835. if (res)
  836. EVP_PKEY_free(res);
  837. return NULL;
  838. }
  839. /* A little mod_exp */
  840. static int hwcrhk_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
  841. const BIGNUM *m, BN_CTX *ctx)
  842. {
  843. char tempbuf[1024];
  844. HWCryptoHook_ErrMsgBuf rmsg;
  845. /* Since HWCryptoHook_MPI is pretty compatible with BIGNUM's,
  846.    we use them directly, plus a little macro magic.  We only
  847.    thing we need to make sure of is that enough space is allocated. */
  848. HWCryptoHook_MPI m_a, m_p, m_n, m_r;
  849. int to_return, ret;
  850.  
  851. to_return = 0; /* expect failure */
  852. rmsg.buf = tempbuf;
  853. rmsg.size = sizeof(tempbuf);
  854. if(!hwcrhk_context)
  855. {
  856. HWCRHKerr(HWCRHK_F_HWCRHK_MOD_EXP,HWCRHK_R_NOT_INITIALISED);
  857. goto err;
  858. }
  859. /* Prepare the params */
  860. bn_expand2(r, m->top); /* Check for error !! */
  861. BN2MPI(m_a, a);
  862. BN2MPI(m_p, p);
  863. BN2MPI(m_n, m);
  864. MPI2BN(r, m_r);
  865. /* Perform the operation */
  866. ret = p_hwcrhk_ModExp(hwcrhk_context, m_a, m_p, m_n, &m_r, &rmsg);
  867. /* Convert the response */
  868. r->top = m_r.size / sizeof(BN_ULONG);
  869. bn_fix_top(r);
  870. if (ret < 0)
  871. {
  872. /* FIXME: When this error is returned, HWCryptoHook is
  873.    telling us that falling back to software computation
  874.    might be a good thing. */
  875. if(ret == HWCRYPTOHOOK_ERROR_FALLBACK)
  876. {
  877. HWCRHKerr(HWCRHK_F_HWCRHK_MOD_EXP,HWCRHK_R_REQUEST_FALLBACK);
  878. }
  879. else
  880. {
  881. HWCRHKerr(HWCRHK_F_HWCRHK_MOD_EXP,HWCRHK_R_REQUEST_FAILED);
  882. }
  883. ERR_add_error_data(1,rmsg.buf);
  884. goto err;
  885. }
  886. to_return = 1;
  887. err:
  888. return to_return;
  889. }
  890. #ifndef OPENSSL_NO_RSA 
  891. static int hwcrhk_rsa_mod_exp(BIGNUM *r, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
  892. {
  893. char tempbuf[1024];
  894. HWCryptoHook_ErrMsgBuf rmsg;
  895. HWCryptoHook_RSAKeyHandle *hptr;
  896. int to_return = 0, ret;
  897. rmsg.buf = tempbuf;
  898. rmsg.size = sizeof(tempbuf);
  899. if(!hwcrhk_context)
  900. {
  901. HWCRHKerr(HWCRHK_F_HWCRHK_RSA_MOD_EXP,HWCRHK_R_NOT_INITIALISED);
  902. goto err;
  903. }
  904. /* This provides support for nForce keys.  Since that's opaque data
  905.    all we do is provide a handle to the proper key and let HWCryptoHook
  906.    take care of the rest. */
  907. if ((hptr = (HWCryptoHook_RSAKeyHandle *) RSA_get_ex_data(rsa, hndidx_rsa))
  908. != NULL)
  909. {
  910. HWCryptoHook_MPI m_a, m_r;
  911. if(!rsa->n)
  912. {
  913. HWCRHKerr(HWCRHK_F_HWCRHK_RSA_MOD_EXP,
  914. HWCRHK_R_MISSING_KEY_COMPONENTS);
  915. goto err;
  916. }
  917. /* Prepare the params */
  918. bn_expand2(r, rsa->n->top); /* Check for error !! */
  919. BN2MPI(m_a, I);
  920. MPI2BN(r, m_r);
  921. /* Perform the operation */
  922. ret = p_hwcrhk_RSA(m_a, *hptr, &m_r, &rmsg);
  923. /* Convert the response */
  924. r->top = m_r.size / sizeof(BN_ULONG);
  925. bn_fix_top(r);
  926. if (ret < 0)
  927. {
  928. /* FIXME: When this error is returned, HWCryptoHook is
  929.    telling us that falling back to software computation
  930.    might be a good thing. */
  931. if(ret == HWCRYPTOHOOK_ERROR_FALLBACK)
  932. {
  933. HWCRHKerr(HWCRHK_F_HWCRHK_RSA_MOD_EXP,
  934. HWCRHK_R_REQUEST_FALLBACK);
  935. }
  936. else
  937. {
  938. HWCRHKerr(HWCRHK_F_HWCRHK_RSA_MOD_EXP,
  939. HWCRHK_R_REQUEST_FAILED);
  940. }
  941. ERR_add_error_data(1,rmsg.buf);
  942. goto err;
  943. }
  944. }
  945. else
  946. {
  947. HWCryptoHook_MPI m_a, m_p, m_q, m_dmp1, m_dmq1, m_iqmp, m_r;
  948. if(!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp)
  949. {
  950. HWCRHKerr(HWCRHK_F_HWCRHK_RSA_MOD_EXP,
  951. HWCRHK_R_MISSING_KEY_COMPONENTS);
  952. goto err;
  953. }
  954. /* Prepare the params */
  955. bn_expand2(r, rsa->n->top); /* Check for error !! */
  956. BN2MPI(m_a, I);
  957. BN2MPI(m_p, rsa->p);
  958. BN2MPI(m_q, rsa->q);
  959. BN2MPI(m_dmp1, rsa->dmp1);
  960. BN2MPI(m_dmq1, rsa->dmq1);
  961. BN2MPI(m_iqmp, rsa->iqmp);
  962. MPI2BN(r, m_r);
  963. /* Perform the operation */
  964. ret = p_hwcrhk_ModExpCRT(hwcrhk_context, m_a, m_p, m_q,
  965. m_dmp1, m_dmq1, m_iqmp, &m_r, &rmsg);
  966. /* Convert the response */
  967. r->top = m_r.size / sizeof(BN_ULONG);
  968. bn_fix_top(r);
  969. if (ret < 0)
  970. {
  971. /* FIXME: When this error is returned, HWCryptoHook is
  972.    telling us that falling back to software computation
  973.    might be a good thing. */
  974. if(ret == HWCRYPTOHOOK_ERROR_FALLBACK)
  975. {
  976. HWCRHKerr(HWCRHK_F_HWCRHK_RSA_MOD_EXP,
  977. HWCRHK_R_REQUEST_FALLBACK);
  978. }
  979. else
  980. {
  981. HWCRHKerr(HWCRHK_F_HWCRHK_RSA_MOD_EXP,
  982. HWCRHK_R_REQUEST_FAILED);
  983. }
  984. ERR_add_error_data(1,rmsg.buf);
  985. goto err;
  986. }
  987. }
  988. /* If we're here, we must be here with some semblance of success :-) */
  989. to_return = 1;
  990. err:
  991. return to_return;
  992. }
  993. #endif
  994. #ifndef OPENSSL_NO_RSA
  995. /* This function is aliased to mod_exp (with the mont stuff dropped). */
  996. static int hwcrhk_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
  997. const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx)
  998. {
  999. return hwcrhk_mod_exp(r, a, p, m, ctx);
  1000. }
  1001. #endif
  1002. #ifndef OPENSSL_NO_DH
  1003. /* This function is aliased to mod_exp (with the dh and mont dropped). */
  1004. static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r,
  1005. const BIGNUM *a, const BIGNUM *p,
  1006. const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx)
  1007. {
  1008. return hwcrhk_mod_exp(r, a, p, m, ctx);
  1009. }
  1010. #endif
  1011. /* Random bytes are good */
  1012. static int hwcrhk_rand_bytes(unsigned char *buf, int num)
  1013. {
  1014. char tempbuf[1024];
  1015. HWCryptoHook_ErrMsgBuf rmsg;
  1016. int to_return = 0; /* assume failure */
  1017. int ret;
  1018. rmsg.buf = tempbuf;
  1019. rmsg.size = sizeof(tempbuf);
  1020. if(!hwcrhk_context)
  1021. {
  1022. HWCRHKerr(HWCRHK_F_HWCRHK_RAND_BYTES,HWCRHK_R_NOT_INITIALISED);
  1023. goto err;
  1024. }
  1025. ret = p_hwcrhk_RandomBytes(hwcrhk_context, buf, num, &rmsg);
  1026. if (ret < 0)
  1027. {
  1028. /* FIXME: When this error is returned, HWCryptoHook is
  1029.    telling us that falling back to software computation
  1030.    might be a good thing. */
  1031. if(ret == HWCRYPTOHOOK_ERROR_FALLBACK)
  1032. {
  1033. HWCRHKerr(HWCRHK_F_HWCRHK_RAND_BYTES,
  1034. HWCRHK_R_REQUEST_FALLBACK);
  1035. }
  1036. else
  1037. {
  1038. HWCRHKerr(HWCRHK_F_HWCRHK_RAND_BYTES,
  1039. HWCRHK_R_REQUEST_FAILED);
  1040. }
  1041. ERR_add_error_data(1,rmsg.buf);
  1042. goto err;
  1043. }
  1044. to_return = 1;
  1045.  err:
  1046. return to_return;
  1047. }
  1048. static int hwcrhk_rand_status(void)
  1049. {
  1050. return 1;
  1051. }
  1052. /* This cleans up an RSA KM key, called when ex_data is freed */
  1053. #ifndef OPENSSL_NO_RSA
  1054. static void hwcrhk_ex_free(void *obj, void *item, CRYPTO_EX_DATA *ad,
  1055. int ind,long argl, void *argp)
  1056. {
  1057. char tempbuf[1024];
  1058. HWCryptoHook_ErrMsgBuf rmsg;
  1059. #ifndef OPENSSL_NO_RSA
  1060. HWCryptoHook_RSAKeyHandle *hptr;
  1061. #endif
  1062. #if !defined(OPENSSL_NO_RSA)
  1063. int ret;
  1064. #endif
  1065. rmsg.buf = tempbuf;
  1066. rmsg.size = sizeof(tempbuf);
  1067. #ifndef OPENSSL_NO_RSA
  1068. hptr = (HWCryptoHook_RSAKeyHandle *) item;
  1069. if(hptr)
  1070.                 {
  1071.                 ret = p_hwcrhk_RSAUnloadKey(*hptr, NULL);
  1072.                 OPENSSL_free(hptr);
  1073.                 }
  1074. #endif
  1075. }
  1076. #endif
  1077. /* Mutex calls: since the HWCryptoHook model closely follows the POSIX model
  1078.  * these just wrap the POSIX functions and add some logging.
  1079.  */
  1080. static int hwcrhk_mutex_init(HWCryptoHook_Mutex* mt,
  1081. HWCryptoHook_CallerContext *cactx)
  1082. {
  1083. mt->lockid = CRYPTO_get_new_dynlockid();
  1084. if (mt->lockid == 0)
  1085. return 1; /* failure */
  1086. return 0; /* success */
  1087. }
  1088. static int hwcrhk_mutex_lock(HWCryptoHook_Mutex *mt)
  1089. {
  1090. CRYPTO_w_lock(mt->lockid);
  1091. return 0;
  1092. }
  1093. static void hwcrhk_mutex_unlock(HWCryptoHook_Mutex * mt)
  1094. {
  1095. CRYPTO_w_unlock(mt->lockid);
  1096. }
  1097. static void hwcrhk_mutex_destroy(HWCryptoHook_Mutex *mt)
  1098. {
  1099. CRYPTO_destroy_dynlockid(mt->lockid);
  1100. }
  1101. static int hwcrhk_get_pass(const char *prompt_info,
  1102. int *len_io, char *buf,
  1103. HWCryptoHook_PassphraseContext *ppctx,
  1104. HWCryptoHook_CallerContext *cactx)
  1105. {
  1106. pem_password_cb *callback = NULL;
  1107. void *callback_data = NULL;
  1108.         UI_METHOD *ui_method = NULL;
  1109.         if (cactx)
  1110.                 {
  1111.                 if (cactx->ui_method)
  1112.                         ui_method = cactx->ui_method;
  1113. if (cactx->password_callback)
  1114. callback = cactx->password_callback;
  1115. if (cactx->callback_data)
  1116. callback_data = cactx->callback_data;
  1117.                 }
  1118. if (ppctx)
  1119. {
  1120.                 if (ppctx->ui_method)
  1121.                         {
  1122.                         ui_method = ppctx->ui_method;
  1123.                         callback = NULL;
  1124.                         }
  1125. if (ppctx->callback_data)
  1126. callback_data = ppctx->callback_data;
  1127. }
  1128. if (callback == NULL && ui_method == NULL)
  1129. {
  1130. HWCRHKerr(HWCRHK_F_HWCRHK_GET_PASS,HWCRHK_R_NO_CALLBACK);
  1131. return -1;
  1132. }
  1133.         if (ui_method)
  1134.                 {
  1135.                 UI *ui = UI_new_method(ui_method);
  1136.                 if (ui)
  1137.                         {
  1138.                         int ok;
  1139.                         char *prompt = UI_construct_prompt(ui,
  1140.                                 "pass phrase", prompt_info);
  1141.                         ok = UI_add_input_string(ui,prompt,
  1142.                                 UI_INPUT_FLAG_DEFAULT_PWD,
  1143. buf,0,(*len_io) - 1);
  1144.                         UI_add_user_data(ui, callback_data);
  1145. UI_ctrl(ui, UI_CTRL_PRINT_ERRORS, 1, 0, 0);
  1146. if (ok >= 0)
  1147. do
  1148. {
  1149. ok=UI_process(ui);
  1150. }
  1151. while (ok < 0 && UI_ctrl(ui, UI_CTRL_IS_REDOABLE, 0, 0, 0));
  1152.                         if (ok >= 0)
  1153.                                 *len_io = strlen(buf);
  1154.                         UI_free(ui);
  1155.                         OPENSSL_free(prompt);
  1156.                         }
  1157.                 }
  1158.         else
  1159.                 {
  1160.                 *len_io = callback(buf, *len_io, 0, callback_data);
  1161.                 }
  1162. if(!*len_io)
  1163. return -1;
  1164. return 0;
  1165. }
  1166. static int hwcrhk_insert_card(const char *prompt_info,
  1167.       const char *wrong_info,
  1168.       HWCryptoHook_PassphraseContext *ppctx,
  1169.       HWCryptoHook_CallerContext *cactx)
  1170.         {
  1171.         int ok = -1;
  1172.         UI *ui;
  1173. void *callback_data = NULL;
  1174.         UI_METHOD *ui_method = NULL;
  1175.         if (cactx)
  1176.                 {
  1177.                 if (cactx->ui_method)
  1178.                         ui_method = cactx->ui_method;
  1179. if (cactx->callback_data)
  1180. callback_data = cactx->callback_data;
  1181.                 }
  1182. if (ppctx)
  1183. {
  1184.                 if (ppctx->ui_method)
  1185.                         ui_method = ppctx->ui_method;
  1186. if (ppctx->callback_data)
  1187. callback_data = ppctx->callback_data;
  1188. }
  1189. if (ui_method == NULL)
  1190. {
  1191. HWCRHKerr(HWCRHK_F_HWCRHK_INSERT_CARD,
  1192. HWCRHK_R_NO_CALLBACK);
  1193. return -1;
  1194. }
  1195. ui = UI_new_method(ui_method);
  1196. if (ui)
  1197. {
  1198. char answer;
  1199. char buf[BUFSIZ];
  1200. if (wrong_info)
  1201. BIO_snprintf(buf, sizeof(buf)-1,
  1202. "Current card: "%s"n", wrong_info);
  1203. ok = UI_dup_info_string(ui, buf);
  1204. if (ok >= 0 && prompt_info)
  1205. {
  1206. BIO_snprintf(buf, sizeof(buf)-1,
  1207. "Insert card "%s"", prompt_info);
  1208. ok = UI_dup_input_boolean(ui, buf,
  1209. "n then hit <enter> or C<enter> to canceln",
  1210. "rn", "Cc", UI_INPUT_FLAG_ECHO, &answer);
  1211. }
  1212. UI_add_user_data(ui, callback_data);
  1213. if (ok >= 0)
  1214. ok = UI_process(ui);
  1215. UI_free(ui);
  1216. if (ok == -2 || (ok >= 0 && answer == 'C'))
  1217. ok = 1;
  1218. else if (ok < 0)
  1219. ok = -1;
  1220. else
  1221. ok = 0;
  1222. }
  1223. return ok;
  1224. }
  1225. static void hwcrhk_log_message(void *logstr, const char *message)
  1226. {
  1227. BIO *lstream = NULL;
  1228. CRYPTO_w_lock(CRYPTO_LOCK_BIO);
  1229. if (logstr)
  1230. lstream=*(BIO **)logstr;
  1231. if (lstream)
  1232. {
  1233. BIO_printf(lstream, "%sn", message);
  1234. }
  1235. CRYPTO_w_unlock(CRYPTO_LOCK_BIO);
  1236. }
  1237. /* This stuff is needed if this ENGINE is being compiled into a self-contained
  1238.  * shared-library. */    
  1239. #ifndef OPENSSL_NO_DYNAMIC_ENGINE
  1240. static int bind_fn(ENGINE *e, const char *id)
  1241. {
  1242. if(id && (strcmp(id, engine_hwcrhk_id) != 0) &&
  1243. (strcmp(id, engine_hwcrhk_id_alt) != 0))
  1244. return 0;
  1245. if(!bind_helper(e))
  1246. return 0;
  1247. return 1;
  1248. }       
  1249. IMPLEMENT_DYNAMIC_CHECK_FN()
  1250. IMPLEMENT_DYNAMIC_BIND_FN(bind_fn)
  1251. #endif /* OPENSSL_NO_DYNAMIC_ENGINE */
  1252. #endif /* !OPENSSL_NO_HW_CHIL */
  1253. #endif /* !OPENSSL_NO_HW */