llvm.c 4.0 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2
#include <stdio.h>
3
#include <stdlib.h>
4
#include <string.h>
5 6
#include <bpf/libbpf.h>
#include <util/llvm-utils.h>
7
#include "llvm.h"
8 9 10 11 12 13 14 15
#include "tests.h"
#include "debug.h"

#ifdef HAVE_LIBBPF_SUPPORT
static int test__bpf_parsing(void *obj_buf, size_t obj_buf_sz)
{
	struct bpf_object *obj;

16
	obj = bpf_object__open_buffer(obj_buf, obj_buf_sz, NULL);
17
	if (libbpf_get_error(obj))
18
		return TEST_FAIL;
19
	bpf_object__close(obj);
20
	return TEST_OK;
21 22 23 24 25
}
#else
static int test__bpf_parsing(void *obj_buf __maybe_unused,
			     size_t obj_buf_sz __maybe_unused)
{
26
	pr_debug("Skip bpf parsing\n");
27
	return TEST_OK;
28 29 30
}
#endif

31 32 33
static struct {
	const char *source;
	const char *desc;
34
	bool should_load_fail;
35 36 37
} bpf_source_table[__LLVM_TESTCASE_MAX] = {
	[LLVM_TESTCASE_BASE] = {
		.source = test_llvm__bpf_base_prog,
38
		.desc = "Basic BPF llvm compile",
39
	},
40 41
	[LLVM_TESTCASE_KBUILD] = {
		.source = test_llvm__bpf_test_kbuild_prog,
42
		.desc = "kbuild searching",
43
	},
44 45
	[LLVM_TESTCASE_BPF_PROLOGUE] = {
		.source = test_llvm__bpf_test_prologue_prog,
46
		.desc = "Compile source for BPF prologue generation",
47
	},
48 49
	[LLVM_TESTCASE_BPF_RELOCATION] = {
		.source = test_llvm__bpf_test_relocation,
50
		.desc = "Compile source for BPF relocation",
51 52
		.should_load_fail = true,
	},
53 54 55 56 57
};

int
test_llvm__fetch_bpf_obj(void **p_obj_buf,
			 size_t *p_obj_buf_sz,
58
			 enum test_llvm__testcase idx,
59 60
			 bool force,
			 bool *should_load_fail)
61
{
62 63 64 65 66 67
	const char *source;
	const char *desc;
	const char *tmpl_old, *clang_opt_old;
	char *tmpl_new = NULL, *clang_opt_new = NULL;
	int err, old_verbose, ret = TEST_FAIL;

68
	if (idx >= __LLVM_TESTCASE_MAX)
69 70
		return TEST_FAIL;

71 72
	source = bpf_source_table[idx].source;
	desc = bpf_source_table[idx].desc;
73 74
	if (should_load_fail)
		*should_load_fail = bpf_source_table[idx].should_load_fail;
75 76 77 78 79

	/*
	 * Skip this test if user's .perfconfig doesn't set [llvm] section
	 * and clang is not found in $PATH, and this is not perf test -v
	 */
80
	if (!force && (verbose <= 0 &&
81 82
		       !llvm_param.user_set_param &&
		       llvm__search_clang())) {
83
		pr_debug("No clang and no verbosive, skip this test\n");
84 85 86 87 88 89 90
		return TEST_SKIP;
	}

	/*
	 * llvm is verbosity when error. Suppress all error output if
	 * not 'perf test -v'.
	 */
91
	old_verbose = verbose;
92 93 94
	if (verbose == 0)
		verbose = -1;

95 96 97
	*p_obj_buf = NULL;
	*p_obj_buf_sz = 0;

98
	if (!llvm_param.clang_bpf_cmd_template)
99
		goto out;
100 101 102 103

	if (!llvm_param.clang_opt)
		llvm_param.clang_opt = strdup("");

104 105 106
	err = asprintf(&tmpl_new, "echo '%s' | %s%s", source,
		       llvm_param.clang_bpf_cmd_template,
		       old_verbose ? "" : " 2>/dev/null");
107
	if (err < 0)
108
		goto out;
109 110
	err = asprintf(&clang_opt_new, "-xc %s", llvm_param.clang_opt);
	if (err < 0)
111
		goto out;
112

113
	tmpl_old = llvm_param.clang_bpf_cmd_template;
114
	llvm_param.clang_bpf_cmd_template = tmpl_new;
115
	clang_opt_old = llvm_param.clang_opt;
116
	llvm_param.clang_opt = clang_opt_new;
117 118 119 120 121

	err = llvm__compile_bpf("-", p_obj_buf, p_obj_buf_sz);

	llvm_param.clang_bpf_cmd_template = tmpl_old;
	llvm_param.clang_opt = clang_opt_old;
122 123

	verbose = old_verbose;
124
	if (err)
125 126 127 128 129 130 131 132 133 134
		goto out;

	ret = TEST_OK;
out:
	free(tmpl_new);
	free(clang_opt_new);
	if (ret != TEST_OK)
		pr_debug("Failed to compile test case: '%s'\n", desc);
	return ret;
}
135

136
int test__llvm(struct test *test __maybe_unused, int subtest)
137
{
138 139 140
	int ret;
	void *obj_buf = NULL;
	size_t obj_buf_sz = 0;
141
	bool should_load_fail = false;
142

143 144
	if ((subtest < 0) || (subtest >= __LLVM_TESTCASE_MAX))
		return TEST_FAIL;
145

146
	ret = test_llvm__fetch_bpf_obj(&obj_buf, &obj_buf_sz,
147
				       subtest, false, &should_load_fail);
148

149
	if (ret == TEST_OK && !should_load_fail) {
150 151 152 153
		ret = test__bpf_parsing(obj_buf, obj_buf_sz);
		if (ret != TEST_OK) {
			pr_debug("Failed to parse test case '%s'\n",
				 bpf_source_table[subtest].desc);
154 155
		}
	}
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
	free(obj_buf);

	return ret;
}

int test__llvm_subtest_get_nr(void)
{
	return __LLVM_TESTCASE_MAX;
}

const char *test__llvm_subtest_get_desc(int subtest)
{
	if ((subtest < 0) || (subtest >= __LLVM_TESTCASE_MAX))
		return NULL;

	return bpf_source_table[subtest].desc;
172
}