1# SPDX-License-Identifier: GPL-2.0 2 3BPF_SAMPLES_PATH ?= $(abspath $(src)) 4TOOLS_PATH := $(BPF_SAMPLES_PATH)/../../tools 5 6pound := \# 7 8# List of programs to build 9tprogs-y := test_lru_dist 10tprogs-y += sock_example 11tprogs-y += fds_example 12tprogs-y += sockex1 13tprogs-y += sockex2 14tprogs-y += sockex3 15tprogs-y += tracex1 16tprogs-y += tracex3 17tprogs-y += tracex4 18tprogs-y += tracex5 19tprogs-y += tracex6 20tprogs-y += tracex7 21tprogs-y += test_probe_write_user 22tprogs-y += trace_output 23tprogs-y += lathist 24tprogs-y += offwaketime 25tprogs-y += spintest 26tprogs-y += map_perf_test 27tprogs-y += test_overhead 28tprogs-y += xdp_router_ipv4 29tprogs-y += trace_event 30tprogs-y += sampleip 31tprogs-y += tc_l2_redirect 32tprogs-y += lwt_len_hist 33tprogs-y += xdp_tx_iptunnel 34tprogs-y += test_map_in_map 35tprogs-y += per_socket_stats_example 36tprogs-y += syscall_tp 37tprogs-y += cpustat 38tprogs-y += xdp_adjust_tail 39tprogs-y += xdp_fwd 40tprogs-y += task_fd_query 41tprogs-y += ibumad 42tprogs-y += hbm 43 44# Libbpf dependencies 45LIBBPF_SRC = $(TOOLS_PATH)/lib/bpf 46LIBBPF_OUTPUT = $(abspath $(BPF_SAMPLES_PATH))/libbpf 47LIBBPF_DESTDIR = $(LIBBPF_OUTPUT) 48LIBBPF_INCLUDE = $(LIBBPF_DESTDIR)/include 49LIBBPF = $(LIBBPF_OUTPUT)/libbpf.a 50 51CGROUP_HELPERS := ../../tools/testing/selftests/bpf/cgroup_helpers.o 52TRACE_HELPERS := ../../tools/testing/selftests/bpf/trace_helpers.o 53XDP_SAMPLE := xdp_sample_user.o 54 55fds_example-objs := fds_example.o 56sockex1-objs := sockex1_user.o 57sockex2-objs := sockex2_user.o 58sockex3-objs := sockex3_user.o 59tracex1-objs := tracex1_user.o $(TRACE_HELPERS) 60tracex3-objs := tracex3_user.o 61tracex4-objs := tracex4_user.o 62tracex5-objs := tracex5_user.o $(TRACE_HELPERS) 63tracex6-objs := tracex6_user.o 64tracex7-objs := tracex7_user.o 65test_probe_write_user-objs := test_probe_write_user_user.o 66trace_output-objs := trace_output_user.o 67lathist-objs := lathist_user.o 68offwaketime-objs := offwaketime_user.o $(TRACE_HELPERS) 69spintest-objs := spintest_user.o $(TRACE_HELPERS) 70map_perf_test-objs := map_perf_test_user.o 71test_overhead-objs := test_overhead_user.o 72trace_event-objs := trace_event_user.o $(TRACE_HELPERS) 73sampleip-objs := sampleip_user.o $(TRACE_HELPERS) 74tc_l2_redirect-objs := tc_l2_redirect_user.o 75lwt_len_hist-objs := lwt_len_hist_user.o 76xdp_tx_iptunnel-objs := xdp_tx_iptunnel_user.o 77test_map_in_map-objs := test_map_in_map_user.o 78per_socket_stats_example-objs := cookie_uid_helper_example.o 79syscall_tp-objs := syscall_tp_user.o 80cpustat-objs := cpustat_user.o 81xdp_adjust_tail-objs := xdp_adjust_tail_user.o 82xdp_fwd-objs := xdp_fwd_user.o 83task_fd_query-objs := task_fd_query_user.o $(TRACE_HELPERS) 84ibumad-objs := ibumad_user.o 85hbm-objs := hbm.o $(CGROUP_HELPERS) 86 87xdp_router_ipv4-objs := xdp_router_ipv4_user.o $(XDP_SAMPLE) 88 89# Tell kbuild to always build the programs 90always-y := $(tprogs-y) 91always-y += sockex1_kern.o 92always-y += sockex2_kern.o 93always-y += sockex3_kern.o 94always-y += tracex1.bpf.o 95always-y += tracex3.bpf.o 96always-y += tracex4.bpf.o 97always-y += tracex5.bpf.o 98always-y += tracex6.bpf.o 99always-y += tracex7.bpf.o 100always-y += test_probe_write_user.bpf.o 101always-y += trace_output.bpf.o 102always-y += tcbpf1_kern.o 103always-y += tc_l2_redirect_kern.o 104always-y += lathist_kern.o 105always-y += offwaketime.bpf.o 106always-y += spintest.bpf.o 107always-y += map_perf_test.bpf.o 108always-y += test_overhead_tp.bpf.o 109always-y += test_overhead_raw_tp.bpf.o 110always-y += test_overhead_kprobe.bpf.o 111always-y += parse_varlen.o parse_simple.o parse_ldabs.o 112always-y += trace_event_kern.o 113always-y += sampleip_kern.o 114always-y += lwt_len_hist.bpf.o 115always-y += xdp_tx_iptunnel_kern.o 116always-y += test_map_in_map.bpf.o 117always-y += tcp_synrto_kern.o 118always-y += tcp_rwnd_kern.o 119always-y += tcp_bufs_kern.o 120always-y += tcp_cong_kern.o 121always-y += tcp_iw_kern.o 122always-y += tcp_clamp_kern.o 123always-y += tcp_basertt_kern.o 124always-y += tcp_tos_reflect_kern.o 125always-y += tcp_dumpstats_kern.o 126always-y += xdp2skb_meta_kern.o 127always-y += syscall_tp_kern.o 128always-y += cpustat_kern.o 129always-y += xdp_adjust_tail_kern.o 130always-y += xdp_fwd_kern.o 131always-y += task_fd_query_kern.o 132always-y += ibumad_kern.o 133always-y += hbm_out_kern.o 134always-y += hbm_edt_kern.o 135 136TPROGS_CFLAGS = $(TPROGS_USER_CFLAGS) 137TPROGS_LDFLAGS = $(TPROGS_USER_LDFLAGS) 138 139ifeq ($(ARCH), arm) 140# Strip all except -D__LINUX_ARM_ARCH__ option needed to handle linux 141# headers when arm instruction set identification is requested. 142ARM_ARCH_SELECTOR := $(filter -D__LINUX_ARM_ARCH__%, $(KBUILD_CFLAGS)) 143BPF_EXTRA_CFLAGS := $(ARM_ARCH_SELECTOR) 144TPROGS_CFLAGS += $(ARM_ARCH_SELECTOR) 145endif 146 147ifeq ($(ARCH), mips) 148TPROGS_CFLAGS += -D__SANE_USERSPACE_TYPES__ 149ifdef CONFIG_MACH_LOONGSON64 150BPF_EXTRA_CFLAGS += -I$(srctree)/arch/mips/include/asm/mach-loongson64 151BPF_EXTRA_CFLAGS += -I$(srctree)/arch/mips/include/asm/mach-generic 152endif 153endif 154 155ifeq ($(ARCH), x86) 156BPF_EXTRA_CFLAGS += -fcf-protection 157endif 158 159TPROGS_CFLAGS += -Wall -O2 160TPROGS_CFLAGS += -Wmissing-prototypes 161TPROGS_CFLAGS += -Wstrict-prototypes 162TPROGS_CFLAGS += $(call try-run,\ 163 printf "int main() { return 0; }" |\ 164 $(CC) -Werror -fsanitize=bounds -x c - -o "$$TMP",-fsanitize=bounds,) 165 166TPROGS_CFLAGS += -I$(objtree)/usr/include 167TPROGS_CFLAGS += -I$(srctree)/tools/testing/selftests/bpf/ 168TPROGS_CFLAGS += -I$(LIBBPF_INCLUDE) 169TPROGS_CFLAGS += -I$(srctree)/tools/include 170TPROGS_CFLAGS += -I$(srctree)/tools/perf 171TPROGS_CFLAGS += -I$(srctree)/tools/lib 172TPROGS_CFLAGS += -DHAVE_ATTR_TEST=0 173 174ifdef SYSROOT 175TPROGS_CFLAGS += --sysroot=$(SYSROOT) 176TPROGS_LDFLAGS := -L$(SYSROOT)/usr/lib 177endif 178 179TPROGS_LDLIBS += $(LIBBPF) -lelf -lz 180TPROGLDLIBS_xdp_router_ipv4 += -lm -pthread 181TPROGLDLIBS_tracex4 += -lrt 182TPROGLDLIBS_trace_output += -lrt 183TPROGLDLIBS_map_perf_test += -lrt 184TPROGLDLIBS_test_overhead += -lrt 185 186# Allows pointing LLC/CLANG to a LLVM backend with bpf support, redefine on cmdline: 187# make M=samples/bpf LLC=~/git/llvm-project/llvm/build/bin/llc CLANG=~/git/llvm-project/llvm/build/bin/clang 188LLC ?= llc 189CLANG ?= clang 190OPT ?= opt 191LLVM_DIS ?= llvm-dis 192LLVM_OBJCOPY ?= llvm-objcopy 193LLVM_READELF ?= llvm-readelf 194BTF_PAHOLE ?= pahole 195 196# Detect that we're cross compiling and use the cross compiler 197ifdef CROSS_COMPILE 198CLANG_ARCH_ARGS = --target=$(notdir $(CROSS_COMPILE:%-=%)) 199endif 200 201# Don't evaluate probes and warnings if we need to run make recursively 202ifneq ($(src),) 203HDR_PROBE := $(shell printf "$(pound)include <linux/types.h>\n struct list_head { int a; }; int main() { return 0; }" | \ 204 $(CC) $(TPROGS_CFLAGS) $(TPROGS_LDFLAGS) -x c - \ 205 -o /dev/null 2>/dev/null && echo okay) 206 207ifeq ($(HDR_PROBE),) 208$(warning WARNING: Detected possible issues with include path.) 209$(warning WARNING: Please install kernel headers locally (make headers_install).) 210endif 211 212BTF_LLC_PROBE := $(shell $(LLC) -march=bpf -mattr=help 2>&1 | grep dwarfris) 213BTF_PAHOLE_PROBE := $(shell $(BTF_PAHOLE) --help 2>&1 | grep BTF) 214BTF_OBJCOPY_PROBE := $(shell $(LLVM_OBJCOPY) --help 2>&1 | grep -i 'usage.*llvm') 215BTF_LLVM_PROBE := $(shell echo "int main() { return 0; }" | \ 216 $(CLANG) --target=bpf -O2 -g -c -x c - -o ./llvm_btf_verify.o; \ 217 $(LLVM_READELF) -S ./llvm_btf_verify.o | grep BTF; \ 218 /bin/rm -f ./llvm_btf_verify.o) 219 220BPF_EXTRA_CFLAGS += -fno-stack-protector 221ifneq ($(BTF_LLVM_PROBE),) 222 BPF_EXTRA_CFLAGS += -g 223else 224ifneq ($(and $(BTF_LLC_PROBE),$(BTF_PAHOLE_PROBE),$(BTF_OBJCOPY_PROBE)),) 225 BPF_EXTRA_CFLAGS += -g 226 LLC_FLAGS += -mattr=dwarfris 227 DWARF2BTF = y 228endif 229endif 230endif 231 232# Trick to allow make to be run from this directory 233all: 234 $(MAKE) -C ../../ M=$(CURDIR) BPF_SAMPLES_PATH=$(CURDIR) 235 236clean: 237 $(MAKE) -C ../../ M=$(CURDIR) clean 238 @find $(CURDIR) -type f -name '*~' -delete 239 @$(RM) -r $(CURDIR)/libbpf $(CURDIR)/bpftool 240 241$(LIBBPF): $(wildcard $(LIBBPF_SRC)/*.[ch] $(LIBBPF_SRC)/Makefile) | $(LIBBPF_OUTPUT) 242# Fix up variables inherited from Kbuild that tools/ build system won't like 243 $(MAKE) -C $(LIBBPF_SRC) RM='rm -rf' EXTRA_CFLAGS="$(TPROGS_CFLAGS)" \ 244 LDFLAGS="$(TPROGS_LDFLAGS)" srctree=$(BPF_SAMPLES_PATH)/../../ \ 245 O= OUTPUT=$(LIBBPF_OUTPUT)/ DESTDIR=$(LIBBPF_DESTDIR) prefix= \ 246 $@ install_headers 247 248BPFTOOLDIR := $(TOOLS_PATH)/bpf/bpftool 249BPFTOOL_OUTPUT := $(abspath $(BPF_SAMPLES_PATH))/bpftool 250DEFAULT_BPFTOOL := $(BPFTOOL_OUTPUT)/bootstrap/bpftool 251BPFTOOL ?= $(DEFAULT_BPFTOOL) 252$(DEFAULT_BPFTOOL): $(wildcard $(BPFTOOLDIR)/*.[ch] $(BPFTOOLDIR)/Makefile) | $(BPFTOOL_OUTPUT) 253 $(MAKE) -C $(BPFTOOLDIR) srctree=$(BPF_SAMPLES_PATH)/../../ \ 254 OUTPUT=$(BPFTOOL_OUTPUT)/ bootstrap 255 256$(LIBBPF_OUTPUT) $(BPFTOOL_OUTPUT): 257 $(call msg,MKDIR,$@) 258 $(Q)mkdir -p $@ 259 260$(obj)/syscall_nrs.h: $(obj)/syscall_nrs.s FORCE 261 $(call filechk,offsets,__SYSCALL_NRS_H__) 262 263targets += syscall_nrs.s 264clean-files += syscall_nrs.h 265 266FORCE: 267 268 269# Verify LLVM compiler tools are available and bpf target is supported by llc 270.PHONY: verify_cmds verify_target_bpf $(CLANG) $(LLC) 271 272verify_cmds: $(CLANG) $(LLC) 273 @for TOOL in $^ ; do \ 274 if ! (which -- "$${TOOL}" > /dev/null 2>&1); then \ 275 echo "*** ERROR: Cannot find LLVM tool $${TOOL}" ;\ 276 exit 1; \ 277 else true; fi; \ 278 done 279 280verify_target_bpf: verify_cmds 281 @if ! (${LLC} -march=bpf -mattr=help > /dev/null 2>&1); then \ 282 echo "*** ERROR: LLVM (${LLC}) does not support 'bpf' target" ;\ 283 echo " NOTICE: LLVM version >= 3.7.1 required" ;\ 284 exit 2; \ 285 else true; fi 286 287$(BPF_SAMPLES_PATH)/*.c: verify_target_bpf $(LIBBPF) 288$(src)/*.c: verify_target_bpf $(LIBBPF) 289 290libbpf_hdrs: $(LIBBPF) 291$(obj)/$(TRACE_HELPERS) $(obj)/$(CGROUP_HELPERS) $(obj)/$(XDP_SAMPLE): | libbpf_hdrs 292 293.PHONY: libbpf_hdrs 294 295$(obj)/xdp_router_ipv4_user.o: $(obj)/xdp_router_ipv4.skel.h 296 297$(obj)/tracex5.bpf.o: $(obj)/syscall_nrs.h 298$(obj)/hbm_out_kern.o: $(src)/hbm.h $(src)/hbm_kern.h 299$(obj)/hbm.o: $(src)/hbm.h 300$(obj)/hbm_edt_kern.o: $(src)/hbm.h $(src)/hbm_kern.h 301 302# Override includes for xdp_sample_user.o because $(srctree)/usr/include in 303# TPROGS_CFLAGS causes conflicts 304XDP_SAMPLE_CFLAGS += -Wall -O2 \ 305 -I$(src)/../../tools/include \ 306 -I$(src)/../../tools/include/uapi \ 307 -I$(LIBBPF_INCLUDE) \ 308 -I$(src)/../../tools/testing/selftests/bpf 309 310$(obj)/$(XDP_SAMPLE): TPROGS_CFLAGS = $(XDP_SAMPLE_CFLAGS) $(TPROGS_USER_CFLAGS) 311$(obj)/$(XDP_SAMPLE): $(src)/xdp_sample_user.h $(src)/xdp_sample_shared.h 312# Override includes for trace_helpers.o because __must_check won't be defined 313# in our include path. 314$(obj)/$(TRACE_HELPERS): TPROGS_CFLAGS := $(TPROGS_CFLAGS) -D__must_check= 315 316-include $(BPF_SAMPLES_PATH)/Makefile.target 317 318VMLINUX_BTF_PATHS ?= $(abspath $(if $(O),$(O)/vmlinux)) \ 319 $(abspath $(if $(KBUILD_OUTPUT),$(KBUILD_OUTPUT)/vmlinux)) \ 320 $(abspath ./vmlinux) 321VMLINUX_BTF ?= $(abspath $(firstword $(wildcard $(VMLINUX_BTF_PATHS)))) 322 323$(obj)/vmlinux.h: $(VMLINUX_BTF) $(BPFTOOL) 324ifeq ($(VMLINUX_H),) 325ifeq ($(VMLINUX_BTF),) 326 $(error Cannot find a vmlinux for VMLINUX_BTF at any of "$(VMLINUX_BTF_PATHS)",\ 327 build the kernel or set VMLINUX_BTF like "VMLINUX_BTF=/sys/kernel/btf/vmlinux" or VMLINUX_H variable) 328endif 329 $(Q)$(BPFTOOL) btf dump file $(VMLINUX_BTF) format c > $@ 330else 331 $(Q)cp "$(VMLINUX_H)" $@ 332endif 333 334clean-files += vmlinux.h 335 336# Get Clang's default includes on this system, as opposed to those seen by 337# '--target=bpf'. This fixes "missing" files on some architectures/distros, 338# such as asm/byteorder.h, asm/socket.h, asm/sockios.h, sys/cdefs.h etc. 339# 340# Use '-idirafter': Don't interfere with include mechanics except where the 341# build would have failed anyways. 342define get_sys_includes 343$(shell $(1) -v -E - </dev/null 2>&1 \ 344 | sed -n '/<...> search starts here:/,/End of search list./{ s| \(/.*\)|-idirafter \1|p }') \ 345$(shell $(1) -dM -E - </dev/null | grep '#define __riscv_xlen ' | sed 's/#define /-D/' | sed 's/ /=/') 346endef 347 348CLANG_SYS_INCLUDES = $(call get_sys_includes,$(CLANG)) 349 350$(obj)/xdp_router_ipv4.bpf.o: $(obj)/xdp_sample.bpf.o 351 352$(obj)/%.bpf.o: $(src)/%.bpf.c $(obj)/vmlinux.h $(src)/xdp_sample.bpf.h $(src)/xdp_sample_shared.h 353 @echo " CLANG-BPF " $@ 354 $(Q)$(CLANG) -g -O2 --target=bpf -D__TARGET_ARCH_$(SRCARCH) \ 355 -Wno-compare-distinct-pointer-types -I$(srctree)/include \ 356 -I$(srctree)/samples/bpf -I$(srctree)/tools/include \ 357 -I$(LIBBPF_INCLUDE) $(CLANG_SYS_INCLUDES) \ 358 -c $(filter %.bpf.c,$^) -o $@ 359 360LINKED_SKELS := xdp_router_ipv4.skel.h 361clean-files += $(LINKED_SKELS) 362 363xdp_router_ipv4.skel.h-deps := xdp_router_ipv4.bpf.o xdp_sample.bpf.o 364 365LINKED_BPF_SRCS := $(patsubst %.bpf.o,%.bpf.c,$(foreach skel,$(LINKED_SKELS),$($(skel)-deps))) 366 367BPF_SRCS_LINKED := $(notdir $(wildcard $(src)/*.bpf.c)) 368BPF_OBJS_LINKED := $(patsubst %.bpf.c,$(obj)/%.bpf.o, $(BPF_SRCS_LINKED)) 369BPF_SKELS_LINKED := $(addprefix $(obj)/,$(LINKED_SKELS)) 370 371$(BPF_SKELS_LINKED): $(BPF_OBJS_LINKED) $(BPFTOOL) 372 @echo " BPF GEN-OBJ " $(@:.skel.h=) 373 $(Q)$(BPFTOOL) gen object $(@:.skel.h=.lbpf.o) $(addprefix $(obj)/,$($(@F)-deps)) 374 @echo " BPF GEN-SKEL" $(@:.skel.h=) 375 $(Q)$(BPFTOOL) gen skeleton $(@:.skel.h=.lbpf.o) name $(notdir $(@:.skel.h=)) > $@ 376 377# asm/sysreg.h - inline assembly used by it is incompatible with llvm. 378# But, there is no easy way to fix it, so just exclude it since it is 379# useless for BPF samples. 380# below we use long chain of commands, clang | opt | llvm-dis | llc, 381# to generate final object file. 'clang' compiles the source into IR 382# with native target, e.g., x64, arm64, etc. 'opt' does bpf CORE IR builtin 383# processing (llvm12) and IR optimizations. 'llvm-dis' converts 384# 'opt' output to IR, and finally 'llc' generates bpf byte code. 385$(obj)/%.o: $(src)/%.c 386 @echo " CLANG-bpf " $@ 387 $(Q)$(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(BPF_EXTRA_CFLAGS) \ 388 -I$(obj) -I$(srctree)/tools/testing/selftests/bpf/ \ 389 -I$(LIBBPF_INCLUDE) \ 390 -D__KERNEL__ -D__BPF_TRACING__ -Wno-unused-value -Wno-pointer-sign \ 391 -D__TARGET_ARCH_$(SRCARCH) -Wno-compare-distinct-pointer-types \ 392 -Wno-gnu-variable-sized-type-not-at-end \ 393 -Wno-address-of-packed-member -Wno-tautological-compare \ 394 -Wno-unknown-warning-option $(CLANG_ARCH_ARGS) \ 395 -fno-asynchronous-unwind-tables \ 396 -I$(srctree)/samples/bpf/ -include asm_goto_workaround.h \ 397 -O2 -emit-llvm -Xclang -disable-llvm-passes -c $< -o - | \ 398 $(OPT) -O2 -mtriple=bpf-pc-linux | $(LLVM_DIS) | \ 399 $(LLC) -march=bpf $(LLC_FLAGS) -filetype=obj -o $@ 400ifeq ($(DWARF2BTF),y) 401 $(BTF_PAHOLE) -J $@ 402endif 403