]> Git Repo - linux.git/blame - samples/bpf/Makefile
Merge branch 'x86-pti-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / samples / bpf / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
3c731eba 2# List of programs to build
5db58faf 3hostprogs-y := test_lru_dist
03f4723e 4hostprogs-y += sock_example
42984d7c 5hostprogs-y += fds_example
a8085782 6hostprogs-y += sockex1
fbe33108 7hostprogs-y += sockex2
530b2c86 8hostprogs-y += sockex3
b896c4f9 9hostprogs-y += tracex1
d822a192 10hostprogs-y += tracex2
5c7fc2d2 11hostprogs-y += tracex3
9811e353 12hostprogs-y += tracex4
5bacd780 13hostprogs-y += tracex5
47efb302 14hostprogs-y += tracex6
cf9b1199 15hostprogs-y += test_probe_write_user
39111695 16hostprogs-y += trace_output
0fb1170e 17hostprogs-y += lathist
a6ffe7b9 18hostprogs-y += offwaketime
9d8b612d 19hostprogs-y += spintest
26e90931 20hostprogs-y += map_perf_test
e3edfdec 21hostprogs-y += test_overhead
a3f74617 22hostprogs-y += test_cgrp2_array_pin
d8c5b17f 23hostprogs-y += test_cgrp2_attach
9b474ece 24hostprogs-y += test_cgrp2_attach2
ad2805dc 25hostprogs-y += test_cgrp2_sock
554ae6e7 26hostprogs-y += test_cgrp2_sock2
86af8b41 27hostprogs-y += xdp1
764cbcce 28hostprogs-y += xdp2
3e29cd0e 29hostprogs-y += xdp_router_ipv4
9e6e60ec 30hostprogs-y += test_current_task_under_cgroup
1c47910e 31hostprogs-y += trace_event
72874418 32hostprogs-y += sampleip
90e02896 33hostprogs-y += tc_l2_redirect
f74599f7 34hostprogs-y += lwt_len_hist
12d8bb64 35hostprogs-y += xdp_tx_iptunnel
fb30d4b7 36hostprogs-y += test_map_in_map
51570a5a 37hostprogs-y += per_socket_stats_example
ae16189e 38hostprogs-y += load_sock_ops
832622e6 39hostprogs-y += xdp_redirect
9d6e0052 40hostprogs-y += xdp_redirect_map
fad3917e 41hostprogs-y += xdp_redirect_cpu
3ffab546 42hostprogs-y += xdp_monitor
1da236b6 43hostprogs-y += syscall_tp
3c731eba 44
43371c83 45# Libbpf dependencies
9899694a 46LIBBPF := ../../tools/lib/bpf/bpf.o
9d1f1594 47CGROUP_HELPERS := ../../tools/testing/selftests/bpf/cgroup_helpers.o
43371c83
JS
48
49test_lru_dist-objs := test_lru_dist.o $(LIBBPF)
50sock_example-objs := sock_example.o $(LIBBPF)
51fds_example-objs := bpf_load.o $(LIBBPF) fds_example.o
52sockex1-objs := bpf_load.o $(LIBBPF) sockex1_user.o
53sockex2-objs := bpf_load.o $(LIBBPF) sockex2_user.o
54sockex3-objs := bpf_load.o $(LIBBPF) sockex3_user.o
55tracex1-objs := bpf_load.o $(LIBBPF) tracex1_user.o
56tracex2-objs := bpf_load.o $(LIBBPF) tracex2_user.o
57tracex3-objs := bpf_load.o $(LIBBPF) tracex3_user.o
58tracex4-objs := bpf_load.o $(LIBBPF) tracex4_user.o
59tracex5-objs := bpf_load.o $(LIBBPF) tracex5_user.o
60tracex6-objs := bpf_load.o $(LIBBPF) tracex6_user.o
ae16189e 61load_sock_ops-objs := bpf_load.o $(LIBBPF) load_sock_ops.o
43371c83
JS
62test_probe_write_user-objs := bpf_load.o $(LIBBPF) test_probe_write_user_user.o
63trace_output-objs := bpf_load.o $(LIBBPF) trace_output_user.o
64lathist-objs := bpf_load.o $(LIBBPF) lathist_user.o
65offwaketime-objs := bpf_load.o $(LIBBPF) offwaketime_user.o
66spintest-objs := bpf_load.o $(LIBBPF) spintest_user.o
67map_perf_test-objs := bpf_load.o $(LIBBPF) map_perf_test_user.o
68test_overhead-objs := bpf_load.o $(LIBBPF) test_overhead_user.o
69test_cgrp2_array_pin-objs := $(LIBBPF) test_cgrp2_array_pin.o
70test_cgrp2_attach-objs := $(LIBBPF) test_cgrp2_attach.o
9d1f1594 71test_cgrp2_attach2-objs := $(LIBBPF) test_cgrp2_attach2.o $(CGROUP_HELPERS)
43371c83
JS
72test_cgrp2_sock-objs := $(LIBBPF) test_cgrp2_sock.o
73test_cgrp2_sock2-objs := bpf_load.o $(LIBBPF) test_cgrp2_sock2.o
74xdp1-objs := bpf_load.o $(LIBBPF) xdp1_user.o
764cbcce 75# reuse xdp1 source intentionally
43371c83 76xdp2-objs := bpf_load.o $(LIBBPF) xdp1_user.o
3e29cd0e 77xdp_router_ipv4-objs := bpf_load.o $(LIBBPF) xdp_router_ipv4_user.o
9d1f1594 78test_current_task_under_cgroup-objs := bpf_load.o $(LIBBPF) $(CGROUP_HELPERS) \
9e6e60ec 79 test_current_task_under_cgroup_user.o
43371c83
JS
80trace_event-objs := bpf_load.o $(LIBBPF) trace_event_user.o
81sampleip-objs := bpf_load.o $(LIBBPF) sampleip_user.o
82tc_l2_redirect-objs := bpf_load.o $(LIBBPF) tc_l2_redirect_user.o
83lwt_len_hist-objs := bpf_load.o $(LIBBPF) lwt_len_hist_user.o
84xdp_tx_iptunnel-objs := bpf_load.o $(LIBBPF) xdp_tx_iptunnel_user.o
fb30d4b7 85test_map_in_map-objs := bpf_load.o $(LIBBPF) test_map_in_map_user.o
51570a5a 86per_socket_stats_example-objs := $(LIBBPF) cookie_uid_helper_example.o
832622e6 87xdp_redirect-objs := bpf_load.o $(LIBBPF) xdp_redirect_user.o
9d6e0052 88xdp_redirect_map-objs := bpf_load.o $(LIBBPF) xdp_redirect_map_user.o
fad3917e 89xdp_redirect_cpu-objs := bpf_load.o $(LIBBPF) xdp_redirect_cpu_user.o
3ffab546 90xdp_monitor-objs := bpf_load.o $(LIBBPF) xdp_monitor_user.o
1da236b6 91syscall_tp-objs := bpf_load.o $(LIBBPF) syscall_tp_user.o
3c731eba
AS
92
93# Tell kbuild to always build the programs
94always := $(hostprogs-y)
a8085782 95always += sockex1_kern.o
fbe33108 96always += sockex2_kern.o
530b2c86 97always += sockex3_kern.o
b896c4f9 98always += tracex1_kern.o
d822a192 99always += tracex2_kern.o
5c7fc2d2 100always += tracex3_kern.o
9811e353 101always += tracex4_kern.o
5bacd780 102always += tracex5_kern.o
47efb302 103always += tracex6_kern.o
554ae6e7 104always += sock_flags_kern.o
cf9b1199 105always += test_probe_write_user_kern.o
39111695 106always += trace_output_kern.o
91bc4822 107always += tcbpf1_kern.o
6afb1e28 108always += tcbpf2_kern.o
90e02896 109always += tc_l2_redirect_kern.o
0fb1170e 110always += lathist_kern.o
a6ffe7b9 111always += offwaketime_kern.o
9d8b612d 112always += spintest_kern.o
26e90931 113always += map_perf_test_kern.o
e3edfdec
AS
114always += test_overhead_tp_kern.o
115always += test_overhead_kprobe_kern.o
65d472fb 116always += parse_varlen.o parse_simple.o parse_ldabs.o
a3f74617 117always += test_cgrp2_tc_kern.o
86af8b41 118always += xdp1_kern.o
764cbcce 119always += xdp2_kern.o
3e29cd0e 120always += xdp_router_ipv4_kern.o
9e6e60ec 121always += test_current_task_under_cgroup_kern.o
1c47910e 122always += trace_event_kern.o
72874418 123always += sampleip_kern.o
f74599f7 124always += lwt_len_hist_kern.o
12d8bb64 125always += xdp_tx_iptunnel_kern.o
fb30d4b7 126always += test_map_in_map_kern.o
51570a5a 127always += cookie_uid_helper_example.o
61bc4d8d 128always += tcp_synrto_kern.o
c400296b 129always += tcp_rwnd_kern.o
d9925368 130always += tcp_bufs_kern.o
bb56d444 131always += tcp_cong_kern.o
7bc62e28 132always += tcp_iw_kern.o
6c4a01b2 133always += tcp_clamp_kern.o
c890063e 134always += tcp_basertt_kern.o
832622e6 135always += xdp_redirect_kern.o
9d6e0052 136always += xdp_redirect_map_kern.o
fad3917e 137always += xdp_redirect_cpu_kern.o
3ffab546 138always += xdp_monitor_kern.o
1da236b6 139always += syscall_tp_kern.o
3c731eba
AS
140
141HOSTCFLAGS += -I$(objtree)/usr/include
43371c83 142HOSTCFLAGS += -I$(srctree)/tools/lib/
9bee294f 143HOSTCFLAGS += -I$(srctree)/tools/testing/selftests/bpf/
205c8ada
JS
144HOSTCFLAGS += -I$(srctree)/tools/lib/ -I$(srctree)/tools/include
145HOSTCFLAGS += -I$(srctree)/tools/perf
a8085782
AS
146
147HOSTCFLAGS_bpf_load.o += -I$(objtree)/usr/include -Wno-unused-variable
42984d7c 148HOSTLOADLIBES_fds_example += -lelf
a8085782 149HOSTLOADLIBES_sockex1 += -lelf
fbe33108 150HOSTLOADLIBES_sockex2 += -lelf
530b2c86 151HOSTLOADLIBES_sockex3 += -lelf
b896c4f9 152HOSTLOADLIBES_tracex1 += -lelf
d822a192 153HOSTLOADLIBES_tracex2 += -lelf
5c7fc2d2 154HOSTLOADLIBES_tracex3 += -lelf
9811e353 155HOSTLOADLIBES_tracex4 += -lelf -lrt
5bacd780 156HOSTLOADLIBES_tracex5 += -lelf
47efb302 157HOSTLOADLIBES_tracex6 += -lelf
554ae6e7 158HOSTLOADLIBES_test_cgrp2_sock2 += -lelf
ae16189e 159HOSTLOADLIBES_load_sock_ops += -lelf
cf9b1199 160HOSTLOADLIBES_test_probe_write_user += -lelf
39111695 161HOSTLOADLIBES_trace_output += -lelf -lrt
0fb1170e 162HOSTLOADLIBES_lathist += -lelf
a6ffe7b9 163HOSTLOADLIBES_offwaketime += -lelf
9d8b612d 164HOSTLOADLIBES_spintest += -lelf
26e90931 165HOSTLOADLIBES_map_perf_test += -lelf -lrt
e3edfdec 166HOSTLOADLIBES_test_overhead += -lelf -lrt
86af8b41 167HOSTLOADLIBES_xdp1 += -lelf
764cbcce 168HOSTLOADLIBES_xdp2 += -lelf
3e29cd0e 169HOSTLOADLIBES_xdp_router_ipv4 += -lelf
9e6e60ec 170HOSTLOADLIBES_test_current_task_under_cgroup += -lelf
1c47910e 171HOSTLOADLIBES_trace_event += -lelf
72874418 172HOSTLOADLIBES_sampleip += -lelf
90e02896 173HOSTLOADLIBES_tc_l2_redirect += -l elf
f74599f7 174HOSTLOADLIBES_lwt_len_hist += -l elf
12d8bb64 175HOSTLOADLIBES_xdp_tx_iptunnel += -lelf
fb30d4b7 176HOSTLOADLIBES_test_map_in_map += -lelf
832622e6 177HOSTLOADLIBES_xdp_redirect += -lelf
9d6e0052 178HOSTLOADLIBES_xdp_redirect_map += -lelf
fad3917e 179HOSTLOADLIBES_xdp_redirect_cpu += -lelf
3ffab546 180HOSTLOADLIBES_xdp_monitor += -lelf
1da236b6 181HOSTLOADLIBES_syscall_tp += -lelf
a8085782 182
bdefbbf2
JDB
183# Allows pointing LLC/CLANG to a LLVM backend with bpf support, redefine on cmdline:
184# make samples/bpf/ LLC=~/git/llvm/build/bin/llc CLANG=~/git/llvm/build/bin/clang
6ccfba75 185LLC ?= llc
bdefbbf2 186CLANG ?= clang
6ccfba75 187
876e88e3
JF
188# Detect that we're cross compiling and use the cross compiler
189ifdef CROSS_COMPILE
190HOSTCC = $(CROSS_COMPILE)gcc
9db95838 191CLANG_ARCH_ARGS = -target $(ARCH)
876e88e3
JF
192endif
193
b62a796c
JDB
194# Trick to allow make to be run from this directory
195all:
e19b7cee 196 $(MAKE) -C ../../ $(CURDIR)/
b62a796c
JDB
197
198clean:
e19b7cee 199 $(MAKE) -C ../../ M=$(CURDIR) clean
b62a796c
JDB
200 @rm -f *~
201
4b7190e8
DD
202$(obj)/syscall_nrs.s: $(src)/syscall_nrs.c
203 $(call if_changed_dep,cc_s_c)
204
205$(obj)/syscall_nrs.h: $(obj)/syscall_nrs.s FORCE
206 $(call filechk,offsets,__SYSCALL_NRS_H__)
207
208clean-files += syscall_nrs.h
209
210FORCE:
211
212
bdefbbf2
JDB
213# Verify LLVM compiler tools are available and bpf target is supported by llc
214.PHONY: verify_cmds verify_target_bpf $(CLANG) $(LLC)
7b01dd57 215
bdefbbf2
JDB
216verify_cmds: $(CLANG) $(LLC)
217 @for TOOL in $^ ; do \
218 if ! (which -- "$${TOOL}" > /dev/null 2>&1); then \
219 echo "*** ERROR: Cannot find LLVM tool $${TOOL}" ;\
220 exit 1; \
221 else true; fi; \
222 done
7b01dd57 223
bdefbbf2 224verify_target_bpf: verify_cmds
7b01dd57
JDB
225 @if ! (${LLC} -march=bpf -mattr=help > /dev/null 2>&1); then \
226 echo "*** ERROR: LLVM (${LLC}) does not support 'bpf' target" ;\
227 echo " NOTICE: LLVM version >= 3.7.1 required" ;\
228 exit 2; \
229 else true; fi
230
231$(src)/*.c: verify_target_bpf
232
4b7190e8
DD
233$(obj)/tracex5_kern.o: $(obj)/syscall_nrs.h
234
128d1514
NR
235# asm/sysreg.h - inline assembly used by it is incompatible with llvm.
236# But, there is no easy way to fix it, so just exclude it since it is
30b50aa6 237# useless for BPF samples.
b88c06e3 238$(obj)/%.o: $(src)/%.c
00a3855d 239 $(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(EXTRA_CFLAGS) -I$(obj) \
53335022 240 -I$(srctree)/tools/testing/selftests/bpf/ \
9db95838 241 -D__KERNEL__ -Wno-unused-value -Wno-pointer-sign \
b655fc1c 242 -D__TARGET_ARCH_$(ARCH) -Wno-compare-distinct-pointer-types \
69a9d09b
AS
243 -Wno-gnu-variable-sized-type-not-at-end \
244 -Wno-address-of-packed-member -Wno-tautological-compare \
9db95838 245 -Wno-unknown-warning-option $(CLANG_ARCH_ARGS) \
6ccfba75 246 -O2 -emit-llvm -c $< -o -| $(LLC) -march=bpf -filetype=obj -o $@
This page took 0.419586 seconds and 4 git commands to generate.