2014-07-26 18:52:02 -04:00
|
|
|
|
2015-10-26 11:59:28 -04:00
|
|
|
#include <stdlib.h>
|
2014-07-26 18:52:02 -04:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <limits.h>
|
2020-06-04 04:40:25 -04:00
|
|
|
#ifdef HAVE_CATCHABLE_SEGV
|
|
|
|
# include <signal.h>
|
|
|
|
#endif
|
2014-07-26 18:52:02 -04:00
|
|
|
|
|
|
|
#define TEST_NAME "sodium_utils3"
|
|
|
|
#include "cmptest.h"
|
|
|
|
|
2014-10-16 17:08:43 -04:00
|
|
|
#ifdef __SANITIZE_ADDRESS__
|
2017-06-23 05:11:16 -04:00
|
|
|
# warning The sodium_utils3 test is expected to fail with address sanitizer
|
2014-10-16 17:08:43 -04:00
|
|
|
#endif
|
|
|
|
|
2017-02-23 05:24:48 -05:00
|
|
|
__attribute__((noreturn)) static void
|
|
|
|
segv_handler(int sig)
|
2014-07-26 18:52:02 -04:00
|
|
|
{
|
2016-03-06 08:00:18 -05:00
|
|
|
(void) sig;
|
|
|
|
|
2014-07-26 18:52:02 -04:00
|
|
|
printf("Intentional segfault / bus error caught\n");
|
|
|
|
printf("OK\n");
|
2019-05-30 10:04:55 -04:00
|
|
|
#ifdef SIG_DFL
|
|
|
|
# ifdef SIGSEGV
|
2014-07-26 18:52:02 -04:00
|
|
|
signal(SIGSEGV, SIG_DFL);
|
2019-05-30 10:04:55 -04:00
|
|
|
# endif
|
|
|
|
# ifdef SIGBUS
|
2014-07-26 18:52:02 -04:00
|
|
|
signal(SIGBUS, SIG_DFL);
|
2019-05-30 10:04:55 -04:00
|
|
|
# endif
|
|
|
|
# ifdef SIGABRT
|
2014-07-26 18:52:02 -04:00
|
|
|
signal(SIGABRT, SIG_DFL);
|
2019-05-30 10:04:55 -04:00
|
|
|
# endif
|
2014-07-26 18:52:02 -04:00
|
|
|
#endif
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2017-02-23 05:24:48 -05:00
|
|
|
int
|
|
|
|
main(void)
|
2014-07-26 18:52:02 -04:00
|
|
|
{
|
2017-02-23 05:24:48 -05:00
|
|
|
void * buf;
|
2014-09-14 14:32:55 -04:00
|
|
|
size_t size;
|
2014-07-26 18:52:02 -04:00
|
|
|
|
2019-05-30 10:04:55 -04:00
|
|
|
#ifdef SIG_DFL
|
|
|
|
# ifdef SIGSEGV
|
2014-07-26 18:52:02 -04:00
|
|
|
signal(SIGSEGV, segv_handler);
|
2019-05-30 10:04:55 -04:00
|
|
|
# endif
|
|
|
|
# ifdef SIGBUS
|
2014-07-26 18:52:02 -04:00
|
|
|
signal(SIGBUS, segv_handler);
|
2019-05-30 10:04:55 -04:00
|
|
|
# endif
|
|
|
|
# ifdef SIGABRT
|
2014-07-26 18:52:02 -04:00
|
|
|
signal(SIGABRT, segv_handler);
|
2019-05-30 10:04:55 -04:00
|
|
|
# endif
|
2014-07-26 18:52:02 -04:00
|
|
|
#endif
|
2016-03-25 05:50:52 -04:00
|
|
|
size = 1U + randombytes_uniform(100000U);
|
2017-02-23 05:24:48 -05:00
|
|
|
buf = sodium_malloc(size);
|
2014-11-25 19:19:20 -05:00
|
|
|
assert(buf != NULL);
|
2017-06-23 11:30:48 -04:00
|
|
|
|
|
|
|
/* old versions of asan emit a warning because they don't support mlock*() */
|
|
|
|
#ifndef __SANITIZE_ADDRESS__
|
2014-07-26 18:52:02 -04:00
|
|
|
sodium_mprotect_noaccess(buf);
|
|
|
|
sodium_mprotect_readwrite(buf);
|
2017-06-23 11:30:48 -04:00
|
|
|
#endif
|
|
|
|
|
2017-06-23 05:11:16 -04:00
|
|
|
#if defined(HAVE_CATCHABLE_SEGV) && !defined(__EMSCRIPTEN__) && !defined(__SANITIZE_ADDRESS__)
|
2017-02-23 05:24:48 -05:00
|
|
|
sodium_memzero(((unsigned char *) buf) - 8, 8U);
|
2014-07-26 18:52:02 -04:00
|
|
|
sodium_mprotect_readonly(buf);
|
|
|
|
sodium_free(buf);
|
|
|
|
printf("Underflow not caught\n");
|
2017-06-23 11:30:48 -04:00
|
|
|
#else
|
|
|
|
segv_handler(0);
|
2014-11-24 20:48:51 -05:00
|
|
|
#endif
|
2014-07-26 18:52:02 -04:00
|
|
|
return 0;
|
|
|
|
}
|