-
Notifications
You must be signed in to change notification settings - Fork 4
/
lookup.c
102 lines (92 loc) · 2.41 KB
/
lookup.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
* Copyright (C) 2009, Neil Horman <[email protected]>
*
* This program file is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program in a file named COPYING; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
/*
* This is a translator. given an input address, this will convert it into a
* function and offset. Unless overridden, it will automatically determine
* tranlations using the following methods, in order of priority:
* 1) /usr/lib/debug/<kernel version> using libbfd
* 2) /proc/kallsyms
*/
#include <stdlib.h>
#include <stdio.h>
#include <sys/utsname.h>
#include <bfd.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "lookup.h"
extern struct lookup_methods bfd_methods;
extern struct lookup_methods kallsym_methods;
static int lookup_null_init(void)
{
printf("Initalizing null lookup method\n");
return 0;
}
static int lookup_null_sym(void *pc, struct loc_result *location)
{
/*
* In the null method, every lookup fails
*/
return 1;
}
static struct lookup_methods null_methods = {
lookup_null_init,
lookup_null_sym,
};
static struct lookup_methods *methods = NULL;
int init_lookup(lookup_init_method_t method)
{
int rc;
switch (method) {
case METHOD_NULL:
/*
* Don't actuall do any lookups,
* just pretend everything is
* not found
*/
methods = &null_methods;
break;
case METHOD_AUTO:
methods = &bfd_methods;
if (methods->lookup_init() == 0)
return 0;
methods = &kallsym_methods;
if (methods->lookup_init() == 0)
return 0;
methods = NULL;
return -1;
case METHOD_DEBUGINFO:
methods = &bfd_methods;
break;
case METHOD_KALLSYMS:
methods = &kallsym_methods;
break;
}
rc = methods->lookup_init();
if (rc < 0)
methods = NULL;
return rc;
}
int lookup_symbol(void *pc, struct loc_result *loc)
{
if (loc == NULL)
return 1;
return methods->get_symbol(pc, loc);
}