/* * coreMQTT v2.1.0 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * @file MQTT_Unsubscribe_harness.c * @brief Implements the proof harness for MQTT_Unsubscribe function. */ #include "core_mqtt.h" #include "mqtt_cbmc_state.h" /** * @brief Implement a get time function to return timeout after certain * iterations have been made in the code. This ensures that we do not hit * unwinding error in CBMC. In real life scenarios, the send function will * not just keep accepting 1 byte at a time for a long time since it just * gets added to the TCP buffer. * * @return The global system time. */ static uint32_t ulGetTimeFunction( void ) { static uint32_t systemTime = 0; if( systemTime >= MAX_NETWORK_SEND_TRIES ) { systemTime = systemTime + MQTT_SEND_TIMEOUT_MS + 1; } else { systemTime = systemTime + 1; } return systemTime; } void harness() { MQTTContext_t * pContext; MQTTSubscribeInfo_t * pSubscriptionList; size_t subscriptionCount; uint16_t packetId; pContext = allocateMqttContext( NULL ); __CPROVER_assume( isValidMqttContext( pContext ) ); if( pContext != NULL ) { pContext->getTime = ulGetTimeFunction; } /* Please see the default bound description on SUBSCRIPTION_COUNT_MAX in * mqtt_cbmc_state.c for more information. */ __CPROVER_assume( subscriptionCount < SUBSCRIPTION_COUNT_MAX ); pSubscriptionList = allocateMqttSubscriptionList( NULL, 1U ); __CPROVER_assume( isValidMqttSubscriptionList( pSubscriptionList, 1U ) ); MQTT_Unsubscribe( pContext, pSubscriptionList, subscriptionCount, packetId ); }