Revert "and added files"
[bcm963xx.git] / userapps / opensource / openssl / demos / engines / ibmca / hw_ibmca.c
diff --git a/userapps/opensource/openssl/demos/engines/ibmca/hw_ibmca.c b/userapps/opensource/openssl/demos/engines/ibmca/hw_ibmca.c
deleted file mode 100755 (executable)
index 0c2c39b..0000000
+++ /dev/null
@@ -1,920 +0,0 @@
-/* crypto/engine/hw_ibmca.c */\r
-/* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL\r
- * project 2000.\r
- */\r
-/* ====================================================================\r
- * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.\r
- *\r
- * Redistribution and use in source and binary forms, with or without\r
- * modification, are permitted provided that the following conditions\r
- * are met:\r
- *\r
- * 1. Redistributions of source code must retain the above copyright\r
- *    notice, this list of conditions and the following disclaimer.\r
- *\r
- * 2. Redistributions in binary form must reproduce the above copyright\r
- *    notice, this list of conditions and the following disclaimer in\r
- *    the documentation and/or other materials provided with the\r
- *    distribution.\r
- *\r
- * 3. All advertising materials mentioning features or use of this\r
- *    software must display the following acknowledgment:\r
- *    "This product includes software developed by the OpenSSL Project\r
- *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"\r
- *\r
- * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to\r
- *    endorse or promote products derived from this software without\r
- *    prior written permission. For written permission, please contact\r
- *    licensing@OpenSSL.org.\r
- *\r
- * 5. Products derived from this software may not be called "OpenSSL"\r
- *    nor may "OpenSSL" appear in their names without prior written\r
- *    permission of the OpenSSL Project.\r
- *\r
- * 6. Redistributions of any form whatsoever must retain the following\r
- *    acknowledgment:\r
- *    "This product includes software developed by the OpenSSL Project\r
- *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"\r
- *\r
- * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY\r
- * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR\r
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\r
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\r
- * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\r
- * OF THE POSSIBILITY OF SUCH DAMAGE.\r
- * ====================================================================\r
- *\r
- * This product includes cryptographic software written by Eric Young\r
- * (eay@cryptsoft.com).  This product includes software written by Tim\r
- * Hudson (tjh@cryptsoft.com).\r
- *\r
- */\r
-\r
-/* (C) COPYRIGHT International Business Machines Corp. 2001 */\r
-\r
-#include <stdio.h>\r
-#include <openssl/crypto.h>\r
-#include <openssl/dso.h>\r
-#include <openssl/engine.h>\r
-\r
-#ifndef OPENSSL_NO_HW\r
-#ifndef OPENSSL_NO_HW_IBMCA\r
-\r
-#ifdef FLAT_INC\r
-#include "ica_openssl_api.h"\r
-#else\r
-#include "vendor_defns/ica_openssl_api.h"\r
-#endif\r
-\r
-#define IBMCA_LIB_NAME "ibmca engine"\r
-#include "hw_ibmca_err.c"\r
-\r
-static int ibmca_destroy(ENGINE *e);\r
-static int ibmca_init(ENGINE *e);\r
-static int ibmca_finish(ENGINE *e);\r
-static int ibmca_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)());\r
-\r
-static const char *IBMCA_F1 = "icaOpenAdapter";\r
-static const char *IBMCA_F2 = "icaCloseAdapter";\r
-static const char *IBMCA_F3 = "icaRsaModExpo";\r
-static const char *IBMCA_F4 = "icaRandomNumberGenerate";\r
-static const char *IBMCA_F5 = "icaRsaCrt";\r
-\r
-ICA_ADAPTER_HANDLE handle=0;\r
-\r
-/* BIGNUM stuff */\r
-static int ibmca_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,\r
-        const BIGNUM *m, BN_CTX *ctx);\r
-\r
-static int ibmca_mod_exp_crt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,\r
-        const BIGNUM *q, const BIGNUM *dmp1, const BIGNUM *dmq1,\r
-        const BIGNUM *iqmp, BN_CTX *ctx);\r
-\r
-#ifndef OPENSSL_NO_RSA  \r
-/* RSA stuff */\r
-static int ibmca_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa);\r
-#endif\r
-\r
-/* This function is aliased to mod_exp (with the mont stuff dropped). */\r
-static int ibmca_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,\r
-        const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);\r
-\r
-#ifndef OPENSSL_NO_DSA \r
-/* DSA stuff */\r
-static int ibmca_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1,\r
-        BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,\r
-        BN_CTX *ctx, BN_MONT_CTX *in_mont);\r
-static int ibmca_mod_exp_dsa(DSA *dsa, BIGNUM *r, BIGNUM *a,\r
-        const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx,\r
-        BN_MONT_CTX *m_ctx);\r
-#endif\r
-\r
-#ifndef OPENSSL_NO_DH \r
-/* DH stuff */\r
-/* This function is alised to mod_exp (with the DH and mont dropped). */\r
-static int ibmca_mod_exp_dh(const DH *dh, BIGNUM *r, \r
-       const BIGNUM *a, const BIGNUM *p,\r
-       const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);\r
-#endif\r
-\r
-/* RAND stuff */\r
-static int ibmca_rand_bytes(unsigned char *buf, int num);\r
-static int ibmca_rand_status(void);\r
-\r
-\r
-/* WJH - check for more commands, like in nuron */\r
-\r
-/* The definitions for control commands specific to this engine */\r
-#define IBMCA_CMD_SO_PATH              ENGINE_CMD_BASE\r
-static const ENGINE_CMD_DEFN ibmca_cmd_defns[] = {\r
-       {IBMCA_CMD_SO_PATH,\r
-               "SO_PATH",\r
-               "Specifies the path to the 'atasi' shared library",\r
-               ENGINE_CMD_FLAG_STRING},\r
-       {0, NULL, NULL, 0}\r
-       };\r
-\r
-#ifndef OPENSSL_NO_RSA  \r
-/* Our internal RSA_METHOD that we provide pointers to */\r
-static RSA_METHOD ibmca_rsa =\r
-        {\r
-        "Ibmca RSA method",\r
-        NULL,\r
-        NULL,\r
-        NULL,\r
-        NULL,\r
-        ibmca_rsa_mod_exp,\r
-        ibmca_mod_exp_mont,\r
-        NULL,\r
-        NULL,\r
-        0,\r
-        NULL,\r
-        NULL,\r
-        NULL\r
-        };\r
-#endif\r
-\r
-#ifndef OPENSSL_NO_DSA\r
-/* Our internal DSA_METHOD that we provide pointers to */\r
-static DSA_METHOD ibmca_dsa =\r
-        {\r
-        "Ibmca DSA method",\r
-        NULL, /* dsa_do_sign */\r
-        NULL, /* dsa_sign_setup */\r
-        NULL, /* dsa_do_verify */\r
-        ibmca_dsa_mod_exp, /* dsa_mod_exp */\r
-        ibmca_mod_exp_dsa, /* bn_mod_exp */\r
-        NULL, /* init */\r
-        NULL, /* finish */\r
-        0, /* flags */\r
-        NULL /* app_data */\r
-        };\r
-#endif\r
-\r
-#ifndef OPENSSL_NO_DH\r
-/* Our internal DH_METHOD that we provide pointers to */\r
-static DH_METHOD ibmca_dh =\r
-        {\r
-        "Ibmca DH method",\r
-        NULL,\r
-        NULL,\r
-        ibmca_mod_exp_dh,\r
-        NULL,\r
-        NULL,\r
-        0,\r
-        NULL\r
-        };\r
-#endif\r
-\r
-static RAND_METHOD ibmca_rand =\r
-        {\r
-        /* "IBMCA RAND method", */\r
-        NULL,\r
-        ibmca_rand_bytes,\r
-        NULL,\r
-        NULL,\r
-        ibmca_rand_bytes,\r
-        ibmca_rand_status,\r
-        };\r
-\r
-/* Constants used when creating the ENGINE */\r
-static const char *engine_ibmca_id = "ibmca";\r
-static const char *engine_ibmca_name = "Ibmca hardware engine support";\r
-\r
-/* This internal function is used by ENGINE_ibmca() and possibly by the\r
- * "dynamic" ENGINE support too */\r
-static int bind_helper(ENGINE *e)\r
-       {\r
-#ifndef OPENSSL_NO_RSA\r
-       const RSA_METHOD *meth1;\r
-#endif\r
-#ifndef OPENSSL_NO_DSA\r
-       const DSA_METHOD *meth2;\r
-#endif\r
-#ifndef OPENSSL_NO_DH\r
-       const DH_METHOD *meth3;\r
-#endif\r
-       if(!ENGINE_set_id(e, engine_ibmca_id) ||\r
-               !ENGINE_set_name(e, engine_ibmca_name) ||\r
-#ifndef OPENSSL_NO_RSA\r
-               !ENGINE_set_RSA(e, &ibmca_rsa) ||\r
-#endif\r
-#ifndef OPENSSL_NO_DSA\r
-               !ENGINE_set_DSA(e, &ibmca_dsa) ||\r
-#endif\r
-#ifndef OPENSSL_NO_DH\r
-               !ENGINE_set_DH(e, &ibmca_dh) ||\r
-#endif\r
-               !ENGINE_set_RAND(e, &ibmca_rand) ||\r
-               !ENGINE_set_destroy_function(e, ibmca_destroy) ||\r
-               !ENGINE_set_init_function(e, ibmca_init) ||\r
-               !ENGINE_set_finish_function(e, ibmca_finish) ||\r
-               !ENGINE_set_ctrl_function(e, ibmca_ctrl) ||\r
-               !ENGINE_set_cmd_defns(e, ibmca_cmd_defns))\r
-               return 0;\r
-\r
-#ifndef OPENSSL_NO_RSA\r
-       /* We know that the "PKCS1_SSLeay()" functions hook properly\r
-        * to the ibmca-specific mod_exp and mod_exp_crt so we use\r
-        * those functions. NB: We don't use ENGINE_openssl() or\r
-        * anything "more generic" because something like the RSAref\r
-        * code may not hook properly, and if you own one of these\r
-        * cards then you have the right to do RSA operations on it\r
-        * anyway! */ \r
-       meth1 = RSA_PKCS1_SSLeay();\r
-       ibmca_rsa.rsa_pub_enc = meth1->rsa_pub_enc;\r
-       ibmca_rsa.rsa_pub_dec = meth1->rsa_pub_dec;\r
-       ibmca_rsa.rsa_priv_enc = meth1->rsa_priv_enc;\r
-       ibmca_rsa.rsa_priv_dec = meth1->rsa_priv_dec;\r
-#endif\r
-\r
-#ifndef OPENSSL_NO_DSA\r
-       /* Use the DSA_OpenSSL() method and just hook the mod_exp-ish\r
-        * bits. */\r
-       meth2 = DSA_OpenSSL();\r
-       ibmca_dsa.dsa_do_sign = meth2->dsa_do_sign;\r
-       ibmca_dsa.dsa_sign_setup = meth2->dsa_sign_setup;\r
-       ibmca_dsa.dsa_do_verify = meth2->dsa_do_verify;\r
-#endif\r
-\r
-#ifndef OPENSSL_NO_DH\r
-       /* Much the same for Diffie-Hellman */\r
-       meth3 = DH_OpenSSL();\r
-       ibmca_dh.generate_key = meth3->generate_key;\r
-       ibmca_dh.compute_key = meth3->compute_key;\r
-#endif\r
-\r
-       /* Ensure the ibmca error handling is set up */\r
-       ERR_load_IBMCA_strings(); \r
-       return 1;\r
-       }\r
-\r
-static ENGINE *engine_ibmca(void)\r
-       {\r
-       ENGINE *ret = ENGINE_new();\r
-       if(!ret)\r
-               return NULL;\r
-       if(!bind_helper(ret))\r
-               {\r
-               ENGINE_free(ret);\r
-               return NULL;\r
-               }\r
-       return ret;\r
-       }\r
-\r
-#ifdef ENGINE_DYNAMIC_SUPPORT\r
-static\r
-#endif\r
-void ENGINE_load_ibmca(void)\r
-       {\r
-       /* Copied from eng_[openssl|dyn].c */\r
-       ENGINE *toadd = engine_ibmca();\r
-       if(!toadd) return;\r
-       ENGINE_add(toadd);\r
-       ENGINE_free(toadd);\r
-       ERR_clear_error();\r
-       }\r
-\r
-/* Destructor (complements the "ENGINE_ibmca()" constructor) */\r
-static int ibmca_destroy(ENGINE *e)\r
-       {\r
-       /* Unload the ibmca error strings so any error state including our\r
-        * functs or reasons won't lead to a segfault (they simply get displayed\r
-        * without corresponding string data because none will be found). */\r
-        ERR_unload_IBMCA_strings(); \r
-       return 1;\r
-       }\r
-\r
-\r
-/* This is a process-global DSO handle used for loading and unloading\r
- * the Ibmca library. NB: This is only set (or unset) during an\r
- * init() or finish() call (reference counts permitting) and they're\r
- * operating with global locks, so this should be thread-safe\r
- * implicitly. */\r
-\r
-static DSO *ibmca_dso = NULL;\r
-\r
-/* These are the function pointers that are (un)set when the library has\r
- * successfully (un)loaded. */\r
-\r
-static unsigned int    (ICA_CALL *p_icaOpenAdapter)();\r
-static unsigned int    (ICA_CALL *p_icaCloseAdapter)();\r
-static unsigned int    (ICA_CALL *p_icaRsaModExpo)();\r
-static unsigned int    (ICA_CALL *p_icaRandomNumberGenerate)();\r
-static unsigned int    (ICA_CALL *p_icaRsaCrt)();\r
-\r
-/* utility function to obtain a context */\r
-static int get_context(ICA_ADAPTER_HANDLE *p_handle)\r
-        {\r
-        unsigned int status=0;\r
-\r
-        status = p_icaOpenAdapter(0, p_handle);\r
-        if(status != 0)\r
-                return 0;\r
-        return 1;\r
-        }\r
-\r
-/* similarly to release one. */\r
-static void release_context(ICA_ADAPTER_HANDLE handle)\r
-        {\r
-        p_icaCloseAdapter(handle);\r
-        }\r
-\r
-/* (de)initialisation functions. */\r
-static int ibmca_init(ENGINE *e)\r
-        {\r
-\r
-        void          (*p1)();\r
-        void          (*p2)();\r
-        void          (*p3)();\r
-        void          (*p4)();\r
-        void          (*p5)();\r
-\r
-        if(ibmca_dso != NULL)\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_INIT,IBMCA_R_ALREADY_LOADED);\r
-                goto err;\r
-                }\r
-        /* Attempt to load libatasi.so/atasi.dll/whatever. Needs to be\r
-         * changed unfortunately because the Ibmca drivers don't have\r
-         * standard library names that can be platform-translated well. */\r
-        /* TODO: Work out how to actually map to the names the Ibmca\r
-         * drivers really use - for now a symbollic link needs to be\r
-         * created on the host system from libatasi.so to atasi.so on\r
-         * unix variants. */\r
-\r
-       /* WJH XXX check name translation */\r
-\r
-        ibmca_dso = DSO_load(NULL, IBMCA_LIBNAME, NULL,\r
-                            /* DSO_FLAG_NAME_TRANSLATION */ 0);\r
-        if(ibmca_dso == NULL)\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_INIT,IBMCA_R_DSO_FAILURE);\r
-                goto err;\r
-                }\r
-\r
-        if(!(p1 = DSO_bind_func(\r
-                ibmca_dso, IBMCA_F1)) ||\r
-                !(p2 = DSO_bind_func(\r
-                        ibmca_dso, IBMCA_F2)) ||\r
-                !(p3 = DSO_bind_func(\r
-                        ibmca_dso, IBMCA_F3)) ||\r
-                !(p4 = DSO_bind_func(\r
-                        ibmca_dso, IBMCA_F4)) ||\r
-                !(p5 = DSO_bind_func(\r
-                        ibmca_dso, IBMCA_F5)))\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_INIT,IBMCA_R_DSO_FAILURE);\r
-                goto err;\r
-                }\r
-\r
-        /* Copy the pointers */\r
-\r
-       p_icaOpenAdapter =           (unsigned int (ICA_CALL *)())p1;\r
-       p_icaCloseAdapter =          (unsigned int (ICA_CALL *)())p2;\r
-       p_icaRsaModExpo =            (unsigned int (ICA_CALL *)())p3;\r
-       p_icaRandomNumberGenerate =  (unsigned int (ICA_CALL *)())p4;\r
-       p_icaRsaCrt =                (unsigned int (ICA_CALL *)())p5;\r
-\r
-        if(!get_context(&handle))\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_INIT,IBMCA_R_UNIT_FAILURE);\r
-                goto err;\r
-                }\r
-\r
-        return 1;\r
- err:\r
-        if(ibmca_dso)\r
-                DSO_free(ibmca_dso);\r
-\r
-        p_icaOpenAdapter = NULL;\r
-        p_icaCloseAdapter = NULL;\r
-        p_icaRsaModExpo = NULL;\r
-        p_icaRandomNumberGenerate = NULL;\r
-\r
-        return 0;\r
-        }\r
-\r
-static int ibmca_finish(ENGINE *e)\r
-        {\r
-        if(ibmca_dso == NULL)\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_FINISH,IBMCA_R_NOT_LOADED);\r
-                return 0;\r
-                }\r
-        release_context(handle);\r
-        if(!DSO_free(ibmca_dso))\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_FINISH,IBMCA_R_DSO_FAILURE);\r
-                return 0;\r
-                }\r
-        ibmca_dso = NULL;\r
-\r
-        return 1;\r
-        }\r
-\r
-static int ibmca_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)())\r
-       {\r
-       int initialised = ((ibmca_dso == NULL) ? 0 : 1);\r
-       switch(cmd)\r
-               {\r
-       case IBMCA_CMD_SO_PATH:\r
-               if(p == NULL)\r
-                       {\r
-                       IBMCAerr(IBMCA_F_IBMCA_CTRL,ERR_R_PASSED_NULL_PARAMETER);\r
-                       return 0;\r
-                       }\r
-               if(initialised)\r
-                       {\r
-                       IBMCAerr(IBMCA_F_IBMCA_CTRL,IBMCA_R_ALREADY_LOADED);\r
-                       return 0;\r
-                       }\r
-               IBMCA_LIBNAME = (const char *)p;\r
-               return 1;\r
-       default:\r
-               break;\r
-               }\r
-       IBMCAerr(IBMCA_F_IBMCA_CTRL,IBMCA_R_CTRL_COMMAND_NOT_IMPLEMENTED);\r
-       return 0;\r
-       }\r
-\r
-\r
-static int ibmca_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,\r
-        const BIGNUM *m, BN_CTX *ctx)\r
-        {\r
-        /* I need somewhere to store temporary serialised values for\r
-         * use with the Ibmca API calls. A neat cheat - I'll use\r
-         * BIGNUMs from the BN_CTX but access their arrays directly as\r
-         * byte arrays <grin>. This way I don't have to clean anything\r
-         * up. */\r
-\r
-        BIGNUM *argument=NULL;\r
-        BIGNUM *result=NULL;\r
-        BIGNUM *key=NULL;\r
-        int to_return;\r
-       int inLen, outLen, tmpLen;\r
-\r
-\r
-        ICA_KEY_RSA_MODEXPO *publKey=NULL;\r
-        unsigned int rc;\r
-\r
-        to_return = 0; /* expect failure */\r
-\r
-        if(!ibmca_dso)\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_MOD_EXP,IBMCA_R_NOT_LOADED);\r
-                goto err;\r
-                }\r
-        /* Prepare the params */\r
-       BN_CTX_start(ctx);\r
-        argument = BN_CTX_get(ctx);\r
-        result = BN_CTX_get(ctx);\r
-        key = BN_CTX_get(ctx);\r
-\r
-        if( !argument || !result || !key)\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_MOD_EXP,IBMCA_R_BN_CTX_FULL);\r
-                goto err;\r
-                }\r
-\r
-\r
-       if(!bn_wexpand(argument, m->top) || !bn_wexpand(result, m->top) ||\r
-                !bn_wexpand(key, sizeof(*publKey)/BN_BYTES))\r
-\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_MOD_EXP,IBMCA_R_BN_EXPAND_FAIL);\r
-                goto err;\r
-                }\r
-\r
-        publKey = (ICA_KEY_RSA_MODEXPO *)key->d;\r
-\r
-        if (publKey == NULL)\r
-                {\r
-                goto err;\r
-                }\r
-        memset(publKey, 0, sizeof(ICA_KEY_RSA_MODEXPO));\r
-\r
-        publKey->keyType   =  CORRECT_ENDIANNESS(ME_KEY_TYPE);\r
-        publKey->keyLength =  CORRECT_ENDIANNESS(sizeof(ICA_KEY_RSA_MODEXPO));\r
-        publKey->expOffset =  (char *) publKey->keyRecord - (char *) publKey;\r
-\r
-        /* A quirk of the card: the exponent length has to be the same\r
-     as the modulus (key) length */\r
-\r
-       outLen = BN_num_bytes(m);\r
-\r
-/* check for modulus length SAB*/\r
-       if (outLen > 256 ) {\r
-               IBMCAerr(IBMCA_F_IBMCA_MOD_EXP,IBMCA_R_MEXP_LENGTH_TO_LARGE);\r
-               goto err;\r
-       }\r
-/* check for modulus length SAB*/\r
-\r
-\r
-       publKey->expLength = publKey->nLength = outLen;\r
-/* SAB Check for underflow condition\r
-    the size of the exponent is less than the size of the parameter\r
-    then we have a big problem and will underflow the keyRecord\r
-   buffer.  Bad stuff could happen then\r
-*/\r
-if (outLen < BN_num_bytes(p)){\r
-       IBMCAerr(IBMCA_F_IBMCA_MOD_EXP,IBMCA_R_UNDERFLOW_KEYRECORD);\r
-       goto err;\r
-}\r
-/* SAB End check for underflow */\r
-\r
-\r
-        BN_bn2bin(p, &publKey->keyRecord[publKey->expLength -\r
-                BN_num_bytes(p)]);\r
-        BN_bn2bin(m, &publKey->keyRecord[publKey->expLength]);\r
-\r
-\r
-\r
-        publKey->modulusBitLength = CORRECT_ENDIANNESS(publKey->nLength * 8);\r
-        publKey->nOffset   = CORRECT_ENDIANNESS(publKey->expOffset + \r
-                                               publKey->expLength);\r
-\r
-        publKey->expOffset = CORRECT_ENDIANNESS((char *) publKey->keyRecord - \r
-                                               (char *) publKey);\r
-\r
-       tmpLen = outLen;\r
-       publKey->expLength = publKey->nLength = CORRECT_ENDIANNESS(tmpLen);\r
-\r
-  /* Prepare the argument */\r
-\r
-       memset(argument->d, 0, outLen);\r
-       BN_bn2bin(a, (unsigned char *)argument->d + outLen -\r
-                 BN_num_bytes(a));\r
-\r
-       inLen = outLen;\r
-\r
-  /* Perform the operation */\r
-\r
-          if( (rc = p_icaRsaModExpo(handle, inLen,(unsigned char *)argument->d,\r
-                publKey, &outLen, (unsigned char *)result->d))\r
-                !=0 )\r
-\r
-                {\r
-                printf("rc = %d\n", rc);\r
-                IBMCAerr(IBMCA_F_IBMCA_MOD_EXP,IBMCA_R_REQUEST_FAILED);\r
-                goto err;\r
-                }\r
-\r
-\r
-        /* Convert the response */\r
-        BN_bin2bn((unsigned char *)result->d, outLen, r);\r
-        to_return = 1;\r
- err:\r
-       BN_CTX_end(ctx);\r
-        return to_return;\r
-        }\r
-\r
-#ifndef OPENSSL_NO_RSA \r
-static int ibmca_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa)\r
-        {\r
-        BN_CTX *ctx;\r
-        int to_return = 0;\r
-\r
-        if((ctx = BN_CTX_new()) == NULL)\r
-                goto err;\r
-        if(!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp)\r
-                {\r
-                if(!rsa->d || !rsa->n)\r
-                        {\r
-                        IBMCAerr(IBMCA_F_IBMCA_RSA_MOD_EXP,\r
-                                IBMCA_R_MISSING_KEY_COMPONENTS);\r
-                        goto err;\r
-                        }\r
-                to_return = ibmca_mod_exp(r0, I, rsa->d, rsa->n, ctx);\r
-                }\r
-        else\r
-                {\r
-                to_return = ibmca_mod_exp_crt(r0, I, rsa->p, rsa->q, rsa->dmp1,\r
-                        rsa->dmq1, rsa->iqmp, ctx);\r
-                }\r
- err:\r
-        if(ctx)\r
-                BN_CTX_free(ctx);\r
-        return to_return;\r
-        }\r
-#endif\r
-\r
-/* Ein kleines chinesisches "Restessen"  */\r
-static int ibmca_mod_exp_crt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,\r
-        const BIGNUM *q, const BIGNUM *dmp1,\r
-        const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx)\r
-        {\r
-\r
-        BIGNUM *argument = NULL;\r
-        BIGNUM *result = NULL;\r
-        BIGNUM *key = NULL;\r
-\r
-        int to_return = 0; /* expect failure */\r
-\r
-        char                *pkey=NULL;\r
-        ICA_KEY_RSA_CRT     *privKey=NULL;\r
-        int inLen, outLen;\r
-\r
-        int rc;\r
-        unsigned int        offset, pSize, qSize;\r
-/* SAB New variables */\r
-       unsigned int keyRecordSize;\r
-       unsigned int pbytes = BN_num_bytes(p);\r
-       unsigned int qbytes = BN_num_bytes(q);\r
-       unsigned int dmp1bytes = BN_num_bytes(dmp1);\r
-       unsigned int dmq1bytes = BN_num_bytes(dmq1);\r
-       unsigned int iqmpbytes = BN_num_bytes(iqmp);\r
-\r
-        /* Prepare the params */\r
-\r
-       BN_CTX_start(ctx);\r
-        argument = BN_CTX_get(ctx);\r
-        result = BN_CTX_get(ctx);\r
-        key = BN_CTX_get(ctx);\r
-\r
-        if(!argument || !result || !key)\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT,IBMCA_R_BN_CTX_FULL);\r
-                goto err;\r
-                }\r
-\r
-       if(!bn_wexpand(argument, p->top + q->top) ||\r
-                !bn_wexpand(result, p->top + q->top) ||\r
-                !bn_wexpand(key, sizeof(*privKey)/BN_BYTES ))\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT,IBMCA_R_BN_EXPAND_FAIL);\r
-                goto err;\r
-                }\r
-\r
-\r
-        privKey = (ICA_KEY_RSA_CRT *)key->d;\r
-/* SAB Add check for total size in bytes of the parms does not exceed\r
-   the buffer space we have\r
-   do this first\r
-*/\r
-      keyRecordSize = pbytes+qbytes+dmp1bytes+dmq1bytes+iqmpbytes;\r
-     if (  keyRecordSize > sizeof(privKey->keyRecord )) {\r
-        IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT,IBMCA_R_OPERANDS_TO_LARGE);\r
-         goto err;\r
-     }\r
-\r
-     if ( (qbytes + dmq1bytes)  > 256 ){\r
-        IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT,IBMCA_R_OPERANDS_TO_LARGE);\r
-         goto err;\r
-     }\r
-\r
-     if ( pbytes + dmp1bytes > 256 ) {\r
-        IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT,IBMCA_R_OPERANDS_TO_LARGE);\r
-         goto err;\r
-     }\r
-\r
-/* end SAB additions */\r
-  \r
-        memset(privKey, 0, sizeof(ICA_KEY_RSA_CRT));\r
-        privKey->keyType =  CORRECT_ENDIANNESS(CRT_KEY_TYPE);\r
-        privKey->keyLength = CORRECT_ENDIANNESS(sizeof(ICA_KEY_RSA_CRT));\r
-        privKey->modulusBitLength = \r
-         CORRECT_ENDIANNESS(BN_num_bytes(q) * 2 * 8);\r
-\r
-        /*\r
-         * p,dp & qInv are 1 QWORD Larger\r
-         */\r
-        privKey->pLength = CORRECT_ENDIANNESS(BN_num_bytes(p)+8);\r
-        privKey->qLength = CORRECT_ENDIANNESS(BN_num_bytes(q));\r
-        privKey->dpLength = CORRECT_ENDIANNESS(BN_num_bytes(dmp1)+8);\r
-        privKey->dqLength = CORRECT_ENDIANNESS(BN_num_bytes(dmq1));\r
-        privKey->qInvLength = CORRECT_ENDIANNESS(BN_num_bytes(iqmp)+8);\r
-\r
-        offset = (char *) privKey->keyRecord\r
-                  - (char *) privKey;\r
-\r
-        qSize = BN_num_bytes(q);\r
-        pSize = qSize + 8;   /*  1 QWORD larger */\r
-\r
-\r
-/* SAB  probably aittle redundant, but we'll verify that each of the\r
-   components which make up a key record sent ot the card does not exceed\r
-   the space that is allocated for it.  this handles the case where even if\r
-   the total length does not exceed keyrecord zied, if the operands are funny sized\r
-they could cause potential side affects on either the card or the result */\r
-\r
-     if ( (pbytes > pSize) || (dmp1bytes > pSize) ||\r
-          (iqmpbytes > pSize) || ( qbytes >qSize) ||\r
-          (dmq1bytes > qSize) ) {\r
-               IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT, IBMCA_R_OPERANDS_TO_LARGE);\r
-               goto err;\r
-\r
-       }\r
-     \r
-\r
-        privKey->dpOffset = CORRECT_ENDIANNESS(offset);\r
-\r
-       offset += pSize;\r
-       privKey->dqOffset = CORRECT_ENDIANNESS(offset);\r
-\r
-       offset += qSize;\r
-       privKey->pOffset = CORRECT_ENDIANNESS(offset);\r
-\r
-       offset += pSize;\r
-       privKey->qOffset = CORRECT_ENDIANNESS(offset);\r
-\r
-       offset += qSize;\r
-       privKey->qInvOffset = CORRECT_ENDIANNESS(offset);\r
-\r
-        pkey = (char *) privKey->keyRecord;\r
-\r
-\r
-/* SAB first check that we don;t under flow the buffer */\r
-       if ( pSize < pbytes ) {\r
-               IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT, IBMCA_R_UNDERFLOW_CONDITION);\r
-               goto err;\r
-       }\r
-\r
-        /* pkey += pSize - BN_num_bytes(p); WROING this should be dmp1) */\r
-        pkey += pSize - BN_num_bytes(dmp1);\r
-        BN_bn2bin(dmp1, pkey);   \r
-        pkey += BN_num_bytes(dmp1);  /* move the pointer */\r
-\r
-        BN_bn2bin(dmq1, pkey);  /* Copy over dmq1 */\r
-\r
-        pkey += qSize;     /* move pointer */\r
-       pkey += pSize - BN_num_bytes(p);  /* set up for zero padding of next field */\r
-\r
-        BN_bn2bin(p, pkey);\r
-        pkey += BN_num_bytes(p);  /* increment pointer by number of bytes moved  */\r
-\r
-        BN_bn2bin(q, pkey);\r
-        pkey += qSize ;  /* move the pointer */\r
-       pkey +=  pSize - BN_num_bytes(iqmp); /* Adjust for padding */\r
-        BN_bn2bin(iqmp, pkey);\r
-\r
-        /* Prepare the argument and response */\r
-\r
-       outLen = CORRECT_ENDIANNESS(privKey->qLength) * 2;  /* Correct endianess is used \r
-                                               because the fields were converted above */\r
-\r
-        if (outLen > 256) {\r
-               IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT,IBMCA_R_OUTLEN_TO_LARGE);\r
-               goto err;\r
-       }\r
-\r
-       /* SAB check for underflow here on the argeument */\r
-       if ( outLen < BN_num_bytes(a)) {\r
-               IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT,IBMCA_R_UNDERFLOW_CONDITION);\r
-               goto err;\r
-       }\r
-\r
-        BN_bn2bin(a, (unsigned char *)argument->d + outLen -\r
-                          BN_num_bytes(a));\r
-        inLen = outLen;\r
-\r
-        memset(result->d, 0, outLen);\r
-\r
-        /* Perform the operation */\r
-\r
-        if ( (rc = p_icaRsaCrt(handle, inLen, (unsigned char *)argument->d,\r
-                privKey, &outLen, (unsigned char *)result->d)) != 0)\r
-                {\r
-                printf("rc = %d\n", rc);\r
-                IBMCAerr(IBMCA_F_IBMCA_MOD_EXP_CRT,IBMCA_R_REQUEST_FAILED);\r
-                goto err;\r
-                }\r
-\r
-        /* Convert the response */\r
-\r
-        BN_bin2bn((unsigned char *)result->d, outLen, r);\r
-        to_return = 1;\r
-\r
- err:\r
-       BN_CTX_end(ctx);\r
-        return to_return;\r
-\r
-        }\r
-\r
-#ifndef OPENSSL_NO_DSA\r
-/* This code was liberated and adapted from the commented-out code in\r
- * dsa_ossl.c. Because of the unoptimised form of the Ibmca acceleration\r
- * (it doesn't have a CRT form for RSA), this function means that an\r
- * Ibmca system running with a DSA server certificate can handshake\r
- * around 5 or 6 times faster/more than an equivalent system running with\r
- * RSA. Just check out the "signs" statistics from the RSA and DSA parts\r
- * of "openssl speed -engine ibmca dsa1024 rsa1024". */\r
-static int ibmca_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1,\r
-        BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,\r
-        BN_CTX *ctx, BN_MONT_CTX *in_mont)\r
-        {\r
-        BIGNUM t;\r
-        int to_return = 0;\r
-\r
-        BN_init(&t);\r
-        /* let rr = a1 ^ p1 mod m */\r
-        if (!ibmca_mod_exp(rr,a1,p1,m,ctx)) goto end;\r
-        /* let t = a2 ^ p2 mod m */\r
-        if (!ibmca_mod_exp(&t,a2,p2,m,ctx)) goto end;\r
-        /* let rr = rr * t mod m */\r
-        if (!BN_mod_mul(rr,rr,&t,m,ctx)) goto end;\r
-        to_return = 1;\r
- end:\r
-        BN_free(&t);\r
-        return to_return;\r
-        }\r
-\r
-\r
-static int ibmca_mod_exp_dsa(DSA *dsa, BIGNUM *r, BIGNUM *a,\r
-        const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx,\r
-        BN_MONT_CTX *m_ctx)\r
-        {\r
-        return ibmca_mod_exp(r, a, p, m, ctx);\r
-        }\r
-#endif\r
-\r
-/* This function is aliased to mod_exp (with the mont stuff dropped). */\r
-static int ibmca_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,\r
-        const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx)\r
-        {\r
-        return ibmca_mod_exp(r, a, p, m, ctx);\r
-        }\r
-\r
-#ifndef OPENSSL_NO_DH \r
-/* This function is aliased to mod_exp (with the dh and mont dropped). */\r
-static int ibmca_mod_exp_dh(DH const *dh, BIGNUM *r, \r
-       const BIGNUM *a, const BIGNUM *p, \r
-       const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx)\r
-        {\r
-        return ibmca_mod_exp(r, a, p, m, ctx);\r
-        }\r
-#endif\r
-\r
-/* Random bytes are good */\r
-static int ibmca_rand_bytes(unsigned char *buf, int num)\r
-        {\r
-        int to_return = 0; /* assume failure */\r
-        unsigned int ret;\r
-\r
-\r
-        if(handle == 0)\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_RAND_BYTES,IBMCA_R_NOT_INITIALISED);\r
-                goto err;\r
-                }\r
-\r
-        ret = p_icaRandomNumberGenerate(handle, num, buf);\r
-        if (ret < 0)\r
-                {\r
-                IBMCAerr(IBMCA_F_IBMCA_RAND_BYTES,IBMCA_R_REQUEST_FAILED);\r
-                goto err;\r
-                }\r
-        to_return = 1;\r
- err:\r
-        return to_return;\r
-        }\r
-\r
-static int ibmca_rand_status(void)\r
-        {\r
-        return 1;\r
-        }\r
-\r
-/* This stuff is needed if this ENGINE is being compiled into a self-contained\r
- * shared-library. */\r
-#ifdef ENGINE_DYNAMIC_SUPPORT\r
-static int bind_fn(ENGINE *e, const char *id)\r
-       {\r
-       if(id && (strcmp(id, engine_ibmca_id) != 0))  /* WJH XXX */\r
-               return 0;\r
-       if(!bind_helper(e))\r
-               return 0;\r
-       return 1;\r
-       }\r
-IMPLEMENT_DYNAMIC_CHECK_FN()\r
-IMPLEMENT_DYNAMIC_BIND_FN(bind_fn)\r
-#endif /* ENGINE_DYNAMIC_SUPPORT */\r
-\r
-\r
-#endif /* !OPENSSL_NO_HW_IBMCA */\r
-#endif /* !OPENSSL_NO_HW */\r