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 | |
Anders Kaseorg | 75a6661 | 2008-12-05 19:03:58 -0500 | [diff] [blame] | 16 | struct module; |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #ifdef CONFIG_KALLSYMS |
| 19 | /* Lookup the address for a symbol. Returns 0 if not found. */ |
| 20 | unsigned long kallsyms_lookup_name(const char *name); |
| 21 | |
Anders Kaseorg | 75a6661 | 2008-12-05 19:03:58 -0500 | [diff] [blame] | 22 | /* Call a function on each kallsyms symbol in the core kernel */ |
| 23 | int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, |
| 24 | unsigned long), |
| 25 | void *data); |
| 26 | |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 27 | extern int kallsyms_lookup_size_offset(unsigned long addr, |
| 28 | unsigned long *symbolsize, |
| 29 | unsigned long *offset); |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | /* Lookup an address. modname is set to NULL if it's in the kernel. */ |
| 32 | const char *kallsyms_lookup(unsigned long addr, |
| 33 | unsigned long *symbolsize, |
| 34 | unsigned long *offset, |
| 35 | char **modname, char *namebuf); |
| 36 | |
Robert Peterson | 42e3808 | 2007-04-30 15:09:48 -0700 | [diff] [blame] | 37 | /* Look up a kernel symbol and return it in a text buffer. */ |
| 38 | extern int sprint_symbol(char *buffer, unsigned long address); |
Stephen Boyd | 4796dd2 | 2012-05-29 15:07:33 -0700 | [diff] [blame] | 39 | extern int sprint_symbol_no_offset(char *buffer, unsigned long address); |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 40 | extern int sprint_backtrace(char *buffer, unsigned long address); |
Robert Peterson | 42e3808 | 2007-04-30 15:09:48 -0700 | [diff] [blame] | 41 | |
| 42 | /* Look up a kernel symbol and print it to the kernel messages. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | extern void __print_symbol(const char *fmt, unsigned long address); |
| 44 | |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 45 | int lookup_symbol_name(unsigned long addr, char *symname); |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 46 | 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] | 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #else /* !CONFIG_KALLSYMS */ |
| 49 | |
| 50 | static inline unsigned long kallsyms_lookup_name(const char *name) |
| 51 | { |
| 52 | return 0; |
| 53 | } |
| 54 | |
Anders Kaseorg | 75a6661 | 2008-12-05 19:03:58 -0500 | [diff] [blame] | 55 | static inline int kallsyms_on_each_symbol(int (*fn)(void *, const char *, |
| 56 | struct module *, |
| 57 | unsigned long), |
| 58 | void *data) |
| 59 | { |
| 60 | return 0; |
| 61 | } |
| 62 | |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 63 | static inline int kallsyms_lookup_size_offset(unsigned long addr, |
| 64 | unsigned long *symbolsize, |
| 65 | unsigned long *offset) |
| 66 | { |
| 67 | return 0; |
| 68 | } |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | static inline const char *kallsyms_lookup(unsigned long addr, |
| 71 | unsigned long *symbolsize, |
| 72 | unsigned long *offset, |
| 73 | char **modname, char *namebuf) |
| 74 | { |
| 75 | return NULL; |
| 76 | } |
| 77 | |
Robert Peterson | 42e3808 | 2007-04-30 15:09:48 -0700 | [diff] [blame] | 78 | static inline int sprint_symbol(char *buffer, unsigned long addr) |
| 79 | { |
| 80 | *buffer = '\0'; |
| 81 | return 0; |
| 82 | } |
| 83 | |
Stephen Boyd | 4796dd2 | 2012-05-29 15:07:33 -0700 | [diff] [blame] | 84 | static inline int sprint_symbol_no_offset(char *buffer, unsigned long addr) |
| 85 | { |
| 86 | *buffer = '\0'; |
| 87 | return 0; |
| 88 | } |
| 89 | |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 90 | static inline int sprint_backtrace(char *buffer, unsigned long addr) |
| 91 | { |
| 92 | *buffer = '\0'; |
| 93 | return 0; |
| 94 | } |
| 95 | |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 96 | static inline int lookup_symbol_name(unsigned long addr, char *symname) |
| 97 | { |
| 98 | return -ERANGE; |
| 99 | } |
| 100 | |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 101 | static inline int lookup_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name) |
| 102 | { |
| 103 | return -ERANGE; |
| 104 | } |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | /* Stupid that this does nothing, but I didn't create this mess. */ |
| 107 | #define __print_symbol(fmt, addr) |
| 108 | #endif /*CONFIG_KALLSYMS*/ |
| 109 | |
| 110 | /* This macro allows us to keep printk typechecking */ |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 111 | static __printf(1, 2) |
| 112 | void __check_printsym_format(const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
| 114 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
Heiko Carstens | b02454f | 2006-07-03 00:24:06 -0700 | [diff] [blame] | 116 | static inline void print_symbol(const char *fmt, unsigned long addr) |
| 117 | { |
| 118 | __check_printsym_format(fmt, ""); |
| 119 | __print_symbol(fmt, (unsigned long) |
| 120 | __builtin_extract_return_addr((void *)addr)); |
| 121 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Vegard Nossum | 2711b79 | 2008-07-25 01:45:56 -0700 | [diff] [blame] | 123 | static inline void print_ip_sym(unsigned long ip) |
| 124 | { |
Vegard Nossum | 3f1712b | 2008-07-29 22:33:32 -0700 | [diff] [blame] | 125 | printk("[<%p>] %pS\n", (void *) ip, (void *) ip); |
Vegard Nossum | 2711b79 | 2008-07-25 01:45:56 -0700 | [diff] [blame] | 126 | } |
Heiko Carstens | 8d8fdf5 | 2006-07-03 00:24:25 -0700 | [diff] [blame] | 127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | #endif /*_LINUX_KALLSYMS_H*/ |