2 * kallsyms.c: in-kernel printing of symbolic oopses and stack traces.
4 * Rewritten and vastly simplified by Rusty Russell for in-kernel
6 * Copyright 2002 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
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>
19 #include <linux/err.h>
20 #include <linux/proc_fs.h>
23 #include <asm/sections.h>
25 #ifdef CONFIG_KALLSYMS_ALL
31 /* These will be re-linked against their real values during the second link stage */
32 extern unsigned long kallsyms_addresses[] __attribute__((weak));
33 extern unsigned long kallsyms_num_syms __attribute__((weak,section("data")));
34 extern u8 kallsyms_names[] __attribute__((weak));
36 extern u8 kallsyms_token_table[] __attribute__((weak));
37 extern u16 kallsyms_token_index[] __attribute__((weak));
39 extern unsigned long kallsyms_markers[] __attribute__((weak));
41 static inline int is_kernel_inittext(unsigned long addr)
43 if (addr >= (unsigned long)_sinittext
44 && addr <= (unsigned long)_einittext)
49 static inline int is_kernel_text(unsigned long addr)
51 if (addr >= (unsigned long)_stext && addr <= (unsigned long)_etext)
53 return in_gate_area_no_task(addr);
56 static inline int is_kernel(unsigned long addr)
58 if (addr >= (unsigned long)_stext && addr <= (unsigned long)_end)
60 return in_gate_area_no_task(addr);
63 /* expand a compressed symbol data into the resulting uncompressed string,
64 given the offset to where the symbol is in the compressed stream */
65 static unsigned int kallsyms_expand_symbol(unsigned int off, char *result)
67 int len, skipped_first = 0;
70 /* get the compressed symbol length from the first symbol byte */
71 data = &kallsyms_names[off];
75 /* update the offset to return the offset for the next symbol on
76 * the compressed stream */
79 /* for every byte on the compressed symbol data, copy the table
80 entry for that byte */
82 tptr = &kallsyms_token_table[ kallsyms_token_index[*data] ];
98 /* return to offset to the next symbol */
102 /* get symbol type information. This is encoded as a single char at the
103 * begining of the symbol name */
104 static char kallsyms_get_symbol_type(unsigned int off)
106 /* get just the first code, look it up in the token table, and return the
107 * first char from this token */
108 return kallsyms_token_table[ kallsyms_token_index[ kallsyms_names[off+1] ] ];
112 /* find the offset on the compressed stream given and index in the
114 static unsigned int get_symbol_offset(unsigned long pos)
119 /* use the closest marker we have. We have markers every 256 positions,
120 * so that should be close enough */
121 name = &kallsyms_names[ kallsyms_markers[pos>>8] ];
123 /* sequentially scan all the symbols up to the point we're searching for.
124 * Every symbol is stored in a [<len>][<len> bytes of data] format, so we
125 * just need to add the len to the current pointer for every symbol we
127 for(i = 0; i < (pos&0xFF); i++)
128 name = name + (*name) + 1;
130 return name - kallsyms_names;
133 /* Lookup the address for this symbol. Returns 0 if not found. */
134 unsigned long kallsyms_lookup_name(const char *name)
136 char namebuf[KSYM_NAME_LEN+1];
140 for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
141 off = kallsyms_expand_symbol(off, namebuf);
143 if (strcmp(namebuf, name) == 0)
144 return kallsyms_addresses[i];
146 return module_kallsyms_lookup_name(name);
148 EXPORT_SYMBOL_GPL(kallsyms_lookup_name);
152 * - modname is set to NULL if it's in the kernel
153 * - we guarantee that the returned name is valid until we reschedule even if
154 * it resides in a module
155 * - we also guarantee that modname will be valid until rescheduled
157 const char *kallsyms_lookup(unsigned long addr,
158 unsigned long *symbolsize,
159 unsigned long *offset,
160 char **modname, char *namebuf)
162 unsigned long i, low, high, mid;
165 /* This kernel should never had been booted. */
166 BUG_ON(!kallsyms_addresses);
168 namebuf[KSYM_NAME_LEN] = 0;
171 if ((all_var && is_kernel(addr)) ||
172 (!all_var && (is_kernel_text(addr) || is_kernel_inittext(addr)))) {
173 unsigned long symbol_end=0;
175 /* do a binary search on the sorted kallsyms_addresses array */
177 high = kallsyms_num_syms;
179 while (high-low > 1) {
180 mid = (low + high) / 2;
181 if (kallsyms_addresses[mid] <= addr) low = mid;
185 /* search for the first aliased symbol. Aliased symbols are
186 symbols with the same address */
187 while (low && kallsyms_addresses[low - 1] == kallsyms_addresses[low])
191 kallsyms_expand_symbol(get_symbol_offset(low), namebuf);
193 /* Search for next non-aliased symbol */
194 for (i = low + 1; i < kallsyms_num_syms; i++) {
195 if (kallsyms_addresses[i] > kallsyms_addresses[low]) {
196 symbol_end = kallsyms_addresses[i];
201 /* if we found no next symbol, we use the end of the section */
203 if (is_kernel_inittext(addr))
204 symbol_end = (unsigned long)_einittext;
206 symbol_end = all_var ? (unsigned long)_end : (unsigned long)_etext;
209 *symbolsize = symbol_end - kallsyms_addresses[low];
211 *offset = addr - kallsyms_addresses[low];
215 /* see if it's in a module */
216 msym = module_address_lookup(addr, symbolsize, offset, modname);
218 return strncpy(namebuf, msym, KSYM_NAME_LEN);
223 /* Replace "%s" in format with address, or returns -errno. */
224 void __print_symbol(const char *fmt, unsigned long address)
228 unsigned long offset, size;
229 char namebuf[KSYM_NAME_LEN+1];
230 char buffer[sizeof("%s+%#lx/%#lx [%s]") + KSYM_NAME_LEN +
231 2*(BITS_PER_LONG*3/10) + MODULE_NAME_LEN + 1];
233 name = kallsyms_lookup(address, &size, &offset, &modname, namebuf);
236 sprintf(buffer, "0x%lx", address);
239 sprintf(buffer, "%s+%#lx/%#lx [%s]", name, offset,
242 sprintf(buffer, "%s+%#lx/%#lx", name, offset, size);
247 /* To avoid using get_symbol_offset for every symbol, we carry prefix along. */
251 struct module *owner;
253 unsigned int nameoff; /* If iterating in core kernel symbols */
255 char name[KSYM_NAME_LEN+1];
258 /* Only label it "global" if it is exported. */
259 static void upcase_if_global(struct kallsym_iter *iter)
261 if (is_exported(iter->name, iter->owner))
262 iter->type += 'A' - 'a';
265 static int get_ksymbol_mod(struct kallsym_iter *iter)
267 iter->owner = module_get_kallsym(iter->pos - kallsyms_num_syms,
269 &iter->type, iter->name);
270 if (iter->owner == NULL)
273 upcase_if_global(iter);
277 /* Returns space to next name. */
278 static unsigned long get_ksymbol_core(struct kallsym_iter *iter)
280 unsigned off = iter->nameoff;
283 iter->value = kallsyms_addresses[iter->pos];
285 iter->type = kallsyms_get_symbol_type(off);
287 off = kallsyms_expand_symbol(off, iter->name);
289 return off - iter->nameoff;
292 static void reset_iter(struct kallsym_iter *iter, loff_t new_pos)
294 iter->name[0] = '\0';
295 iter->nameoff = get_symbol_offset(new_pos);
299 /* Returns false if pos at or past end of file. */
300 static int update_iter(struct kallsym_iter *iter, loff_t pos)
302 /* Module symbols can be accessed randomly. */
303 if (pos >= kallsyms_num_syms) {
305 return get_ksymbol_mod(iter);
308 /* If we're not on the desired position, reset to new position. */
309 if (pos != iter->pos)
310 reset_iter(iter, pos);
312 iter->nameoff += get_ksymbol_core(iter);
318 static void *s_next(struct seq_file *m, void *p, loff_t *pos)
322 if (!update_iter(m->private, *pos))
327 static void *s_start(struct seq_file *m, loff_t *pos)
329 if (!update_iter(m->private, *pos))
334 static void s_stop(struct seq_file *m, void *p)
338 static int s_show(struct seq_file *m, void *p)
340 struct kallsym_iter *iter = m->private;
342 /* Some debugging symbols have no name. Ignore them. */
347 seq_printf(m, "%0*lx %c %s\t[%s]\n",
348 (int)(2*sizeof(void*)),
349 iter->value, iter->type, iter->name,
350 module_name(iter->owner));
352 seq_printf(m, "%0*lx %c %s\n",
353 (int)(2*sizeof(void*)),
354 iter->value, iter->type, iter->name);
358 static struct seq_operations kallsyms_op = {
365 static int kallsyms_open(struct inode *inode, struct file *file)
367 /* We keep iterator in m->private, since normal case is to
368 * s_start from where we left off, so we avoid doing
369 * using get_symbol_offset for every symbol */
370 struct kallsym_iter *iter;
373 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
378 ret = seq_open(file, &kallsyms_op);
380 ((struct seq_file *)file->private_data)->private = iter;
386 static int kallsyms_release(struct inode *inode, struct file *file)
388 struct seq_file *m = (struct seq_file *)file->private_data;
390 return seq_release(inode, file);
393 static struct file_operations kallsyms_operations = {
394 .open = kallsyms_open,
397 .release = kallsyms_release,
400 static int __init kallsyms_init(void)
402 struct proc_dir_entry *entry;
404 entry = create_proc_entry("kallsyms", 0444, NULL);
406 entry->proc_fops = &kallsyms_operations;
409 __initcall(kallsyms_init);
411 EXPORT_SYMBOL(__print_symbol);