2016-05-18 02:20:24 +08:00
|
|
|
/*
|
2021-05-06 20:03:23 +08:00
|
|
|
* Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2016-01-08 04:06:38 +08:00
|
|
|
*
|
2018-12-06 20:05:25 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:20:24 +08:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2016-01-08 04:06:38 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <openssl/bio.h>
|
|
|
|
#include <openssl/crypto.h>
|
|
|
|
|
2017-04-10 08:05:55 +08:00
|
|
|
#include "testutil.h"
|
|
|
|
|
2019-11-26 00:13:10 +08:00
|
|
|
/* __has_feature is a clang-ism, while __SANITIZE_ADDRESS__ is a gcc-ism */
|
|
|
|
#if defined(__has_feature)
|
|
|
|
# if __has_feature(address_sanitizer)
|
|
|
|
# define __SANITIZE_ADDRESS__ 1
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
/* If __SANITIZE_ADDRESS__ isn't defined, define it to be false */
|
2021-03-20 04:54:05 +08:00
|
|
|
/* Leak detection is not yet supported with MSVC on Windows, so */
|
|
|
|
/* set __SANITIZE_ADDRESS__ to false in this case as well. */
|
|
|
|
#if !defined(__SANITIZE_ADDRESS__) || defined(_MSC_VER)
|
|
|
|
# undef __SANITIZE_ADDRESS__
|
2019-11-26 00:13:10 +08:00
|
|
|
# define __SANITIZE_ADDRESS__ 0
|
|
|
|
#endif
|
|
|
|
|
2017-04-10 08:05:55 +08:00
|
|
|
/*
|
|
|
|
* We use a proper main function here instead of the custom main from the
|
2019-11-26 00:13:10 +08:00
|
|
|
* test framework to avoid CRYPTO_mem_leaks stuff.
|
2017-04-10 08:05:55 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
2016-01-08 04:06:38 +08:00
|
|
|
{
|
2019-11-26 00:13:10 +08:00
|
|
|
#if __SANITIZE_ADDRESS__
|
|
|
|
int exitcode = EXIT_SUCCESS;
|
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* When we don't sanitize, we set the exit code to what we would expect
|
|
|
|
* to get when we are sanitizing. This makes it easy for wrapper scripts
|
|
|
|
* to detect that we get the result we expect.
|
|
|
|
*/
|
|
|
|
int exitcode = EXIT_FAILURE;
|
|
|
|
#endif
|
2016-01-08 04:06:38 +08:00
|
|
|
char *lost;
|
|
|
|
|
|
|
|
lost = OPENSSL_malloc(3);
|
2017-04-10 08:05:55 +08:00
|
|
|
if (!TEST_ptr(lost))
|
|
|
|
return EXIT_FAILURE;
|
2016-01-08 04:06:38 +08:00
|
|
|
|
2019-11-26 00:13:10 +08:00
|
|
|
strcpy(lost, "ab");
|
|
|
|
|
2016-01-11 03:42:10 +08:00
|
|
|
if (argv[1] && strcmp(argv[1], "freeit") == 0) {
|
2016-01-08 04:06:38 +08:00
|
|
|
OPENSSL_free(lost);
|
2019-11-26 00:13:10 +08:00
|
|
|
exitcode = EXIT_SUCCESS;
|
2016-01-11 03:42:10 +08:00
|
|
|
}
|
2016-01-08 04:06:38 +08:00
|
|
|
|
2019-11-26 00:13:10 +08:00
|
|
|
lost = NULL;
|
|
|
|
return exitcode;
|
2016-01-08 04:06:38 +08:00
|
|
|
}
|