blob: 0df513b7a9f8670674a491338852d9a5570f5186 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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 Bunk40e48ee2007-07-07 00:54:09 +02008#include <linux/errno.h>
Vegard Nossum2711b792008-07-25 01:45:56 -07009#include <linux/kernel.h>
Kamalesh Babulal5a759832007-11-05 14:50:55 -080010#include <linux/stddef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Tejun Heo9281ace2007-07-17 04:03:51 -070012#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 Torvalds1da177e2005-04-16 15:20:36 -070015
Anders Kaseorg75a66612008-12-05 19:03:58 -050016struct module;
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#ifdef CONFIG_KALLSYMS
19/* Lookup the address for a symbol. Returns 0 if not found. */
20unsigned long kallsyms_lookup_name(const char *name);
21
Anders Kaseorg75a66612008-12-05 19:03:58 -050022/* Call a function on each kallsyms symbol in the core kernel */
23int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *,
24 unsigned long),
25 void *data);
26
Franck Bui-Huuffc50892006-10-03 01:13:48 -070027extern int kallsyms_lookup_size_offset(unsigned long addr,
28 unsigned long *symbolsize,
29 unsigned long *offset);
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/* Lookup an address. modname is set to NULL if it's in the kernel. */
32const char *kallsyms_lookup(unsigned long addr,
33 unsigned long *symbolsize,
34 unsigned long *offset,
35 char **modname, char *namebuf);
36
Robert Peterson42e38082007-04-30 15:09:48 -070037/* Look up a kernel symbol and return it in a text buffer. */
38extern int sprint_symbol(char *buffer, unsigned long address);
Namhyung Kim0f77a8d2011-03-24 11:42:29 +090039extern int sprint_backtrace(char *buffer, unsigned long address);
Robert Peterson42e38082007-04-30 15:09:48 -070040
41/* Look up a kernel symbol and print it to the kernel messages. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042extern void __print_symbol(const char *fmt, unsigned long address);
43
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -070044int lookup_symbol_name(unsigned long addr, char *symname);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -070045int lookup_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#else /* !CONFIG_KALLSYMS */
48
49static inline unsigned long kallsyms_lookup_name(const char *name)
50{
51 return 0;
52}
53
Anders Kaseorg75a66612008-12-05 19:03:58 -050054static inline int kallsyms_on_each_symbol(int (*fn)(void *, const char *,
55 struct module *,
56 unsigned long),
57 void *data)
58{
59 return 0;
60}
61
Franck Bui-Huuffc50892006-10-03 01:13:48 -070062static inline int kallsyms_lookup_size_offset(unsigned long addr,
63 unsigned long *symbolsize,
64 unsigned long *offset)
65{
66 return 0;
67}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static inline const char *kallsyms_lookup(unsigned long addr,
70 unsigned long *symbolsize,
71 unsigned long *offset,
72 char **modname, char *namebuf)
73{
74 return NULL;
75}
76
Robert Peterson42e38082007-04-30 15:09:48 -070077static inline int sprint_symbol(char *buffer, unsigned long addr)
78{
79 *buffer = '\0';
80 return 0;
81}
82
Namhyung Kim0f77a8d2011-03-24 11:42:29 +090083static inline int sprint_backtrace(char *buffer, unsigned long addr)
84{
85 *buffer = '\0';
86 return 0;
87}
88
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -070089static inline int lookup_symbol_name(unsigned long addr, char *symname)
90{
91 return -ERANGE;
92}
93
Alexey Dobriyana5c43da2007-05-08 00:28:47 -070094static inline int lookup_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
95{
96 return -ERANGE;
97}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* Stupid that this does nothing, but I didn't create this mess. */
100#define __print_symbol(fmt, addr)
101#endif /*CONFIG_KALLSYMS*/
102
103/* This macro allows us to keep printk typechecking */
104static void __check_printsym_format(const char *fmt, ...)
105__attribute__((format(printf,1,2)));
106static inline void __check_printsym_format(const char *fmt, ...)
107{
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Heiko Carstensb02454f2006-07-03 00:24:06 -0700110static inline void print_symbol(const char *fmt, unsigned long addr)
111{
112 __check_printsym_format(fmt, "");
113 __print_symbol(fmt, (unsigned long)
114 __builtin_extract_return_addr((void *)addr));
115}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Vegard Nossum2711b792008-07-25 01:45:56 -0700117static inline void print_ip_sym(unsigned long ip)
118{
Vegard Nossum3f1712b2008-07-29 22:33:32 -0700119 printk("[<%p>] %pS\n", (void *) ip, (void *) ip);
Vegard Nossum2711b792008-07-25 01:45:56 -0700120}
Heiko Carstens8d8fdf52006-07-03 00:24:25 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#endif /*_LINUX_KALLSYMS_H*/