source: rtems/c/src/lib/libmisc/stackchk/check.c @ 196094eb

4.104.114.84.95
Last change on this file since 196094eb was bfc3533, checked in by Joel Sherrill <joel.sherrill@…>, on 12/01/98 at 13:56:46

Include files now installed as <rtems/*.h>.

  • Property mode set to 100644
File size: 12.6 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-1998.
10 *  On-Line Applications Research Corporation (OAR).
11 *  Copyright assigned to U.S. Government, 1994.
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.OARcorp.com/rtems/license.html.
16 *
17 *  $Id$
18 *
19 */
20
21#include <rtems.h>
22
23/*
24 * HACK
25 * the stack dump information should be printed by a "fatal" extension.
26 * Fatal extensions only get called via rtems_fatal_error_occurred()
27 * and not when rtems_shutdown_executive() is called.
28 * I hope/think this is changing so that fatal extensions are renamed
29 * to "shutdown" extensions.
30 * When that happens, this #define should be deleted and all the code
31 * it marks.
32 */
33#define DONT_USE_FATAL_EXTENSION
34
35
36extern rtems_configuration_table BSP_Configuration;
37
38#include <assert.h>
39#include <stdio.h>
40#include <string.h>
41#include <stdlib.h>
42
43#include <rtems/stackchk.h>
44#include "internal.h"
45
46/*
47 *  This variable contains the name of the task which "blew" the stack.
48 *  It is NULL if the system is all right.
49 */
50
51Thread_Control *Stack_check_Blown_task;
52
53/*
54 *  The extension table for the stack checker.
55 */
56
57rtems_extensions_table Stack_check_Extension_table = {
58  Stack_check_Create_extension,     /* rtems_task_create  */
59  0,                                /* rtems_task_start   */
60  0,                                /* rtems_task_restart */
61  0,                                /* rtems_task_delete  */
62  Stack_check_Switch_extension,     /* task_switch  */
63  Stack_check_Begin_extension,      /* task_begin   */
64  0,                                /* task_exitted */
65#ifdef DONT_USE_FATAL_EXTENSION
66  0,                                /* fatal        */
67#else
68  Stack_check_Fatal_extension,      /* fatal        */
69#endif
70};
71
72/*
73 *  The "magic pattern" used to mark the end of the stack.
74 */
75
76Stack_check_Control Stack_check_Pattern;
77
78/*
79 *  Where the pattern goes in the stack area is dependent upon
80 *  whether the stack grow to the high or low area of the memory.
81 *
82 */
83
84#if ( CPU_STACK_GROWS_UP == TRUE )
85
86#define Stack_check_Get_pattern_area( _the_stack ) \
87  ((Stack_check_Control *) ((char *)(_the_stack)->area + \
88       (_the_stack)->size - sizeof( Stack_check_Control ) ))
89
90#define Stack_check_Calculate_used( _low, _size, _high_water ) \
91    ((char *)(_high_water) - (char *)(_low))
92
93#define Stack_check_usable_stack_start(_the_stack) \
94    ((_the_stack)->area)
95
96#else
97
98#define Stack_check_Get_pattern_area( _the_stack ) \
99  ((Stack_check_Control *) ((char *)(_the_stack)->area + HEAP_OVERHEAD))
100
101#define Stack_check_Calculate_used( _low, _size, _high_water) \
102    ( ((char *)(_low) + (_size)) - (char *)(_high_water) )
103
104#define Stack_check_usable_stack_start(_the_stack) \
105    ((char *)(_the_stack)->area + sizeof(Stack_check_Control))
106
107#endif
108
109#define Stack_check_usable_stack_size(_the_stack) \
110    ((_the_stack)->size - sizeof(Stack_check_Control))
111
112
113/*
114 * Do we have an interrupt stack?
115 * XXX it would sure be nice if the interrupt stack were also
116 *     stored in a "stack" structure!
117 */
118
119
120Stack_Control stack_check_interrupt_stack;
121
122/*
123 * Prototypes necessary for forward references
124 */
125
126void Stack_check_Dump_usage( void );
127
128/*
129 * Fill an entire stack area with BYTE_PATTERN.
130 * This will be used by a Fatal extension to check for
131 * amount of actual stack used
132 */
133
134void
135stack_check_dope_stack(Stack_Control *stack)
136{
137    memset(stack->area, BYTE_PATTERN, stack->size);
138}
139
140
141/*PAGE
142 *
143 *  Stack_check_Initialize
144 */
145
146unsigned32 stack_check_initialized = 0;
147
148void Stack_check_Initialize( void )
149{
150#if 0
151  rtems_status_code    status;
152  Objects_Id           id_ignored;
153#endif
154  unsigned32          *p;
155#if 0
156  unsigned32           i;
157  unsigned32           class_index;
158  Thread_Control      *the_thread;
159  Objects_Information *information;
160#endif
161
162  if (stack_check_initialized)
163      return;
164
165  /*
166   * Dope the pattern and fill areas
167   */
168
169  for ( p = Stack_check_Pattern.pattern;
170        p < &Stack_check_Pattern.pattern[PATTERN_SIZE_WORDS];
171        p += 4
172      )
173  {
174      p[0] = 0xFEEDF00D;          /* FEED FOOD to BAD DOG */
175      p[1] = 0x0BAD0D06;
176      p[2] = 0xDEADF00D;          /* DEAD FOOD GOOD DOG */
177      p[3] = 0x600D0D06;
178  };
179
180#if 0
181  status = rtems_extension_create(
182    rtems_build_name( 'S', 'T', 'C', 'K' ),
183    &Stack_check_Extension_table,
184    &id_ignored
185  );
186  assert ( status == RTEMS_SUCCESSFUL );
187#endif
188
189  Stack_check_Blown_task = 0;
190
191  /*
192   * If installed by a task, that task will not get setup properly
193   * since it missed out on the create hook.  This will cause a
194   * failure on first switch out of that task.
195   * So pretend here that we actually ran create and begin extensions.
196   */
197
198  /* XXX
199   *
200   *  Technically this has not been done for any task created before this
201   *  happened.  So just run through them and fix the situation.
202   */
203#if 0
204  if (_Thread_Executing)
205  {
206      Stack_check_Create_extension(_Thread_Executing, _Thread_Executing);
207  }
208#endif
209
210#if 0
211  for ( class_index = OBJECTS_CLASSES_FIRST ;
212        class_index <= OBJECTS_CLASSES_LAST ;
213        class_index++ ) {
214    information = _Objects_Information_table[ class_index ];
215    if ( information && information->is_thread ) {
216      for ( i=1 ; i <= information->maximum ; i++ ) {
217        the_thread = (Thread_Control *)information->local_table[ i ];
218        Stack_check_Create_extension( the_thread, the_thread );
219      }
220    }
221  }
222#endif
223
224  /*
225   * If appropriate, setup the interrupt stack for high water testing
226   * also.
227   */
228  if (_CPU_Interrupt_stack_low && _CPU_Interrupt_stack_high)
229  {
230      stack_check_interrupt_stack.area = _CPU_Interrupt_stack_low;
231      stack_check_interrupt_stack.size = (char *) _CPU_Interrupt_stack_high -
232                                              (char *) _CPU_Interrupt_stack_low;
233
234      stack_check_dope_stack(&stack_check_interrupt_stack);
235  }
236
237#ifdef DONT_USE_FATAL_EXTENSION
238#ifdef RTEMS_DEBUG
239    /*
240     * this would normally be called by a fatal extension
241     * handler, but we don't run fatal extensions unless
242     * we fatal error.
243     */
244  atexit(Stack_check_Dump_usage);
245#endif
246#endif
247
248  stack_check_initialized = 1;
249}
250
251/*PAGE
252 *
253 *  Stack_check_Create_extension
254 */
255
256boolean Stack_check_Create_extension(
257  Thread_Control *running,
258  Thread_Control *the_thread
259)
260{
261    if (!stack_check_initialized)
262      Stack_check_Initialize();
263
264    if (the_thread /* XXX && (the_thread != _Thread_Executing) */ )
265        stack_check_dope_stack(&the_thread->Start.Initial_stack);
266
267    return TRUE;
268}
269
270/*PAGE
271 *
272 *  Stack_check_Begin_extension
273 */
274
275void Stack_check_Begin_extension(
276  Thread_Control *the_thread
277)
278{
279  Stack_check_Control  *the_pattern;
280
281  if (!stack_check_initialized)
282    Stack_check_Initialize();
283
284  if ( the_thread->Object.id == 0 )        /* skip system tasks */
285    return;
286
287  the_pattern = Stack_check_Get_pattern_area(&the_thread->Start.Initial_stack);
288
289  *the_pattern = Stack_check_Pattern;
290}
291
292/*PAGE
293 *
294 *  Stack_check_report_blown_task
295 *  Report a blown stack.  Needs to be a separate routine
296 *  so that interrupt handlers can use this too.
297 *
298 *  Caller must have set the Stack_check_Blown_task.
299 *
300 *  NOTE: The system is in a questionable state... we may not get
301 *        the following message out.
302 */
303
304void Stack_check_report_blown_task(void)
305{
306    Stack_Control *stack;
307    Thread_Control *running;
308
309    running = Stack_check_Blown_task;
310    stack = &running->Start.Initial_stack;
311
312    fprintf(
313        stderr,
314        "BLOWN STACK!!! Offending task(%p): id=0x%08x; name=0x%08x",
315        running,
316        running->Object.id,
317        *(unsigned32 *)running->Object.name
318    );
319    fflush(stderr);
320
321    if (BSP_Configuration.User_multiprocessing_table)
322        fprintf(
323          stderr,
324          "; node=%d\n",
325          BSP_Configuration.User_multiprocessing_table->node
326       );
327    else
328        fprintf(stderr, "\n");
329    fflush(stderr);
330
331    fprintf(
332        stderr,
333        "  stack covers range 0x%08x - 0x%08x (%d bytes)\n",
334        (unsigned32) stack->area,
335        (unsigned32) stack->area + stack->size - 1,
336        (unsigned32) stack->size);
337    fflush(stderr);
338
339    fprintf(
340        stderr,
341        "  Damaged pattern begins at 0x%08x and is %d bytes long\n",
342        (unsigned32) Stack_check_Get_pattern_area(stack), PATTERN_SIZE_BYTES);
343    fflush(stderr);
344
345    rtems_fatal_error_occurred( (unsigned32) "STACK BLOWN" );
346}
347
348/*PAGE
349 *
350 *  Stack_check_Switch_extension
351 */
352
353void Stack_check_Switch_extension(
354  Thread_Control *running,
355  Thread_Control *heir
356)
357{
358  if ( running->Object.id == 0 )        /* skip system tasks */
359    return;
360
361  if (0 != memcmp( (void *) Stack_check_Get_pattern_area( &running->Start.Initial_stack)->pattern,
362                  (void *) Stack_check_Pattern.pattern,
363                  PATTERN_SIZE_BYTES))
364  {
365      Stack_check_Blown_task = running;
366      Stack_check_report_blown_task();
367  }
368}
369
370void *Stack_check_find_high_water_mark(
371  const void *s,
372  size_t n
373)
374{
375  const unsigned32 *base, *ebase;
376  unsigned32 length;
377
378  base = s;
379  length = n/4;
380
381#if ( CPU_STACK_GROWS_UP == TRUE )
382  /*
383   * start at higher memory and find first word that does not
384   * match pattern
385   */
386
387  base += length - 1;
388  for (ebase = s; base > ebase; base--)
389      if (*base != U32_PATTERN)
390          return (void *) base;
391#else
392  /*
393   * start at lower memory and find first word that does not
394   * match pattern
395   */
396
397  base += PATTERN_SIZE_WORDS;
398  for (ebase = base + length; base < ebase; base++)
399      if (*base != U32_PATTERN)
400          return (void *) base;
401#endif
402
403  return (void *)0;
404}
405
406/*PAGE
407 *
408 *  Stack_check_Dump_threads_usage
409 *  Try to print out how much stack was actually used by the task.
410 *
411 */
412
413void Stack_check_Dump_threads_usage(
414  Thread_Control *the_thread
415)
416{
417  unsigned32      size, used;
418  void           *low;
419  void           *high_water_mark;
420  Stack_Control  *stack;
421  unsigned32      u32_name;
422  char            name[5];
423
424
425  if ( !the_thread )
426    return;
427
428  /*
429   * XXX HACK to get to interrupt stack
430   */
431
432  if (the_thread == (Thread_Control *) -1)
433  {
434      if (stack_check_interrupt_stack.area)
435      {
436          stack = &stack_check_interrupt_stack;
437          the_thread = 0;
438      }
439      else
440          return;
441  }
442  else
443      stack = &the_thread->Start.Initial_stack;
444
445  low  = Stack_check_usable_stack_start(stack);
446  size = Stack_check_usable_stack_size(stack);
447
448  high_water_mark = Stack_check_find_high_water_mark(low, size);
449
450  if ( high_water_mark )
451    used = Stack_check_Calculate_used( low, size, high_water_mark );
452  else
453    used = 0;
454
455  if ( the_thread )
456    u32_name = *(unsigned32 *)the_thread->Object.name;
457  else
458    u32_name = rtems_build_name('I', 'N', 'T', 'R');
459
460  name[ 0 ] = (u32_name >> 24) & 0xff;
461  name[ 1 ] = (u32_name >> 16) & 0xff;
462  name[ 2 ] = (u32_name >>  8) & 0xff;
463  name[ 3 ] = (u32_name >>  0) & 0xff;
464  name[ 4 ] = '\0';
465
466  printf( "0x%08x  %4s  0x%08x  0x%08x   %8d   %8d\n",
467          the_thread ? the_thread->Object.id : ~0,
468          name,
469          (unsigned32) stack->area,
470          (unsigned32) stack->area + (unsigned32) stack->size - 1,
471          size,
472          used
473  );
474}
475
476/*PAGE
477 *
478 *  Stack_check_Fatal_extension
479 */
480
481void Stack_check_Fatal_extension(
482    Internal_errors_Source  source,
483    boolean                 is_internal,
484    unsigned32              status
485)
486{
487#ifndef DONT_USE_FATAL_EXTENSION
488    if (status == 0)
489        Stack_check_Dump_usage();
490#endif
491}
492
493
494/*PAGE
495 *
496 *  Stack_check_Dump_usage
497 */
498
499void Stack_check_Dump_usage( void )
500{
501  unsigned32           i;
502  unsigned32           class_index;
503  Thread_Control      *the_thread;
504  unsigned32           hit_running = 0;
505  Objects_Information *information;
506
507  if (stack_check_initialized == 0)
508      return;
509
510  printf("Stack usage by thread\n");
511  printf(
512    "    ID      NAME       LOW        HIGH     AVAILABLE      USED\n"
513  );
514
515  for ( class_index = OBJECTS_CLASSES_FIRST ;
516        class_index <= OBJECTS_CLASSES_LAST ;
517        class_index++ ) {
518    information = _Objects_Information_table[ class_index ];
519    if ( information && information->is_thread ) {
520      for ( i=1 ; i <= information->maximum ; i++ ) {
521        the_thread = (Thread_Control *)information->local_table[ i ];
522        Stack_check_Dump_threads_usage( the_thread );
523        if ( the_thread == _Thread_Executing )
524          hit_running = 1;
525      }
526    }
527  }
528
529  if ( !hit_running )
530    Stack_check_Dump_threads_usage( _Thread_Executing );
531
532  /* dump interrupt stack info if any */
533  Stack_check_Dump_threads_usage((Thread_Control *) -1);
534}
535
Note: See TracBrowser for help on using the repository browser.