[IMPROVE] Ksyms: Implement searching symbols
[kernel/swap-modules.git] / ksyms / ksyms.c
1 /*
2  *  Dynamic Binary Instrumentation Module based on KProbes
3  *  modules/ksyms/ksyms.c
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  * Copyright (C) Samsung Electronics, 2014
20  *
21  * 2014         Alexander Aksenov <a.aksenov@samsung.com>
22  *
23  */
24
25
26 #include "ksyms.h"
27 #include <linux/kallsyms.h>
28 #include <linux/module.h>
29 #include <linux/percpu.h>
30
31 struct symbol_data {
32         const char *name;
33         size_t len;
34         unsigned long addr;
35 };
36
37 static int symbol_cb(void *data, const char *sym, struct module *mod,
38                      unsigned long addr)
39 {
40         struct symbol_data *sym_data_p = (struct symbol_data *)data;
41
42         /* We expect that real symbol name should have at least the same length as
43          * symbol name we are looking for. */
44         if (strncmp(sym_data_p->name, sym, sym_data_p->len) == 0) {
45                 sym_data_p->addr = addr;
46                 /* Return != 0 to stop loop over the symbols */
47                 return 1;
48         }
49
50         return 0;
51 }
52
53 unsigned long swap_ksyms_substr(const char *name)
54 {
55         struct symbol_data sym_data = {
56                 .name = name,
57                 .len = strlen(name),
58                 .addr = 0
59         };
60         kallsyms_on_each_symbol(symbol_cb, (void *)&sym_data);
61
62         return sym_data.addr;
63 }
64 EXPORT_SYMBOL_GPL(swap_ksyms_substr);
65
66 int __init swap_ksyms_init(void)
67 {
68         printk("SWAP_KSYMS: Module initialized\n");
69
70         return 0;
71 }
72
73 void __exit swap_ksyms_exit(void)
74 {
75         printk("SWAP_KSYMS: Module uninitialized\n");
76 }
77
78 module_init(swap_ksyms_init);
79 module_exit(swap_ksyms_exit);
80
81 MODULE_LICENSE("GPL");
82 MODULE_DESCRIPTION("SWAP ksyms module");
83 MODULE_AUTHOR("Vyacheslav Cherkashin <v.cherkashin@samaung.com>");
84