i40evf: dereference VSI after VSI has been null checked
[linux-2.6/btrfs-unstable.git] / kernel / kallsyms.c
blob6a3b249a2ae107b04a044f8b4760f3b55591cb43
1 /*
2 * kallsyms.c: in-kernel printing of symbolic oopses and stack traces.
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
8 * ChangeLog:
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)
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>
19 #include <linux/kdb.h>
20 #include <linux/err.h>
21 #include <linux/proc_fs.h>
22 #include <linux/sched.h> /* for cond_resched */
23 #include <linux/mm.h>
24 #include <linux/ctype.h>
25 #include <linux/slab.h>
26 #include <linux/filter.h>
27 #include <linux/compiler.h>
29 #include <asm/sections.h>
31 #ifdef CONFIG_KALLSYMS_ALL
32 #define all_var 1
33 #else
34 #define all_var 0
35 #endif
38 * These will be re-linked against their real values
39 * during the second link stage.
41 extern const unsigned long kallsyms_addresses[] __weak;
42 extern const int kallsyms_offsets[] __weak;
43 extern const u8 kallsyms_names[] __weak;
46 * Tell the compiler that the count isn't in the small data section if the arch
47 * has one (eg: FRV).
49 extern const unsigned long kallsyms_num_syms
50 __attribute__((weak, section(".rodata")));
52 extern const unsigned long kallsyms_relative_base
53 __attribute__((weak, section(".rodata")));
55 extern const u8 kallsyms_token_table[] __weak;
56 extern const u16 kallsyms_token_index[] __weak;
58 extern const unsigned long kallsyms_markers[] __weak;
60 static inline int is_kernel_inittext(unsigned long addr)
62 if (addr >= (unsigned long)_sinittext
63 && addr <= (unsigned long)_einittext)
64 return 1;
65 return 0;
68 static inline int is_kernel_text(unsigned long addr)
70 if ((addr >= (unsigned long)_stext && addr <= (unsigned long)_etext) ||
71 arch_is_kernel_text(addr))
72 return 1;
73 return in_gate_area_no_mm(addr);
76 static inline int is_kernel(unsigned long addr)
78 if (addr >= (unsigned long)_stext && addr <= (unsigned long)_end)
79 return 1;
80 return in_gate_area_no_mm(addr);
83 static int is_ksym_addr(unsigned long addr)
85 if (all_var)
86 return is_kernel(addr);
88 return is_kernel_text(addr) || is_kernel_inittext(addr);
92 * Expand a compressed symbol data into the resulting uncompressed string,
93 * if uncompressed string is too long (>= maxlen), it will be truncated,
94 * given the offset to where the symbol is in the compressed stream.
96 static unsigned int kallsyms_expand_symbol(unsigned int off,
97 char *result, size_t maxlen)
99 int len, skipped_first = 0;
100 const u8 *tptr, *data;
102 /* Get the compressed symbol length from the first symbol byte. */
103 data = &kallsyms_names[off];
104 len = *data;
105 data++;
108 * Update the offset to return the offset for the next symbol on
109 * the compressed stream.
111 off += len + 1;
114 * For every byte on the compressed symbol data, copy the table
115 * entry for that byte.
117 while (len) {
118 tptr = &kallsyms_token_table[kallsyms_token_index[*data]];
119 data++;
120 len--;
122 while (*tptr) {
123 if (skipped_first) {
124 if (maxlen <= 1)
125 goto tail;
126 *result = *tptr;
127 result++;
128 maxlen--;
129 } else
130 skipped_first = 1;
131 tptr++;
135 tail:
136 if (maxlen)
137 *result = '\0';
139 /* Return to offset to the next symbol. */
140 return off;
144 * Get symbol type information. This is encoded as a single char at the
145 * beginning of the symbol name.
147 static char kallsyms_get_symbol_type(unsigned int off)
150 * Get just the first code, look it up in the token table,
151 * and return the first char from this token.
153 return kallsyms_token_table[kallsyms_token_index[kallsyms_names[off + 1]]];
158 * Find the offset on the compressed stream given and index in the
159 * kallsyms array.
161 static unsigned int get_symbol_offset(unsigned long pos)
163 const u8 *name;
164 int i;
167 * Use the closest marker we have. We have markers every 256 positions,
168 * so that should be close enough.
170 name = &kallsyms_names[kallsyms_markers[pos >> 8]];
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.
178 for (i = 0; i < (pos & 0xFF); i++)
179 name = name + (*name) + 1;
181 return name - kallsyms_names;
184 static unsigned long kallsyms_sym_address(int idx)
186 if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE))
187 return kallsyms_addresses[idx];
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];
193 /* ...otherwise, positive offsets are absolute values */
194 if (kallsyms_offsets[idx] >= 0)
195 return kallsyms_offsets[idx];
197 /* ...and negative offsets are relative to kallsyms_relative_base - 1 */
198 return kallsyms_relative_base - 1 - kallsyms_offsets[idx];
201 /* Lookup the address for this symbol. Returns 0 if not found. */
202 unsigned long kallsyms_lookup_name(const char *name)
204 char namebuf[KSYM_NAME_LEN];
205 unsigned long i;
206 unsigned int off;
208 for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
209 off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf));
211 if (strcmp(namebuf, name) == 0)
212 return kallsyms_sym_address(i);
214 return module_kallsyms_lookup_name(name);
216 EXPORT_SYMBOL_GPL(kallsyms_lookup_name);
218 int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *,
219 unsigned long),
220 void *data)
222 char namebuf[KSYM_NAME_LEN];
223 unsigned long i;
224 unsigned int off;
225 int ret;
227 for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
228 off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf));
229 ret = fn(data, namebuf, NULL, kallsyms_sym_address(i));
230 if (ret != 0)
231 return ret;
233 return module_kallsyms_on_each_symbol(fn, data);
235 EXPORT_SYMBOL_GPL(kallsyms_on_each_symbol);
237 static unsigned long get_symbol_pos(unsigned long addr,
238 unsigned long *symbolsize,
239 unsigned long *offset)
241 unsigned long symbol_start = 0, symbol_end = 0;
242 unsigned long i, low, high, mid;
244 /* This kernel should never had been booted. */
245 if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE))
246 BUG_ON(!kallsyms_addresses);
247 else
248 BUG_ON(!kallsyms_offsets);
250 /* Do a binary search on the sorted kallsyms_addresses array. */
251 low = 0;
252 high = kallsyms_num_syms;
254 while (high - low > 1) {
255 mid = low + (high - low) / 2;
256 if (kallsyms_sym_address(mid) <= addr)
257 low = mid;
258 else
259 high = mid;
263 * Search for the first aliased symbol. Aliased
264 * symbols are symbols with the same address.
266 while (low && kallsyms_sym_address(low-1) == kallsyms_sym_address(low))
267 --low;
269 symbol_start = kallsyms_sym_address(low);
271 /* Search for next non-aliased symbol. */
272 for (i = low + 1; i < kallsyms_num_syms; i++) {
273 if (kallsyms_sym_address(i) > symbol_start) {
274 symbol_end = kallsyms_sym_address(i);
275 break;
279 /* If we found no next symbol, we use the end of the section. */
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;
289 if (symbolsize)
290 *symbolsize = symbol_end - symbol_start;
291 if (offset)
292 *offset = addr - symbol_start;
294 return low;
298 * Lookup an address but don't bother to find any names.
300 int kallsyms_lookup_size_offset(unsigned long addr, unsigned long *symbolsize,
301 unsigned long *offset)
303 char namebuf[KSYM_NAME_LEN];
305 if (is_ksym_addr(addr))
306 return !!get_symbol_pos(addr, symbolsize, offset);
307 return !!module_address_lookup(addr, symbolsize, offset, NULL, namebuf) ||
308 !!__bpf_address_lookup(addr, symbolsize, offset, namebuf);
312 * Lookup an address
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.
318 const char *kallsyms_lookup(unsigned long addr,
319 unsigned long *symbolsize,
320 unsigned long *offset,
321 char **modname, char *namebuf)
323 const char *ret;
325 namebuf[KSYM_NAME_LEN - 1] = 0;
326 namebuf[0] = 0;
328 if (is_ksym_addr(addr)) {
329 unsigned long pos;
331 pos = get_symbol_pos(addr, symbolsize, offset);
332 /* Grab name */
333 kallsyms_expand_symbol(get_symbol_offset(pos),
334 namebuf, KSYM_NAME_LEN);
335 if (modname)
336 *modname = NULL;
337 return namebuf;
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;
349 int lookup_symbol_name(unsigned long addr, char *symname)
351 symname[0] = '\0';
352 symname[KSYM_NAME_LEN - 1] = '\0';
354 if (is_ksym_addr(addr)) {
355 unsigned long pos;
357 pos = get_symbol_pos(addr, NULL, NULL);
358 /* Grab name */
359 kallsyms_expand_symbol(get_symbol_offset(pos),
360 symname, KSYM_NAME_LEN);
361 return 0;
363 /* See if it's in a module. */
364 return lookup_module_symbol_name(addr, symname);
367 int lookup_symbol_attrs(unsigned long addr, unsigned long *size,
368 unsigned long *offset, char *modname, char *name)
370 name[0] = '\0';
371 name[KSYM_NAME_LEN - 1] = '\0';
373 if (is_ksym_addr(addr)) {
374 unsigned long pos;
376 pos = get_symbol_pos(addr, size, offset);
377 /* Grab name */
378 kallsyms_expand_symbol(get_symbol_offset(pos),
379 name, KSYM_NAME_LEN);
380 modname[0] = '\0';
381 return 0;
383 /* See if it's in a module. */
384 return lookup_module_symbol_attrs(addr, size, offset, modname, name);
387 /* Look up a kernel symbol and return it in a text buffer. */
388 static int __sprint_symbol(char *buffer, unsigned long address,
389 int symbol_offset, int add_offset)
391 char *modname;
392 const char *name;
393 unsigned long offset, size;
394 int len;
396 address += symbol_offset;
397 name = kallsyms_lookup(address, &size, &offset, &modname, buffer);
398 if (!name)
399 return sprintf(buffer, "0x%lx", address - symbol_offset);
401 if (name != buffer)
402 strcpy(buffer, name);
403 len = strlen(buffer);
404 offset -= symbol_offset;
406 if (add_offset)
407 len += sprintf(buffer + len, "+%#lx/%#lx", offset, size);
409 if (modname)
410 len += sprintf(buffer + len, " [%s]", modname);
412 return len;
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
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.
424 * This function returns the number of bytes stored in @buffer.
426 int sprint_symbol(char *buffer, unsigned long address)
428 return __sprint_symbol(buffer, address, 0, 1);
430 EXPORT_SYMBOL_GPL(sprint_symbol);
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
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.
441 * This function returns the number of bytes stored in @buffer.
443 int sprint_symbol_no_offset(char *buffer, unsigned long address)
445 return __sprint_symbol(buffer, address, 0, 0);
447 EXPORT_SYMBOL_GPL(sprint_symbol_no_offset);
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
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.
461 * This function returns the number of bytes stored in @buffer.
463 int sprint_backtrace(char *buffer, unsigned long address)
465 return __sprint_symbol(buffer, address, -1, 1);
468 /* Look up a kernel symbol and print it to the kernel messages. */
469 void __print_symbol(const char *fmt, unsigned long address)
471 char buffer[KSYM_SYMBOL_LEN];
473 sprint_symbol(buffer, address);
475 printk(fmt, buffer);
477 EXPORT_SYMBOL(__print_symbol);
479 /* To avoid using get_symbol_offset for every symbol, we carry prefix along. */
480 struct kallsym_iter {
481 loff_t pos;
482 loff_t pos_mod_end;
483 unsigned long value;
484 unsigned int nameoff; /* If iterating in core kernel symbols. */
485 char type;
486 char name[KSYM_NAME_LEN];
487 char module_name[MODULE_NAME_LEN];
488 int exported;
491 static int get_ksymbol_mod(struct kallsym_iter *iter)
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;
499 return 0;
502 return 1;
505 static int get_ksymbol_bpf(struct kallsym_iter *iter)
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;
514 /* Returns space to next name. */
515 static unsigned long get_ksymbol_core(struct kallsym_iter *iter)
517 unsigned off = iter->nameoff;
519 iter->module_name[0] = '\0';
520 iter->value = kallsyms_sym_address(iter->pos);
522 iter->type = kallsyms_get_symbol_type(off);
524 off = kallsyms_expand_symbol(off, iter->name, ARRAY_SIZE(iter->name));
526 return off - iter->nameoff;
529 static void reset_iter(struct kallsym_iter *iter, loff_t new_pos)
531 iter->name[0] = '\0';
532 iter->nameoff = get_symbol_offset(new_pos);
533 iter->pos = new_pos;
534 if (new_pos == 0)
535 iter->pos_mod_end = 0;
538 static int update_iter_mod(struct kallsym_iter *iter, loff_t pos)
540 iter->pos = pos;
542 if (iter->pos_mod_end > 0 &&
543 iter->pos_mod_end < iter->pos)
544 return get_ksymbol_bpf(iter);
546 if (!get_ksymbol_mod(iter))
547 return get_ksymbol_bpf(iter);
549 return 1;
552 /* Returns false if pos at or past end of file. */
553 static int update_iter(struct kallsym_iter *iter, loff_t pos)
555 /* Module symbols can be accessed randomly. */
556 if (pos >= kallsyms_num_syms)
557 return update_iter_mod(iter, pos);
559 /* If we're not on the desired position, reset to new position. */
560 if (pos != iter->pos)
561 reset_iter(iter, pos);
563 iter->nameoff += get_ksymbol_core(iter);
564 iter->pos++;
566 return 1;
569 static void *s_next(struct seq_file *m, void *p, loff_t *pos)
571 (*pos)++;
573 if (!update_iter(m->private, *pos))
574 return NULL;
575 return p;
578 static void *s_start(struct seq_file *m, loff_t *pos)
580 if (!update_iter(m->private, *pos))
581 return NULL;
582 return m->private;
585 static void s_stop(struct seq_file *m, void *p)
589 static int s_show(struct seq_file *m, void *p)
591 struct kallsym_iter *iter = m->private;
593 /* Some debugging symbols have no name. Ignore them. */
594 if (!iter->name[0])
595 return 0;
597 if (iter->module_name[0]) {
598 char type;
601 * Label it "global" if it is exported,
602 * "local" if not exported.
604 type = iter->exported ? toupper(iter->type) :
605 tolower(iter->type);
606 seq_printf(m, "%pK %c %s\t[%s]\n", (void *)iter->value,
607 type, iter->name, iter->module_name);
608 } else
609 seq_printf(m, "%pK %c %s\n", (void *)iter->value,
610 iter->type, iter->name);
611 return 0;
614 static const struct seq_operations kallsyms_op = {
615 .start = s_start,
616 .next = s_next,
617 .stop = s_stop,
618 .show = s_show
621 static int kallsyms_open(struct inode *inode, struct file *file)
624 * We keep iterator in m->private, since normal case is to
625 * s_start from where we left off, so we avoid doing
626 * using get_symbol_offset for every symbol.
628 struct kallsym_iter *iter;
629 iter = __seq_open_private(file, &kallsyms_op, sizeof(*iter));
630 if (!iter)
631 return -ENOMEM;
632 reset_iter(iter, 0);
634 return 0;
637 #ifdef CONFIG_KGDB_KDB
638 const char *kdb_walk_kallsyms(loff_t *pos)
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);
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;
655 #endif /* CONFIG_KGDB_KDB */
657 static const struct file_operations kallsyms_operations = {
658 .open = kallsyms_open,
659 .read = seq_read,
660 .llseek = seq_lseek,
661 .release = seq_release_private,
664 static int __init kallsyms_init(void)
666 proc_create("kallsyms", 0444, NULL, &kallsyms_operations);
667 return 0;
669 device_initcall(kallsyms_init);