You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.0 KiB
C
95 lines
3.0 KiB
C
/* Standard includes. */
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
/* FreeRTOS includes. */
|
|
#include "FreeRTOS.h"
|
|
#include "task.h"
|
|
#include "queue.h"
|
|
#include "semphr.h"
|
|
|
|
/* FreeRTOS+TCP includes. */
|
|
#include "FreeRTOS_IP.h"
|
|
#include "FreeRTOS_Sockets.h"
|
|
#include "FreeRTOS_IP_Private.h"
|
|
#include "FreeRTOS_UDP_IP.h"
|
|
#include "FreeRTOS_DHCP.h"
|
|
#include "NetworkInterface.h"
|
|
#include "NetworkBufferManagement.h"
|
|
#include "FreeRTOS_ARP.h"
|
|
|
|
#include "cbmc.h"
|
|
|
|
/****************************************************************
|
|
* Signature of function under test
|
|
****************************************************************/
|
|
|
|
void prvReadSackOption( const uint8_t * const pucPtr,
|
|
size_t uxIndex,
|
|
FreeRTOS_Socket_t * const pxSocket );
|
|
|
|
/****************************************************************
|
|
* Proof of prvReadSackOption function contract
|
|
****************************************************************/
|
|
|
|
void harness()
|
|
{
|
|
/* pucPtr points into a buffer */
|
|
size_t buffer_size;
|
|
uint8_t * pucPtr = malloc( buffer_size );
|
|
|
|
/* uxIndex in an index into the buffer */
|
|
size_t uxIndex;
|
|
|
|
/* pxSocket can be any socket with some initialized values */
|
|
FreeRTOS_Socket_t * pxSocket = malloc( sizeof( FreeRTOS_Socket_t ) );
|
|
|
|
pxSocket->u.xTCP.txStream = malloc( sizeof( StreamBuffer_t ) );
|
|
|
|
vListInitialise( &pxSocket->u.xTCP.xTCPWindow.xWaitQueue );
|
|
|
|
if( nondet_bool() )
|
|
{
|
|
TCPSegment_t * segment = malloc( sizeof( TCPSegment_t ) );
|
|
listSET_LIST_ITEM_OWNER( &segment->xQueueItem, ( void * ) segment );
|
|
vListInsertEnd( &pxSocket->u.xTCP.xTCPWindow.xWaitQueue, &segment->xQueueItem );
|
|
}
|
|
|
|
vListInitialise( &pxSocket->u.xTCP.xTCPWindow.xTxSegments );
|
|
|
|
if( nondet_bool() )
|
|
{
|
|
TCPSegment_t * segment = malloc( sizeof( TCPSegment_t ) );
|
|
vListInitialiseItem( &segment->xSegmentItem );
|
|
listSET_LIST_ITEM_OWNER( &segment->xQueueItem, ( void * ) segment );
|
|
vListInsertEnd( &pxSocket->u.xTCP.xTCPWindow.xTxSegments, &segment->xQueueItem );
|
|
}
|
|
|
|
vListInitialise( &pxSocket->u.xTCP.xTCPWindow.xPriorityQueue );
|
|
|
|
extern List_t xSegmentList;
|
|
vListInitialise( &xSegmentList );
|
|
|
|
/****************************************************************
|
|
* Specification and proof of CheckOptions inner loop
|
|
****************************************************************/
|
|
|
|
/* Preconditions */
|
|
|
|
/* CBMC model of pointers limits the size of the buffer */
|
|
__CPROVER_assume( buffer_size < CBMC_MAX_OBJECT_SIZE );
|
|
|
|
/* Both preconditions are required to avoid integer overflow in the */
|
|
/* pointer offset of the pointer pucPtr + uxIndex + 8 */
|
|
__CPROVER_assume( uxIndex <= buffer_size );
|
|
__CPROVER_assume( uxIndex + 8 <= buffer_size );
|
|
|
|
/* Assuming quite a bit more about the initialization of pxSocket */
|
|
__CPROVER_assume( pucPtr != NULL );
|
|
__CPROVER_assume( pxSocket != NULL );
|
|
|
|
prvReadSackOption( pucPtr, uxIndex, pxSocket );
|
|
|
|
/* No postconditions required */
|
|
}
|