IAR fixes, SafeRTOS port, better LWIP support

This commit is contained in:
toddouska
2012-08-15 17:00:11 -07:00
parent 4c66c4c3b5
commit 05692e1d6a
6 changed files with 77 additions and 17 deletions

View File

@@ -64,16 +64,6 @@ enum {
#endif #endif
#ifndef min
static INLINE word32 min(word32 a, word32 b)
{
return a > b ? b : a;
}
#endif /* min */
#ifdef THREADX #ifdef THREADX
/* uses parital <time.h> structures */ /* uses parital <time.h> structures */
#define XTIME(tl) (0) #define XTIME(tl) (0)
@@ -1351,7 +1341,6 @@ static int GetName(DecodedCert* cert, int nameType)
int oidSz; int oidSz;
if (GetSet(cert->source, &cert->srcIdx, &dummy, cert->maxIdx) < 0) { if (GetSet(cert->source, &cert->srcIdx, &dummy, cert->maxIdx) < 0) {
(void)b; /* empty body warning w/o messages enabled */
CYASSL_MSG("Cert name lacks set header, trying sequence"); CYASSL_MSG("Cert name lacks set header, trying sequence");
} }
@@ -2958,6 +2947,17 @@ int RsaKeyToDer(RsaKey* key, byte* output, word32 inLen)
#ifdef CYASSL_CERT_GEN #ifdef CYASSL_CERT_GEN
#ifndef min
static INLINE word32 min(word32 a, word32 b)
{
return a > b ? b : a;
}
#endif /* min */
/* Initialize and Set Certficate defaults: /* Initialize and Set Certficate defaults:
version = 3 (0x2) version = 3 (0x2)
serial = 0 serial = 0

View File

@@ -57,6 +57,9 @@
/* Uncomment next line if building CyaSSL for a game console */ /* Uncomment next line if building CyaSSL for a game console */
/* #define CYASSL_GAME_BUILD */ /* #define CYASSL_GAME_BUILD */
/* Uncomment next line if building CyaSSL for LSR */
/* #define CYASSL_LSR */
#include <cyassl/ctaocrypt/visibility.h> #include <cyassl/ctaocrypt/visibility.h>
@@ -110,6 +113,22 @@
#endif #endif
#endif #endif
#ifdef CYASSL_LSR
#define NO_WRITEV
#define NO_SHA512
#define NO_DH
#define NO_DSA
#define NO_HC128
#define NO_DEV_RANDOM
#define NO_CYASSL_DIR
#define NO_RABBIT
#define CYASSL_LWIP
#define CYASSL_SAFERTOS
#ifndef SINGLE_THREADED
#include "SafeRTOS/semphr.h"
#endif
#endif
#ifdef MICRIUM #ifdef MICRIUM
#include "stdlib.h" #include "stdlib.h"

View File

@@ -69,7 +69,7 @@
#endif #endif
#elif defined(MICRIUM) #elif defined(MICRIUM)
/* do nothing, just don't pick Unix */ /* do nothing, just don't pick Unix */
#elif defined(FREERTOS) #elif defined(FREERTOS) || defined(CYASSL_SAFERTOS)
/* do nothing */ /* do nothing */
#else #else
#ifndef SINGLE_THREADED #ifndef SINGLE_THREADED
@@ -670,6 +670,11 @@ struct CYASSL_CIPHER {
/* FREERTOS comes first to enable use of FreeRTOS Windows simulator only */ /* FREERTOS comes first to enable use of FreeRTOS Windows simulator only */
#ifdef FREERTOS #ifdef FREERTOS
typedef xSemaphoreHandle CyaSSL_Mutex; typedef xSemaphoreHandle CyaSSL_Mutex;
#elif defined(CYASSL_SAFERTOS)
typedef struct CyaSSL_Mutex {
signed char mutexBuffer[portQUEUE_OVERHEAD_BYTES];
xSemaphoreHandle mutex;
} CyaSSL_Mutex;
#elif defined(USE_WINDOWS_API) #elif defined(USE_WINDOWS_API)
typedef CRITICAL_SECTION CyaSSL_Mutex; typedef CRITICAL_SECTION CyaSSL_Mutex;
#elif defined(CYASSL_PTHREADS) #elif defined(CYASSL_PTHREADS)

View File

@@ -449,6 +449,7 @@ void InitSuites(Suites* suites, ProtocolVersion pv, byte haveDH, byte havePSK,
(void)havePSK; (void)havePSK;
(void)haveNTRU; (void)haveNTRU;
(void)haveStaticECC; (void)haveStaticECC;
(void)haveRSAsig;
if (suites->setSuites) if (suites->setSuites)
return; /* trust user settings, don't override */ return; /* trust user settings, don't override */
@@ -6941,6 +6942,37 @@ int UnLockMutex(CyaSSL_Mutex* m)
return 0; return 0;
} }
#elif defined(CYASSL_SAFERTOS)
int InitMutex(CyaSSL_Mutex* m)
{
vSemaphoreCreateBinary(m->mutexBuffer, m->mutex);
if (m->mutex == NULL)
return BAD_MUTEX_ERROR;
return 0;
}
int FreeMutex(CyaSSL_Mutex* m)
{
(void)m;
return 0;
}
int LockMutex(CyaSSL_Mutex* m)
{
/* Assume an infinite block */
xSemaphoreTake(m->mutex, portMAX_DELAY);
return 0;
}
int UnLockMutex(CyaSSL_Mutex* m)
{
xSemaphoreGive(m->mutex);
return 0;
}
#elif defined(USE_WINDOWS_API) #elif defined(USE_WINDOWS_API)
int InitMutex(CyaSSL_Mutex* m) int InitMutex(CyaSSL_Mutex* m)

View File

@@ -43,9 +43,11 @@
#ifndef USE_WINDOWS_API #ifndef USE_WINDOWS_API
#ifdef CYASSL_LWIP #ifdef CYASSL_LWIP
/* lwIP needs to be configured to use sockets API in this mode */ /* lwIP needs to be configured to use sockets API in this mode */
/* LWIP_SOCKET 1 && LWIP_COMPAT_SOCKETS 1 in lwip/opt.h or in build */ /* LWIP_SOCKET 1 in lwip/opt.h or in build */
#define LWIP_PROVIDE_ERRNO 1 #include "lwip/sockets.h"
#include "sockets.h" #ifndef LWIP_PROVIDE_ERRNO
#define LWIP_PROVIDE_ERRNO 1
#endif
#else #else
#include <sys/types.h> #include <sys/types.h>
#include <errno.h> #include <errno.h>
@@ -103,6 +105,9 @@
int net_recv(int, void*, int, unsigned int); int net_recv(int, void*, int, unsigned int);
#define SEND_FUNCTION net_send #define SEND_FUNCTION net_send
#define RECV_FUNCTION net_recv #define RECV_FUNCTION net_recv
#elif defined(CYASSL_LWIP)
#define SEND_FUNCTION lwip_send
#define RECV_FUNCTION lwip_recv
#else #else
#define SEND_FUNCTION send #define SEND_FUNCTION send
#define RECV_FUNCTION recv #define RECV_FUNCTION recv

View File

@@ -1134,13 +1134,12 @@ int AddCA(CYASSL_CERT_MANAGER* cm, buffer der, int type, int verify)
#endif /* HAVE_ECC */ #endif /* HAVE_ECC */
} }
else if (type == CERT_TYPE) { else if (type == CERT_TYPE) {
int ret;
DecodedCert cert; DecodedCert cert;
CYASSL_MSG("Checking cert signature type"); CYASSL_MSG("Checking cert signature type");
InitDecodedCert(&cert, der.buffer, der.length, ctx->heap); InitDecodedCert(&cert, der.buffer, der.length, ctx->heap);
if ((ret = DecodeToKey(&cert, 0)) < 0) { if (DecodeToKey(&cert, 0) < 0) {
CYASSL_MSG("Decode to key failed"); CYASSL_MSG("Decode to key failed");
return SSL_BAD_FILE; return SSL_BAD_FILE;
} }