X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Futil%2Fcrypto_random.c;h=0a092cdcc35d252d29987838a933dae7a47492ef;hb=555214089c7045298f23fea9e060ea931804e75f;hp=25ba4db2a81ac94c9172c82c428590288ca7e474;hpb=457cd711331dd77e9f012c147dee7ce2922bf9d5;p=oweals%2Fgnunet.git diff --git a/src/util/crypto_random.c b/src/util/crypto_random.c index 25ba4db2a..0a092cdcc 100644 --- a/src/util/crypto_random.c +++ b/src/util/crypto_random.c @@ -27,6 +27,7 @@ #include "platform.h" #include "gnunet_common.h" #include "gnunet_crypto_lib.h" +#include "gnunet_os_lib.h" #include /** @@ -161,12 +162,99 @@ GNUNET_CRYPTO_random_disable_entropy_gathering () gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0); } + +/** + * Process ID of the "find" process that we use for + * entropy gathering. + */ +static pid_t genproc; + /** - * Initializer + * Function called by libgcrypt whenever we are + * blocked gathering entropy. */ -void __attribute__ ((constructor)) GNUNET_util_random_init () +static void +entropy_generator (void *cls, + const char *what, int printchar, int current, int total) +{ + unsigned long code; + enum GNUNET_OS_ProcessStatusType type; + int ret; + + if (0 != strcmp (what, "need_entropy")) + return; + if (current == total) + { + if (genproc != 0) + { + if (0 != PLIBC_KILL (genproc, SIGTERM)) + GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "kill"); + GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (genproc)); + genproc = 0; + } + return; + } + if (genproc != 0) + { + ret = GNUNET_OS_process_status (genproc, &type, &code); + if (ret == GNUNET_NO) + return; /* still running */ + if (ret == GNUNET_SYSERR) + { + GNUNET_break (0); + return; + } + if (0 != PLIBC_KILL (genproc, SIGTERM)) + GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "kill"); + GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (genproc)); + genproc = 0; + } + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + _("Starting `%s' process to generate entropy\n"), "find"); + genproc = GNUNET_OS_start_process (NULL, NULL, "sh", + "sh", + "-c", + "exec find / -mount -type f -exec cp {} /dev/null \\; 2>/dev/null", + NULL); +} + + +static void +killfind () +{ + if (genproc != 0) + { + PLIBC_KILL (genproc, SIGKILL); + genproc = 0; + } +} + + +void __attribute__ ((constructor)) GNUNET_CRYPTO_random_init () { SRANDOM (time (NULL)); + gcry_control (GCRYCTL_DISABLE_SECMEM, 0); + if (!gcry_check_version (GCRYPT_VERSION)) + { + fprintf (stderr, + _ + ("libgcrypt has not the expected version (version %s is required).\n"), + GCRYPT_VERSION); + abort (); + } +#ifdef gcry_fast_random_poll + gcry_fast_random_poll (); +#endif + gcry_set_progress_handler (&entropy_generator, NULL); + atexit (&killfind); } + +void __attribute__ ((destructor)) GNUNET_CRYPTO_random_fini () +{ + gcry_set_progress_handler (NULL, NULL); +} + + + /* end of crypto_random.c */