prom_init_check.sh 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #!/bin/sh
  2. #
  3. # Copyright © 2008 IBM Corporation
  4. #
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU General Public License
  7. # as published by the Free Software Foundation; either version
  8. # 2 of the License, or (at your option) any later version.
  9. # This script checks prom_init.o to see what external symbols it
  10. # is using, if it finds symbols not in the whitelist it returns
  11. # an error. The point of this is to discourage people from
  12. # intentionally or accidentally adding new code to prom_init.c
  13. # which has side effects on other parts of the kernel.
  14. # If you really need to reference something from prom_init.o add
  15. # it to the list below:
  16. WHITELIST="add_reloc_offset __bss_start __bss_stop copy_and_flush
  17. _end enter_prom memcpy memset reloc_offset __secondary_hold
  18. __secondary_hold_acknowledge __secondary_hold_spinloop __start
  19. strcmp strcpy strlcpy strlen strncmp strstr logo_linux_clut224
  20. reloc_got2 kernstart_addr memstart_addr linux_banner"
  21. NM="$1"
  22. OBJ="$2"
  23. ERROR=0
  24. for UNDEF in $($NM -u $OBJ | awk '{print $2}')
  25. do
  26. # On 64-bit nm gives us the function descriptors, which have
  27. # a leading . on the name, so strip it off here.
  28. UNDEF="${UNDEF#.}"
  29. if [ $KBUILD_VERBOSE ]; then
  30. if [ $KBUILD_VERBOSE -ne 0 ]; then
  31. echo "Checking prom_init.o symbol '$UNDEF'"
  32. fi
  33. fi
  34. OK=0
  35. for WHITE in $WHITELIST
  36. do
  37. if [ "$UNDEF" = "$WHITE" ]; then
  38. OK=1
  39. break
  40. fi
  41. done
  42. # ignore register save/restore funcitons
  43. if [ "${UNDEF:0:9}" = "_restgpr_" ]; then
  44. OK=1
  45. fi
  46. if [ "${UNDEF:0:11}" = "_rest32gpr_" ]; then
  47. OK=1
  48. fi
  49. if [ "${UNDEF:0:9}" = "_savegpr_" ]; then
  50. OK=1
  51. fi
  52. if [ "${UNDEF:0:11}" = "_save32gpr_" ]; then
  53. OK=1
  54. fi
  55. if [ $OK -eq 0 ]; then
  56. ERROR=1
  57. echo "Error: External symbol '$UNDEF' referenced" \
  58. "from prom_init.c" >&2
  59. fi
  60. done
  61. exit $ERROR