summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/FreeRTOS_DNS.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/FreeRTOS_DNS.c')
-rw-r--r--FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/FreeRTOS_DNS.c1185
1 files changed, 725 insertions, 460 deletions
diff --git a/FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/FreeRTOS_DNS.c b/FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/FreeRTOS_DNS.c
index ad0c3a4a0..c63ba537a 100644
--- a/FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/FreeRTOS_DNS.c
+++ b/FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/FreeRTOS_DNS.c
@@ -25,12 +25,11 @@
/* Standard includes. */
#include <stdint.h>
+#include <stdio.h>
/* FreeRTOS includes. */
#include "FreeRTOS.h"
#include "task.h"
-#include "queue.h"
-#include "list.h"
#include "semphr.h"
/* FreeRTOS+TCP includes. */
@@ -39,66 +38,84 @@
#include "FreeRTOS_IP_Private.h"
#include "FreeRTOS_UDP_IP.h"
#include "FreeRTOS_DNS.h"
+#include "FreeRTOS_DHCP.h"
#include "NetworkBufferManagement.h"
#include "NetworkInterface.h"
-#include "IPTraceMacroDefaults.h"
+
+#include "FreeRTOSIPConfigDefaults.h"
/* Exclude the entire file if DNS is not enabled. */
#if( ipconfigUSE_DNS != 0 )
#if( ipconfigBYTE_ORDER == pdFREERTOS_LITTLE_ENDIAN )
- #define dnsDNS_PORT 0x3500u
- #define dnsONE_QUESTION 0x0100u
- #define dnsOUTGOING_FLAGS 0x0001u /* Standard query. */
- #define dnsRX_FLAGS_MASK 0x0f80u /* The bits of interest in the flags field of incoming DNS messages. */
- #define dnsEXPECTED_RX_FLAGS 0x0080u /* Should be a response, without any errors. */
+ #define dnsDNS_PORT 0x3500U
+ #define dnsONE_QUESTION 0x0100U
+ #define dnsOUTGOING_FLAGS 0x0001U /* Standard query. */
+ #define dnsRX_FLAGS_MASK 0x0f80U /* The bits of interest in the flags field of incoming DNS messages. */
+ #define dnsEXPECTED_RX_FLAGS 0x0080U /* Should be a response, without any errors. */
#else
- #define dnsDNS_PORT 0x0035u
- #define dnsONE_QUESTION 0x0001u
- #define dnsOUTGOING_FLAGS 0x0100u /* Standard query. */
- #define dnsRX_FLAGS_MASK 0x800fu /* The bits of interest in the flags field of incoming DNS messages. */
- #define dnsEXPECTED_RX_FLAGS 0x8000u /* Should be a response, without any errors. */
+ #define dnsDNS_PORT 0x0035U
+ #define dnsONE_QUESTION 0x0001U
+ #define dnsOUTGOING_FLAGS 0x0100U /* Standard query. */
+ #define dnsRX_FLAGS_MASK 0x800fU /* The bits of interest in the flags field of incoming DNS messages. */
+ #define dnsEXPECTED_RX_FLAGS 0x8000U /* Should be a response, without any errors. */
#endif /* ipconfigBYTE_ORDER */
/* The maximum number of times a DNS request should be sent out if a response
is not received, before giving up. */
#ifndef ipconfigDNS_REQUEST_ATTEMPTS
- #define ipconfigDNS_REQUEST_ATTEMPTS 5
+ #define ipconfigDNS_REQUEST_ATTEMPTS 5
#endif
/* If the top two bits in the first character of a name field are set then the
name field is an offset to the string, rather than the string itself. */
-#define dnsNAME_IS_OFFSET ( ( uint8_t ) 0xc0 )
+#define dnsNAME_IS_OFFSET ( ( uint8_t ) 0xc0 )
/* NBNS flags. */
-#define dnsNBNS_FLAGS_RESPONSE 0x8000u
-#define dnsNBNS_FLAGS_OPCODE_MASK 0x7800u
-#define dnsNBNS_FLAGS_OPCODE_QUERY 0x0000u
-#define dnsNBNS_FLAGS_OPCODE_REGISTRATION 0x2800u
+#if( ipconfigUSE_NBNS == 1 )
+ #define dnsNBNS_FLAGS_RESPONSE 0x8000U
+ #define dnsNBNS_FLAGS_OPCODE_MASK 0x7800U
+ #define dnsNBNS_FLAGS_OPCODE_QUERY 0x0000U
+#endif /* ( ipconfigUSE_NBNS == 1 ) */
/* Host types. */
-#define dnsTYPE_A_HOST 0x01u
-#define dnsCLASS_IN 0x01u
+#define dnsTYPE_A_HOST 0x01U
+#define dnsCLASS_IN 0x01U
-/* LLMNR constants. */
-#define dnsLLMNR_TTL_VALUE 300000uL
-#define dnsLLMNR_FLAGS_IS_REPONSE 0x8000u
+#ifndef _lint
+ /* LLMNR constants. */
+ #define dnsLLMNR_TTL_VALUE 300000UL
+ #define dnsLLMNR_FLAGS_IS_REPONSE 0x8000U
+#endif /* _lint */
/* NBNS constants. */
-#define dnsNBNS_TTL_VALUE 3600uL /* 1 hour valid */
-#define dnsNBNS_TYPE_NET_BIOS 0x0020u
-#define dnsNBNS_CLASS_IN 0x01u
-#define dnsNBNS_NAME_FLAGS 0x6000u
-#define dnsNBNS_ENCODED_NAME_LENGTH 32
-
-/* If the queried NBNS name matches with the device's name,
-the query will be responded to with these flags: */
-#define dnsNBNS_QUERY_RESPONSE_FLAGS ( 0x8500u )
+#if( ipconfigUSE_NBNS != 0 )
+ #define dnsNBNS_TTL_VALUE 3600UL /* 1 hour valid */
+ #define dnsNBNS_TYPE_NET_BIOS 0x0020U
+ #define dnsNBNS_CLASS_IN 0x01U
+ #define dnsNBNS_NAME_FLAGS 0x6000U
+ #define dnsNBNS_ENCODED_NAME_LENGTH 32
+
+ /* If the queried NBNS name matches with the device's name,
+ the query will be responded to with these flags: */
+ #define dnsNBNS_QUERY_RESPONSE_FLAGS ( 0x8500U )
+#endif /* ( ipconfigUSE_NBNS != 0 ) */
/* Flag DNS parsing errors in situations where an IPv4 address is the return
type. */
-#define dnsPARSE_ERROR 0uL
+#define dnsPARSE_ERROR 0UL
+
+#ifndef _lint
+ #if( ipconfigUSE_DNS_CACHE == 0 )
+ #if( ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY != 1 )
+ #error When DNS caching is disabled, please make ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY equal to 1.
+ #endif
+ #endif
+#endif
+
+/* Define the ASCII value of '.' (Period/Full-stop). */
+#define ASCII_BASELINE_DOT 46U
/*
* Create a socket and bind it to the standard DNS port number. Return the
@@ -109,26 +126,39 @@ static Socket_t prvCreateDNSSocket( void );
/*
* Create the DNS message in the zero copy buffer passed in the first parameter.
*/
-static size_t prvCreateDNSMessage( uint8_t *pucUDPPayloadBuffer,
+_static size_t prvCreateDNSMessage( uint8_t *pucUDPPayloadBuffer,
const char *pcHostName,
TickType_t uxIdentifier );
/*
* Simple routine that jumps over the NAME field of a resource record.
+ * It returns the number of bytes read.
*/
-static uint8_t * prvSkipNameField( uint8_t *pucByte,
- size_t uxSourceLen );
+_static size_t prvSkipNameField( const uint8_t *pucByte,
+ size_t uxLength );
/*
* Process a response packet from a DNS server.
* The parameter 'xExpected' indicates whether the identifier in the reply
* was expected, and thus if the DNS cache may be updated with the reply.
*/
-static uint32_t prvParseDNSReply( uint8_t *pucUDPPayloadBuffer,
+_static uint32_t prvParseDNSReply( uint8_t *pucUDPPayloadBuffer,
size_t uxBufferLength,
BaseType_t xExpected );
/*
+ * Check if hostname is already known. If not, call prvGetHostByName() to send a DNS request.
+ */
+#if( ipconfigDNS_USE_CALLBACKS == 1 )
+ static uint32_t prvPrepareLookup( const char *pcHostName,
+ FOnDNSEvent pCallback,
+ void *pvSearchID,
+ TickType_t uxTimeout );
+#else
+ static uint32_t prvPrepareLookup( const char *pcHostName );
+#endif
+
+/*
* Prepare and send a message to a DNS server. 'uxReadTimeOut_ticks' will be passed as
* zero, in case the user has supplied a call-back function.
*/
@@ -136,6 +166,20 @@ static uint32_t prvGetHostByName( const char *pcHostName,
TickType_t uxIdentifier,
TickType_t uxReadTimeOut_ticks );
+#if( ipconfigDNS_USE_CALLBACKS != 0 )
+ static void vDNSSetCallBack( const char *pcHostName,
+ void *pvSearchID,
+ FOnDNSEvent pCallbackFunction,
+ TickType_t uxTimeout,
+ TickType_t uxIdentifier );
+#endif /* ipconfigDNS_USE_CALLBACKS */
+
+#if( ipconfigDNS_USE_CALLBACKS != 0 )
+ static BaseType_t xDNSDoCallback( TickType_t uxIdentifier,
+ const char *pcName,
+ uint32_t ulIPAddress );
+#endif /* ipconfigDNS_USE_CALLBACKS */
+
/*
* The NBNS and the LLMNR protocol share this reply function.
*/
@@ -145,38 +189,43 @@ static uint32_t prvGetHostByName( const char *pcHostName,
#endif
#if( ipconfigUSE_NBNS == 1 )
- static portINLINE void prvTreatNBNS( uint8_t *pucUDPPayloadBuffer,
+ static portINLINE void prvTreatNBNS( uint8_t *pucPayload,
size_t uxBufferLength,
uint32_t ulIPAddress );
#endif /* ipconfigUSE_NBNS */
#if( ipconfigUSE_DNS_CACHE == 1 ) || ( ipconfigDNS_USE_CALLBACKS == 1 )
- static uint8_t * prvReadNameField( uint8_t *pucByte,
- size_t uxSourceLen,
- char *pcName,
- size_t uxLen );
-#endif /* ipconfigUSE_DNS_CACHE || ipconfigDNS_USE_CALLBACKS */
+ _static size_t prvReadNameField( const uint8_t *pucByte,
+ size_t uxRemainingBytes,
+ char *pcName,
+ size_t uxDestLen );
+#endif /* ipconfigUSE_DNS_CACHE || ipconfigDNS_USE_CALLBACKS */
#if( ipconfigUSE_DNS_CACHE == 1 )
- static void prvProcessDNSCache( const char *pcName,
- uint32_t *pulIP,
- uint32_t ulTTL,
- BaseType_t xLookUp );
+ static BaseType_t prvProcessDNSCache( const char *pcName,
+ uint32_t *pulIP,
+ uint32_t ulTTL,
+ BaseType_t xLookUp );
typedef struct xDNS_CACHE_TABLE_ROW
{
- uint32_t ulIPAddress; /* The IP address of an ARP cache entry. */
+ uint32_t ulIPAddresses[ ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY ]; /* The IP address(es) of an ARP cache entry. */
char pcName[ ipconfigDNS_CACHE_NAME_LENGTH ]; /* The name of the host */
uint32_t ulTTL; /* Time-to-Live (in seconds) from the DNS server. */
uint32_t ulTimeWhenAddedInSeconds;
+#if( ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY > 1 )
+ uint8_t ucNumIPAddresses;
+ uint8_t ucCurrentIPAddress;
+#endif
} DNSCacheRow_t;
static DNSCacheRow_t xDNSCache[ ipconfigDNS_CACHE_ENTRIES ];
- void FreeRTOS_dnsclear()
+ /* Utility function: Clear DNS cache by calling this function. */
+ void FreeRTOS_dnsclear( void )
{
- memset( xDNSCache, 0x0, sizeof( xDNSCache ) );
+ ( void ) memset( xDNSCache, 0x0, sizeof( xDNSCache ) );
}
#endif /* ipconfigUSE_DNS_CACHE == 1 */
@@ -186,6 +235,8 @@ static uint32_t prvGetHostByName( const char *pcHostName,
/*-----------------------------------------------------------*/
+/* Below #include just tells the compiler to pack the structure.
+ * It is included in to make the code more readable */
#include "pack_struct_start.h"
struct xDNSMessage
{
@@ -282,9 +333,9 @@ typedef struct xDNSAnswerRecord DNSAnswerRecord_t;
#if( ipconfigUSE_DNS_CACHE == 1 )
uint32_t FreeRTOS_dnslookup( const char *pcHostName )
{
- uint32_t ulIPAddress = 0uL;
+ uint32_t ulIPAddress = 0UL;
- prvProcessDNSCache( pcHostName, &ulIPAddress, 0, pdTRUE );
+ ( void ) prvProcessDNSCache( pcHostName, &ulIPAddress, 0, pdTRUE );
return ulIPAddress;
}
#endif /* ipconfigUSE_DNS_CACHE == 1 */
@@ -307,12 +358,11 @@ typedef struct xDNSAnswerRecord DNSAnswerRecord_t;
/* Define FreeRTOS_gethostbyname() as a normal blocking call. */
uint32_t FreeRTOS_gethostbyname( const char *pcHostName )
{
- return FreeRTOS_gethostbyname_a( pcHostName, ( FOnDNSEvent ) NULL, ( void * ) NULL, 0 );
+ return FreeRTOS_gethostbyname_a( pcHostName, NULL, ( void * ) NULL, 0 );
}
/*-----------------------------------------------------------*/
/* Initialise the list of call-back structures. */
- void vDNSInitialise( void );
void vDNSInitialise( void )
{
vListInitialise( &xCallbackList );
@@ -324,39 +374,40 @@ typedef struct xDNSAnswerRecord DNSAnswerRecord_t;
As soon as the list hase become empty, the DNS timer will be stopped
In case pvSearchID is supplied, the user wants to cancel a DNS request
*/
- void vDNSCheckCallBack( void *pvSearchID );
void vDNSCheckCallBack( void *pvSearchID )
{
- const ListItem_t *pxIterator;
- const MiniListItem_t * xEnd = ( const MiniListItem_t * ) listGET_END_MARKER( &xCallbackList );
+ const ListItem_t * pxIterator;
+ const ListItem_t * xEnd = ipPOINTER_CAST( const ListItem_t *, listGET_END_MARKER( &xCallbackList ) );
vTaskSuspendAll();
{
for( pxIterator = ( const ListItem_t * ) listGET_NEXT( xEnd );
- pxIterator != ( const ListItem_t * ) xEnd;
+ pxIterator != xEnd;
)
{
- DNSCallback_t *pxCallback = ( DNSCallback_t * ) listGET_LIST_ITEM_OWNER( pxIterator );
-
+ DNSCallback_t *pxCallback = ipPOINTER_CAST( DNSCallback_t *, listGET_LIST_ITEM_OWNER( pxIterator ) );
/* Move to the next item because we might remove this item */
pxIterator = ( const ListItem_t * ) listGET_NEXT( pxIterator );
-
if( ( pvSearchID != NULL ) && ( pvSearchID == pxCallback->pvSearchID ) )
{
- uxListRemove( &pxCallback->xListItem );
+ ( void ) uxListRemove( &( pxCallback->xListItem ) );
vPortFree( pxCallback );
}
else if( xTaskCheckForTimeOut( &pxCallback->uxTimeoutState, &pxCallback->uxRemaningTime ) != pdFALSE )
{
pxCallback->pCallbackFunction( pxCallback->pcName, pxCallback->pvSearchID, 0 );
- uxListRemove( &pxCallback->xListItem );
- vPortFree( ( void * ) pxCallback );
+ ( void ) uxListRemove( &( pxCallback->xListItem ) );
+ vPortFree( pxCallback );
+ }
+ else
+ {
+ /* This call-back is still waiting for a reply or a time-out. */
}
}
}
- xTaskResumeAll();
+ ( void ) xTaskResumeAll();
- if( listLIST_IS_EMPTY( &xCallbackList ) )
+ if( listLIST_IS_EMPTY( &xCallbackList ) != pdFALSE )
{
vIPSetDnsTimerEnableState( pdFALSE );
}
@@ -376,39 +427,34 @@ typedef struct xDNSAnswerRecord DNSAnswerRecord_t;
void *pvSearchID,
FOnDNSEvent pCallbackFunction,
TickType_t uxTimeout,
- TickType_t uxIdentifier );
- static void vDNSSetCallBack( const char *pcHostName,
- void *pvSearchID,
- FOnDNSEvent pCallbackFunction,
- TickType_t uxTimeout,
TickType_t uxIdentifier )
{
size_t lLength = strlen( pcHostName );
- DNSCallback_t *pxCallback = ( DNSCallback_t * ) pvPortMalloc( sizeof( *pxCallback ) + lLength );
+ DNSCallback_t *pxCallback = ipPOINTER_CAST( DNSCallback_t *, pvPortMalloc( sizeof( *pxCallback ) + lLength ) );
/* Translate from ms to number of clock ticks. */
uxTimeout /= portTICK_PERIOD_MS;
if( pxCallback != NULL )
{
- if( listLIST_IS_EMPTY( &xCallbackList ) )
+ if( listLIST_IS_EMPTY( &xCallbackList ) != pdFALSE )
{
/* This is the first one, start the DNS timer to check for timeouts */
vIPReloadDNSTimer( FreeRTOS_min_uint32( 1000U, uxTimeout ) );
}
- strcpy( pxCallback->pcName, pcHostName );
+ ( void ) strcpy( pxCallback->pcName, pcHostName );
pxCallback->pCallbackFunction = pCallbackFunction;
pxCallback->pvSearchID = pvSearchID;
pxCallback->uxRemaningTime = uxTimeout;
vTaskSetTimeOutState( &pxCallback->uxTimeoutState );
- listSET_LIST_ITEM_OWNER( &( pxCallback->xListItem ), ( void * ) pxCallback );
+ listSET_LIST_ITEM_OWNER( &( pxCallback->xListItem ), ipPOINTER_CAST( void *, pxCallback ) );
listSET_LIST_ITEM_VALUE( &( pxCallback->xListItem ), uxIdentifier );
vTaskSuspendAll();
{
vListInsertEnd( &xCallbackList, &pxCallback->xListItem );
}
- xTaskResumeAll();
+ ( void ) xTaskResumeAll();
}
}
/*-----------------------------------------------------------*/
@@ -417,14 +463,11 @@ typedef struct xDNSAnswerRecord DNSAnswerRecord_t;
call the handler. Returns pdTRUE if uxIdentifier was recognised. */
static BaseType_t xDNSDoCallback( TickType_t uxIdentifier,
const char *pcName,
- uint32_t ulIPAddress );
- static BaseType_t xDNSDoCallback( TickType_t uxIdentifier,
- const char *pcName,
uint32_t ulIPAddress )
{
BaseType_t xResult = pdFALSE;
- const ListItem_t *pxIterator;
- const MiniListItem_t * xEnd = ( const MiniListItem_t * ) listGET_END_MARKER( &xCallbackList );
+ const ListItem_t * pxIterator;
+ const ListItem_t * xEnd = ipPOINTER_CAST( const ListItem_t *, listGET_END_MARKER( &xCallbackList ) );
vTaskSuspendAll();
{
@@ -432,16 +475,15 @@ typedef struct xDNSAnswerRecord DNSAnswerRecord_t;
pxIterator != ( const ListItem_t * ) xEnd;
pxIterator = ( const ListItem_t * ) listGET_NEXT( pxIterator ) )
{
- /* The cast will take away the 'configLIST_VOLATILE' */
- if( uxIdentifier == ( TickType_t ) listGET_LIST_ITEM_VALUE( pxIterator ) )
+ if( listGET_LIST_ITEM_VALUE( pxIterator ) == uxIdentifier )
{
- DNSCallback_t *pxCallback = ( DNSCallback_t * ) listGET_LIST_ITEM_OWNER( pxIterator );
+ DNSCallback_t *pxCallback = ipPOINTER_CAST( DNSCallback_t *, listGET_LIST_ITEM_OWNER( pxIterator ) );
pxCallback->pCallbackFunction( pcName, pxCallback->pvSearchID, ulIPAddress );
- uxListRemove( &pxCallback->xListItem );
+ ( void ) uxListRemove( &pxCallback->xListItem );
vPortFree( pxCallback );
- if( listLIST_IS_EMPTY( &xCallbackList ) )
+ if( listLIST_IS_EMPTY( &xCallbackList ) != pdFALSE )
{
/* The list of outstanding requests is empty. No need for periodic polling. */
vIPSetDnsTimerEnableState( pdFALSE );
@@ -452,7 +494,7 @@ typedef struct xDNSAnswerRecord DNSAnswerRecord_t;
}
}
}
- xTaskResumeAll();
+ ( void ) xTaskResumeAll();
return xResult;
}
@@ -461,19 +503,61 @@ typedef struct xDNSAnswerRecord DNSAnswerRecord_t;
#if( ipconfigDNS_USE_CALLBACKS == 0 )
uint32_t FreeRTOS_gethostbyname( const char *pcHostName )
+ {
+ return prvPrepareLookup( pcHostName );
+ }
#else
uint32_t FreeRTOS_gethostbyname_a( const char *pcHostName,
FOnDNSEvent pCallback,
void *pvSearchID,
TickType_t uxTimeout )
+ {
+ return prvPrepareLookup( pcHostName, pCallback, pvSearchID, uxTimeout );
+ }
+#endif
+
+#if( ipconfigDNS_USE_CALLBACKS == 1 )
+ static uint32_t prvPrepareLookup( const char *pcHostName,
+ FOnDNSEvent pCallback,
+ void *pvSearchID,
+ TickType_t uxTimeout )
+#else
+ static uint32_t prvPrepareLookup( const char *pcHostName )
#endif
{
-uint32_t ulIPAddress = 0uL;
+uint32_t ulIPAddress = 0UL;
TickType_t uxReadTimeOut_ticks = ipconfigDNS_RECEIVE_BLOCK_TIME_TICKS;
-TickType_t uxIdentifier = 0u;
+/* Generate a unique identifier for this query. Keep it in a local variable
+ as gethostbyname() may be called from different threads */
BaseType_t xHasRandom = pdFALSE;
+TickType_t uxIdentifier = 0U;
+#if( ipconfigUSE_DNS_CACHE != 0 )
+ BaseType_t xLengthOk = pdFALSE;
+#endif
+
+ #if( ipconfigUSE_DNS_CACHE != 0 )
+ {
+ if( pcHostName != NULL )
+ {
+ size_t xLength = strlen( pcHostName ) + 1U;
+ if( xLength <= ipconfigDNS_CACHE_NAME_LENGTH )
+ {
+ /* The name is not too long. */
+ xLengthOk = pdTRUE;
+ }
+ else
+ {
+ FreeRTOS_printf( ( "prvPrepareLookup: name is too long ( %lu > %lu )\n",
+ ( unsigned long ) xLength,
+ ( unsigned long ) ipconfigDNS_CACHE_NAME_LENGTH ) );
+ }
+ }
+ }
+ if( ( pcHostName != NULL ) && ( xLengthOk != pdFALSE ) )
+ #else
if( pcHostName != NULL )
+ #endif /* ( ipconfigUSE_DNS_CACHE != 0 ) */
{
/* If the supplied hostname is IP address, convert it to uint32_t
and return. */
@@ -487,11 +571,11 @@ BaseType_t xHasRandom = pdFALSE;
request. */
#if( ipconfigUSE_DNS_CACHE == 1 )
{
- if( ulIPAddress == 0uL )
+ if( ulIPAddress == 0UL )
{
ulIPAddress = FreeRTOS_dnslookup( pcHostName );
- if( ulIPAddress != 0 )
+ if( ulIPAddress != 0UL )
{
FreeRTOS_debug_printf( ( "FreeRTOS_gethostbyname: found '%s' in cache: %lxip\n", pcHostName, ulIPAddress ) );
}
@@ -504,26 +588,25 @@ BaseType_t xHasRandom = pdFALSE;
#endif /* ipconfigUSE_DNS_CACHE == 1 */
/* Generate a unique identifier. */
- if( ulIPAddress == 0uL )
+ if( ulIPAddress == 0UL )
{
uint32_t ulNumber;
xHasRandom = xApplicationGetRandomNumber( &( ulNumber ) );
/* DNS identifiers are 16-bit. */
- uxIdentifier = ( TickType_t ) ( ulNumber & 0xffffu );
- /* ipconfigRAND32() may not return a non-zero value. */
+ uxIdentifier = ( TickType_t ) ( ulNumber & 0xffffU );
}
#if( ipconfigDNS_USE_CALLBACKS == 1 )
{
if( pCallback != NULL )
{
- if( ulIPAddress == 0uL )
+ if( ulIPAddress == 0UL )
{
/* The user has provided a callback function, so do not block on recvfrom() */
if( xHasRandom != pdFALSE )
{
- uxReadTimeOut_ticks = 0u;
+ uxReadTimeOut_ticks = 0U;
vDNSSetCallBack( pcHostName, pvSearchID, pCallback, uxTimeout, uxIdentifier );
}
}
@@ -536,7 +619,7 @@ BaseType_t xHasRandom = pdFALSE;
}
#endif /* if ( ipconfigDNS_USE_CALLBACKS == 1 ) */
- if( ( ulIPAddress == 0uL ) && ( xHasRandom != pdFALSE ) )
+ if( ( ulIPAddress == 0UL ) && ( xHasRandom != pdFALSE ) )
{
ulIPAddress = prvGetHostByName( pcHostName, uxIdentifier, uxReadTimeOut_ticks );
}
@@ -551,8 +634,7 @@ static uint32_t prvGetHostByName( const char *pcHostName,
{
struct freertos_sockaddr xAddress;
Socket_t xDNSSocket;
-uint32_t ulIPAddress = 0uL;
-uint8_t *pucUDPPayloadBuffer;
+uint32_t ulIPAddress = 0UL;
uint32_t ulAddressLength = sizeof( struct freertos_sockaddr );
BaseType_t xAttempt;
int32_t lBytes;
@@ -569,7 +651,7 @@ TickType_t uxWriteTimeOut_ticks = ipconfigDNS_SEND_BLOCK_TIME_TICKS;
{
const char *pucPtr;
- for( pucPtr = pcHostName; *pucPtr; pucPtr++ )
+ for( pucPtr = pcHostName; *pucPtr != ( char ) 0; pucPtr++ )
{
if( *pucPtr == '.' )
{
@@ -582,21 +664,35 @@ TickType_t uxWriteTimeOut_ticks = ipconfigDNS_SEND_BLOCK_TIME_TICKS;
/* Two is added at the end for the count of characters in the first
subdomain part and the string end byte. */
- uxExpectedPayloadLength = sizeof( DNSMessage_t ) + strlen( pcHostName ) + sizeof( uint16_t ) + sizeof( uint16_t ) + 2u;
+ uxExpectedPayloadLength = sizeof( DNSMessage_t ) + strlen( pcHostName ) + sizeof( uint16_t ) + sizeof( uint16_t ) + 2U;
xDNSSocket = prvCreateDNSSocket();
if( xDNSSocket != NULL )
{
- FreeRTOS_setsockopt( xDNSSocket, 0, FREERTOS_SO_SNDTIMEO, ( void * ) &uxWriteTimeOut_ticks, sizeof( TickType_t ) );
- FreeRTOS_setsockopt( xDNSSocket, 0, FREERTOS_SO_RCVTIMEO, ( void * ) &uxReadTimeOut_ticks, sizeof( TickType_t ) );
+ /* Ideally we should check for the return value. But since we are passing
+ correct parameters, and xDNSSocket is != NULL, the return value is
+ going to be '0' i.e. success. Thus, return value is discarded */
+ ( void ) FreeRTOS_setsockopt( xDNSSocket, 0, FREERTOS_SO_SNDTIMEO, &( uxWriteTimeOut_ticks ), sizeof( TickType_t ) );
+ ( void ) FreeRTOS_setsockopt( xDNSSocket, 0, FREERTOS_SO_RCVTIMEO, &( uxReadTimeOut_ticks ), sizeof( TickType_t ) );
for( xAttempt = 0; xAttempt < ipconfigDNS_REQUEST_ATTEMPTS; xAttempt++ )
{
+ size_t uxHeaderBytes;
+ NetworkBufferDescriptor_t *pxNetworkBuffer;
+ uint8_t *pucUDPPayloadBuffer = NULL, *pucReceiveBuffer;
+
/* Get a buffer. This uses a maximum delay, but the delay will be
capped to ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS so the return value
still needs to be tested. */
- pucUDPPayloadBuffer = ( uint8_t * ) FreeRTOS_GetUDPPayloadBuffer( uxExpectedPayloadLength, portMAX_DELAY );
+
+ uxHeaderBytes = ipSIZE_OF_ETH_HEADER + ipSIZE_OF_IPv4_HEADER + ipSIZE_OF_UDP_HEADER;
+
+ pxNetworkBuffer = pxGetNetworkBufferWithDescriptor( uxHeaderBytes + uxExpectedPayloadLength, 0UL );
+ if( pxNetworkBuffer != NULL )
+ {
+ pucUDPPayloadBuffer = &( pxNetworkBuffer->pucEthernetBuffer[ uxHeaderBytes ] );
+ }
if( pucUDPPayloadBuffer != NULL )
{
@@ -613,9 +709,10 @@ TickType_t uxWriteTimeOut_ticks = ipconfigDNS_SEND_BLOCK_TIME_TICKS;
if( bHasDot == pdFALSE )
{
/* Use LLMNR addressing. */
- ( ( DNSMessage_t * ) pucUDPPayloadBuffer )->usFlags = 0;
+ ( ipPOINTER_CAST( DNSMessage_t *, pucUDPPayloadBuffer ) )->usFlags = 0;
xAddress.sin_addr = ipLLMNR_IP_ADDR; /* Is in network byte order. */
- xAddress.sin_port = FreeRTOS_ntohs( ipLLMNR_PORT );
+ xAddress.sin_port = ipLLMNR_PORT;
+ xAddress.sin_port = FreeRTOS_ntohs( xAddress.sin_port );
}
else
#endif
@@ -625,17 +722,17 @@ TickType_t uxWriteTimeOut_ticks = ipconfigDNS_SEND_BLOCK_TIME_TICKS;
xAddress.sin_port = dnsDNS_PORT;
}
- ulIPAddress = 0uL;
+ ulIPAddress = 0UL;
if( FreeRTOS_sendto( xDNSSocket, pucUDPPayloadBuffer, uxPayloadLength, FREERTOS_ZERO_COPY, &xAddress, sizeof( xAddress ) ) != 0 )
{
/* Wait for the reply. */
- lBytes = FreeRTOS_recvfrom( xDNSSocket, &pucUDPPayloadBuffer, 0, FREERTOS_ZERO_COPY, &xAddress, &ulAddressLength );
+ lBytes = FreeRTOS_recvfrom( xDNSSocket, &pucReceiveBuffer, 0, FREERTOS_ZERO_COPY, &xAddress, &ulAddressLength );
if( lBytes > 0 )
{
BaseType_t xExpected;
- DNSMessage_t *pxDNSMessageHeader = ( DNSMessage_t * ) pucUDPPayloadBuffer;
+ const DNSMessage_t *pxDNSMessageHeader = ipPOINTER_CAST( DNSMessage_t *, pucReceiveBuffer );
/* See if the identifiers match. */
if( uxIdentifier == ( TickType_t ) pxDNSMessageHeader->usIdentifier )
@@ -655,17 +752,18 @@ TickType_t uxWriteTimeOut_ticks = ipconfigDNS_SEND_BLOCK_TIME_TICKS;
if( xExpected != pdFALSE )
#endif /* ipconfigDNS_USE_CALLBACKS == 0 */
{
- ulIPAddress = prvParseDNSReply( pucUDPPayloadBuffer, ( size_t ) lBytes, xExpected );
+ ulIPAddress = prvParseDNSReply( pucReceiveBuffer, ( size_t ) lBytes, xExpected );
}
/* Finished with the buffer. The zero copy interface
is being used, so the buffer must be freed by the
task. */
- FreeRTOS_ReleaseUDPPayloadBuffer( ( void * ) pucUDPPayloadBuffer );
+ FreeRTOS_ReleaseUDPPayloadBuffer( pucReceiveBuffer );
- if( ulIPAddress != 0uL )
+ if( ulIPAddress != 0UL )
{
/* All done. */
+ /* coverity[break_stmt] : Break statement terminating the loop */
break;
}
}
@@ -674,11 +772,11 @@ TickType_t uxWriteTimeOut_ticks = ipconfigDNS_SEND_BLOCK_TIME_TICKS;
{
/* The message was not sent so the stack will not be
releasing the zero copy - it must be released here. */
- FreeRTOS_ReleaseUDPPayloadBuffer( ( void * ) pucUDPPayloadBuffer );
+ vReleaseNetworkBufferAndDescriptor( pxNetworkBuffer );
}
}
- if( uxReadTimeOut_ticks == 0u )
+ if( uxReadTimeOut_ticks == 0U )
{
/* This DNS lookup is asynchronous, using a call-back:
send the request only once. */
@@ -687,20 +785,20 @@ TickType_t uxWriteTimeOut_ticks = ipconfigDNS_SEND_BLOCK_TIME_TICKS;
}
/* Finished with the socket. */
- FreeRTOS_closesocket( xDNSSocket );
+ ( void ) FreeRTOS_closesocket( xDNSSocket );
}
return ulIPAddress;
}
/*-----------------------------------------------------------*/
-static size_t prvCreateDNSMessage( uint8_t *pucUDPPayloadBuffer,
+_static size_t prvCreateDNSMessage( uint8_t *pucUDPPayloadBuffer,
const char *pcHostName,
TickType_t uxIdentifier )
{
DNSMessage_t *pxDNSMessageHeader;
uint8_t *pucStart, *pucByte;
-DNSTail_t *pxTail;
+DNSTail_t const * pxTail;
static const DNSMessage_t xDefaultPartDNSHeader =
{
0, /* The identifier will be overwritten. */
@@ -711,26 +809,28 @@ static const DNSMessage_t xDefaultPartDNSHeader =
0 /* No additional authorities. */
};
- /* Copy in the const part of the header. */
- memcpy( ( void * ) pucUDPPayloadBuffer, ( void * ) &xDefaultPartDNSHeader, sizeof( xDefaultPartDNSHeader ) );
+ /* Copy in the const part of the header. Intentionally using different
+ * pointers with memcpy() to put the information in to correct place. */
+ ( void ) memcpy( pucUDPPayloadBuffer, &( xDefaultPartDNSHeader ), sizeof( xDefaultPartDNSHeader ) );
- /* Write in a unique identifier. */
- pxDNSMessageHeader = ( DNSMessage_t * ) pucUDPPayloadBuffer;
+ /* Write in a unique identifier. Cast the Payload Buffer to DNSMessage_t
+ * to easily access fields of the DNS Message. */
+ pxDNSMessageHeader = ipPOINTER_CAST( DNSMessage_t *, pucUDPPayloadBuffer );
pxDNSMessageHeader->usIdentifier = ( uint16_t ) uxIdentifier;
/* Create the resource record at the end of the header. First
find the end of the header. */
- pucStart = pucUDPPayloadBuffer + sizeof( xDefaultPartDNSHeader );
+ pucStart = &( pucUDPPayloadBuffer[ sizeof( xDefaultPartDNSHeader ) ] );
/* Leave a gap for the first length bytes. */
- pucByte = pucStart + 1;
+ pucByte = &( pucStart[ 1 ] );
/* Copy in the host name. */
- strcpy( ( char * ) pucByte, pcHostName );
+ ( void ) strcpy( ( char * ) pucByte, pcHostName );
/* Mark the end of the string. */
- pucByte += strlen( pcHostName );
- *pucByte = 0x00u;
+ pucByte = &( pucByte[ strlen( pcHostName ) ] );
+ *pucByte = 0x00U;
/* Walk the string to replace the '.' characters with byte counts.
pucStart holds the address of the byte count. Walking the string
@@ -741,7 +841,7 @@ static const DNSMessage_t xDefaultPartDNSHeader =
{
pucByte++;
- while( ( *pucByte != 0x00 ) && ( *pucByte != '.' ) )
+ while( ( *pucByte != ( uint8_t ) 0U ) && ( *pucByte != ( uint8_t ) ASCII_BASELINE_DOT ) )
{
pucByte++;
}
@@ -752,159 +852,183 @@ static const DNSMessage_t xDefaultPartDNSHeader =
( *pucStart )--;
pucStart = pucByte;
- } while( *pucByte != 0x00 );
+ } while( *pucByte != ( uint8_t ) 0U );
- /* Finish off the record. */
+ /* Finish off the record. Cast the record onto DNSTail_t stucture to easily
+ * access the fields of the DNS Message. */
+ pxTail = ipPOINTER_CAST(DNSTail_t *, &( pucByte[ 1 ] ) );
- pxTail = ( DNSTail_t * ) ( pucByte + 1 );
-
- vSetField16( pxTail, DNSTail_t, usType, dnsTYPE_A_HOST ); /* Type A: host */
- vSetField16( pxTail, DNSTail_t, usClass, dnsCLASS_IN ); /* 1: Class IN */
+ #if defined( _lint ) || defined( __COVERITY__ )
+ ( void ) pxTail;
+ #else
+ vSetField16( pxTail, DNSTail_t, usType, dnsTYPE_A_HOST );
+ vSetField16( pxTail, DNSTail_t, usClass, dnsCLASS_IN );
+ #endif
/* Return the total size of the generated message, which is the space from
the last written byte to the beginning of the buffer. */
- return ( ( uint32_t ) pucByte - ( uint32_t ) pucUDPPayloadBuffer + 1 ) + sizeof( *pxTail );
+ return ( ( uint32_t ) pucByte - ( uint32_t ) pucUDPPayloadBuffer + 1U ) + sizeof( DNSTail_t );
}
/*-----------------------------------------------------------*/
#if( ipconfigUSE_DNS_CACHE == 1 ) || ( ipconfigDNS_USE_CALLBACKS == 1 )
- static uint8_t * prvReadNameField( uint8_t *pucByte,
- size_t uxSourceLen,
- char *pcName,
- size_t uxDestLen )
+ _static size_t prvReadNameField( const uint8_t *pucByte,
+ size_t uxRemainingBytes,
+ char *pcName,
+ size_t uxDestLen )
{
- size_t uxNameLen = 0;
- BaseType_t xCount;
+ size_t uxNameLen = 0U;
+ size_t uxIndex = 0U;
+ size_t uxSourceLen = uxRemainingBytes;
+
+ /* uxCount gets the valus from pucByte and counts down to 0.
+ No need to have a different type than that of pucByte */
+ size_t uxCount;
- if( 0 == uxSourceLen )
+ if( uxSourceLen == ( size_t ) 0U )
{
- return NULL;
+ /* Return 0 value in case of error. */
+ uxIndex = 0U;
}
-
/* Determine if the name is the fully coded name, or an offset to the name
elsewhere in the message. */
- if( ( *pucByte & dnsNAME_IS_OFFSET ) == dnsNAME_IS_OFFSET )
+ else if( ( pucByte[ uxIndex ] & dnsNAME_IS_OFFSET ) == dnsNAME_IS_OFFSET )
{
/* Jump over the two byte offset. */
if( uxSourceLen > sizeof( uint16_t ) )
{
- pucByte += sizeof( uint16_t );
+ uxIndex += sizeof( uint16_t );
}
else
{
- pucByte = NULL;
+ uxIndex = 0U;
}
}
else
{
- /* pucByte points to the full name. Walk over the string. */
- while( ( NULL != pucByte ) && ( *pucByte != 0x00u ) && ( uxSourceLen > 1u ) )
+ /* 'uxIndex' points to the full name. Walk over the string. */
+ while( ( uxIndex < uxSourceLen ) && ( pucByte[ uxIndex ] != ( uint8_t )0x00U ) )
{
/* If this is not the first time through the loop, then add a
separator in the output. */
- if( ( uxNameLen > 0 ) && ( uxNameLen < ( uxDestLen - 1u ) ) )
+ if( ( uxNameLen > 0U ) )
{
- pcName[ uxNameLen++ ] = '.';
+ if( uxNameLen >= uxDestLen )
+ {
+ uxIndex = 0U;
+ /* coverity[break_stmt] : Break statement terminating the loop */
+ break;
+ }
+ pcName[ uxNameLen ] = '.';
+ uxNameLen++;
}
/* Process the first/next sub-string. */
- for( xCount = *( pucByte++ ), uxSourceLen--;
- xCount-- && uxSourceLen > 1u;
- pucByte++, uxSourceLen-- )
+ uxCount = ( size_t ) pucByte[ uxIndex ];
+ uxIndex++;
+ if( ( uxIndex + uxCount ) > uxSourceLen )
{
- if( uxNameLen < uxDestLen - 1u )
- {
- pcName[ uxNameLen++ ] = *( ( char * ) pucByte );
- }
- else
+ uxIndex = 0U;
+ break;
+ }
+
+ while( ( uxCount-- != 0U ) && ( uxIndex < uxSourceLen ) )
+ {
+ if( uxNameLen >= uxDestLen )
{
- /* DNS name is too big for the provided buffer. */
- pucByte = NULL;
+ uxIndex = 0U;
break;
+ /* break out of inner loop here
+ break out of outer loop at the test uxNameLen >= uxDestLen. */
}
+ pcName[ uxNameLen ] = ( char ) pucByte[ uxIndex ];
+ uxNameLen++;
+ uxIndex++;
}
}
/* Confirm that a fully formed name was found. */
- if( NULL != pucByte )
+ if( uxIndex > 0U )
{
- if( 0x00 == *pucByte )
+ if( ( uxNameLen < uxDestLen ) && ( uxIndex < uxSourceLen ) && ( pucByte[ uxIndex ] == 0U ) )
{
- pucByte++;
- uxSourceLen--;
- pcName[ uxNameLen++ ] = '\0';
+ pcName[ uxNameLen ] = '\0';
+ uxIndex++;
}
else
{
- pucByte = NULL;
+ uxIndex = 0U;
}
}
}
- return pucByte;
+ return uxIndex;
}
-#endif /* ipconfigUSE_DNS_CACHE || ipconfigDNS_USE_CALLBACKS */
+#endif /* ipconfigUSE_DNS_CACHE || ipconfigDNS_USE_CALLBACKS */
/*-----------------------------------------------------------*/
-static uint8_t * prvSkipNameField( uint8_t *pucByte,
- size_t uxSourceLen )
+_static size_t prvSkipNameField( const uint8_t *pucByte,
+ size_t uxLength )
{
size_t uxChunkLength;
+size_t uxSourceLenCpy = uxLength;
+size_t uxIndex = 0U;
- if( 0u == uxSourceLen )
+ if( uxSourceLenCpy == 0U )
{
- return NULL;
+ uxIndex = 0U;
}
-
/* Determine if the name is the fully coded name, or an offset to the name
elsewhere in the message. */
- if( ( *pucByte & dnsNAME_IS_OFFSET ) == dnsNAME_IS_OFFSET )
+ else if( ( pucByte[ uxIndex ] & dnsNAME_IS_OFFSET ) == dnsNAME_IS_OFFSET )
{
/* Jump over the two byte offset. */
- if( uxSourceLen > sizeof( uint16_t ) )
+ if( uxSourceLenCpy > sizeof( uint16_t ) )
{
- pucByte += sizeof( uint16_t );
+ uxIndex += sizeof( uint16_t );
}
else
{
- pucByte = NULL;
+ uxIndex = 0U;
}
}
else
{
/* pucByte points to the full name. Walk over the string. */
- while( ( *pucByte != 0x00u ) && ( uxSourceLen > 1u ) )
+ while( ( pucByte[ uxIndex ] != 0U ) && ( uxSourceLenCpy > 1U ) )
{
- uxChunkLength = *pucByte + 1u;
+ /* Conversion to size_t causes addition to be done
+ in size_t */
+ uxChunkLength = ( ( size_t ) pucByte[ uxIndex ] ) + 1U;
- if( uxSourceLen > uxChunkLength )
+ if( uxSourceLenCpy > uxChunkLength )
{
- uxSourceLen -= uxChunkLength;
- pucByte += uxChunkLength;
+ uxSourceLenCpy -= uxChunkLength;
+ uxIndex += uxChunkLength;
}
else
{
- pucByte = NULL;
+ uxIndex = 0U;
break;
}
}
/* Confirm that a fully formed name was found. */
- if( NULL != pucByte )
+ if( uxIndex > 0U )
{
- if( 0x00u == *pucByte )
+ if( pucByte[ uxIndex ] == 0U )
{
- pucByte++;
+ uxIndex++;
}
else
{
- pucByte = NULL;
+ uxIndex = 0U;
}
}
}
- return pucByte;
+ return uxIndex;
}
/*-----------------------------------------------------------*/
@@ -913,28 +1037,28 @@ when ipconfigDNS_USE_CALLBACKS == 1
when ipconfigUSE_LLMNR == 1
for testing purposes, by the module iot_test_freertos_tcp.c
*/
-uint32_t ulDNSHandlePacket( NetworkBufferDescriptor_t *pxNetworkBuffer )
+uint32_t ulDNSHandlePacket( const NetworkBufferDescriptor_t *pxNetworkBuffer )
{
DNSMessage_t *pxDNSMessageHeader;
size_t uxPayloadSize;
- /* Only proceed if the payload length indicated in the header
- appears to be valid. */
- if( pxNetworkBuffer->xDataLength >= sizeof( UDPPacket_t ) )
- {
- uxPayloadSize = pxNetworkBuffer->xDataLength - sizeof( UDPPacket_t );
+ /* Only proceed if the payload length indicated in the header
+ appears to be valid. */
+ if( pxNetworkBuffer->xDataLength >= sizeof( UDPPacket_t ) )
+ {
+ uxPayloadSize = pxNetworkBuffer->xDataLength - sizeof( UDPPacket_t );
- if( uxPayloadSize >= sizeof( DNSMessage_t ) )
- {
- pxDNSMessageHeader =
- ( DNSMessage_t * ) ( pxNetworkBuffer->pucEthernetBuffer + sizeof( UDPPacket_t ) );
+ if( uxPayloadSize >= sizeof( DNSMessage_t ) )
+ {
+ pxDNSMessageHeader =
+ ipPOINTER_CAST( DNSMessage_t *, &( pxNetworkBuffer->pucEthernetBuffer [ sizeof( UDPPacket_t ) ] ) );
- /* The parameter pdFALSE indicates that the reply was not expected. */
- prvParseDNSReply( ( uint8_t * ) pxDNSMessageHeader,
- uxPayloadSize,
- pdFALSE );
- }
- }
+ /* The parameter pdFALSE indicates that the reply was not expected. */
+ ( void ) prvParseDNSReply( ( uint8_t * ) pxDNSMessageHeader,
+ uxPayloadSize,
+ pdFALSE );
+ }
+ }
/* The packet was not consumed. */
return pdFAIL;
@@ -945,14 +1069,11 @@ size_t uxPayloadSize;
uint32_t ulNBNSHandlePacket( NetworkBufferDescriptor_t * pxNetworkBuffer )
{
- UDPPacket_t *pxUDPPacket = ( UDPPacket_t * ) pxNetworkBuffer->pucEthernetBuffer;
- uint8_t *pucUDPPayloadBuffer = pxNetworkBuffer->pucEthernetBuffer + sizeof( UDPPacket_t );
- size_t uxPayloadSize = pxNetworkBuffer->xDataLength - sizeof( UDPPacket_t );
+ UDPPacket_t *pxUDPPacket = ipPOINTER_CAST( UDPPacket_t *, pxNetworkBuffer->pucEthernetBuffer );
+ uint8_t *pucUDPPayloadBuffer = &( pxNetworkBuffer->pucEthernetBuffer[ sizeof( *pxUDPPacket ) ] );
- /* The network buffer data length has already been set to the
- length of the UDP payload. */
prvTreatNBNS( pucUDPPayloadBuffer,
- uxPayloadSize,
+ pxNetworkBuffer->xDataLength,
pxUDPPacket->xIPHeader.ulSourceIPAddress );
/* The packet was not consumed. */
@@ -962,296 +1083,381 @@ size_t uxPayloadSize;
#endif /* ipconfigUSE_NBNS */
/*-----------------------------------------------------------*/
-static uint32_t prvParseDNSReply( uint8_t *pucUDPPayloadBuffer,
+_static uint32_t prvParseDNSReply( uint8_t *pucUDPPayloadBuffer,
size_t uxBufferLength,
BaseType_t xExpected )
{
DNSMessage_t *pxDNSMessageHeader;
-DNSAnswerRecord_t *pxDNSAnswerRecord;
-uint32_t ulIPAddress = 0uL;
+/* This pointer is not used to modify anything */
+const DNSAnswerRecord_t *pxDNSAnswerRecord;
+uint32_t ulIPAddress = 0UL;
#if( ipconfigUSE_LLMNR == 1 )
char *pcRequestedName = NULL;
#endif
uint8_t *pucByte;
size_t uxSourceBytesRemaining;
uint16_t x, usDataLength, usQuestions;
-BaseType_t xDoStore = xExpected;
+uint16_t usType = 0U;
+BaseType_t xReturn = pdTRUE;
+
#if( ipconfigUSE_LLMNR == 1 )
- uint16_t usType = 0, usClass = 0;
+ uint16_t usClass = 0U;
#endif
#if( ipconfigUSE_DNS_CACHE == 1 ) || ( ipconfigDNS_USE_CALLBACKS == 1 )
+ BaseType_t xDoStore = xExpected;
char pcName[ ipconfigDNS_CACHE_NAME_LENGTH ] = "";
#endif
/* Ensure that the buffer is of at least minimal DNS message length. */
if( uxBufferLength < sizeof( DNSMessage_t ) )
{
- return dnsPARSE_ERROR;
+ xReturn = pdFALSE;
}
+ else
+ {
+ uxSourceBytesRemaining = uxBufferLength;
- uxSourceBytesRemaining = uxBufferLength;
+ /* Parse the DNS message header. Map the byte stream onto a structure
+ * for easier access. */
+ pxDNSMessageHeader = ipPOINTER_CAST( DNSMessage_t *, pucUDPPayloadBuffer );
- /* Parse the DNS message header. */
- pxDNSMessageHeader = ( DNSMessage_t * ) pucUDPPayloadBuffer;
+ /* Introduce a do {} while (0) to allow the use of breaks. */
+ do
+ {
+ size_t uxBytesRead = 0U;
+ size_t uxResult;
- /* Introduce a do {} while (0) to allow the use of breaks. */
- do
- {
- /* Start at the first byte after the header. */
- pucByte = pucUDPPayloadBuffer + sizeof( DNSMessage_t );
- uxSourceBytesRemaining -= sizeof( DNSMessage_t );
+ /* Start at the first byte after the header. */
+ pucByte = &( pucUDPPayloadBuffer [ sizeof( DNSMessage_t ) ] );
+ uxSourceBytesRemaining -= sizeof( DNSMessage_t );
- /* Skip any question records. */
- usQuestions = FreeRTOS_ntohs( pxDNSMessageHeader->usQuestions );
+ /* Skip any question records. */
+ usQuestions = FreeRTOS_ntohs( pxDNSMessageHeader->usQuestions );
- for( x = 0; x < usQuestions; x++ )
- {
- #if( ipconfigUSE_LLMNR == 1 )
+ for( x = 0U; x < usQuestions; x++ )
{
- if( x == 0 )
+ #if( ipconfigUSE_LLMNR == 1 )
{
- pcRequestedName = ( char * ) pucByte;
+ if( x == 0U )
+ {
+ pcRequestedName = ( char * ) pucByte;
+ }
}
- }
- #endif
+ #endif
#if( ipconfigUSE_DNS_CACHE == 1 ) || ( ipconfigDNS_USE_CALLBACKS == 1 )
- if( x == 0 )
- {
- pucByte = prvReadNameField( pucByte,
- uxSourceBytesRemaining,
- pcName,
- sizeof( pcName ) );
-
- /* Check for a malformed response. */
- if( NULL == pucByte )
+ if( x == 0U )
{
- return dnsPARSE_ERROR;
- }
+ uxResult = prvReadNameField( pucByte,
+ uxSourceBytesRemaining,
+ pcName,
+ sizeof( pcName ) );
- uxSourceBytesRemaining = ( pucUDPPayloadBuffer + uxBufferLength ) - pucByte;
- }
- else
+ /* Check for a malformed response. */
+ if( uxResult == 0U )
+ {
+ xReturn = pdFALSE;
+ break;
+ }
+ uxBytesRead += uxResult;
+ pucByte = &( pucByte[ uxResult ] );
+ uxSourceBytesRemaining -= uxResult;
+ }
+ else
#endif /* ipconfigUSE_DNS_CACHE || ipconfigDNS_USE_CALLBACKS */
- {
- /* Skip the variable length pcName field. */
- pucByte = prvSkipNameField( pucByte,
- uxSourceBytesRemaining );
-
- /* Check for a malformed response. */
- if( NULL == pucByte )
{
- return dnsPARSE_ERROR;
+ /* Skip the variable length pcName field. */
+ uxResult = prvSkipNameField( pucByte,
+ uxSourceBytesRemaining );
+
+ /* Check for a malformed response. */
+ if( uxResult == 0U )
+ {
+ xReturn = pdFALSE;
+ break;
+ }
+ uxBytesRead += uxResult;
+ pucByte = &( pucByte[ uxResult ] );
+ uxSourceBytesRemaining -= uxResult;
}
- uxSourceBytesRemaining = ( size_t )
- ( pucUDPPayloadBuffer + uxBufferLength - pucByte );
- }
+ /* Check the remaining buffer size. */
+ if( uxSourceBytesRemaining >= sizeof( uint32_t ) )
+ {
+ #if( ipconfigUSE_LLMNR == 1 )
+ {
+ /* usChar2u16 returns value in host endianness. */
+ usType = usChar2u16( pucByte );
+ usClass = usChar2u16( &( pucByte[ 2 ] ) );
+ }
+ #endif /* ipconfigUSE_LLMNR */
- /* Check the remaining buffer size. */
- if( uxSourceBytesRemaining >= sizeof( uint32_t ) )
- {
- #if( ipconfigUSE_LLMNR == 1 )
+ /* Skip the type and class fields. */
+ pucByte = &( pucByte[ sizeof( uint32_t ) ] );
+ uxSourceBytesRemaining -= sizeof( uint32_t );
+ }
+ else
{
- /* usChar2u16 returns value in host endianness. */
- usType = usChar2u16( pucByte );
- usClass = usChar2u16( pucByte + 2 );
+ xReturn = pdFALSE;
+ break;
}
- #endif /* ipconfigUSE_LLMNR */
-
- /* Skip the type and class fields. */
- pucByte += sizeof( uint32_t );
- uxSourceBytesRemaining -= sizeof( uint32_t );
}
- else
+
+ if( xReturn == pdFALSE )
{
- /* Malformed response. */
- return dnsPARSE_ERROR;
+ /* No need to proceed. Break out of the do-while loop. */
+ break;
}
- }
- /* Search through the answer records. */
- pxDNSMessageHeader->usAnswers = FreeRTOS_ntohs( pxDNSMessageHeader->usAnswers );
+ /* Search through the answer records. */
+ pxDNSMessageHeader->usAnswers = FreeRTOS_ntohs( pxDNSMessageHeader->usAnswers );
- if( ( pxDNSMessageHeader->usFlags & dnsRX_FLAGS_MASK ) == dnsEXPECTED_RX_FLAGS )
- {
- for( x = 0; x < pxDNSMessageHeader->usAnswers; x++ )
+ if( ( pxDNSMessageHeader->usFlags & dnsRX_FLAGS_MASK ) == dnsEXPECTED_RX_FLAGS )
{
- pucByte = prvSkipNameField( pucByte,
- uxSourceBytesRemaining );
-
- /* Check for a malformed response. */
- if( NULL == pucByte )
+ const uint16_t usCount = ( uint16_t ) ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY;
+ uint16_t usNumARecordsStored = 0;
+
+ for( x = 0U; ( x < pxDNSMessageHeader->usAnswers ) && ( usNumARecordsStored < usCount ); x++ )
{
- return dnsPARSE_ERROR;
- }
-
- uxSourceBytesRemaining = ( size_t )
- ( pucUDPPayloadBuffer + uxBufferLength - pucByte );
+ BaseType_t xDoAccept;
+
+ uxResult = prvSkipNameField( pucByte,
+ uxSourceBytesRemaining );
+
+ /* Check for a malformed response. */
+ if( uxResult == 0U )
+ {
+ xReturn = pdFALSE;
+ break;
+ }
- /* Is there enough data for an IPv4 A record answer and, if so,
- is this an A record? */
- if( ( uxSourceBytesRemaining >= ( sizeof( DNSAnswerRecord_t ) + sizeof( uint32_t ) ) ) &&
- ( usChar2u16( pucByte ) == dnsTYPE_A_HOST ) )
- {
- /* This is the required record type and is of sufficient size. */
- pxDNSAnswerRecord = ( DNSAnswerRecord_t * ) pucByte;
+ uxBytesRead += uxResult;
+ pucByte = &( pucByte[ uxResult ] );
+ uxSourceBytesRemaining -= uxResult;
- /* Sanity check the data length of an IPv4 answer. */
- if( FreeRTOS_ntohs( pxDNSAnswerRecord->usDataLength ) == sizeof( uint32_t ) )
+ /* Is there enough data for an IPv4 A record answer and, if so,
+ is this an A record? */
+ if( uxSourceBytesRemaining < sizeof( uint16_t ) )
{
- /* Copy the IP address out of the record. */
- memcpy( &ulIPAddress,
- pucByte + sizeof( DNSAnswerRecord_t ),
- sizeof( uint32_t ) );
+ xReturn = pdFALSE;
+ break;
+ }
+ usType = usChar2u16( pucByte );
- #if( ipconfigDNS_USE_CALLBACKS == 1 )
+ if( usType == ( uint16_t ) dnsTYPE_A_HOST )
+ {
+ if( uxSourceBytesRemaining >= ( sizeof( DNSAnswerRecord_t ) + ipSIZE_OF_IPv4_ADDRESS ) )
{
- /* See if any asynchronous call was made to FreeRTOS_gethostbyname_a() */
- if( xDNSDoCallback( ( TickType_t ) pxDNSMessageHeader->usIdentifier, pcName, ulIPAddress ) != pdFALSE )
- {
- /* This device has requested this DNS look-up.
- The result may be stored in the DNS cache. */
- xDoStore = pdTRUE;
- }
+ xDoAccept = pdTRUE;
}
- #endif /* ipconfigDNS_USE_CALLBACKS == 1 */
- #if( ipconfigUSE_DNS_CACHE == 1 )
+ else
{
- /* The reply will only be stored in the DNS cache when the
- request was issued by this device. */
- if( xDoStore != pdFALSE )
- {
- prvProcessDNSCache( pcName, &ulIPAddress, pxDNSAnswerRecord->ulTTL, pdFALSE );
- }
-
- /* Show what has happened. */
- FreeRTOS_printf( ( "DNS[0x%04X]: The answer to '%s' (%xip) will%s be stored\n",
- ( unsigned ) pxDNSMessageHeader->usIdentifier,
- pcName,
- ( unsigned ) FreeRTOS_ntohl( ulIPAddress ),
- ( xDoStore != 0 ) ? "" : " NOT" ) );
+ xDoAccept = pdFALSE;
}
- #endif /* ipconfigUSE_DNS_CACHE */
- }
-
- pucByte += sizeof( DNSAnswerRecord_t ) + sizeof( uint32_t );
- uxSourceBytesRemaining -= ( sizeof( DNSAnswerRecord_t ) + sizeof( uint32_t ) );
- break;
- }
- else if( uxSourceBytesRemaining >= sizeof( DNSAnswerRecord_t ) )
- {
- /* It's not an A record, so skip it. Get the header location
- and then jump over the header. */
- pxDNSAnswerRecord = ( DNSAnswerRecord_t * ) pucByte;
- pucByte += sizeof( DNSAnswerRecord_t );
- uxSourceBytesRemaining -= sizeof( DNSAnswerRecord_t );
-
- /* Determine the length of the answer data from the header. */
- usDataLength = FreeRTOS_ntohs( pxDNSAnswerRecord->usDataLength );
-
- /* Jump over the answer. */
- if( uxSourceBytesRemaining >= usDataLength )
- {
- pucByte += usDataLength;
- uxSourceBytesRemaining -= usDataLength;
}
else
{
- /* Malformed response. */
- return dnsPARSE_ERROR;
+ /* Unknown host type. */
+ xDoAccept = pdFALSE;
}
- }
- }
- }
-#if( ipconfigUSE_LLMNR == 1 )
- else if( usQuestions && ( usType == dnsTYPE_A_HOST ) && ( usClass == dnsCLASS_IN ) )
- {
- /* If this is not a reply to our DNS request, it might an LLMNR
- request. */
- if( xApplicationDNSQueryHook( ( pcRequestedName + 1 ) ) )
- {
- int16_t usLength;
- NetworkBufferDescriptor_t *pxNewBuffer = NULL;
- NetworkBufferDescriptor_t *pxNetworkBuffer = pxUDPPayloadBuffer_to_NetworkBuffer( pucUDPPayloadBuffer );
- LLMNRAnswer_t *pxAnswer;
+ if( xDoAccept != pdFALSE )
+ {
+ /* This is the required record type and is of sufficient size. */
+ /* Mapping pucByte to a DNSAnswerRecord allows easy access of the
+ * fields of the structure. */
+ pxDNSAnswerRecord = ipPOINTER_CAST( DNSAnswerRecord_t *, pucByte );
- if( ( xBufferAllocFixedSize == pdFALSE ) && ( pxNetworkBuffer != NULL ) )
- {
- BaseType_t xDataLength = uxBufferLength + sizeof( UDPHeader_t ) + sizeof( EthernetHeader_t ) + sizeof( IPHeader_t );
+ /* Sanity check the data length of an IPv4 answer. */
+ if( FreeRTOS_ntohs( pxDNSAnswerRecord->usDataLength ) == ( uint16_t ) sizeof( uint32_t ) )
+ {
+ /* Copy the IP address out of the record. Using different pointers
+ * to copy only the portion we want is intentional here. */
+ ( void ) memcpy( &( ulIPAddress ),
+ &( pucByte[ sizeof( DNSAnswerRecord_t ) ] ),
+ sizeof( uint32_t ) );
- /* Set the size of the outgoing packet. */
- pxNetworkBuffer->xDataLength = xDataLength;
- pxNewBuffer = pxDuplicateNetworkBufferWithDescriptor( pxNetworkBuffer, xDataLength + sizeof( LLMNRAnswer_t ) );
+ #if( ipconfigDNS_USE_CALLBACKS == 1 )
+ {
+ /* See if any asynchronous call was made to FreeRTOS_gethostbyname_a() */
+ if( xDNSDoCallback( ( TickType_t ) pxDNSMessageHeader->usIdentifier, pcName, ulIPAddress ) != pdFALSE )
+ {
+ /* This device has requested this DNS look-up.
+ The result may be stored in the DNS cache. */
+ xDoStore = pdTRUE;
+ }
+ }
+ #endif /* ipconfigDNS_USE_CALLBACKS == 1 */
+ #if( ipconfigUSE_DNS_CACHE == 1 )
+ {
+ char cBuffer[ 16 ];
+
+ /* The reply will only be stored in the DNS cache when the
+ request was issued by this device. */
+ if( xDoStore != pdFALSE )
+ {
+ ( void ) prvProcessDNSCache( pcName, &ulIPAddress, pxDNSAnswerRecord->ulTTL, pdFALSE );
+ usNumARecordsStored++; /* Track # of A records stored */
+ }
+
+ ( void ) FreeRTOS_inet_ntop( FREERTOS_AF_INET, ( const void * ) &( ulIPAddress ), cBuffer, sizeof( cBuffer ) );
+ /* Show what has happened. */
+ FreeRTOS_printf( ( "DNS[0x%04lX]: The answer to '%s' (%s) will%s be stored\n",
+ ( UBaseType_t ) pxDNSMessageHeader->usIdentifier,
+ pcName,
+ cBuffer,
+ ( xDoStore != 0 ) ? "" : " NOT" ) );
+ }
+ #endif /* ipconfigUSE_DNS_CACHE */
+ }
- if( pxNewBuffer != NULL )
+ pucByte = &( pucByte[ sizeof( DNSAnswerRecord_t ) + sizeof( uint32_t ) ] );
+ uxSourceBytesRemaining -= ( sizeof( DNSAnswerRecord_t ) + sizeof( uint32_t ) );
+ }
+ else if( uxSourceBytesRemaining >= sizeof( DNSAnswerRecord_t ) )
{
- BaseType_t xOffset1, xOffset2;
+ /* It's not an A record, so skip it. Get the header location
+ and then jump over the header. */
+ /* Cast the response to DNSAnswerRecord for easy access to fields of the DNS response. */
+ pxDNSAnswerRecord = ipPOINTER_CAST( DNSAnswerRecord_t *, pucByte );
- xOffset1 = ( BaseType_t ) ( pucByte - pucUDPPayloadBuffer );
- xOffset2 = ( BaseType_t ) ( ( ( uint8_t * ) pcRequestedName ) - pucUDPPayloadBuffer );
+ pucByte = &( pucByte[ sizeof( DNSAnswerRecord_t ) ] );
+ uxSourceBytesRemaining -= sizeof( DNSAnswerRecord_t );
- pxNetworkBuffer = pxNewBuffer;
- pucUDPPayloadBuffer = pxNetworkBuffer->pucEthernetBuffer + ipUDP_PAYLOAD_OFFSET_IPv4;
+ /* Determine the length of the answer data from the header. */
+ usDataLength = FreeRTOS_ntohs( pxDNSAnswerRecord->usDataLength );
- pucByte = pucUDPPayloadBuffer + xOffset1;
- pcRequestedName = ( char * ) ( pucUDPPayloadBuffer + xOffset2 );
- pxDNSMessageHeader = ( DNSMessage_t * ) pucUDPPayloadBuffer;
+ /* Jump over the answer. */
+ if( uxSourceBytesRemaining >= usDataLength )
+ {
+ pucByte = &( pucByte[ usDataLength ] );
+ uxSourceBytesRemaining -= usDataLength;
+ }
+ else
+ {
+ /* Malformed response. */
+ xReturn = pdFALSE;
+ break;
+ }
}
else
{
- /* Just to indicate that the message may not be answered. */
- pxNetworkBuffer = NULL;
+ /* Do nothing */
}
}
+ }
- if( pxNetworkBuffer != NULL )
+#if( ipconfigUSE_LLMNR == 1 )
+ else if( ( usQuestions != ( uint16_t ) 0U ) && ( usType == dnsTYPE_A_HOST ) && ( usClass == dnsCLASS_IN ) && ( pcRequestedName != NULL ) )
+ {
+ /* If this is not a reply to our DNS request, it might an LLMNR
+ request. */
+ if( xApplicationDNSQueryHook( &( pcRequestedName[ 1 ] ) ) != pdFALSE )
{
- pxAnswer = ( LLMNRAnswer_t * ) pucByte;
+ int16_t usLength;
+ NetworkBufferDescriptor_t *pxNewBuffer = NULL;
+ NetworkBufferDescriptor_t *pxNetworkBuffer = pxUDPPayloadBuffer_to_NetworkBuffer( pucUDPPayloadBuffer );
+ LLMNRAnswer_t *pxAnswer;
+ uint8_t *pucNewBuffer = NULL;
- /* We leave 'usIdentifier' and 'usQuestions' untouched */
- vSetField16( pxDNSMessageHeader, DNSMessage_t, usFlags, dnsLLMNR_FLAGS_IS_REPONSE ); /* Set the response flag */
- vSetField16( pxDNSMessageHeader, DNSMessage_t, usAnswers, 1 ); /* Provide a single answer */
- vSetField16( pxDNSMessageHeader, DNSMessage_t, usAuthorityRRs, 0 ); /* No authority */
- vSetField16( pxDNSMessageHeader, DNSMessage_t, usAdditionalRRs, 0 ); /* No additional info */
+ if( ( xBufferAllocFixedSize == pdFALSE ) && ( pxNetworkBuffer != NULL ) )
+ {
+ size_t uxDataLength = uxBufferLength + sizeof( UDPHeader_t ) + sizeof( EthernetHeader_t ) + sizeof( IPHeader_t );
- pxAnswer->ucNameCode = dnsNAME_IS_OFFSET;
- pxAnswer->ucNameOffset = ( uint8_t ) ( pcRequestedName - ( char * ) pucUDPPayloadBuffer );
+ /* Set the size of the outgoing packet. */
+ pxNetworkBuffer->xDataLength = uxDataLength;
+ pxNewBuffer = pxDuplicateNetworkBufferWithDescriptor( pxNetworkBuffer, uxDataLength + sizeof( LLMNRAnswer_t ) );
- vSetField16( pxAnswer, LLMNRAnswer_t, usType, dnsTYPE_A_HOST ); /* Type A: host */
- vSetField16( pxAnswer, LLMNRAnswer_t, usClass, dnsCLASS_IN ); /* 1: Class IN */
- vSetField32( pxAnswer, LLMNRAnswer_t, ulTTL, dnsLLMNR_TTL_VALUE );
- vSetField16( pxAnswer, LLMNRAnswer_t, usDataLength, 4 );
- vSetField32( pxAnswer, LLMNRAnswer_t, ulIPAddress, FreeRTOS_ntohl( *ipLOCAL_IP_ADDRESS_POINTER ) );
+ if( pxNewBuffer != NULL )
+ {
+ BaseType_t xOffset1, xOffset2;
- usLength = ( int16_t ) ( sizeof( *pxAnswer ) + ( size_t ) ( pucByte - pucUDPPayloadBuffer ) );
+ xOffset1 = ( BaseType_t ) ( pucByte - pucUDPPayloadBuffer );
+ xOffset2 = ( BaseType_t ) ( ( ( uint8_t * ) pcRequestedName ) - pucUDPPayloadBuffer );
- prvReplyDNSMessage( pxNetworkBuffer, usLength );
+ pxNetworkBuffer = pxNewBuffer;
+ pucNewBuffer = &( pxNetworkBuffer->pucEthernetBuffer[ ipUDP_PAYLOAD_OFFSET_IPv4 ] );
- if( pxNewBuffer != NULL )
+ pucByte = &( pucNewBuffer[ xOffset1 ] );
+ pcRequestedName = ( char * ) &( pucNewBuffer[ xOffset2 ] );
+ pxDNSMessageHeader = ipPOINTER_CAST( DNSMessage_t *, pucNewBuffer );
+ }
+ else
+ {
+ /* Just to indicate that the message may not be answered. */
+ pxNetworkBuffer = NULL;
+ }
+ }
+
+ /* The test on 'pucNewBuffer' is only to satisfy lint. */
+ if( ( pxNetworkBuffer != NULL ) && ( pucNewBuffer != NULL ) )
{
- vReleaseNetworkBufferAndDescriptor( pxNewBuffer );
+ pxAnswer = ipPOINTER_CAST( LLMNRAnswer_t *, pucByte );
+
+ /* We leave 'usIdentifier' and 'usQuestions' untouched */
+ #ifndef _lint
+ vSetField16( pxDNSMessageHeader, DNSMessage_t, usFlags, dnsLLMNR_FLAGS_IS_REPONSE ); /* Set the response flag */
+ vSetField16( pxDNSMessageHeader, DNSMessage_t, usAnswers, 1 ); /* Provide a single answer */
+ vSetField16( pxDNSMessageHeader, DNSMessage_t, usAuthorityRRs, 0 ); /* No authority */
+ vSetField16( pxDNSMessageHeader, DNSMessage_t, usAdditionalRRs, 0 ); /* No additional info */
+ #endif /* lint */
+
+ pxAnswer->ucNameCode = dnsNAME_IS_OFFSET;
+ pxAnswer->ucNameOffset = ( uint8_t ) ( pcRequestedName - ( char * ) pucNewBuffer );
+
+ #ifndef _lint
+ vSetField16( pxAnswer, LLMNRAnswer_t, usType, dnsTYPE_A_HOST ); /* Type A: host */
+ vSetField16( pxAnswer, LLMNRAnswer_t, usClass, dnsCLASS_IN ); /* 1: Class IN */
+ vSetField32( pxAnswer, LLMNRAnswer_t, ulTTL, dnsLLMNR_TTL_VALUE );
+ vSetField16( pxAnswer, LLMNRAnswer_t, usDataLength, 4 );
+ vSetField32( pxAnswer, LLMNRAnswer_t, ulIPAddress, FreeRTOS_ntohl( *ipLOCAL_IP_ADDRESS_POINTER ) );
+ #endif /* lint */
+ usLength = ( int16_t ) ( sizeof( *pxAnswer ) + ( size_t ) ( pucByte - pucNewBuffer ) );
+
+ prvReplyDNSMessage( pxNetworkBuffer, usLength );
+
+ if( pxNewBuffer != NULL )
+ {
+ vReleaseNetworkBufferAndDescriptor( pxNewBuffer );
+ }
}
}
}
- }
+ else
+ {
+ /* Not an expected reply. */
+ }
#endif /* ipconfigUSE_LLMNR == 1 */
- } while( 0 );
+ ( void ) uxBytesRead;
+ } while( ipFALSE_BOOL );
+ }
- if( xExpected == pdFALSE )
+ if( xReturn == pdFALSE )
+ {
+ /* There was an error while parsing the DNS response. Return error code. */
+ ulIPAddress = dnsPARSE_ERROR;
+ }
+ else if( xExpected == pdFALSE )
{
/* Do not return a valid IP-address in case the reply was not expected. */
- ulIPAddress = 0uL;
+ ulIPAddress = 0UL;
+ }
+ else
+ {
+ /* The IP-address found will be returned. */
}
+ #if( ipconfigUSE_DNS_CACHE == 1 ) || ( ipconfigDNS_USE_CALLBACKS == 1 )
+ ( void ) xDoStore;
+ #endif
+
return ulIPAddress;
}
/*-----------------------------------------------------------*/
#if( ipconfigUSE_NBNS == 1 )
- static void prvTreatNBNS( uint8_t *pucUDPPayloadBuffer,
+ static void prvTreatNBNS( uint8_t *pucPayload,
size_t uxBufferLength,
uint32_t ulIPAddress )
{
@@ -1259,40 +1465,45 @@ BaseType_t xDoStore = xExpected;
uint8_t *pucSource, *pucTarget;
uint8_t ucByte;
uint8_t ucNBNSName[ 17 ];
+ uint8_t *pucUDPPayloadBuffer = pucPayload;
+ NetworkBufferDescriptor_t *pxNetworkBuffer;
+ size_t uxBytesNeeded = sizeof( UDPPacket_t ) + sizeof( NBNSRequest_t );
/* Check for minimum buffer size. */
- if( uxBufferLength < sizeof( NBNSRequest_t ) )
+ if( uxBufferLength < uxBytesNeeded )
{
return;
}
/* Read the request flags in host endianness. */
- usFlags = usChar2u16( pucUDPPayloadBuffer + offsetof( NBNSRequest_t, usFlags ) );
+ usFlags = usChar2u16( &( pucUDPPayloadBuffer[ offsetof( NBNSRequest_t, usFlags ) ] ) );
if( ( usFlags & dnsNBNS_FLAGS_OPCODE_MASK ) == dnsNBNS_FLAGS_OPCODE_QUERY )
{
- usType = usChar2u16( pucUDPPayloadBuffer + offsetof( NBNSRequest_t, usType ) );
- usClass = usChar2u16( pucUDPPayloadBuffer + offsetof( NBNSRequest_t, usClass ) );
+ usType = usChar2u16( &( pucUDPPayloadBuffer[ offsetof( NBNSRequest_t, usType ) ] ) );
+ usClass = usChar2u16( &( pucUDPPayloadBuffer[ offsetof( NBNSRequest_t, usClass ) ] ) );
/* Not used for now */
( void ) usClass;
/* For NBNS a name is 16 bytes long, written with capitals only.
Make sure that the copy is terminated with a zero. */
- pucTarget = ucNBNSName + sizeof( ucNBNSName ) - 2;
- pucTarget[ 1 ] = '\0';
+ pucTarget = &( ucNBNSName[ sizeof( ucNBNSName ) - 2U ] );
+ pucTarget[ 1 ] = ( uint8_t ) 0U;
/* Start with decoding the last 2 bytes. */
- pucSource = pucUDPPayloadBuffer + ( offsetof( NBNSRequest_t, ucName ) + ( dnsNBNS_ENCODED_NAME_LENGTH - 2 ) );
+ pucSource = &( pucUDPPayloadBuffer[ ( dnsNBNS_ENCODED_NAME_LENGTH - 2 ) + offsetof( NBNSRequest_t, ucName ) ] );
for( ;; )
{
- ucByte = ( uint8_t ) ( ( ( pucSource[ 0 ] - 0x41 ) << 4 ) | ( pucSource[ 1 ] - 0x41 ) );
+ const uint8_t ucCharA = ( uint8_t ) 0x41U;
+
+ ucByte = ( ( uint8_t ) ( ( pucSource[ 0 ] - ucCharA ) << 4 ) ) | ( pucSource[ 1 ] - ucCharA );
/* Make sure there are no trailing spaces in the name. */
- if( ( ucByte == ' ' ) && ( pucTarget[ 1 ] == '\0' ) )
+ if( ( ucByte == ( uint8_t ) ' ' ) && ( pucTarget[ 1 ] == 0U ) )
{
- ucByte = '\0';
+ ucByte = 0U;
}
*pucTarget = ucByte;
@@ -1308,11 +1519,11 @@ BaseType_t xDoStore = xExpected;
#if( ipconfigUSE_DNS_CACHE == 1 )
{
- if( ( usFlags & dnsNBNS_FLAGS_RESPONSE ) != 0 )
+ if( ( usFlags & dnsNBNS_FLAGS_RESPONSE ) != 0U )
{
/* If this is a response from another device,
add the name to the DNS cache */
- prvProcessDNSCache( ( char * ) ucNBNSName, &ulIPAddress, 0, pdFALSE );
+ ( void ) prvProcessDNSCache( ( char * ) ucNBNSName, &( ulIPAddress ), 0, pdFALSE );
}
}
#else
@@ -1322,7 +1533,7 @@ BaseType_t xDoStore = xExpected;
}
#endif /* ipconfigUSE_DNS_CACHE */
- if( ( ( usFlags & dnsNBNS_FLAGS_RESPONSE ) == 0 ) &&
+ if( ( ( usFlags & dnsNBNS_FLAGS_RESPONSE ) == 0U ) &&
( usType == dnsNBNS_TYPE_NET_BIOS ) &&
( xApplicationDNSQueryHook( ( const char * ) ucNBNSName ) != pdFALSE ) )
{
@@ -1332,7 +1543,7 @@ BaseType_t xDoStore = xExpected;
/* Someone is looking for a device with ucNBNSName,
prepare a positive reply. */
- NetworkBufferDescriptor_t *pxNetworkBuffer = pxUDPPayloadBuffer_to_NetworkBuffer( pucUDPPayloadBuffer );
+ pxNetworkBuffer = pxUDPPayloadBuffer_to_NetworkBuffer( pucUDPPayloadBuffer );
if( ( xBufferAllocFixedSize == pdFALSE ) && ( pxNetworkBuffer != NULL ) )
{
@@ -1344,7 +1555,7 @@ BaseType_t xDoStore = xExpected;
if( pxNewBuffer != NULL )
{
- pucUDPPayloadBuffer = pxNewBuffer->pucEthernetBuffer + sizeof( UDPPacket_t );
+ pucUDPPayloadBuffer = &( pxNewBuffer->pucEthernetBuffer[ sizeof( UDPPacket_t ) ] );
pxNetworkBuffer = pxNewBuffer;
}
else
@@ -1357,28 +1568,36 @@ BaseType_t xDoStore = xExpected;
/* Should not occur: pucUDPPayloadBuffer is part of a xNetworkBufferDescriptor */
if( pxNetworkBuffer != NULL )
{
- pxMessage = ( DNSMessage_t * ) pucUDPPayloadBuffer;
+ pxMessage = ipPOINTER_CAST( DNSMessage_t *, pucUDPPayloadBuffer );
/* As the fields in the structures are not word-aligned, we have to
copy the values byte-by-byte using macro's vSetField16() and vSetField32() */
+ #ifndef _lint
vSetField16( pxMessage, DNSMessage_t, usFlags, dnsNBNS_QUERY_RESPONSE_FLAGS ); /* 0x8500 */
vSetField16( pxMessage, DNSMessage_t, usQuestions, 0 );
vSetField16( pxMessage, DNSMessage_t, usAnswers, 1 );
vSetField16( pxMessage, DNSMessage_t, usAuthorityRRs, 0 );
vSetField16( pxMessage, DNSMessage_t, usAdditionalRRs, 0 );
+ #else
+ ( void ) pxMessage;
+ #endif
- pxAnswer = ( NBNSAnswer_t * ) ( pucUDPPayloadBuffer + offsetof( NBNSRequest_t, usType ) );
+ pxAnswer = ipPOINTER_CAST( NBNSAnswer_t *, &( pucUDPPayloadBuffer[ offsetof( NBNSRequest_t, usType ) ] ) );
+ #ifndef _lint
vSetField16( pxAnswer, NBNSAnswer_t, usType, usType ); /* Type */
vSetField16( pxAnswer, NBNSAnswer_t, usClass, dnsNBNS_CLASS_IN ); /* Class */
vSetField32( pxAnswer, NBNSAnswer_t, ulTTL, dnsNBNS_TTL_VALUE );
vSetField16( pxAnswer, NBNSAnswer_t, usDataLength, 6 ); /* 6 bytes including the length field */
vSetField16( pxAnswer, NBNSAnswer_t, usNbFlags, dnsNBNS_NAME_FLAGS );
vSetField32( pxAnswer, NBNSAnswer_t, ulIPAddress, FreeRTOS_ntohl( *ipLOCAL_IP_ADDRESS_POINTER ) );
+ #else
+ ( void ) pxAnswer;
+ #endif
- usLength = ( uint16_t ) ( offsetof( NBNSRequest_t, usType ) + sizeof( NBNSAnswer_t ) );
+ usLength = ( uint16_t ) ( sizeof( NBNSAnswer_t ) + ( size_t ) offsetof( NBNSRequest_t, usType ) );
- prvReplyDNSMessage( pxNetworkBuffer, usLength );
+ prvReplyDNSMessage( pxNetworkBuffer, ( BaseType_t ) usLength );
}
}
}
@@ -1389,27 +1608,34 @@ BaseType_t xDoStore = xExpected;
static Socket_t prvCreateDNSSocket( void )
{
-Socket_t xSocket = NULL;
+Socket_t xSocket;
struct freertos_sockaddr xAddress;
BaseType_t xReturn;
/* This must be the first time this function has been called. Create
the socket. */
xSocket = FreeRTOS_socket( FREERTOS_AF_INET, FREERTOS_SOCK_DGRAM, FREERTOS_IPPROTO_UDP );
-
- /* Auto bind the port. */
- xAddress.sin_port = 0u;
- xReturn = FreeRTOS_bind( xSocket, &xAddress, sizeof( xAddress ) );
-
- /* Check the bind was successful, and clean up if not. */
- if( xReturn != 0 )
+ if( ( xSocket == FREERTOS_INVALID_SOCKET ) || ( xSocket == NULL ) )
{
- FreeRTOS_closesocket( xSocket );
+ /* There was an error, return NULL. */
xSocket = NULL;
}
else
{
- /* The send and receive timeouts will be set later on. */
+ /* Auto bind the port. */
+ xAddress.sin_port = 0U;
+ xReturn = FreeRTOS_bind( xSocket, &xAddress, sizeof( xAddress ) );
+
+ /* Check the bind was successful, and clean up if not. */
+ if( xReturn != 0 )
+ {
+ ( void ) FreeRTOS_closesocket( xSocket );
+ xSocket = NULL;
+ }
+ else
+ {
+ /* The send and receive timeouts will be set later on. */
+ }
}
return xSocket;
@@ -1424,36 +1650,40 @@ BaseType_t xReturn;
UDPPacket_t *pxUDPPacket;
IPHeader_t *pxIPHeader;
UDPHeader_t *pxUDPHeader;
+ size_t uxDataLength;
- pxUDPPacket = ( UDPPacket_t * ) pxNetworkBuffer->pucEthernetBuffer;
+ pxUDPPacket = ipPOINTER_CAST( UDPPacket_t *, pxNetworkBuffer->pucEthernetBuffer );
pxIPHeader = &pxUDPPacket->xIPHeader;
pxUDPHeader = &pxUDPPacket->xUDPHeader;
/* HT: started using defines like 'ipSIZE_OF_xxx' */
- pxIPHeader->usLength = FreeRTOS_htons( lNetLength + ipSIZE_OF_IPv4_HEADER + ipSIZE_OF_UDP_HEADER );
+ pxIPHeader->usLength = FreeRTOS_htons( ( uint16_t ) lNetLength + ipSIZE_OF_IPv4_HEADER + ipSIZE_OF_UDP_HEADER );
/* HT:endian: should not be translated, copying from packet to packet */
pxIPHeader->ulDestinationIPAddress = pxIPHeader->ulSourceIPAddress;
pxIPHeader->ulSourceIPAddress = *ipLOCAL_IP_ADDRESS_POINTER;
pxIPHeader->ucTimeToLive = ipconfigUDP_TIME_TO_LIVE;
pxIPHeader->usIdentification = FreeRTOS_htons( usPacketIdentifier );
usPacketIdentifier++;
- pxUDPHeader->usLength = FreeRTOS_htons( lNetLength + ipSIZE_OF_UDP_HEADER );
- vFlip_16( pxUDPPacket->xUDPHeader.usSourcePort, pxUDPPacket->xUDPHeader.usDestinationPort );
+ pxUDPHeader->usLength = FreeRTOS_htons( ( uint32_t ) lNetLength + ipSIZE_OF_UDP_HEADER );
+ vFlip_16( pxUDPHeader->usSourcePort, pxUDPHeader->usDestinationPort );
/* Important: tell NIC driver how many bytes must be sent */
- pxNetworkBuffer->xDataLength = ( size_t ) ( lNetLength + ipSIZE_OF_IPv4_HEADER + ipSIZE_OF_UDP_HEADER + ipSIZE_OF_ETH_HEADER );
+ uxDataLength = ( ( size_t ) lNetLength ) + ipSIZE_OF_IPv4_HEADER + ipSIZE_OF_UDP_HEADER + ipSIZE_OF_ETH_HEADER;
#if( ipconfigDRIVER_INCLUDED_TX_IP_CHECKSUM == 0 )
{
/* calculate the IP header checksum */
- pxIPHeader->usHeaderChecksum = 0x00;
- pxIPHeader->usHeaderChecksum = usGenerateChecksum( 0uL, ( uint8_t * ) &( pxIPHeader->ucVersionHeaderLength ), ipSIZE_OF_IPv4_HEADER );
+ pxIPHeader->usHeaderChecksum = 0U;
+ pxIPHeader->usHeaderChecksum = usGenerateChecksum( 0U, ( uint8_t * ) &( pxIPHeader->ucVersionHeaderLength ), ipSIZE_OF_IPv4_HEADER );
pxIPHeader->usHeaderChecksum = ~FreeRTOS_htons( pxIPHeader->usHeaderChecksum );
/* calculate the UDP checksum for outgoing package */
- usGenerateProtocolChecksum( ( uint8_t* ) pxUDPPacket, pxNetworkBuffer->xDataLength, pdTRUE );
+ ( void ) usGenerateProtocolChecksum( ( uint8_t * ) pxUDPPacket, uxDataLength, pdTRUE );
}
#endif
+ /* Important: tell NIC driver how many bytes must be sent */
+ pxNetworkBuffer->xDataLength = uxDataLength;
+
/* This function will fill in the eth addresses and send the packet */
vReturnEthernetFrame( pxNetworkBuffer, pdFALSE );
}
@@ -1463,26 +1693,28 @@ BaseType_t xReturn;
#if( ipconfigUSE_DNS_CACHE == 1 )
- static void prvProcessDNSCache( const char *pcName,
+ static BaseType_t prvProcessDNSCache( const char *pcName,
uint32_t *pulIP,
uint32_t ulTTL,
BaseType_t xLookUp )
{
BaseType_t x;
BaseType_t xFound = pdFALSE;
- uint32_t ulCurrentTimeSeconds = ( xTaskGetTickCount() / portTICK_PERIOD_MS ) / 1000;
+ uint32_t ulCurrentTimeSeconds = ( xTaskGetTickCount() / portTICK_PERIOD_MS ) / 1000U;
+ uint32_t ulIPAddressIndex = 0;
static BaseType_t xFreeEntry = 0;
- configASSERT(pcName);
+
+ configASSERT( ( pcName != NULL ) );
/* For each entry in the DNS cache table. */
for( x = 0; x < ipconfigDNS_CACHE_ENTRIES; x++ )
{
- if( xDNSCache[ x ].pcName[ 0 ] == 0 )
+ if( xDNSCache[ x ].pcName[ 0 ] == ( char ) 0 )
{
continue;
}
- if( 0 == strcmp( xDNSCache[ x ].pcName, pcName ) )
+ if( strcmp( xDNSCache[ x ].pcName, pcName ) == 0 )
{
/* Is this function called for a lookup or to add/update an IP address? */
if( xLookUp != pdFALSE )
@@ -1490,17 +1722,40 @@ BaseType_t xReturn;
/* Confirm that the record is still fresh. */
if( ulCurrentTimeSeconds < ( xDNSCache[ x ].ulTimeWhenAddedInSeconds + FreeRTOS_ntohl( xDNSCache[ x ].ulTTL ) ) )
{
- *pulIP = xDNSCache[ x ].ulIPAddress;
+#if( ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY > 1 )
+ uint8_t ucIndex;
+ /* The ucCurrentIPAddress value increments without bound and will rollover, */
+ /* modulo it by the number of IP addresses to keep it in range. */
+ /* Also perform a final modulo by the max number of IP addresses */
+ /* per DNS cache entry to prevent out-of-bounds access in the event */
+ /* that ucNumIPAddresses has been corrupted. */
+ ucIndex = xDNSCache[ x ].ucCurrentIPAddress % xDNSCache[ x ].ucNumIPAddresses;
+ ucIndex = ucIndex % ( uint8_t ) ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY;
+ ulIPAddressIndex = ucIndex;
+
+ xDNSCache[ x ].ucCurrentIPAddress++;
+#endif
+ *pulIP = xDNSCache[ x ].ulIPAddresses[ ulIPAddressIndex ];
}
else
{
/* Age out the old cached record. */
- xDNSCache[ x ].pcName[ 0 ] = 0;
+ xDNSCache[ x ].pcName[ 0 ] = ( char ) 0;
}
}
else
{
- xDNSCache[ x ].ulIPAddress = *pulIP;
+#if( ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY > 1 )
+ if ( xDNSCache[ x ].ucNumIPAddresses < ( uint8_t ) ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY )
+ {
+ /* If more answers exist than there are IP address storage slots */
+ /* they will overwrite entry 0 */
+
+ ulIPAddressIndex = xDNSCache[ x ].ucNumIPAddresses;
+ xDNSCache[ x ].ucNumIPAddresses++;
+ }
+#endif
+ xDNSCache[ x ].ulIPAddresses[ ulIPAddressIndex ] = *pulIP;
xDNSCache[ x ].ulTTL = ulTTL;
xDNSCache[ x ].ulTimeWhenAddedInSeconds = ulCurrentTimeSeconds;
}
@@ -1514,18 +1769,28 @@ BaseType_t xReturn;
{
if( xLookUp != pdFALSE )
{
- *pulIP = 0;
+ *pulIP = 0UL;
}
else
{
/* Add or update the item. */
- if( strlen( pcName ) < ipconfigDNS_CACHE_NAME_LENGTH )
+ if( strlen( pcName ) < ( size_t ) ipconfigDNS_CACHE_NAME_LENGTH )
{
- strcpy( xDNSCache[ xFreeEntry ].pcName, pcName );
+ ( void ) strcpy( xDNSCache[ xFreeEntry ].pcName, pcName );
- xDNSCache[ xFreeEntry ].ulIPAddress = *pulIP;
+ xDNSCache[ xFreeEntry ].ulIPAddresses[ 0 ] = *pulIP;
xDNSCache[ xFreeEntry ].ulTTL = ulTTL;
xDNSCache[ xFreeEntry ].ulTimeWhenAddedInSeconds = ulCurrentTimeSeconds;
+#if( ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY > 1 )
+ xDNSCache[ xFreeEntry ].ucNumIPAddresses = 1;
+ xDNSCache[ xFreeEntry ].ucCurrentIPAddress = 0;
+
+ /* Initialize all remaining IP addresses in this entry to 0 */
+ ( void ) memset( &xDNSCache[ xFreeEntry ].ulIPAddresses[ 1 ],
+ 0,
+ sizeof( xDNSCache[ xFreeEntry ].ulIPAddresses[ 1 ] ) *
+ ( ( uint32_t ) ipconfigDNS_CACHE_ADDRESSES_PER_ENTRY - 1U ) );
+#endif
xFreeEntry++;
@@ -1537,10 +1802,11 @@ BaseType_t xReturn;
}
}
- if( ( xLookUp == 0 ) || ( *pulIP != 0 ) )
+ if( ( xLookUp == 0 ) || ( *pulIP != 0UL ) )
{
- FreeRTOS_debug_printf( ( "prvProcessDNSCache: %s: '%s' @ %lxip\n", xLookUp ? "look-up" : "add", pcName, FreeRTOS_ntohl( *pulIP ) ) );
+ FreeRTOS_debug_printf( ( "prvProcessDNSCache: %s: '%s' @ %lxip\n", ( xLookUp != 0 ) ? "look-up" : "add", pcName, FreeRTOS_ntohl( *pulIP ) ) );
}
+ return xFound;
}
#endif /* ipconfigUSE_DNS_CACHE */
@@ -1550,7 +1816,6 @@ BaseType_t xReturn;
/*-----------------------------------------------------------*/
/* Provide access to private members for testing. */
-#ifdef AMAZON_FREERTOS_ENABLE_UNIT_TESTS
- #include "iot_freertos_tcp_test_access_dns_define.h"
+#ifdef FREERTOS_ENABLE_UNIT_TESTS
+ #include "freertos_tcp_test_access_dns_define.h"
#endif
-