diff --git a/src/gcrypt-testapi.h b/src/gcrypt-testapi.h
index 23d38008..0417754f 100644
--- a/src/gcrypt-testapi.h
+++ b/src/gcrypt-testapi.h
@@ -1,68 +1,69 @@
 /* gcrypt-testapi.h - Definitiona for the Regression test API
  * Copyright (C) 2016 g10 Code GmbH
  *
  * This file is part of Libgcrypt.
  *
  * Libgcrypt is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as
  * published by the Free Software Foundation; either version 2.1 of
  * the License, or (at your option) any later version.
  *
  * Libgcrypt is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
  * WARNING: This is a private API to be used by regression tests.  In
  * particular this API does not constitute a well defined ABI.  The
  * header may only be used with its matching Libgcrypt version.
  */
 
 #ifndef GCRY_GCRYPT_TESTAPI_H
 #define GCRY_GCRYPT_TESTAPI_H
 
 /* For use with gcry_control:  */
 #define PRIV_CTL_INIT_EXTRNG_TEST   58
 #define PRIV_CTL_RUN_EXTRNG_TEST    59
 #define PRIV_CTL_DEINIT_EXTRNG_TEST 60
 #define PRIV_CTL_EXTERNAL_LOCK_TEST 61
+#define PRIV_CTL_DUMP_SECMEM_STATS  62
 
 #define EXTERNAL_LOCK_TEST_INIT       30111
 #define EXTERNAL_LOCK_TEST_LOCK       30112
 #define EXTERNAL_LOCK_TEST_UNLOCK     30113
 #define EXTERNAL_LOCK_TEST_DESTROY    30114
 
 /* For use with gcry_cipher_ctl:  */
 #define PRIV_CIPHERCTL_DISABLE_WEAK_KEY   61
 #define PRIV_CIPHERCTL_GET_INPUT_VECTOR   62
 
 
 /* Private interfaces for testing of random-drbg.c. */
 struct gcry_drbg_test_vector
 {
   const char *flagstr;
   unsigned char *entropy;
   size_t entropylen;
   unsigned char *entpra;
   unsigned char *entprb;
   size_t entprlen;
   unsigned char *addtla;
   unsigned char *addtlb;
   size_t addtllen;
   unsigned char *pers;
   size_t perslen;
   unsigned char *expected;
   size_t expectedlen;
   unsigned char *entropyreseed;
   size_t entropyreseed_len;
   unsigned char *addtl_reseed;
   size_t addtl_reseed_len;
 };
 
 
 #endif /*GCRY_GCRYPT_TESTAPI_H*/
diff --git a/src/global.c b/src/global.c
index 8e54efe6..be112b77 100644
--- a/src/global.c
+++ b/src/global.c
@@ -1,1201 +1,1202 @@
 /* global.c  -	global control functions
  * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
  *               2004, 2005, 2006, 2008, 2011,
  *               2012  Free Software Foundation, Inc.
  * Copyright (C) 2013, 2014 g10 Code GmbH
  *
  * This file is part of Libgcrypt.
  *
  * Libgcrypt is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser general Public License as
  * published by the Free Software Foundation; either version 2.1 of
  * the License, or (at your option) any later version.
  *
  * Libgcrypt is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <config.h>
 
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <stdarg.h>
 #include <ctype.h>
 #include <limits.h>
 #include <errno.h>
 #include <unistd.h>
 #ifdef HAVE_SYSLOG
 # include <syslog.h>
 #endif /*HAVE_SYSLOG*/
 
 #include "g10lib.h"
 #include "gcrypt-testapi.h"
 #include "cipher.h"
 #include "stdmem.h" /* our own memory allocator */
 #include "secmem.h" /* our own secmem allocator */
 
 
 
 
 /****************
  * flag bits: 0 : general cipher debug
  *	      1 : general MPI debug
  */
 static unsigned int debug_flags;
 
 /* gcry_control (GCRYCTL_SET_FIPS_MODE), sets this flag so that the
    initialization code switched fips mode on.  */
 static int force_fips_mode;
 
 /* Controlled by global_init().  */
 static int any_init_done;
 
 /*
  * Functions called before and after blocking syscalls.
  * Initialized by global_init and used via
  * _gcry_pre_syscall and _gcry_post_syscall.
  */
 static void (*pre_syscall_func)(void);
 static void (*post_syscall_func)(void);
 
 
 /* Memory management. */
 
 static gcry_handler_alloc_t alloc_func;
 static gcry_handler_alloc_t alloc_secure_func;
 static gcry_handler_secure_check_t is_secure_func;
 static gcry_handler_realloc_t realloc_func;
 static gcry_handler_free_t free_func;
 static gcry_handler_no_mem_t outofcore_handler;
 static void *outofcore_handler_value;
 static int no_secure_memory;
 
 /* Prototypes.  */
 static gpg_err_code_t external_lock_test (int cmd);
 
 
 
 
 /* This is our handmade constructor.  It gets called by any function
    likely to be called at startup.  The suggested way for an
    application to make sure that this has been called is by using
    gcry_check_version. */
 static void
 global_init (void)
 {
   gcry_error_t err = 0;
 
   if (any_init_done)
     return;
   any_init_done = 1;
 
   /* Tell the random module that we have seen an init call.  */
   _gcry_set_preferred_rng_type (0);
 
   /* Get the system call clamp functions.  */
   if (!pre_syscall_func)
     gpgrt_get_syscall_clamp (&pre_syscall_func, &post_syscall_func);
 
   /* See whether the system is in FIPS mode.  This needs to come as
      early as possible but after ATH has been initialized.  */
   _gcry_initialize_fips_mode (force_fips_mode);
 
   /* Before we do any other initialization we need to test available
      hardware features.  */
   _gcry_detect_hw_features ();
 
   /* Initialize the modules - this is mainly allocating some memory and
      creating mutexes.  */
   err = _gcry_cipher_init ();
   if (err)
     goto fail;
   err = _gcry_md_init ();
   if (err)
     goto fail;
   err = _gcry_mac_init ();
   if (err)
     goto fail;
   err = _gcry_pk_init ();
   if (err)
     goto fail;
   err = _gcry_primegen_init ();
   if (err)
     goto fail;
   err = _gcry_secmem_module_init ();
   if (err)
     goto fail;
   err = _gcry_mpi_init ();
   if (err)
     goto fail;
 
   return;
 
  fail:
   BUG ();
 }
 
 
 /* This function is called by the macro fips_is_operational and makes
    sure that the minimal initialization has been done.  This is far
    from a perfect solution and hides problems with an improper
    initialization but at least in single-threaded mode it should work
    reliable.
 
    The reason we need this is that a lot of applications don't use
    Libgcrypt properly by not running any initialization code at all.
    They just call a Libgcrypt function and that is all what they want.
    Now with the FIPS mode, that has the side effect of entering FIPS
    mode (for security reasons, FIPS mode is the default if no
    initialization has been done) and bailing out immediately because
    the FSM is in the wrong state.  If we always run the init code,
    Libgcrypt can test for FIPS mode and at least if not in FIPS mode,
    it will behave as before.  Note that this on-the-fly initialization
    is only done for the cryptographic functions subject to FIPS mode
    and thus not all API calls will do such an initialization.  */
 int
 _gcry_global_is_operational (void)
 {
   if (!any_init_done)
     {
 #ifdef HAVE_SYSLOG
       syslog (LOG_USER|LOG_WARNING, "Libgcrypt warning: "
               "missing initialization - please fix the application");
 #endif /*HAVE_SYSLOG*/
       global_init ();
     }
   return _gcry_fips_is_operational ();
 }
 
 
 
 
 /* Version number parsing.  */
 
 /* This function parses the first portion of the version number S and
    stores it in *NUMBER.  On success, this function returns a pointer
    into S starting with the first character, which is not part of the
    initial number portion; on failure, NULL is returned.  */
 static const char*
 parse_version_number( const char *s, int *number )
 {
     int val = 0;
 
     if( *s == '0' && isdigit(s[1]) )
 	return NULL; /* leading zeros are not allowed */
     for ( ; isdigit(*s); s++ ) {
 	val *= 10;
 	val += *s - '0';
     }
     *number = val;
     return val < 0? NULL : s;
 }
 
 /* This function breaks up the complete string-representation of the
    version number S, which is of the following struture: <major
    number>.<minor number>.<micro number><patch level>.  The major,
    minor and micro number components will be stored in *MAJOR, *MINOR
    and *MICRO.
 
    On success, the last component, the patch level, will be returned;
    in failure, NULL will be returned.  */
 
 static const char *
 parse_version_string( const char *s, int *major, int *minor, int *micro )
 {
     s = parse_version_number( s, major );
     if( !s || *s != '.' )
 	return NULL;
     s++;
     s = parse_version_number( s, minor );
     if( !s || *s != '.' )
 	return NULL;
     s++;
     s = parse_version_number( s, micro );
     if( !s )
 	return NULL;
     return s; /* patchlevel */
 }
 
 /* If REQ_VERSION is non-NULL, check that the version of the library
    is at minimum the requested one.  Returns the string representation
    of the library version if the condition is satisfied; return NULL
    if the requested version is newer than that of the library.
 
    If a NULL is passed to this function, no check is done, but the
    string representation of the library is simply returned.  */
 const char *
 _gcry_check_version (const char *req_version)
 {
     const char *ver = VERSION;
     int my_major, my_minor, my_micro;
     int rq_major, rq_minor, rq_micro;
     const char *my_plvl;
 
     if (req_version && req_version[0] == 1 && req_version[1] == 1)
         return _gcry_compat_identification ();
 
     /* Initialize library.  */
     global_init ();
 
     if ( !req_version )
         /* Caller wants our version number.  */
 	return ver;
 
     /* Parse own version number.  */
     my_plvl = parse_version_string( ver, &my_major, &my_minor, &my_micro );
     if ( !my_plvl )
         /* very strange our own version is bogus.  Shouldn't we use
 	   assert() here and bail out in case this happens?  -mo.  */
 	return NULL;
 
     /* Parse requested version number.  */
     if (!parse_version_string (req_version, &rq_major, &rq_minor, &rq_micro))
       return NULL;  /* req version string is invalid, this can happen.  */
 
     /* Compare version numbers.  */
     if ( my_major > rq_major
 	|| (my_major == rq_major && my_minor > rq_minor)
 	|| (my_major == rq_major && my_minor == rq_minor		                           		 && my_micro > rq_micro)
 	|| (my_major == rq_major && my_minor == rq_minor
                                  && my_micro == rq_micro))
       {
 	return ver;
       }
 
     return NULL;
 }
 
 
 static void
 print_config ( int (*fnc)(FILE *fp, const char *format, ...), FILE *fp)
 {
   unsigned int hwfeatures, afeature;
   int i;
   const char *s;
 
   fnc (fp, "version:%s:\n", VERSION);
   fnc (fp, "ciphers:%s:\n", LIBGCRYPT_CIPHERS);
   fnc (fp, "pubkeys:%s:\n", LIBGCRYPT_PUBKEY_CIPHERS);
   fnc (fp, "digests:%s:\n", LIBGCRYPT_DIGESTS);
   fnc (fp, "rnd-mod:"
 #if USE_RNDEGD
                 "egd:"
 #endif
 #if USE_RNDLINUX
                 "linux:"
 #endif
 #if USE_RNDUNIX
                 "unix:"
 #endif
 #if USE_RNDW32
                 "w32:"
 #endif
        "\n");
   fnc (fp, "cpu-arch:"
 #if defined(HAVE_CPU_ARCH_X86)
        "x86"
 #elif defined(HAVE_CPU_ARCH_ALPHA)
        "alpha"
 #elif defined(HAVE_CPU_ARCH_SPARC)
        "sparc"
 #elif defined(HAVE_CPU_ARCH_MIPS)
        "mips"
 #elif defined(HAVE_CPU_ARCH_M68K)
        "m68k"
 #elif defined(HAVE_CPU_ARCH_PPC)
        "ppc"
 #elif defined(HAVE_CPU_ARCH_ARM)
        "arm"
 #endif
        ":\n");
   fnc (fp, "mpi-asm:%s:\n", _gcry_mpi_get_hw_config ());
   hwfeatures = _gcry_get_hw_features ();
   fnc (fp, "hwflist:");
   for (i=0; (s = _gcry_enum_hw_features (i, &afeature)); i++)
     if ((hwfeatures & afeature))
       fnc (fp, "%s:", s);
   fnc (fp, "\n");
   /* We use y/n instead of 1/0 for the simple reason that Emacsen's
      compile error parser would accidentally flag that line when printed
      during "make check" as an error.  */
   fnc (fp, "fips-mode:%c:%c:\n",
        fips_mode ()? 'y':'n',
        _gcry_enforced_fips_mode ()? 'y':'n' );
   /* The currently used RNG type.  */
   {
     i = _gcry_get_rng_type (0);
     switch (i)
       {
       case GCRY_RNG_TYPE_STANDARD: s = "standard"; break;
       case GCRY_RNG_TYPE_FIPS:     s = "fips"; break;
       case GCRY_RNG_TYPE_SYSTEM:   s = "system"; break;
       default: BUG ();
       }
     fnc (fp, "rng-type:%s:%d:\n", s, i);
   }
 
 }
 
 
 
 
 /* Command dispatcher function, acting as general control
    function.  */
 gcry_err_code_t
 _gcry_vcontrol (enum gcry_ctl_cmds cmd, va_list arg_ptr)
 {
   static int init_finished = 0;
   gcry_err_code_t rc = 0;
 
   switch (cmd)
     {
     case GCRYCTL_ENABLE_M_GUARD:
       _gcry_private_enable_m_guard ();
       break;
 
     case GCRYCTL_ENABLE_QUICK_RANDOM:
       _gcry_set_preferred_rng_type (0);
       _gcry_enable_quick_random_gen ();
       break;
 
     case GCRYCTL_FAKED_RANDOM_P:
       /* Return an error if the RNG is faked one (e.g. enabled by
          ENABLE_QUICK_RANDOM. */
       if (_gcry_random_is_faked ())
         rc = GPG_ERR_GENERAL;  /* Use as TRUE value.  */
       break;
 
     case GCRYCTL_DUMP_RANDOM_STATS:
       _gcry_random_dump_stats ();
       break;
 
     case GCRYCTL_DUMP_MEMORY_STATS:
       /*m_print_stats("[fixme: prefix]");*/
       break;
 
     case GCRYCTL_DUMP_SECMEM_STATS:
-      _gcry_secmem_dump_stats ();
+      _gcry_secmem_dump_stats (0);
       break;
 
     case GCRYCTL_DROP_PRIVS:
       global_init ();
       _gcry_secmem_init (0);
       break;
 
     case GCRYCTL_DISABLE_SECMEM:
       global_init ();
       no_secure_memory = 1;
       break;
 
     case GCRYCTL_INIT_SECMEM:
       global_init ();
       _gcry_secmem_init (va_arg (arg_ptr, unsigned int));
       if ((_gcry_secmem_get_flags () & GCRY_SECMEM_FLAG_NOT_LOCKED))
         rc = GPG_ERR_GENERAL;
       break;
 
     case GCRYCTL_TERM_SECMEM:
       global_init ();
       _gcry_secmem_term ();
       break;
 
     case GCRYCTL_DISABLE_SECMEM_WARN:
       _gcry_set_preferred_rng_type (0);
       _gcry_secmem_set_flags ((_gcry_secmem_get_flags ()
 			       | GCRY_SECMEM_FLAG_NO_WARNING));
       break;
 
     case GCRYCTL_SUSPEND_SECMEM_WARN:
       _gcry_set_preferred_rng_type (0);
       _gcry_secmem_set_flags ((_gcry_secmem_get_flags ()
 			       | GCRY_SECMEM_FLAG_SUSPEND_WARNING));
       break;
 
     case GCRYCTL_RESUME_SECMEM_WARN:
       _gcry_set_preferred_rng_type (0);
       _gcry_secmem_set_flags ((_gcry_secmem_get_flags ()
 			       & ~GCRY_SECMEM_FLAG_SUSPEND_WARNING));
       break;
 
     case GCRYCTL_USE_SECURE_RNDPOOL:
       global_init ();
       _gcry_secure_random_alloc (); /* Put random number into secure memory. */
       break;
 
     case GCRYCTL_SET_RANDOM_SEED_FILE:
       _gcry_set_preferred_rng_type (0);
       _gcry_set_random_seed_file (va_arg (arg_ptr, const char *));
       break;
 
     case GCRYCTL_UPDATE_RANDOM_SEED_FILE:
       _gcry_set_preferred_rng_type (0);
       if ( fips_is_operational () )
         _gcry_update_random_seed_file ();
       break;
 
     case GCRYCTL_SET_VERBOSITY:
       _gcry_set_preferred_rng_type (0);
       _gcry_set_log_verbosity (va_arg (arg_ptr, int));
       break;
 
     case GCRYCTL_SET_DEBUG_FLAGS:
       debug_flags |= va_arg (arg_ptr, unsigned int);
       break;
 
     case GCRYCTL_CLEAR_DEBUG_FLAGS:
       debug_flags &= ~va_arg (arg_ptr, unsigned int);
       break;
 
     case GCRYCTL_DISABLE_INTERNAL_LOCKING:
       /* Not used anymore.  */
       global_init ();
       break;
 
     case GCRYCTL_ANY_INITIALIZATION_P:
       if (any_init_done)
 	rc = GPG_ERR_GENERAL;
       break;
 
     case GCRYCTL_INITIALIZATION_FINISHED_P:
       if (init_finished)
 	rc = GPG_ERR_GENERAL; /* Yes.  */
       break;
 
     case GCRYCTL_INITIALIZATION_FINISHED:
       /* This is a hook which should be used by an application after
 	 all initialization has been done and right before any threads
 	 are started.  It is not really needed but the only way to be
 	 really sure that all initialization for thread-safety has
 	 been done. */
       if (! init_finished)
         {
           global_init ();
           /* Do only a basic random initialization, i.e. init the
              mutexes. */
           _gcry_random_initialize (0);
           init_finished = 1;
           /* Force us into operational state if in FIPS mode.  */
           (void)fips_is_operational ();
         }
       break;
 
     case GCRYCTL_SET_THREAD_CBS:
       /* This is now a dummy call.  We used to install our own thread
          library here. */
       _gcry_set_preferred_rng_type (0);
       global_init ();
       break;
 
     case GCRYCTL_FAST_POLL:
       _gcry_set_preferred_rng_type (0);
       /* We need to do make sure that the random pool is really
          initialized so that the poll function is not a NOP. */
       _gcry_random_initialize (1);
 
       if ( fips_is_operational () )
         _gcry_fast_random_poll ();
       break;
 
     case GCRYCTL_SET_RNDEGD_SOCKET:
 #if USE_RNDEGD
       _gcry_set_preferred_rng_type (0);
       rc = _gcry_rndegd_set_socket_name (va_arg (arg_ptr, const char *));
 #else
       rc = GPG_ERR_NOT_SUPPORTED;
 #endif
       break;
 
     case GCRYCTL_SET_RANDOM_DAEMON_SOCKET:
       _gcry_set_preferred_rng_type (0);
       _gcry_set_random_daemon_socket (va_arg (arg_ptr, const char *));
       break;
 
     case GCRYCTL_USE_RANDOM_DAEMON:
       /* We need to do make sure that the random pool is really
          initialized so that the poll function is not a NOP. */
       _gcry_set_preferred_rng_type (0);
       _gcry_random_initialize (1);
       _gcry_use_random_daemon (!! va_arg (arg_ptr, int));
       break;
 
     case GCRYCTL_CLOSE_RANDOM_DEVICE:
       _gcry_random_close_fds ();
       break;
 
       /* This command dumps information pertaining to the
          configuration of libgcrypt to the given stream.  It may be
          used before the initialization has been finished but not
          before a gcry_version_check. */
     case GCRYCTL_PRINT_CONFIG:
       {
         FILE *fp = va_arg (arg_ptr, FILE *);
         _gcry_set_preferred_rng_type (0);
         print_config (fp?fprintf:_gcry_log_info_with_dummy_fp, fp);
       }
       break;
 
     case GCRYCTL_OPERATIONAL_P:
       /* Returns true if the library is in an operational state.  This
          is always true for non-fips mode.  */
       _gcry_set_preferred_rng_type (0);
       if (_gcry_fips_test_operational ())
         rc = GPG_ERR_GENERAL; /* Used as TRUE value */
       break;
 
     case GCRYCTL_FIPS_MODE_P:
       if (fips_mode ()
           && !_gcry_is_fips_mode_inactive ()
           && !no_secure_memory)
 	rc = GPG_ERR_GENERAL; /* Used as TRUE value */
       break;
 
     case GCRYCTL_FORCE_FIPS_MODE:
       /* Performing this command puts the library into fips mode.  If
          the library has already been initialized into fips mode, a
          selftest is triggered.  It is not possible to put the libraty
          into fips mode after having passed the initialization. */
       _gcry_set_preferred_rng_type (0);
       if (!any_init_done)
         {
           /* Not yet intialized at all.  Set a flag so that we are put
              into fips mode during initialization.  */
           force_fips_mode = 1;
         }
       else
         {
           /* Already initialized.  If we are already operational we
              run a selftest.  If not we use the is_operational call to
              force us into operational state if possible.  */
           if (_gcry_fips_test_error_or_operational ())
             _gcry_fips_run_selftests (1);
           if (_gcry_fips_is_operational ())
             rc = GPG_ERR_GENERAL; /* Used as TRUE value */
       }
       break;
 
     case GCRYCTL_SELFTEST:
       /* Run a selftest.  This works in fips mode as well as in
          standard mode.  In contrast to the power-up tests, we use an
          extended version of the selftests. Returns 0 on success or an
          error code. */
       global_init ();
       rc = _gcry_fips_run_selftests (1);
       break;
 
 #if _GCRY_GCC_VERSION >= 40600
 # pragma GCC diagnostic push
 # pragma GCC diagnostic ignored "-Wswitch"
 #endif
     case PRIV_CTL_INIT_EXTRNG_TEST:  /* Init external random test.  */
       rc = GPG_ERR_NOT_SUPPORTED;
       break;
     case PRIV_CTL_RUN_EXTRNG_TEST:  /* Run external DRBG test.  */
       {
         struct gcry_drbg_test_vector *test =
 	  va_arg (arg_ptr, struct gcry_drbg_test_vector *);
         unsigned char *buf = va_arg (arg_ptr, unsigned char *);
 
         if (buf)
           rc = _gcry_rngdrbg_cavs_test (test, buf);
         else
           rc = _gcry_rngdrbg_healthcheck_one (test);
       }
       break;
     case PRIV_CTL_DEINIT_EXTRNG_TEST:  /* Deinit external random test.  */
       rc = GPG_ERR_NOT_SUPPORTED;
       break;
     case PRIV_CTL_EXTERNAL_LOCK_TEST:  /* Run external lock test */
       rc = external_lock_test (va_arg (arg_ptr, int));
       break;
-    case 62:  /* RFU */
+    case PRIV_CTL_DUMP_SECMEM_STATS:
+      _gcry_secmem_dump_stats (1);
       break;
 #if _GCRY_GCC_VERSION >= 40600
 # pragma GCC diagnostic pop
 #endif
 
     case GCRYCTL_DISABLE_HWF:
       {
         const char *name = va_arg (arg_ptr, const char *);
         rc = _gcry_disable_hw_feature (name);
       }
       break;
 
     case GCRYCTL_SET_ENFORCED_FIPS_FLAG:
       if (!any_init_done)
         {
           /* Not yet initialized at all.  Set the enforced fips mode flag */
           _gcry_set_preferred_rng_type (0);
           _gcry_set_enforced_fips_mode ();
         }
       else
         rc = GPG_ERR_GENERAL;
       break;
 
     case GCRYCTL_SET_PREFERRED_RNG_TYPE:
       /* This may be called before gcry_check_version.  */
       {
         int i = va_arg (arg_ptr, int);
         /* Note that we may not pass 0 to _gcry_set_preferred_rng_type.  */
         if (i > 0)
           _gcry_set_preferred_rng_type (i);
       }
       break;
 
     case GCRYCTL_GET_CURRENT_RNG_TYPE:
       {
         int *ip = va_arg (arg_ptr, int*);
         if (ip)
           *ip = _gcry_get_rng_type (!any_init_done);
       }
       break;
 
     case GCRYCTL_DISABLE_LOCKED_SECMEM:
       _gcry_set_preferred_rng_type (0);
       _gcry_secmem_set_flags ((_gcry_secmem_get_flags ()
 			       | GCRY_SECMEM_FLAG_NO_MLOCK));
       break;
 
     case GCRYCTL_DISABLE_PRIV_DROP:
       _gcry_set_preferred_rng_type (0);
       _gcry_secmem_set_flags ((_gcry_secmem_get_flags ()
 			       | GCRY_SECMEM_FLAG_NO_PRIV_DROP));
       break;
 
     case GCRYCTL_INACTIVATE_FIPS_FLAG:
     case GCRYCTL_REACTIVATE_FIPS_FLAG:
       rc = GPG_ERR_NOT_IMPLEMENTED;
       break;
 
     case GCRYCTL_DRBG_REINIT:
       {
         const char *flagstr = va_arg (arg_ptr, const char *);
         gcry_buffer_t *pers = va_arg (arg_ptr, gcry_buffer_t *);
         int npers = va_arg (arg_ptr, int);
         if (va_arg (arg_ptr, void *) || npers < 0)
           rc = GPG_ERR_INV_ARG;
         else if (_gcry_get_rng_type (!any_init_done) != GCRY_RNG_TYPE_FIPS)
           rc = GPG_ERR_NOT_SUPPORTED;
         else
           rc = _gcry_rngdrbg_reinit (flagstr, pers, npers);
       }
       break;
 
     case GCRYCTL_REINIT_SYSCALL_CLAMP:
       if (!pre_syscall_func)
         gpgrt_get_syscall_clamp (&pre_syscall_func, &post_syscall_func);
       break;
 
     default:
       _gcry_set_preferred_rng_type (0);
       rc = GPG_ERR_INV_OP;
     }
 
   return rc;
 }
 
 
 
 /* Set custom allocation handlers.  This is in general not useful
  * because the libgcrypt allocation functions are guaranteed to
  * provide proper allocation handlers which zeroize memory if needed.
  * NOTE: All 5 functions should be set.  */
 void
 _gcry_set_allocation_handler (gcry_handler_alloc_t new_alloc_func,
                               gcry_handler_alloc_t new_alloc_secure_func,
                               gcry_handler_secure_check_t new_is_secure_func,
                               gcry_handler_realloc_t new_realloc_func,
                               gcry_handler_free_t new_free_func)
 {
   global_init ();
 
   if (fips_mode ())
     {
       /* We do not want to enforce the fips mode, but merely set a
          flag so that the application may check whether it is still in
          fips mode.  */
       _gcry_inactivate_fips_mode ("custom allocation handler");
     }
 
   alloc_func = new_alloc_func;
   alloc_secure_func = new_alloc_secure_func;
   is_secure_func = new_is_secure_func;
   realloc_func = new_realloc_func;
   free_func = new_free_func;
 }
 
 
 
 /****************
  * Set an optional handler which is called in case the xmalloc functions
  * ran out of memory.  This handler may do one of these things:
  *   o free some memory and return true, so that the xmalloc function
  *     tries again.
  *   o Do whatever it like and return false, so that the xmalloc functions
  *     use the default fatal error handler.
  *   o Terminate the program and don't return.
  *
  * The handler function is called with 3 arguments:  The opaque value set with
  * this function, the requested memory size, and a flag with these bits
  * currently defined:
  *	bit 0 set = secure memory has been requested.
  */
 void
 _gcry_set_outofcore_handler (int (*f)(void*, size_t, unsigned int), void *value)
 {
   global_init ();
 
   if (fips_mode () )
     {
       log_info ("out of core handler ignored in FIPS mode\n");
       return;
     }
 
   outofcore_handler = f;
   outofcore_handler_value = value;
 }
 
 /* Return the no_secure_memory flag.  */
 static int
 get_no_secure_memory (void)
 {
   if (!no_secure_memory)
     return 0;
   if (_gcry_enforced_fips_mode ())
     {
       no_secure_memory = 0;
       return 0;
     }
   return no_secure_memory;
 }
 
 
 static gcry_err_code_t
 do_malloc (size_t n, unsigned int flags, void **mem)
 {
   gcry_err_code_t err = 0;
   void *m;
 
   if ((flags & GCRY_ALLOC_FLAG_SECURE) && !get_no_secure_memory ())
     {
       if (alloc_secure_func)
 	m = (*alloc_secure_func) (n);
       else
 	m = _gcry_private_malloc_secure (n);
     }
   else
     {
       if (alloc_func)
 	m = (*alloc_func) (n);
       else
 	m = _gcry_private_malloc (n);
     }
 
   if (!m)
     {
       /* Make sure that ERRNO has been set in case a user supplied
          memory handler didn't it correctly. */
       if (!errno)
         gpg_err_set_errno (ENOMEM);
       err = gpg_err_code_from_errno (errno);
     }
   else
     *mem = m;
 
   return err;
 }
 
 void *
 _gcry_malloc (size_t n)
 {
   void *mem = NULL;
 
   do_malloc (n, 0, &mem);
 
   return mem;
 }
 
 void *
 _gcry_malloc_secure (size_t n)
 {
   void *mem = NULL;
 
   do_malloc (n, GCRY_ALLOC_FLAG_SECURE, &mem);
 
   return mem;
 }
 
 int
 _gcry_is_secure (const void *a)
 {
   if (get_no_secure_memory ())
     return 0;
   if (is_secure_func)
     return is_secure_func (a) ;
   return _gcry_private_is_secure (a);
 }
 
 void
 _gcry_check_heap( const void *a )
 {
   (void)a;
 
     /* FIXME: implement this*/
 #if 0
     if( some_handler )
 	some_handler(a)
     else
 	_gcry_private_check_heap(a)
 #endif
 }
 
 void *
 _gcry_realloc (void *a, size_t n)
 {
   void *p;
 
   /* To avoid problems with non-standard realloc implementations and
      our own secmem_realloc, we divert to malloc and free here.  */
   if (!a)
     return _gcry_malloc (n);
   if (!n)
     {
       xfree (a);
       return NULL;
     }
 
   if (realloc_func)
     p = realloc_func (a, n);
   else
     p =  _gcry_private_realloc (a, n);
   if (!p && !errno)
     gpg_err_set_errno (ENOMEM);
   return p;
 }
 
 void
 _gcry_free (void *p)
 {
   int save_errno;
 
   if (!p)
     return;
 
   /* In case ERRNO is set we better save it so that the free machinery
      may not accidentally change ERRNO.  We restore it only if it was
      already set to comply with the usual C semantic for ERRNO.  */
   save_errno = errno;
   if (free_func)
     free_func (p);
   else
     _gcry_private_free (p);
 
   if (save_errno)
     gpg_err_set_errno (save_errno);
 }
 
 void *
 _gcry_calloc (size_t n, size_t m)
 {
   size_t bytes;
   void *p;
 
   bytes = n * m; /* size_t is unsigned so the behavior on overflow is
                     defined. */
   if (m && bytes / m != n)
     {
       gpg_err_set_errno (ENOMEM);
       return NULL;
     }
 
   p = _gcry_malloc (bytes);
   if (p)
     memset (p, 0, bytes);
   return p;
 }
 
 void *
 _gcry_calloc_secure (size_t n, size_t m)
 {
   size_t bytes;
   void *p;
 
   bytes = n * m; /* size_t is unsigned so the behavior on overflow is
                     defined. */
   if (m && bytes / m != n)
     {
       gpg_err_set_errno (ENOMEM);
       return NULL;
     }
 
   p = _gcry_malloc_secure (bytes);
   if (p)
     memset (p, 0, bytes);
   return p;
 }
 
 
 /* Create and return a copy of the null-terminated string STRING.  If
    it is contained in secure memory, the copy will be contained in
    secure memory as well.  In an out-of-memory condition, NULL is
    returned.  */
 char *
 _gcry_strdup (const char *string)
 {
   char *string_cp = NULL;
   size_t string_n = 0;
 
   string_n = strlen (string);
 
   if (_gcry_is_secure (string))
     string_cp = _gcry_malloc_secure (string_n + 1);
   else
     string_cp = _gcry_malloc (string_n + 1);
 
   if (string_cp)
     strcpy (string_cp, string);
 
   return string_cp;
 }
 
 
 void *
 _gcry_xmalloc( size_t n )
 {
   void *p;
 
   while ( !(p = _gcry_malloc( n )) )
     {
       if ( fips_mode ()
            || !outofcore_handler
            || !outofcore_handler (outofcore_handler_value, n, 0) )
         {
           _gcry_fatal_error (gpg_err_code_from_errno (errno), NULL);
         }
     }
     return p;
 }
 
 void *
 _gcry_xrealloc( void *a, size_t n )
 {
   void *p;
 
   while ( !(p = _gcry_realloc( a, n )) )
     {
       if ( fips_mode ()
            || !outofcore_handler
            || !outofcore_handler (outofcore_handler_value, n,
                                   _gcry_is_secure(a)? 3:2))
         {
           _gcry_fatal_error (gpg_err_code_from_errno (errno), NULL );
 	}
     }
     return p;
 }
 
 void *
 _gcry_xmalloc_secure( size_t n )
 {
   void *p;
 
   while ( !(p = _gcry_malloc_secure( n )) )
     {
       if ( fips_mode ()
            || !outofcore_handler
            || !outofcore_handler (outofcore_handler_value, n, 1) )
         {
           _gcry_fatal_error (gpg_err_code_from_errno (errno),
                              _("out of core in secure memory"));
 	}
     }
   return p;
 }
 
 
 void *
 _gcry_xcalloc( size_t n, size_t m )
 {
   size_t nbytes;
   void *p;
 
   nbytes = n * m;
   if (m && nbytes / m != n)
     {
       gpg_err_set_errno (ENOMEM);
       _gcry_fatal_error(gpg_err_code_from_errno (errno), NULL );
     }
 
   p = _gcry_xmalloc ( nbytes );
   memset ( p, 0, nbytes );
   return p;
 }
 
 void *
 _gcry_xcalloc_secure( size_t n, size_t m )
 {
   size_t nbytes;
   void *p;
 
   nbytes = n * m;
   if (m && nbytes / m != n)
     {
       gpg_err_set_errno (ENOMEM);
       _gcry_fatal_error(gpg_err_code_from_errno (errno), NULL );
     }
 
   p = _gcry_xmalloc_secure ( nbytes );
   memset ( p, 0, nbytes );
   return p;
 }
 
 char *
 _gcry_xstrdup (const char *string)
 {
   char *p;
 
   while ( !(p = _gcry_strdup (string)) )
     {
       size_t n = strlen (string);
       int is_sec = !!_gcry_is_secure (string);
 
       if (fips_mode ()
           || !outofcore_handler
           || !outofcore_handler (outofcore_handler_value, n, is_sec) )
         {
           _gcry_fatal_error (gpg_err_code_from_errno (errno),
                              is_sec? _("out of core in secure memory"):NULL);
 	}
     }
 
   return p;
 }
 
 
 /* Used before blocking system calls.  */
 void
 _gcry_pre_syscall (void)
 {
   if (pre_syscall_func)
     pre_syscall_func ();
 }
 
 
 /* Used after blocking system calls.  */
 void
 _gcry_post_syscall (void)
 {
   if (post_syscall_func)
     post_syscall_func ();
 }
 
 
 int
 _gcry_get_debug_flag (unsigned int mask)
 {
   if ( fips_mode () )
     return 0;
   return (debug_flags & mask);
 }
 
 
 
 /* It is often useful to get some feedback of long running operations.
    This function may be used to register a handler for this.
    The callback function CB is used as:
 
    void cb (void *opaque, const char *what, int printchar,
            int current, int total);
 
    Where WHAT is a string identifying the the type of the progress
    output, PRINTCHAR the character usually printed, CURRENT the amount
    of progress currently done and TOTAL the expected amount of
    progress.  A value of 0 for TOTAL indicates that there is no
    estimation available.
 
    Defined values for WHAT:
 
    "need_entropy"  X    0  number-of-bytes-required
             When running low on entropy
    "primegen"      '\n'  0 0
            Prime generated
                    '!'
            Need to refresh the prime pool
                    '<','>'
            Number of bits adjusted
                    '^'
            Looking for a generator
                    '.'
            Fermat tests on 10 candidates failed
                   ':'
            Restart with a new random value
                   '+'
            Rabin Miller test passed
    "pk_elg"        '+','-','.','\n'   0  0
             Only used in debugging mode.
    "pk_dsa"
             Only used in debugging mode.
 */
 void
 _gcry_set_progress_handler (void (*cb)(void *,const char*,int, int, int),
                             void *cb_data)
 {
 #if USE_DSA
   _gcry_register_pk_dsa_progress (cb, cb_data);
 #endif
 #if USE_ELGAMAL
   _gcry_register_pk_elg_progress (cb, cb_data);
 #endif
   _gcry_register_primegen_progress (cb, cb_data);
   _gcry_register_random_progress (cb, cb_data);
 }
 
 
 
 /* This is a helper for the regression test suite to test Libgcrypt's locks.
    It works using a one test lock with CMD controlling what to do:
 
      30111 - Allocate and init lock
      30112 - Take lock
      30113 - Release lock
      30114 - Destroy lock.
 
    This function is used by tests/t-lock.c - it is not part of the
    public API!
  */
 static gpg_err_code_t
 external_lock_test (int cmd)
 {
   GPGRT_LOCK_DEFINE (testlock);
   gpg_err_code_t rc = 0;
 
   switch (cmd)
     {
     case 30111:  /* Init Lock.  */
       rc = gpgrt_lock_init (&testlock);
       break;
 
     case 30112:  /* Take Lock.  */
       rc = gpgrt_lock_lock (&testlock);
       break;
 
     case 30113:  /* Release Lock.  */
       rc = gpgrt_lock_unlock (&testlock);
       break;
 
     case 30114:  /* Destroy Lock.  */
       rc = gpgrt_lock_destroy (&testlock);
       break;
 
     default:
       rc = GPG_ERR_INV_OP;
       break;
     }
 
   return rc;
 }
diff --git a/src/secmem.c b/src/secmem.c
index 1f92f176..54bbda11 100644
--- a/src/secmem.c
+++ b/src/secmem.c
@@ -1,783 +1,785 @@
 /* secmem.c  -	memory allocation from a secure heap
  * Copyright (C) 1998, 1999, 2000, 2001, 2002,
  *               2003, 2007 Free Software Foundation, Inc.
  * Copyright (C) 2013, 2016 g10 Code GmbH
  *
  * This file is part of Libgcrypt.
  *
  * Libgcrypt is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser general Public License as
  * published by the Free Software Foundation; either version 2.1 of
  * the License, or (at your option) any later version.
  *
  * Libgcrypt is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <config.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
 #include <stdarg.h>
 #include <unistd.h>
 #include <stddef.h>
 
 #if defined(HAVE_MLOCK) || defined(HAVE_MMAP)
 #include <sys/mman.h>
 #include <sys/types.h>
 #include <fcntl.h>
 #ifdef USE_CAPABILITIES
 #include <sys/capability.h>
 #endif
 #endif
 
 #include "g10lib.h"
 #include "secmem.h"
 
 #if defined (MAP_ANON) && ! defined (MAP_ANONYMOUS)
 #define MAP_ANONYMOUS MAP_ANON
 #endif
 
 #define MINIMUM_POOL_SIZE 16384
 #define STANDARD_POOL_SIZE 32768
 #define DEFAULT_PAGE_SIZE 4096
 
 typedef struct memblock
 {
   unsigned size;		/* Size of the memory available to the
 				   user.  */
   int flags;			/* See below.  */
   PROPERLY_ALIGNED_TYPE aligned;
 } memblock_t;
 
 /* This flag specifies that the memory block is in use.  */
 #define MB_FLAG_ACTIVE (1 << 0)
 
 /* An object describing a memory pool.  */
 typedef struct pooldesc_s
 {
   /* A memory buffer used as allocation pool.  */
   void *mem;
 
   /* The allocated size of MEM. */
   size_t size;
 
   /* Flag indicating that this memory pool is ready for use.  May be
    * checked in an atexit function.  */
   volatile int okay;
 
   /* Flag indicating whether MEM is mmapped.  */
   volatile int is_mmapped;
 
 } pooldesc_t;
 
 
 /* The pool of secure memory.  */
 static pooldesc_t mainpool;
 
 
 /* A couple of flags whith some beeing set early. */
 static int disable_secmem;
 static int show_warning;
 static int not_locked;
 static int no_warning;
 static int suspend_warning;
 static int no_mlock;
 static int no_priv_drop;
 
 /* Stats.  */
 static unsigned int cur_alloced, cur_blocks;
 
 /* Lock protecting accesses to the memory pools.  */
 GPGRT_LOCK_DEFINE (secmem_lock);
 
 /* Convenient macros.  */
 #define SECMEM_LOCK   gpgrt_lock_lock   (&secmem_lock)
 #define SECMEM_UNLOCK gpgrt_lock_unlock (&secmem_lock)
 
 /* The size of the memblock structure; this does not include the
    memory that is available to the user.  */
 #define BLOCK_HEAD_SIZE \
   offsetof (memblock_t, aligned)
 
 /* Convert an address into the according memory block structure.  */
 #define ADDR_TO_BLOCK(addr) \
   (memblock_t *) (void *) ((char *) addr - BLOCK_HEAD_SIZE)
 
 /* Check whether P points into POOL.  */
 static int
 ptr_into_pool_p (pooldesc_t *pool, const void *p)
 {
   /* We need to convert pointers to addresses.  This is required by
      C-99 6.5.8 to avoid undefined behaviour.  See also
      http://lists.gnupg.org/pipermail/gcrypt-devel/2007-February/001102.html
   */
   uintptr_t p_addr    = (uintptr_t)p;
   uintptr_t pool_addr = (uintptr_t)pool->mem;
 
   return p_addr >= pool_addr && p_addr <  pool_addr + pool->size;
 }
 
 /* Update the stats.  */
 static void
 stats_update (size_t add, size_t sub)
 {
   if (add)
     {
       cur_alloced += add;
       cur_blocks++;
     }
   if (sub)
     {
       cur_alloced -= sub;
       cur_blocks--;
     }
 }
 
 /* Return the block following MB or NULL, if MB is the last block.  */
 static memblock_t *
 mb_get_next (pooldesc_t *pool, memblock_t *mb)
 {
   memblock_t *mb_next;
 
   mb_next = (memblock_t *) (void *) ((char *) mb + BLOCK_HEAD_SIZE + mb->size);
 
   if (! ptr_into_pool_p (pool, mb_next))
     mb_next = NULL;
 
   return mb_next;
 }
 
 /* Return the block preceding MB or NULL, if MB is the first
    block.  */
 static memblock_t *
 mb_get_prev (pooldesc_t *pool, memblock_t *mb)
 {
   memblock_t *mb_prev, *mb_next;
 
   if (mb == pool->mem)
     mb_prev = NULL;
   else
     {
       mb_prev = (memblock_t *) pool->mem;
       while (1)
 	{
 	  mb_next = mb_get_next (pool, mb_prev);
 	  if (mb_next == mb)
 	    break;
 	  else
 	    mb_prev = mb_next;
 	}
     }
 
   return mb_prev;
 }
 
 /* If the preceding block of MB and/or the following block of MB
    exist and are not active, merge them to form a bigger block.  */
 static void
 mb_merge (pooldesc_t *pool, memblock_t *mb)
 {
   memblock_t *mb_prev, *mb_next;
 
   mb_prev = mb_get_prev (pool, mb);
   mb_next = mb_get_next (pool, mb);
 
   if (mb_prev && (! (mb_prev->flags & MB_FLAG_ACTIVE)))
     {
       mb_prev->size += BLOCK_HEAD_SIZE + mb->size;
       mb = mb_prev;
     }
   if (mb_next && (! (mb_next->flags & MB_FLAG_ACTIVE)))
     mb->size += BLOCK_HEAD_SIZE + mb_next->size;
 }
 
 /* Return a new block, which can hold SIZE bytes.  */
 static memblock_t *
 mb_get_new (pooldesc_t *pool, memblock_t *block, size_t size)
 {
   memblock_t *mb, *mb_split;
 
   for (mb = block; ptr_into_pool_p (pool, mb); mb = mb_get_next (pool, mb))
     if (! (mb->flags & MB_FLAG_ACTIVE) && mb->size >= size)
       {
 	/* Found a free block.  */
 	mb->flags |= MB_FLAG_ACTIVE;
 
 	if (mb->size - size > BLOCK_HEAD_SIZE)
 	  {
 	    /* Split block.  */
 
 	    mb_split = (memblock_t *) (void *) (((char *) mb) + BLOCK_HEAD_SIZE
 						+ size);
 	    mb_split->size = mb->size - size - BLOCK_HEAD_SIZE;
 	    mb_split->flags = 0;
 
 	    mb->size = size;
 
 	    mb_merge (pool, mb_split);
 
 	  }
 
 	break;
       }
 
   if (! ptr_into_pool_p (pool, mb))
     {
       gpg_err_set_errno (ENOMEM);
       mb = NULL;
     }
 
   return mb;
 }
 
 /* Print a warning message.  */
 static void
 print_warn (void)
 {
   if (!no_warning)
     log_info (_("Warning: using insecure memory!\n"));
 }
 
 
 /* Lock the memory pages of pool P of size N into core and drop
  * privileges.  */
 static void
 lock_pool_pages (void *p, size_t n)
 {
 #if defined(USE_CAPABILITIES) && defined(HAVE_MLOCK)
   int err;
 
   {
     cap_t cap;
 
     if (!no_priv_drop)
       {
         cap = cap_from_text ("cap_ipc_lock+ep");
         cap_set_proc (cap);
         cap_free (cap);
       }
     err = no_mlock? 0 : mlock (p, n);
     if (err && errno)
       err = errno;
     if (!no_priv_drop)
       {
         cap = cap_from_text ("cap_ipc_lock+p");
         cap_set_proc (cap);
         cap_free(cap);
       }
   }
 
   if (err)
     {
       if (errno != EPERM
 #ifdef EAGAIN	/* OpenBSD returns this */
 	  && errno != EAGAIN
 #endif
 #ifdef ENOSYS	/* Some SCOs return this (function not implemented) */
 	  && errno != ENOSYS
 #endif
 #ifdef ENOMEM  /* Linux might return this. */
             && errno != ENOMEM
 #endif
 	  )
 	log_error ("can't lock memory: %s\n", strerror (err));
       show_warning = 1;
       not_locked = 1;
     }
 
 #elif defined(HAVE_MLOCK)
   uid_t uid;
   int err;
 
   uid = getuid ();
 
 #ifdef HAVE_BROKEN_MLOCK
   /* Under HP/UX mlock segfaults if called by non-root.  Note, we have
      noch checked whether mlock does really work under AIX where we
      also detected a broken nlock.  Note further, that using plock ()
      is not a good idea under AIX. */
   if (uid)
     {
       errno = EPERM;
       err = errno;
     }
   else
     {
       err = no_mlock? 0 : mlock (p, n);
       if (err && errno)
 	err = errno;
     }
 #else /* !HAVE_BROKEN_MLOCK */
   err = no_mlock? 0 : mlock (p, n);
   if (err && errno)
     err = errno;
 #endif /* !HAVE_BROKEN_MLOCK */
 
   /* Test whether we are running setuid(0).  */
   if (uid && ! geteuid ())
     {
       /* Yes, we are.  */
       if (!no_priv_drop)
         {
           /* Check that we really dropped the privs.
            * Note: setuid(0) should always fail */
           if (setuid (uid) || getuid () != geteuid () || !setuid (0))
             log_fatal ("failed to reset uid: %s\n", strerror (errno));
         }
     }
 
   if (err)
     {
       if (errno != EPERM
 #ifdef EAGAIN	/* OpenBSD returns this. */
 	  && errno != EAGAIN
 #endif
 #ifdef ENOSYS	/* Some SCOs return this (function not implemented). */
 	  && errno != ENOSYS
 #endif
 #ifdef ENOMEM  /* Linux might return this. */
             && errno != ENOMEM
 #endif
 	  )
 	log_error ("can't lock memory: %s\n", strerror (err));
       show_warning = 1;
       not_locked = 1;
     }
 
 #elif defined ( __QNX__ )
   /* QNX does not page at all, so the whole secure memory stuff does
    * not make much sense.  However it is still of use because it
    * wipes out the memory on a free().
    * Therefore it is sufficient to suppress the warning.  */
   (void)p;
   (void)n;
 #elif defined (HAVE_DOSISH_SYSTEM) || defined (__CYGWIN__)
     /* It does not make sense to print such a warning, given the fact that
      * this whole Windows !@#$% and their user base are inherently insecure. */
   (void)p;
   (void)n;
 #elif defined (__riscos__)
     /* No virtual memory on RISC OS, so no pages are swapped to disc,
      * besides we don't have mmap, so we don't use it! ;-)
      * But don't complain, as explained above.  */
   (void)p;
   (void)n;
 #else
   (void)p;
   (void)n;
   if (!no_mlock)
     log_info ("Please note that you don't have secure memory on this system\n");
 #endif
 }
 
 /* Initialize POOL.  */
 static void
 init_pool (pooldesc_t *pool, size_t n)
 {
   memblock_t *mb;
 
   pool->size = n;
 
   if (disable_secmem)
     log_bug ("secure memory is disabled");
 
 
 #if HAVE_MMAP
   {
     size_t pgsize;
     long int pgsize_val;
 
 # if defined(HAVE_SYSCONF) && defined(_SC_PAGESIZE)
     pgsize_val = sysconf (_SC_PAGESIZE);
 # elif defined(HAVE_GETPAGESIZE)
     pgsize_val = getpagesize ();
 # else
     pgsize_val = -1;
 # endif
     pgsize = (pgsize_val != -1 && pgsize_val > 0)? pgsize_val:DEFAULT_PAGE_SIZE;
 
     pool->size = (pool->size + pgsize - 1) & ~(pgsize - 1);
 # ifdef MAP_ANONYMOUS
     pool->mem = mmap (0, pool->size, PROT_READ | PROT_WRITE,
                      MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
 # else /* map /dev/zero instead */
     {
       int fd;
 
       fd = open ("/dev/zero", O_RDWR);
       if (fd == -1)
         {
           log_error ("can't open /dev/zero: %s\n", strerror (errno));
           pool->mem = (void *) -1;
         }
       else
         {
           pool->mem = mmap (0, pool->size,
                            (PROT_READ | PROT_WRITE), MAP_PRIVATE, fd, 0);
           close (fd);
         }
     }
 # endif
     if (pool->mem == (void *) -1)
       log_info ("can't mmap pool of %u bytes: %s - using malloc\n",
                 (unsigned) pool->size, strerror (errno));
     else
       {
         pool->is_mmapped = 1;
         pool->okay = 1;
       }
   }
 #endif /*HAVE_MMAP*/
 
   if (!pool->okay)
     {
       pool->mem = malloc (pool->size);
       if (!pool->mem)
 	log_fatal ("can't allocate memory pool of %u bytes\n",
 		   (unsigned) pool->size);
       else
 	pool->okay = 1;
     }
 
   /* Initialize first memory block.  */
   mb = (memblock_t *) pool->mem;
   mb->size = pool->size;
   mb->flags = 0;
 }
 
 void
 _gcry_secmem_set_flags (unsigned flags)
 {
   int was_susp;
 
   SECMEM_LOCK;
 
   was_susp = suspend_warning;
   no_warning = flags & GCRY_SECMEM_FLAG_NO_WARNING;
   suspend_warning = flags & GCRY_SECMEM_FLAG_SUSPEND_WARNING;
   no_mlock      = flags & GCRY_SECMEM_FLAG_NO_MLOCK;
   no_priv_drop = flags & GCRY_SECMEM_FLAG_NO_PRIV_DROP;
 
   /* and now issue the warning if it is not longer suspended */
   if (was_susp && !suspend_warning && show_warning)
     {
       show_warning = 0;
       print_warn ();
     }
 
   SECMEM_UNLOCK;
 }
 
 unsigned int
 _gcry_secmem_get_flags (void)
 {
   unsigned flags;
 
   SECMEM_LOCK;
 
   flags = no_warning ? GCRY_SECMEM_FLAG_NO_WARNING : 0;
   flags |= suspend_warning ? GCRY_SECMEM_FLAG_SUSPEND_WARNING : 0;
   flags |= not_locked ? GCRY_SECMEM_FLAG_NOT_LOCKED : 0;
   flags |= no_mlock ? GCRY_SECMEM_FLAG_NO_MLOCK : 0;
   flags |= no_priv_drop ? GCRY_SECMEM_FLAG_NO_PRIV_DROP : 0;
 
   SECMEM_UNLOCK;
 
   return flags;
 }
 
 
 /* This function initializes the main memory pool MAINPOOL.  Itis
  * expected to be called with the secmem lock held.  */
 static void
 _gcry_secmem_init_internal (size_t n)
 {
   pooldesc_t *pool;
 
   pool = &mainpool;
   if (!n)
     {
 #ifdef USE_CAPABILITIES
       /* drop all capabilities */
       if (!no_priv_drop)
         {
           cap_t cap;
 
           cap = cap_from_text ("all-eip");
           cap_set_proc (cap);
           cap_free (cap);
         }
 
 #elif !defined(HAVE_DOSISH_SYSTEM)
       uid_t uid;
 
       disable_secmem = 1;
       uid = getuid ();
       if (uid != geteuid ())
 	{
 	  if (setuid (uid) || getuid () != geteuid () || !setuid (0))
 	    log_fatal ("failed to drop setuid\n");
 	}
 #endif
     }
   else
     {
       if (n < MINIMUM_POOL_SIZE)
 	n = MINIMUM_POOL_SIZE;
       if (! pool->okay)
 	{
 	  init_pool (pool, n);
 	  lock_pool_pages (pool->mem, n);
 	}
       else
 	log_error ("Oops, secure memory pool already initialized\n");
     }
 }
 
 
 
 /* Initialize the secure memory system.  If running with the necessary
    privileges, the secure memory pool will be locked into the core in
    order to prevent page-outs of the data.  Furthermore allocated
    secure memory will be wiped out when released.  */
 void
 _gcry_secmem_init (size_t n)
 {
   SECMEM_LOCK;
 
   _gcry_secmem_init_internal (n);
 
   SECMEM_UNLOCK;
 }
 
 
 gcry_err_code_t
 _gcry_secmem_module_init ()
 {
   /* Not anymore needed.  */
   return 0;
 }
 
 
 static void *
 _gcry_secmem_malloc_internal (size_t size)
 {
   pooldesc_t *pool;
   memblock_t *mb;
 
   pool = &mainpool;
 
   if (!pool->okay)
     {
       /* Try to initialize the pool if the user forgot about it.  */
       _gcry_secmem_init_internal (STANDARD_POOL_SIZE);
       if (!pool->okay)
         {
           log_info (_("operation is not possible without "
                       "initialized secure memory\n"));
           gpg_err_set_errno (ENOMEM);
           return NULL;
         }
     }
   if (not_locked && fips_mode ())
     {
       log_info (_("secure memory pool is not locked while in FIPS mode\n"));
       gpg_err_set_errno (ENOMEM);
       return NULL;
     }
   if (show_warning && !suspend_warning)
     {
       show_warning = 0;
       print_warn ();
     }
 
   /* Blocks are always a multiple of 32. */
   size = ((size + 31) / 32) * 32;
 
   mb = mb_get_new (pool, (memblock_t *) pool->mem, size);
   if (mb)
     stats_update (size, 0);
 
   return mb ? &mb->aligned.c : NULL;
 }
 
 void *
 _gcry_secmem_malloc (size_t size)
 {
   void *p;
 
   SECMEM_LOCK;
   p = _gcry_secmem_malloc_internal (size);
   SECMEM_UNLOCK;
 
   return p;
 }
 
 static void
 _gcry_secmem_free_internal (void *a)
 {
   pooldesc_t *pool;
   memblock_t *mb;
   int size;
 
   pool = &mainpool;
 
   mb = ADDR_TO_BLOCK (a);
   size = mb->size;
 
   /* This does not make much sense: probably this memory is held in the
    * cache. We do it anyway: */
 #define MB_WIPE_OUT(byte) \
   wipememory2 (((char *) mb + BLOCK_HEAD_SIZE), (byte), size);
 
   MB_WIPE_OUT (0xff);
   MB_WIPE_OUT (0xaa);
   MB_WIPE_OUT (0x55);
   MB_WIPE_OUT (0x00);
 
   /* Update stats.  */
   stats_update (0, size);
 
   mb->flags &= ~MB_FLAG_ACTIVE;
 
 
   mb_merge (pool, mb);
 }
 
 /* Wipe out and release memory.  */
 void
 _gcry_secmem_free (void *a)
 {
   if (!a)
     return;
 
   SECMEM_LOCK;
   _gcry_secmem_free_internal (a);
   SECMEM_UNLOCK;
 }
 
 
 static void *
 _gcry_secmem_realloc_internal (void *p, size_t newsize)
 {
   memblock_t *mb;
   size_t size;
   void *a;
 
   mb = (memblock_t *) (void *) ((char *) p
 				- ((size_t) &((memblock_t *) 0)->aligned.c));
   size = mb->size;
   if (newsize < size)
     {
       /* It is easier to not shrink the memory.  */
       a = p;
     }
   else
     {
       a = _gcry_secmem_malloc_internal (newsize);
       if (a)
 	{
 	  memcpy (a, p, size);
 	  memset ((char *) a + size, 0, newsize - size);
 	  _gcry_secmem_free_internal (p);
 	}
     }
 
   return a;
 }
 
 
 /* Realloc memory.  */
 void *
 _gcry_secmem_realloc (void *p, size_t newsize)
 {
   void *a;
 
   SECMEM_LOCK;
   a = _gcry_secmem_realloc_internal (p, newsize);
   SECMEM_UNLOCK;
 
   return a;
 }
 
 
 /* Return true if P points into the secure memory area.  */
 int
 _gcry_private_is_secure (const void *p)
 {
   pooldesc_t *pool;
 
   pool = &mainpool;
   return pool->okay && ptr_into_pool_p (pool, p);
 }
 
 
 /****************
  * Warning:  This code might be called by an interrupt handler
  *	     and frankly, there should really be such a handler,
  *	     to make sure that the memory is wiped out.
  *	     We hope that the OS wipes out mlocked memory after
  *	     receiving a SIGKILL - it really should do so, otherwise
  *	     there is no chance to get the secure memory cleaned.
  */
 void
 _gcry_secmem_term ()
 {
   pooldesc_t *pool;
 
   pool = &mainpool;
   if (!pool->okay)
     return;
 
   wipememory2 (pool->mem, 0xff, pool->size);
   wipememory2 (pool->mem, 0xaa, pool->size);
   wipememory2 (pool->mem, 0x55, pool->size);
   wipememory2 (pool->mem, 0x00, pool->size);
 #if HAVE_MMAP
   if (pool->is_mmapped)
     munmap (pool->mem, pool->size);
 #endif
   pool->mem = NULL;
   pool->okay = 0;
   pool->size = 0;
   not_locked = 0;
 }
 
 
+/* Print stats of the secmem allocator.  With EXTENDED passwed as true
+ * a detiled listing is returned (used for testing).  */
 void
-_gcry_secmem_dump_stats ()
+_gcry_secmem_dump_stats (int extended)
 {
   pooldesc_t *pool;
-
-#if 1
-  SECMEM_LOCK;
-
-  pool = &mainpool;
-  if (pool->okay)
-    log_info ("secmem usage: %u/%lu bytes in %u blocks\n",
-	      cur_alloced, (unsigned long)pool->size, cur_blocks);
-  SECMEM_UNLOCK;
-#else
   memblock_t *mb;
   int i;
 
   SECMEM_LOCK;
 
   pool = &mainpool;
-  for (i = 0, mb = (memblock_t *) pool->mem;
-       ptr_into_pool_p (pool, mb);
-       mb = mb_get_next (pool, mb), i++)
-    log_info ("SECMEM: [%s] block: %i; size: %i\n",
-	      (mb->flags & MB_FLAG_ACTIVE) ? "used" : "free",
-	      i,
-	      mb->size);
+  if (!extended)
+    {
+      if (pool->okay)
+        log_info ("secmem usage: %u/%lu bytes in %u blocks\n",
+                  cur_alloced, (unsigned long)pool->size, cur_blocks);
+    }
+  else
+    {
+      for (i = 0, mb = (memblock_t *) pool->mem;
+           ptr_into_pool_p (pool, mb);
+           mb = mb_get_next (pool, mb), i++)
+        log_info ("SECMEM: pool %p %s block %i size %i\n",
+                  pool,
+                  (mb->flags & MB_FLAG_ACTIVE) ? "used" : "free",
+                  i,
+                  mb->size);
+      }
+
   SECMEM_UNLOCK;
-#endif
 }
diff --git a/src/secmem.h b/src/secmem.h
index 3577381c..764bfebc 100644
--- a/src/secmem.h
+++ b/src/secmem.h
@@ -1,41 +1,41 @@
 /* secmem.h -  internal definitions for secmem
  *	Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
  *
  * This file is part of Libgcrypt.
  *
  * Libgcrypt is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser general Public License as
  * published by the Free Software Foundation; either version 2.1 of
  * the License, or (at your option) any later version.
  *
  * Libgcrypt is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
 #ifndef G10_SECMEM_H
 #define G10_SECMEM_H 1
 
 void _gcry_secmem_init (size_t npool);
 void _gcry_secmem_term (void);
 void *_gcry_secmem_malloc (size_t size) _GCRY_GCC_ATTR_MALLOC;
 void *_gcry_secmem_realloc (void *a, size_t newsize);
 void _gcry_secmem_free (void *a);
-void _gcry_secmem_dump_stats (void);
+void _gcry_secmem_dump_stats (int extended);
 void _gcry_secmem_set_flags (unsigned flags);
 unsigned _gcry_secmem_get_flags(void);
 int _gcry_private_is_secure (const void *p);
 
 /* Flags for _gcry_secmem_{set,get}_flags.  */
 #define GCRY_SECMEM_FLAG_NO_WARNING      (1 << 0)
 #define GCRY_SECMEM_FLAG_SUSPEND_WARNING (1 << 1)
 #define GCRY_SECMEM_FLAG_NOT_LOCKED      (1 << 2)
 #define GCRY_SECMEM_FLAG_NO_MLOCK        (1 << 3)
 #define GCRY_SECMEM_FLAG_NO_PRIV_DROP    (1 << 4)
 
 #endif /* G10_SECMEM_H */
diff --git a/tests/Makefile.am b/tests/Makefile.am
index d462f306..374e72e7 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,65 +1,65 @@
 # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
 #
 # This file is part of Libgcrypt.
 #
 # Libgcrypt is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
 # published by the Free Software Foundation; either version 2.1 of
 # the License, or (at your option) any later version.
 #
 # Libgcrypt is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
 ## Process this file with automake to produce Makefile.in
 
 tests_bin = \
-        version mpitests t-sexp t-convert \
+        version t-secmem mpitests t-sexp t-convert \
 	t-mpi-bit t-mpi-point curves t-lock \
 	prime basic keygen pubkey hmac hashtest t-kdf keygrip \
 	fips186-dsa aeswrap pkcs1v2 random dsa-rfc6979 t-ed25519 t-cv25519
 
 tests_bin_last = benchmark bench-slope
 
 tests_sh =
 
 tests_sh_last = hashtest-256g
 
 TESTS = $(tests_bin) $(tests_sh) $(tests_bin_last) $(tests_sh_last)
 
 # Force sequential run of some tests.
 bench-slope.log:    benchmark.log
 hashtest-256g.log:  bench-slope.log
 
 
 TESTS_ENVIRONMENT = GCRYPT_IN_REGRESSION_TEST=1
 
 
 # Need to include ../src in addition to top_srcdir because gcrypt.h is
 # a built header.
 AM_CPPFLAGS = -I../src -I$(top_srcdir)/src
 AM_CFLAGS = $(GPG_ERROR_CFLAGS)
 AM_LDFLAGS = -no-install
 
 standard_ldadd = \
 	../src/libgcrypt.la $(DL_LIBS) \
         ../compat/libcompat.la
 
 EXTRA_PROGRAMS = testapi pkbench
 noinst_PROGRAMS = $(tests_bin) $(tests_bin_last) fipsdrv rsacvt genhashdata \
 		  gchash
 noinst_HEADERS = t-common.h
 
 EXTRA_DIST = README rsa-16k.key cavs_tests.sh cavs_driver.pl \
 	     pkcs1v2-oaep.h pkcs1v2-pss.h pkcs1v2-v15c.h pkcs1v2-v15s.h \
 	     t-ed25519.inp stopwatch.h hashtest-256g.in \
 	     sha3-224.h sha3-256.h sha3-384.h sha3-512.h
 
 LDADD = $(standard_ldadd) $(GPG_ERROR_LIBS)
 t_lock_LDADD = $(standard_ldadd) $(GPG_ERROR_MT_LIBS)
 t_lock_CFLAGS = $(GPG_ERROR_MT_CFLAGS)
diff --git a/tests/t-secmem.c b/tests/t-secmem.c
new file mode 100644
index 00000000..b464d02d
--- /dev/null
+++ b/tests/t-secmem.c
@@ -0,0 +1,141 @@
+/* t-secmem.c - Test the secmem memory allocator
+ * Copyright (C) 2016 g10 Code GmbH
+ *
+ * This file is part of Libgcrypt.
+ *
+ * Libgcrypt is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * Libgcrypt is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
+
+#define PGMNAME "t-secmem"
+
+#include "t-common.h"
+#include "../src/gcrypt-testapi.h"
+
+
+static void
+test_secmem (void)
+{
+  void *a[28];
+  void *b;
+  int i;
+
+  memset (a, 0, sizeof a);
+
+  /* Allocating 28*512=14k should work in the default 16k pool even
+   * with extrem alignment requirements.  */
+  for (i=0; i < DIM(a); i++)
+    a[i] = gcry_xmalloc_secure (512);
+
+  /* Allocating another 2k should fail for the default 16k pool.  */
+  b = gcry_malloc_secure (2048);
+  if (b)
+    fail ("allocation did not fail as expected\n");
+
+  for (i=0; i < DIM(a); i++)
+    xfree (a[i]);
+  xfree (b);
+}
+
+
+/* This function is called when we ran out of core and there is no way
+ * to return that error to the caller (xmalloc or mpi allocation).  */
+static int
+outofcore_handler (void *opaque, size_t req_n, unsigned int flags)
+{
+  static int been_here;  /* Used to protect against recursive calls. */
+
+  (void)opaque;
+
+  /* Protect against a second call.  */
+  if (been_here)
+    return 0; /* Let libgcrypt call its own fatal error handler.  */
+  been_here = 1;
+
+  info ("outofcore handler invoked");
+  gcry_control (PRIV_CTL_DUMP_SECMEM_STATS, 0 , 0);
+  fail ("out of core%s while allocating %lu bytes",
+       (flags & 1)?" in secure memory":"", (unsigned long)req_n);
+
+  die ("stopped");
+  /*NOTREACHED*/
+  return 0;
+}
+
+
+int
+main (int argc, char **argv)
+{
+  int last_argc = -1;
+
+  if (argc)
+    { argc--; argv++; }
+
+  while (argc && last_argc != argc )
+    {
+      last_argc = argc;
+      if (!strcmp (*argv, "--"))
+        {
+          argc--; argv++;
+          break;
+        }
+      else if (!strcmp (*argv, "--help"))
+        {
+          fputs ("usage: " PGMNAME " [options]\n"
+                 "Options:\n"
+                 "  --verbose       print timings etc.\n"
+                 "  --debug         flyswatter\n"
+                 , stdout);
+          exit (0);
+        }
+      else if (!strcmp (*argv, "--verbose"))
+        {
+          verbose++;
+          argc--; argv++;
+        }
+      else if (!strcmp (*argv, "--debug"))
+        {
+          verbose += 2;
+          debug++;
+          argc--; argv++;
+        }
+      else if (!strncmp (*argv, "--", 2))
+        die ("unknown option '%s'", *argv);
+    }
+
+  if (!gcry_check_version (GCRYPT_VERSION))
+    die ("version mismatch; pgm=%s, library=%s\n",
+         GCRYPT_VERSION, gcry_check_version (NULL));
+  if (debug)
+    gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1u , 0);
+  gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0);
+  gcry_control (GCRYCTL_INIT_SECMEM, 16384, 0);
+  gcry_set_outofcore_handler (outofcore_handler, NULL);
+  gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
+
+  test_secmem ();
+
+  if (verbose)
+    gcry_control (PRIV_CTL_DUMP_SECMEM_STATS, 0 , 0);
+  info ("All tests completed.  Errors: %d\n", errorcount);
+  return !!errorcount;
+}