blob: bd118a6c60cbf8c5dd28478239e44550d899b57c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* Rewritten and vastly simplified by Rusty Russell for in-kernel
3 * module loader:
4 * Copyright 2002 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
5 */
6#ifndef _LINUX_KALLSYMS_H
7#define _LINUX_KALLSYMS_H
8
Adrian Bunk40e48ee2007-07-07 00:54:09 +02009#include <linux/errno.h>
Vegard Nossum2711b792008-07-25 01:45:56 -070010#include <linux/kernel.h>
Kamalesh Babulal5a759832007-11-05 14:50:55 -080011#include <linux/stddef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Tejun Heo9281ace2007-07-17 04:03:51 -070013#define KSYM_NAME_LEN 128
14#define KSYM_SYMBOL_LEN (sizeof("%s+%#lx/%#lx [%s]") + (KSYM_NAME_LEN - 1) + \
15 2*(BITS_PER_LONG*3/10) + (MODULE_NAME_LEN - 1) + 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Anders Kaseorg75a66612008-12-05 19:03:58 -050017struct module;
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#ifdef CONFIG_KALLSYMS
20/* Lookup the address for a symbol. Returns 0 if not found. */
21unsigned long kallsyms_lookup_name(const char *name);
22
Anders Kaseorg75a66612008-12-05 19:03:58 -050023/* Call a function on each kallsyms symbol in the core kernel */
24int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *,
25 unsigned long),
26 void *data);
27
Franck Bui-Huuffc50892006-10-03 01:13:48 -070028extern int kallsyms_lookup_size_offset(unsigned long addr,
29 unsigned long *symbolsize,
30 unsigned long *offset);
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/* Lookup an address. modname is set to NULL if it's in the kernel. */
33const char *kallsyms_lookup(unsigned long addr,
34 unsigned long *symbolsize,
35 unsigned long *offset,
36 char **modname, char *namebuf);
37
Robert Peterson42e38082007-04-30 15:09:48 -070038/* Look up a kernel symbol and return it in a text buffer. */
39extern int sprint_symbol(char *buffer, unsigned long address);
Stephen Boyd4796dd22012-05-29 15:07:33 -070040extern int sprint_symbol_no_offset(char *buffer, unsigned long address);
Namhyung Kim0f77a8d2011-03-24 11:42:29 +090041extern int sprint_backtrace(char *buffer, unsigned long address);
Robert Peterson42e38082007-04-30 15:09:48 -070042
43/* Look up a kernel symbol and print it to the kernel messages. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044extern void __print_symbol(const char *fmt, unsigned long address);
45
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -070046int lookup_symbol_name(unsigned long addr, char *symname);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -070047int lookup_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -070048
Arnd Bergmanne4a8ca32017-11-13 17:51:00 +010049/* How and when do we show kallsyms values? */
50extern int kallsyms_show_value(void);
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#else /* !CONFIG_KALLSYMS */
53
54static inline unsigned long kallsyms_lookup_name(const char *name)
55{
56 return 0;
57}
58
Anders Kaseorg75a66612008-12-05 19:03:58 -050059static inline int kallsyms_on_each_symbol(int (*fn)(void *, const char *,
60 struct module *,
61 unsigned long),
62 void *data)
63{
64 return 0;
65}
66
Franck Bui-Huuffc50892006-10-03 01:13:48 -070067static inline int kallsyms_lookup_size_offset(unsigned long addr,
68 unsigned long *symbolsize,
69 unsigned long *offset)
70{
71 return 0;
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static inline const char *kallsyms_lookup(unsigned long addr,
75 unsigned long *symbolsize,
76 unsigned long *offset,
77 char **modname, char *namebuf)
78{
79 return NULL;
80}
81
Robert Peterson42e38082007-04-30 15:09:48 -070082static inline int sprint_symbol(char *buffer, unsigned long addr)
83{
84 *buffer = '\0';
85 return 0;
86}
87
Stephen Boyd4796dd22012-05-29 15:07:33 -070088static inline int sprint_symbol_no_offset(char *buffer, unsigned long addr)
89{
90 *buffer = '\0';
91 return 0;
92}
93
Namhyung Kim0f77a8d2011-03-24 11:42:29 +090094static inline int sprint_backtrace(char *buffer, unsigned long addr)
95{
96 *buffer = '\0';
97 return 0;
98}
99
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700100static inline int lookup_symbol_name(unsigned long addr, char *symname)
101{
102 return -ERANGE;
103}
104
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700105static inline int lookup_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
106{
107 return -ERANGE;
108}
109
Arnd Bergmanne4a8ca32017-11-13 17:51:00 +0100110static inline int kallsyms_show_value(void)
111{
112 return false;
113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/* Stupid that this does nothing, but I didn't create this mess. */
116#define __print_symbol(fmt, addr)
117#endif /*CONFIG_KALLSYMS*/
118
119/* This macro allows us to keep printk typechecking */
Joe Perchesb9075fa2011-10-31 17:11:33 -0700120static __printf(1, 2)
121void __check_printsym_format(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Heiko Carstensb02454f2006-07-03 00:24:06 -0700125static inline void print_symbol(const char *fmt, unsigned long addr)
126{
127 __check_printsym_format(fmt, "");
128 __print_symbol(fmt, (unsigned long)
129 __builtin_extract_return_addr((void *)addr));
130}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Vegard Nossum2711b792008-07-25 01:45:56 -0700132static inline void print_ip_sym(unsigned long ip)
133{
Vegard Nossum3f1712b2008-07-29 22:33:32 -0700134 printk("[<%p>] %pS\n", (void *) ip, (void *) ip);
Vegard Nossum2711b792008-07-25 01:45:56 -0700135}
Heiko Carstens8d8fdf52006-07-03 00:24:25 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#endif /*_LINUX_KALLSYMS_H*/