]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * kallsyms.c: in-kernel printing of symbolic oopses and stack traces. | |
3 | * | |
4 | * Rewritten and vastly simplified by Rusty Russell for in-kernel | |
5 | * module loader: | |
6 | * Copyright 2002 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation | |
7 | * | |
8 | * ChangeLog: | |
9 | * | |
10 | * (25/Aug/2004) Paulo Marques <pmarques@grupopie.com> | |
11 | * Changed the compression method from stem compression to "table lookup" | |
12 | * compression (see scripts/kallsyms.c for a more complete description) | |
13 | */ | |
14 | #include <linux/kallsyms.h> | |
15 | #include <linux/module.h> | |
16 | #include <linux/init.h> | |
17 | #include <linux/seq_file.h> | |
18 | #include <linux/fs.h> | |
67fc4e0c | 19 | #include <linux/kdb.h> |
1da177e4 LT |
20 | #include <linux/err.h> |
21 | #include <linux/proc_fs.h> | |
4e57b681 | 22 | #include <linux/sched.h> /* for cond_resched */ |
1da177e4 | 23 | #include <linux/mm.h> |
07354a00 | 24 | #include <linux/ctype.h> |
5a0e3ad6 | 25 | #include <linux/slab.h> |
74451e66 | 26 | #include <linux/filter.h> |
52f5684c | 27 | #include <linux/compiler.h> |
1da177e4 LT |
28 | |
29 | #include <asm/sections.h> | |
30 | ||
31 | #ifdef CONFIG_KALLSYMS_ALL | |
32 | #define all_var 1 | |
33 | #else | |
34 | #define all_var 0 | |
35 | #endif | |
36 | ||
ad6ccfad MK |
37 | /* |
38 | * These will be re-linked against their real values | |
39 | * during the second link stage. | |
40 | */ | |
52f5684c | 41 | extern const unsigned long kallsyms_addresses[] __weak; |
2213e9a6 | 42 | extern const int kallsyms_offsets[] __weak; |
52f5684c | 43 | extern const u8 kallsyms_names[] __weak; |
1da177e4 | 44 | |
ad6ccfad MK |
45 | /* |
46 | * Tell the compiler that the count isn't in the small data section if the arch | |
47 | * has one (eg: FRV). | |
9e6c1e63 DH |
48 | */ |
49 | extern const unsigned long kallsyms_num_syms | |
2ea03891 | 50 | __attribute__((weak, section(".rodata"))); |
9e6c1e63 | 51 | |
2213e9a6 AB |
52 | extern const unsigned long kallsyms_relative_base |
53 | __attribute__((weak, section(".rodata"))); | |
54 | ||
52f5684c GID |
55 | extern const u8 kallsyms_token_table[] __weak; |
56 | extern const u16 kallsyms_token_index[] __weak; | |
1da177e4 | 57 | |
52f5684c | 58 | extern const unsigned long kallsyms_markers[] __weak; |
1da177e4 LT |
59 | |
60 | static inline int is_kernel_inittext(unsigned long addr) | |
61 | { | |
62 | if (addr >= (unsigned long)_sinittext | |
63 | && addr <= (unsigned long)_einittext) | |
64 | return 1; | |
65 | return 0; | |
66 | } | |
67 | ||
68 | static inline int is_kernel_text(unsigned long addr) | |
69 | { | |
128e8db3 MF |
70 | if ((addr >= (unsigned long)_stext && addr <= (unsigned long)_etext) || |
71 | arch_is_kernel_text(addr)) | |
1da177e4 | 72 | return 1; |
cae5d390 | 73 | return in_gate_area_no_mm(addr); |
1da177e4 LT |
74 | } |
75 | ||
76 | static inline int is_kernel(unsigned long addr) | |
77 | { | |
78 | if (addr >= (unsigned long)_stext && addr <= (unsigned long)_end) | |
79 | return 1; | |
cae5d390 | 80 | return in_gate_area_no_mm(addr); |
1da177e4 LT |
81 | } |
82 | ||
ffc50891 FBH |
83 | static int is_ksym_addr(unsigned long addr) |
84 | { | |
85 | if (all_var) | |
86 | return is_kernel(addr); | |
87 | ||
a3b81113 | 88 | return is_kernel_text(addr) || is_kernel_inittext(addr); |
ffc50891 FBH |
89 | } |
90 | ||
ad6ccfad MK |
91 | /* |
92 | * Expand a compressed symbol data into the resulting uncompressed string, | |
e3f26752 | 93 | * if uncompressed string is too long (>= maxlen), it will be truncated, |
ad6ccfad MK |
94 | * given the offset to where the symbol is in the compressed stream. |
95 | */ | |
e3f26752 CG |
96 | static unsigned int kallsyms_expand_symbol(unsigned int off, |
97 | char *result, size_t maxlen) | |
1da177e4 LT |
98 | { |
99 | int len, skipped_first = 0; | |
aad09470 | 100 | const u8 *tptr, *data; |
1da177e4 | 101 | |
ad6ccfad | 102 | /* Get the compressed symbol length from the first symbol byte. */ |
1da177e4 LT |
103 | data = &kallsyms_names[off]; |
104 | len = *data; | |
105 | data++; | |
106 | ||
ad6ccfad MK |
107 | /* |
108 | * Update the offset to return the offset for the next symbol on | |
109 | * the compressed stream. | |
110 | */ | |
1da177e4 LT |
111 | off += len + 1; |
112 | ||
ad6ccfad MK |
113 | /* |
114 | * For every byte on the compressed symbol data, copy the table | |
115 | * entry for that byte. | |
116 | */ | |
117 | while (len) { | |
118 | tptr = &kallsyms_token_table[kallsyms_token_index[*data]]; | |
1da177e4 LT |
119 | data++; |
120 | len--; | |
121 | ||
122 | while (*tptr) { | |
ad6ccfad | 123 | if (skipped_first) { |
e3f26752 CG |
124 | if (maxlen <= 1) |
125 | goto tail; | |
1da177e4 LT |
126 | *result = *tptr; |
127 | result++; | |
e3f26752 | 128 | maxlen--; |
1da177e4 LT |
129 | } else |
130 | skipped_first = 1; | |
131 | tptr++; | |
132 | } | |
133 | } | |
134 | ||
e3f26752 CG |
135 | tail: |
136 | if (maxlen) | |
137 | *result = '\0'; | |
1da177e4 | 138 | |
ad6ccfad | 139 | /* Return to offset to the next symbol. */ |
1da177e4 LT |
140 | return off; |
141 | } | |
142 | ||
ad6ccfad MK |
143 | /* |
144 | * Get symbol type information. This is encoded as a single char at the | |
145 | * beginning of the symbol name. | |
146 | */ | |
1da177e4 LT |
147 | static char kallsyms_get_symbol_type(unsigned int off) |
148 | { | |
ad6ccfad MK |
149 | /* |
150 | * Get just the first code, look it up in the token table, | |
151 | * and return the first char from this token. | |
152 | */ | |
153 | return kallsyms_token_table[kallsyms_token_index[kallsyms_names[off + 1]]]; | |
1da177e4 LT |
154 | } |
155 | ||
156 | ||
ad6ccfad MK |
157 | /* |
158 | * Find the offset on the compressed stream given and index in the | |
159 | * kallsyms array. | |
160 | */ | |
1da177e4 LT |
161 | static unsigned int get_symbol_offset(unsigned long pos) |
162 | { | |
aad09470 | 163 | const u8 *name; |
1da177e4 LT |
164 | int i; |
165 | ||
ad6ccfad MK |
166 | /* |
167 | * Use the closest marker we have. We have markers every 256 positions, | |
168 | * so that should be close enough. | |
169 | */ | |
170 | name = &kallsyms_names[kallsyms_markers[pos >> 8]]; | |
1da177e4 | 171 | |
ad6ccfad MK |
172 | /* |
173 | * Sequentially scan all the symbols up to the point we're searching | |
174 | * for. Every symbol is stored in a [<len>][<len> bytes of data] format, | |
175 | * so we just need to add the len to the current pointer for every | |
176 | * symbol we wish to skip. | |
177 | */ | |
178 | for (i = 0; i < (pos & 0xFF); i++) | |
1da177e4 LT |
179 | name = name + (*name) + 1; |
180 | ||
181 | return name - kallsyms_names; | |
182 | } | |
183 | ||
2213e9a6 AB |
184 | static unsigned long kallsyms_sym_address(int idx) |
185 | { | |
186 | if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE)) | |
187 | return kallsyms_addresses[idx]; | |
188 | ||
189 | /* values are unsigned offsets if --absolute-percpu is not in effect */ | |
190 | if (!IS_ENABLED(CONFIG_KALLSYMS_ABSOLUTE_PERCPU)) | |
191 | return kallsyms_relative_base + (u32)kallsyms_offsets[idx]; | |
192 | ||
193 | /* ...otherwise, positive offsets are absolute values */ | |
194 | if (kallsyms_offsets[idx] >= 0) | |
195 | return kallsyms_offsets[idx]; | |
196 | ||
197 | /* ...and negative offsets are relative to kallsyms_relative_base - 1 */ | |
198 | return kallsyms_relative_base - 1 - kallsyms_offsets[idx]; | |
199 | } | |
200 | ||
1da177e4 LT |
201 | /* Lookup the address for this symbol. Returns 0 if not found. */ |
202 | unsigned long kallsyms_lookup_name(const char *name) | |
203 | { | |
9281acea | 204 | char namebuf[KSYM_NAME_LEN]; |
1da177e4 LT |
205 | unsigned long i; |
206 | unsigned int off; | |
207 | ||
208 | for (i = 0, off = 0; i < kallsyms_num_syms; i++) { | |
e3f26752 | 209 | off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf)); |
1da177e4 LT |
210 | |
211 | if (strcmp(namebuf, name) == 0) | |
2213e9a6 | 212 | return kallsyms_sym_address(i); |
1da177e4 LT |
213 | } |
214 | return module_kallsyms_lookup_name(name); | |
215 | } | |
f60d24d2 | 216 | EXPORT_SYMBOL_GPL(kallsyms_lookup_name); |
1da177e4 | 217 | |
75a66614 AK |
218 | int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, |
219 | unsigned long), | |
220 | void *data) | |
221 | { | |
222 | char namebuf[KSYM_NAME_LEN]; | |
223 | unsigned long i; | |
224 | unsigned int off; | |
225 | int ret; | |
226 | ||
227 | for (i = 0, off = 0; i < kallsyms_num_syms; i++) { | |
e3f26752 | 228 | off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf)); |
2213e9a6 | 229 | ret = fn(data, namebuf, NULL, kallsyms_sym_address(i)); |
75a66614 AK |
230 | if (ret != 0) |
231 | return ret; | |
232 | } | |
233 | return module_kallsyms_on_each_symbol(fn, data); | |
234 | } | |
235 | EXPORT_SYMBOL_GPL(kallsyms_on_each_symbol); | |
236 | ||
ffc50891 FBH |
237 | static unsigned long get_symbol_pos(unsigned long addr, |
238 | unsigned long *symbolsize, | |
239 | unsigned long *offset) | |
240 | { | |
241 | unsigned long symbol_start = 0, symbol_end = 0; | |
242 | unsigned long i, low, high, mid; | |
243 | ||
2ea03891 | 244 | /* This kernel should never had been booted. */ |
2213e9a6 AB |
245 | if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE)) |
246 | BUG_ON(!kallsyms_addresses); | |
247 | else | |
248 | BUG_ON(!kallsyms_offsets); | |
2ea03891 | 249 | |
ad6ccfad | 250 | /* Do a binary search on the sorted kallsyms_addresses array. */ |
ffc50891 FBH |
251 | low = 0; |
252 | high = kallsyms_num_syms; | |
253 | ||
254 | while (high - low > 1) { | |
2fc9c4e1 | 255 | mid = low + (high - low) / 2; |
2213e9a6 | 256 | if (kallsyms_sym_address(mid) <= addr) |
ffc50891 FBH |
257 | low = mid; |
258 | else | |
259 | high = mid; | |
260 | } | |
261 | ||
262 | /* | |
ad6ccfad MK |
263 | * Search for the first aliased symbol. Aliased |
264 | * symbols are symbols with the same address. | |
ffc50891 | 265 | */ |
2213e9a6 | 266 | while (low && kallsyms_sym_address(low-1) == kallsyms_sym_address(low)) |
ffc50891 FBH |
267 | --low; |
268 | ||
2213e9a6 | 269 | symbol_start = kallsyms_sym_address(low); |
ffc50891 | 270 | |
ad6ccfad | 271 | /* Search for next non-aliased symbol. */ |
ffc50891 | 272 | for (i = low + 1; i < kallsyms_num_syms; i++) { |
2213e9a6 AB |
273 | if (kallsyms_sym_address(i) > symbol_start) { |
274 | symbol_end = kallsyms_sym_address(i); | |
ffc50891 FBH |
275 | break; |
276 | } | |
277 | } | |
278 | ||
ad6ccfad | 279 | /* If we found no next symbol, we use the end of the section. */ |
ffc50891 FBH |
280 | if (!symbol_end) { |
281 | if (is_kernel_inittext(addr)) | |
282 | symbol_end = (unsigned long)_einittext; | |
283 | else if (all_var) | |
284 | symbol_end = (unsigned long)_end; | |
285 | else | |
286 | symbol_end = (unsigned long)_etext; | |
287 | } | |
288 | ||
ffb45122 AD |
289 | if (symbolsize) |
290 | *symbolsize = symbol_end - symbol_start; | |
291 | if (offset) | |
292 | *offset = addr - symbol_start; | |
ffc50891 FBH |
293 | |
294 | return low; | |
295 | } | |
296 | ||
297 | /* | |
298 | * Lookup an address but don't bother to find any names. | |
299 | */ | |
300 | int kallsyms_lookup_size_offset(unsigned long addr, unsigned long *symbolsize, | |
301 | unsigned long *offset) | |
302 | { | |
6dd06c9f | 303 | char namebuf[KSYM_NAME_LEN]; |
74451e66 | 304 | |
ffc50891 FBH |
305 | if (is_ksym_addr(addr)) |
306 | return !!get_symbol_pos(addr, symbolsize, offset); | |
74451e66 DB |
307 | return !!module_address_lookup(addr, symbolsize, offset, NULL, namebuf) || |
308 | !!__bpf_address_lookup(addr, symbolsize, offset, namebuf); | |
ffc50891 FBH |
309 | } |
310 | ||
1da177e4 LT |
311 | /* |
312 | * Lookup an address | |
ad6ccfad MK |
313 | * - modname is set to NULL if it's in the kernel. |
314 | * - We guarantee that the returned name is valid until we reschedule even if. | |
315 | * It resides in a module. | |
316 | * - We also guarantee that modname will be valid until rescheduled. | |
1da177e4 LT |
317 | */ |
318 | const char *kallsyms_lookup(unsigned long addr, | |
319 | unsigned long *symbolsize, | |
320 | unsigned long *offset, | |
321 | char **modname, char *namebuf) | |
322 | { | |
74451e66 DB |
323 | const char *ret; |
324 | ||
9281acea | 325 | namebuf[KSYM_NAME_LEN - 1] = 0; |
1da177e4 LT |
326 | namebuf[0] = 0; |
327 | ||
ffc50891 FBH |
328 | if (is_ksym_addr(addr)) { |
329 | unsigned long pos; | |
1da177e4 | 330 | |
ffc50891 | 331 | pos = get_symbol_pos(addr, symbolsize, offset); |
1da177e4 | 332 | /* Grab name */ |
e3f26752 CG |
333 | kallsyms_expand_symbol(get_symbol_offset(pos), |
334 | namebuf, KSYM_NAME_LEN); | |
7a74fc49 KM |
335 | if (modname) |
336 | *modname = NULL; | |
1da177e4 LT |
337 | return namebuf; |
338 | } | |
339 | ||
74451e66 DB |
340 | /* See if it's in a module or a BPF JITed image. */ |
341 | ret = module_address_lookup(addr, symbolsize, offset, | |
342 | modname, namebuf); | |
343 | if (!ret) | |
344 | ret = bpf_address_lookup(addr, symbolsize, | |
345 | offset, modname, namebuf); | |
346 | return ret; | |
1da177e4 LT |
347 | } |
348 | ||
9d65cb4a AD |
349 | int lookup_symbol_name(unsigned long addr, char *symname) |
350 | { | |
351 | symname[0] = '\0'; | |
9281acea | 352 | symname[KSYM_NAME_LEN - 1] = '\0'; |
9d65cb4a AD |
353 | |
354 | if (is_ksym_addr(addr)) { | |
355 | unsigned long pos; | |
356 | ||
357 | pos = get_symbol_pos(addr, NULL, NULL); | |
358 | /* Grab name */ | |
e3f26752 CG |
359 | kallsyms_expand_symbol(get_symbol_offset(pos), |
360 | symname, KSYM_NAME_LEN); | |
9d65cb4a AD |
361 | return 0; |
362 | } | |
ad6ccfad | 363 | /* See if it's in a module. */ |
9d65cb4a AD |
364 | return lookup_module_symbol_name(addr, symname); |
365 | } | |
366 | ||
a5c43dae AD |
367 | int lookup_symbol_attrs(unsigned long addr, unsigned long *size, |
368 | unsigned long *offset, char *modname, char *name) | |
369 | { | |
370 | name[0] = '\0'; | |
9281acea | 371 | name[KSYM_NAME_LEN - 1] = '\0'; |
a5c43dae AD |
372 | |
373 | if (is_ksym_addr(addr)) { | |
374 | unsigned long pos; | |
375 | ||
376 | pos = get_symbol_pos(addr, size, offset); | |
377 | /* Grab name */ | |
e3f26752 CG |
378 | kallsyms_expand_symbol(get_symbol_offset(pos), |
379 | name, KSYM_NAME_LEN); | |
a5c43dae AD |
380 | modname[0] = '\0'; |
381 | return 0; | |
382 | } | |
ad6ccfad | 383 | /* See if it's in a module. */ |
a5c43dae AD |
384 | return lookup_module_symbol_attrs(addr, size, offset, modname, name); |
385 | } | |
386 | ||
42e38083 | 387 | /* Look up a kernel symbol and return it in a text buffer. */ |
0f77a8d3 | 388 | static int __sprint_symbol(char *buffer, unsigned long address, |
4796dd20 | 389 | int symbol_offset, int add_offset) |
1da177e4 LT |
390 | { |
391 | char *modname; | |
392 | const char *name; | |
393 | unsigned long offset, size; | |
966c8c12 | 394 | int len; |
1da177e4 | 395 | |
0f77a8d3 | 396 | address += symbol_offset; |
966c8c12 | 397 | name = kallsyms_lookup(address, &size, &offset, &modname, buffer); |
1da177e4 | 398 | if (!name) |
b86280aa | 399 | return sprintf(buffer, "0x%lx", address - symbol_offset); |
19769b76 | 400 | |
966c8c12 HD |
401 | if (name != buffer) |
402 | strcpy(buffer, name); | |
403 | len = strlen(buffer); | |
0f77a8d3 | 404 | offset -= symbol_offset; |
966c8c12 | 405 | |
4796dd20 SB |
406 | if (add_offset) |
407 | len += sprintf(buffer + len, "+%#lx/%#lx", offset, size); | |
408 | ||
19769b76 | 409 | if (modname) |
4796dd20 | 410 | len += sprintf(buffer + len, " [%s]", modname); |
966c8c12 HD |
411 | |
412 | return len; | |
42e38083 | 413 | } |
0f77a8d3 NK |
414 | |
415 | /** | |
416 | * sprint_symbol - Look up a kernel symbol and return it in a text buffer | |
417 | * @buffer: buffer to be stored | |
418 | * @address: address to lookup | |
419 | * | |
420 | * This function looks up a kernel symbol with @address and stores its name, | |
421 | * offset, size and module name to @buffer if possible. If no symbol was found, | |
422 | * just saves its @address as is. | |
423 | * | |
424 | * This function returns the number of bytes stored in @buffer. | |
425 | */ | |
426 | int sprint_symbol(char *buffer, unsigned long address) | |
427 | { | |
4796dd20 | 428 | return __sprint_symbol(buffer, address, 0, 1); |
0f77a8d3 | 429 | } |
ad6ccfad | 430 | EXPORT_SYMBOL_GPL(sprint_symbol); |
42e38083 | 431 | |
4796dd20 SB |
432 | /** |
433 | * sprint_symbol_no_offset - Look up a kernel symbol and return it in a text buffer | |
434 | * @buffer: buffer to be stored | |
435 | * @address: address to lookup | |
436 | * | |
437 | * This function looks up a kernel symbol with @address and stores its name | |
438 | * and module name to @buffer if possible. If no symbol was found, just saves | |
439 | * its @address as is. | |
440 | * | |
441 | * This function returns the number of bytes stored in @buffer. | |
442 | */ | |
443 | int sprint_symbol_no_offset(char *buffer, unsigned long address) | |
444 | { | |
445 | return __sprint_symbol(buffer, address, 0, 0); | |
446 | } | |
447 | EXPORT_SYMBOL_GPL(sprint_symbol_no_offset); | |
448 | ||
0f77a8d3 NK |
449 | /** |
450 | * sprint_backtrace - Look up a backtrace symbol and return it in a text buffer | |
451 | * @buffer: buffer to be stored | |
452 | * @address: address to lookup | |
453 | * | |
454 | * This function is for stack backtrace and does the same thing as | |
455 | * sprint_symbol() but with modified/decreased @address. If there is a | |
456 | * tail-call to the function marked "noreturn", gcc optimized out code after | |
457 | * the call so that the stack-saved return address could point outside of the | |
458 | * caller. This function ensures that kallsyms will find the original caller | |
459 | * by decreasing @address. | |
460 | * | |
461 | * This function returns the number of bytes stored in @buffer. | |
462 | */ | |
463 | int sprint_backtrace(char *buffer, unsigned long address) | |
464 | { | |
4796dd20 | 465 | return __sprint_symbol(buffer, address, -1, 1); |
0f77a8d3 NK |
466 | } |
467 | ||
42e38083 RP |
468 | /* Look up a kernel symbol and print it to the kernel messages. */ |
469 | void __print_symbol(const char *fmt, unsigned long address) | |
470 | { | |
471 | char buffer[KSYM_SYMBOL_LEN]; | |
472 | ||
473 | sprint_symbol(buffer, address); | |
474 | ||
1da177e4 LT |
475 | printk(fmt, buffer); |
476 | } | |
ad6ccfad | 477 | EXPORT_SYMBOL(__print_symbol); |
1da177e4 LT |
478 | |
479 | /* To avoid using get_symbol_offset for every symbol, we carry prefix along. */ | |
ad6ccfad | 480 | struct kallsym_iter { |
1da177e4 | 481 | loff_t pos; |
74451e66 | 482 | loff_t pos_mod_end; |
1da177e4 | 483 | unsigned long value; |
ad6ccfad | 484 | unsigned int nameoff; /* If iterating in core kernel symbols. */ |
1da177e4 | 485 | char type; |
9281acea TH |
486 | char name[KSYM_NAME_LEN]; |
487 | char module_name[MODULE_NAME_LEN]; | |
ea07890a | 488 | int exported; |
1da177e4 LT |
489 | }; |
490 | ||
1da177e4 LT |
491 | static int get_ksymbol_mod(struct kallsym_iter *iter) |
492 | { | |
74451e66 DB |
493 | int ret = module_get_kallsym(iter->pos - kallsyms_num_syms, |
494 | &iter->value, &iter->type, | |
495 | iter->name, iter->module_name, | |
496 | &iter->exported); | |
497 | if (ret < 0) { | |
498 | iter->pos_mod_end = iter->pos; | |
1da177e4 | 499 | return 0; |
74451e66 DB |
500 | } |
501 | ||
1da177e4 LT |
502 | return 1; |
503 | } | |
504 | ||
74451e66 DB |
505 | static int get_ksymbol_bpf(struct kallsym_iter *iter) |
506 | { | |
507 | iter->module_name[0] = '\0'; | |
508 | iter->exported = 0; | |
509 | return bpf_get_kallsym(iter->pos - iter->pos_mod_end, | |
510 | &iter->value, &iter->type, | |
511 | iter->name) < 0 ? 0 : 1; | |
512 | } | |
513 | ||
1da177e4 LT |
514 | /* Returns space to next name. */ |
515 | static unsigned long get_ksymbol_core(struct kallsym_iter *iter) | |
516 | { | |
517 | unsigned off = iter->nameoff; | |
518 | ||
ea07890a | 519 | iter->module_name[0] = '\0'; |
2213e9a6 | 520 | iter->value = kallsyms_sym_address(iter->pos); |
1da177e4 LT |
521 | |
522 | iter->type = kallsyms_get_symbol_type(off); | |
523 | ||
e3f26752 | 524 | off = kallsyms_expand_symbol(off, iter->name, ARRAY_SIZE(iter->name)); |
1da177e4 LT |
525 | |
526 | return off - iter->nameoff; | |
527 | } | |
528 | ||
529 | static void reset_iter(struct kallsym_iter *iter, loff_t new_pos) | |
530 | { | |
531 | iter->name[0] = '\0'; | |
532 | iter->nameoff = get_symbol_offset(new_pos); | |
533 | iter->pos = new_pos; | |
74451e66 DB |
534 | if (new_pos == 0) |
535 | iter->pos_mod_end = 0; | |
536 | } | |
537 | ||
538 | static int update_iter_mod(struct kallsym_iter *iter, loff_t pos) | |
539 | { | |
540 | iter->pos = pos; | |
541 | ||
542 | if (iter->pos_mod_end > 0 && | |
543 | iter->pos_mod_end < iter->pos) | |
544 | return get_ksymbol_bpf(iter); | |
545 | ||
546 | if (!get_ksymbol_mod(iter)) | |
547 | return get_ksymbol_bpf(iter); | |
548 | ||
549 | return 1; | |
1da177e4 LT |
550 | } |
551 | ||
552 | /* Returns false if pos at or past end of file. */ | |
553 | static int update_iter(struct kallsym_iter *iter, loff_t pos) | |
554 | { | |
555 | /* Module symbols can be accessed randomly. */ | |
74451e66 DB |
556 | if (pos >= kallsyms_num_syms) |
557 | return update_iter_mod(iter, pos); | |
ad6ccfad | 558 | |
1da177e4 LT |
559 | /* If we're not on the desired position, reset to new position. */ |
560 | if (pos != iter->pos) | |
561 | reset_iter(iter, pos); | |
562 | ||
563 | iter->nameoff += get_ksymbol_core(iter); | |
564 | iter->pos++; | |
565 | ||
566 | return 1; | |
567 | } | |
568 | ||
569 | static void *s_next(struct seq_file *m, void *p, loff_t *pos) | |
570 | { | |
571 | (*pos)++; | |
572 | ||
573 | if (!update_iter(m->private, *pos)) | |
574 | return NULL; | |
575 | return p; | |
576 | } | |
577 | ||
578 | static void *s_start(struct seq_file *m, loff_t *pos) | |
579 | { | |
580 | if (!update_iter(m->private, *pos)) | |
581 | return NULL; | |
582 | return m->private; | |
583 | } | |
584 | ||
585 | static void s_stop(struct seq_file *m, void *p) | |
586 | { | |
587 | } | |
588 | ||
589 | static int s_show(struct seq_file *m, void *p) | |
590 | { | |
591 | struct kallsym_iter *iter = m->private; | |
592 | ||
ad6ccfad | 593 | /* Some debugging symbols have no name. Ignore them. */ |
1da177e4 LT |
594 | if (!iter->name[0]) |
595 | return 0; | |
596 | ||
ea07890a AD |
597 | if (iter->module_name[0]) { |
598 | char type; | |
599 | ||
ad6ccfad MK |
600 | /* |
601 | * Label it "global" if it is exported, | |
602 | * "local" if not exported. | |
603 | */ | |
ea07890a AD |
604 | type = iter->exported ? toupper(iter->type) : |
605 | tolower(iter->type); | |
9f36e2c4 KC |
606 | seq_printf(m, "%pK %c %s\t[%s]\n", (void *)iter->value, |
607 | type, iter->name, iter->module_name); | |
ea07890a | 608 | } else |
9f36e2c4 KC |
609 | seq_printf(m, "%pK %c %s\n", (void *)iter->value, |
610 | iter->type, iter->name); | |
1da177e4 LT |
611 | return 0; |
612 | } | |
613 | ||
15ad7cdc | 614 | static const struct seq_operations kallsyms_op = { |
1da177e4 LT |
615 | .start = s_start, |
616 | .next = s_next, | |
617 | .stop = s_stop, | |
618 | .show = s_show | |
619 | }; | |
620 | ||
621 | static int kallsyms_open(struct inode *inode, struct file *file) | |
622 | { | |
ad6ccfad MK |
623 | /* |
624 | * We keep iterator in m->private, since normal case is to | |
1da177e4 | 625 | * s_start from where we left off, so we avoid doing |
ad6ccfad MK |
626 | * using get_symbol_offset for every symbol. |
627 | */ | |
1da177e4 | 628 | struct kallsym_iter *iter; |
0049f26a | 629 | iter = __seq_open_private(file, &kallsyms_op, sizeof(*iter)); |
1da177e4 LT |
630 | if (!iter) |
631 | return -ENOMEM; | |
632 | reset_iter(iter, 0); | |
633 | ||
0049f26a | 634 | return 0; |
1da177e4 LT |
635 | } |
636 | ||
67fc4e0c JW |
637 | #ifdef CONFIG_KGDB_KDB |
638 | const char *kdb_walk_kallsyms(loff_t *pos) | |
639 | { | |
640 | static struct kallsym_iter kdb_walk_kallsyms_iter; | |
641 | if (*pos == 0) { | |
642 | memset(&kdb_walk_kallsyms_iter, 0, | |
643 | sizeof(kdb_walk_kallsyms_iter)); | |
644 | reset_iter(&kdb_walk_kallsyms_iter, 0); | |
645 | } | |
646 | while (1) { | |
647 | if (!update_iter(&kdb_walk_kallsyms_iter, *pos)) | |
648 | return NULL; | |
649 | ++*pos; | |
650 | /* Some debugging symbols have no name. Ignore them. */ | |
651 | if (kdb_walk_kallsyms_iter.name[0]) | |
652 | return kdb_walk_kallsyms_iter.name; | |
653 | } | |
654 | } | |
655 | #endif /* CONFIG_KGDB_KDB */ | |
656 | ||
15ad7cdc | 657 | static const struct file_operations kallsyms_operations = { |
1da177e4 LT |
658 | .open = kallsyms_open, |
659 | .read = seq_read, | |
660 | .llseek = seq_lseek, | |
5a0c6a0d | 661 | .release = seq_release_private, |
1da177e4 LT |
662 | }; |
663 | ||
664 | static int __init kallsyms_init(void) | |
665 | { | |
33e0d57f | 666 | proc_create("kallsyms", 0444, NULL, &kallsyms_operations); |
1da177e4 LT |
667 | return 0; |
668 | } | |
ad6ccfad | 669 | device_initcall(kallsyms_init); |