2011-05-09 16:17:09 +00:00
|
|
|
/*
|
|
|
|
* Error message information
|
|
|
|
*
|
2015-08-04 09:12:49 +00:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 12:21:07 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00: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 16:17:09 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-05-09 16:17:09 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00: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 16:17:09 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2011-05-09 16:17:09 +00:00
|
|
|
*/
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 10:39:06 +00:00
|
|
|
#else
|
2015-04-08 10:49:31 +00:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 10:39:06 +00:00
|
|
|
#endif
|
2011-05-09 16:17:09 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY)
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/error.h"
|
2015-02-13 14:32:17 +00:00
|
|
|
#include <string.h>
|
2014-07-09 08:16:18 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/platform.h"
|
2015-01-30 11:18:42 +00:00
|
|
|
#else
|
2015-04-08 10:49:31 +00:00
|
|
|
#define mbedtls_snprintf snprintf
|
2015-01-30 11:18:42 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_ERROR_C)
|
2013-06-24 11:02:12 +00:00
|
|
|
|
2015-02-08 14:49:54 +00:00
|
|
|
#include <stdio.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
|
|
|
|
2015-04-08 10:49:31 +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;
|
|
|
|
|
2013-10-11 16:58:55 +00:00
|
|
|
if( buflen == 0 )
|
|
|
|
return;
|
|
|
|
|
2011-05-09 16:17:09 +00:00
|
|
|
memset( buf, 0x00, buflen );
|
2013-10-11 16:58:55 +00:00
|
|
|
|
2011-05-09 16:17:09 +00:00
|
|
|
if( ret < 0 )
|
|
|
|
ret = -ret;
|
|
|
|
|
|
|
|
if( ret & 0xFF80 )
|
|
|
|
{
|
|
|
|
use_ret = ret & 0xFF80;
|
|
|
|
|
|
|
|
// High level error codes
|
|
|
|
//
|
2014-04-11 16:06:44 +00:00
|
|
|
// BEGIN generated code
|
2011-05-09 16:17:09 +00:00
|
|
|
HIGH_LEVEL_CODE_CHECKS
|
2014-04-11 16:06:44 +00:00
|
|
|
// END generated code
|
|
|
|
|
2011-05-09 16:17:09 +00:00
|
|
|
if( strlen( buf ) == 0 )
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", use_ret );
|
2011-05-09 16:17:09 +00: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 10:49:31 +00:00
|
|
|
mbedtls_snprintf( buf + len, buflen - len, " : " );
|
2011-05-09 16:17:09 +00:00
|
|
|
|
|
|
|
buf += len + 3;
|
|
|
|
buflen -= len + 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Low level error codes
|
|
|
|
//
|
2014-04-11 16:06:44 +00:00
|
|
|
// BEGIN generated code
|
2011-05-09 16:17:09 +00:00
|
|
|
LOW_LEVEL_CODE_CHECKS
|
2014-04-11 16:06:44 +00:00
|
|
|
// END generated code
|
|
|
|
|
2011-05-09 16:17:09 +00:00
|
|
|
if( strlen( buf ) != 0 )
|
|
|
|
return;
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", use_ret );
|
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
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_ERROR_STRERROR_DUMMY)
|
2013-03-20 13:42:21 +00:00
|
|
|
|
|
|
|
/*
|
2015-04-08 10:49:31 +00:00
|
|
|
* Provide an non-function in case MBEDTLS_ERROR_C is not defined
|
2013-03-20 13:42:21 +00:00
|
|
|
*/
|
2015-04-08 10:49:31 +00:00
|
|
|
void mbedtls_strerror( int ret, char *buf, size_t buflen )
|
2013-03-20 13:42:21 +00:00
|
|
|
{
|
|
|
|
((void) ret);
|
|
|
|
|
|
|
|
if( buflen > 0 )
|
|
|
|
buf[0] = '\0';
|
|
|
|
}
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#endif /* MBEDTLS_ERROR_STRERROR_DUMMY */
|
2013-06-29 16:24:32 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#endif /* MBEDTLS_ERROR_C */
|