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