flt.lttng-utils.debug-info: Implement file descriptor cache
[babeltrace.git] / tests / plugins / test_bin_info.c
1 /*
2 * test_bin_info.c
3 *
4 * Babeltrace SO info tests
5 *
6 * Copyright (c) 2015 EfficiOS Inc. and Linux Foundation
7 * Copyright (c) 2015 Antoine Busque <abusque@efficios.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; under version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include <babeltrace/assert-internal.h>
28 #include <lttng-utils/debug-info/bin-info.h>
29
30 #include "tap/tap.h"
31
32 #define NR_TESTS 36
33 #define SO_NAME "libhello_so"
34 #define SO_NAME_ELF "libhello_elf_so"
35 #define SO_NAME_BUILD_ID "libhello_build_id_so"
36 #define SO_NAME_DEBUG_LINK "libhello_debug_link_so"
37 #define SO_LOW_ADDR 0x400000
38 #define SO_MEMSZ 0x400000
39 #define FUNC_FOO_ADDR 0x4014ee
40 #define FUNC_FOO_LINE_NO 8
41 #define FUNC_FOO_FILENAME "/efficios/libhello.c"
42 #define FUNC_FOO_TP_ADDR 0x4014d3
43 #define FUNC_FOO_TP_LINE_NO 7
44 #define FUNC_FOO_TP_FILENAME "/efficios/libhello.c"
45 #define FUNC_FOO_ADDR_ELF 0x4013ef
46 #define FUNC_FOO_ADDR_DBG_LINK 0x40148e
47 #define FUNC_FOO_NAME "foo+0xc3"
48 #define FUNC_FOO_NAME_ELF "foo+0x24"
49 #define BUILD_ID_LEN 20
50
51 char *opt_debug_info_dir;
52 char *opt_debug_info_target_prefix;
53
54 static
55 void test_bin_info_build_id(const char *data_dir)
56 {
57 int ret;
58 char path[PATH_MAX];
59 char *func_name = NULL;
60 struct bin_info *bin = NULL;
61 struct source_location *src_loc = NULL;
62 struct bt_fd_cache fdc;
63 uint8_t build_id[BUILD_ID_LEN] = {
64 0xcd, 0xd9, 0x8c, 0xdd, 0x87, 0xf7, 0xfe, 0x64, 0xc1, 0x3b,
65 0x6d, 0xaa, 0xd5, 0x53, 0x98, 0x7e, 0xaf, 0xd4, 0x0c, 0xbb
66 };
67
68 diag("bin-info tests - separate DWARF via build ID");
69
70 snprintf(path, PATH_MAX, "%s/%s", data_dir, SO_NAME_BUILD_ID);
71
72 ret = bt_fd_cache_init(&fdc);
73 BT_ASSERT(ret == 0);
74 bin = bin_info_create(&fdc, path, SO_LOW_ADDR, SO_MEMSZ, true, data_dir, NULL);
75 ok(bin != NULL, "bin_info_create successful");
76
77 /* Test setting build_id */
78 ret = bin_info_set_build_id(bin, build_id, BUILD_ID_LEN);
79 ok(ret == 0, "bin_info_set_build_id successful");
80
81 /* Test function name lookup (with DWARF) */
82 ret = bin_info_lookup_function_name(bin, FUNC_FOO_ADDR, &func_name);
83 ok(ret == 0, "bin_info_lookup_function_name successful");
84 if (func_name) {
85 ok(strcmp(func_name, FUNC_FOO_NAME) == 0,
86 "bin_info_lookup_function_name - correct func_name value");
87 free(func_name);
88 } else {
89 skip(1, "bin_info_lookup_function_name - func_name is NULL");
90 }
91
92 /* Test source location lookup */
93 ret = bin_info_lookup_source_location(bin, FUNC_FOO_ADDR, &src_loc);
94 ok(ret == 0, "bin_info_lookup_source_location successful");
95 if (src_loc) {
96 ok(src_loc->line_no == FUNC_FOO_LINE_NO,
97 "bin_info_lookup_source_location - correct line_no");
98 ok(strcmp(src_loc->filename, FUNC_FOO_FILENAME) == 0,
99 "bin_info_lookup_source_location - correct filename");
100 source_location_destroy(src_loc);
101 } else {
102 skip(2, "bin_info_lookup_source_location - src_loc is NULL");
103 }
104
105 bin_info_destroy(bin);
106 bt_fd_cache_fini(&fdc);
107 }
108
109 static
110 void test_bin_info_debug_link(const char *data_dir)
111 {
112 int ret;
113 char path[PATH_MAX];
114 char *func_name = NULL;
115 struct bin_info *bin = NULL;
116 struct source_location *src_loc = NULL;
117 char *dbg_filename = "libhello_debug_link_so.debug";
118 uint32_t crc = 0xe55c2b98;
119 struct bt_fd_cache fdc;
120
121 diag("bin-info tests - separate DWARF via debug link");
122
123 snprintf(path, PATH_MAX, "%s/%s", data_dir, SO_NAME_DEBUG_LINK);
124
125 ret = bt_fd_cache_init(&fdc);
126 BT_ASSERT(ret == 0);
127 bin = bin_info_create(&fdc, path, SO_LOW_ADDR, SO_MEMSZ, true, data_dir,
128 NULL);
129 ok(bin != NULL, "bin_info_create successful");
130
131 /* Test setting debug link */
132 ret = bin_info_set_debug_link(bin, dbg_filename, crc);
133 ok(ret == 0, "bin_info_set_debug_link successful");
134
135 /* Test function name lookup (with DWARF) */
136 ret = bin_info_lookup_function_name(bin, FUNC_FOO_ADDR_DBG_LINK,
137 &func_name);
138 ok(ret == 0, "bin_info_lookup_function_name successful");
139 if (func_name) {
140 ok(strcmp(func_name, FUNC_FOO_NAME) == 0,
141 "bin_info_lookup_function_name - correct func_name value");
142 free(func_name);
143 } else {
144 skip(1, "bin_info_lookup_function_name - func_name is NULL");
145 }
146
147 /* Test source location lookup */
148 ret = bin_info_lookup_source_location(bin, FUNC_FOO_ADDR_DBG_LINK,
149 &src_loc);
150 ok(ret == 0, "bin_info_lookup_source_location successful");
151 if (src_loc) {
152 ok(src_loc->line_no == FUNC_FOO_LINE_NO,
153 "bin_info_lookup_source_location - correct line_no");
154 ok(strcmp(src_loc->filename, FUNC_FOO_FILENAME) == 0,
155 "bin_info_lookup_source_location - correct filename");
156 source_location_destroy(src_loc);
157 } else {
158 skip(2, "bin_info_lookup_source_location - src_loc is NULL");
159 }
160
161 bin_info_destroy(bin);
162 bt_fd_cache_fini(&fdc);
163 }
164
165 static
166 void test_bin_info_elf(const char *data_dir)
167 {
168 int ret;
169 char path[PATH_MAX];
170 char *func_name = NULL;
171 struct bin_info *bin = NULL;
172 struct source_location *src_loc = NULL;
173 struct bt_fd_cache fdc;
174
175 diag("bin-info tests - ELF only");
176
177 snprintf(path, PATH_MAX, "%s/%s", data_dir, SO_NAME_ELF);
178
179 ret = bt_fd_cache_init(&fdc);
180 BT_ASSERT(ret == 0);
181 bin = bin_info_create(&fdc, path, SO_LOW_ADDR, SO_MEMSZ, true, data_dir, NULL);
182 ok(bin != NULL, "bin_info_create successful");
183
184 /* Test function name lookup (with ELF) */
185 ret = bin_info_lookup_function_name(bin, FUNC_FOO_ADDR_ELF, &func_name);
186 ok(ret == 0, "bin_info_lookup_function_name successful");
187 if (func_name) {
188 ok(strcmp(func_name, FUNC_FOO_NAME_ELF) == 0,
189 "bin_info_lookup_function_name - correct func_name value");
190 free(func_name);
191 func_name = NULL;
192 } else {
193 skip(1, "bin_info_lookup_function_name - func_name is NULL");
194 }
195
196 /* Test function name lookup - erroneous address */
197 ret = bin_info_lookup_function_name(bin, 0, &func_name);
198 ok(ret == -1 && func_name == NULL,
199 "bin_info_lookup_function_name - fail on addr not found");
200
201 /* Test source location location - should fail on ELF only file */
202 ret = bin_info_lookup_source_location(bin, FUNC_FOO_ADDR_ELF, &src_loc);
203 ok(ret == -1, "bin_info_lookup_source_location - fail on ELF only file");
204
205 source_location_destroy(src_loc);
206 bin_info_destroy(bin);
207 bt_fd_cache_fini(&fdc);
208 }
209
210 static
211 void test_bin_info(const char *data_dir)
212 {
213 int ret;
214 char path[PATH_MAX];
215 char *func_name = NULL;
216 struct bin_info *bin = NULL;
217 struct source_location *src_loc = NULL;
218 struct bt_fd_cache fdc;
219
220 diag("bin-info tests - DWARF bundled with SO file");
221
222
223 snprintf(path, PATH_MAX, "%s/%s", data_dir, SO_NAME);
224
225 ret = bt_fd_cache_init(&fdc);
226 BT_ASSERT(ret == 0);
227 bin = bin_info_create(&fdc, path, SO_LOW_ADDR, SO_MEMSZ, true, data_dir, NULL);
228 ok(bin != NULL, "bin_info_create successful");
229
230 /* Test bin_info_has_address */
231 ret = bin_info_has_address(bin, 0);
232 ok(ret == 0, "bin_info_has_address - address under so's range");
233 ret = bin_info_has_address(bin, SO_LOW_ADDR);
234 ok(ret == 1, "bin_info_has_address - lower bound of so's range");
235 ret = bin_info_has_address(bin, FUNC_FOO_ADDR);
236 ok(ret == 1, "bin_info_has_address - address in so's range");
237 ret = bin_info_has_address(bin, SO_LOW_ADDR + SO_MEMSZ - 1);
238 ok(ret == 1, "bin_info_has_address - upper bound of so's range");
239 ret = bin_info_has_address(bin, SO_LOW_ADDR + SO_MEMSZ);
240 ok(ret == 0, "bin_info_has_address - address above so's range");
241
242 /* Test function name lookup (with DWARF) */
243 ret = bin_info_lookup_function_name(bin, FUNC_FOO_ADDR, &func_name);
244 ok(ret == 0, "bin_info_lookup_function_name successful");
245 if (func_name) {
246 ok(strcmp(func_name, FUNC_FOO_NAME) == 0,
247 "bin_info_lookup_function_name - correct func_name value");
248 free(func_name);
249 func_name = NULL;
250 } else {
251 skip(1, "bin_info_lookup_function_name - func_name is NULL");
252 }
253
254 /* Test function name lookup - erroneous address */
255 ret = bin_info_lookup_function_name(bin, 0, &func_name);
256 ok(ret == -1 && func_name == NULL,
257 "bin_info_lookup_function_name - fail on addr not found");
258
259 /* Test source location lookup */
260 ret = bin_info_lookup_source_location(bin, FUNC_FOO_ADDR, &src_loc);
261 ok(ret == 0, "bin_info_lookup_source_location successful");
262 if (src_loc) {
263 ok(src_loc->line_no == FUNC_FOO_LINE_NO,
264 "bin_info_lookup_source_location - correct line_no");
265 ok(strcmp(src_loc->filename, FUNC_FOO_FILENAME) == 0,
266 "bin_info_lookup_source_location - correct filename");
267 source_location_destroy(src_loc);
268 src_loc = NULL;
269 } else {
270 skip(2, "bin_info_lookup_source_location - src_loc is NULL");
271 }
272
273 /* Test source location lookup - inlined function */
274 ret = bin_info_lookup_source_location(bin, FUNC_FOO_TP_ADDR, &src_loc);
275 ok(ret == 0,
276 "bin_info_lookup_source_location (inlined func) successful");
277 if (src_loc) {
278 ok(src_loc->line_no == FUNC_FOO_TP_LINE_NO,
279 "bin_info_lookup_source_location (inlined func) - correct line_no");
280 ok(strcmp(src_loc->filename, FUNC_FOO_TP_FILENAME) == 0,
281 "bin_info_lookup_source_location (inlined func) - correct filename");
282 source_location_destroy(src_loc);
283 src_loc = NULL;
284 } else {
285 skip(2, "bin_info_lookup_source_location (inlined func) - src_loc is NULL");
286 }
287
288 /* Test source location lookup - erroneous address */
289 ret = bin_info_lookup_source_location(bin, 0, &src_loc);
290 ok(ret == -1 && src_loc == NULL,
291 "bin_info_lookup_source_location - fail on addr not found");
292
293 bin_info_destroy(bin);
294 bt_fd_cache_fini(&fdc);
295 }
296
297 int main(int argc, char **argv)
298 {
299 int ret;
300
301 plan_tests(NR_TESTS);
302
303 if (argc != 2) {
304 return EXIT_FAILURE;
305 } else {
306 opt_debug_info_dir = argv[1];
307 }
308
309 ret = bin_info_init();
310 ok(ret == 0, "bin_info_init successful");
311
312 test_bin_info(opt_debug_info_dir);
313 test_bin_info_elf(opt_debug_info_dir);
314 test_bin_info_build_id(opt_debug_info_dir);
315 test_bin_info_debug_link(opt_debug_info_dir);
316
317 return EXIT_SUCCESS;
318 }
This page took 0.035093 seconds and 4 git commands to generate.