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
|
2022-11-13 17:49:38 -05:00
|
|
|
#ifndef _WIN32
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2014-07-26 18:52:02 -04:00
|
|
|
|
|
|
|
#define TEST_NAME "sodium_utils2"
|
|
|
|
#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_utils2 test is expected to fail with address sanitizer
|
2014-10-16 17:08:43 -04:00
|
|
|
#endif
|
|
|
|
|
2017-12-16 07:05:49 -05:00
|
|
|
#undef sodium_malloc
|
|
|
|
#undef sodium_free
|
|
|
|
#undef sodium_allocarray
|
|
|
|
|
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
|
2022-11-13 17:49:38 -05:00
|
|
|
_exit(0);
|
2014-07-26 18:52:02 -04:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
size_t size;
|
2014-09-14 14:32:55 -04:00
|
|
|
unsigned int i;
|
2014-07-26 18:52:02 -04:00
|
|
|
|
2014-09-16 18:35:21 -04:00
|
|
|
if (sodium_malloc(SIZE_MAX - 1U) != NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2016-03-25 11:26:37 -04:00
|
|
|
if (sodium_malloc(0U) == NULL) {
|
2016-03-25 04:44:12 -04:00
|
|
|
return 1;
|
|
|
|
}
|
2014-07-26 18:52:02 -04:00
|
|
|
if (sodium_allocarray(SIZE_MAX / 2U + 1U, SIZE_MAX / 2U) != NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2015-03-23 16:47:44 -04:00
|
|
|
sodium_free(sodium_allocarray(0U, 0U));
|
|
|
|
sodium_free(sodium_allocarray(0U, 1U));
|
|
|
|
sodium_free(sodium_allocarray(1U, 0U));
|
|
|
|
|
2014-09-16 18:35:21 -04:00
|
|
|
buf = sodium_allocarray(1000U, 50U);
|
|
|
|
memset(buf, 0, 50000U);
|
|
|
|
sodium_free(buf);
|
|
|
|
|
2014-07-26 18:52:02 -04:00
|
|
|
sodium_free(sodium_malloc(0U));
|
|
|
|
sodium_free(NULL);
|
|
|
|
for (i = 0U; i < 10000U; i++) {
|
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);
|
2014-07-26 18:52:02 -04:00
|
|
|
memset(buf, i, size);
|
2014-12-07 17:52:44 -05:00
|
|
|
sodium_mprotect_noaccess(buf);
|
2014-07-26 18:52:02 -04:00
|
|
|
sodium_free(buf);
|
|
|
|
}
|
|
|
|
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, 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_readonly(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) + size, 1U);
|
2014-07-26 18:52:02 -04:00
|
|
|
sodium_mprotect_noaccess(buf);
|
|
|
|
sodium_free(buf);
|
|
|
|
printf("Overflow 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;
|
|
|
|
}
|