summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsebastian.huber <sebastian.huber@ad346e48-6743-2946-b04c-964484d2d4e6>2019-10-25 13:19:01 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-11-05 07:29:00 +0100
commit3859cd63afb4cb5f76d125e80f968497478d553f (patch)
tree642d9c6e78f2fa8dcb1d027496cfb9ca1c710d49
parentbsps/arm: Add support for small pages MMU (diff)
downloadrtems-3859cd63afb4cb5f76d125e80f968497478d553f.tar.bz2
rtems-5: Improve heap fatal error information
Update #3806.
-rw-r--r--cpukit/include/rtems/score/heap.h64
-rw-r--r--cpukit/include/rtems/score/heapimpl.h7
-rw-r--r--cpukit/include/rtems/score/interr.h7
-rw-r--r--cpukit/sapi/src/fatalsrctext.c5
-rw-r--r--cpukit/score/src/heap.c14
-rw-r--r--cpukit/score/src/heapallocate.c6
-rw-r--r--cpukit/score/src/heapfree.c6
-rw-r--r--testsuites/sptests/spinternalerror02/init.c2
-rw-r--r--testsuites/sptests/spinternalerror02/spinternalerror02.scn1
9 files changed, 97 insertions, 15 deletions
diff --git a/cpukit/include/rtems/score/heap.h b/cpukit/include/rtems/score/heap.h
index 668a0b7d01..4b620b2715 100644
--- a/cpukit/include/rtems/score/heap.h
+++ b/cpukit/include/rtems/score/heap.h
@@ -134,6 +134,62 @@ typedef struct Heap_Control Heap_Control;
typedef struct Heap_Block Heap_Block;
+/**
+ * @brief The heap error reason.
+ *
+ * @see _Heap_Protection_block_error().
+ */
+typedef enum {
+ /**
+ * @brief There is an unexpected value in the heap block protector area.
+ */
+ HEAP_ERROR_BROKEN_PROTECTOR,
+
+ /**
+ * @brief There is an unexpected value in the free pattern of a free heap
+ * block.
+ */
+ HEAP_ERROR_FREE_PATTERN,
+
+ /**
+ * @brief There is was an attempt to free the same block twice.
+ */
+ HEAP_ERROR_DOUBLE_FREE,
+
+ /**
+ * @brief The next block of a supposed to be used block does not indicate that
+ * the block is used.
+ */
+ HEAP_ERROR_BAD_USED_BLOCK,
+
+ /**
+ * @brief A supposed to be free block is not inside the heap memory area.
+ */
+ HEAP_ERROR_BAD_FREE_BLOCK
+} Heap_Error_reason;
+
+/**
+ * @brief Context of a heap error.
+ *
+ * @see _Heap_Protection_block_error().
+ */
+typedef struct {
+ /**
+ * @brief The heap of the block.
+ */
+ Heap_Control *heap;
+
+ /**
+ * @brief The heap block causing the error.
+ */
+ Heap_Block *block;
+
+ /**
+ * @brief The heap error reason.
+ */
+ Heap_Error_reason reason;
+} Heap_Error_context;
+
#ifndef HEAP_PROTECTION
#define HEAP_PROTECTION_HEADER_SIZE 0
#else
@@ -153,10 +209,16 @@ typedef struct Heap_Block Heap_Block;
Heap_Block *block
);
+ typedef void (*_Heap_Protection_error_handler)(
+ Heap_Control *heap,
+ Heap_Block *block,
+ Heap_Error_reason reason
+ );
+
typedef struct {
_Heap_Protection_handler block_initialize;
_Heap_Protection_handler block_check;
- _Heap_Protection_handler block_error;
+ _Heap_Protection_error_handler block_error;
void *handler_data;
Heap_Block *first_delayed_free_block;
Heap_Block *last_delayed_free_block;
diff --git a/cpukit/include/rtems/score/heapimpl.h b/cpukit/include/rtems/score/heapimpl.h
index cd213ec2d8..d3ee0ff88a 100644
--- a/cpukit/include/rtems/score/heapimpl.h
+++ b/cpukit/include/rtems/score/heapimpl.h
@@ -379,7 +379,7 @@ Heap_Block *_Heap_Block_allocate(
#ifndef HEAP_PROTECTION
#define _Heap_Protection_block_initialize( heap, block ) ((void) 0)
#define _Heap_Protection_block_check( heap, block ) ((void) 0)
- #define _Heap_Protection_block_error( heap, block ) ((void) 0)
+ #define _Heap_Protection_block_error( heap, block, reason ) ((void) 0)
#define _Heap_Protection_free_all_delayed_blocks( heap ) ((void) 0)
#else
static inline void _Heap_Protection_block_initialize(
@@ -400,10 +400,11 @@ Heap_Block *_Heap_Block_allocate(
static inline void _Heap_Protection_block_error(
Heap_Control *heap,
- Heap_Block *block
+ Heap_Block *block,
+ Heap_Error_reason reason
)
{
- (*heap->Protection.block_error)( heap, block );
+ (*heap->Protection.block_error)( heap, block, reason );
}
static inline void _Heap_Protection_free_all_delayed_blocks( Heap_Control *heap )
diff --git a/cpukit/include/rtems/score/interr.h b/cpukit/include/rtems/score/interr.h
index 73b3b077e3..544ad7ab9e 100644
--- a/cpukit/include/rtems/score/interr.h
+++ b/cpukit/include/rtems/score/interr.h
@@ -140,6 +140,13 @@ typedef enum {
RTEMS_FATAL_SOURCE_INVALID_HEAP_FREE = 12,
/**
+ * @brief Fatal source for heap errors.
+ *
+ * The fatal code is the address to a heap error context (Heap_Error_context).
+ */
+ RTEMS_FATAL_SOURCE_HEAP = 13,
+
+ /**
* @brief The last available fatal source.
*
* This enum value ensures that the enum type needs at least 32-bits for
diff --git a/cpukit/sapi/src/fatalsrctext.c b/cpukit/sapi/src/fatalsrctext.c
index 2331b6c758..d130ae011a 100644
--- a/cpukit/sapi/src/fatalsrctext.c
+++ b/cpukit/sapi/src/fatalsrctext.c
@@ -7,7 +7,7 @@
*/
/*
- * Copyright (c) 2013, 2018 embedded brains GmbH. All rights reserved.
+ * Copyright (c) 2013, 2019 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
* Dornierstr. 4
@@ -39,7 +39,8 @@ static const char *const fatal_source_text[] = {
"RTEMS_FATAL_SOURCE_EXCEPTION",
"RTEMS_FATAL_SOURCE_SMP",
"RTEMS_FATAL_SOURCE_PANIC",
- "RTEMS_FATAL_SOURCE_INVALID_HEAP_FREE"
+ "RTEMS_FATAL_SOURCE_INVALID_HEAP_FREE",
+ "RTEMS_FATAL_SOURCE_HEAP"
};
const char *rtems_fatal_source_text( rtems_fatal_source source )
diff --git a/cpukit/score/src/heap.c b/cpukit/score/src/heap.c
index 371944160c..a67fef783a 100644
--- a/cpukit/score/src/heap.c
+++ b/cpukit/score/src/heap.c
@@ -147,17 +147,23 @@
|| block->Protection_end.protector [0] != HEAP_END_PROTECTOR_0
|| block->Protection_end.protector [1] != HEAP_END_PROTECTOR_1
) {
- _Heap_Protection_block_error( heap, block );
+ _Heap_Protection_block_error( heap, block, HEAP_ERROR_BROKEN_PROTECTOR );
}
}
static void _Heap_Protection_block_error_default(
Heap_Control *heap,
- Heap_Block *block
+ Heap_Block *block,
+ Heap_Error_reason reason
)
{
- /* FIXME */
- _Terminate( INTERNAL_ERROR_CORE, 0xdeadbeef );
+ Heap_Error_context error_context = {
+ .heap = heap,
+ .block = block,
+ .reason = reason
+ };
+
+ _Terminate( RTEMS_FATAL_SOURCE_HEAP, (uintptr_t) &error_context );
}
#endif
diff --git a/cpukit/score/src/heapallocate.c b/cpukit/score/src/heapallocate.c
index 3984881835..2868fe5d46 100644
--- a/cpukit/score/src/heapallocate.c
+++ b/cpukit/score/src/heapallocate.c
@@ -45,7 +45,11 @@
Heap_Block *next_block_to_free;
if ( !_Heap_Is_block_in_heap( heap, block_to_free ) ) {
- _Heap_Protection_block_error( heap, block_to_free );
+ _Heap_Protection_block_error(
+ heap,
+ block_to_free,
+ HEAP_ERROR_BAD_FREE_BLOCK
+ );
}
next_block_to_free =
diff --git a/cpukit/score/src/heapfree.c b/cpukit/score/src/heapfree.c
index 04994c507b..ddc1634975 100644
--- a/cpukit/score/src/heapfree.c
+++ b/cpukit/score/src/heapfree.c
@@ -69,7 +69,7 @@
for ( current = pattern_begin; current != pattern_end; ++current ) {
if ( *current != HEAP_FREE_PATTERN ) {
- _Heap_Protection_block_error( heap, block );
+ _Heap_Protection_block_error( heap, block, HEAP_ERROR_FREE_PATTERN );
break;
}
}
@@ -89,7 +89,7 @@
} else if ( next == HEAP_PROTECTION_OBOLUS ) {
_Heap_Protection_check_free_block( heap, block );
} else {
- _Heap_Protection_block_error( heap, block );
+ _Heap_Protection_block_error( heap, block, HEAP_ERROR_DOUBLE_FREE );
}
return do_free;
@@ -134,7 +134,7 @@ bool _Heap_Free( Heap_Control *heap, void *alloc_begin_ptr )
_Heap_Protection_block_check( heap, next_block );
if ( !_Heap_Is_prev_used( next_block ) ) {
- _Heap_Protection_block_error( heap, block );
+ _Heap_Protection_block_error( heap, block, HEAP_ERROR_BAD_USED_BLOCK );
return false;
}
diff --git a/testsuites/sptests/spinternalerror02/init.c b/testsuites/sptests/spinternalerror02/init.c
index 43ef3f3baa..c2816dff75 100644
--- a/testsuites/sptests/spinternalerror02/init.c
+++ b/testsuites/sptests/spinternalerror02/init.c
@@ -53,7 +53,7 @@ static void test_fatal_source_text(void)
puts( text );
} while ( text != text_last );
- rtems_test_assert( source - 3 == RTEMS_FATAL_SOURCE_INVALID_HEAP_FREE );
+ rtems_test_assert( source - 3 == RTEMS_FATAL_SOURCE_HEAP );
}
static void test_status_text(void)
diff --git a/testsuites/sptests/spinternalerror02/spinternalerror02.scn b/testsuites/sptests/spinternalerror02/spinternalerror02.scn
index b081f4787a..f26cc88a55 100644
--- a/testsuites/sptests/spinternalerror02/spinternalerror02.scn
+++ b/testsuites/sptests/spinternalerror02/spinternalerror02.scn
@@ -59,6 +59,7 @@ RTEMS_FATAL_SOURCE_EXCEPTION
RTEMS_FATAL_SOURCE_SMP
RTEMS_FATAL_SOURCE_PANIC
RTEMS_FATAL_SOURCE_INVALID_HEAP_FREE
+RTEMS_FATAL_SOURCE_HEAP
?
?
RTEMS_SUCCESSFUL