Skip to content

Commit

Permalink
Redirect FIPS memory allocation to FIPS_malloc() routine, remove
Browse files Browse the repository at this point in the history
OpenSSL malloc dependencies.
  • Loading branch information
snhenson committed Jan 27, 2011
1 parent e36d6b8 commit 7cc684f
Show file tree
Hide file tree
Showing 23 changed files with 80 additions and 6 deletions.
1 change: 0 additions & 1 deletion Makefile.org
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,6 @@ FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
../crypto/evp/e_des3.o \
../crypto/evp/m_sha1.o \
../crypto/hmac/hmac.o \
../crypto/mem.o \
../crypto/modes/cfb128.o \
../crypto/modes/ctr128.o \
../crypto/modes/ofb128.o \
Expand Down
6 changes: 6 additions & 0 deletions crypto/bn/bn_blind.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,12 @@
#include "cryptlib.h"
#include "bn_lcl.h"

#define OPENSSL_FIPSAPI

#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

#define BN_BLINDING_COUNTER 32

struct bn_blinding_st
Expand Down
6 changes: 6 additions & 0 deletions crypto/bn/bn_ctx.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,18 @@
#endif
#endif

#define OPENSSL_FIPSAPI

#include <stdio.h>
#include <assert.h>

#include "cryptlib.h"
#include "bn_lcl.h"

#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

/* TODO list
*
* 1. Check a bunch of "(words+1)" type hacks in various bignum functions and
Expand Down
5 changes: 5 additions & 0 deletions crypto/bn/bn_exp.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@
#include "cryptlib.h"
#include "bn_lcl.h"

#define OPENSSL_FIPSAPI
#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

/* maximum precomputation table size for *variable* sliding windows */
#define TABLE_SIZE 32

Expand Down
5 changes: 5 additions & 0 deletions crypto/bn/bn_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@
#include "cryptlib.h"
#include "bn_lcl.h"

#define OPENSSL_FIPSAPI
#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

const char BN_version[]="Big Number" OPENSSL_VERSION_PTEXT;

/* This stuff appears to be completely unused, so is deprecated */
Expand Down
5 changes: 5 additions & 0 deletions crypto/bn/bn_rand.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@
#include "bn_lcl.h"
#include <openssl/rand.h>

#define OPENSSL_FIPSAPI
#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom)
{
unsigned char *buf=NULL;
Expand Down
5 changes: 5 additions & 0 deletions crypto/bn/bn_recp.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@
#include "cryptlib.h"
#include "bn_lcl.h"

#define OPENSSL_FIPSAPI
#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

void BN_RECP_CTX_init(BN_RECP_CTX *recp)
{
BN_init(&(recp->N));
Expand Down
5 changes: 5 additions & 0 deletions crypto/buffer/buf_str.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@
#include "cryptlib.h"
#include <openssl/buffer.h>

#define OPENSSL_FIPSAPI
#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

char *BUF_strdup(const char *str)
{
if (str == NULL) return(NULL);
Expand Down
5 changes: 5 additions & 0 deletions crypto/dsa/dsa_sign.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@
#include <openssl/rand.h>
#include <openssl/bn.h>

#define OPENSSL_FIPSAPI
#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

DSA_SIG * DSA_do_sign(const unsigned char *dgst, int dlen, DSA *dsa)
{
return dsa->meth->dsa_do_sign(dgst, dlen, dsa);
Expand Down
2 changes: 2 additions & 0 deletions crypto/rsa/rsa_gen.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@

#ifdef OPENSSL_FIPS

#define OPENSSL_FIPSAPI

#include <openssl/fips.h>
#include <openssl/evp.h>

Expand Down
4 changes: 4 additions & 0 deletions crypto/rsa/rsa_oaep.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
#include <openssl/rand.h>
#include <openssl/sha.h>

#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

static int MGF1(unsigned char *mask, long len,
const unsigned char *seed, long seedlen);

Expand Down
4 changes: 4 additions & 0 deletions crypto/rsa/rsa_pss.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@
#include <openssl/sha.h>
#include "rsa_locl.h"

#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

static const unsigned char zeroes[] = {0,0,0,0,0,0,0,0};

#if defined(_MSC_VER) && defined(_ARM_)
Expand Down
3 changes: 3 additions & 0 deletions fips/dh/fips_dh_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@
*
*/

#define OPENSSL_FIPSAPI

#include <string.h>
#include <openssl/bn.h>
#include <openssl/dh.h>
#include <openssl/fips.h>

/* Minimal FIPS versions of FIPS_dh_new() and FIPS_dh_free(): to
* reduce external dependencies.
Expand Down
3 changes: 3 additions & 0 deletions fips/dsa/fips_dsa_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@
*
*/

#define OPENSSL_FIPSAPI

#include <string.h>
#include <openssl/dsa.h>
#include <openssl/bn.h>
#include <openssl/fips.h>

/* Minimal FIPS versions of FIPS_dsa_new() and FIPS_dsa_free: to
* reduce external dependencies.
Expand Down
5 changes: 5 additions & 0 deletions fips/fips.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,13 @@ void FIPS_lock(int mode, int type,const char *file,int line);
void FIPS_set_locking_callback (void (*func)(int mode, int type,
const char *file,int line));

void *FIPS_malloc(int num, const char *file, int line);
void FIPS_free(void *);

#if defined(OPENSSL_FIPSCANISTER) && defined(OPENSSL_FIPSAPI)
#define CRYPTO_lock FIPS_lock
#define CRYPTO_malloc FIPS_malloc
#define CRYPTO_free FIPS_free
#endif

/* BEGIN ERROR CODES */
Expand Down
3 changes: 3 additions & 0 deletions fips/fips_utl.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@
*
*/

#define OPENSSL_FIPSAPI
#include <openssl/fips.h>

int hex2bin(const char *in, unsigned char *out);
unsigned char *hex2bin_m(const char *in, long *plen);
int do_hex2bn(BIGNUM **pr, const char *in);
Expand Down
1 change: 0 additions & 1 deletion fips/hmac/fips_hmactest.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ int main(int argc, char *argv[])

#else

#include <openssl/fips.h>
#include "fips_utl.h"

static int hmac_test(const EVP_MD *md, FILE *out, FILE *in);
Expand Down
2 changes: 2 additions & 0 deletions fips/rand/fips_randtest.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ int main(int argc, char *argv[])

#else

#define OPENSSL_FIPSAPI

#include <openssl/fips.h>
#include "fips_utl.h"

Expand Down
4 changes: 3 additions & 1 deletion fips/rsa/fips_rsa_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,14 @@
*
*/

#define OPENSSL_FIPSAPI

#include <string.h>
#include <openssl/evp.h>
#include <openssl/rsa.h>
#include <openssl/bn.h>
#include <openssl/err.h>
#include <openssl/fips.h>

/* Minimal FIPS versions of FIPS_rsa_new() and FIPS_rsa_free: to
* reduce external dependencies.
Expand Down Expand Up @@ -95,7 +98,6 @@ void FIPS_rsa_free(RSA *r)
if (r->iqmp != NULL) BN_clear_free(r->iqmp);
if (r->blinding != NULL) BN_BLINDING_free(r->blinding);
if (r->mt_blinding != NULL) BN_BLINDING_free(r->mt_blinding);
if (r->bignum_data != NULL) OPENSSL_free_locked(r->bignum_data);
OPENSSL_free(r);
}

1 change: 1 addition & 0 deletions fips/rsa/fips_rsa_sign.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
#include <openssl/rsa.h>
#include <openssl/err.h>
#include <openssl/sha.h>
#include <openssl/fips.h>

#ifdef OPENSSL_FIPS

Expand Down
4 changes: 2 additions & 2 deletions fips/utl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ TEST=
APPS=

LIB=$(TOP)/libcrypto.a
LIBSRC= fips_err.c fips_md.c fips_enc.c fips_lck.c
LIBOBJ= fips_err.o fips_md.o fips_enc.o fips_lck.o
LIBSRC= fips_err.c fips_md.c fips_enc.c fips_lck.c fips_mem.c
LIBOBJ= fips_err.o fips_md.o fips_enc.o fips_lck.o fips_mem.o

SRC= $(LIBSRC)

Expand Down
4 changes: 3 additions & 1 deletion fips/utl/fips_enc.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,13 @@
* [including the GNU Public Licence.]
*/

#define OPENSSL_FIPSAPI

#include <stdio.h>
#include <string.h>
#include <openssl/evp.h>
#include <openssl/err.h>
#include <openssl/rand.h>
#include <openssl/fips.h>

void FIPS_cipher_ctx_init(EVP_CIPHER_CTX *ctx)
{
Expand Down
3 changes: 3 additions & 0 deletions fips/utl/fips_md.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,14 @@

/* Minimal standalone FIPS versions of Digest operations */

#define OPENSSL_FIPSAPI

#include <stdio.h>
#include <string.h>
#include <openssl/objects.h>
#include <openssl/evp.h>
#include <openssl/err.h>
#include <openssl/fips.h>

void FIPS_md_ctx_init(EVP_MD_CTX *ctx)
{
Expand Down

0 comments on commit 7cc684f

Please sign in to comment.