e_chil.c 42 KB

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