2011-05-09 18:17:09 +02:00
|
|
|
/*
|
|
|
|
* Error message information
|
|
|
|
*
|
2015-08-04 11:12:49 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
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
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2011-05-09 18:17:09 +02:00
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2011-05-09 18:17:09 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/error.h"
|
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
|
|
|
|
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;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
// High level error codes
|
|
|
|
//
|
2014-04-11 18:06:44 +02:00
|
|
|
// BEGIN generated code
|
2011-05-09 18:17:09 +02:00
|
|
|
HIGH_LEVEL_CODE_CHECKS
|
2014-04-11 18:06:44 +02:00
|
|
|
// END generated code
|
|
|
|
|
2011-05-09 18:17:09 +02:00
|
|
|
if( strlen( buf ) == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", use_ret );
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Low level error codes
|
|
|
|
//
|
2014-04-11 18:06:44 +02:00
|
|
|
// BEGIN generated code
|
2011-05-09 18:17:09 +02:00
|
|
|
LOW_LEVEL_CODE_CHECKS
|
2014-04-11 18:06:44 +02:00
|
|
|
// END generated code
|
|
|
|
|
2011-05-09 18:17:09 +02:00
|
|
|
if( strlen( buf ) != 0 )
|
|
|
|
return;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", use_ret );
|
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 */
|