2011-05-09 18:17:09 +02:00
|
|
|
/*
|
|
|
|
* Error message information
|
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-05-09 18:17:09 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-05-09 18:17:09 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-05-09 18:17:09 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-05-09 18:17:09 +02:00
|
|
|
*/
|
|
|
|
|
2020-06-03 01:43:33 +02:00
|
|
|
#include "common.h"
|
2011-05-09 18:17:09 +02:00
|
|
|
|
2019-12-18 14:16:46 +01:00
|
|
|
#if defined(MBEDTLS_ERROR_STRERROR_DUMMY)
|
2015-02-13 15:32:17 +01:00
|
|
|
#include <string.h>
|
2014-07-09 10:16:18 +02:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2015-01-30 12:18:42 +01:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_snprintf snprintf
|
2016-05-17 01:03:14 +02:00
|
|
|
#define mbedtls_time_t time_t
|
2015-01-30 12:18:42 +01:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ERROR_C)
|
2013-06-24 13:02:12 +02:00
|
|
|
|
2015-02-08 15:49:54 +01:00
|
|
|
#include <stdio.h>
|
2011-05-09 18:17:09 +02:00
|
|
|
|
2015-02-13 15:32:17 +01:00
|
|
|
HEADER_INCLUDED
|
2011-11-10 14:03:42 +01:00
|
|
|
|
2020-04-09 10:44:52 +02:00
|
|
|
const char * mbedtls_high_level_strerr( int error_code )
|
|
|
|
{
|
2020-04-21 01:03:46 +02:00
|
|
|
int high_level_error_code;
|
2020-04-09 10:44:52 +02:00
|
|
|
|
2020-04-21 01:03:46 +02:00
|
|
|
if( error_code < 0 )
|
|
|
|
error_code = -error_code;
|
|
|
|
|
|
|
|
/* Extract the high-level part from the error code. */
|
|
|
|
high_level_error_code = error_code & 0xFF80;
|
|
|
|
|
|
|
|
switch( high_level_error_code )
|
2020-04-09 10:44:52 +02:00
|
|
|
{
|
2020-04-12 02:14:03 +02:00
|
|
|
/* Begin Auto-Generated Code. */
|
2020-04-09 20:39:04 +02:00
|
|
|
HIGH_LEVEL_CODE_CHECKS
|
2020-04-12 02:14:03 +02:00
|
|
|
/* End Auto-Generated Code. */
|
2020-04-09 20:39:04 +02:00
|
|
|
|
|
|
|
default:
|
2020-04-09 10:44:52 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-04-22 17:13:25 +02:00
|
|
|
return( NULL );
|
2020-04-09 10:44:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char * mbedtls_low_level_strerr( int error_code )
|
|
|
|
{
|
2020-04-21 01:03:46 +02:00
|
|
|
int low_level_error_code;
|
2020-04-09 10:44:52 +02:00
|
|
|
|
2020-04-21 01:03:46 +02:00
|
|
|
if( error_code < 0 )
|
|
|
|
error_code = -error_code;
|
|
|
|
|
|
|
|
/* Extract the low-level part from the error code. */
|
|
|
|
low_level_error_code = error_code & ~0xFF80;
|
|
|
|
|
|
|
|
switch( low_level_error_code )
|
2020-04-09 10:44:52 +02:00
|
|
|
{
|
2020-04-12 02:14:03 +02:00
|
|
|
/* Begin Auto-Generated Code. */
|
2020-04-09 20:39:04 +02:00
|
|
|
LOW_LEVEL_CODE_CHECKS
|
2020-04-12 02:14:03 +02:00
|
|
|
/* End Auto-Generated Code. */
|
2020-04-09 20:39:04 +02:00
|
|
|
|
|
|
|
default:
|
2020-04-09 10:44:52 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-04-22 17:13:25 +02:00
|
|
|
return( NULL );
|
2020-04-09 10:44:52 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_strerror( int ret, char *buf, size_t buflen )
|
2011-05-09 18:17:09 +02:00
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
int use_ret;
|
2020-04-09 10:44:52 +02:00
|
|
|
const char * high_level_error_description = NULL;
|
|
|
|
const char * low_level_error_description = NULL;
|
2011-05-09 18:17:09 +02:00
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
if( buflen == 0 )
|
|
|
|
return;
|
|
|
|
|
2011-05-09 18:17:09 +02:00
|
|
|
memset( buf, 0x00, buflen );
|
2013-10-11 18:58:55 +02:00
|
|
|
|
2011-05-09 18:17:09 +02:00
|
|
|
if( ret < 0 )
|
|
|
|
ret = -ret;
|
|
|
|
|
|
|
|
if( ret & 0xFF80 )
|
|
|
|
{
|
|
|
|
use_ret = ret & 0xFF80;
|
|
|
|
|
2020-04-09 10:44:52 +02:00
|
|
|
// Translate high level error code.
|
2020-04-21 01:03:46 +02:00
|
|
|
high_level_error_description = mbedtls_high_level_strerr( ret );
|
2014-04-11 18:06:44 +02:00
|
|
|
|
2020-04-09 10:44:52 +02:00
|
|
|
if( high_level_error_description == NULL )
|
2020-04-01 17:22:45 +02:00
|
|
|
mbedtls_snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret );
|
2020-04-09 10:44:52 +02:00
|
|
|
else
|
|
|
|
mbedtls_snprintf( buf, buflen, "%s", high_level_error_description );
|
|
|
|
|
2020-04-09 20:39:04 +02:00
|
|
|
#if defined(MBEDTLS_SSL_TLS_C)
|
2020-04-09 10:44:52 +02:00
|
|
|
// Early return in case of a fatal error - do not try to translate low
|
|
|
|
// level code.
|
|
|
|
if(use_ret == -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE))
|
|
|
|
return;
|
2020-04-09 20:39:04 +02:00
|
|
|
#endif /* MBEDTLS_SSL_TLS_C */
|
2011-05-09 18:17:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
use_ret = ret & ~0xFF80;
|
|
|
|
|
|
|
|
if( use_ret == 0 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// If high level code is present, make a concatenation between both
|
|
|
|
// error strings.
|
|
|
|
//
|
|
|
|
len = strlen( buf );
|
|
|
|
|
|
|
|
if( len > 0 )
|
|
|
|
{
|
|
|
|
if( buflen - len < 5 )
|
|
|
|
return;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_snprintf( buf + len, buflen - len, " : " );
|
2011-05-09 18:17:09 +02:00
|
|
|
|
|
|
|
buf += len + 3;
|
|
|
|
buflen -= len + 3;
|
|
|
|
}
|
|
|
|
|
2020-04-09 10:44:52 +02:00
|
|
|
// Translate low level error code.
|
2020-04-21 01:03:46 +02:00
|
|
|
low_level_error_description = mbedtls_low_level_strerr( ret );
|
2011-05-09 18:17:09 +02:00
|
|
|
|
2020-04-09 10:44:52 +02:00
|
|
|
if( low_level_error_description == NULL )
|
2020-04-01 17:22:45 +02:00
|
|
|
mbedtls_snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret );
|
2020-04-09 10:44:52 +02:00
|
|
|
else
|
|
|
|
mbedtls_snprintf( buf, buflen, "%s", low_level_error_description );
|
2011-05-09 18:17:09 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#else /* MBEDTLS_ERROR_C */
|
2013-03-20 14:42:21 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ERROR_STRERROR_DUMMY)
|
2013-03-20 14:42:21 +01:00
|
|
|
|
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Provide an non-function in case MBEDTLS_ERROR_C is not defined
|
2013-03-20 14:42:21 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_strerror( int ret, char *buf, size_t buflen )
|
2013-03-20 14:42:21 +01:00
|
|
|
{
|
|
|
|
((void) ret);
|
|
|
|
|
|
|
|
if( buflen > 0 )
|
|
|
|
buf[0] = '\0';
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ERROR_STRERROR_DUMMY */
|
2013-06-29 18:24:32 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ERROR_C */
|