source: rtems/cpukit/libmisc/stackchk/check.c @ 13a69b9

4.115
Last change on this file since 13a69b9 was 13a69b9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/06/11 at 15:22:13

2011-12-06 Ralf Corsépius <ralf.corsepius@…>

  • libmisc/stackchk/check.c: Make Stack_check_Initialize, Stack_check_Dump_threads_usage static.
  • Property mode set to 100644
File size: 12.5 KB
Line 
1/*
2 *  Stack Overflow Check User Extension Set
3 *
4 *  NOTE:  This extension set automatically determines at
5 *         initialization time whether the stack for this
6 *         CPU grows up or down and installs the correct
7 *         extension routines for that direction.
8 *
9 *  COPYRIGHT (c) 1989-2010.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 *
16 *  $Id$
17 *
18 */
19
20#ifdef HAVE_CONFIG_H
21#include "config.h"
22#endif
23
24#include <rtems.h>
25#include <inttypes.h>
26
27/*
28 * The stack dump information may be printed by a "fatal" extension.
29 * Fatal extensions only get called via rtems_fatal_error_occurred()
30 * and not when rtems_shutdown_executive() is called.
31 * When that happens, this #define should be deleted and all the code
32 * it marks.
33 */
34#define DONT_USE_FATAL_EXTENSION
35
36#include <string.h>
37#include <stdlib.h>
38
39#include <rtems/bspIo.h>
40#include <rtems/stackchk.h>
41#include "internal.h"
42
43/*
44 *  Variable to indicate when the stack checker has been initialized.
45 */
46static int   Stack_check_Initialized = 0;
47
48/*
49 *  The "magic pattern" used to mark the end of the stack.
50 */
51Stack_check_Control Stack_check_Pattern;
52
53/*
54 * Helper function to report if the actual stack pointer is in range.
55 *
56 * NOTE: This uses a GCC specific method.
57 */
58static inline bool Stack_check_Frame_pointer_in_range(
59  Stack_Control *the_stack
60)
61{
62  #if defined(__GNUC__)
63    void *sp = __builtin_frame_address(0);
64
65    if ( sp < the_stack->area ) {
66      return false;
67    }
68    if ( sp > (the_stack->area + the_stack->size) ) {
69      return false;
70    }
71  #else
72    #error "How do I check stack bounds on a non-GNU compiler?"
73  #endif
74  return true;
75}
76
77/*
78 *  Where the pattern goes in the stack area is dependent upon
79 *  whether the stack grow to the high or low area of the memory.
80 */
81#if (CPU_STACK_GROWS_UP == TRUE)
82  #define Stack_check_Get_pattern( _the_stack ) \
83    ((char *)(_the_stack)->area + \
84         (_the_stack)->size - sizeof( Stack_check_Control ) )
85
86  #define Stack_check_Calculate_used( _low, _size, _high_water ) \
87      ((char *)(_high_water) - (char *)(_low))
88
89  #define Stack_check_usable_stack_start(_the_stack) \
90    ((_the_stack)->area)
91
92#else
93  /*
94   * We need this magic offset because during a task delete the task stack will
95   * be freed before we enter the task switch extension which checks the stack.
96   * The task stack free operation will write the next and previous pointers
97   * for the free list into this area.
98   */
99  #define Stack_check_Get_pattern( _the_stack ) \
100    ((char *)(_the_stack)->area + sizeof(Heap_Block) - HEAP_BLOCK_HEADER_SIZE)
101
102  #define Stack_check_Calculate_used( _low, _size, _high_water) \
103      ( ((char *)(_low) + (_size)) - (char *)(_high_water) )
104
105  #define Stack_check_usable_stack_start(_the_stack) \
106      ((char *)(_the_stack)->area + sizeof(Stack_check_Control))
107
108#endif
109
110/*
111 *  Obtain a properly typed pointer to the area to check.
112 */
113#define Stack_check_Get_pattern_area( _the_stack ) \
114  (Stack_check_Control *) Stack_check_Get_pattern( _the_stack )
115
116/*
117 *  The assumption is that if the pattern gets overwritten, the task
118 *  is too close.  This defines the usable stack memory.
119 */
120#define Stack_check_usable_stack_size(_the_stack) \
121    ((_the_stack)->size - sizeof(Stack_check_Control))
122
123#if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
124  /*
125   *  Did RTEMS allocate the interrupt stack? If so, put it in
126   *  Stack_Control format.
127   */
128  Stack_Control Stack_check_Interrupt_stack;
129#endif
130
131/*
132 *  Fill an entire stack area with BYTE_PATTERN.  This will be used
133 *  to check for amount of actual stack used.
134 */
135#define Stack_check_Dope_stack(_stack) \
136  memset((_stack)->area, BYTE_PATTERN, (_stack)->size)
137
138/*
139 *  Stack_check_Initialize
140 */
141static void Stack_check_Initialize( void )
142{
143  int       i;
144  uint32_t *p;
145  static    uint32_t pattern[ 4 ] = {
146    0xFEEDF00D, 0x0BAD0D06,  /* FEED FOOD to  BAD DOG */
147    0xDEADF00D, 0x600D0D06   /* DEAD FOOD but GOOD DOG */
148  };
149
150  if ( Stack_check_Initialized )
151    return;
152
153  /*
154   * Dope the pattern and fill areas
155   */
156  p = Stack_check_Pattern.pattern;
157  for ( i = 0; i < PATTERN_SIZE_WORDS; i++ ) {
158      p[i] = pattern[ i%4 ];
159  }
160
161  /*
162   * If appropriate, setup the interrupt stack for high water testing
163   * also.
164   */
165  #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
166    if (_CPU_Interrupt_stack_low && _CPU_Interrupt_stack_high) {
167      Stack_check_Interrupt_stack.area = _CPU_Interrupt_stack_low;
168      Stack_check_Interrupt_stack.size = (char *) _CPU_Interrupt_stack_high -
169                                  (char *) _CPU_Interrupt_stack_low;
170      Stack_check_Dope_stack(&Stack_check_Interrupt_stack);
171   }
172  #endif
173
174  Stack_check_Initialized = 1;
175}
176
177/*
178 *  rtems_stack_checker_create_extension
179 */
180bool rtems_stack_checker_create_extension(
181  Thread_Control *running __attribute__((unused)),
182  Thread_Control *the_thread
183)
184{
185  Stack_check_Initialize();
186
187  if (the_thread)
188    Stack_check_Dope_stack(&the_thread->Start.Initial_stack);
189
190  return true;
191}
192
193/*
194 *  rtems_stack_checker_Begin_extension
195 */
196void rtems_stack_checker_begin_extension(
197  Thread_Control *the_thread
198)
199{
200  Stack_check_Control  *the_pattern;
201
202  if ( the_thread->Object.id == 0 )        /* skip system tasks */
203    return;
204
205  the_pattern = Stack_check_Get_pattern_area(&the_thread->Start.Initial_stack);
206
207  *the_pattern = Stack_check_Pattern;
208}
209
210/*
211 *  Stack_check_report_blown_task
212 *
213 *  Report a blown stack.  Needs to be a separate routine
214 *  so that interrupt handlers can use this too.
215 *
216 *  NOTE: The system is in a questionable state... we may not get
217 *        the following message out.
218 */
219void Stack_check_report_blown_task(
220  Thread_Control *running,
221  bool pattern_ok
222) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
223
224void Stack_check_report_blown_task(Thread_Control *running, bool pattern_ok)
225{
226  Stack_Control *stack = &running->Start.Initial_stack;
227  void          *pattern_area = Stack_check_Get_pattern(stack);
228  char           name[32];
229
230  printk("BLOWN STACK!!!\n");
231  printk("task control block: 0x%08" PRIxPTR "\n", running);
232  printk("task ID: 0x%08lx\n", (unsigned long) running->Object.id);
233  printk(
234    "task name: 0x%08" PRIx32 "\n",
235    running->Object.name.name_u32
236  );
237  printk(
238    "task name string: %s\n",
239    rtems_object_get_name(running->Object.id, sizeof(name), name)
240  );
241  printk(
242    "task stack area (%lu Bytes): 0x%08" PRIxPTR " .. 0x%08" PRIxPTR "\n",
243    (unsigned long) stack->size,
244    stack->area,
245    ((char *) stack->area + stack->size)
246  );
247  if (!pattern_ok) {
248    printk(
249      "damaged pattern area (%lu Bytes): 0x%08" PRIxPTR " .. 0x%08" PRIxPTR "\n",
250      (unsigned long) PATTERN_SIZE_BYTES,
251      pattern_area,
252      (pattern_area + PATTERN_SIZE_BYTES)
253    );
254  }
255
256  #if defined(RTEMS_MULTIPROCESSING)
257    if (rtems_configuration_get_user_multiprocessing_table()) {
258      printk(
259        "node: 0x%08" PRIxPTR "\n",
260          rtems_configuration_get_user_multiprocessing_table()->node
261      );
262    }
263  #endif
264
265  rtems_fatal_error_occurred(0x81);
266}
267
268/*
269 *  rtems_stack_checker_switch_extension
270 */
271void rtems_stack_checker_switch_extension(
272  Thread_Control *running __attribute__((unused)),
273  Thread_Control *heir __attribute__((unused))
274)
275{
276  Stack_Control *the_stack = &running->Start.Initial_stack;
277  void          *pattern;
278  bool           sp_ok;
279  bool           pattern_ok = true;
280
281  pattern = Stack_check_Get_pattern_area(the_stack);
282
283  /*
284   *  Check for an out of bounds stack pointer or an overwrite
285   */
286  sp_ok = Stack_check_Frame_pointer_in_range( the_stack );
287
288  pattern_ok = (!memcmp( pattern,
289            (void *) Stack_check_Pattern.pattern, PATTERN_SIZE_BYTES));
290
291  if ( !sp_ok || !pattern_ok ) {
292    Stack_check_report_blown_task( running, pattern_ok );
293  }
294}
295
296/*
297 *  Check if blown
298 */
299bool rtems_stack_checker_is_blown( void )
300{
301  Stack_Control *the_stack = &_Thread_Executing->Start.Initial_stack;
302  bool           sp_ok;
303  bool           pattern_ok = true;
304
305  /*
306   *  Check for an out of bounds stack pointer
307   */
308
309  sp_ok = Stack_check_Frame_pointer_in_range( the_stack );
310
311  /*
312   * The stack checker must be initialized before the pattern is there
313   * to check.
314   */
315  if ( Stack_check_Initialized ) {
316    pattern_ok = (!memcmp(
317      Stack_check_Get_pattern(the_stack),
318      (void *) Stack_check_Pattern.pattern,
319      PATTERN_SIZE_BYTES
320    ));
321  }
322
323
324  /*
325   * Let's report as much as we can.
326   */
327  if ( !sp_ok || !pattern_ok ) {
328    Stack_check_report_blown_task( _Thread_Executing, pattern_ok );
329    /* DOES NOT RETURN */
330  }
331
332  /*
333   * The Stack Pointer and the Pattern Area are OK so return false.
334   */
335  return false;
336}
337
338/*
339 * Stack_check_find_high_water_mark
340 */
341static inline void *Stack_check_find_high_water_mark(
342  const void *s,
343  size_t      n
344)
345{
346  const uint32_t   *base, *ebase;
347  uint32_t   length;
348
349  base = s;
350  length = n/4;
351
352  #if ( CPU_STACK_GROWS_UP == TRUE )
353    /*
354     * start at higher memory and find first word that does not
355     * match pattern
356     */
357
358    base += length - 1;
359    for (ebase = s; base > ebase; base--)
360      if (*base != U32_PATTERN)
361        return (void *) base;
362  #else
363    /*
364     * start at lower memory and find first word that does not
365     * match pattern
366     */
367
368    base += PATTERN_SIZE_WORDS;
369    for (ebase = base + length; base < ebase; base++)
370      if (*base != U32_PATTERN)
371        return (void *) base;
372  #endif
373
374  return (void *)0;
375}
376
377/*
378 *  Stack_check_Dump_threads_usage
379 *
380 *  Try to print out how much stack was actually used by the task.
381 */
382static void                   *print_context;
383static rtems_printk_plugin_t   print_handler;
384
385static void Stack_check_Dump_threads_usage(
386  Thread_Control *the_thread
387)
388{
389  uint32_t        size, used;
390  void           *low;
391  void           *high_water_mark;
392  void           *current;
393  Stack_Control  *stack;
394  char            name[5];
395
396  /*
397   *  The pointer passed in for the_thread is guaranteed to be non-NULL from
398   *  rtems_iterate_over_all_threads() so no need to check it here.
399   */
400
401  /*
402   *  Obtain interrupt stack information
403   */
404  #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
405    if (the_thread == (Thread_Control *) -1) {
406      if (!Stack_check_Interrupt_stack.area)
407        return;
408      stack = &Stack_check_Interrupt_stack;
409      the_thread = 0;
410      current = 0;
411    } else
412  #endif
413    {
414      stack  = &the_thread->Start.Initial_stack;
415      current = (void *)_CPU_Context_Get_SP( &the_thread->Registers );
416    }
417
418  low  = Stack_check_usable_stack_start(stack);
419  size = Stack_check_usable_stack_size(stack);
420
421  high_water_mark = Stack_check_find_high_water_mark(low, size);
422
423  if ( high_water_mark )
424    used = Stack_check_Calculate_used( low, size, high_water_mark );
425  else
426    used = 0;
427
428
429  #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
430    if ( the_thread )
431  #endif
432    {
433      (*print_handler)(
434        print_context,
435        "0x%08" PRIx32 "  %4s",
436        the_thread->Object.id,
437        rtems_object_get_name( the_thread->Object.id, sizeof(name), name )
438      );
439    }
440    #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
441      else {
442        (*print_handler)( print_context, "0x%08" PRIx32 "  INTR", ~0 );
443      }
444    #endif
445
446  (*print_handler)(
447    print_context,
448    " %010p - %010p %010p  %8" PRId32 "   ",
449    stack->area,
450    stack->area + stack->size - 1,
451    current,
452    size
453  );
454
455  if (Stack_check_Initialized == 0) {
456    (*print_handler)( print_context, "Unavailable\n" );
457  } else {
458    (*print_handler)( print_context, "%8" PRId32 "\n", used );
459  }
460
461
462}
463
464/*
465 *  rtems_stack_checker_fatal_extension
466 */
467#ifndef DONT_USE_FATAL_EXTENSION
468  void rtems_stack_checker_fatal_extension(
469    Internal_errors_Source  source,
470    bool                    is_internal,
471    uint32_t                status
472  )
473  {
474    if (status == 0)
475      rtems_stack_checker_report_usage();
476  }
477#endif
478
479/*
480 *  rtems_stack_checker_report_usage
481 */
482
483void rtems_stack_checker_report_usage_with_plugin(
484  void                  *context,
485  rtems_printk_plugin_t  print
486)
487{
488  if ( !print )
489    return;
490
491  print_context = context;
492  print_handler = print;
493
494  (*print)( context, "Stack usage by thread\n");
495  (*print)( context,
496"    ID      NAME    LOW          HIGH     CURRENT     AVAILABLE     USED\n"
497  );
498
499  /* iterate over all threads and dump the usage */
500  rtems_iterate_over_all_threads( Stack_check_Dump_threads_usage );
501
502  #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
503    /* dump interrupt stack info if any */
504    Stack_check_Dump_threads_usage((Thread_Control *) -1);
505  #endif
506
507  print_context = NULL;
508  print_handler = NULL;
509}
510
511void rtems_stack_checker_report_usage( void )
512{
513  rtems_stack_checker_report_usage_with_plugin( NULL, printk_plugin );
514}
Note: See TracBrowser for help on using the repository browser.