/* SPDX-License-Identifier: GPL-2.0 */ #include #include #include #include #include #include #include #include #include #include typedef __u16 __sum16; #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "test_iptunnel_common.h" #include "bpf_util.h" #include #include "trace_helpers.h" #include "testing_helpers.h" #include "flow_dissector_load.h" enum verbosity { VERBOSE_NONE, VERBOSE_NORMAL, VERBOSE_VERY, VERBOSE_SUPER, }; struct str_set { const char **strs; int cnt; }; struct test_selector { struct str_set whitelist; struct str_set blacklist; bool *num_set; int num_set_len; }; struct test_env { struct test_selector test_selector; struct test_selector subtest_selector; bool verifier_stats; enum verbosity verbosity; bool jit_enabled; struct prog_test_def *test; FILE *stdout; FILE *stderr; char *log_buf; size_t log_cnt; int nr_cpus; int succ_cnt; /* successful tests */ int sub_succ_cnt; /* successful sub-tests */ int fail_cnt; /* total failed tests + sub-tests */ int skip_cnt; /* skipped tests */ }; extern struct test_env env; extern void test__force_log(); extern bool test__start_subtest(const char *name); extern void test__skip(void); extern void test__fail(void); extern int test__join_cgroup(const char *path); #define PRINT_FAIL(format...) \ ({ \ test__fail(); \ fprintf(stdout, "%s:FAIL:%d ", __func__, __LINE__); \ fprintf(stdout, ##format); \ }) #define _CHECK(condition, tag, duration, format...) ({ \ int __ret = !!(condition); \ int __save_errno = errno; \ if (__ret) { \ test__fail(); \ fprintf(stdout, "%s:FAIL:%s ", __func__, tag); \ fprintf(stdout, ##format); \ } else { \ fprintf(stdout, "%s:PASS:%s %d nsec\n", \ __func__, tag, duration); \ } \ errno = __save_errno; \ __ret; \ }) #define CHECK_FAIL(condition) ({ \ int __ret = !!(condition); \ int __save_errno = errno; \ if (__ret) { \ test__fail(); \ fprintf(stdout, "%s:FAIL:%d\n", __func__, __LINE__); \ } \ errno = __save_errno; \ __ret; \ }) #define CHECK(condition, tag, format...) \ _CHECK(condition, tag, duration, format) #define CHECK_ATTR(condition, tag, format...) \ _CHECK(condition, tag, tattr.duration, format) static inline __u64 ptr_to_u64(const void *ptr) { return (__u64) (unsigned long) ptr; } int bpf_find_map(const char *test, struct bpf_object *obj, const char *name); int compare_map_keys(int map1_fd, int map2_fd); int compare_stack_ips(int smap_fd, int amap_fd, int stack_trace_len); int extract_build_id(char *build_id, size_t size); #ifdef __x86_64__ #define SYS_NANOSLEEP_KPROBE_NAME "__x64_sys_nanosleep" #elif defined(__s390x__) #define SYS_NANOSLEEP_KPROBE_NAME "__s390x_sys_nanosleep" #else #define SYS_NANOSLEEP_KPROBE_NAME "sys_nanosleep" #endif