kallsyms: refactor {,module_}kallsyms_on_each_symbol
[linux-2.6-microblaze.git] / kernel / kallsyms.c
1 // SPDX-License-Identifier: GPL-2.0-only
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>
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/ctype.h>
24 #include <linux/slab.h>
25 #include <linux/filter.h>
26 #include <linux/ftrace.h>
27 #include <linux/kprobes.h>
28 #include <linux/compiler.h>
29
30 /*
31  * These will be re-linked against their real values
32  * during the second link stage.
33  */
34 extern const unsigned long kallsyms_addresses[] __weak;
35 extern const int kallsyms_offsets[] __weak;
36 extern const u8 kallsyms_names[] __weak;
37
38 /*
39  * Tell the compiler that the count isn't in the small data section if the arch
40  * has one (eg: FRV).
41  */
42 extern const unsigned int kallsyms_num_syms
43 __section(".rodata") __attribute__((weak));
44
45 extern const unsigned long kallsyms_relative_base
46 __section(".rodata") __attribute__((weak));
47
48 extern const char kallsyms_token_table[] __weak;
49 extern const u16 kallsyms_token_index[] __weak;
50
51 extern const unsigned int kallsyms_markers[] __weak;
52
53 /*
54  * Expand a compressed symbol data into the resulting uncompressed string,
55  * if uncompressed string is too long (>= maxlen), it will be truncated,
56  * given the offset to where the symbol is in the compressed stream.
57  */
58 static unsigned int kallsyms_expand_symbol(unsigned int off,
59                                            char *result, size_t maxlen)
60 {
61         int len, skipped_first = 0;
62         const char *tptr;
63         const u8 *data;
64
65         /* Get the compressed symbol length from the first symbol byte. */
66         data = &kallsyms_names[off];
67         len = *data;
68         data++;
69
70         /*
71          * Update the offset to return the offset for the next symbol on
72          * the compressed stream.
73          */
74         off += len + 1;
75
76         /*
77          * For every byte on the compressed symbol data, copy the table
78          * entry for that byte.
79          */
80         while (len) {
81                 tptr = &kallsyms_token_table[kallsyms_token_index[*data]];
82                 data++;
83                 len--;
84
85                 while (*tptr) {
86                         if (skipped_first) {
87                                 if (maxlen <= 1)
88                                         goto tail;
89                                 *result = *tptr;
90                                 result++;
91                                 maxlen--;
92                         } else
93                                 skipped_first = 1;
94                         tptr++;
95                 }
96         }
97
98 tail:
99         if (maxlen)
100                 *result = '\0';
101
102         /* Return to offset to the next symbol. */
103         return off;
104 }
105
106 /*
107  * Get symbol type information. This is encoded as a single char at the
108  * beginning of the symbol name.
109  */
110 static char kallsyms_get_symbol_type(unsigned int off)
111 {
112         /*
113          * Get just the first code, look it up in the token table,
114          * and return the first char from this token.
115          */
116         return kallsyms_token_table[kallsyms_token_index[kallsyms_names[off + 1]]];
117 }
118
119
120 /*
121  * Find the offset on the compressed stream given and index in the
122  * kallsyms array.
123  */
124 static unsigned int get_symbol_offset(unsigned long pos)
125 {
126         const u8 *name;
127         int i;
128
129         /*
130          * Use the closest marker we have. We have markers every 256 positions,
131          * so that should be close enough.
132          */
133         name = &kallsyms_names[kallsyms_markers[pos >> 8]];
134
135         /*
136          * Sequentially scan all the symbols up to the point we're searching
137          * for. Every symbol is stored in a [<len>][<len> bytes of data] format,
138          * so we just need to add the len to the current pointer for every
139          * symbol we wish to skip.
140          */
141         for (i = 0; i < (pos & 0xFF); i++)
142                 name = name + (*name) + 1;
143
144         return name - kallsyms_names;
145 }
146
147 static unsigned long kallsyms_sym_address(int idx)
148 {
149         if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE))
150                 return kallsyms_addresses[idx];
151
152         /* values are unsigned offsets if --absolute-percpu is not in effect */
153         if (!IS_ENABLED(CONFIG_KALLSYMS_ABSOLUTE_PERCPU))
154                 return kallsyms_relative_base + (u32)kallsyms_offsets[idx];
155
156         /* ...otherwise, positive offsets are absolute values */
157         if (kallsyms_offsets[idx] >= 0)
158                 return kallsyms_offsets[idx];
159
160         /* ...and negative offsets are relative to kallsyms_relative_base - 1 */
161         return kallsyms_relative_base - 1 - kallsyms_offsets[idx];
162 }
163
164 /* Lookup the address for this symbol. Returns 0 if not found. */
165 unsigned long kallsyms_lookup_name(const char *name)
166 {
167         char namebuf[KSYM_NAME_LEN];
168         unsigned long i;
169         unsigned int off;
170
171         for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
172                 off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf));
173
174                 if (strcmp(namebuf, name) == 0)
175                         return kallsyms_sym_address(i);
176         }
177         return module_kallsyms_lookup_name(name);
178 }
179
180 /*
181  * Iterate over all symbols in vmlinux.  For symbols from modules use
182  * module_kallsyms_on_each_symbol instead.
183  */
184 int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *,
185                                       unsigned long),
186                             void *data)
187 {
188         char namebuf[KSYM_NAME_LEN];
189         unsigned long i;
190         unsigned int off;
191         int ret;
192
193         for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
194                 off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf));
195                 ret = fn(data, namebuf, NULL, kallsyms_sym_address(i));
196                 if (ret != 0)
197                         return ret;
198         }
199         return 0;
200 }
201
202 static unsigned long get_symbol_pos(unsigned long addr,
203                                     unsigned long *symbolsize,
204                                     unsigned long *offset)
205 {
206         unsigned long symbol_start = 0, symbol_end = 0;
207         unsigned long i, low, high, mid;
208
209         /* This kernel should never had been booted. */
210         if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE))
211                 BUG_ON(!kallsyms_addresses);
212         else
213                 BUG_ON(!kallsyms_offsets);
214
215         /* Do a binary search on the sorted kallsyms_addresses array. */
216         low = 0;
217         high = kallsyms_num_syms;
218
219         while (high - low > 1) {
220                 mid = low + (high - low) / 2;
221                 if (kallsyms_sym_address(mid) <= addr)
222                         low = mid;
223                 else
224                         high = mid;
225         }
226
227         /*
228          * Search for the first aliased symbol. Aliased
229          * symbols are symbols with the same address.
230          */
231         while (low && kallsyms_sym_address(low-1) == kallsyms_sym_address(low))
232                 --low;
233
234         symbol_start = kallsyms_sym_address(low);
235
236         /* Search for next non-aliased symbol. */
237         for (i = low + 1; i < kallsyms_num_syms; i++) {
238                 if (kallsyms_sym_address(i) > symbol_start) {
239                         symbol_end = kallsyms_sym_address(i);
240                         break;
241                 }
242         }
243
244         /* If we found no next symbol, we use the end of the section. */
245         if (!symbol_end) {
246                 if (is_kernel_inittext(addr))
247                         symbol_end = (unsigned long)_einittext;
248                 else if (IS_ENABLED(CONFIG_KALLSYMS_ALL))
249                         symbol_end = (unsigned long)_end;
250                 else
251                         symbol_end = (unsigned long)_etext;
252         }
253
254         if (symbolsize)
255                 *symbolsize = symbol_end - symbol_start;
256         if (offset)
257                 *offset = addr - symbol_start;
258
259         return low;
260 }
261
262 /*
263  * Lookup an address but don't bother to find any names.
264  */
265 int kallsyms_lookup_size_offset(unsigned long addr, unsigned long *symbolsize,
266                                 unsigned long *offset)
267 {
268         char namebuf[KSYM_NAME_LEN];
269
270         if (is_ksym_addr(addr)) {
271                 get_symbol_pos(addr, symbolsize, offset);
272                 return 1;
273         }
274         return !!module_address_lookup(addr, symbolsize, offset, NULL, namebuf) ||
275                !!__bpf_address_lookup(addr, symbolsize, offset, namebuf);
276 }
277
278 /*
279  * Lookup an address
280  * - modname is set to NULL if it's in the kernel.
281  * - We guarantee that the returned name is valid until we reschedule even if.
282  *   It resides in a module.
283  * - We also guarantee that modname will be valid until rescheduled.
284  */
285 const char *kallsyms_lookup(unsigned long addr,
286                             unsigned long *symbolsize,
287                             unsigned long *offset,
288                             char **modname, char *namebuf)
289 {
290         const char *ret;
291
292         namebuf[KSYM_NAME_LEN - 1] = 0;
293         namebuf[0] = 0;
294
295         if (is_ksym_addr(addr)) {
296                 unsigned long pos;
297
298                 pos = get_symbol_pos(addr, symbolsize, offset);
299                 /* Grab name */
300                 kallsyms_expand_symbol(get_symbol_offset(pos),
301                                        namebuf, KSYM_NAME_LEN);
302                 if (modname)
303                         *modname = NULL;
304                 return namebuf;
305         }
306
307         /* See if it's in a module or a BPF JITed image. */
308         ret = module_address_lookup(addr, symbolsize, offset,
309                                     modname, namebuf);
310         if (!ret)
311                 ret = bpf_address_lookup(addr, symbolsize,
312                                          offset, modname, namebuf);
313
314         if (!ret)
315                 ret = ftrace_mod_address_lookup(addr, symbolsize,
316                                                 offset, modname, namebuf);
317         return ret;
318 }
319
320 int lookup_symbol_name(unsigned long addr, char *symname)
321 {
322         symname[0] = '\0';
323         symname[KSYM_NAME_LEN - 1] = '\0';
324
325         if (is_ksym_addr(addr)) {
326                 unsigned long pos;
327
328                 pos = get_symbol_pos(addr, NULL, NULL);
329                 /* Grab name */
330                 kallsyms_expand_symbol(get_symbol_offset(pos),
331                                        symname, KSYM_NAME_LEN);
332                 return 0;
333         }
334         /* See if it's in a module. */
335         return lookup_module_symbol_name(addr, symname);
336 }
337
338 int lookup_symbol_attrs(unsigned long addr, unsigned long *size,
339                         unsigned long *offset, char *modname, char *name)
340 {
341         name[0] = '\0';
342         name[KSYM_NAME_LEN - 1] = '\0';
343
344         if (is_ksym_addr(addr)) {
345                 unsigned long pos;
346
347                 pos = get_symbol_pos(addr, size, offset);
348                 /* Grab name */
349                 kallsyms_expand_symbol(get_symbol_offset(pos),
350                                        name, KSYM_NAME_LEN);
351                 modname[0] = '\0';
352                 return 0;
353         }
354         /* See if it's in a module. */
355         return lookup_module_symbol_attrs(addr, size, offset, modname, name);
356 }
357
358 /* Look up a kernel symbol and return it in a text buffer. */
359 static int __sprint_symbol(char *buffer, unsigned long address,
360                            int symbol_offset, int add_offset)
361 {
362         char *modname;
363         const char *name;
364         unsigned long offset, size;
365         int len;
366
367         address += symbol_offset;
368         name = kallsyms_lookup(address, &size, &offset, &modname, buffer);
369         if (!name)
370                 return sprintf(buffer, "0x%lx", address - symbol_offset);
371
372         if (name != buffer)
373                 strcpy(buffer, name);
374         len = strlen(buffer);
375         offset -= symbol_offset;
376
377         if (add_offset)
378                 len += sprintf(buffer + len, "+%#lx/%#lx", offset, size);
379
380         if (modname)
381                 len += sprintf(buffer + len, " [%s]", modname);
382
383         return len;
384 }
385
386 /**
387  * sprint_symbol - Look up a kernel symbol and return it in a text buffer
388  * @buffer: buffer to be stored
389  * @address: address to lookup
390  *
391  * This function looks up a kernel symbol with @address and stores its name,
392  * offset, size and module name to @buffer if possible. If no symbol was found,
393  * just saves its @address as is.
394  *
395  * This function returns the number of bytes stored in @buffer.
396  */
397 int sprint_symbol(char *buffer, unsigned long address)
398 {
399         return __sprint_symbol(buffer, address, 0, 1);
400 }
401 EXPORT_SYMBOL_GPL(sprint_symbol);
402
403 /**
404  * sprint_symbol_no_offset - Look up a kernel symbol and return it in a text buffer
405  * @buffer: buffer to be stored
406  * @address: address to lookup
407  *
408  * This function looks up a kernel symbol with @address and stores its name
409  * and module name to @buffer if possible. If no symbol was found, just saves
410  * its @address as is.
411  *
412  * This function returns the number of bytes stored in @buffer.
413  */
414 int sprint_symbol_no_offset(char *buffer, unsigned long address)
415 {
416         return __sprint_symbol(buffer, address, 0, 0);
417 }
418 EXPORT_SYMBOL_GPL(sprint_symbol_no_offset);
419
420 /**
421  * sprint_backtrace - Look up a backtrace symbol and return it in a text buffer
422  * @buffer: buffer to be stored
423  * @address: address to lookup
424  *
425  * This function is for stack backtrace and does the same thing as
426  * sprint_symbol() but with modified/decreased @address. If there is a
427  * tail-call to the function marked "noreturn", gcc optimized out code after
428  * the call so that the stack-saved return address could point outside of the
429  * caller. This function ensures that kallsyms will find the original caller
430  * by decreasing @address.
431  *
432  * This function returns the number of bytes stored in @buffer.
433  */
434 int sprint_backtrace(char *buffer, unsigned long address)
435 {
436         return __sprint_symbol(buffer, address, -1, 1);
437 }
438
439 /* To avoid using get_symbol_offset for every symbol, we carry prefix along. */
440 struct kallsym_iter {
441         loff_t pos;
442         loff_t pos_arch_end;
443         loff_t pos_mod_end;
444         loff_t pos_ftrace_mod_end;
445         loff_t pos_bpf_end;
446         unsigned long value;
447         unsigned int nameoff; /* If iterating in core kernel symbols. */
448         char type;
449         char name[KSYM_NAME_LEN];
450         char module_name[MODULE_NAME_LEN];
451         int exported;
452         int show_value;
453 };
454
455 int __weak arch_get_kallsym(unsigned int symnum, unsigned long *value,
456                             char *type, char *name)
457 {
458         return -EINVAL;
459 }
460
461 static int get_ksymbol_arch(struct kallsym_iter *iter)
462 {
463         int ret = arch_get_kallsym(iter->pos - kallsyms_num_syms,
464                                    &iter->value, &iter->type,
465                                    iter->name);
466
467         if (ret < 0) {
468                 iter->pos_arch_end = iter->pos;
469                 return 0;
470         }
471
472         return 1;
473 }
474
475 static int get_ksymbol_mod(struct kallsym_iter *iter)
476 {
477         int ret = module_get_kallsym(iter->pos - iter->pos_arch_end,
478                                      &iter->value, &iter->type,
479                                      iter->name, iter->module_name,
480                                      &iter->exported);
481         if (ret < 0) {
482                 iter->pos_mod_end = iter->pos;
483                 return 0;
484         }
485
486         return 1;
487 }
488
489 /*
490  * ftrace_mod_get_kallsym() may also get symbols for pages allocated for ftrace
491  * purposes. In that case "__builtin__ftrace" is used as a module name, even
492  * though "__builtin__ftrace" is not a module.
493  */
494 static int get_ksymbol_ftrace_mod(struct kallsym_iter *iter)
495 {
496         int ret = ftrace_mod_get_kallsym(iter->pos - iter->pos_mod_end,
497                                          &iter->value, &iter->type,
498                                          iter->name, iter->module_name,
499                                          &iter->exported);
500         if (ret < 0) {
501                 iter->pos_ftrace_mod_end = iter->pos;
502                 return 0;
503         }
504
505         return 1;
506 }
507
508 static int get_ksymbol_bpf(struct kallsym_iter *iter)
509 {
510         int ret;
511
512         strlcpy(iter->module_name, "bpf", MODULE_NAME_LEN);
513         iter->exported = 0;
514         ret = bpf_get_kallsym(iter->pos - iter->pos_ftrace_mod_end,
515                               &iter->value, &iter->type,
516                               iter->name);
517         if (ret < 0) {
518                 iter->pos_bpf_end = iter->pos;
519                 return 0;
520         }
521
522         return 1;
523 }
524
525 /*
526  * This uses "__builtin__kprobes" as a module name for symbols for pages
527  * allocated for kprobes' purposes, even though "__builtin__kprobes" is not a
528  * module.
529  */
530 static int get_ksymbol_kprobe(struct kallsym_iter *iter)
531 {
532         strlcpy(iter->module_name, "__builtin__kprobes", MODULE_NAME_LEN);
533         iter->exported = 0;
534         return kprobe_get_kallsym(iter->pos - iter->pos_bpf_end,
535                                   &iter->value, &iter->type,
536                                   iter->name) < 0 ? 0 : 1;
537 }
538
539 /* Returns space to next name. */
540 static unsigned long get_ksymbol_core(struct kallsym_iter *iter)
541 {
542         unsigned off = iter->nameoff;
543
544         iter->module_name[0] = '\0';
545         iter->value = kallsyms_sym_address(iter->pos);
546
547         iter->type = kallsyms_get_symbol_type(off);
548
549         off = kallsyms_expand_symbol(off, iter->name, ARRAY_SIZE(iter->name));
550
551         return off - iter->nameoff;
552 }
553
554 static void reset_iter(struct kallsym_iter *iter, loff_t new_pos)
555 {
556         iter->name[0] = '\0';
557         iter->nameoff = get_symbol_offset(new_pos);
558         iter->pos = new_pos;
559         if (new_pos == 0) {
560                 iter->pos_arch_end = 0;
561                 iter->pos_mod_end = 0;
562                 iter->pos_ftrace_mod_end = 0;
563                 iter->pos_bpf_end = 0;
564         }
565 }
566
567 /*
568  * The end position (last + 1) of each additional kallsyms section is recorded
569  * in iter->pos_..._end as each section is added, and so can be used to
570  * determine which get_ksymbol_...() function to call next.
571  */
572 static int update_iter_mod(struct kallsym_iter *iter, loff_t pos)
573 {
574         iter->pos = pos;
575
576         if ((!iter->pos_arch_end || iter->pos_arch_end > pos) &&
577             get_ksymbol_arch(iter))
578                 return 1;
579
580         if ((!iter->pos_mod_end || iter->pos_mod_end > pos) &&
581             get_ksymbol_mod(iter))
582                 return 1;
583
584         if ((!iter->pos_ftrace_mod_end || iter->pos_ftrace_mod_end > pos) &&
585             get_ksymbol_ftrace_mod(iter))
586                 return 1;
587
588         if ((!iter->pos_bpf_end || iter->pos_bpf_end > pos) &&
589             get_ksymbol_bpf(iter))
590                 return 1;
591
592         return get_ksymbol_kprobe(iter);
593 }
594
595 /* Returns false if pos at or past end of file. */
596 static int update_iter(struct kallsym_iter *iter, loff_t pos)
597 {
598         /* Module symbols can be accessed randomly. */
599         if (pos >= kallsyms_num_syms)
600                 return update_iter_mod(iter, pos);
601
602         /* If we're not on the desired position, reset to new position. */
603         if (pos != iter->pos)
604                 reset_iter(iter, pos);
605
606         iter->nameoff += get_ksymbol_core(iter);
607         iter->pos++;
608
609         return 1;
610 }
611
612 static void *s_next(struct seq_file *m, void *p, loff_t *pos)
613 {
614         (*pos)++;
615
616         if (!update_iter(m->private, *pos))
617                 return NULL;
618         return p;
619 }
620
621 static void *s_start(struct seq_file *m, loff_t *pos)
622 {
623         if (!update_iter(m->private, *pos))
624                 return NULL;
625         return m->private;
626 }
627
628 static void s_stop(struct seq_file *m, void *p)
629 {
630 }
631
632 static int s_show(struct seq_file *m, void *p)
633 {
634         void *value;
635         struct kallsym_iter *iter = m->private;
636
637         /* Some debugging symbols have no name.  Ignore them. */
638         if (!iter->name[0])
639                 return 0;
640
641         value = iter->show_value ? (void *)iter->value : NULL;
642
643         if (iter->module_name[0]) {
644                 char type;
645
646                 /*
647                  * Label it "global" if it is exported,
648                  * "local" if not exported.
649                  */
650                 type = iter->exported ? toupper(iter->type) :
651                                         tolower(iter->type);
652                 seq_printf(m, "%px %c %s\t[%s]\n", value,
653                            type, iter->name, iter->module_name);
654         } else
655                 seq_printf(m, "%px %c %s\n", value,
656                            iter->type, iter->name);
657         return 0;
658 }
659
660 static const struct seq_operations kallsyms_op = {
661         .start = s_start,
662         .next = s_next,
663         .stop = s_stop,
664         .show = s_show
665 };
666
667 static inline int kallsyms_for_perf(void)
668 {
669 #ifdef CONFIG_PERF_EVENTS
670         extern int sysctl_perf_event_paranoid;
671         if (sysctl_perf_event_paranoid <= 1)
672                 return 1;
673 #endif
674         return 0;
675 }
676
677 /*
678  * We show kallsyms information even to normal users if we've enabled
679  * kernel profiling and are explicitly not paranoid (so kptr_restrict
680  * is clear, and sysctl_perf_event_paranoid isn't set).
681  *
682  * Otherwise, require CAP_SYSLOG (assuming kptr_restrict isn't set to
683  * block even that).
684  */
685 bool kallsyms_show_value(const struct cred *cred)
686 {
687         switch (kptr_restrict) {
688         case 0:
689                 if (kallsyms_for_perf())
690                         return true;
691                 fallthrough;
692         case 1:
693                 if (security_capable(cred, &init_user_ns, CAP_SYSLOG,
694                                      CAP_OPT_NOAUDIT) == 0)
695                         return true;
696                 fallthrough;
697         default:
698                 return false;
699         }
700 }
701
702 static int kallsyms_open(struct inode *inode, struct file *file)
703 {
704         /*
705          * We keep iterator in m->private, since normal case is to
706          * s_start from where we left off, so we avoid doing
707          * using get_symbol_offset for every symbol.
708          */
709         struct kallsym_iter *iter;
710         iter = __seq_open_private(file, &kallsyms_op, sizeof(*iter));
711         if (!iter)
712                 return -ENOMEM;
713         reset_iter(iter, 0);
714
715         /*
716          * Instead of checking this on every s_show() call, cache
717          * the result here at open time.
718          */
719         iter->show_value = kallsyms_show_value(file->f_cred);
720         return 0;
721 }
722
723 #ifdef  CONFIG_KGDB_KDB
724 const char *kdb_walk_kallsyms(loff_t *pos)
725 {
726         static struct kallsym_iter kdb_walk_kallsyms_iter;
727         if (*pos == 0) {
728                 memset(&kdb_walk_kallsyms_iter, 0,
729                        sizeof(kdb_walk_kallsyms_iter));
730                 reset_iter(&kdb_walk_kallsyms_iter, 0);
731         }
732         while (1) {
733                 if (!update_iter(&kdb_walk_kallsyms_iter, *pos))
734                         return NULL;
735                 ++*pos;
736                 /* Some debugging symbols have no name.  Ignore them. */
737                 if (kdb_walk_kallsyms_iter.name[0])
738                         return kdb_walk_kallsyms_iter.name;
739         }
740 }
741 #endif  /* CONFIG_KGDB_KDB */
742
743 static const struct proc_ops kallsyms_proc_ops = {
744         .proc_open      = kallsyms_open,
745         .proc_read      = seq_read,
746         .proc_lseek     = seq_lseek,
747         .proc_release   = seq_release_private,
748 };
749
750 static int __init kallsyms_init(void)
751 {
752         proc_create("kallsyms", 0444, NULL, &kallsyms_proc_ops);
753         return 0;
754 }
755 device_initcall(kallsyms_init);