Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * kallsyms.c: in-kernel printing of symbolic oopses and stack traces. |
| 4 | * |
| 5 | * Rewritten and vastly simplified by Rusty Russell for in-kernel |
| 6 | * module loader: |
| 7 | * Copyright 2002 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation |
| 8 | * |
| 9 | * ChangeLog: |
| 10 | * |
| 11 | * (25/Aug/2004) Paulo Marques <pmarques@grupopie.com> |
| 12 | * Changed the compression method from stem compression to "table lookup" |
| 13 | * compression (see scripts/kallsyms.c for a more complete description) |
| 14 | */ |
| 15 | #include <linux/kallsyms.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/init.h> |
| 17 | #include <linux/seq_file.h> |
| 18 | #include <linux/fs.h> |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 19 | #include <linux/kdb.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/err.h> |
| 21 | #include <linux/proc_fs.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 22 | #include <linux/sched.h> /* for cond_resched */ |
Adam B. Jerome | 07354a0 | 2006-12-06 20:35:30 -0800 | [diff] [blame] | 23 | #include <linux/ctype.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 25 | #include <linux/filter.h> |
Steven Rostedt (VMware) | aba4b5c | 2017-09-01 08:35:38 -0400 | [diff] [blame] | 26 | #include <linux/ftrace.h> |
Gideon Israel Dsouza | 52f5684c | 2014-04-07 15:39:20 -0700 | [diff] [blame] | 27 | #include <linux/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 29 | /* |
| 30 | * These will be re-linked against their real values |
| 31 | * during the second link stage. |
| 32 | */ |
Gideon Israel Dsouza | 52f5684c | 2014-04-07 15:39:20 -0700 | [diff] [blame] | 33 | extern const unsigned long kallsyms_addresses[] __weak; |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 34 | extern const int kallsyms_offsets[] __weak; |
Gideon Israel Dsouza | 52f5684c | 2014-04-07 15:39:20 -0700 | [diff] [blame] | 35 | extern const u8 kallsyms_names[] __weak; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 37 | /* |
| 38 | * Tell the compiler that the count isn't in the small data section if the arch |
| 39 | * has one (eg: FRV). |
David Howells | 9e6c1e6 | 2007-11-28 16:22:04 -0800 | [diff] [blame] | 40 | */ |
Jan Beulich | 80ffbaa | 2018-09-03 06:09:34 -0600 | [diff] [blame] | 41 | extern const unsigned int kallsyms_num_syms |
Sam Ravnborg | 2ea0389 | 2009-01-14 21:38:20 +0100 | [diff] [blame] | 42 | __attribute__((weak, section(".rodata"))); |
David Howells | 9e6c1e6 | 2007-11-28 16:22:04 -0800 | [diff] [blame] | 43 | |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 44 | extern const unsigned long kallsyms_relative_base |
| 45 | __attribute__((weak, section(".rodata"))); |
| 46 | |
Masahiro Yamada | cde26a6 | 2020-02-02 14:09:22 +0900 | [diff] [blame] | 47 | extern const char kallsyms_token_table[] __weak; |
Gideon Israel Dsouza | 52f5684c | 2014-04-07 15:39:20 -0700 | [diff] [blame] | 48 | extern const u16 kallsyms_token_index[] __weak; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Jan Beulich | 80ffbaa | 2018-09-03 06:09:34 -0600 | [diff] [blame] | 50 | extern const unsigned int kallsyms_markers[] __weak; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 52 | /* |
| 53 | * Expand a compressed symbol data into the resulting uncompressed string, |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 54 | * if uncompressed string is too long (>= maxlen), it will be truncated, |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 55 | * given the offset to where the symbol is in the compressed stream. |
| 56 | */ |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 57 | static unsigned int kallsyms_expand_symbol(unsigned int off, |
| 58 | char *result, size_t maxlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
| 60 | int len, skipped_first = 0; |
Masahiro Yamada | cde26a6 | 2020-02-02 14:09:22 +0900 | [diff] [blame] | 61 | const char *tptr; |
| 62 | const u8 *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 64 | /* Get the compressed symbol length from the first symbol byte. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | data = &kallsyms_names[off]; |
| 66 | len = *data; |
| 67 | data++; |
| 68 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 69 | /* |
| 70 | * Update the offset to return the offset for the next symbol on |
| 71 | * the compressed stream. |
| 72 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | off += len + 1; |
| 74 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 75 | /* |
| 76 | * For every byte on the compressed symbol data, copy the table |
| 77 | * entry for that byte. |
| 78 | */ |
| 79 | while (len) { |
| 80 | tptr = &kallsyms_token_table[kallsyms_token_index[*data]]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | data++; |
| 82 | len--; |
| 83 | |
| 84 | while (*tptr) { |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 85 | if (skipped_first) { |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 86 | if (maxlen <= 1) |
| 87 | goto tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | *result = *tptr; |
| 89 | result++; |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 90 | maxlen--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } else |
| 92 | skipped_first = 1; |
| 93 | tptr++; |
| 94 | } |
| 95 | } |
| 96 | |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 97 | tail: |
| 98 | if (maxlen) |
| 99 | *result = '\0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 101 | /* Return to offset to the next symbol. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | return off; |
| 103 | } |
| 104 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 105 | /* |
| 106 | * Get symbol type information. This is encoded as a single char at the |
| 107 | * beginning of the symbol name. |
| 108 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | static char kallsyms_get_symbol_type(unsigned int off) |
| 110 | { |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 111 | /* |
| 112 | * Get just the first code, look it up in the token table, |
| 113 | * and return the first char from this token. |
| 114 | */ |
| 115 | return kallsyms_token_table[kallsyms_token_index[kallsyms_names[off + 1]]]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 119 | /* |
| 120 | * Find the offset on the compressed stream given and index in the |
| 121 | * kallsyms array. |
| 122 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | static unsigned int get_symbol_offset(unsigned long pos) |
| 124 | { |
Jan Beulich | aad0947 | 2006-12-08 02:35:57 -0800 | [diff] [blame] | 125 | const u8 *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | int i; |
| 127 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 128 | /* |
| 129 | * Use the closest marker we have. We have markers every 256 positions, |
| 130 | * so that should be close enough. |
| 131 | */ |
| 132 | name = &kallsyms_names[kallsyms_markers[pos >> 8]]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 134 | /* |
| 135 | * Sequentially scan all the symbols up to the point we're searching |
| 136 | * for. Every symbol is stored in a [<len>][<len> bytes of data] format, |
| 137 | * so we just need to add the len to the current pointer for every |
| 138 | * symbol we wish to skip. |
| 139 | */ |
| 140 | for (i = 0; i < (pos & 0xFF); i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | name = name + (*name) + 1; |
| 142 | |
| 143 | return name - kallsyms_names; |
| 144 | } |
| 145 | |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 146 | static unsigned long kallsyms_sym_address(int idx) |
| 147 | { |
| 148 | if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE)) |
| 149 | return kallsyms_addresses[idx]; |
| 150 | |
| 151 | /* values are unsigned offsets if --absolute-percpu is not in effect */ |
| 152 | if (!IS_ENABLED(CONFIG_KALLSYMS_ABSOLUTE_PERCPU)) |
| 153 | return kallsyms_relative_base + (u32)kallsyms_offsets[idx]; |
| 154 | |
| 155 | /* ...otherwise, positive offsets are absolute values */ |
| 156 | if (kallsyms_offsets[idx] >= 0) |
| 157 | return kallsyms_offsets[idx]; |
| 158 | |
| 159 | /* ...and negative offsets are relative to kallsyms_relative_base - 1 */ |
| 160 | return kallsyms_relative_base - 1 - kallsyms_offsets[idx]; |
| 161 | } |
| 162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | /* Lookup the address for this symbol. Returns 0 if not found. */ |
| 164 | unsigned long kallsyms_lookup_name(const char *name) |
| 165 | { |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 166 | char namebuf[KSYM_NAME_LEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | unsigned long i; |
| 168 | unsigned int off; |
| 169 | |
| 170 | for (i = 0, off = 0; i < kallsyms_num_syms; i++) { |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 171 | off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | if (strcmp(namebuf, name) == 0) |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 174 | return kallsyms_sym_address(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | } |
| 176 | return module_kallsyms_lookup_name(name); |
| 177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Anders Kaseorg | 75a6661 | 2008-12-05 19:03:58 -0500 | [diff] [blame] | 179 | int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, |
| 180 | unsigned long), |
| 181 | void *data) |
| 182 | { |
| 183 | char namebuf[KSYM_NAME_LEN]; |
| 184 | unsigned long i; |
| 185 | unsigned int off; |
| 186 | int ret; |
| 187 | |
| 188 | for (i = 0, off = 0; i < kallsyms_num_syms; i++) { |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 189 | off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf)); |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 190 | ret = fn(data, namebuf, NULL, kallsyms_sym_address(i)); |
Anders Kaseorg | 75a6661 | 2008-12-05 19:03:58 -0500 | [diff] [blame] | 191 | if (ret != 0) |
| 192 | return ret; |
| 193 | } |
| 194 | return module_kallsyms_on_each_symbol(fn, data); |
| 195 | } |
Anders Kaseorg | 75a6661 | 2008-12-05 19:03:58 -0500 | [diff] [blame] | 196 | |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 197 | static unsigned long get_symbol_pos(unsigned long addr, |
| 198 | unsigned long *symbolsize, |
| 199 | unsigned long *offset) |
| 200 | { |
| 201 | unsigned long symbol_start = 0, symbol_end = 0; |
| 202 | unsigned long i, low, high, mid; |
| 203 | |
Sam Ravnborg | 2ea0389 | 2009-01-14 21:38:20 +0100 | [diff] [blame] | 204 | /* This kernel should never had been booted. */ |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 205 | if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE)) |
| 206 | BUG_ON(!kallsyms_addresses); |
| 207 | else |
| 208 | BUG_ON(!kallsyms_offsets); |
Sam Ravnborg | 2ea0389 | 2009-01-14 21:38:20 +0100 | [diff] [blame] | 209 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 210 | /* Do a binary search on the sorted kallsyms_addresses array. */ |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 211 | low = 0; |
| 212 | high = kallsyms_num_syms; |
| 213 | |
| 214 | while (high - low > 1) { |
Vegard Nossum | 2fc9c4e | 2008-07-25 01:45:34 -0700 | [diff] [blame] | 215 | mid = low + (high - low) / 2; |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 216 | if (kallsyms_sym_address(mid) <= addr) |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 217 | low = mid; |
| 218 | else |
| 219 | high = mid; |
| 220 | } |
| 221 | |
| 222 | /* |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 223 | * Search for the first aliased symbol. Aliased |
| 224 | * symbols are symbols with the same address. |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 225 | */ |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 226 | while (low && kallsyms_sym_address(low-1) == kallsyms_sym_address(low)) |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 227 | --low; |
| 228 | |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 229 | symbol_start = kallsyms_sym_address(low); |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 230 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 231 | /* Search for next non-aliased symbol. */ |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 232 | for (i = low + 1; i < kallsyms_num_syms; i++) { |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 233 | if (kallsyms_sym_address(i) > symbol_start) { |
| 234 | symbol_end = kallsyms_sym_address(i); |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 235 | break; |
| 236 | } |
| 237 | } |
| 238 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 239 | /* If we found no next symbol, we use the end of the section. */ |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 240 | if (!symbol_end) { |
| 241 | if (is_kernel_inittext(addr)) |
| 242 | symbol_end = (unsigned long)_einittext; |
Masahiro Yamada | 63b23e2 | 2017-07-10 15:51:20 -0700 | [diff] [blame] | 243 | else if (IS_ENABLED(CONFIG_KALLSYMS_ALL)) |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 244 | symbol_end = (unsigned long)_end; |
| 245 | else |
| 246 | symbol_end = (unsigned long)_etext; |
| 247 | } |
| 248 | |
Alexey Dobriyan | ffb4512 | 2007-05-08 00:28:41 -0700 | [diff] [blame] | 249 | if (symbolsize) |
| 250 | *symbolsize = symbol_end - symbol_start; |
| 251 | if (offset) |
| 252 | *offset = addr - symbol_start; |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 253 | |
| 254 | return low; |
| 255 | } |
| 256 | |
| 257 | /* |
| 258 | * Lookup an address but don't bother to find any names. |
| 259 | */ |
| 260 | int kallsyms_lookup_size_offset(unsigned long addr, unsigned long *symbolsize, |
| 261 | unsigned long *offset) |
| 262 | { |
Rusty Russell | 6dd06c9 | 2008-01-29 17:13:22 -0500 | [diff] [blame] | 263 | char namebuf[KSYM_NAME_LEN]; |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 264 | |
Marc Zyngier | 2a1a3fa | 2019-08-24 14:12:31 +0100 | [diff] [blame] | 265 | if (is_ksym_addr(addr)) { |
| 266 | get_symbol_pos(addr, symbolsize, offset); |
| 267 | return 1; |
| 268 | } |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 269 | return !!module_address_lookup(addr, symbolsize, offset, NULL, namebuf) || |
| 270 | !!__bpf_address_lookup(addr, symbolsize, offset, namebuf); |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | /* |
| 274 | * Lookup an address |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 275 | * - modname is set to NULL if it's in the kernel. |
| 276 | * - We guarantee that the returned name is valid until we reschedule even if. |
| 277 | * It resides in a module. |
| 278 | * - We also guarantee that modname will be valid until rescheduled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | */ |
| 280 | const char *kallsyms_lookup(unsigned long addr, |
| 281 | unsigned long *symbolsize, |
| 282 | unsigned long *offset, |
| 283 | char **modname, char *namebuf) |
| 284 | { |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 285 | const char *ret; |
| 286 | |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 287 | namebuf[KSYM_NAME_LEN - 1] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | namebuf[0] = 0; |
| 289 | |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 290 | if (is_ksym_addr(addr)) { |
| 291 | unsigned long pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 293 | pos = get_symbol_pos(addr, symbolsize, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | /* Grab name */ |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 295 | kallsyms_expand_symbol(get_symbol_offset(pos), |
| 296 | namebuf, KSYM_NAME_LEN); |
Kyle McMartin | 7a74fc4 | 2007-05-30 02:43:16 -0400 | [diff] [blame] | 297 | if (modname) |
| 298 | *modname = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | return namebuf; |
| 300 | } |
| 301 | |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 302 | /* See if it's in a module or a BPF JITed image. */ |
| 303 | ret = module_address_lookup(addr, symbolsize, offset, |
| 304 | modname, namebuf); |
| 305 | if (!ret) |
| 306 | ret = bpf_address_lookup(addr, symbolsize, |
| 307 | offset, modname, namebuf); |
Steven Rostedt (VMware) | aba4b5c | 2017-09-01 08:35:38 -0400 | [diff] [blame] | 308 | |
| 309 | if (!ret) |
| 310 | ret = ftrace_mod_address_lookup(addr, symbolsize, |
| 311 | offset, modname, namebuf); |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 312 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
| 314 | |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 315 | int lookup_symbol_name(unsigned long addr, char *symname) |
| 316 | { |
| 317 | symname[0] = '\0'; |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 318 | symname[KSYM_NAME_LEN - 1] = '\0'; |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 319 | |
| 320 | if (is_ksym_addr(addr)) { |
| 321 | unsigned long pos; |
| 322 | |
| 323 | pos = get_symbol_pos(addr, NULL, NULL); |
| 324 | /* Grab name */ |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 325 | kallsyms_expand_symbol(get_symbol_offset(pos), |
| 326 | symname, KSYM_NAME_LEN); |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 327 | return 0; |
| 328 | } |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 329 | /* See if it's in a module. */ |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 330 | return lookup_module_symbol_name(addr, symname); |
| 331 | } |
| 332 | |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 333 | int lookup_symbol_attrs(unsigned long addr, unsigned long *size, |
| 334 | unsigned long *offset, char *modname, char *name) |
| 335 | { |
| 336 | name[0] = '\0'; |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 337 | name[KSYM_NAME_LEN - 1] = '\0'; |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 338 | |
| 339 | if (is_ksym_addr(addr)) { |
| 340 | unsigned long pos; |
| 341 | |
| 342 | pos = get_symbol_pos(addr, size, offset); |
| 343 | /* Grab name */ |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 344 | kallsyms_expand_symbol(get_symbol_offset(pos), |
| 345 | name, KSYM_NAME_LEN); |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 346 | modname[0] = '\0'; |
| 347 | return 0; |
| 348 | } |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 349 | /* See if it's in a module. */ |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 350 | return lookup_module_symbol_attrs(addr, size, offset, modname, name); |
| 351 | } |
| 352 | |
Robert Peterson | 42e3808 | 2007-04-30 15:09:48 -0700 | [diff] [blame] | 353 | /* Look up a kernel symbol and return it in a text buffer. */ |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 354 | static int __sprint_symbol(char *buffer, unsigned long address, |
Stephen Boyd | 4796dd2 | 2012-05-29 15:07:33 -0700 | [diff] [blame] | 355 | int symbol_offset, int add_offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { |
| 357 | char *modname; |
| 358 | const char *name; |
| 359 | unsigned long offset, size; |
Hugh Dickins | 966c8c1 | 2008-11-19 15:36:36 -0800 | [diff] [blame] | 360 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 362 | address += symbol_offset; |
Hugh Dickins | 966c8c1 | 2008-11-19 15:36:36 -0800 | [diff] [blame] | 363 | name = kallsyms_lookup(address, &size, &offset, &modname, buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | if (!name) |
Namhyung Kim | b86280a | 2014-08-08 14:19:41 -0700 | [diff] [blame] | 365 | return sprintf(buffer, "0x%lx", address - symbol_offset); |
Andrew Morton | 19769b7 | 2007-07-15 23:41:24 -0700 | [diff] [blame] | 366 | |
Hugh Dickins | 966c8c1 | 2008-11-19 15:36:36 -0800 | [diff] [blame] | 367 | if (name != buffer) |
| 368 | strcpy(buffer, name); |
| 369 | len = strlen(buffer); |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 370 | offset -= symbol_offset; |
Hugh Dickins | 966c8c1 | 2008-11-19 15:36:36 -0800 | [diff] [blame] | 371 | |
Stephen Boyd | 4796dd2 | 2012-05-29 15:07:33 -0700 | [diff] [blame] | 372 | if (add_offset) |
| 373 | len += sprintf(buffer + len, "+%#lx/%#lx", offset, size); |
| 374 | |
Andrew Morton | 19769b7 | 2007-07-15 23:41:24 -0700 | [diff] [blame] | 375 | if (modname) |
Stephen Boyd | 4796dd2 | 2012-05-29 15:07:33 -0700 | [diff] [blame] | 376 | len += sprintf(buffer + len, " [%s]", modname); |
Hugh Dickins | 966c8c1 | 2008-11-19 15:36:36 -0800 | [diff] [blame] | 377 | |
| 378 | return len; |
Robert Peterson | 42e3808 | 2007-04-30 15:09:48 -0700 | [diff] [blame] | 379 | } |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 380 | |
| 381 | /** |
| 382 | * sprint_symbol - Look up a kernel symbol and return it in a text buffer |
| 383 | * @buffer: buffer to be stored |
| 384 | * @address: address to lookup |
| 385 | * |
| 386 | * This function looks up a kernel symbol with @address and stores its name, |
| 387 | * offset, size and module name to @buffer if possible. If no symbol was found, |
| 388 | * just saves its @address as is. |
| 389 | * |
| 390 | * This function returns the number of bytes stored in @buffer. |
| 391 | */ |
| 392 | int sprint_symbol(char *buffer, unsigned long address) |
| 393 | { |
Stephen Boyd | 4796dd2 | 2012-05-29 15:07:33 -0700 | [diff] [blame] | 394 | return __sprint_symbol(buffer, address, 0, 1); |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 395 | } |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 396 | EXPORT_SYMBOL_GPL(sprint_symbol); |
Robert Peterson | 42e3808 | 2007-04-30 15:09:48 -0700 | [diff] [blame] | 397 | |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 398 | /** |
Stephen Boyd | 4796dd2 | 2012-05-29 15:07:33 -0700 | [diff] [blame] | 399 | * sprint_symbol_no_offset - Look up a kernel symbol and return it in a text buffer |
| 400 | * @buffer: buffer to be stored |
| 401 | * @address: address to lookup |
| 402 | * |
| 403 | * This function looks up a kernel symbol with @address and stores its name |
| 404 | * and module name to @buffer if possible. If no symbol was found, just saves |
| 405 | * its @address as is. |
| 406 | * |
| 407 | * This function returns the number of bytes stored in @buffer. |
| 408 | */ |
| 409 | int sprint_symbol_no_offset(char *buffer, unsigned long address) |
| 410 | { |
| 411 | return __sprint_symbol(buffer, address, 0, 0); |
| 412 | } |
| 413 | EXPORT_SYMBOL_GPL(sprint_symbol_no_offset); |
| 414 | |
| 415 | /** |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 416 | * sprint_backtrace - Look up a backtrace symbol and return it in a text buffer |
| 417 | * @buffer: buffer to be stored |
| 418 | * @address: address to lookup |
| 419 | * |
| 420 | * This function is for stack backtrace and does the same thing as |
| 421 | * sprint_symbol() but with modified/decreased @address. If there is a |
| 422 | * tail-call to the function marked "noreturn", gcc optimized out code after |
| 423 | * the call so that the stack-saved return address could point outside of the |
| 424 | * caller. This function ensures that kallsyms will find the original caller |
| 425 | * by decreasing @address. |
| 426 | * |
| 427 | * This function returns the number of bytes stored in @buffer. |
| 428 | */ |
| 429 | int sprint_backtrace(char *buffer, unsigned long address) |
| 430 | { |
Stephen Boyd | 4796dd2 | 2012-05-29 15:07:33 -0700 | [diff] [blame] | 431 | return __sprint_symbol(buffer, address, -1, 1); |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 432 | } |
| 433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | /* To avoid using get_symbol_offset for every symbol, we carry prefix along. */ |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 435 | struct kallsym_iter { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | loff_t pos; |
Alexander Shishkin | d83212d | 2018-06-06 15:54:10 +0300 | [diff] [blame] | 437 | loff_t pos_arch_end; |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 438 | loff_t pos_mod_end; |
Steven Rostedt (VMware) | 6171a03 | 2017-09-06 08:40:41 -0400 | [diff] [blame] | 439 | loff_t pos_ftrace_mod_end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | unsigned long value; |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 441 | unsigned int nameoff; /* If iterating in core kernel symbols. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | char type; |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 443 | char name[KSYM_NAME_LEN]; |
| 444 | char module_name[MODULE_NAME_LEN]; |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 445 | int exported; |
Linus Torvalds | c0f3ea1 | 2017-11-08 12:51:04 -0800 | [diff] [blame] | 446 | int show_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | }; |
| 448 | |
Alexander Shishkin | d83212d | 2018-06-06 15:54:10 +0300 | [diff] [blame] | 449 | int __weak arch_get_kallsym(unsigned int symnum, unsigned long *value, |
| 450 | char *type, char *name) |
| 451 | { |
| 452 | return -EINVAL; |
| 453 | } |
| 454 | |
| 455 | static int get_ksymbol_arch(struct kallsym_iter *iter) |
| 456 | { |
| 457 | int ret = arch_get_kallsym(iter->pos - kallsyms_num_syms, |
| 458 | &iter->value, &iter->type, |
| 459 | iter->name); |
| 460 | |
| 461 | if (ret < 0) { |
| 462 | iter->pos_arch_end = iter->pos; |
| 463 | return 0; |
| 464 | } |
| 465 | |
| 466 | return 1; |
| 467 | } |
| 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | static int get_ksymbol_mod(struct kallsym_iter *iter) |
| 470 | { |
Alexander Shishkin | d83212d | 2018-06-06 15:54:10 +0300 | [diff] [blame] | 471 | int ret = module_get_kallsym(iter->pos - iter->pos_arch_end, |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 472 | &iter->value, &iter->type, |
| 473 | iter->name, iter->module_name, |
| 474 | &iter->exported); |
| 475 | if (ret < 0) { |
| 476 | iter->pos_mod_end = iter->pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | return 0; |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 478 | } |
| 479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | return 1; |
| 481 | } |
| 482 | |
Steven Rostedt (VMware) | 6171a03 | 2017-09-06 08:40:41 -0400 | [diff] [blame] | 483 | static int get_ksymbol_ftrace_mod(struct kallsym_iter *iter) |
| 484 | { |
| 485 | int ret = ftrace_mod_get_kallsym(iter->pos - iter->pos_mod_end, |
| 486 | &iter->value, &iter->type, |
| 487 | iter->name, iter->module_name, |
| 488 | &iter->exported); |
| 489 | if (ret < 0) { |
| 490 | iter->pos_ftrace_mod_end = iter->pos; |
| 491 | return 0; |
| 492 | } |
| 493 | |
| 494 | return 1; |
| 495 | } |
| 496 | |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 497 | static int get_ksymbol_bpf(struct kallsym_iter *iter) |
| 498 | { |
Song Liu | 6934058 | 2019-01-17 08:15:21 -0800 | [diff] [blame] | 499 | strlcpy(iter->module_name, "bpf", MODULE_NAME_LEN); |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 500 | iter->exported = 0; |
Steven Rostedt (VMware) | 6171a03 | 2017-09-06 08:40:41 -0400 | [diff] [blame] | 501 | return bpf_get_kallsym(iter->pos - iter->pos_ftrace_mod_end, |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 502 | &iter->value, &iter->type, |
| 503 | iter->name) < 0 ? 0 : 1; |
| 504 | } |
| 505 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | /* Returns space to next name. */ |
| 507 | static unsigned long get_ksymbol_core(struct kallsym_iter *iter) |
| 508 | { |
| 509 | unsigned off = iter->nameoff; |
| 510 | |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 511 | iter->module_name[0] = '\0'; |
Ard Biesheuvel | 2213e9a | 2016-03-15 14:58:19 -0700 | [diff] [blame] | 512 | iter->value = kallsyms_sym_address(iter->pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
| 514 | iter->type = kallsyms_get_symbol_type(off); |
| 515 | |
Chen Gang | e3f2675 | 2013-04-15 15:04:43 +0930 | [diff] [blame] | 516 | off = kallsyms_expand_symbol(off, iter->name, ARRAY_SIZE(iter->name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
| 518 | return off - iter->nameoff; |
| 519 | } |
| 520 | |
| 521 | static void reset_iter(struct kallsym_iter *iter, loff_t new_pos) |
| 522 | { |
| 523 | iter->name[0] = '\0'; |
| 524 | iter->nameoff = get_symbol_offset(new_pos); |
| 525 | iter->pos = new_pos; |
Steven Rostedt (VMware) | 6171a03 | 2017-09-06 08:40:41 -0400 | [diff] [blame] | 526 | if (new_pos == 0) { |
Alexander Shishkin | d83212d | 2018-06-06 15:54:10 +0300 | [diff] [blame] | 527 | iter->pos_arch_end = 0; |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 528 | iter->pos_mod_end = 0; |
Steven Rostedt (VMware) | 6171a03 | 2017-09-06 08:40:41 -0400 | [diff] [blame] | 529 | iter->pos_ftrace_mod_end = 0; |
| 530 | } |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 531 | } |
| 532 | |
Adrian Hunter | b966794 | 2018-06-06 15:54:09 +0300 | [diff] [blame] | 533 | /* |
| 534 | * The end position (last + 1) of each additional kallsyms section is recorded |
| 535 | * in iter->pos_..._end as each section is added, and so can be used to |
| 536 | * determine which get_ksymbol_...() function to call next. |
| 537 | */ |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 538 | static int update_iter_mod(struct kallsym_iter *iter, loff_t pos) |
| 539 | { |
| 540 | iter->pos = pos; |
| 541 | |
Alexander Shishkin | d83212d | 2018-06-06 15:54:10 +0300 | [diff] [blame] | 542 | if ((!iter->pos_arch_end || iter->pos_arch_end > pos) && |
| 543 | get_ksymbol_arch(iter)) |
| 544 | return 1; |
| 545 | |
Adrian Hunter | b966794 | 2018-06-06 15:54:09 +0300 | [diff] [blame] | 546 | if ((!iter->pos_mod_end || iter->pos_mod_end > pos) && |
| 547 | get_ksymbol_mod(iter)) |
Steven Rostedt (VMware) | 6171a03 | 2017-09-06 08:40:41 -0400 | [diff] [blame] | 548 | return 1; |
Steven Rostedt (VMware) | 6171a03 | 2017-09-06 08:40:41 -0400 | [diff] [blame] | 549 | |
Adrian Hunter | b966794 | 2018-06-06 15:54:09 +0300 | [diff] [blame] | 550 | if ((!iter->pos_ftrace_mod_end || iter->pos_ftrace_mod_end > pos) && |
| 551 | get_ksymbol_ftrace_mod(iter)) |
| 552 | return 1; |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 553 | |
Adrian Hunter | b966794 | 2018-06-06 15:54:09 +0300 | [diff] [blame] | 554 | return get_ksymbol_bpf(iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | /* Returns false if pos at or past end of file. */ |
| 558 | static int update_iter(struct kallsym_iter *iter, loff_t pos) |
| 559 | { |
| 560 | /* Module symbols can be accessed randomly. */ |
Daniel Borkmann | 74451e66 | 2017-02-16 22:24:50 +0100 | [diff] [blame] | 561 | if (pos >= kallsyms_num_syms) |
| 562 | return update_iter_mod(iter, pos); |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | /* If we're not on the desired position, reset to new position. */ |
| 565 | if (pos != iter->pos) |
| 566 | reset_iter(iter, pos); |
| 567 | |
| 568 | iter->nameoff += get_ksymbol_core(iter); |
| 569 | iter->pos++; |
| 570 | |
| 571 | return 1; |
| 572 | } |
| 573 | |
| 574 | static void *s_next(struct seq_file *m, void *p, loff_t *pos) |
| 575 | { |
| 576 | (*pos)++; |
| 577 | |
| 578 | if (!update_iter(m->private, *pos)) |
| 579 | return NULL; |
| 580 | return p; |
| 581 | } |
| 582 | |
| 583 | static void *s_start(struct seq_file *m, loff_t *pos) |
| 584 | { |
| 585 | if (!update_iter(m->private, *pos)) |
| 586 | return NULL; |
| 587 | return m->private; |
| 588 | } |
| 589 | |
| 590 | static void s_stop(struct seq_file *m, void *p) |
| 591 | { |
| 592 | } |
| 593 | |
| 594 | static int s_show(struct seq_file *m, void *p) |
| 595 | { |
Linus Torvalds | 668533d | 2017-11-29 10:30:13 -0800 | [diff] [blame] | 596 | void *value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | struct kallsym_iter *iter = m->private; |
| 598 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 599 | /* Some debugging symbols have no name. Ignore them. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | if (!iter->name[0]) |
| 601 | return 0; |
| 602 | |
Linus Torvalds | 668533d | 2017-11-29 10:30:13 -0800 | [diff] [blame] | 603 | value = iter->show_value ? (void *)iter->value : NULL; |
Linus Torvalds | c0f3ea1 | 2017-11-08 12:51:04 -0800 | [diff] [blame] | 604 | |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 605 | if (iter->module_name[0]) { |
| 606 | char type; |
| 607 | |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 608 | /* |
| 609 | * Label it "global" if it is exported, |
| 610 | * "local" if not exported. |
| 611 | */ |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 612 | type = iter->exported ? toupper(iter->type) : |
| 613 | tolower(iter->type); |
Linus Torvalds | 668533d | 2017-11-29 10:30:13 -0800 | [diff] [blame] | 614 | seq_printf(m, "%px %c %s\t[%s]\n", value, |
Kees Cook | 9f36e2c | 2011-03-22 16:34:22 -0700 | [diff] [blame] | 615 | type, iter->name, iter->module_name); |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 616 | } else |
Linus Torvalds | 668533d | 2017-11-29 10:30:13 -0800 | [diff] [blame] | 617 | seq_printf(m, "%px %c %s\n", value, |
Kees Cook | 9f36e2c | 2011-03-22 16:34:22 -0700 | [diff] [blame] | 618 | iter->type, iter->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | return 0; |
| 620 | } |
| 621 | |
Helge Deller | 15ad7cd | 2006-12-06 20:40:36 -0800 | [diff] [blame] | 622 | static const struct seq_operations kallsyms_op = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | .start = s_start, |
| 624 | .next = s_next, |
| 625 | .stop = s_stop, |
| 626 | .show = s_show |
| 627 | }; |
| 628 | |
Linus Torvalds | c0f3ea1 | 2017-11-08 12:51:04 -0800 | [diff] [blame] | 629 | static inline int kallsyms_for_perf(void) |
| 630 | { |
| 631 | #ifdef CONFIG_PERF_EVENTS |
| 632 | extern int sysctl_perf_event_paranoid; |
| 633 | if (sysctl_perf_event_paranoid <= 1) |
| 634 | return 1; |
| 635 | #endif |
| 636 | return 0; |
| 637 | } |
| 638 | |
| 639 | /* |
| 640 | * We show kallsyms information even to normal users if we've enabled |
| 641 | * kernel profiling and are explicitly not paranoid (so kptr_restrict |
| 642 | * is clear, and sysctl_perf_event_paranoid isn't set). |
| 643 | * |
| 644 | * Otherwise, require CAP_SYSLOG (assuming kptr_restrict isn't set to |
| 645 | * block even that). |
| 646 | */ |
Linus Torvalds | 516fb7f | 2017-11-12 18:44:23 -0800 | [diff] [blame] | 647 | int kallsyms_show_value(void) |
Linus Torvalds | c0f3ea1 | 2017-11-08 12:51:04 -0800 | [diff] [blame] | 648 | { |
| 649 | switch (kptr_restrict) { |
| 650 | case 0: |
| 651 | if (kallsyms_for_perf()) |
| 652 | return 1; |
| 653 | /* fallthrough */ |
| 654 | case 1: |
| 655 | if (has_capability_noaudit(current, CAP_SYSLOG)) |
| 656 | return 1; |
| 657 | /* fallthrough */ |
| 658 | default: |
| 659 | return 0; |
| 660 | } |
| 661 | } |
| 662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | static int kallsyms_open(struct inode *inode, struct file *file) |
| 664 | { |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 665 | /* |
| 666 | * We keep iterator in m->private, since normal case is to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | * s_start from where we left off, so we avoid doing |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 668 | * using get_symbol_offset for every symbol. |
| 669 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | struct kallsym_iter *iter; |
Rob Jones | 0049f26 | 2014-10-13 15:52:10 -0700 | [diff] [blame] | 671 | iter = __seq_open_private(file, &kallsyms_op, sizeof(*iter)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | if (!iter) |
| 673 | return -ENOMEM; |
| 674 | reset_iter(iter, 0); |
| 675 | |
Linus Torvalds | c0f3ea1 | 2017-11-08 12:51:04 -0800 | [diff] [blame] | 676 | iter->show_value = kallsyms_show_value(); |
Rob Jones | 0049f26 | 2014-10-13 15:52:10 -0700 | [diff] [blame] | 677 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | } |
| 679 | |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 680 | #ifdef CONFIG_KGDB_KDB |
| 681 | const char *kdb_walk_kallsyms(loff_t *pos) |
| 682 | { |
| 683 | static struct kallsym_iter kdb_walk_kallsyms_iter; |
| 684 | if (*pos == 0) { |
| 685 | memset(&kdb_walk_kallsyms_iter, 0, |
| 686 | sizeof(kdb_walk_kallsyms_iter)); |
| 687 | reset_iter(&kdb_walk_kallsyms_iter, 0); |
| 688 | } |
| 689 | while (1) { |
| 690 | if (!update_iter(&kdb_walk_kallsyms_iter, *pos)) |
| 691 | return NULL; |
| 692 | ++*pos; |
| 693 | /* Some debugging symbols have no name. Ignore them. */ |
| 694 | if (kdb_walk_kallsyms_iter.name[0]) |
| 695 | return kdb_walk_kallsyms_iter.name; |
| 696 | } |
| 697 | } |
| 698 | #endif /* CONFIG_KGDB_KDB */ |
| 699 | |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 700 | static const struct proc_ops kallsyms_proc_ops = { |
| 701 | .proc_open = kallsyms_open, |
| 702 | .proc_read = seq_read, |
| 703 | .proc_lseek = seq_lseek, |
| 704 | .proc_release = seq_release_private, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | }; |
| 706 | |
| 707 | static int __init kallsyms_init(void) |
| 708 | { |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 709 | proc_create("kallsyms", 0444, NULL, &kallsyms_proc_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | return 0; |
| 711 | } |
Manish Katiyar | ad6ccfa | 2009-05-12 13:43:35 -0700 | [diff] [blame] | 712 | device_initcall(kallsyms_init); |