2004-01-05 10:28:27 +01:00
|
|
|
/* no-libgcrypt.c - Replacement functions for libgcrypt.
|
|
|
|
* Copyright (C) 2003 Free Software Foundation, Inc.
|
|
|
|
*
|
2006-09-22 13:39:45 +02:00
|
|
|
* This file is free software; as a special exception the author gives
|
|
|
|
* unlimited permission to copy and/or distribute it, with or without
|
|
|
|
* modifications, as long as this notice is preserved.
|
2011-02-04 12:57:53 +01:00
|
|
|
*
|
2006-09-22 13:39:45 +02:00
|
|
|
* This file is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY, to the extent permitted by law; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE.
|
2004-01-05 10:28:27 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "../common/util.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Replace libgcrypt's malloc functions which are used by
|
2012-08-24 09:29:56 +02:00
|
|
|
../common/libcommon.a . ../common/util.h defines macros to map them
|
2004-01-05 10:28:27 +01:00
|
|
|
to xmalloc etc. */
|
|
|
|
static void
|
2006-09-06 18:35:52 +02:00
|
|
|
out_of_memory (void)
|
2004-01-05 10:28:27 +01:00
|
|
|
{
|
|
|
|
log_fatal (_("error allocating enough memory: %s\n"), strerror (errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-14 10:32:07 +02:00
|
|
|
void *
|
|
|
|
gcry_malloc (size_t n)
|
|
|
|
{
|
|
|
|
return malloc (n);
|
|
|
|
}
|
|
|
|
|
2007-10-02 18:30:58 +02:00
|
|
|
void *
|
|
|
|
gcry_malloc_secure (size_t n)
|
|
|
|
{
|
|
|
|
return malloc (n);
|
|
|
|
}
|
|
|
|
|
2004-01-05 10:28:27 +01:00
|
|
|
void *
|
|
|
|
gcry_xmalloc (size_t n)
|
|
|
|
{
|
|
|
|
void *p = malloc (n);
|
|
|
|
if (!p)
|
2006-09-06 18:35:52 +02:00
|
|
|
out_of_memory ();
|
2004-01-05 10:28:27 +01:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2005-02-25 17:14:55 +01:00
|
|
|
char *
|
|
|
|
gcry_strdup (const char *string)
|
|
|
|
{
|
2009-12-07 16:52:27 +01:00
|
|
|
char *p = malloc (strlen (string)+1);
|
|
|
|
if (p)
|
|
|
|
strcpy (p, string);
|
|
|
|
return p;
|
2005-02-25 17:14:55 +01:00
|
|
|
}
|
|
|
|
|
2004-06-14 10:32:07 +02:00
|
|
|
|
|
|
|
void *
|
|
|
|
gcry_realloc (void *a, size_t n)
|
|
|
|
{
|
|
|
|
return realloc (a, n);
|
|
|
|
}
|
|
|
|
|
2004-01-05 10:28:27 +01:00
|
|
|
void *
|
|
|
|
gcry_xrealloc (void *a, size_t n)
|
|
|
|
{
|
|
|
|
void *p = realloc (a, n);
|
|
|
|
if (!p)
|
2006-09-06 18:35:52 +02:00
|
|
|
out_of_memory ();
|
2004-01-05 10:28:27 +01:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2004-06-14 10:32:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
void *
|
|
|
|
gcry_calloc (size_t n, size_t m)
|
|
|
|
{
|
|
|
|
return calloc (n, m);
|
|
|
|
}
|
|
|
|
|
2004-01-05 10:28:27 +01:00
|
|
|
void *
|
|
|
|
gcry_xcalloc (size_t n, size_t m)
|
|
|
|
{
|
|
|
|
void *p = calloc (n, m);
|
|
|
|
if (!p)
|
2006-09-06 18:35:52 +02:00
|
|
|
out_of_memory ();
|
2004-01-05 10:28:27 +01:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2004-06-14 10:32:07 +02:00
|
|
|
|
2004-01-05 10:28:27 +01:00
|
|
|
char *
|
|
|
|
gcry_xstrdup (const char *string)
|
|
|
|
{
|
|
|
|
void *p = malloc (strlen (string)+1);
|
|
|
|
if (!p)
|
2006-09-06 18:35:52 +02:00
|
|
|
out_of_memory ();
|
2004-01-05 10:28:27 +01:00
|
|
|
strcpy( p, string );
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gcry_free (void *a)
|
|
|
|
{
|
|
|
|
if (a)
|
|
|
|
free (a);
|
|
|
|
}
|
2007-08-29 11:51:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* We need this dummy because exechelp.c uses gcry_control to
|
|
|
|
terminate the secure memeory. */
|
2011-02-04 12:57:53 +01:00
|
|
|
gcry_error_t
|
2008-10-20 15:53:23 +02:00
|
|
|
gcry_control (enum gcry_ctl_cmds cmd, ...)
|
2007-08-29 11:51:37 +02:00
|
|
|
{
|
2008-10-20 15:53:23 +02:00
|
|
|
(void)cmd;
|
2007-08-29 11:51:37 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2007-10-19 16:51:39 +02:00
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
void
|
2007-10-19 16:51:39 +02:00
|
|
|
gcry_set_outofcore_handler (gcry_handler_no_mem_t h, void *opaque)
|
|
|
|
{
|
|
|
|
(void)h;
|
|
|
|
(void)opaque;
|
|
|
|
}
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
void
|
2007-10-19 16:51:39 +02:00
|
|
|
gcry_set_fatalerror_handler (gcry_handler_error_t fnc, void *opaque)
|
|
|
|
{
|
|
|
|
(void)fnc;
|
|
|
|
(void)opaque;
|
|
|
|
}
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
void
|
2007-10-19 16:51:39 +02:00
|
|
|
gcry_set_log_handler (gcry_handler_log_t f, void *opaque)
|
|
|
|
{
|
|
|
|
(void)f;
|
|
|
|
(void)opaque;
|
|
|
|
}
|
2010-03-08 13:22:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
gcry_create_nonce (void *buffer, size_t length)
|
|
|
|
{
|
|
|
|
(void)buffer;
|
|
|
|
(void)length;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2010-03-08 13:22:18 +01:00
|
|
|
log_fatal ("unexpected call to gcry_create_nonce\n");
|
|
|
|
}
|
2010-12-02 16:49:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
gcry_cipher_algo_name (int algo)
|
|
|
|
{
|
2011-03-03 12:40:54 +01:00
|
|
|
(void)algo;
|
2010-12-02 16:49:02 +01:00
|
|
|
return "?";
|
|
|
|
}
|