stack.c
1 /* 2 This software and ancillary information (herein called SOFTWARE) 3 called LinuxBIOS is made available under the terms described 4 here. The SOFTWARE has been approved for release with associated 5 LA-CC Number 00-34 . Unless otherwise indicated, this SOFTWARE has 6 been authored by an employee or employees of the University of 7 California, operator of the Los Alamos National Laboratory under 8 Contract No. W-7405-ENG-36 with the U.S. Department of Energy. The 9 U.S. Government has rights to use, reproduce, and distribute this 10 SOFTWARE. The public may copy, distribute, prepare derivative works 11 and publicly display this SOFTWARE without charge, provided that this 12 Notice and any statement of authorship are reproduced on all copies. 13 Neither the Government nor the University makes any warranty, express 14 or implied, or assumes any liability or responsibility for the use of 15 this SOFTWARE. If SOFTWARE is modified to produce derivative works, 16 such modified SOFTWARE should be clearly marked, so as not to confuse 17 it with the version available from LANL. 18 */ 19 /* Copyright 2000, Ron Minnich, Advanced Computing Lab, LANL 20 * rminnich@lanl.gov 21 * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, 22 * Raptor Engineering 23 */ 24 25 #include <assert.h> 26 #include <lib.h> 27 #include <console/console.h> 28 #include <symbols.h> 29 30 int checkstack(void *top_of_stack, int core) 31 { 32 /* Not all archs use CONFIG_STACK_SIZE, those who don't set it to 0. */ 33 size_t stack_size = CONFIG_STACK_SIZE ? 34 CONFIG_STACK_SIZE : REGION_SIZE(stack); 35 int i; 36 u32 *stack = (u32 *) (top_of_stack - stack_size); 37 38 if (stack[0] != 0xDEADBEEF) { 39 printk(BIOS_ERR, 40 "Stack overrun on CPU%d (address %p overwritten). " 41 "Increase stack from current %zu bytes\n", 42 core, stack, stack_size); 43 BUG(); 44 return -1; 45 } 46 47 for (i = 1; i < stack_size/sizeof(stack[0]); i++) { 48 if (stack[i] == 0xDEADBEEF) 49 continue; 50 printk(BIOS_SPEW, "CPU%d: stack: %p - %p, ", 51 core, stack, &stack[stack_size/sizeof(stack[0])]); 52 printk(BIOS_SPEW, "lowest used address %p, ", &stack[i]); 53 printk(BIOS_SPEW, "stack used: %ld bytes\n", 54 (unsigned long)&stack[stack_size / sizeof(stack[0])] 55 - (unsigned long)&stack[i]); 56 return 0; 57 } 58 59 return 0; 60 }