1 /* crypto/engine/hw_ibmca.c */
3 * Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL project
6 /* ====================================================================
7 * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
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 * ====================================================================
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).
60 /* (C) COPYRIGHT International Business Machines Corp. 2001 */
63 #include <openssl/crypto.h>
64 #include <openssl/dso.h>
65 #include <openssl/engine.h>
68 # ifndef OPENSSL_NO_HW_IBMCA
71 # include "ica_openssl_api.h"
73 # include "vendor_defns/ica_openssl_api.h"
76 # define IBMCA_LIB_NAME "ibmca engine"
77 # include "hw_ibmca_err.c"
79 static int ibmca_destroy(ENGINE
*e
);
80 static int ibmca_init(ENGINE
*e
);
81 static int ibmca_finish(ENGINE
*e
);
82 static int ibmca_ctrl(ENGINE
*e
, int cmd
, long i
, void *p
, void (*f
) ());
84 static const char *IBMCA_F1
= "icaOpenAdapter";
85 static const char *IBMCA_F2
= "icaCloseAdapter";
86 static const char *IBMCA_F3
= "icaRsaModExpo";
87 static const char *IBMCA_F4
= "icaRandomNumberGenerate";
88 static const char *IBMCA_F5
= "icaRsaCrt";
90 ICA_ADAPTER_HANDLE handle
= 0;
93 static int ibmca_mod_exp(BIGNUM
*r
, const BIGNUM
*a
, const BIGNUM
*p
,
94 const BIGNUM
*m
, BN_CTX
*ctx
);
96 static int ibmca_mod_exp_crt(BIGNUM
*r
, const BIGNUM
*a
, const BIGNUM
*p
,
97 const BIGNUM
*q
, const BIGNUM
*dmp1
,
98 const BIGNUM
*dmq1
, const BIGNUM
*iqmp
,
101 # ifndef OPENSSL_NO_RSA
103 static int ibmca_rsa_mod_exp(BIGNUM
*r0
, const BIGNUM
*I
, RSA
*rsa
);
106 /* This function is aliased to mod_exp (with the mont stuff dropped). */
107 static int ibmca_mod_exp_mont(BIGNUM
*r
, const BIGNUM
*a
, const BIGNUM
*p
,
108 const BIGNUM
*m
, BN_CTX
*ctx
,
111 # ifndef OPENSSL_NO_DSA
113 static int ibmca_dsa_mod_exp(DSA
*dsa
, BIGNUM
*rr
, BIGNUM
*a1
,
114 BIGNUM
*p1
, BIGNUM
*a2
, BIGNUM
*p2
, BIGNUM
*m
,
115 BN_CTX
*ctx
, BN_MONT_CTX
*in_mont
);
116 static int ibmca_mod_exp_dsa(DSA
*dsa
, BIGNUM
*r
, BIGNUM
*a
,
117 const BIGNUM
*p
, const BIGNUM
*m
, BN_CTX
*ctx
,
121 # ifndef OPENSSL_NO_DH
123 /* This function is alised to mod_exp (with the DH and mont dropped). */
124 static int ibmca_mod_exp_dh(const DH
*dh
, BIGNUM
*r
,
125 const BIGNUM
*a
, const BIGNUM
*p
,
126 const BIGNUM
*m
, BN_CTX
*ctx
, BN_MONT_CTX
*m_ctx
);
130 static int ibmca_rand_bytes(unsigned char *buf
, int num
);
131 static int ibmca_rand_status(void);
133 /* WJH - check for more commands, like in nuron */
135 /* The definitions for control commands specific to this engine */
136 # define IBMCA_CMD_SO_PATH ENGINE_CMD_BASE
137 static const ENGINE_CMD_DEFN ibmca_cmd_defns
[] = {
140 "Specifies the path to the 'atasi' shared library",
141 ENGINE_CMD_FLAG_STRING
},
145 # ifndef OPENSSL_NO_RSA
146 /* Our internal RSA_METHOD that we provide pointers to */
147 static RSA_METHOD ibmca_rsa
= {
164 # ifndef OPENSSL_NO_DSA
165 /* Our internal DSA_METHOD that we provide pointers to */
166 static DSA_METHOD ibmca_dsa
= {
168 NULL
, /* dsa_do_sign */
169 NULL
, /* dsa_sign_setup */
170 NULL
, /* dsa_do_verify */
171 ibmca_dsa_mod_exp
, /* dsa_mod_exp */
172 ibmca_mod_exp_dsa
, /* bn_mod_exp */
180 # ifndef OPENSSL_NO_DH
181 /* Our internal DH_METHOD that we provide pointers to */
182 static DH_METHOD ibmca_dh
= {
194 static RAND_METHOD ibmca_rand
= {
195 /* "IBMCA RAND method", */
204 /* Constants used when creating the ENGINE */
205 static const char *engine_ibmca_id
= "ibmca";
206 static const char *engine_ibmca_name
= "Ibmca hardware engine support";
209 * This internal function is used by ENGINE_ibmca() and possibly by the
210 * "dynamic" ENGINE support too
212 static int bind_helper(ENGINE
*e
)
214 # ifndef OPENSSL_NO_RSA
215 const RSA_METHOD
*meth1
;
217 # ifndef OPENSSL_NO_DSA
218 const DSA_METHOD
*meth2
;
220 # ifndef OPENSSL_NO_DH
221 const DH_METHOD
*meth3
;
223 if (!ENGINE_set_id(e
, engine_ibmca_id
) ||
224 !ENGINE_set_name(e
, engine_ibmca_name
) ||
225 # ifndef OPENSSL_NO_RSA
226 !ENGINE_set_RSA(e
, &ibmca_rsa
) ||
228 # ifndef OPENSSL_NO_DSA
229 !ENGINE_set_DSA(e
, &ibmca_dsa
) ||
231 # ifndef OPENSSL_NO_DH
232 !ENGINE_set_DH(e
, &ibmca_dh
) ||
234 !ENGINE_set_RAND(e
, &ibmca_rand
) ||
235 !ENGINE_set_destroy_function(e
, ibmca_destroy
) ||
236 !ENGINE_set_init_function(e
, ibmca_init
) ||
237 !ENGINE_set_finish_function(e
, ibmca_finish
) ||
238 !ENGINE_set_ctrl_function(e
, ibmca_ctrl
) ||
239 !ENGINE_set_cmd_defns(e
, ibmca_cmd_defns
))
242 # ifndef OPENSSL_NO_RSA
244 * We know that the "PKCS1_SSLeay()" functions hook properly to the
245 * ibmca-specific mod_exp and mod_exp_crt so we use those functions. NB:
246 * We don't use ENGINE_openssl() or anything "more generic" because
247 * something like the RSAref code may not hook properly, and if you own
248 * one of these cards then you have the right to do RSA operations on it
251 meth1
= RSA_PKCS1_SSLeay();
252 ibmca_rsa
.rsa_pub_enc
= meth1
->rsa_pub_enc
;
253 ibmca_rsa
.rsa_pub_dec
= meth1
->rsa_pub_dec
;
254 ibmca_rsa
.rsa_priv_enc
= meth1
->rsa_priv_enc
;
255 ibmca_rsa
.rsa_priv_dec
= meth1
->rsa_priv_dec
;
258 # ifndef OPENSSL_NO_DSA
260 * Use the DSA_OpenSSL() method and just hook the mod_exp-ish bits.
262 meth2
= DSA_OpenSSL();
263 ibmca_dsa
.dsa_do_sign
= meth2
->dsa_do_sign
;
264 ibmca_dsa
.dsa_sign_setup
= meth2
->dsa_sign_setup
;
265 ibmca_dsa
.dsa_do_verify
= meth2
->dsa_do_verify
;
268 # ifndef OPENSSL_NO_DH
269 /* Much the same for Diffie-Hellman */
270 meth3
= DH_OpenSSL();
271 ibmca_dh
.generate_key
= meth3
->generate_key
;
272 ibmca_dh
.compute_key
= meth3
->compute_key
;
275 /* Ensure the ibmca error handling is set up */
276 ERR_load_IBMCA_strings();
280 static ENGINE
*engine_ibmca(void)
282 ENGINE
*ret
= ENGINE_new();
285 if (!bind_helper(ret
)) {
292 # ifdef ENGINE_DYNAMIC_SUPPORT
295 void ENGINE_load_ibmca(void)
297 /* Copied from eng_[openssl|dyn].c */
298 ENGINE
*toadd
= engine_ibmca();
306 /* Destructor (complements the "ENGINE_ibmca()" constructor) */
307 static int ibmca_destroy(ENGINE
*e
)
310 * Unload the ibmca error strings so any error state including our functs
311 * or reasons won't lead to a segfault (they simply get displayed without
312 * corresponding string data because none will be found).
314 ERR_unload_IBMCA_strings();
319 * This is a process-global DSO handle used for loading and unloading the
320 * Ibmca library. NB: This is only set (or unset) during an init() or
321 * finish() call (reference counts permitting) and they're operating with
322 * global locks, so this should be thread-safe implicitly.
325 static DSO
*ibmca_dso
= NULL
;
328 * These are the function pointers that are (un)set when the library has
329 * successfully (un)loaded.
332 static unsigned int (ICA_CALL
* p_icaOpenAdapter
) ();
333 static unsigned int (ICA_CALL
* p_icaCloseAdapter
) ();
334 static unsigned int (ICA_CALL
* p_icaRsaModExpo
) ();
335 static unsigned int (ICA_CALL
* p_icaRandomNumberGenerate
) ();
336 static unsigned int (ICA_CALL
* p_icaRsaCrt
) ();
338 /* utility function to obtain a context */
339 static int get_context(ICA_ADAPTER_HANDLE
* p_handle
)
341 unsigned int status
= 0;
343 status
= p_icaOpenAdapter(0, p_handle
);
349 /* similarly to release one. */
350 static void release_context(ICA_ADAPTER_HANDLE handle
)
352 p_icaCloseAdapter(handle
);
355 /* (de)initialisation functions. */
356 static int ibmca_init(ENGINE
*e
)
365 if (ibmca_dso
!= NULL
) {
366 IBMCAerr(IBMCA_F_IBMCA_INIT
, IBMCA_R_ALREADY_LOADED
);
370 * Attempt to load libatasi.so/atasi.dll/whatever. Needs to be changed
371 * unfortunately because the Ibmca drivers don't have standard library
372 * names that can be platform-translated well.
375 * TODO: Work out how to actually map to the names the Ibmca drivers
376 * really use - for now a symbollic link needs to be created on the host
377 * system from libatasi.so to atasi.so on unix variants.
380 /* WJH XXX check name translation */
382 ibmca_dso
= DSO_load(NULL
, IBMCA_LIBNAME
, NULL
,
384 * DSO_FLAG_NAME_TRANSLATION
386 if (ibmca_dso
== NULL
) {
387 IBMCAerr(IBMCA_F_IBMCA_INIT
, IBMCA_R_DSO_FAILURE
);
391 if (!(p1
= DSO_bind_func(ibmca_dso
, IBMCA_F1
)) ||
392 !(p2
= DSO_bind_func(ibmca_dso
, IBMCA_F2
)) ||
393 !(p3
= DSO_bind_func(ibmca_dso
, IBMCA_F3
)) ||
394 !(p4
= DSO_bind_func(ibmca_dso
, IBMCA_F4
)) ||
395 !(p5
= DSO_bind_func(ibmca_dso
, IBMCA_F5
))) {
396 IBMCAerr(IBMCA_F_IBMCA_INIT
, IBMCA_R_DSO_FAILURE
);
400 /* Copy the pointers */
402 p_icaOpenAdapter
= (unsigned int (ICA_CALL
*) ())p1
;
403 p_icaCloseAdapter
= (unsigned int (ICA_CALL
*) ())p2
;
404 p_icaRsaModExpo
= (unsigned int (ICA_CALL
*) ())p3
;
405 p_icaRandomNumberGenerate
= (unsigned int (ICA_CALL
*) ())p4
;
406 p_icaRsaCrt
= (unsigned int (ICA_CALL
*) ())p5
;
408 if (!get_context(&handle
)) {
409 IBMCAerr(IBMCA_F_IBMCA_INIT
, IBMCA_R_UNIT_FAILURE
);
418 p_icaOpenAdapter
= NULL
;
419 p_icaCloseAdapter
= NULL
;
420 p_icaRsaModExpo
= NULL
;
421 p_icaRandomNumberGenerate
= NULL
;
426 static int ibmca_finish(ENGINE
*e
)
428 if (ibmca_dso
== NULL
) {
429 IBMCAerr(IBMCA_F_IBMCA_FINISH
, IBMCA_R_NOT_LOADED
);
432 release_context(handle
);
433 if (!DSO_free(ibmca_dso
)) {
434 IBMCAerr(IBMCA_F_IBMCA_FINISH
, IBMCA_R_DSO_FAILURE
);
442 static int ibmca_ctrl(ENGINE
*e
, int cmd
, long i
, void *p
, void (*f
) ())
444 int initialised
= ((ibmca_dso
== NULL
) ? 0 : 1);
446 case IBMCA_CMD_SO_PATH
:
448 IBMCAerr(IBMCA_F_IBMCA_CTRL
, ERR_R_PASSED_NULL_PARAMETER
);
452 IBMCAerr(IBMCA_F_IBMCA_CTRL
, IBMCA_R_ALREADY_LOADED
);
455 IBMCA_LIBNAME
= (const char *)p
;
460 IBMCAerr(IBMCA_F_IBMCA_CTRL
, IBMCA_R_CTRL_COMMAND_NOT_IMPLEMENTED
);
464 static int ibmca_mod_exp(BIGNUM
*r
, const BIGNUM
*a
, const BIGNUM
*p
,
465 const BIGNUM
*m
, BN_CTX
*ctx
)
468 * I need somewhere to store temporary serialised values for use with the
469 * Ibmca API calls. A neat cheat - I'll use BIGNUMs from the BN_CTX but
470 * access their arrays directly as byte arrays <grin>. This way I don't
471 * have to clean anything up.
474 BIGNUM
*argument
= NULL
;
475 BIGNUM
*result
= NULL
;
478 int inLen
, outLen
, tmpLen
;
480 ICA_KEY_RSA_MODEXPO
*publKey
= NULL
;
483 to_return
= 0; /* expect failure */
486 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP
, IBMCA_R_NOT_LOADED
);
489 /* Prepare the params */
491 argument
= BN_CTX_get(ctx
);
492 result
= BN_CTX_get(ctx
);
493 key
= BN_CTX_get(ctx
);
495 if (!argument
|| !result
|| !key
) {
496 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP
, IBMCA_R_BN_CTX_FULL
);
500 if (!bn_wexpand(argument
, m
->top
) || !bn_wexpand(result
, m
->top
) ||
501 !bn_wexpand(key
, sizeof(*publKey
) / BN_BYTES
)) {
502 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP
, IBMCA_R_BN_EXPAND_FAIL
);
506 publKey
= (ICA_KEY_RSA_MODEXPO
*)key
->d
;
508 if (publKey
== NULL
) {
511 memset(publKey
, 0, sizeof(ICA_KEY_RSA_MODEXPO
));
513 publKey
->keyType
= CORRECT_ENDIANNESS(ME_KEY_TYPE
);
514 publKey
->keyLength
= CORRECT_ENDIANNESS(sizeof(ICA_KEY_RSA_MODEXPO
));
515 publKey
->expOffset
= (char *)publKey
->keyRecord
- (char *)publKey
;
518 * A quirk of the card: the exponent length has to be the same as the
519 * modulus (key) length
522 outLen
= BN_num_bytes(m
);
524 /* check for modulus length SAB*/
526 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP
, IBMCA_R_MEXP_LENGTH_TO_LARGE
);
529 /* check for modulus length SAB*/
531 publKey
->expLength
= publKey
->nLength
= outLen
;
533 * SAB Check for underflow condition the size of the exponent is less
534 * than the size of the parameter then we have a big problem and will
535 * underflow the keyRecord buffer. Bad stuff could happen then
537 if (outLen
< BN_num_bytes(p
)) {
538 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP
, IBMCA_R_UNDERFLOW_KEYRECORD
);
541 /* SAB End check for underflow */
543 BN_bn2bin(p
, &publKey
->keyRecord
[publKey
->expLength
- BN_num_bytes(p
)]);
544 BN_bn2bin(m
, &publKey
->keyRecord
[publKey
->expLength
]);
546 publKey
->modulusBitLength
= CORRECT_ENDIANNESS(publKey
->nLength
* 8);
547 publKey
->nOffset
= CORRECT_ENDIANNESS(publKey
->expOffset
+
550 publKey
->expOffset
= CORRECT_ENDIANNESS((char *)publKey
->keyRecord
-
554 publKey
->expLength
= publKey
->nLength
= CORRECT_ENDIANNESS(tmpLen
);
556 /* Prepare the argument */
558 memset(argument
->d
, 0, outLen
);
559 BN_bn2bin(a
, (unsigned char *)argument
->d
+ outLen
- BN_num_bytes(a
));
563 /* Perform the operation */
565 if ((rc
= p_icaRsaModExpo(handle
, inLen
, (unsigned char *)argument
->d
,
566 publKey
, &outLen
, (unsigned char *)result
->d
))
568 printf("rc = %d\n", rc
);
569 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP
, IBMCA_R_REQUEST_FAILED
);
573 /* Convert the response */
574 BN_bin2bn((unsigned char *)result
->d
, outLen
, r
);
581 # ifndef OPENSSL_NO_RSA
582 static int ibmca_rsa_mod_exp(BIGNUM
*r0
, const BIGNUM
*I
, RSA
*rsa
)
587 if ((ctx
= BN_CTX_new()) == NULL
)
589 if (!rsa
->p
|| !rsa
->q
|| !rsa
->dmp1
|| !rsa
->dmq1
|| !rsa
->iqmp
) {
590 if (!rsa
->d
|| !rsa
->n
) {
591 IBMCAerr(IBMCA_F_IBMCA_RSA_MOD_EXP
,
592 IBMCA_R_MISSING_KEY_COMPONENTS
);
595 to_return
= ibmca_mod_exp(r0
, I
, rsa
->d
, rsa
->n
, ctx
);
597 to_return
= ibmca_mod_exp_crt(r0
, I
, rsa
->p
, rsa
->q
, rsa
->dmp1
,
598 rsa
->dmq1
, rsa
->iqmp
, ctx
);
607 /* Ein kleines chinesisches "Restessen" */
608 static int ibmca_mod_exp_crt(BIGNUM
*r
, const BIGNUM
*a
, const BIGNUM
*p
,
609 const BIGNUM
*q
, const BIGNUM
*dmp1
,
610 const BIGNUM
*dmq1
, const BIGNUM
*iqmp
,
614 BIGNUM
*argument
= NULL
;
615 BIGNUM
*result
= NULL
;
618 int to_return
= 0; /* expect failure */
621 ICA_KEY_RSA_CRT
*privKey
= NULL
;
625 unsigned int offset
, pSize
, qSize
;
626 /* SAB New variables */
627 unsigned int keyRecordSize
;
628 unsigned int pbytes
= BN_num_bytes(p
);
629 unsigned int qbytes
= BN_num_bytes(q
);
630 unsigned int dmp1bytes
= BN_num_bytes(dmp1
);
631 unsigned int dmq1bytes
= BN_num_bytes(dmq1
);
632 unsigned int iqmpbytes
= BN_num_bytes(iqmp
);
634 /* Prepare the params */
637 argument
= BN_CTX_get(ctx
);
638 result
= BN_CTX_get(ctx
);
639 key
= BN_CTX_get(ctx
);
641 if (!argument
|| !result
|| !key
) {
642 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_BN_CTX_FULL
);
646 if (!bn_wexpand(argument
, p
->top
+ q
->top
) ||
647 !bn_wexpand(result
, p
->top
+ q
->top
) ||
648 !bn_wexpand(key
, sizeof(*privKey
) / BN_BYTES
)) {
649 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_BN_EXPAND_FAIL
);
653 privKey
= (ICA_KEY_RSA_CRT
*)key
->d
;
655 * SAB Add check for total size in bytes of the parms does not exceed the
656 * buffer space we have do this first
658 keyRecordSize
= pbytes
+ qbytes
+ dmp1bytes
+ dmq1bytes
+ iqmpbytes
;
659 if (keyRecordSize
> sizeof(privKey
->keyRecord
)) {
660 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_OPERANDS_TO_LARGE
);
664 if ((qbytes
+ dmq1bytes
) > 256) {
665 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_OPERANDS_TO_LARGE
);
669 if (pbytes
+ dmp1bytes
> 256) {
670 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_OPERANDS_TO_LARGE
);
674 /* end SAB additions */
676 memset(privKey
, 0, sizeof(ICA_KEY_RSA_CRT
));
677 privKey
->keyType
= CORRECT_ENDIANNESS(CRT_KEY_TYPE
);
678 privKey
->keyLength
= CORRECT_ENDIANNESS(sizeof(ICA_KEY_RSA_CRT
));
679 privKey
->modulusBitLength
= CORRECT_ENDIANNESS(BN_num_bytes(q
) * 2 * 8);
682 * p,dp & qInv are 1 QWORD Larger
684 privKey
->pLength
= CORRECT_ENDIANNESS(BN_num_bytes(p
) + 8);
685 privKey
->qLength
= CORRECT_ENDIANNESS(BN_num_bytes(q
));
686 privKey
->dpLength
= CORRECT_ENDIANNESS(BN_num_bytes(dmp1
) + 8);
687 privKey
->dqLength
= CORRECT_ENDIANNESS(BN_num_bytes(dmq1
));
688 privKey
->qInvLength
= CORRECT_ENDIANNESS(BN_num_bytes(iqmp
) + 8);
690 offset
= (char *)privKey
->keyRecord
- (char *)privKey
;
692 qSize
= BN_num_bytes(q
);
693 pSize
= qSize
+ 8; /* 1 QWORD larger */
696 * SAB probably aittle redundant, but we'll verify that each of the
697 * components which make up a key record sent ot the card does not exceed
698 * the space that is allocated for it. this handles the case where even
699 * if the total length does not exceed keyrecord zied, if the operands are
700 * funny sized they could cause potential side affects on either the card
704 if ((pbytes
> pSize
) || (dmp1bytes
> pSize
) ||
705 (iqmpbytes
> pSize
) || (qbytes
> qSize
) || (dmq1bytes
> qSize
)) {
706 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_OPERANDS_TO_LARGE
);
711 privKey
->dpOffset
= CORRECT_ENDIANNESS(offset
);
714 privKey
->dqOffset
= CORRECT_ENDIANNESS(offset
);
717 privKey
->pOffset
= CORRECT_ENDIANNESS(offset
);
720 privKey
->qOffset
= CORRECT_ENDIANNESS(offset
);
723 privKey
->qInvOffset
= CORRECT_ENDIANNESS(offset
);
725 pkey
= (char *)privKey
->keyRecord
;
727 /* SAB first check that we don;t under flow the buffer */
728 if (pSize
< pbytes
) {
729 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_UNDERFLOW_CONDITION
);
733 /* pkey += pSize - BN_num_bytes(p); WROING this should be dmp1) */
734 pkey
+= pSize
- BN_num_bytes(dmp1
);
735 BN_bn2bin(dmp1
, pkey
);
736 pkey
+= BN_num_bytes(dmp1
); /* move the pointer */
738 BN_bn2bin(dmq1
, pkey
); /* Copy over dmq1 */
740 pkey
+= qSize
; /* move pointer */
741 /* set up for zero padding of next field */
742 pkey
+= pSize
- BN_num_bytes(p
);
745 /* increment pointer by number of bytes moved */
746 pkey
+= BN_num_bytes(p
);
749 pkey
+= qSize
; /* move the pointer */
750 pkey
+= pSize
- BN_num_bytes(iqmp
); /* Adjust for padding */
751 BN_bn2bin(iqmp
, pkey
);
753 /* Prepare the argument and response */
756 * Correct endianess is used because the fields were converted above
758 outLen
= CORRECT_ENDIANNESS(privKey
->qLength
) * 2;
761 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_OUTLEN_TO_LARGE
);
765 /* SAB check for underflow here on the argeument */
766 if (outLen
< BN_num_bytes(a
)) {
767 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_UNDERFLOW_CONDITION
);
771 BN_bn2bin(a
, (unsigned char *)argument
->d
+ outLen
- BN_num_bytes(a
));
774 memset(result
->d
, 0, outLen
);
776 /* Perform the operation */
778 if ((rc
= p_icaRsaCrt(handle
, inLen
, (unsigned char *)argument
->d
,
779 privKey
, &outLen
, (unsigned char *)result
->d
)) != 0)
781 printf("rc = %d\n", rc
);
782 IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT
, IBMCA_R_REQUEST_FAILED
);
786 /* Convert the response */
788 BN_bin2bn((unsigned char *)result
->d
, outLen
, r
);
797 # ifndef OPENSSL_NO_DSA
799 * This code was liberated and adapted from the commented-out code in
800 * dsa_ossl.c. Because of the unoptimised form of the Ibmca acceleration (it
801 * doesn't have a CRT form for RSA), this function means that an Ibmca system
802 * running with a DSA server certificate can handshake around 5 or 6 times
803 * faster/more than an equivalent system running with RSA. Just check out the
804 * "signs" statistics from the RSA and DSA parts of "openssl speed -engine
805 * ibmca dsa1024 rsa1024".
807 static int ibmca_dsa_mod_exp(DSA
*dsa
, BIGNUM
*rr
, BIGNUM
*a1
,
808 BIGNUM
*p1
, BIGNUM
*a2
, BIGNUM
*p2
, BIGNUM
*m
,
809 BN_CTX
*ctx
, BN_MONT_CTX
*in_mont
)
815 /* let rr = a1 ^ p1 mod m */
816 if (!ibmca_mod_exp(rr
, a1
, p1
, m
, ctx
))
818 /* let t = a2 ^ p2 mod m */
819 if (!ibmca_mod_exp(&t
, a2
, p2
, m
, ctx
))
821 /* let rr = rr * t mod m */
822 if (!BN_mod_mul(rr
, rr
, &t
, m
, ctx
))
830 static int ibmca_mod_exp_dsa(DSA
*dsa
, BIGNUM
*r
, BIGNUM
*a
,
831 const BIGNUM
*p
, const BIGNUM
*m
, BN_CTX
*ctx
,
834 return ibmca_mod_exp(r
, a
, p
, m
, ctx
);
838 /* This function is aliased to mod_exp (with the mont stuff dropped). */
839 static int ibmca_mod_exp_mont(BIGNUM
*r
, const BIGNUM
*a
, const BIGNUM
*p
,
840 const BIGNUM
*m
, BN_CTX
*ctx
,
843 return ibmca_mod_exp(r
, a
, p
, m
, ctx
);
846 # ifndef OPENSSL_NO_DH
847 /* This function is aliased to mod_exp (with the dh and mont dropped). */
848 static int ibmca_mod_exp_dh(DH
const *dh
, BIGNUM
*r
,
849 const BIGNUM
*a
, const BIGNUM
*p
,
850 const BIGNUM
*m
, BN_CTX
*ctx
, BN_MONT_CTX
*m_ctx
)
852 return ibmca_mod_exp(r
, a
, p
, m
, ctx
);
856 /* Random bytes are good */
857 static int ibmca_rand_bytes(unsigned char *buf
, int num
)
859 int to_return
= 0; /* assume failure */
863 IBMCAerr(IBMCA_F_IBMCA_RAND_BYTES
, IBMCA_R_NOT_INITIALISED
);
867 ret
= p_icaRandomNumberGenerate(handle
, num
, buf
);
869 IBMCAerr(IBMCA_F_IBMCA_RAND_BYTES
, IBMCA_R_REQUEST_FAILED
);
877 static int ibmca_rand_status(void)
883 * This stuff is needed if this ENGINE is being compiled into a
884 * self-contained shared-library.
886 # ifdef ENGINE_DYNAMIC_SUPPORT
887 static int bind_fn(ENGINE
*e
, const char *id
)
889 if (id
&& (strcmp(id
, engine_ibmca_id
) != 0)) /* WJH XXX */
896 IMPLEMENT_DYNAMIC_CHECK_FN()
897 IMPLEMENT_DYNAMIC_BIND_FN(bind_fn
)
898 # endif /* ENGINE_DYNAMIC_SUPPORT */
899 # endif /* !OPENSSL_NO_HW_IBMCA */
900 #endif /* !OPENSSL_NO_HW */