1 # SPDX-License-Identifier: GPL-2.0 1 # SPDX-License-Identifier: GPL-2.0 2 include ../../../build/Build.include 2 include ../../../build/Build.include 3 include ../../../scripts/Makefile.arch 3 include ../../../scripts/Makefile.arch 4 include ../../../scripts/Makefile.include 4 include ../../../scripts/Makefile.include 5 5 6 CXX ?= $(CROSS_COMPILE)g++ 6 CXX ?= $(CROSS_COMPILE)g++ 7 7 8 CURDIR := $(abspath .) 8 CURDIR := $(abspath .) 9 TOOLSDIR := $(abspath ../../..) 9 TOOLSDIR := $(abspath ../../..) 10 LIBDIR := $(TOOLSDIR)/lib 10 LIBDIR := $(TOOLSDIR)/lib 11 BPFDIR := $(LIBDIR)/bpf 11 BPFDIR := $(LIBDIR)/bpf 12 TOOLSINCDIR := $(TOOLSDIR)/include 12 TOOLSINCDIR := $(TOOLSDIR)/include 13 BPFTOOLDIR := $(TOOLSDIR)/bpf/bpftool 13 BPFTOOLDIR := $(TOOLSDIR)/bpf/bpftool 14 APIDIR := $(TOOLSINCDIR)/uapi 14 APIDIR := $(TOOLSINCDIR)/uapi 15 ifneq ($(O),) << 16 GENDIR := $(O)/include/generated << 17 else << 18 GENDIR := $(abspath ../../../../include/genera 15 GENDIR := $(abspath ../../../../include/generated) 19 endif << 20 GENHDR := $(GENDIR)/autoconf.h 16 GENHDR := $(GENDIR)/autoconf.h 21 PKG_CONFIG ?= $(CROSS_COMPILE)pkg-config << 22 17 23 ifneq ($(wildcard $(GENHDR)),) 18 ifneq ($(wildcard $(GENHDR)),) 24 GENFLAGS := -DHAVE_GENHDR 19 GENFLAGS := -DHAVE_GENHDR 25 endif 20 endif 26 21 27 BPF_GCC ?= $(shell command -v bpf-gcc; 22 BPF_GCC ?= $(shell command -v bpf-gcc;) 28 SAN_CFLAGS ?= 23 SAN_CFLAGS ?= 29 SAN_LDFLAGS ?= $(SAN_CFLAGS) !! 24 CFLAGS += -g -O0 -rdynamic -Wall -Werror $(GENFLAGS) $(SAN_CFLAGS) \ 30 RELEASE ?= << 31 OPT_FLAGS ?= $(if $(RELEASE),-O2,-O0) << 32 << 33 LIBELF_CFLAGS := $(shell $(PKG_CONFIG) libel << 34 LIBELF_LIBS := $(shell $(PKG_CONFIG) libel << 35 << 36 ifeq ($(srctree),) << 37 srctree := $(patsubst %/,%,$(dir $(CURDIR))) << 38 srctree := $(patsubst %/,%,$(dir $(srctree))) << 39 srctree := $(patsubst %/,%,$(dir $(srctree))) << 40 srctree := $(patsubst %/,%,$(dir $(srctree))) << 41 endif << 42 << 43 CFLAGS += -g $(OPT_FLAGS) -rdynamic << 44 -Wall -Werror -fno-omit-frame-pointe << 45 $(GENFLAGS) $(SAN_CFLAGS) $(LIBELF_C << 46 -I$(CURDIR) -I$(INCLUDE_DIR) -I$(GEN 25 -I$(CURDIR) -I$(INCLUDE_DIR) -I$(GENDIR) -I$(LIBDIR) \ 47 -I$(TOOLSINCDIR) -I$(APIDIR) -I$(OUT 26 -I$(TOOLSINCDIR) -I$(APIDIR) -I$(OUTPUT) 48 LDFLAGS += $(SAN_LDFLAGS) !! 27 LDFLAGS += $(SAN_CFLAGS) 49 LDLIBS += $(LIBELF_LIBS) -lz -lrt -lpthread !! 28 LDLIBS += -lelf -lz -lrt -lpthread 50 << 51 PCAP_CFLAGS := $(shell $(PKG_CONFIG) --cfl << 52 PCAP_LIBS := $(shell $(PKG_CONFIG) --lib << 53 LDLIBS += $(PCAP_LIBS) << 54 CFLAGS += $(PCAP_CFLAGS) << 55 << 56 # The following tests perform type punning and << 57 # aliasing rules, which are exploited by both << 58 # while optimizing. This can lead to broken p << 59 progs/bind4_prog.c-CFLAGS := -fno-strict-alias << 60 progs/bind6_prog.c-CFLAGS := -fno-strict-alias << 61 progs/dynptr_fail.c-CFLAGS := -fno-strict-alia << 62 progs/linked_list_fail.c-CFLAGS := -fno-strict << 63 progs/map_kptr_fail.c-CFLAGS := -fno-strict-al << 64 progs/syscall.c-CFLAGS := -fno-strict-aliasing << 65 progs/test_pkt_md_access.c-CFLAGS := -fno-stri << 66 progs/test_sk_lookup.c-CFLAGS := -fno-strict-a << 67 progs/timer_crash.c-CFLAGS := -fno-strict-alia << 68 progs/test_global_func9.c-CFLAGS := -fno-stric << 69 progs/verifier_nocsr.c-CFLAGS := -fno-strict-a << 70 << 71 # Some utility functions use LLVM libraries << 72 jit_disasm_helpers.c-CFLAGS = $(LLVM_CFLAGS) << 73 29 74 ifneq ($(LLVM),) << 75 # Silence some warnings when compiled with cla 30 # Silence some warnings when compiled with clang >> 31 ifneq ($(LLVM),) 76 CFLAGS += -Wno-unused-command-line-argument 32 CFLAGS += -Wno-unused-command-line-argument 77 endif 33 endif 78 34 79 # Check whether bpf cpu=v4 is supported or not << 80 ifneq ($(shell $(CLANG) --target=bpf -mcpu=hel << 81 CLANG_CPUV4 := 1 << 82 endif << 83 << 84 # Order correspond to 'make run_tests' order 35 # Order correspond to 'make run_tests' order 85 TEST_GEN_PROGS = test_verifier test_tag test_m 36 TEST_GEN_PROGS = test_verifier test_tag test_maps test_lru_map test_lpm_map test_progs \ 86 test_sock test_sockmap \ !! 37 test_verifier_log test_dev_cgroup \ >> 38 test_sock test_sockmap get_cgroup_id_user \ >> 39 test_cgroup_storage \ 87 test_tcpnotify_user test_sysctl \ 40 test_tcpnotify_user test_sysctl \ 88 test_progs-no_alu32 41 test_progs-no_alu32 89 TEST_INST_SUBDIRS := no_alu32 << 90 42 91 # Also test bpf-gcc, if present 43 # Also test bpf-gcc, if present 92 ifneq ($(BPF_GCC),) 44 ifneq ($(BPF_GCC),) 93 TEST_GEN_PROGS += test_progs-bpf_gcc 45 TEST_GEN_PROGS += test_progs-bpf_gcc 94 TEST_INST_SUBDIRS += bpf_gcc << 95 << 96 # The following tests contain C code that, alt << 97 # triggers GCC warnings that cannot be disable << 98 # anonymous struct types in function parameter << 99 progs/btf_dump_test_case_bitfields.c-bpf_gcc-C << 100 progs/btf_dump_test_case_namespacing.c-bpf_gcc << 101 progs/btf_dump_test_case_packing.c-bpf_gcc-CFL << 102 progs/btf_dump_test_case_padding.c-bpf_gcc-CFL << 103 progs/btf_dump_test_case_syntax.c-bpf_gcc-CFLA << 104 << 105 # The following tests do type-punning, via the << 106 # `struct bpf_insn' to long and then uses the << 107 # "is used uninitialized" warning in GCC due t << 108 # rules. << 109 progs/verifier_ref_tracking.c-bpf_gcc-CFLAGS : << 110 progs/verifier_unpriv.c-bpf_gcc-CFLAGS := -fno << 111 progs/verifier_cgroup_storage.c-bpf_gcc-CFLAGS << 112 progs/verifier_ld_ind.c-bpf_gcc-CFLAGS := -fno << 113 progs/verifier_map_ret_val.c-bpf_gcc-CFLAGS := << 114 progs/verifier_spill_fill.c-bpf_gcc-CFLAGS := << 115 progs/verifier_subprog_precision.c-bpf_gcc-CFL << 116 progs/verifier_uninit.c-bpf_gcc-CFLAGS := -fno << 117 endif << 118 << 119 ifneq ($(CLANG_CPUV4),) << 120 TEST_GEN_PROGS += test_progs-cpuv4 << 121 TEST_INST_SUBDIRS += cpuv4 << 122 endif 46 endif 123 47 124 TEST_GEN_FILES = test_lwt_ip_encap.bpf.o test_ !! 48 TEST_GEN_FILES = test_lwt_ip_encap.o test_tc_edt.o 125 TEST_FILES = xsk_prereqs.sh $(wildcard progs/b 49 TEST_FILES = xsk_prereqs.sh $(wildcard progs/btf_dump_test_case_*.c) 126 50 127 # Order correspond to 'make run_tests' order 51 # Order correspond to 'make run_tests' order 128 TEST_PROGS := test_kmod.sh \ 52 TEST_PROGS := test_kmod.sh \ 129 test_xdp_redirect.sh \ 53 test_xdp_redirect.sh \ 130 test_xdp_redirect_multi.sh \ 54 test_xdp_redirect_multi.sh \ 131 test_xdp_meta.sh \ 55 test_xdp_meta.sh \ >> 56 test_xdp_veth.sh \ >> 57 test_offload.py \ >> 58 test_sock_addr.sh \ 132 test_tunnel.sh \ 59 test_tunnel.sh \ 133 test_lwt_seg6local.sh \ 60 test_lwt_seg6local.sh \ 134 test_lirc_mode2.sh \ 61 test_lirc_mode2.sh \ 135 test_skb_cgroup_id.sh \ 62 test_skb_cgroup_id.sh \ 136 test_flow_dissector.sh \ 63 test_flow_dissector.sh \ 137 test_xdp_vlan_mode_generic.sh \ 64 test_xdp_vlan_mode_generic.sh \ 138 test_xdp_vlan_mode_native.sh \ 65 test_xdp_vlan_mode_native.sh \ 139 test_lwt_ip_encap.sh \ 66 test_lwt_ip_encap.sh \ 140 test_tcp_check_syncookie.sh \ 67 test_tcp_check_syncookie.sh \ 141 test_tc_tunnel.sh \ 68 test_tc_tunnel.sh \ 142 test_tc_edt.sh \ 69 test_tc_edt.sh \ 143 test_xdping.sh \ 70 test_xdping.sh \ 144 test_bpftool_build.sh \ 71 test_bpftool_build.sh \ 145 test_bpftool.sh \ 72 test_bpftool.sh \ 146 test_bpftool_metadata.sh \ 73 test_bpftool_metadata.sh \ 147 test_doc_build.sh \ 74 test_doc_build.sh \ 148 test_xsk.sh \ !! 75 test_xsk.sh 149 test_xdp_features.sh << 150 76 151 TEST_PROGS_EXTENDED := with_addr.sh \ 77 TEST_PROGS_EXTENDED := with_addr.sh \ 152 with_tunnels.sh ima_setup.sh verify_si !! 78 with_tunnels.sh ima_setup.sh \ 153 test_xdp_vlan.sh test_bpftool.py 79 test_xdp_vlan.sh test_bpftool.py 154 80 155 # Compile but not part of 'make run_tests' 81 # Compile but not part of 'make run_tests' 156 TEST_GEN_PROGS_EXTENDED = \ !! 82 TEST_GEN_PROGS_EXTENDED = test_sock_addr test_skb_cgroup_id_user \ 157 flow_dissector_load test_flow_dissecto 83 flow_dissector_load test_flow_dissector test_tcp_check_syncookie_user \ 158 test_lirc_mode2_user xdping test_cpp r 84 test_lirc_mode2_user xdping test_cpp runqslower bench bpf_testmod.ko \ 159 xskxceiver xdp_redirect_multi xdp_synp !! 85 xdpxceiver xdp_redirect_multi 160 xdp_features bpf_test_no_cfi.ko bpf_te << 161 bpf_test_modorder_y.ko << 162 86 163 TEST_GEN_FILES += liburandom_read.so urandom_r !! 87 TEST_CUSTOM_PROGS = $(OUTPUT)/urandom_read 164 88 165 ifneq ($(V),1) !! 89 # Emit succinct information message describing current building step >> 90 # $1 - generic step name (e.g., CC, LINK, etc); >> 91 # $2 - optional "flavor" specifier; if provided, will be emitted as [flavor]; >> 92 # $3 - target (assumed to be file); only file name will be emitted; >> 93 # $4 - optional extra arg, emitted as-is, if provided. >> 94 ifeq ($(V),1) >> 95 Q = >> 96 msg = >> 97 else >> 98 Q = @ >> 99 msg = @printf ' %-8s%s %s%s\n' "$(1)" "$(if $(2), [$(2)])" "$(notdir $(3))" "$(if $(4), $(4))"; >> 100 MAKEFLAGS += --no-print-directory 166 submake_extras := feature_display=0 101 submake_extras := feature_display=0 167 endif 102 endif 168 103 169 # override lib.mk's default rules 104 # override lib.mk's default rules 170 OVERRIDE_TARGETS := 1 105 OVERRIDE_TARGETS := 1 171 override define CLEAN 106 override define CLEAN 172 $(call msg,CLEAN) 107 $(call msg,CLEAN) 173 $(Q)$(RM) -r $(TEST_GEN_PROGS) 108 $(Q)$(RM) -r $(TEST_GEN_PROGS) 174 $(Q)$(RM) -r $(TEST_GEN_PROGS_EXTENDED 109 $(Q)$(RM) -r $(TEST_GEN_PROGS_EXTENDED) 175 $(Q)$(RM) -r $(TEST_GEN_FILES) 110 $(Q)$(RM) -r $(TEST_GEN_FILES) 176 $(Q)$(RM) -r $(EXTRA_CLEAN) 111 $(Q)$(RM) -r $(EXTRA_CLEAN) 177 $(Q)$(MAKE) -C bpf_testmod clean 112 $(Q)$(MAKE) -C bpf_testmod clean 178 $(Q)$(MAKE) docs-clean 113 $(Q)$(MAKE) docs-clean 179 endef 114 endef 180 115 181 include ../lib.mk 116 include ../lib.mk 182 117 183 NON_CHECK_FEAT_TARGETS := clean docs-clean << 184 CHECK_FEAT := $(filter-out $(NON_CHECK_FEAT_TA << 185 ifneq ($(CHECK_FEAT),) << 186 FEATURE_USER := .selftests << 187 FEATURE_TESTS := llvm << 188 FEATURE_DISPLAY := $(FEATURE_TESTS) << 189 << 190 # Makefile.feature expects OUTPUT to end with << 191 ifeq ($(shell expr $(MAKE_VERSION) \>= 4.4), 1 << 192 $(let OUTPUT,$(OUTPUT)/,\ << 193 $(eval include ../../../build/Makefile << 194 else << 195 OUTPUT := $(OUTPUT)/ << 196 $(eval include ../../../build/Makefile.feature << 197 OUTPUT := $(patsubst %/,%,$(OUTPUT)) << 198 endif << 199 endif << 200 << 201 ifeq ($(feature-llvm),1) << 202 LLVM_CFLAGS += -DHAVE_LLVM_SUPPORT << 203 LLVM_CONFIG_LIB_COMPONENTS := mcdisassembler << 204 # both llvm-config and lib.mk add -D_GNU_SOU << 205 LLVM_CFLAGS += $(filter-out -D_GNU_SOURCE,$ << 206 LLVM_LDLIBS += $(shell $(LLVM_CONFIG) --lin << 207 LLVM_LDLIBS += $(shell $(LLVM_CONFIG) --lin << 208 LLVM_LDLIBS += -lstdc++ << 209 LLVM_LDFLAGS += $(shell $(LLVM_CONFIG) --ldf << 210 endif << 211 << 212 SCRATCH_DIR := $(OUTPUT)/tools 118 SCRATCH_DIR := $(OUTPUT)/tools 213 BUILD_DIR := $(SCRATCH_DIR)/build 119 BUILD_DIR := $(SCRATCH_DIR)/build 214 INCLUDE_DIR := $(SCRATCH_DIR)/include 120 INCLUDE_DIR := $(SCRATCH_DIR)/include 215 BPFOBJ := $(BUILD_DIR)/libbpf/libbpf.a 121 BPFOBJ := $(BUILD_DIR)/libbpf/libbpf.a 216 ifneq ($(CROSS_COMPILE),) 122 ifneq ($(CROSS_COMPILE),) 217 HOST_BUILD_DIR := $(BUILD_DIR)/host 123 HOST_BUILD_DIR := $(BUILD_DIR)/host 218 HOST_SCRATCH_DIR := $(OUTPUT)/host-tool 124 HOST_SCRATCH_DIR := $(OUTPUT)/host-tools 219 HOST_INCLUDE_DIR := $(HOST_SCRATCH_DIR) 125 HOST_INCLUDE_DIR := $(HOST_SCRATCH_DIR)/include 220 else 126 else 221 HOST_BUILD_DIR := $(BUILD_DIR) 127 HOST_BUILD_DIR := $(BUILD_DIR) 222 HOST_SCRATCH_DIR := $(SCRATCH_DIR) 128 HOST_SCRATCH_DIR := $(SCRATCH_DIR) 223 HOST_INCLUDE_DIR := $(INCLUDE_DIR) 129 HOST_INCLUDE_DIR := $(INCLUDE_DIR) 224 endif 130 endif 225 HOST_BPFOBJ := $(HOST_BUILD_DIR)/libbpf/libbpf 131 HOST_BPFOBJ := $(HOST_BUILD_DIR)/libbpf/libbpf.a 226 RESOLVE_BTFIDS := $(HOST_BUILD_DIR)/resolve_bt 132 RESOLVE_BTFIDS := $(HOST_BUILD_DIR)/resolve_btfids/resolve_btfids 227 RUNQSLOWER_OUTPUT := $(BUILD_DIR)/runqslower/ 133 RUNQSLOWER_OUTPUT := $(BUILD_DIR)/runqslower/ 228 134 229 VMLINUX_BTF_PATHS ?= $(if $(O),$(O)/vmlinux) 135 VMLINUX_BTF_PATHS ?= $(if $(O),$(O)/vmlinux) \ 230 $(if $(KBUILD_OUTPUT),$(K 136 $(if $(KBUILD_OUTPUT),$(KBUILD_OUTPUT)/vmlinux) \ 231 ../../../../vmlinux 137 ../../../../vmlinux \ 232 /sys/kernel/btf/vmlinux 138 /sys/kernel/btf/vmlinux \ 233 /boot/vmlinux-$(shell una 139 /boot/vmlinux-$(shell uname -r) 234 VMLINUX_BTF ?= $(abspath $(firstword $(wildcar 140 VMLINUX_BTF ?= $(abspath $(firstword $(wildcard $(VMLINUX_BTF_PATHS)))) 235 ifeq ($(VMLINUX_BTF),) 141 ifeq ($(VMLINUX_BTF),) 236 $(error Cannot find a vmlinux for VMLINUX_BTF 142 $(error Cannot find a vmlinux for VMLINUX_BTF at any of "$(VMLINUX_BTF_PATHS)") 237 endif 143 endif 238 144 239 # Define simple and short `make test_progs`, ` 145 # Define simple and short `make test_progs`, `make test_sysctl`, etc targets 240 # to build individual tests. 146 # to build individual tests. 241 # NOTE: Semicolon at the end is critical to ov 147 # NOTE: Semicolon at the end is critical to override lib.mk's default static 242 # rule for binaries. 148 # rule for binaries. 243 $(notdir $(TEST_GEN_PROGS) 149 $(notdir $(TEST_GEN_PROGS) \ 244 $(TEST_GEN_PROGS_EXTENDED)): %: $(OUT !! 150 $(TEST_PROGS) \ >> 151 $(TEST_PROGS_EXTENDED) \ >> 152 $(TEST_GEN_PROGS_EXTENDED) \ >> 153 $(TEST_CUSTOM_PROGS)): %: $(OUTPUT)/% ; 245 154 246 # sort removes libbpf duplicates when not cros 155 # sort removes libbpf duplicates when not cross-building 247 MAKE_DIRS := $(sort $(BUILD_DIR)/libbpf $(HOST !! 156 MAKE_DIRS := $(sort $(BUILD_DIR)/libbpf $(HOST_BUILD_DIR)/libbpf \ 248 $(BUILD_DIR)/bpftool $(HOST_BUI !! 157 $(HOST_BUILD_DIR)/bpftool $(HOST_BUILD_DIR)/resolve_btfids \ 249 $(HOST_BUILD_DIR)/resolve_btfid << 250 $(RUNQSLOWER_OUTPUT) $(INCLUDE_ 158 $(RUNQSLOWER_OUTPUT) $(INCLUDE_DIR)) 251 $(MAKE_DIRS): 159 $(MAKE_DIRS): 252 $(call msg,MKDIR,,$@) 160 $(call msg,MKDIR,,$@) 253 $(Q)mkdir -p $@ 161 $(Q)mkdir -p $@ 254 162 255 $(OUTPUT)/%.o: %.c 163 $(OUTPUT)/%.o: %.c 256 $(call msg,CC,,$@) 164 $(call msg,CC,,$@) 257 $(Q)$(CC) $(CFLAGS) -c $(filter %.c,$^ 165 $(Q)$(CC) $(CFLAGS) -c $(filter %.c,$^) $(LDLIBS) -o $@ 258 166 259 $(OUTPUT)/%:%.c 167 $(OUTPUT)/%:%.c 260 $(call msg,BINARY,,$@) 168 $(call msg,BINARY,,$@) 261 $(Q)$(LINK.c) $^ $(LDLIBS) -o $@ 169 $(Q)$(LINK.c) $^ $(LDLIBS) -o $@ 262 170 263 # LLVM's ld.lld doesn't support all the archit 171 # LLVM's ld.lld doesn't support all the architectures, so use it only on x86 264 ifeq ($(SRCARCH),$(filter $(SRCARCH),x86 riscv !! 172 ifeq ($(SRCARCH),x86) 265 LLD := lld 173 LLD := lld 266 else 174 else 267 LLD := $(shell command -v $(LD)) !! 175 LLD := ld 268 endif 176 endif 269 177 270 # Filter out -static for liburandom_read.so an 178 # Filter out -static for liburandom_read.so and its dependent targets so that static builds 271 # do not fail. Static builds leave urandom_rea 179 # do not fail. Static builds leave urandom_read relying on system-wide shared libraries. 272 $(OUTPUT)/liburandom_read.so: urandom_read_lib !! 180 $(OUTPUT)/liburandom_read.so: urandom_read_lib1.c urandom_read_lib2.c 273 $(call msg,LIB,,$@) 181 $(call msg,LIB,,$@) 274 $(Q)$(CLANG) $(CLANG_TARGET_ARCH) \ !! 182 $(Q)$(CLANG) $(filter-out -static,$(CFLAGS) $(LDFLAGS)) $^ $(LDLIBS) \ 275 $(filter-out -static,$(CF !! 183 -fuse-ld=$(LLD) -Wl,-znoseparate-code -fPIC -shared -o $@ 276 $(filter %.c,$^) $(filter << 277 -fuse-ld=$(LLD) -Wl,-znos << 278 -Wl,--version-script=libu << 279 -fPIC -shared -o $@ << 280 184 281 $(OUTPUT)/urandom_read: urandom_read.c urandom 185 $(OUTPUT)/urandom_read: urandom_read.c urandom_read_aux.c $(OUTPUT)/liburandom_read.so 282 $(call msg,BINARY,,$@) 186 $(call msg,BINARY,,$@) 283 $(Q)$(CLANG) $(CLANG_TARGET_ARCH) \ !! 187 $(Q)$(CLANG) $(filter-out -static,$(CFLAGS) $(LDFLAGS)) $(filter %.c,$^) \ 284 $(filter-out -static,$(CF !! 188 liburandom_read.so $(LDLIBS) \ 285 -lurandom_read $(filter-o !! 189 -fuse-ld=$(LLD) -Wl,-znoseparate-code \ 286 -fuse-ld=$(LLD) -Wl,-znos !! 190 -Wl,-rpath=. -Wl,--build-id=sha1 -o $@ 287 -Wl,-rpath=. -o $@ << 288 << 289 $(OUTPUT)/sign-file: ../../../../scripts/sign- << 290 $(call msg,SIGN-FILE,,$@) << 291 $(Q)$(CC) $(shell $(PKG_CONFIG) --cfla << 292 $< -o $@ \ << 293 $(shell $(PKG_CONFIG) --libs << 294 191 295 $(OUTPUT)/bpf_testmod.ko: $(VMLINUX_BTF) $(RES !! 192 $(OUTPUT)/bpf_testmod.ko: $(VMLINUX_BTF) $(wildcard bpf_testmod/Makefile bpf_testmod/*.[ch]) 296 $(call msg,MOD,,$@) 193 $(call msg,MOD,,$@) 297 $(Q)$(RM) bpf_testmod/bpf_testmod.ko # 194 $(Q)$(RM) bpf_testmod/bpf_testmod.ko # force re-compilation 298 $(Q)$(MAKE) $(submake_extras) RESOLVE_ !! 195 $(Q)$(MAKE) $(submake_extras) -C bpf_testmod 299 $(Q)cp bpf_testmod/bpf_testmod.ko $@ 196 $(Q)cp bpf_testmod/bpf_testmod.ko $@ 300 197 301 $(OUTPUT)/bpf_test_no_cfi.ko: $(VMLINUX_BTF) $ << 302 $(call msg,MOD,,$@) << 303 $(Q)$(RM) bpf_test_no_cfi/bpf_test_no_ << 304 $(Q)$(MAKE) $(submake_extras) RESOLVE_ << 305 $(Q)cp bpf_test_no_cfi/bpf_test_no_cfi << 306 << 307 $(OUTPUT)/bpf_test_modorder_x.ko: $(VMLINUX_BT << 308 $(call msg,MOD,,$@) << 309 $(Q)$(RM) bpf_test_modorder_x/bpf_test << 310 $(Q)$(MAKE) $(submake_extras) RESOLVE_ << 311 $(Q)cp bpf_test_modorder_x/bpf_test_mo << 312 << 313 $(OUTPUT)/bpf_test_modorder_y.ko: $(VMLINUX_BT << 314 $(call msg,MOD,,$@) << 315 $(Q)$(RM) bpf_test_modorder_y/bpf_test << 316 $(Q)$(MAKE) $(submake_extras) RESOLVE_ << 317 $(Q)cp bpf_test_modorder_y/bpf_test_mo << 318 << 319 << 320 DEFAULT_BPFTOOL := $(HOST_SCRATCH_DIR)/sbin/bp 198 DEFAULT_BPFTOOL := $(HOST_SCRATCH_DIR)/sbin/bpftool 321 ifneq ($(CROSS_COMPILE),) << 322 CROSS_BPFTOOL := $(SCRATCH_DIR)/sbin/bpftool << 323 TRUNNER_BPFTOOL := $(CROSS_BPFTOOL) << 324 USE_BOOTSTRAP := "" << 325 else << 326 TRUNNER_BPFTOOL := $(DEFAULT_BPFTOOL) << 327 USE_BOOTSTRAP := "bootstrap/" << 328 endif << 329 199 330 $(OUTPUT)/runqslower: $(BPFOBJ) | $(DEFAULT_BP 200 $(OUTPUT)/runqslower: $(BPFOBJ) | $(DEFAULT_BPFTOOL) $(RUNQSLOWER_OUTPUT) 331 $(Q)$(MAKE) $(submake_extras) -C $(TOO 201 $(Q)$(MAKE) $(submake_extras) -C $(TOOLSDIR)/bpf/runqslower \ 332 OUTPUT=$(RUNQSLOWER_OUTPUT 202 OUTPUT=$(RUNQSLOWER_OUTPUT) VMLINUX_BTF=$(VMLINUX_BTF) \ 333 BPFTOOL_OUTPUT=$(HOST_BUIL 203 BPFTOOL_OUTPUT=$(HOST_BUILD_DIR)/bpftool/ \ 334 BPFOBJ_OUTPUT=$(BUILD_DIR) !! 204 BPFOBJ_OUTPUT=$(BUILD_DIR)/libbpf \ 335 BPFOBJ=$(BPFOBJ) BPF_INCLU !! 205 BPFOBJ=$(BPFOBJ) BPF_INCLUDE=$(INCLUDE_DIR) && \ 336 EXTRA_CFLAGS='-g $(OPT_FLA << 337 EXTRA_LDFLAGS='$(SAN_LDFLA << 338 cp $(RUNQSLOWER_OUTPUT)run 206 cp $(RUNQSLOWER_OUTPUT)runqslower $@ 339 207 340 TEST_GEN_PROGS_EXTENDED += $(TRUNNER_BPFTOOL) !! 208 TEST_GEN_PROGS_EXTENDED += $(DEFAULT_BPFTOOL) 341 209 342 $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED): 210 $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED): $(BPFOBJ) 343 211 344 TESTING_HELPERS := $(OUTPUT)/testing_helpers.o << 345 CGROUP_HELPERS := $(OUTPUT)/cgroup_helpers.o 212 CGROUP_HELPERS := $(OUTPUT)/cgroup_helpers.o 346 UNPRIV_HELPERS := $(OUTPUT)/unpriv_helpers.o !! 213 TESTING_HELPERS := $(OUTPUT)/testing_helpers.o 347 TRACE_HELPERS := $(OUTPUT)/trace_helpers.o 214 TRACE_HELPERS := $(OUTPUT)/trace_helpers.o 348 JSON_WRITER := $(OUTPUT)/json_writ << 349 CAP_HELPERS := $(OUTPUT)/cap_helpers.o 215 CAP_HELPERS := $(OUTPUT)/cap_helpers.o 350 NETWORK_HELPERS := $(OUTPUT)/network_helpers.o << 351 216 >> 217 $(OUTPUT)/test_dev_cgroup: $(CGROUP_HELPERS) $(TESTING_HELPERS) >> 218 $(OUTPUT)/test_skb_cgroup_id_user: $(CGROUP_HELPERS) $(TESTING_HELPERS) 352 $(OUTPUT)/test_sock: $(CGROUP_HELPERS) $(TESTI 219 $(OUTPUT)/test_sock: $(CGROUP_HELPERS) $(TESTING_HELPERS) >> 220 $(OUTPUT)/test_sock_addr: $(CGROUP_HELPERS) $(TESTING_HELPERS) 353 $(OUTPUT)/test_sockmap: $(CGROUP_HELPERS) $(TE 221 $(OUTPUT)/test_sockmap: $(CGROUP_HELPERS) $(TESTING_HELPERS) 354 $(OUTPUT)/test_tcpnotify_user: $(CGROUP_HELPER 222 $(OUTPUT)/test_tcpnotify_user: $(CGROUP_HELPERS) $(TESTING_HELPERS) $(TRACE_HELPERS) >> 223 $(OUTPUT)/get_cgroup_id_user: $(CGROUP_HELPERS) $(TESTING_HELPERS) >> 224 $(OUTPUT)/test_cgroup_storage: $(CGROUP_HELPERS) $(TESTING_HELPERS) 355 $(OUTPUT)/test_sock_fields: $(CGROUP_HELPERS) 225 $(OUTPUT)/test_sock_fields: $(CGROUP_HELPERS) $(TESTING_HELPERS) 356 $(OUTPUT)/test_sysctl: $(CGROUP_HELPERS) $(TES 226 $(OUTPUT)/test_sysctl: $(CGROUP_HELPERS) $(TESTING_HELPERS) 357 $(OUTPUT)/test_tag: $(TESTING_HELPERS) 227 $(OUTPUT)/test_tag: $(TESTING_HELPERS) 358 $(OUTPUT)/test_lirc_mode2_user: $(TESTING_HELP 228 $(OUTPUT)/test_lirc_mode2_user: $(TESTING_HELPERS) 359 $(OUTPUT)/xdping: $(TESTING_HELPERS) 229 $(OUTPUT)/xdping: $(TESTING_HELPERS) 360 $(OUTPUT)/flow_dissector_load: $(TESTING_HELPE 230 $(OUTPUT)/flow_dissector_load: $(TESTING_HELPERS) 361 $(OUTPUT)/test_maps: $(TESTING_HELPERS) 231 $(OUTPUT)/test_maps: $(TESTING_HELPERS) 362 $(OUTPUT)/test_verifier: $(TESTING_HELPERS) $( !! 232 $(OUTPUT)/test_verifier: $(TESTING_HELPERS) $(CAP_HELPERS) 363 $(OUTPUT)/xsk.o: $(BPFOBJ) << 364 $(OUTPUT)/test_tcp_check_syncookie_user: $(NET << 365 233 366 BPFTOOL ?= $(DEFAULT_BPFTOOL) 234 BPFTOOL ?= $(DEFAULT_BPFTOOL) 367 $(DEFAULT_BPFTOOL): $(wildcard $(BPFTOOLDIR)/* 235 $(DEFAULT_BPFTOOL): $(wildcard $(BPFTOOLDIR)/*.[ch] $(BPFTOOLDIR)/Makefile) \ 368 $(HOST_BPFOBJ) | $(HOST_BU 236 $(HOST_BPFOBJ) | $(HOST_BUILD_DIR)/bpftool 369 $(Q)$(MAKE) $(submake_extras) -C $(BP 237 $(Q)$(MAKE) $(submake_extras) -C $(BPFTOOLDIR) \ 370 ARCH= CROSS_COMPILE= CC="$ !! 238 ARCH= CROSS_COMPILE= CC=$(HOSTCC) LD=$(HOSTLD) \ 371 EXTRA_CFLAGS='-g $(OPT_FLA !! 239 EXTRA_CFLAGS='-g -O0' \ 372 OUTPUT=$(HOST_BUILD_DIR)/b 240 OUTPUT=$(HOST_BUILD_DIR)/bpftool/ \ 373 LIBBPF_OUTPUT=$(HOST_BUILD 241 LIBBPF_OUTPUT=$(HOST_BUILD_DIR)/libbpf/ \ 374 LIBBPF_DESTDIR=$(HOST_SCRA 242 LIBBPF_DESTDIR=$(HOST_SCRATCH_DIR)/ \ 375 prefix= DESTDIR=$(HOST_SCR 243 prefix= DESTDIR=$(HOST_SCRATCH_DIR)/ install-bin 376 244 377 ifneq ($(CROSS_COMPILE),) << 378 $(CROSS_BPFTOOL): $(wildcard $(BPFTOOLDIR)/*.[ << 379 $(BPFOBJ) | $(BUILD_DIR)/b << 380 $(Q)$(MAKE) $(submake_extras) -C $(BP << 381 ARCH=$(ARCH) CROSS_COMPILE << 382 EXTRA_CFLAGS='-g $(OPT_FLA << 383 OUTPUT=$(BUILD_DIR)/bpftoo << 384 LIBBPF_OUTPUT=$(BUILD_DIR) << 385 LIBBPF_DESTDIR=$(SCRATCH_D << 386 prefix= DESTDIR=$(SCRATCH_ << 387 endif << 388 << 389 all: docs 245 all: docs 390 246 391 docs: 247 docs: 392 $(Q)RST2MAN_OPTS="--exit-status=1" $(M 248 $(Q)RST2MAN_OPTS="--exit-status=1" $(MAKE) $(submake_extras) \ 393 -f Makefile.docs 249 -f Makefile.docs \ 394 prefix= OUTPUT=$(OUTPUT)/ 250 prefix= OUTPUT=$(OUTPUT)/ DESTDIR=$(OUTPUT)/ $@ 395 251 396 docs-clean: 252 docs-clean: 397 $(Q)$(MAKE) $(submake_extras) 253 $(Q)$(MAKE) $(submake_extras) \ 398 -f Makefile.docs 254 -f Makefile.docs \ 399 prefix= OUTPUT=$(OUTPUT)/ 255 prefix= OUTPUT=$(OUTPUT)/ DESTDIR=$(OUTPUT)/ $@ 400 256 401 $(BPFOBJ): $(wildcard $(BPFDIR)/*.[ch] $(BPFDI 257 $(BPFOBJ): $(wildcard $(BPFDIR)/*.[ch] $(BPFDIR)/Makefile) \ 402 $(APIDIR)/linux/bpf.h 258 $(APIDIR)/linux/bpf.h \ 403 | $(BUILD_DIR)/libbpf 259 | $(BUILD_DIR)/libbpf 404 $(Q)$(MAKE) $(submake_extras) -C $(BPF 260 $(Q)$(MAKE) $(submake_extras) -C $(BPFDIR) OUTPUT=$(BUILD_DIR)/libbpf/ \ 405 EXTRA_CFLAGS='-g $(OPT_FLA !! 261 EXTRA_CFLAGS='-g -O0' \ 406 EXTRA_LDFLAGS='$(SAN_LDFLA << 407 DESTDIR=$(SCRATCH_DIR) pre 262 DESTDIR=$(SCRATCH_DIR) prefix= all install_headers 408 263 409 ifneq ($(BPFOBJ),$(HOST_BPFOBJ)) 264 ifneq ($(BPFOBJ),$(HOST_BPFOBJ)) 410 $(HOST_BPFOBJ): $(wildcard $(BPFDIR)/*.[ch] $( 265 $(HOST_BPFOBJ): $(wildcard $(BPFDIR)/*.[ch] $(BPFDIR)/Makefile) \ 411 $(APIDIR)/linux/bpf.h 266 $(APIDIR)/linux/bpf.h \ 412 | $(HOST_BUILD_DIR)/libbpf 267 | $(HOST_BUILD_DIR)/libbpf 413 $(Q)$(MAKE) $(submake_extras) -C $(BPF 268 $(Q)$(MAKE) $(submake_extras) -C $(BPFDIR) \ 414 EXTRA_CFLAGS='-g $(OPT_FLA !! 269 EXTRA_CFLAGS='-g -O0' ARCH= CROSS_COMPILE= \ 415 OUTPUT=$(HOST_BUILD_DIR)/l !! 270 OUTPUT=$(HOST_BUILD_DIR)/libbpf/ CC=$(HOSTCC) LD=$(HOSTLD) \ 416 CC="$(HOSTCC)" LD="$(HOSTL << 417 DESTDIR=$(HOST_SCRATCH_DIR 271 DESTDIR=$(HOST_SCRATCH_DIR)/ prefix= all install_headers 418 endif 272 endif 419 273 420 # vmlinux.h is first dumped to a temprorary fi << 421 # the previous version. This helps to avoid un << 422 # $(TRUNNER_BPF_OBJS) << 423 $(INCLUDE_DIR)/vmlinux.h: $(VMLINUX_BTF) $(BPF 274 $(INCLUDE_DIR)/vmlinux.h: $(VMLINUX_BTF) $(BPFTOOL) | $(INCLUDE_DIR) 424 ifeq ($(VMLINUX_H),) 275 ifeq ($(VMLINUX_H),) 425 $(call msg,GEN,,$@) 276 $(call msg,GEN,,$@) 426 $(Q)$(BPFTOOL) btf dump file $(VMLINUX !! 277 $(Q)$(BPFTOOL) btf dump file $(VMLINUX_BTF) format c > $@ 427 $(Q)cmp -s $(INCLUDE_DIR)/.vmlinux.h.t << 428 else 278 else 429 $(call msg,CP,,$@) 279 $(call msg,CP,,$@) 430 $(Q)cp "$(VMLINUX_H)" $@ 280 $(Q)cp "$(VMLINUX_H)" $@ 431 endif 281 endif 432 282 433 $(RESOLVE_BTFIDS): $(HOST_BPFOBJ) | $(HOST_BUI 283 $(RESOLVE_BTFIDS): $(HOST_BPFOBJ) | $(HOST_BUILD_DIR)/resolve_btfids \ 434 $(TOOLSDIR)/bpf/resolve 284 $(TOOLSDIR)/bpf/resolve_btfids/main.c \ 435 $(TOOLSDIR)/lib/rbtree. 285 $(TOOLSDIR)/lib/rbtree.c \ 436 $(TOOLSDIR)/lib/zalloc. 286 $(TOOLSDIR)/lib/zalloc.c \ 437 $(TOOLSDIR)/lib/string. 287 $(TOOLSDIR)/lib/string.c \ 438 $(TOOLSDIR)/lib/ctype.c 288 $(TOOLSDIR)/lib/ctype.c \ 439 $(TOOLSDIR)/lib/str_err 289 $(TOOLSDIR)/lib/str_error_r.c 440 $(Q)$(MAKE) $(submake_extras) -C $(TOO 290 $(Q)$(MAKE) $(submake_extras) -C $(TOOLSDIR)/bpf/resolve_btfids \ 441 CC="$(HOSTCC)" LD="$(HOSTLD)" !! 291 CC=$(HOSTCC) LD=$(HOSTLD) AR=$(HOSTAR) \ 442 LIBBPF_INCLUDE=$(HOST_INCLUDE_ 292 LIBBPF_INCLUDE=$(HOST_INCLUDE_DIR) \ 443 OUTPUT=$(HOST_BUILD_DIR)/resol 293 OUTPUT=$(HOST_BUILD_DIR)/resolve_btfids/ BPFOBJ=$(HOST_BPFOBJ) 444 294 445 # Get Clang's default includes on this system, 295 # Get Clang's default includes on this system, as opposed to those seen by 446 # '--target=bpf'. This fixes "missing" files o !! 296 # '-target bpf'. This fixes "missing" files on some architectures/distros, 447 # such as asm/byteorder.h, asm/socket.h, asm/s 297 # such as asm/byteorder.h, asm/socket.h, asm/sockios.h, sys/cdefs.h etc. 448 # 298 # 449 # Use '-idirafter': Don't interfere with inclu 299 # Use '-idirafter': Don't interfere with include mechanics except where the 450 # build would have failed anyways. 300 # build would have failed anyways. 451 define get_sys_includes 301 define get_sys_includes 452 $(shell $(1) $(2) -v -E - </dev/null 2>&1 \ !! 302 $(shell $(1) -v -E - </dev/null 2>&1 \ 453 | sed -n '/<...> search starts here:/, 303 | sed -n '/<...> search starts here:/,/End of search list./{ s| \(/.*\)|-idirafter \1|p }') \ 454 $(shell $(1) $(2) -dM -E - </dev/null | grep ' !! 304 $(shell $(1) -dM -E - </dev/null | grep '__riscv_xlen ' | awk '{printf("-D__riscv_xlen=%d -D__BITS_PER_LONG=%d", $$3, $$3)}') 455 $(shell $(1) $(2) -dM -E - </dev/null | grep ' << 456 $(shell $(1) $(2) -dM -E - </dev/null | grep - << 457 endef 305 endef 458 306 459 # Determine target endianness. 307 # Determine target endianness. 460 IS_LITTLE_ENDIAN = $(shell $(CC) -dM -E - </de 308 IS_LITTLE_ENDIAN = $(shell $(CC) -dM -E - </dev/null | \ 461 grep 'define __BYTE_OR 309 grep 'define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__') 462 MENDIAN=$(if $(IS_LITTLE_ENDIAN),-mlittle-endi 310 MENDIAN=$(if $(IS_LITTLE_ENDIAN),-mlittle-endian,-mbig-endian) 463 311 464 ifneq ($(CROSS_COMPILE),) !! 312 CLANG_SYS_INCLUDES = $(call get_sys_includes,$(CLANG)) 465 CLANG_TARGET_ARCH = --target=$(notdir $(CROSS_ !! 313 BPF_CFLAGS = -g -Werror -D__TARGET_ARCH_$(SRCARCH) $(MENDIAN) \ 466 endif << 467 << 468 CLANG_SYS_INCLUDES = $(call get_sys_includes,$ << 469 BPF_CFLAGS = -g -Wall -Werror -D__TARGET_ARCH_ << 470 -I$(INCLUDE_DIR) -I$(CURDIR) -I$( 314 -I$(INCLUDE_DIR) -I$(CURDIR) -I$(APIDIR) \ 471 -I$(abspath $(OUTPUT)/../usr/incl !! 315 -I$(abspath $(OUTPUT)/../usr/include) 472 -Wno-compare-distinct-pointer-typ << 473 # TODO: enable me -Wsign-compare << 474 316 475 CLANG_CFLAGS = $(CLANG_SYS_INCLUDES) !! 317 CLANG_CFLAGS = $(CLANG_SYS_INCLUDES) \ >> 318 -Wno-compare-distinct-pointer-types 476 319 477 $(OUTPUT)/test_l4lb_noinline.o: BPF_CFLAGS += 320 $(OUTPUT)/test_l4lb_noinline.o: BPF_CFLAGS += -fno-inline 478 $(OUTPUT)/test_xdp_noinline.o: BPF_CFLAGS += - 321 $(OUTPUT)/test_xdp_noinline.o: BPF_CFLAGS += -fno-inline 479 322 480 $(OUTPUT)/flow_dissector_load.o: flow_dissecto 323 $(OUTPUT)/flow_dissector_load.o: flow_dissector_load.h 481 $(OUTPUT)/cgroup_getset_retval_hooks.o: cgroup << 482 324 483 # Build BPF object using Clang 325 # Build BPF object using Clang 484 # $1 - input .c file 326 # $1 - input .c file 485 # $2 - output .o file 327 # $2 - output .o file 486 # $3 - CFLAGS 328 # $3 - CFLAGS 487 # $4 - binary name << 488 define CLANG_BPF_BUILD_RULE 329 define CLANG_BPF_BUILD_RULE 489 $(call msg,CLNG-BPF,$4,$2) !! 330 $(call msg,CLNG-BPF,$(TRUNNER_BINARY),$2) 490 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 !! 331 $(Q)$(CLANG) $3 -O2 -target bpf -c $1 -mcpu=v3 -o $2 491 endef 332 endef 492 # Similar to CLANG_BPF_BUILD_RULE, but with di 333 # Similar to CLANG_BPF_BUILD_RULE, but with disabled alu32 493 define CLANG_NOALU32_BPF_BUILD_RULE 334 define CLANG_NOALU32_BPF_BUILD_RULE 494 $(call msg,CLNG-BPF,$4,$2) !! 335 $(call msg,CLNG-BPF,$(TRUNNER_BINARY),$2) 495 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 !! 336 $(Q)$(CLANG) $3 -O2 -target bpf -c $1 -mcpu=v2 -o $2 496 endef << 497 # Similar to CLANG_BPF_BUILD_RULE, but with cp << 498 define CLANG_CPUV4_BPF_BUILD_RULE << 499 $(call msg,CLNG-BPF,$4,$2) << 500 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 << 501 endef 337 endef 502 # Build BPF object using GCC 338 # Build BPF object using GCC 503 define GCC_BPF_BUILD_RULE 339 define GCC_BPF_BUILD_RULE 504 $(call msg,GCC-BPF,$4,$2) !! 340 $(call msg,GCC-BPF,$(TRUNNER_BINARY),$2) 505 $(Q)$(BPF_GCC) $3 -DBPF_NO_PRESERVE_AC !! 341 $(Q)$(BPF_GCC) $3 -O2 -c $1 -o $2 506 endef 342 endef 507 343 508 SKEL_BLACKLIST := btf__% test_pinning_invalid. 344 SKEL_BLACKLIST := btf__% test_pinning_invalid.c test_sk_assign.c 509 345 510 LINKED_SKELS := test_static_linked.skel.h link 346 LINKED_SKELS := test_static_linked.skel.h linked_funcs.skel.h \ 511 linked_vars.skel.h linked_maps 347 linked_vars.skel.h linked_maps.skel.h \ 512 test_subskeleton.skel.h test_s 348 test_subskeleton.skel.h test_subskeleton_lib.skel.h \ 513 test_usdt.skel.h 349 test_usdt.skel.h 514 350 515 LSKELS := fentry_test.c fexit_test.c fexit_sle !! 351 LSKELS := kfunc_call_test.c fentry_test.c fexit_test.c fexit_sleep.c \ 516 trace_printk.c trace_vprintk.c map_ptr !! 352 test_ringbuf.c atomics.c trace_printk.c trace_vprintk.c \ 517 core_kern.c core_kern_overflow.c test_ !! 353 map_ptr_kern.c core_kern.c core_kern_overflow.c 518 test_ringbuf_n.c test_ringbuf_map_key. << 519 << 520 # Generate both light skeleton and libbpf skel 354 # Generate both light skeleton and libbpf skeleton for these 521 LSKELS_EXTRA := test_ksyms_module.c test_ksyms !! 355 LSKELS_EXTRA := test_ksyms_module.c test_ksyms_weak.c kfunc_call_test_subprog.c 522 kfunc_call_test_subprog.c << 523 SKEL_BLACKLIST += $$(LSKELS) 356 SKEL_BLACKLIST += $$(LSKELS) 524 357 525 test_static_linked.skel.h-deps := test_static_ !! 358 test_static_linked.skel.h-deps := test_static_linked1.o test_static_linked2.o 526 linked_funcs.skel.h-deps := linked_funcs1.bpf. !! 359 linked_funcs.skel.h-deps := linked_funcs1.o linked_funcs2.o 527 linked_vars.skel.h-deps := linked_vars1.bpf.o !! 360 linked_vars.skel.h-deps := linked_vars1.o linked_vars2.o 528 linked_maps.skel.h-deps := linked_maps1.bpf.o !! 361 linked_maps.skel.h-deps := linked_maps1.o linked_maps2.o 529 # In the subskeleton case, we want the test_su 362 # In the subskeleton case, we want the test_subskeleton_lib.subskel.h file 530 # but that's created as a side-effect of the s 363 # but that's created as a side-effect of the skel.h generation. 531 test_subskeleton.skel.h-deps := test_subskelet !! 364 test_subskeleton.skel.h-deps := test_subskeleton_lib2.o test_subskeleton_lib.o test_subskeleton.o 532 test_subskeleton_lib.skel.h-deps := test_subsk !! 365 test_subskeleton_lib.skel.h-deps := test_subskeleton_lib2.o test_subskeleton_lib.o 533 test_usdt.skel.h-deps := test_usdt.bpf.o test_ !! 366 test_usdt.skel.h-deps := test_usdt.o test_usdt_multispec.o 534 xsk_xdp_progs.skel.h-deps := xsk_xdp_progs.bpf !! 367 535 xdp_hw_metadata.skel.h-deps := xdp_hw_metadata !! 368 LINKED_BPF_SRCS := $(patsubst %.o,%.c,$(foreach skel,$(LINKED_SKELS),$($(skel)-deps))) 536 xdp_features.skel.h-deps := xdp_features.bpf.o << 537 << 538 LINKED_BPF_OBJS := $(foreach skel,$(LINKED_SKE << 539 LINKED_BPF_SRCS := $(patsubst %.bpf.o,%.c,$(LI << 540 << 541 HEADERS_FOR_BPF_OBJS := $(wildcard $(BPFDIR)/* << 542 $(addprefix $(BPFDIR)/ << 543 << 544 << 545 << 546 369 547 # Set up extra TRUNNER_XXX "temporary" variabl 370 # Set up extra TRUNNER_XXX "temporary" variables in the environment (relies on 548 # $eval()) and pass control to DEFINE_TEST_RUN 371 # $eval()) and pass control to DEFINE_TEST_RUNNER_RULES. 549 # Parameters: 372 # Parameters: 550 # $1 - test runner base binary name (e.g., tes 373 # $1 - test runner base binary name (e.g., test_progs) 551 # $2 - test runner extra "flavor" (e.g., no_al !! 374 # $2 - test runner extra "flavor" (e.g., no_alu32, gcc-bpf, etc) 552 define DEFINE_TEST_RUNNER 375 define DEFINE_TEST_RUNNER 553 376 554 TRUNNER_OUTPUT := $(OUTPUT)$(if $2,/)$2 377 TRUNNER_OUTPUT := $(OUTPUT)$(if $2,/)$2 555 TRUNNER_BINARY := $1$(if $2,-)$2 378 TRUNNER_BINARY := $1$(if $2,-)$2 556 TRUNNER_TEST_OBJS := $$(patsubst %.c,$$(TRUNNE 379 TRUNNER_TEST_OBJS := $$(patsubst %.c,$$(TRUNNER_OUTPUT)/%.test.o, \ 557 $$(notdir $$( 380 $$(notdir $$(wildcard $(TRUNNER_TESTS_DIR)/*.c))) 558 TRUNNER_EXTRA_OBJS := $$(patsubst %.c,$$(TRUNN 381 TRUNNER_EXTRA_OBJS := $$(patsubst %.c,$$(TRUNNER_OUTPUT)/%.o, \ 559 $$(filter %.c 382 $$(filter %.c,$(TRUNNER_EXTRA_SOURCES))) 560 TRUNNER_EXTRA_HDRS := $$(filter %.h,$(TRUNNER_ 383 TRUNNER_EXTRA_HDRS := $$(filter %.h,$(TRUNNER_EXTRA_SOURCES)) 561 TRUNNER_TESTS_HDR := $(TRUNNER_TESTS_DIR)/test 384 TRUNNER_TESTS_HDR := $(TRUNNER_TESTS_DIR)/tests.h 562 TRUNNER_BPF_SRCS := $$(notdir $$(wildcard $(TR 385 TRUNNER_BPF_SRCS := $$(notdir $$(wildcard $(TRUNNER_BPF_PROGS_DIR)/*.c)) 563 TRUNNER_BPF_OBJS := $$(patsubst %.c,$$(TRUNNER !! 386 TRUNNER_BPF_OBJS := $$(patsubst %.c,$$(TRUNNER_OUTPUT)/%.o, $$(TRUNNER_BPF_SRCS)) 564 TRUNNER_BPF_SKELS := $$(patsubst %.c,$$(TRUNNE 387 TRUNNER_BPF_SKELS := $$(patsubst %.c,$$(TRUNNER_OUTPUT)/%.skel.h, \ 565 $$(filter-out 388 $$(filter-out $(SKEL_BLACKLIST) $(LINKED_BPF_SRCS),\ 566 389 $$(TRUNNER_BPF_SRCS))) 567 TRUNNER_BPF_LSKELS := $$(patsubst %.c,$$(TRUNN 390 TRUNNER_BPF_LSKELS := $$(patsubst %.c,$$(TRUNNER_OUTPUT)/%.lskel.h, $$(LSKELS) $$(LSKELS_EXTRA)) 568 TRUNNER_BPF_SKELS_LINKED := $$(addprefix $$(TR 391 TRUNNER_BPF_SKELS_LINKED := $$(addprefix $$(TRUNNER_OUTPUT)/,$(LINKED_SKELS)) 569 TEST_GEN_FILES += $$(TRUNNER_BPF_OBJS) 392 TEST_GEN_FILES += $$(TRUNNER_BPF_OBJS) 570 393 571 # Evaluate rules now with extra TRUNNER_XXX va 394 # Evaluate rules now with extra TRUNNER_XXX variables above already defined 572 $$(eval $$(call DEFINE_TEST_RUNNER_RULES,$1,$2 395 $$(eval $$(call DEFINE_TEST_RUNNER_RULES,$1,$2)) 573 396 574 endef 397 endef 575 398 576 # Using TRUNNER_XXX variables, provided by cal 399 # Using TRUNNER_XXX variables, provided by callers of DEFINE_TEST_RUNNER and 577 # set up by DEFINE_TEST_RUNNER itself, create 400 # set up by DEFINE_TEST_RUNNER itself, create test runner build rules with: 578 # $1 - test runner base binary name (e.g., tes 401 # $1 - test runner base binary name (e.g., test_progs) 579 # $2 - test runner extra "flavor" (e.g., no_al !! 402 # $2 - test runner extra "flavor" (e.g., no_alu32, gcc-bpf, etc) 580 define DEFINE_TEST_RUNNER_RULES 403 define DEFINE_TEST_RUNNER_RULES 581 404 582 ifeq ($($(TRUNNER_OUTPUT)-dir),) 405 ifeq ($($(TRUNNER_OUTPUT)-dir),) 583 $(TRUNNER_OUTPUT)-dir := y 406 $(TRUNNER_OUTPUT)-dir := y 584 $(TRUNNER_OUTPUT): 407 $(TRUNNER_OUTPUT): 585 $$(call msg,MKDIR,,$$@) 408 $$(call msg,MKDIR,,$$@) 586 $(Q)mkdir -p $$@ 409 $(Q)mkdir -p $$@ 587 endif 410 endif 588 411 589 # ensure we set up BPF objects generation rule 412 # ensure we set up BPF objects generation rule just once for a given 590 # input/output directory combination 413 # input/output directory combination 591 ifeq ($($(TRUNNER_BPF_PROGS_DIR)$(if $2,-)$2-b 414 ifeq ($($(TRUNNER_BPF_PROGS_DIR)$(if $2,-)$2-bpfobjs),) 592 $(TRUNNER_BPF_PROGS_DIR)$(if $2,-)$2-bpfobjs : 415 $(TRUNNER_BPF_PROGS_DIR)$(if $2,-)$2-bpfobjs := y 593 $(TRUNNER_BPF_OBJS): $(TRUNNER_OUTPUT)/%.bpf.o !! 416 $(TRUNNER_BPF_OBJS): $(TRUNNER_OUTPUT)/%.o: \ 594 $(TRUNNER_BPF_PROGS_DIR)/ 417 $(TRUNNER_BPF_PROGS_DIR)/%.c \ 595 $(TRUNNER_BPF_PROGS_DIR)/ 418 $(TRUNNER_BPF_PROGS_DIR)/*.h \ 596 $$(INCLUDE_DIR)/vmlinux.h 419 $$(INCLUDE_DIR)/vmlinux.h \ 597 $(HEADERS_FOR_BPF_OBJS) !! 420 $(wildcard $(BPFDIR)/bpf_*.h) \ >> 421 $(wildcard $(BPFDIR)/*.bpf.h) \ 598 | $(TRUNNER_OUTPUT) $$(BP 422 | $(TRUNNER_OUTPUT) $$(BPFOBJ) 599 $$(call $(TRUNNER_BPF_BUILD_RULE),$$<, 423 $$(call $(TRUNNER_BPF_BUILD_RULE),$$<,$$@, \ 600 $(TR !! 424 $(TRUNNER_BPF_CFLAGS)) 601 $$($ << 602 $$($ << 603 425 604 $(TRUNNER_BPF_SKELS): %.skel.h: %.bpf.o $(BPFT !! 426 $(TRUNNER_BPF_SKELS): %.skel.h: %.o $(BPFTOOL) | $(TRUNNER_OUTPUT) 605 $$(call msg,GEN-SKEL,$(TRUNNER_BINARY) 427 $$(call msg,GEN-SKEL,$(TRUNNER_BINARY),$$@) 606 $(Q)$$(BPFTOOL) gen object $$(<:.o=.li 428 $(Q)$$(BPFTOOL) gen object $$(<:.o=.linked1.o) $$< 607 $(Q)$$(BPFTOOL) gen object $$(<:.o=.li 429 $(Q)$$(BPFTOOL) gen object $$(<:.o=.linked2.o) $$(<:.o=.linked1.o) 608 $(Q)$$(BPFTOOL) gen object $$(<:.o=.li 430 $(Q)$$(BPFTOOL) gen object $$(<:.o=.linked3.o) $$(<:.o=.linked2.o) 609 $(Q)diff $$(<:.o=.linked2.o) $$(<:.o=. 431 $(Q)diff $$(<:.o=.linked2.o) $$(<:.o=.linked3.o) 610 $(Q)$$(BPFTOOL) gen skeleton $$(<:.o=. !! 432 $(Q)$$(BPFTOOL) gen skeleton $$(<:.o=.linked3.o) name $$(notdir $$(<:.o=)) > $$@ 611 $(Q)$$(BPFTOOL) gen subskeleton $$(<:. !! 433 $(Q)$$(BPFTOOL) gen subskeleton $$(<:.o=.linked3.o) name $$(notdir $$(<:.o=)) > $$(@:.skel.h=.subskel.h) 612 $(Q)rm -f $$(<:.o=.linked1.o) $$(<:.o= << 613 434 614 $(TRUNNER_BPF_LSKELS): %.lskel.h: %.bpf.o $(BP !! 435 $(TRUNNER_BPF_LSKELS): %.lskel.h: %.o $(BPFTOOL) | $(TRUNNER_OUTPUT) 615 $$(call msg,GEN-SKEL,$(TRUNNER_BINARY) 436 $$(call msg,GEN-SKEL,$(TRUNNER_BINARY),$$@) 616 $(Q)$$(BPFTOOL) gen object $$(<:.o=.ll 437 $(Q)$$(BPFTOOL) gen object $$(<:.o=.llinked1.o) $$< 617 $(Q)$$(BPFTOOL) gen object $$(<:.o=.ll 438 $(Q)$$(BPFTOOL) gen object $$(<:.o=.llinked2.o) $$(<:.o=.llinked1.o) 618 $(Q)$$(BPFTOOL) gen object $$(<:.o=.ll 439 $(Q)$$(BPFTOOL) gen object $$(<:.o=.llinked3.o) $$(<:.o=.llinked2.o) 619 $(Q)diff $$(<:.o=.llinked2.o) $$(<:.o= 440 $(Q)diff $$(<:.o=.llinked2.o) $$(<:.o=.llinked3.o) 620 $(Q)$$(BPFTOOL) gen skeleton -L $$(<:. !! 441 $(Q)$$(BPFTOOL) gen skeleton -L $$(<:.o=.llinked3.o) name $$(notdir $$(<:.o=_lskel)) > $$@ 621 $(Q)rm -f $$(<:.o=.llinked1.o) $$(<:.o << 622 << 623 $(LINKED_BPF_OBJS): %: $(TRUNNER_OUTPUT)/% << 624 442 625 # .SECONDEXPANSION here allows to correctly ex !! 443 $(TRUNNER_BPF_SKELS_LINKED): $(TRUNNER_BPF_OBJS) $(BPFTOOL) | $(TRUNNER_OUTPUT) 626 .SECONDEXPANSION: !! 444 $$(call msg,LINK-BPF,$(TRUNNER_BINARY),$$(@:.skel.h=.o)) 627 $(TRUNNER_BPF_SKELS_LINKED): $(TRUNNER_OUTPUT) << 628 $$(call msg,LINK-BPF,$(TRUNNER_BINARY) << 629 $(Q)$$(BPFTOOL) gen object $$(@:.skel. 445 $(Q)$$(BPFTOOL) gen object $$(@:.skel.h=.linked1.o) $$(addprefix $(TRUNNER_OUTPUT)/,$$($$(@F)-deps)) 630 $(Q)$$(BPFTOOL) gen object $$(@:.skel. 446 $(Q)$$(BPFTOOL) gen object $$(@:.skel.h=.linked2.o) $$(@:.skel.h=.linked1.o) 631 $(Q)$$(BPFTOOL) gen object $$(@:.skel. 447 $(Q)$$(BPFTOOL) gen object $$(@:.skel.h=.linked3.o) $$(@:.skel.h=.linked2.o) 632 $(Q)diff $$(@:.skel.h=.linked2.o) $$(@ 448 $(Q)diff $$(@:.skel.h=.linked2.o) $$(@:.skel.h=.linked3.o) 633 $$(call msg,GEN-SKEL,$(TRUNNER_BINARY) 449 $$(call msg,GEN-SKEL,$(TRUNNER_BINARY),$$@) 634 $(Q)$$(BPFTOOL) gen skeleton $$(@:.ske 450 $(Q)$$(BPFTOOL) gen skeleton $$(@:.skel.h=.linked3.o) name $$(notdir $$(@:.skel.h=)) > $$@ 635 $(Q)$$(BPFTOOL) gen subskeleton $$(@:. 451 $(Q)$$(BPFTOOL) gen subskeleton $$(@:.skel.h=.linked3.o) name $$(notdir $$(@:.skel.h=)) > $$(@:.skel.h=.subskel.h) 636 $(Q)rm -f $$(@:.skel.h=.linked1.o) $$( << 637 << 638 # When the compiler generates a %.d file, only << 639 # full paths) are specified as prerequisites f << 640 # file. This target makes %.skel.h basename de << 641 # linking generated %.d dependency with actual << 642 $(notdir %.skel.h): $(TRUNNER_OUTPUT)/%.skel.h << 643 @true << 644 << 645 endif 452 endif 646 453 647 # ensure we set up tests.h header generation r 454 # ensure we set up tests.h header generation rule just once 648 ifeq ($($(TRUNNER_TESTS_DIR)-tests-hdr),) 455 ifeq ($($(TRUNNER_TESTS_DIR)-tests-hdr),) 649 $(TRUNNER_TESTS_DIR)-tests-hdr := y 456 $(TRUNNER_TESTS_DIR)-tests-hdr := y 650 $(TRUNNER_TESTS_HDR): $(TRUNNER_TESTS_DIR)/*.c 457 $(TRUNNER_TESTS_HDR): $(TRUNNER_TESTS_DIR)/*.c 651 $$(call msg,TEST-HDR,$(TRUNNER_BINARY) 458 $$(call msg,TEST-HDR,$(TRUNNER_BINARY),$$@) 652 $$(shell (echo '/* Generated header, d 459 $$(shell (echo '/* Generated header, do not edit */'; \ 653 sed -n -E 's/^void (serial_) 460 sed -n -E 's/^void (serial_)?test_([a-zA-Z0-9_]+)\((void)?\).*/DEFINE_TEST(\2)/p' \ 654 $(TRUNNER_TESTS_DIR)/* 461 $(TRUNNER_TESTS_DIR)/*.c | sort ; \ 655 ) > $$@) 462 ) > $$@) 656 endif 463 endif 657 464 658 # compile individual test files 465 # compile individual test files 659 # Note: we cd into output directory to ensure 466 # Note: we cd into output directory to ensure embedded BPF object is found 660 $(TRUNNER_TEST_OBJS): $(TRUNNER_OUTPUT)/%.test 467 $(TRUNNER_TEST_OBJS): $(TRUNNER_OUTPUT)/%.test.o: \ 661 $(TRUNNER_TESTS_DIR)/%.c 468 $(TRUNNER_TESTS_DIR)/%.c \ 662 | $(TRUNNER_OUTPUT)/%.te !! 469 $(TRUNNER_EXTRA_HDRS) \ >> 470 $(TRUNNER_BPF_OBJS) \ >> 471 $(TRUNNER_BPF_SKELS) \ >> 472 $(TRUNNER_BPF_LSKELS) \ >> 473 $(TRUNNER_BPF_SKELS_LINKED) \ >> 474 $$(BPFOBJ) | $(TRUNNER_OUTPUT) 663 $$(call msg,TEST-OBJ,$(TRUNNER_BINARY) 475 $$(call msg,TEST-OBJ,$(TRUNNER_BINARY),$$@) 664 $(Q)cd $$(@D) && $$(CC) -I. $$(CFLAGS) !! 476 $(Q)cd $$(@D) && $$(CC) -I. $$(CFLAGS) -c $(CURDIR)/$$< $$(LDLIBS) -o $$(@F) 665 << 666 $(TRUNNER_TEST_OBJS:.o=.d): $(TRUNNER_OUTPUT)/ << 667 $(TRUNNER_TESTS_DI << 668 $(TRUNNER_EXTRA_HD << 669 $(TRUNNER_BPF_SKEL << 670 $(TRUNNER_BPF_LSKE << 671 $(TRUNNER_BPF_SKEL << 672 $$(BPFOBJ) | $(TRU << 673 << 674 ifeq ($(filter clean docs-clean,$(MAKECMDGOALS << 675 include $(wildcard $(TRUNNER_TEST_OBJS:.o=.d)) << 676 endif << 677 << 678 # add per extra obj CFGLAGS definitions << 679 $(foreach N,$(patsubst $(TRUNNER_OUTPUT)/%.o,% << 680 $(eval $(TRUNNER_OUTPUT)/$(N).o: CFLAG << 681 477 682 $(TRUNNER_EXTRA_OBJS): $(TRUNNER_OUTPUT)/%.o: 478 $(TRUNNER_EXTRA_OBJS): $(TRUNNER_OUTPUT)/%.o: \ 683 %.c 479 %.c \ 684 $(TRUNNER_EXTRA_HDRS) 480 $(TRUNNER_EXTRA_HDRS) \ 685 $(TRUNNER_TESTS_HDR) 481 $(TRUNNER_TESTS_HDR) \ 686 $$(BPFOBJ) | $(TRUNNER_ 482 $$(BPFOBJ) | $(TRUNNER_OUTPUT) 687 $$(call msg,EXT-OBJ,$(TRUNNER_BINARY), 483 $$(call msg,EXT-OBJ,$(TRUNNER_BINARY),$$@) 688 $(Q)$$(CC) $$(CFLAGS) -c $$< $$(LDLIBS 484 $(Q)$$(CC) $$(CFLAGS) -c $$< $$(LDLIBS) -o $$@ 689 485 690 # non-flavored in-srctree builds receive speci 486 # non-flavored in-srctree builds receive special treatment, in particular, we 691 # do not need to copy extra resources (see e.g 487 # do not need to copy extra resources (see e.g. test_btf_dump_case()) 692 $(TRUNNER_BINARY)-extras: $(TRUNNER_EXTRA_FILE 488 $(TRUNNER_BINARY)-extras: $(TRUNNER_EXTRA_FILES) | $(TRUNNER_OUTPUT) 693 ifneq ($2:$(OUTPUT),:$(shell pwd)) 489 ifneq ($2:$(OUTPUT),:$(shell pwd)) 694 $$(call msg,EXT-COPY,$(TRUNNER_BINARY) 490 $$(call msg,EXT-COPY,$(TRUNNER_BINARY),$(TRUNNER_EXTRA_FILES)) 695 $(Q)rsync -aq $$^ $(TRUNNER_OUTPUT)/ 491 $(Q)rsync -aq $$^ $(TRUNNER_OUTPUT)/ 696 endif 492 endif 697 493 698 $(OUTPUT)/$(TRUNNER_BINARY): LDLIBS += $$(LLVM << 699 $(OUTPUT)/$(TRUNNER_BINARY): LDFLAGS += $$(LLV << 700 << 701 # some X.test.o files have runtime dependencie << 702 $(OUTPUT)/$(TRUNNER_BINARY): | $(TRUNNER_BPF_O << 703 << 704 $(OUTPUT)/$(TRUNNER_BINARY): $(TRUNNER_TEST_OB 494 $(OUTPUT)/$(TRUNNER_BINARY): $(TRUNNER_TEST_OBJS) \ 705 $(TRUNNER_EXTRA_O 495 $(TRUNNER_EXTRA_OBJS) $$(BPFOBJ) \ 706 $(RESOLVE_BTFIDS) 496 $(RESOLVE_BTFIDS) \ 707 $(TRUNNER_BPFTOOL << 708 | $(TRUNNER_BINAR 497 | $(TRUNNER_BINARY)-extras 709 $$(call msg,BINARY,,$$@) 498 $$(call msg,BINARY,,$$@) 710 $(Q)$$(CC) $$(CFLAGS) $$(filter %.a %. !! 499 $(Q)$$(CC) $$(CFLAGS) $$(filter %.a %.o,$$^) $$(LDLIBS) -o $$@ 711 $(Q)$(RESOLVE_BTFIDS) --btf $(TRUNNER_ !! 500 $(Q)$(RESOLVE_BTFIDS) --btf $(TRUNNER_OUTPUT)/btf_data.o $$@ 712 $(Q)ln -sf $(if $2,..,.)/tools/build/b !! 501 $(Q)ln -sf $(if $2,..,.)/tools/build/bpftool/bootstrap/bpftool $(if $2,$2/)bpftool 713 $(OUTPUT)/$(if $2,$2/)bpfto << 714 502 715 endef 503 endef 716 504 717 # Define test_progs test runner. 505 # Define test_progs test runner. 718 TRUNNER_TESTS_DIR := prog_tests 506 TRUNNER_TESTS_DIR := prog_tests 719 TRUNNER_BPF_PROGS_DIR := progs 507 TRUNNER_BPF_PROGS_DIR := progs 720 TRUNNER_EXTRA_SOURCES := test_progs.c !! 508 TRUNNER_EXTRA_SOURCES := test_progs.c cgroup_helpers.c trace_helpers.c \ 721 cgroup_helpers.c !! 509 network_helpers.c testing_helpers.c \ 722 trace_helpers.c !! 510 btf_helpers.c flow_dissector_load.h \ 723 network_helpers.c !! 511 cap_helpers.c 724 testing_helpers.c << 725 btf_helpers.c << 726 cap_helpers.c << 727 unpriv_helpers.c << 728 netlink_helpers.c << 729 jit_disasm_helpers.c << 730 test_loader.c << 731 xsk.c << 732 disasm.c << 733 disasm_helpers.c << 734 json_writer.c << 735 flow_dissector_load.h << 736 ip_check_defrag_frags << 737 TRUNNER_EXTRA_FILES := $(OUTPUT)/urandom_read 512 TRUNNER_EXTRA_FILES := $(OUTPUT)/urandom_read $(OUTPUT)/bpf_testmod.ko \ 738 $(OUTPUT)/bpf_test_no_c << 739 $(OUTPUT)/bpf_test_modo << 740 $(OUTPUT)/bpf_test_modo << 741 $(OUTPUT)/liburandom_re 513 $(OUTPUT)/liburandom_read.so \ 742 $(OUTPUT)/xdp_synproxy !! 514 ima_setup.sh \ 743 $(OUTPUT)/sign-file !! 515 $(wildcard progs/btf_dump_test_case_*.c) 744 $(OUTPUT)/uprobe_multi << 745 ima_setup.sh << 746 verify_sig_setup.sh << 747 $(wildcard progs/btf_du << 748 $(wildcard progs/*.bpf. << 749 TRUNNER_BPF_BUILD_RULE := CLANG_BPF_BUILD_RULE 516 TRUNNER_BPF_BUILD_RULE := CLANG_BPF_BUILD_RULE 750 TRUNNER_BPF_CFLAGS := $(BPF_CFLAGS) $(CLANG_CF 517 TRUNNER_BPF_CFLAGS := $(BPF_CFLAGS) $(CLANG_CFLAGS) -DENABLE_ATOMICS_TESTS 751 $(eval $(call DEFINE_TEST_RUNNER,test_progs)) 518 $(eval $(call DEFINE_TEST_RUNNER,test_progs)) 752 519 753 # Define test_progs-no_alu32 test runner. 520 # Define test_progs-no_alu32 test runner. 754 TRUNNER_BPF_BUILD_RULE := CLANG_NOALU32_BPF_BU 521 TRUNNER_BPF_BUILD_RULE := CLANG_NOALU32_BPF_BUILD_RULE 755 TRUNNER_BPF_CFLAGS := $(BPF_CFLAGS) $(CLANG_CF 522 TRUNNER_BPF_CFLAGS := $(BPF_CFLAGS) $(CLANG_CFLAGS) 756 $(eval $(call DEFINE_TEST_RUNNER,test_progs,no 523 $(eval $(call DEFINE_TEST_RUNNER,test_progs,no_alu32)) 757 524 758 # Define test_progs-cpuv4 test runner. << 759 ifneq ($(CLANG_CPUV4),) << 760 TRUNNER_BPF_BUILD_RULE := CLANG_CPUV4_BPF_BUIL << 761 TRUNNER_BPF_CFLAGS := $(BPF_CFLAGS) $(CLANG_CF << 762 $(eval $(call DEFINE_TEST_RUNNER,test_progs,cp << 763 endif << 764 << 765 # Define test_progs BPF-GCC-flavored test runn 525 # Define test_progs BPF-GCC-flavored test runner. 766 ifneq ($(BPF_GCC),) 526 ifneq ($(BPF_GCC),) 767 TRUNNER_BPF_BUILD_RULE := GCC_BPF_BUILD_RULE 527 TRUNNER_BPF_BUILD_RULE := GCC_BPF_BUILD_RULE 768 TRUNNER_BPF_CFLAGS := $(BPF_CFLAGS) $(call get !! 528 TRUNNER_BPF_CFLAGS := $(BPF_CFLAGS) $(call get_sys_includes,gcc) 769 $(eval $(call DEFINE_TEST_RUNNER,test_progs,bp 529 $(eval $(call DEFINE_TEST_RUNNER,test_progs,bpf_gcc)) 770 endif 530 endif 771 531 772 # Define test_maps test runner. 532 # Define test_maps test runner. 773 TRUNNER_TESTS_DIR := map_tests 533 TRUNNER_TESTS_DIR := map_tests 774 TRUNNER_BPF_PROGS_DIR := progs 534 TRUNNER_BPF_PROGS_DIR := progs 775 TRUNNER_EXTRA_SOURCES := test_maps.c 535 TRUNNER_EXTRA_SOURCES := test_maps.c 776 TRUNNER_EXTRA_FILES := 536 TRUNNER_EXTRA_FILES := 777 TRUNNER_BPF_BUILD_RULE := $$(error no BPF obje 537 TRUNNER_BPF_BUILD_RULE := $$(error no BPF objects should be built) 778 TRUNNER_BPF_CFLAGS := 538 TRUNNER_BPF_CFLAGS := 779 $(eval $(call DEFINE_TEST_RUNNER,test_maps)) 539 $(eval $(call DEFINE_TEST_RUNNER,test_maps)) 780 540 781 # Define test_verifier test runner. 541 # Define test_verifier test runner. 782 # It is much simpler than test_maps/test_progs 542 # It is much simpler than test_maps/test_progs and sufficiently different from 783 # them (e.g., test.h is using completely patte 543 # them (e.g., test.h is using completely pattern), that it's worth just 784 # explicitly defining all the rules explicitly 544 # explicitly defining all the rules explicitly. 785 verifier/tests.h: verifier/*.c 545 verifier/tests.h: verifier/*.c 786 $(shell ( cd verifier/; \ 546 $(shell ( cd verifier/; \ 787 echo '/* Generated header, d 547 echo '/* Generated header, do not edit */'; \ 788 echo '#ifdef FILL_ARRAY'; \ 548 echo '#ifdef FILL_ARRAY'; \ 789 ls *.c 2> /dev/null | sed -e 549 ls *.c 2> /dev/null | sed -e 's@\(.*\)@#include \"\1\"@'; \ 790 echo '#endif' \ 550 echo '#endif' \ 791 ) > verifier/tests.h) 551 ) > verifier/tests.h) 792 $(OUTPUT)/test_verifier: test_verifier.c verif 552 $(OUTPUT)/test_verifier: test_verifier.c verifier/tests.h $(BPFOBJ) | $(OUTPUT) 793 $(call msg,BINARY,,$@) 553 $(call msg,BINARY,,$@) 794 $(Q)$(CC) $(CFLAGS) $(filter %.a %.o % 554 $(Q)$(CC) $(CFLAGS) $(filter %.a %.o %.c,$^) $(LDLIBS) -o $@ 795 555 796 # Include find_bit.c to compile xskxceiver. << 797 EXTRA_SRC := $(TOOLSDIR)/lib/find_bit.c << 798 $(OUTPUT)/xskxceiver: $(EXTRA_SRC) xskxceiver. << 799 $(call msg,BINARY,,$@) << 800 $(Q)$(CC) $(CFLAGS) $(filter %.a %.o % << 801 << 802 $(OUTPUT)/xdp_hw_metadata: xdp_hw_metadata.c $ << 803 $(call msg,BINARY,,$@) << 804 $(Q)$(CC) $(CFLAGS) $(filter %.a %.o % << 805 << 806 $(OUTPUT)/xdp_features: xdp_features.c $(OUTPU << 807 $(call msg,BINARY,,$@) << 808 $(Q)$(CC) $(CFLAGS) $(filter %.a %.o % << 809 << 810 # Make sure we are able to include and link li 556 # Make sure we are able to include and link libbpf against c++. 811 $(OUTPUT)/test_cpp: test_cpp.cpp $(OUTPUT)/tes 557 $(OUTPUT)/test_cpp: test_cpp.cpp $(OUTPUT)/test_core_extern.skel.h $(BPFOBJ) 812 $(call msg,CXX,,$@) 558 $(call msg,CXX,,$@) 813 $(Q)$(CXX) $(subst -D_GNU_SOURCE=,,$(C !! 559 $(Q)$(CXX) $(CFLAGS) $(filter %.a %.o %.cpp,$^) $(LDLIBS) -o $@ 814 560 815 # Benchmark runner 561 # Benchmark runner 816 $(OUTPUT)/bench_%.o: benchs/bench_%.c bench.h 562 $(OUTPUT)/bench_%.o: benchs/bench_%.c bench.h $(BPFOBJ) 817 $(call msg,CC,,$@) 563 $(call msg,CC,,$@) 818 $(Q)$(CC) $(CFLAGS) -O2 -c $(filter %. 564 $(Q)$(CC) $(CFLAGS) -O2 -c $(filter %.c,$^) $(LDLIBS) -o $@ 819 $(OUTPUT)/bench_rename.o: $(OUTPUT)/test_overh 565 $(OUTPUT)/bench_rename.o: $(OUTPUT)/test_overhead.skel.h 820 $(OUTPUT)/bench_trigger.o: $(OUTPUT)/trigger_b 566 $(OUTPUT)/bench_trigger.o: $(OUTPUT)/trigger_bench.skel.h 821 $(OUTPUT)/bench_ringbufs.o: $(OUTPUT)/ringbuf_ 567 $(OUTPUT)/bench_ringbufs.o: $(OUTPUT)/ringbuf_bench.skel.h \ 822 $(OUTPUT)/perfbuf_ 568 $(OUTPUT)/perfbuf_bench.skel.h 823 $(OUTPUT)/bench_bloom_filter_map.o: $(OUTPUT)/ 569 $(OUTPUT)/bench_bloom_filter_map.o: $(OUTPUT)/bloom_filter_bench.skel.h 824 $(OUTPUT)/bench_bpf_loop.o: $(OUTPUT)/bpf_loop 570 $(OUTPUT)/bench_bpf_loop.o: $(OUTPUT)/bpf_loop_bench.skel.h 825 $(OUTPUT)/bench_strncmp.o: $(OUTPUT)/strncmp_b 571 $(OUTPUT)/bench_strncmp.o: $(OUTPUT)/strncmp_bench.skel.h 826 $(OUTPUT)/bench_bpf_hashmap_full_update.o: $(O << 827 $(OUTPUT)/bench_local_storage.o: $(OUTPUT)/loc << 828 $(OUTPUT)/bench_local_storage_rcu_tasks_trace. << 829 $(OUTPUT)/bench_local_storage_create.o: $(OUTP << 830 $(OUTPUT)/bench_bpf_hashmap_lookup.o: $(OUTPUT << 831 $(OUTPUT)/bench_htab_mem.o: $(OUTPUT)/htab_mem << 832 $(OUTPUT)/bench_bpf_crypto.o: $(OUTPUT)/crypto << 833 $(OUTPUT)/bench.o: bench.h testing_helpers.h $ 572 $(OUTPUT)/bench.o: bench.h testing_helpers.h $(BPFOBJ) 834 $(OUTPUT)/bench: LDLIBS += -lm 573 $(OUTPUT)/bench: LDLIBS += -lm 835 $(OUTPUT)/bench: $(OUTPUT)/bench.o \ 574 $(OUTPUT)/bench: $(OUTPUT)/bench.o \ 836 $(TESTING_HELPERS) \ 575 $(TESTING_HELPERS) \ 837 $(TRACE_HELPERS) \ 576 $(TRACE_HELPERS) \ 838 $(CGROUP_HELPERS) \ << 839 $(OUTPUT)/bench_count.o \ 577 $(OUTPUT)/bench_count.o \ 840 $(OUTPUT)/bench_rename.o \ 578 $(OUTPUT)/bench_rename.o \ 841 $(OUTPUT)/bench_trigger.o \ 579 $(OUTPUT)/bench_trigger.o \ 842 $(OUTPUT)/bench_ringbufs.o \ 580 $(OUTPUT)/bench_ringbufs.o \ 843 $(OUTPUT)/bench_bloom_filter_ 581 $(OUTPUT)/bench_bloom_filter_map.o \ 844 $(OUTPUT)/bench_bpf_loop.o \ 582 $(OUTPUT)/bench_bpf_loop.o \ 845 $(OUTPUT)/bench_strncmp.o \ !! 583 $(OUTPUT)/bench_strncmp.o 846 $(OUTPUT)/bench_bpf_hashmap_f << 847 $(OUTPUT)/bench_local_storage << 848 $(OUTPUT)/bench_local_storage << 849 $(OUTPUT)/bench_bpf_hashmap_l << 850 $(OUTPUT)/bench_local_storage << 851 $(OUTPUT)/bench_htab_mem.o \ << 852 $(OUTPUT)/bench_bpf_crypto.o << 853 # << 854 $(call msg,BINARY,,$@) 584 $(call msg,BINARY,,$@) 855 $(Q)$(CC) $(CFLAGS) $(LDFLAGS) $(filte 585 $(Q)$(CC) $(CFLAGS) $(LDFLAGS) $(filter %.a %.o,$^) $(LDLIBS) -o $@ 856 586 857 $(OUTPUT)/veristat.o: $(BPFOBJ) !! 587 EXTRA_CLEAN := $(TEST_CUSTOM_PROGS) $(SCRATCH_DIR) $(HOST_SCRATCH_DIR) \ 858 $(OUTPUT)/veristat: $(OUTPUT)/veristat.o << 859 $(call msg,BINARY,,$@) << 860 $(Q)$(CC) $(CFLAGS) $(LDFLAGS) $(filte << 861 << 862 # Linking uprobe_multi can fail due to relocat << 863 $(OUTPUT)/uprobe_multi: CFLAGS += $(if $(filte << 864 $(OUTPUT)/uprobe_multi: uprobe_multi.c uprobe_ << 865 $(call msg,BINARY,,$@) << 866 $(Q)$(CC) $(CFLAGS) -Wl,-T,uprobe_mult << 867 $(filter-out %.ld,$^) $(LDLIBS << 868 << 869 EXTRA_CLEAN := $(SCRATCH_DIR) $(HOST_SCRATCH_D << 870 prog_tests/tests.h map_tests/tests.h v 588 prog_tests/tests.h map_tests/tests.h verifier/tests.h \ 871 feature bpftool !! 589 feature bpftool \ 872 $(addprefix $(OUTPUT)/,*.o *.d *.skel. !! 590 $(addprefix $(OUTPUT)/,*.o *.skel.h *.lskel.h *.subskel.h \ 873 no_alu32 cpuv4 !! 591 no_alu32 bpf_gcc bpf_testmod.ko \ 874 bpf_test_no_cfi !! 592 liburandom_read.so) 875 bpf_test_modord << 876 bpf_test_modord << 877 liburandom_read << 878 $(OUTPUT)/FEATURE-DUMP.selftests << 879 593 880 .PHONY: docs docs-clean 594 .PHONY: docs docs-clean 881 << 882 # Delete partially updated (corrupted) files o << 883 .DELETE_ON_ERROR: << 884 << 885 DEFAULT_INSTALL_RULE := $(INSTALL_RULE) << 886 override define INSTALL_RULE << 887 $(DEFAULT_INSTALL_RULE) << 888 @for DIR in $(TEST_INST_SUBDIRS); do << 889 mkdir -p $(INSTALL_PATH)/$$DIR << 890 rsync -a $(OUTPUT)/$$DIR/*.bpf << 891 done << 892 endef <<
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.