2011-05-09 16:17:09 +00:00
|
|
|
/*
|
|
|
|
* Error message information
|
|
|
|
*
|
2020-08-07 11:07:28 +00:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2011-05-09 16:17:09 +00:00
|
|
|
*/
|
|
|
|
|
2020-06-02 23:43:33 +00:00
|
|
|
#include "common.h"
|
2011-05-09 16:17:09 +00:00
|
|
|
|
2020-11-09 14:14:10 +00:00
|
|
|
#include "mbedtls/error.h"
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY)
|
|
|
|
|
2020-11-09 14:14:10 +00:00
|
|
|
#if defined(MBEDTLS_ERROR_C)
|
2014-07-09 08:16:18 +00:00
|
|
|
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/platform.h"
|
2015-01-30 11:18:42 +00:00
|
|
|
|
2015-02-08 14:49:54 +00:00
|
|
|
#include <stdio.h>
|
2020-11-09 14:14:10 +00:00
|
|
|
#include <string.h>
|
2011-05-09 16:17:09 +00:00
|
|
|
|
2015-02-13 14:32:17 +00:00
|
|
|
HEADER_INCLUDED
|
2011-11-10 13:03:42 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
const char *mbedtls_high_level_strerr(int error_code)
|
2020-04-09 08:44:52 +00:00
|
|
|
{
|
2020-04-20 23:03:46 +00:00
|
|
|
int high_level_error_code;
|
2020-04-09 08:44:52 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (error_code < 0) {
|
2020-04-20 23:03:46 +00:00
|
|
|
error_code = -error_code;
|
2023-01-11 13:50:10 +00:00
|
|
|
}
|
2020-04-20 23:03:46 +00:00
|
|
|
|
|
|
|
/* Extract the high-level part from the error code. */
|
|
|
|
high_level_error_code = error_code & 0xFF80;
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
switch (high_level_error_code) {
|
|
|
|
/* Begin Auto-Generated Code. */
|
|
|
|
HIGH_LEVEL_CODE_CHECKS
|
2020-04-12 00:14:03 +00:00
|
|
|
/* End Auto-Generated Code. */
|
2020-04-09 18:39:04 +00:00
|
|
|
|
|
|
|
default:
|
2020-04-09 08:44:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
return NULL;
|
2020-04-09 08:44:52 +00:00
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
const char *mbedtls_low_level_strerr(int error_code)
|
2020-04-09 08:44:52 +00:00
|
|
|
{
|
2020-04-20 23:03:46 +00:00
|
|
|
int low_level_error_code;
|
2020-04-09 08:44:52 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (error_code < 0) {
|
2020-04-20 23:03:46 +00:00
|
|
|
error_code = -error_code;
|
2023-01-11 13:50:10 +00:00
|
|
|
}
|
2020-04-20 23:03:46 +00:00
|
|
|
|
|
|
|
/* Extract the low-level part from the error code. */
|
|
|
|
low_level_error_code = error_code & ~0xFF80;
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
switch (low_level_error_code) {
|
|
|
|
/* Begin Auto-Generated Code. */
|
|
|
|
LOW_LEVEL_CODE_CHECKS
|
2020-04-12 00:14:03 +00:00
|
|
|
/* End Auto-Generated Code. */
|
2020-04-09 18:39:04 +00:00
|
|
|
|
|
|
|
default:
|
2020-04-09 08:44:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
return NULL;
|
2020-04-09 08:44:52 +00:00
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
void mbedtls_strerror(int ret, char *buf, size_t buflen)
|
2011-05-09 16:17:09 +00:00
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
int use_ret;
|
2023-01-11 13:50:10 +00:00
|
|
|
const char *high_level_error_description = NULL;
|
|
|
|
const char *low_level_error_description = NULL;
|
2011-05-09 16:17:09 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (buflen == 0) {
|
2013-10-11 16:58:55 +00:00
|
|
|
return;
|
2023-01-11 13:50:10 +00:00
|
|
|
}
|
2013-10-11 16:58:55 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
memset(buf, 0x00, buflen);
|
2013-10-11 16:58:55 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (ret < 0) {
|
2011-05-09 16:17:09 +00:00
|
|
|
ret = -ret;
|
2023-01-11 13:50:10 +00:00
|
|
|
}
|
2011-05-09 16:17:09 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (ret & 0xFF80) {
|
2011-05-09 16:17:09 +00:00
|
|
|
use_ret = ret & 0xFF80;
|
|
|
|
|
2020-04-09 08:44:52 +00:00
|
|
|
// Translate high level error code.
|
2023-01-11 13:50:10 +00:00
|
|
|
high_level_error_description = mbedtls_high_level_strerr(ret);
|
2014-04-11 16:06:44 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (high_level_error_description == NULL) {
|
|
|
|
mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret);
|
|
|
|
} else {
|
|
|
|
mbedtls_snprintf(buf, buflen, "%s", high_level_error_description);
|
|
|
|
}
|
2020-04-09 08:44:52 +00:00
|
|
|
|
2020-04-09 18:39:04 +00:00
|
|
|
#if defined(MBEDTLS_SSL_TLS_C)
|
2020-04-09 08:44:52 +00:00
|
|
|
// Early return in case of a fatal error - do not try to translate low
|
|
|
|
// level code.
|
2023-01-11 13:50:10 +00:00
|
|
|
if (use_ret == -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE)) {
|
2020-04-09 08:44:52 +00:00
|
|
|
return;
|
2023-01-11 13:50:10 +00:00
|
|
|
}
|
2020-04-09 18:39:04 +00:00
|
|
|
#endif /* MBEDTLS_SSL_TLS_C */
|
2011-05-09 16:17:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
use_ret = ret & ~0xFF80;
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (use_ret == 0) {
|
2011-05-09 16:17:09 +00:00
|
|
|
return;
|
2023-01-11 13:50:10 +00:00
|
|
|
}
|
2011-05-09 16:17:09 +00:00
|
|
|
|
|
|
|
// If high level code is present, make a concatenation between both
|
|
|
|
// error strings.
|
|
|
|
//
|
2023-01-11 13:50:10 +00:00
|
|
|
len = strlen(buf);
|
2011-05-09 16:17:09 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (len > 0) {
|
|
|
|
if (buflen - len < 5) {
|
2011-05-09 16:17:09 +00:00
|
|
|
return;
|
2023-01-11 13:50:10 +00:00
|
|
|
}
|
2011-05-09 16:17:09 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
mbedtls_snprintf(buf + len, buflen - len, " : ");
|
2011-05-09 16:17:09 +00:00
|
|
|
|
|
|
|
buf += len + 3;
|
|
|
|
buflen -= len + 3;
|
|
|
|
}
|
|
|
|
|
2020-04-09 08:44:52 +00:00
|
|
|
// Translate low level error code.
|
2023-01-11 13:50:10 +00:00
|
|
|
low_level_error_description = mbedtls_low_level_strerr(ret);
|
2011-05-09 16:17:09 +00:00
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (low_level_error_description == NULL) {
|
|
|
|
mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret);
|
|
|
|
} else {
|
|
|
|
mbedtls_snprintf(buf, buflen, "%s", low_level_error_description);
|
|
|
|
}
|
2011-05-09 16:17:09 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#else /* MBEDTLS_ERROR_C */
|
2013-03-20 13:42:21 +00:00
|
|
|
|
|
|
|
/*
|
2022-07-28 04:50:56 +00:00
|
|
|
* Provide a dummy implementation when MBEDTLS_ERROR_C is not defined
|
2013-03-20 13:42:21 +00:00
|
|
|
*/
|
2023-01-11 13:50:10 +00:00
|
|
|
void mbedtls_strerror(int ret, char *buf, size_t buflen)
|
2013-03-20 13:42:21 +00:00
|
|
|
{
|
|
|
|
((void) ret);
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
if (buflen > 0) {
|
2013-03-20 13:42:21 +00:00
|
|
|
buf[0] = '\0';
|
2023-01-11 13:50:10 +00:00
|
|
|
}
|
2013-03-20 13:42:21 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#endif /* MBEDTLS_ERROR_C */
|
2020-11-09 14:14:10 +00:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_ERROR_C || MBEDTLS_ERROR_STRERROR_DUMMY */
|