kallsyms.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * from linux/include/kallsyms.h
  3. *
  4. * Rewritten and vastly simplified by Rusty Russell for in-kernel
  5. * module loader:
  6. * Copyright 2002 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
  7. */
  8. #ifndef __INCLUDE_KALLSYMS_H__
  9. #define __INCLUDE_KALLSYMS_H__
  10. #include <kernel.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #define KSYM_NAME_LEN 32
  15. #define KSYM_SYMBOL_LEN (sizeof("%s+%#x/%#x [%s]") + (KSYM_NAME_LEN - 1) + \
  16. 2*(32*3/10) + 1)
  17. #ifdef CONFIG_KALLSYMS
  18. int kallsyms_lookup_size_offset(unsigned long addr,
  19. unsigned long *symbolsize,
  20. unsigned long *offset);
  21. int is_ksym_addr(unsigned long addr);
  22. /* Look up a kernel symbol and print it to the kernel messages. */
  23. void print_symbol(const char *fmt, unsigned long address);
  24. int sprint_backtrace(char *buffer, unsigned long address);
  25. #else /* !CONFIG_KALLSYMS */
  26. static inline int kallsyms_lookup_size_offset(unsigned long addr,
  27. unsigned long *symbolsize,
  28. unsigned long *offset)
  29. {
  30. return 0;
  31. }
  32. static inline int is_ksym_addr(unsigned long addr)
  33. {
  34. return 0;
  35. }
  36. /* Stupid that this does nothing, but I didn't create this mess. */
  37. #define print_symbol(fmt, addr)
  38. #endif /* !CONFIG_KALLSYMS */
  39. static inline void print_ip_sym(unsigned long ip)
  40. {
  41. printk("[<%p>] ", (void *) ip);
  42. #ifdef CONFIG_KALLSYMS_NO_NAME
  43. printk("\n");
  44. #else
  45. print_symbol("%s\n", (unsigned long) ip);
  46. #endif
  47. }
  48. /**
  49. * @}
  50. */
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54. #endif /* __INCLUDE_KALLSYMS_H__ */