test: elf move constants to top of implementation
[lttng-ust.git] / tests / ust-elf / prog.c
CommitLineData
22609c7a
AB
1/*
2 * Copyright (C) 2015 Antoine Busque <abusque@efficios.com>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include <linux/limits.h>
20#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23
24#include <lttng/ust-elf.h>
25#include "tap.h"
26
27#define NUM_ARCH 4
28#define NUM_TESTS_PER_ARCH 11
62eb8bca 29#define NUM_TESTS (NUM_ARCH * NUM_TESTS_PER_ARCH) + 1
22609c7a
AB
30
31/*
32 * Expected memsz were computed using libelf, build ID and debug link
33 * were determined through readelf.
34 */
35#define X86_MEMSZ 8192
36#define X86_64_MEMSZ 4194304
37#define ARMEB_MEMSZ 65536
38#define AARCH64_BE_MEMSZ 131072
39
40#define X86_CRC 0x1531f73c
41#define X86_64_CRC 0xa048a98f
42#define ARMEB_CRC 0x9d40261b
43#define AARCH64_BE_CRC 0x2b8cedce
44
45#define BUILD_ID_LEN 20
46#define DBG_FILE "main.elf.debug"
47
8d8a8c5c
MD
48static const uint8_t x86_build_id[BUILD_ID_LEN] = {
49 0x27, 0x79, 0x2a, 0xe7, 0xaa, 0xef, 0x72, 0x5c, 0x9c, 0x52,
50 0x80, 0xec, 0x1e, 0x18, 0xd8, 0x09, 0x02, 0xba, 0xbc, 0x82
51};
52static const uint8_t x86_64_build_id[BUILD_ID_LEN] = {
53 0x0f, 0x87, 0xb2, 0xe2, 0x24, 0x9c, 0xe1, 0xc2, 0x24, 0xb1,
54 0xf8, 0xb6, 0x65, 0x83, 0xa3, 0xc1, 0xcb, 0x30, 0x5c, 0x63
55};
56static const uint8_t armeb_build_id[BUILD_ID_LEN] = {
57 0x60, 0x5d, 0x26, 0xa0, 0x0e, 0x30, 0xa4, 0x29, 0xf4, 0xf1,
58 0x85, 0x53, 0xda, 0x90, 0x68, 0xe1, 0xf5, 0x67, 0xbe, 0x42
59};
60static const uint8_t aarch64_be_build_id[BUILD_ID_LEN] = {
61 0xb9, 0x0a, 0xa0, 0xed, 0xd1, 0x41, 0x42, 0xc3, 0x34, 0x85,
62 0xfa, 0x27, 0x2e, 0xa9, 0x2f, 0xd2, 0xe4, 0xf7, 0xb6, 0x60
63};
64
22609c7a
AB
65static
66void test_elf(const char *test_dir, const char *arch, uint64_t exp_memsz,
8d8a8c5c 67 const uint8_t *exp_build_id, uint32_t exp_crc)
22609c7a
AB
68{
69 char path[PATH_MAX];
70 struct lttng_ust_elf *elf = NULL;
71 int ret = 0;
72 uint64_t memsz = 0;
73 int has_build_id = 0;
74 uint8_t *build_id = NULL;
75 size_t build_id_len = 0;
76 int has_debug_link = 0;
77 char *dbg_file = NULL;
78 uint32_t crc = 0;
79
80 diag("Testing %s support", arch);
81
82 snprintf(path, PATH_MAX, "%s/data/%s/main.elf", test_dir, arch);
83 elf = lttng_ust_elf_create(path);
84 ok(elf != NULL, "lttng_ust_elf_create");
85
86 ret = lttng_ust_elf_get_memsz(elf, &memsz);
87 ok(ret == 0, "lttng_ust_elf_get_memsz returned successfully");
88 ok(memsz == exp_memsz,
89 "memsz - expected: %lu, got: %lu",
90 exp_memsz, memsz);
91
92 ret = lttng_ust_elf_get_build_id(elf, &build_id, &build_id_len,
93 &has_build_id);
94 ok(ret == 0, "lttng_ust_elf_get_build_id returned successfully");
95 ok(has_build_id == 1, "build id marked as found");
96 ok(build_id_len == BUILD_ID_LEN,
97 "build_id_len - expected: %u, got: %u",
98 BUILD_ID_LEN, build_id_len);
99 ok(memcmp(build_id, exp_build_id, build_id_len) == 0,
100 "build_id has expected value");
101
102 ret = lttng_ust_elf_get_debug_link(elf, &dbg_file, &crc,
103 &has_debug_link);
104 ok(ret == 0, "lttng_ust_elf_get_debug_link returned successfully");
105 ok(has_debug_link == 1, "debug link marked as found");
106 ok(strcmp(dbg_file, DBG_FILE) == 0,
107 "debug link filename - expected: %s, got: %s",
108 DBG_FILE, dbg_file);
109 ok(crc == exp_crc,
110 "debug link crc - expected: %#x, got: %#x",
111 exp_crc, crc);
112
113 free(build_id);
114 free(dbg_file);
115 lttng_ust_elf_destroy(elf);
116}
117
118int main(int argc, char **argv)
119{
62eb8bca 120 const char *test_dir;
22609c7a
AB
121
122 plan_tests(NUM_TESTS);
123
62eb8bca
MD
124 ok(argc == 2, "Invoke as: %s <path>", argv[0]);
125 if (argc != 2) {
126 return EXIT_FAILURE;
127 } else {
128 test_dir = argv[1];
129 }
130
8d8a8c5c
MD
131 test_elf(test_dir, "x86", X86_MEMSZ, x86_build_id, X86_CRC);
132 test_elf(test_dir, "x86_64", X86_64_MEMSZ, x86_64_build_id, X86_64_CRC);
133 test_elf(test_dir, "armeb", ARMEB_MEMSZ, armeb_build_id, ARMEB_CRC);
134 test_elf(test_dir, "aarch64_be", AARCH64_BE_MEMSZ, aarch64_be_build_id,
22609c7a
AB
135 AARCH64_BE_CRC);
136
62eb8bca 137 return EXIT_SUCCESS;
22609c7a 138}
This page took 0.028804 seconds and 4 git commands to generate.