2014-07-26 15:52:02 -07:00
|
|
|
|
2015-10-26 08:59:28 -07:00
|
|
|
#include <stdlib.h>
|
2014-07-26 15:52:02 -07:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <limits.h>
|
2020-06-04 01:40:25 -07:00
|
|
|
#ifdef HAVE_CATCHABLE_SEGV
|
|
|
|
# include <signal.h>
|
|
|
|
#endif
|
2022-11-13 15:49:38 -07:00
|
|
|
#ifndef _WIN32
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2014-07-26 15:52:02 -07:00
|
|
|
|
|
|
|
#define TEST_NAME "sodium_utils2"
|
|
|
|
#include "cmptest.h"
|
|
|
|
|
2014-10-16 14:08:43 -07:00
|
|
|
#ifdef __SANITIZE_ADDRESS__
|
2017-06-23 02:11:16 -07:00
|
|
|
# warning The sodium_utils2 test is expected to fail with address sanitizer
|
2014-10-16 14:08:43 -07:00
|
|
|
#endif
|
|
|
|
|
2017-12-16 05:05:49 -07:00
|
|
|
#undef sodium_malloc
|
|
|
|
#undef sodium_free
|
|
|
|
#undef sodium_allocarray
|
|
|
|
|
2017-02-23 03:24:48 -07:00
|
|
|
__attribute__((noreturn)) static void
|
|
|
|
segv_handler(int sig)
|
2014-07-26 15:52:02 -07:00
|
|
|
{
|
2016-03-06 06:00:18 -07:00
|
|
|
(void) sig;
|
|
|
|
|
2014-07-26 15:52:02 -07:00
|
|
|
printf("Intentional segfault / bus error caught\n");
|
|
|
|
printf("OK\n");
|
2019-04-08 11:47:33 -07:00
|
|
|
#ifdef SIG_DFL
|
2023-09-12 10:07:25 -07:00
|
|
|
# ifdef SIGPROT
|
|
|
|
signal(SIGPROT, SIG_DFL);
|
|
|
|
# endif
|
2019-04-08 11:47:33 -07:00
|
|
|
# ifdef SIGSEGV
|
2014-07-26 15:52:02 -07:00
|
|
|
signal(SIGSEGV, SIG_DFL);
|
2019-04-08 11:47:33 -07:00
|
|
|
# endif
|
|
|
|
# ifdef SIGBUS
|
2014-07-26 15:52:02 -07:00
|
|
|
signal(SIGBUS, SIG_DFL);
|
2019-04-08 11:47:33 -07:00
|
|
|
# endif
|
|
|
|
# ifdef SIGABRT
|
2014-07-26 15:52:02 -07:00
|
|
|
signal(SIGABRT, SIG_DFL);
|
2019-04-08 11:47:33 -07:00
|
|
|
# endif
|
2014-07-26 15:52:02 -07:00
|
|
|
#endif
|
2022-11-13 15:49:38 -07:00
|
|
|
_exit(0);
|
2014-07-26 15:52:02 -07:00
|
|
|
}
|
|
|
|
|
2017-02-23 03:24:48 -07:00
|
|
|
int
|
|
|
|
main(void)
|
2014-07-26 15:52:02 -07:00
|
|
|
{
|
2019-06-22 05:56:16 -07:00
|
|
|
void *buf;
|
|
|
|
size_t size;
|
|
|
|
unsigned int i;
|
|
|
|
|
2023-06-16 10:01:20 -07:00
|
|
|
#ifdef BENCHMARKS
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
|
2014-09-16 15:35:21 -07:00
|
|
|
if (sodium_malloc(SIZE_MAX - 1U) != NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2016-03-25 08:26:37 -07:00
|
|
|
if (sodium_malloc(0U) == NULL) {
|
2016-03-25 01:44:12 -07:00
|
|
|
return 1;
|
|
|
|
}
|
2014-07-26 15:52:02 -07:00
|
|
|
if (sodium_allocarray(SIZE_MAX / 2U + 1U, SIZE_MAX / 2U) != NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2015-03-23 13:47:44 -07:00
|
|
|
sodium_free(sodium_allocarray(0U, 0U));
|
|
|
|
sodium_free(sodium_allocarray(0U, 1U));
|
|
|
|
sodium_free(sodium_allocarray(1U, 0U));
|
|
|
|
|
2014-09-16 15:35:21 -07:00
|
|
|
buf = sodium_allocarray(1000U, 50U);
|
|
|
|
memset(buf, 0, 50000U);
|
|
|
|
sodium_free(buf);
|
|
|
|
|
2014-07-26 15:52:02 -07:00
|
|
|
sodium_free(sodium_malloc(0U));
|
|
|
|
sodium_free(NULL);
|
|
|
|
for (i = 0U; i < 10000U; i++) {
|
2016-03-25 02:50:52 -07:00
|
|
|
size = 1U + randombytes_uniform(100000U);
|
2017-02-23 03:24:48 -07:00
|
|
|
buf = sodium_malloc(size);
|
2014-11-25 17:19:20 -07:00
|
|
|
assert(buf != NULL);
|
2014-07-26 15:52:02 -07:00
|
|
|
memset(buf, i, size);
|
2014-12-07 15:52:44 -07:00
|
|
|
sodium_mprotect_noaccess(buf);
|
2014-07-26 15:52:02 -07:00
|
|
|
sodium_free(buf);
|
|
|
|
}
|
|
|
|
printf("OK\n");
|
2019-04-08 11:47:33 -07:00
|
|
|
#ifdef SIG_DFL
|
2023-09-12 10:07:25 -07:00
|
|
|
# ifdef SIGPROT
|
|
|
|
signal(SIGPROT, segv_handler);
|
|
|
|
# endif
|
2019-04-08 11:47:33 -07:00
|
|
|
# ifdef SIGSEGV
|
2014-07-26 15:52:02 -07:00
|
|
|
signal(SIGSEGV, segv_handler);
|
2019-04-08 11:47:33 -07:00
|
|
|
# endif
|
|
|
|
# ifdef SIGBUS
|
2014-07-26 15:52:02 -07:00
|
|
|
signal(SIGBUS, segv_handler);
|
2019-04-08 11:47:33 -07:00
|
|
|
# endif
|
|
|
|
# ifdef SIGABRT
|
2014-07-26 15:52:02 -07:00
|
|
|
signal(SIGABRT, segv_handler);
|
2019-04-08 11:47:33 -07:00
|
|
|
# endif
|
2014-07-26 15:52:02 -07:00
|
|
|
#endif
|
2016-03-25 02:50:52 -07:00
|
|
|
size = 1U + randombytes_uniform(100000U);
|
2017-02-23 03:24:48 -07:00
|
|
|
buf = sodium_malloc(size);
|
2014-11-25 17:19:20 -07:00
|
|
|
assert(buf != NULL);
|
2017-06-23 08:30:48 -07:00
|
|
|
|
|
|
|
/* old versions of asan emit a warning because they don't support mlock*() */
|
|
|
|
#ifndef __SANITIZE_ADDRESS__
|
2014-07-26 15:52:02 -07:00
|
|
|
sodium_mprotect_readonly(buf);
|
|
|
|
sodium_mprotect_readwrite(buf);
|
2017-06-23 08:30:48 -07:00
|
|
|
#endif
|
|
|
|
|
2017-06-23 02:11:16 -07:00
|
|
|
#if defined(HAVE_CATCHABLE_SEGV) && !defined(__EMSCRIPTEN__) && !defined(__SANITIZE_ADDRESS__)
|
2017-02-23 03:24:48 -07:00
|
|
|
sodium_memzero(((unsigned char *) buf) + size, 1U);
|
2014-07-26 15:52:02 -07:00
|
|
|
sodium_mprotect_noaccess(buf);
|
|
|
|
sodium_free(buf);
|
|
|
|
printf("Overflow not caught\n");
|
2017-06-23 08:30:48 -07:00
|
|
|
#else
|
|
|
|
segv_handler(0);
|
2014-11-24 18:48:51 -07:00
|
|
|
#endif
|
2014-07-26 15:52:02 -07:00
|
|
|
return 0;
|
|
|
|
}
|