Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* Rewritten and vastly simplified by Rusty Russell for in-kernel |
| 2 | * module loader: |
| 3 | * Copyright 2002 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation |
| 4 | */ |
| 5 | #ifndef _LINUX_KALLSYMS_H |
| 6 | #define _LINUX_KALLSYMS_H |
| 7 | |
Adrian Bunk | 40e48ee | 2007-07-07 00:54:09 +0200 | [diff] [blame] | 8 | #include <linux/errno.h> |
Vegard Nossum | 2711b79 | 2008-07-25 01:45:56 -0700 | [diff] [blame] | 9 | #include <linux/kernel.h> |
Kamalesh Babulal | 5a75983 | 2007-11-05 14:50:55 -0800 | [diff] [blame] | 10 | #include <linux/stddef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 12 | #define KSYM_NAME_LEN 128 |
| 13 | #define KSYM_SYMBOL_LEN (sizeof("%s+%#lx/%#lx [%s]") + (KSYM_NAME_LEN - 1) + \ |
| 14 | 2*(BITS_PER_LONG*3/10) + (MODULE_NAME_LEN - 1) + 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
| 16 | #ifdef CONFIG_KALLSYMS |
| 17 | /* Lookup the address for a symbol. Returns 0 if not found. */ |
| 18 | unsigned long kallsyms_lookup_name(const char *name); |
| 19 | |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 20 | extern int kallsyms_lookup_size_offset(unsigned long addr, |
| 21 | unsigned long *symbolsize, |
| 22 | unsigned long *offset); |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | /* Lookup an address. modname is set to NULL if it's in the kernel. */ |
| 25 | const char *kallsyms_lookup(unsigned long addr, |
| 26 | unsigned long *symbolsize, |
| 27 | unsigned long *offset, |
| 28 | char **modname, char *namebuf); |
| 29 | |
Robert Peterson | 42e3808 | 2007-04-30 15:09:48 -0700 | [diff] [blame] | 30 | /* Look up a kernel symbol and return it in a text buffer. */ |
| 31 | extern int sprint_symbol(char *buffer, unsigned long address); |
| 32 | |
| 33 | /* Look up a kernel symbol and print it to the kernel messages. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | extern void __print_symbol(const char *fmt, unsigned long address); |
| 35 | |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 36 | int lookup_symbol_name(unsigned long addr, char *symname); |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 37 | int lookup_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name); |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #else /* !CONFIG_KALLSYMS */ |
| 40 | |
| 41 | static inline unsigned long kallsyms_lookup_name(const char *name) |
| 42 | { |
| 43 | return 0; |
| 44 | } |
| 45 | |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 46 | static inline int kallsyms_lookup_size_offset(unsigned long addr, |
| 47 | unsigned long *symbolsize, |
| 48 | unsigned long *offset) |
| 49 | { |
| 50 | return 0; |
| 51 | } |
| 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | static inline const char *kallsyms_lookup(unsigned long addr, |
| 54 | unsigned long *symbolsize, |
| 55 | unsigned long *offset, |
| 56 | char **modname, char *namebuf) |
| 57 | { |
| 58 | return NULL; |
| 59 | } |
| 60 | |
Robert Peterson | 42e3808 | 2007-04-30 15:09:48 -0700 | [diff] [blame] | 61 | static inline int sprint_symbol(char *buffer, unsigned long addr) |
| 62 | { |
| 63 | *buffer = '\0'; |
| 64 | return 0; |
| 65 | } |
| 66 | |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 67 | static inline int lookup_symbol_name(unsigned long addr, char *symname) |
| 68 | { |
| 69 | return -ERANGE; |
| 70 | } |
| 71 | |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 72 | static inline int lookup_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name) |
| 73 | { |
| 74 | return -ERANGE; |
| 75 | } |
| 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | /* Stupid that this does nothing, but I didn't create this mess. */ |
| 78 | #define __print_symbol(fmt, addr) |
| 79 | #endif /*CONFIG_KALLSYMS*/ |
| 80 | |
| 81 | /* This macro allows us to keep printk typechecking */ |
| 82 | static void __check_printsym_format(const char *fmt, ...) |
| 83 | __attribute__((format(printf,1,2))); |
| 84 | static inline void __check_printsym_format(const char *fmt, ...) |
| 85 | { |
| 86 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Heiko Carstens | b02454f | 2006-07-03 00:24:06 -0700 | [diff] [blame] | 88 | static inline void print_symbol(const char *fmt, unsigned long addr) |
| 89 | { |
| 90 | __check_printsym_format(fmt, ""); |
| 91 | __print_symbol(fmt, (unsigned long) |
| 92 | __builtin_extract_return_addr((void *)addr)); |
| 93 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Linus Torvalds | a442ac5 | 2008-05-15 17:50:37 -0700 | [diff] [blame] | 95 | /* |
Bjorn Helgaas | c80cfb0 | 2008-10-15 22:01:35 -0700 | [diff] [blame] | 96 | * Pretty-print a function pointer. This function is deprecated. |
| 97 | * Please use the "%pF" vsprintf format instead. |
Linus Torvalds | a442ac5 | 2008-05-15 17:50:37 -0700 | [diff] [blame] | 98 | */ |
Bjorn Helgaas | c80cfb0 | 2008-10-15 22:01:35 -0700 | [diff] [blame] | 99 | static inline void __deprecated print_fn_descriptor_symbol(const char *fmt, void *addr) |
Linus Torvalds | a442ac5 | 2008-05-15 17:50:37 -0700 | [diff] [blame] | 100 | { |
| 101 | #if defined(CONFIG_IA64) || defined(CONFIG_PPC64) |
| 102 | addr = *(void **)addr; |
| 103 | #endif |
| 104 | print_symbol(fmt, (unsigned long)addr); |
| 105 | } |
| 106 | |
Vegard Nossum | 2711b79 | 2008-07-25 01:45:56 -0700 | [diff] [blame] | 107 | static inline void print_ip_sym(unsigned long ip) |
| 108 | { |
Vegard Nossum | 3f1712b | 2008-07-29 22:33:32 -0700 | [diff] [blame] | 109 | printk("[<%p>] %pS\n", (void *) ip, (void *) ip); |
Vegard Nossum | 2711b79 | 2008-07-25 01:45:56 -0700 | [diff] [blame] | 110 | } |
Heiko Carstens | 8d8fdf5 | 2006-07-03 00:24:25 -0700 | [diff] [blame] | 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | #endif /*_LINUX_KALLSYMS_H*/ |