2014-06-20 20:00:00 +01:00
|
|
|
/* Copyright (c) 2014, Google Inc.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-01-31 01:08:37 +00:00
|
|
|
#include <string.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-09-12 00:11:15 +01:00
|
|
|
#include <openssl/crypto.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/mem.h>
|
|
|
|
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
static bool TestOverflow() {
|
|
|
|
for (unsigned i = 0; i < ERR_NUM_ERRORS*2; i++) {
|
2015-10-28 22:03:21 +00:00
|
|
|
ERR_put_error(1, 0 /* unused */, i+1, "test", 1);
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
for (unsigned i = 0; i < ERR_NUM_ERRORS - 1; i++) {
|
2015-01-06 16:49:25 +00:00
|
|
|
uint32_t err = ERR_get_error();
|
|
|
|
/* Errors are returned in order they were pushed, with the least recent ones
|
|
|
|
* removed, up to |ERR_NUM_ERRORS - 1| errors. So the errors returned are
|
|
|
|
* |ERR_NUM_ERRORS + 2| through |ERR_NUM_ERRORS * 2|, inclusive. */
|
2015-06-02 22:16:44 +01:00
|
|
|
if (err == 0 || ((unsigned)ERR_GET_REASON(err)) != i + ERR_NUM_ERRORS + 2) {
|
2014-06-20 20:00:00 +01:00
|
|
|
fprintf(stderr, "ERR_get_error failed at %u\n", i);
|
2015-03-26 05:46:52 +00:00
|
|
|
return false;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ERR_get_error() != 0) {
|
|
|
|
fprintf(stderr, "ERR_get_error more than the expected number of values.\n");
|
2015-03-26 05:46:52 +00:00
|
|
|
return false;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
return true;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
static bool TestPutError() {
|
2014-06-20 20:00:00 +01:00
|
|
|
if (ERR_get_error() != 0) {
|
|
|
|
fprintf(stderr, "ERR_get_error returned value before an error was added.\n");
|
2015-03-26 05:46:52 +00:00
|
|
|
return false;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-10-28 22:03:21 +00:00
|
|
|
ERR_put_error(1, 0 /* unused */, 2, "test", 4);
|
2014-06-20 20:00:00 +01:00
|
|
|
ERR_add_error_data(1, "testing");
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
int peeked_line, line, peeked_flags, flags;
|
|
|
|
const char *peeked_file, *file, *peeked_data, *data;
|
|
|
|
uint32_t peeked_packed_error =
|
|
|
|
ERR_peek_error_line_data(&peeked_file, &peeked_line, &peeked_data,
|
|
|
|
&peeked_flags);
|
|
|
|
uint32_t packed_error = ERR_get_error_line_data(&file, &line, &data, &flags);
|
2014-11-08 17:51:36 +00:00
|
|
|
|
|
|
|
if (peeked_packed_error != packed_error ||
|
|
|
|
peeked_file != file ||
|
|
|
|
peeked_data != data ||
|
|
|
|
peeked_flags != flags) {
|
|
|
|
fprintf(stderr, "Bad peeked error data returned.\n");
|
2015-03-26 05:46:52 +00:00
|
|
|
return false;
|
2014-11-08 17:51:36 +00:00
|
|
|
}
|
|
|
|
|
2015-10-28 22:03:21 +00:00
|
|
|
if (strcmp(file, "test") != 0 ||
|
2014-06-20 20:00:00 +01:00
|
|
|
line != 4 ||
|
|
|
|
(flags & ERR_FLAG_STRING) == 0 ||
|
|
|
|
ERR_GET_LIB(packed_error) != 1 ||
|
2015-06-29 04:36:21 +01:00
|
|
|
ERR_GET_REASON(packed_error) != 2 ||
|
2014-06-20 20:00:00 +01:00
|
|
|
strcmp(data, "testing") != 0) {
|
|
|
|
fprintf(stderr, "Bad error data returned.\n");
|
2015-03-26 05:46:52 +00:00
|
|
|
return false;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
return true;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
static bool TestClearError() {
|
2014-06-20 20:00:00 +01:00
|
|
|
if (ERR_get_error() != 0) {
|
|
|
|
fprintf(stderr, "ERR_get_error returned value before an error was added.\n");
|
2015-03-26 05:46:52 +00:00
|
|
|
return false;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-10-28 22:03:21 +00:00
|
|
|
ERR_put_error(1, 0 /* unused */, 2, "test", 4);
|
2014-06-20 20:00:00 +01:00
|
|
|
ERR_clear_error();
|
|
|
|
|
|
|
|
if (ERR_get_error() != 0) {
|
|
|
|
fprintf(stderr, "Error remained after clearing.\n");
|
2015-03-26 05:46:52 +00:00
|
|
|
return false;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
return true;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
static bool TestPrint() {
|
2015-10-28 22:03:21 +00:00
|
|
|
ERR_put_error(1, 0 /* unused */, 2, "test", 4);
|
2014-06-20 20:00:00 +01:00
|
|
|
ERR_add_error_data(1, "testing");
|
2015-03-26 05:46:52 +00:00
|
|
|
uint32_t packed_error = ERR_get_error();
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
char buf[256];
|
|
|
|
for (size_t i = 0; i <= sizeof(buf); i++) {
|
2014-06-20 20:00:00 +01:00
|
|
|
ERR_error_string_n(packed_error, buf, i);
|
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
return true;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
static bool TestRelease() {
|
2015-10-28 22:03:21 +00:00
|
|
|
ERR_put_error(1, 0 /* unused */, 2, "test", 4);
|
2014-08-06 00:54:47 +01:00
|
|
|
ERR_remove_thread_state(NULL);
|
2015-03-26 05:46:52 +00:00
|
|
|
return true;
|
2014-08-06 00:54:47 +01:00
|
|
|
}
|
|
|
|
|
2015-06-29 04:36:21 +01:00
|
|
|
static bool HasSuffix(const char *str, const char *suffix) {
|
|
|
|
size_t suffix_len = strlen(suffix);
|
|
|
|
size_t str_len = strlen(str);
|
|
|
|
if (str_len < suffix_len) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return strcmp(str + str_len - suffix_len, suffix) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool TestPutMacro() {
|
|
|
|
int expected_line = __LINE__ + 1;
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(USER, ERR_R_INTERNAL_ERROR);
|
2015-06-29 04:36:21 +01:00
|
|
|
|
|
|
|
int line;
|
|
|
|
const char *file;
|
|
|
|
uint32_t error = ERR_get_error_line(&file, &line);
|
|
|
|
|
2015-10-28 22:03:21 +00:00
|
|
|
if (!HasSuffix(file, "err_test.cc") ||
|
2015-06-29 04:36:21 +01:00
|
|
|
line != expected_line ||
|
|
|
|
ERR_GET_LIB(error) != ERR_LIB_USER ||
|
|
|
|
ERR_GET_REASON(error) != ERR_R_INTERNAL_ERROR) {
|
|
|
|
fprintf(stderr, "Bad error data returned.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
int main() {
|
2014-09-12 00:11:15 +01:00
|
|
|
CRYPTO_library_init();
|
|
|
|
|
2015-03-26 05:46:52 +00:00
|
|
|
if (!TestOverflow() ||
|
|
|
|
!TestPutError() ||
|
|
|
|
!TestClearError() ||
|
|
|
|
!TestPrint() ||
|
2015-06-29 04:36:21 +01:00
|
|
|
!TestRelease() ||
|
|
|
|
!TestPutMacro()) {
|
2014-06-20 20:00:00 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("PASS\n");
|
|
|
|
return 0;
|
|
|
|
}
|