blob: 8b6b8b697c686a297de3c85421e1e5172ff53a27 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
19#include <linux/err.h>
20#include <linux/proc_fs.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080021#include <linux/sched.h> /* for cond_resched */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mm.h>
Adam B. Jerome07354a02006-12-06 20:35:30 -080023#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/sections.h>
26
27#ifdef CONFIG_KALLSYMS_ALL
28#define all_var 1
29#else
30#define all_var 0
31#endif
32
Manish Katiyarad6ccfa2009-05-12 13:43:35 -070033/*
34 * These will be re-linked against their real values
35 * during the second link stage.
36 */
Sam Ravnborg2ea03892009-01-14 21:38:20 +010037extern const unsigned long kallsyms_addresses[] __attribute__((weak));
38extern const u8 kallsyms_names[] __attribute__((weak));
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Manish Katiyarad6ccfa2009-05-12 13:43:35 -070040/*
41 * Tell the compiler that the count isn't in the small data section if the arch
42 * has one (eg: FRV).
David Howells9e6c1e62007-11-28 16:22:04 -080043 */
44extern const unsigned long kallsyms_num_syms
Sam Ravnborg2ea03892009-01-14 21:38:20 +010045__attribute__((weak, section(".rodata")));
David Howells9e6c1e62007-11-28 16:22:04 -080046
Sam Ravnborg2ea03892009-01-14 21:38:20 +010047extern const u8 kallsyms_token_table[] __attribute__((weak));
48extern const u16 kallsyms_token_index[] __attribute__((weak));
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Sam Ravnborg2ea03892009-01-14 21:38:20 +010050extern const unsigned long kallsyms_markers[] __attribute__((weak));
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52static inline int is_kernel_inittext(unsigned long addr)
53{
54 if (addr >= (unsigned long)_sinittext
55 && addr <= (unsigned long)_einittext)
56 return 1;
57 return 0;
58}
59
60static inline int is_kernel_text(unsigned long addr)
61{
Mike Frysinger128e8db2009-09-22 16:44:15 -070062 if ((addr >= (unsigned long)_stext && addr <= (unsigned long)_etext) ||
63 arch_is_kernel_text(addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return 1;
65 return in_gate_area_no_task(addr);
66}
67
68static inline int is_kernel(unsigned long addr)
69{
70 if (addr >= (unsigned long)_stext && addr <= (unsigned long)_end)
71 return 1;
72 return in_gate_area_no_task(addr);
73}
74
Franck Bui-Huuffc50892006-10-03 01:13:48 -070075static int is_ksym_addr(unsigned long addr)
76{
77 if (all_var)
78 return is_kernel(addr);
79
Robin Getza3b81112008-02-06 01:36:26 -080080 return is_kernel_text(addr) || is_kernel_inittext(addr);
Franck Bui-Huuffc50892006-10-03 01:13:48 -070081}
82
Manish Katiyarad6ccfa2009-05-12 13:43:35 -070083/*
84 * Expand a compressed symbol data into the resulting uncompressed string,
85 * given the offset to where the symbol is in the compressed stream.
86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static unsigned int kallsyms_expand_symbol(unsigned int off, char *result)
88{
89 int len, skipped_first = 0;
Jan Beulichaad09472006-12-08 02:35:57 -080090 const u8 *tptr, *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Manish Katiyarad6ccfa2009-05-12 13:43:35 -070092 /* Get the compressed symbol length from the first symbol byte. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 data = &kallsyms_names[off];
94 len = *data;
95 data++;
96
Manish Katiyarad6ccfa2009-05-12 13:43:35 -070097 /*
98 * Update the offset to return the offset for the next symbol on
99 * the compressed stream.
100 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 off += len + 1;
102
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700103 /*
104 * For every byte on the compressed symbol data, copy the table
105 * entry for that byte.
106 */
107 while (len) {
108 tptr = &kallsyms_token_table[kallsyms_token_index[*data]];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 data++;
110 len--;
111
112 while (*tptr) {
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700113 if (skipped_first) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 *result = *tptr;
115 result++;
116 } else
117 skipped_first = 1;
118 tptr++;
119 }
120 }
121
122 *result = '\0';
123
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700124 /* Return to offset to the next symbol. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return off;
126}
127
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700128/*
129 * Get symbol type information. This is encoded as a single char at the
130 * beginning of the symbol name.
131 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static char kallsyms_get_symbol_type(unsigned int off)
133{
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700134 /*
135 * Get just the first code, look it up in the token table,
136 * and return the first char from this token.
137 */
138 return kallsyms_token_table[kallsyms_token_index[kallsyms_names[off + 1]]];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700142/*
143 * Find the offset on the compressed stream given and index in the
144 * kallsyms array.
145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static unsigned int get_symbol_offset(unsigned long pos)
147{
Jan Beulichaad09472006-12-08 02:35:57 -0800148 const u8 *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 int i;
150
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700151 /*
152 * Use the closest marker we have. We have markers every 256 positions,
153 * so that should be close enough.
154 */
155 name = &kallsyms_names[kallsyms_markers[pos >> 8]];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700157 /*
158 * Sequentially scan all the symbols up to the point we're searching
159 * for. Every symbol is stored in a [<len>][<len> bytes of data] format,
160 * so we just need to add the len to the current pointer for every
161 * symbol we wish to skip.
162 */
163 for (i = 0; i < (pos & 0xFF); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 name = name + (*name) + 1;
165
166 return name - kallsyms_names;
167}
168
169/* Lookup the address for this symbol. Returns 0 if not found. */
170unsigned long kallsyms_lookup_name(const char *name)
171{
Tejun Heo9281ace2007-07-17 04:03:51 -0700172 char namebuf[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 unsigned long i;
174 unsigned int off;
175
176 for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
177 off = kallsyms_expand_symbol(off, namebuf);
178
179 if (strcmp(namebuf, name) == 0)
180 return kallsyms_addresses[i];
181 }
182 return module_kallsyms_lookup_name(name);
183}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Anders Kaseorg75a66612008-12-05 19:03:58 -0500185int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *,
186 unsigned long),
187 void *data)
188{
189 char namebuf[KSYM_NAME_LEN];
190 unsigned long i;
191 unsigned int off;
192 int ret;
193
194 for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
195 off = kallsyms_expand_symbol(off, namebuf);
196 ret = fn(data, namebuf, NULL, kallsyms_addresses[i]);
197 if (ret != 0)
198 return ret;
199 }
200 return module_kallsyms_on_each_symbol(fn, data);
201}
202EXPORT_SYMBOL_GPL(kallsyms_on_each_symbol);
203
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700204static unsigned long get_symbol_pos(unsigned long addr,
205 unsigned long *symbolsize,
206 unsigned long *offset)
207{
208 unsigned long symbol_start = 0, symbol_end = 0;
209 unsigned long i, low, high, mid;
210
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100211 /* This kernel should never had been booted. */
212 BUG_ON(!kallsyms_addresses);
213
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700214 /* Do a binary search on the sorted kallsyms_addresses array. */
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700215 low = 0;
216 high = kallsyms_num_syms;
217
218 while (high - low > 1) {
Vegard Nossum2fc9c4e2008-07-25 01:45:34 -0700219 mid = low + (high - low) / 2;
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700220 if (kallsyms_addresses[mid] <= addr)
221 low = mid;
222 else
223 high = mid;
224 }
225
226 /*
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700227 * Search for the first aliased symbol. Aliased
228 * symbols are symbols with the same address.
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700229 */
230 while (low && kallsyms_addresses[low-1] == kallsyms_addresses[low])
231 --low;
232
233 symbol_start = kallsyms_addresses[low];
234
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700235 /* Search for next non-aliased symbol. */
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700236 for (i = low + 1; i < kallsyms_num_syms; i++) {
237 if (kallsyms_addresses[i] > symbol_start) {
238 symbol_end = kallsyms_addresses[i];
239 break;
240 }
241 }
242
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700243 /* If we found no next symbol, we use the end of the section. */
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700244 if (!symbol_end) {
245 if (is_kernel_inittext(addr))
246 symbol_end = (unsigned long)_einittext;
247 else if (all_var)
248 symbol_end = (unsigned long)_end;
249 else
250 symbol_end = (unsigned long)_etext;
251 }
252
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700253 if (symbolsize)
254 *symbolsize = symbol_end - symbol_start;
255 if (offset)
256 *offset = addr - symbol_start;
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700257
258 return low;
259}
260
261/*
262 * Lookup an address but don't bother to find any names.
263 */
264int kallsyms_lookup_size_offset(unsigned long addr, unsigned long *symbolsize,
265 unsigned long *offset)
266{
Rusty Russell6dd06c92008-01-29 17:13:22 -0500267 char namebuf[KSYM_NAME_LEN];
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700268 if (is_ksym_addr(addr))
269 return !!get_symbol_pos(addr, symbolsize, offset);
270
Rusty Russell6dd06c92008-01-29 17:13:22 -0500271 return !!module_address_lookup(addr, symbolsize, offset, NULL, namebuf);
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700272}
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274/*
275 * Lookup an address
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700276 * - modname is set to NULL if it's in the kernel.
277 * - We guarantee that the returned name is valid until we reschedule even if.
278 * It resides in a module.
279 * - We also guarantee that modname will be valid until rescheduled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 */
281const char *kallsyms_lookup(unsigned long addr,
282 unsigned long *symbolsize,
283 unsigned long *offset,
284 char **modname, char *namebuf)
285{
Tejun Heo9281ace2007-07-17 04:03:51 -0700286 namebuf[KSYM_NAME_LEN - 1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 namebuf[0] = 0;
288
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700289 if (is_ksym_addr(addr)) {
290 unsigned long pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700292 pos = get_symbol_pos(addr, symbolsize, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* Grab name */
Franck Bui-Huuffc50892006-10-03 01:13:48 -0700294 kallsyms_expand_symbol(get_symbol_offset(pos), namebuf);
Kyle McMartin7a74fc42007-05-30 02:43:16 -0400295 if (modname)
296 *modname = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return namebuf;
298 }
299
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700300 /* See if it's in a module. */
Rusty Russell6dd06c92008-01-29 17:13:22 -0500301 return module_address_lookup(addr, symbolsize, offset, modname,
302 namebuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700305int lookup_symbol_name(unsigned long addr, char *symname)
306{
307 symname[0] = '\0';
Tejun Heo9281ace2007-07-17 04:03:51 -0700308 symname[KSYM_NAME_LEN - 1] = '\0';
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700309
310 if (is_ksym_addr(addr)) {
311 unsigned long pos;
312
313 pos = get_symbol_pos(addr, NULL, NULL);
314 /* Grab name */
315 kallsyms_expand_symbol(get_symbol_offset(pos), symname);
316 return 0;
317 }
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700318 /* See if it's in a module. */
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700319 return lookup_module_symbol_name(addr, symname);
320}
321
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700322int lookup_symbol_attrs(unsigned long addr, unsigned long *size,
323 unsigned long *offset, char *modname, char *name)
324{
325 name[0] = '\0';
Tejun Heo9281ace2007-07-17 04:03:51 -0700326 name[KSYM_NAME_LEN - 1] = '\0';
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700327
328 if (is_ksym_addr(addr)) {
329 unsigned long pos;
330
331 pos = get_symbol_pos(addr, size, offset);
332 /* Grab name */
333 kallsyms_expand_symbol(get_symbol_offset(pos), name);
334 modname[0] = '\0';
335 return 0;
336 }
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700337 /* See if it's in a module. */
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700338 return lookup_module_symbol_attrs(addr, size, offset, modname, name);
339}
340
Robert Peterson42e38082007-04-30 15:09:48 -0700341/* Look up a kernel symbol and return it in a text buffer. */
342int sprint_symbol(char *buffer, unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 char *modname;
345 const char *name;
346 unsigned long offset, size;
Hugh Dickins966c8c12008-11-19 15:36:36 -0800347 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Hugh Dickins966c8c12008-11-19 15:36:36 -0800349 name = kallsyms_lookup(address, &size, &offset, &modname, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (!name)
Robert Peterson42e38082007-04-30 15:09:48 -0700351 return sprintf(buffer, "0x%lx", address);
Andrew Morton19769b72007-07-15 23:41:24 -0700352
Hugh Dickins966c8c12008-11-19 15:36:36 -0800353 if (name != buffer)
354 strcpy(buffer, name);
355 len = strlen(buffer);
356 buffer += len;
357
Andrew Morton19769b72007-07-15 23:41:24 -0700358 if (modname)
Hugh Dickins966c8c12008-11-19 15:36:36 -0800359 len += sprintf(buffer, "+%#lx/%#lx [%s]",
360 offset, size, modname);
Andrew Morton19769b72007-07-15 23:41:24 -0700361 else
Hugh Dickins966c8c12008-11-19 15:36:36 -0800362 len += sprintf(buffer, "+%#lx/%#lx", offset, size);
363
364 return len;
Robert Peterson42e38082007-04-30 15:09:48 -0700365}
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700366EXPORT_SYMBOL_GPL(sprint_symbol);
Robert Peterson42e38082007-04-30 15:09:48 -0700367
368/* Look up a kernel symbol and print it to the kernel messages. */
369void __print_symbol(const char *fmt, unsigned long address)
370{
371 char buffer[KSYM_SYMBOL_LEN];
372
373 sprint_symbol(buffer, address);
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 printk(fmt, buffer);
376}
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700377EXPORT_SYMBOL(__print_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379/* To avoid using get_symbol_offset for every symbol, we carry prefix along. */
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700380struct kallsym_iter {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 loff_t pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 unsigned long value;
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700383 unsigned int nameoff; /* If iterating in core kernel symbols. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 char type;
Tejun Heo9281ace2007-07-17 04:03:51 -0700385 char name[KSYM_NAME_LEN];
386 char module_name[MODULE_NAME_LEN];
Alexey Dobriyanea078902007-05-08 00:28:39 -0700387 int exported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388};
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390static int get_ksymbol_mod(struct kallsym_iter *iter)
391{
Alexey Dobriyanea078902007-05-08 00:28:39 -0700392 if (module_get_kallsym(iter->pos - kallsyms_num_syms, &iter->value,
393 &iter->type, iter->name, iter->module_name,
394 &iter->exported) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return 1;
397}
398
399/* Returns space to next name. */
400static unsigned long get_ksymbol_core(struct kallsym_iter *iter)
401{
402 unsigned off = iter->nameoff;
403
Alexey Dobriyanea078902007-05-08 00:28:39 -0700404 iter->module_name[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 iter->value = kallsyms_addresses[iter->pos];
406
407 iter->type = kallsyms_get_symbol_type(off);
408
409 off = kallsyms_expand_symbol(off, iter->name);
410
411 return off - iter->nameoff;
412}
413
414static void reset_iter(struct kallsym_iter *iter, loff_t new_pos)
415{
416 iter->name[0] = '\0';
417 iter->nameoff = get_symbol_offset(new_pos);
418 iter->pos = new_pos;
419}
420
421/* Returns false if pos at or past end of file. */
422static int update_iter(struct kallsym_iter *iter, loff_t pos)
423{
424 /* Module symbols can be accessed randomly. */
425 if (pos >= kallsyms_num_syms) {
426 iter->pos = pos;
427 return get_ksymbol_mod(iter);
428 }
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /* If we're not on the desired position, reset to new position. */
431 if (pos != iter->pos)
432 reset_iter(iter, pos);
433
434 iter->nameoff += get_ksymbol_core(iter);
435 iter->pos++;
436
437 return 1;
438}
439
440static void *s_next(struct seq_file *m, void *p, loff_t *pos)
441{
442 (*pos)++;
443
444 if (!update_iter(m->private, *pos))
445 return NULL;
446 return p;
447}
448
449static void *s_start(struct seq_file *m, loff_t *pos)
450{
451 if (!update_iter(m->private, *pos))
452 return NULL;
453 return m->private;
454}
455
456static void s_stop(struct seq_file *m, void *p)
457{
458}
459
460static int s_show(struct seq_file *m, void *p)
461{
462 struct kallsym_iter *iter = m->private;
463
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700464 /* Some debugging symbols have no name. Ignore them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (!iter->name[0])
466 return 0;
467
Alexey Dobriyanea078902007-05-08 00:28:39 -0700468 if (iter->module_name[0]) {
469 char type;
470
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700471 /*
472 * Label it "global" if it is exported,
473 * "local" if not exported.
474 */
Alexey Dobriyanea078902007-05-08 00:28:39 -0700475 type = iter->exported ? toupper(iter->type) :
476 tolower(iter->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 seq_printf(m, "%0*lx %c %s\t[%s]\n",
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700478 (int)(2 * sizeof(void *)),
Alexey Dobriyanea078902007-05-08 00:28:39 -0700479 iter->value, type, iter->name, iter->module_name);
480 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 seq_printf(m, "%0*lx %c %s\n",
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700482 (int)(2 * sizeof(void *)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 iter->value, iter->type, iter->name);
484 return 0;
485}
486
Helge Deller15ad7cd2006-12-06 20:40:36 -0800487static const struct seq_operations kallsyms_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 .start = s_start,
489 .next = s_next,
490 .stop = s_stop,
491 .show = s_show
492};
493
494static int kallsyms_open(struct inode *inode, struct file *file)
495{
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700496 /*
497 * We keep iterator in m->private, since normal case is to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * s_start from where we left off, so we avoid doing
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700499 * using get_symbol_offset for every symbol.
500 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct kallsym_iter *iter;
502 int ret;
503
504 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
505 if (!iter)
506 return -ENOMEM;
507 reset_iter(iter, 0);
508
509 ret = seq_open(file, &kallsyms_op);
510 if (ret == 0)
511 ((struct seq_file *)file->private_data)->private = iter;
512 else
513 kfree(iter);
514 return ret;
515}
516
Helge Deller15ad7cd2006-12-06 20:40:36 -0800517static const struct file_operations kallsyms_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 .open = kallsyms_open,
519 .read = seq_read,
520 .llseek = seq_lseek,
Martin Peschke5a0c6a02007-05-08 00:29:25 -0700521 .release = seq_release_private,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522};
523
524static int __init kallsyms_init(void)
525{
Denis V. Lunevc33fff02008-04-29 01:02:31 -0700526 proc_create("kallsyms", 0444, NULL, &kallsyms_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return 0;
528}
Manish Katiyarad6ccfa2009-05-12 13:43:35 -0700529device_initcall(kallsyms_init);