mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:45:42 +01:00
Merge remote-tracking branch 'public/pr/1198' into development
This commit is contained in:
commit
2c92949e0a
@ -56,10 +56,14 @@ Bugfix
|
|||||||
* Correct the documentation for `mbedtls_ssl_get_session()`.
|
* Correct the documentation for `mbedtls_ssl_get_session()`.
|
||||||
This API has deep copy of the session, and the peer
|
This API has deep copy of the session, and the peer
|
||||||
certificate is not lost. Fixes #926.
|
certificate is not lost. Fixes #926.
|
||||||
|
* Fix build using -std=c99. Fixed by Nick Wilson.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Change the shebang line in Perl scripts to look up perl in the PATH.
|
* Change the shebang line in Perl scripts to look up perl in the PATH.
|
||||||
Contributed by fbrosson.
|
Contributed by fbrosson.
|
||||||
|
* Allow overriding the time on Windows via the platform-time abstraction.
|
||||||
|
Fixed by Nick Wilson.
|
||||||
|
* Use gmtime_r/gmtime_s for thread-safety. Fixed by Nick Wilson.
|
||||||
|
|
||||||
= mbed TLS 2.11.0 branch released 2018-06-18
|
= mbed TLS 2.11.0 branch released 2018-06-18
|
||||||
|
|
||||||
|
@ -99,9 +99,6 @@ extern int (*mbedtls_mutex_unlock)( mbedtls_threading_mutex_t *mutex );
|
|||||||
#if defined(MBEDTLS_FS_IO)
|
#if defined(MBEDTLS_FS_IO)
|
||||||
extern mbedtls_threading_mutex_t mbedtls_threading_readdir_mutex;
|
extern mbedtls_threading_mutex_t mbedtls_threading_readdir_mutex;
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_HAVE_TIME_DATE)
|
|
||||||
extern mbedtls_threading_mutex_t mbedtls_threading_gmtime_mutex;
|
|
||||||
#endif
|
|
||||||
#endif /* MBEDTLS_THREADING_C */
|
#endif /* MBEDTLS_THREADING_C */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -19,6 +19,11 @@
|
|||||||
* This file is part of mbed TLS (https://tls.mbed.org)
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if defined(__linux__)
|
||||||
|
/* Ensure that syscall() is available even when compiling with -std=c99 */
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(MBEDTLS_CONFIG_FILE)
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
||||||
#include "mbedtls/config.h"
|
#include "mbedtls/config.h"
|
||||||
#else
|
#else
|
||||||
|
@ -19,6 +19,11 @@
|
|||||||
* This file is part of mbed TLS (https://tls.mbed.org)
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* Enable definition of getaddrinfo() even when compiling with -std=c99. Must
|
||||||
|
* be set before config.h, which pulls in glibc's features.h indirectly.
|
||||||
|
* Harmless on other platforms. */
|
||||||
|
#define _POSIX_C_SOURCE 200112L
|
||||||
|
|
||||||
#if !defined(MBEDTLS_CONFIG_FILE)
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
||||||
#include "mbedtls/config.h"
|
#include "mbedtls/config.h"
|
||||||
#else
|
#else
|
||||||
|
@ -114,9 +114,6 @@ void mbedtls_threading_set_alt( void (*mutex_init)( mbedtls_threading_mutex_t *
|
|||||||
#if defined(MBEDTLS_FS_IO)
|
#if defined(MBEDTLS_FS_IO)
|
||||||
mbedtls_mutex_init( &mbedtls_threading_readdir_mutex );
|
mbedtls_mutex_init( &mbedtls_threading_readdir_mutex );
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_HAVE_TIME_DATE)
|
|
||||||
mbedtls_mutex_init( &mbedtls_threading_gmtime_mutex );
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -127,9 +124,6 @@ void mbedtls_threading_free_alt( void )
|
|||||||
#if defined(MBEDTLS_FS_IO)
|
#if defined(MBEDTLS_FS_IO)
|
||||||
mbedtls_mutex_free( &mbedtls_threading_readdir_mutex );
|
mbedtls_mutex_free( &mbedtls_threading_readdir_mutex );
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_HAVE_TIME_DATE)
|
|
||||||
mbedtls_mutex_free( &mbedtls_threading_gmtime_mutex );
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif /* MBEDTLS_THREADING_ALT */
|
#endif /* MBEDTLS_THREADING_ALT */
|
||||||
|
|
||||||
@ -142,8 +136,5 @@ void mbedtls_threading_free_alt( void )
|
|||||||
#if defined(MBEDTLS_FS_IO)
|
#if defined(MBEDTLS_FS_IO)
|
||||||
mbedtls_threading_mutex_t mbedtls_threading_readdir_mutex MUTEX_INIT;
|
mbedtls_threading_mutex_t mbedtls_threading_readdir_mutex MUTEX_INIT;
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_HAVE_TIME_DATE)
|
|
||||||
mbedtls_threading_mutex_t mbedtls_threading_gmtime_mutex MUTEX_INIT;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* MBEDTLS_THREADING_C */
|
#endif /* MBEDTLS_THREADING_C */
|
||||||
|
@ -29,6 +29,10 @@
|
|||||||
* http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf
|
* http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* Ensure gmtime_r is available even with -std=c99; must be included before
|
||||||
|
* config.h, which pulls in glibc's features.h. Harmless on other platforms. */
|
||||||
|
#define _POSIX_C_SOURCE 200112L
|
||||||
|
|
||||||
#if !defined(MBEDTLS_CONFIG_FILE)
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
||||||
#include "mbedtls/config.h"
|
#include "mbedtls/config.h"
|
||||||
#else
|
#else
|
||||||
@ -59,14 +63,10 @@
|
|||||||
#define mbedtls_snprintf snprintf
|
#define mbedtls_snprintf snprintf
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_HAVE_TIME)
|
#if defined(MBEDTLS_HAVE_TIME)
|
||||||
#include "mbedtls/platform_time.h"
|
#include "mbedtls/platform_time.h"
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(MBEDTLS_HAVE_TIME_DATE)
|
||||||
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
|
|
||||||
#include <windows.h>
|
|
||||||
#else
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -894,36 +894,18 @@ int mbedtls_x509_key_size_helper( char *buf, size_t buf_size, const char *name )
|
|||||||
* Set the time structure to the current time.
|
* Set the time structure to the current time.
|
||||||
* Return 0 on success, non-zero on failure.
|
* Return 0 on success, non-zero on failure.
|
||||||
*/
|
*/
|
||||||
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
|
|
||||||
static int x509_get_current_time( mbedtls_x509_time *now )
|
static int x509_get_current_time( mbedtls_x509_time *now )
|
||||||
{
|
{
|
||||||
SYSTEMTIME st;
|
struct tm *lt, tm_buf;
|
||||||
|
|
||||||
GetSystemTime( &st );
|
|
||||||
|
|
||||||
now->year = st.wYear;
|
|
||||||
now->mon = st.wMonth;
|
|
||||||
now->day = st.wDay;
|
|
||||||
now->hour = st.wHour;
|
|
||||||
now->min = st.wMinute;
|
|
||||||
now->sec = st.wSecond;
|
|
||||||
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
static int x509_get_current_time( mbedtls_x509_time *now )
|
|
||||||
{
|
|
||||||
struct tm *lt;
|
|
||||||
mbedtls_time_t tt;
|
mbedtls_time_t tt;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
#if defined(MBEDTLS_THREADING_C)
|
|
||||||
if( mbedtls_mutex_lock( &mbedtls_threading_gmtime_mutex ) != 0 )
|
|
||||||
return( MBEDTLS_ERR_THREADING_MUTEX_ERROR );
|
|
||||||
#endif
|
|
||||||
|
|
||||||
tt = mbedtls_time( NULL );
|
tt = mbedtls_time( NULL );
|
||||||
lt = gmtime( &tt );
|
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
|
||||||
|
lt = gmtime_s( &tm_buf, &tt ) == 0 ? &tm_buf : NULL;
|
||||||
|
#else
|
||||||
|
lt = gmtime_r( &tt, &tm_buf );
|
||||||
|
#endif
|
||||||
|
|
||||||
if( lt == NULL )
|
if( lt == NULL )
|
||||||
ret = -1;
|
ret = -1;
|
||||||
@ -937,14 +919,8 @@ static int x509_get_current_time( mbedtls_x509_time *now )
|
|||||||
now->sec = lt->tm_sec;
|
now->sec = lt->tm_sec;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(MBEDTLS_THREADING_C)
|
|
||||||
if( mbedtls_mutex_unlock( &mbedtls_threading_gmtime_mutex ) != 0 )
|
|
||||||
return( MBEDTLS_ERR_THREADING_MUTEX_ERROR );
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return( ret );
|
return( ret );
|
||||||
}
|
}
|
||||||
#endif /* _WIN32 && !EFIX64 && !EFI32 */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return 0 if before <= after, 1 otherwise
|
* Return 0 if before <= after, 1 otherwise
|
||||||
|
@ -19,6 +19,11 @@
|
|||||||
* This file is part of mbed TLS (https://tls.mbed.org)
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* Enable definition of fileno() even when compiling with -std=c99. Must be
|
||||||
|
* set before config.h, which pulls in glibc's features.h indirectly.
|
||||||
|
* Harmless on other platforms. */
|
||||||
|
#define _POSIX_C_SOURCE 1
|
||||||
|
|
||||||
#if !defined(MBEDTLS_CONFIG_FILE)
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
||||||
#include "mbedtls/config.h"
|
#include "mbedtls/config.h"
|
||||||
#else
|
#else
|
||||||
|
@ -20,6 +20,11 @@
|
|||||||
* This file is part of mbed TLS (https://tls.mbed.org)
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* Enable definition of fileno() even when compiling with -std=c99. Must be
|
||||||
|
* set before config.h, which pulls in glibc's features.h indirectly.
|
||||||
|
* Harmless on other platforms. */
|
||||||
|
#define _POSIX_C_SOURCE 1
|
||||||
|
|
||||||
#if !defined(MBEDTLS_CONFIG_FILE)
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
||||||
#include "mbedtls/config.h"
|
#include "mbedtls/config.h"
|
||||||
#else
|
#else
|
||||||
|
@ -19,6 +19,11 @@
|
|||||||
* This file is part of mbed TLS (https://tls.mbed.org)
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* Enable definition of gethostname() even when compiling with -std=c99. Must
|
||||||
|
* be set before config.h, which pulls in glibc's features.h indirectly.
|
||||||
|
* Harmless on other platforms. */
|
||||||
|
#define _POSIX_C_SOURCE 200112L
|
||||||
|
|
||||||
#if !defined(MBEDTLS_CONFIG_FILE)
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
||||||
#include "mbedtls/config.h"
|
#include "mbedtls/config.h"
|
||||||
#else
|
#else
|
||||||
|
@ -15,6 +15,11 @@ if(NOT PERL_FOUND)
|
|||||||
message(FATAL_ERROR "Cannot build test suites without Perl")
|
message(FATAL_ERROR "Cannot build test suites without Perl")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Enable definition of various functions used throughout the testsuite
|
||||||
|
# (gethostname, strdup, fileno...) even when compiling with -std=c99. Harmless
|
||||||
|
# on non-POSIX platforms.
|
||||||
|
add_definitions("-D_POSIX_C_SOURCE=200809L")
|
||||||
|
|
||||||
function(add_test_suite suite_name)
|
function(add_test_suite suite_name)
|
||||||
if(ARGV1)
|
if(ARGV1)
|
||||||
set(data_name ${ARGV1})
|
set(data_name ${ARGV1})
|
||||||
|
@ -12,6 +12,11 @@ LOCAL_LDFLAGS = -L../library \
|
|||||||
-lmbedx509$(SHARED_SUFFIX) \
|
-lmbedx509$(SHARED_SUFFIX) \
|
||||||
-lmbedcrypto$(SHARED_SUFFIX)
|
-lmbedcrypto$(SHARED_SUFFIX)
|
||||||
|
|
||||||
|
# Enable definition of various functions used throughout the testsuite
|
||||||
|
# (gethostname, strdup, fileno...) even when compiling with -std=c99. Harmless
|
||||||
|
# on non-POSIX platforms.
|
||||||
|
LOCAL_CFLAGS += -D_POSIX_C_SOURCE=200809L
|
||||||
|
|
||||||
ifndef SHARED
|
ifndef SHARED
|
||||||
DEP=../library/libmbedcrypto.a ../library/libmbedx509.a ../library/libmbedtls.a
|
DEP=../library/libmbedcrypto.a ../library/libmbedx509.a ../library/libmbedtls.a
|
||||||
else
|
else
|
||||||
|
@ -36,6 +36,7 @@ typedef UINT32 uint32_t;
|
|||||||
|
|
||||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
|
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <strings.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
|
Loading…
Reference in New Issue
Block a user