mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
55a2b55bdb
This commit extends the heap test set by adding a test to check corruption detection in free memory block. For each byte of the free block memory, the test changes the value of the byte, call multi_heap_check(), make sure that the function returns 'corruption detected' only when comprehensive poisoning is set, restore the good value of the byte, calls multi_heap_check() again and make sure that it returns 'OK'.
65 lines
2.2 KiB
C
65 lines
2.2 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
*/
|
|
#include "unity.h"
|
|
#include "stdio.h"
|
|
|
|
#include "esp_heap_caps.h"
|
|
|
|
/* executing multi_heap_internal_check_block_poisoning()
|
|
* takes longer on external RAM and therefore the timeout
|
|
* in the test of 30 seconds is exceeded. Execute the test
|
|
* on a smaller memory chunk
|
|
*/
|
|
#ifdef CONFIG_SPIRAM
|
|
const size_t MALLOC_SIZE = 16;
|
|
#else
|
|
const size_t MALLOC_SIZE = 64;
|
|
#endif
|
|
const uint8_t CORRUPTED_VALUE = 0xaa;
|
|
|
|
/* This test will corrupt the memory of a free block in the heap and check
|
|
* that in the case of comprehensive poisoning the heap corruption is detected
|
|
* by heap_caps_check_integrity(). For light poisoning and no poisoning, the test will
|
|
* check that heap_caps_check_integrity() does not report the corruption.
|
|
*/
|
|
TEST_CASE("multi_heap poisoning detection", "[heap]")
|
|
{
|
|
/* malloc some memory to get a pointer */
|
|
uint8_t *ptr = heap_caps_malloc(MALLOC_SIZE, MALLOC_CAP_8BIT);
|
|
|
|
/* free the memory to free the block but keep the pointer in mind */
|
|
heap_caps_free(ptr);
|
|
|
|
/* variable used in the test */
|
|
uint8_t original_value = 0x00;
|
|
|
|
for (size_t i = 0; i < MALLOC_SIZE; i++)
|
|
{
|
|
/* keep the good value in store in order to check that when we set the byte back
|
|
* to its original value, heap_caps_check_integrity() no longer returns the
|
|
* heap corruption. */
|
|
original_value = ptr[i];
|
|
|
|
/* set corrupted value in the free memory*/
|
|
ptr[i] = CORRUPTED_VALUE;
|
|
|
|
bool is_heap_ok = heap_caps_check_integrity(MALLOC_CAP_8BIT, true);
|
|
#ifdef CONFIG_HEAP_POISONING_COMPREHENSIVE
|
|
/* check that heap_caps_check_integrity() detects the corruption */
|
|
TEST_ASSERT_FALSE(is_heap_ok);
|
|
#else
|
|
/* the comprehensive corruption is not checked in the heap_caps_check_integrity() */
|
|
TEST_ASSERT_TRUE(is_heap_ok);
|
|
#endif
|
|
/* fix the corruption by restoring the original value at ptr + i */
|
|
ptr[i] = original_value;
|
|
|
|
/* check that heap_caps_check_integrity() stops reporting the corruption */
|
|
is_heap_ok = heap_caps_check_integrity(MALLOC_CAP_8BIT, true);
|
|
TEST_ASSERT_TRUE(is_heap_ok);
|
|
}
|
|
}
|