xref: /openbmc/linux/samples/bpf/Makefile (revision 4562236b)
1# kbuild trick to avoid linker error. Can be omitted if a module is built.
2obj- := dummy.o
3
4# List of programs to build
5hostprogs-y := test_lru_dist
6hostprogs-y += sock_example
7hostprogs-y += fds_example
8hostprogs-y += sockex1
9hostprogs-y += sockex2
10hostprogs-y += sockex3
11hostprogs-y += tracex1
12hostprogs-y += tracex2
13hostprogs-y += tracex3
14hostprogs-y += tracex4
15hostprogs-y += tracex5
16hostprogs-y += tracex6
17hostprogs-y += test_probe_write_user
18hostprogs-y += trace_output
19hostprogs-y += lathist
20hostprogs-y += offwaketime
21hostprogs-y += spintest
22hostprogs-y += map_perf_test
23hostprogs-y += test_overhead
24hostprogs-y += test_cgrp2_array_pin
25hostprogs-y += test_cgrp2_attach
26hostprogs-y += test_cgrp2_attach2
27hostprogs-y += test_cgrp2_sock
28hostprogs-y += test_cgrp2_sock2
29hostprogs-y += xdp1
30hostprogs-y += xdp2
31hostprogs-y += test_current_task_under_cgroup
32hostprogs-y += trace_event
33hostprogs-y += sampleip
34hostprogs-y += tc_l2_redirect
35hostprogs-y += lwt_len_hist
36hostprogs-y += xdp_tx_iptunnel
37hostprogs-y += test_map_in_map
38hostprogs-y += per_socket_stats_example
39hostprogs-y += load_sock_ops
40
41# Libbpf dependencies
42LIBBPF := ../../tools/lib/bpf/bpf.o
43
44test_lru_dist-objs := test_lru_dist.o $(LIBBPF)
45sock_example-objs := sock_example.o $(LIBBPF)
46fds_example-objs := bpf_load.o $(LIBBPF) fds_example.o
47sockex1-objs := bpf_load.o $(LIBBPF) sockex1_user.o
48sockex2-objs := bpf_load.o $(LIBBPF) sockex2_user.o
49sockex3-objs := bpf_load.o $(LIBBPF) sockex3_user.o
50tracex1-objs := bpf_load.o $(LIBBPF) tracex1_user.o
51tracex2-objs := bpf_load.o $(LIBBPF) tracex2_user.o
52tracex3-objs := bpf_load.o $(LIBBPF) tracex3_user.o
53tracex4-objs := bpf_load.o $(LIBBPF) tracex4_user.o
54tracex5-objs := bpf_load.o $(LIBBPF) tracex5_user.o
55tracex6-objs := bpf_load.o $(LIBBPF) tracex6_user.o
56load_sock_ops-objs := bpf_load.o $(LIBBPF) load_sock_ops.o
57test_probe_write_user-objs := bpf_load.o $(LIBBPF) test_probe_write_user_user.o
58trace_output-objs := bpf_load.o $(LIBBPF) trace_output_user.o
59lathist-objs := bpf_load.o $(LIBBPF) lathist_user.o
60offwaketime-objs := bpf_load.o $(LIBBPF) offwaketime_user.o
61spintest-objs := bpf_load.o $(LIBBPF) spintest_user.o
62map_perf_test-objs := bpf_load.o $(LIBBPF) map_perf_test_user.o
63test_overhead-objs := bpf_load.o $(LIBBPF) test_overhead_user.o
64test_cgrp2_array_pin-objs := $(LIBBPF) test_cgrp2_array_pin.o
65test_cgrp2_attach-objs := $(LIBBPF) test_cgrp2_attach.o
66test_cgrp2_attach2-objs := $(LIBBPF) test_cgrp2_attach2.o cgroup_helpers.o
67test_cgrp2_sock-objs := $(LIBBPF) test_cgrp2_sock.o
68test_cgrp2_sock2-objs := bpf_load.o $(LIBBPF) test_cgrp2_sock2.o
69xdp1-objs := bpf_load.o $(LIBBPF) xdp1_user.o
70# reuse xdp1 source intentionally
71xdp2-objs := bpf_load.o $(LIBBPF) xdp1_user.o
72test_current_task_under_cgroup-objs := bpf_load.o $(LIBBPF) cgroup_helpers.o \
73				       test_current_task_under_cgroup_user.o
74trace_event-objs := bpf_load.o $(LIBBPF) trace_event_user.o
75sampleip-objs := bpf_load.o $(LIBBPF) sampleip_user.o
76tc_l2_redirect-objs := bpf_load.o $(LIBBPF) tc_l2_redirect_user.o
77lwt_len_hist-objs := bpf_load.o $(LIBBPF) lwt_len_hist_user.o
78xdp_tx_iptunnel-objs := bpf_load.o $(LIBBPF) xdp_tx_iptunnel_user.o
79test_map_in_map-objs := bpf_load.o $(LIBBPF) test_map_in_map_user.o
80per_socket_stats_example-objs := $(LIBBPF) cookie_uid_helper_example.o
81
82# Tell kbuild to always build the programs
83always := $(hostprogs-y)
84always += sockex1_kern.o
85always += sockex2_kern.o
86always += sockex3_kern.o
87always += tracex1_kern.o
88always += tracex2_kern.o
89always += tracex3_kern.o
90always += tracex4_kern.o
91always += tracex5_kern.o
92always += tracex6_kern.o
93always += sock_flags_kern.o
94always += test_probe_write_user_kern.o
95always += trace_output_kern.o
96always += tcbpf1_kern.o
97always += tcbpf2_kern.o
98always += tc_l2_redirect_kern.o
99always += lathist_kern.o
100always += offwaketime_kern.o
101always += spintest_kern.o
102always += map_perf_test_kern.o
103always += test_overhead_tp_kern.o
104always += test_overhead_kprobe_kern.o
105always += parse_varlen.o parse_simple.o parse_ldabs.o
106always += test_cgrp2_tc_kern.o
107always += xdp1_kern.o
108always += xdp2_kern.o
109always += test_current_task_under_cgroup_kern.o
110always += trace_event_kern.o
111always += sampleip_kern.o
112always += lwt_len_hist_kern.o
113always += xdp_tx_iptunnel_kern.o
114always += test_map_in_map_kern.o
115always += cookie_uid_helper_example.o
116always += tcp_synrto_kern.o
117always += tcp_rwnd_kern.o
118always += tcp_bufs_kern.o
119always += tcp_cong_kern.o
120always += tcp_iw_kern.o
121always += tcp_clamp_kern.o
122
123HOSTCFLAGS += -I$(objtree)/usr/include
124HOSTCFLAGS += -I$(srctree)/tools/lib/
125HOSTCFLAGS += -I$(srctree)/tools/testing/selftests/bpf/
126HOSTCFLAGS += -I$(srctree)/tools/lib/ -I$(srctree)/tools/include
127HOSTCFLAGS += -I$(srctree)/tools/perf
128
129HOSTCFLAGS_bpf_load.o += -I$(objtree)/usr/include -Wno-unused-variable
130HOSTLOADLIBES_fds_example += -lelf
131HOSTLOADLIBES_sockex1 += -lelf
132HOSTLOADLIBES_sockex2 += -lelf
133HOSTLOADLIBES_sockex3 += -lelf
134HOSTLOADLIBES_tracex1 += -lelf
135HOSTLOADLIBES_tracex2 += -lelf
136HOSTLOADLIBES_tracex3 += -lelf
137HOSTLOADLIBES_tracex4 += -lelf -lrt
138HOSTLOADLIBES_tracex5 += -lelf
139HOSTLOADLIBES_tracex6 += -lelf
140HOSTLOADLIBES_test_cgrp2_sock2 += -lelf
141HOSTLOADLIBES_load_sock_ops += -lelf
142HOSTLOADLIBES_test_probe_write_user += -lelf
143HOSTLOADLIBES_trace_output += -lelf -lrt
144HOSTLOADLIBES_lathist += -lelf
145HOSTLOADLIBES_offwaketime += -lelf
146HOSTLOADLIBES_spintest += -lelf
147HOSTLOADLIBES_map_perf_test += -lelf -lrt
148HOSTLOADLIBES_test_overhead += -lelf -lrt
149HOSTLOADLIBES_xdp1 += -lelf
150HOSTLOADLIBES_xdp2 += -lelf
151HOSTLOADLIBES_test_current_task_under_cgroup += -lelf
152HOSTLOADLIBES_trace_event += -lelf
153HOSTLOADLIBES_sampleip += -lelf
154HOSTLOADLIBES_tc_l2_redirect += -l elf
155HOSTLOADLIBES_lwt_len_hist += -l elf
156HOSTLOADLIBES_xdp_tx_iptunnel += -lelf
157HOSTLOADLIBES_test_map_in_map += -lelf
158
159# Allows pointing LLC/CLANG to a LLVM backend with bpf support, redefine on cmdline:
160#  make samples/bpf/ LLC=~/git/llvm/build/bin/llc CLANG=~/git/llvm/build/bin/clang
161LLC ?= llc
162CLANG ?= clang
163
164# Trick to allow make to be run from this directory
165all:
166	$(MAKE) -C ../../ $(CURDIR)/
167
168clean:
169	$(MAKE) -C ../../ M=$(CURDIR) clean
170	@rm -f *~
171
172$(obj)/syscall_nrs.s:	$(src)/syscall_nrs.c
173	$(call if_changed_dep,cc_s_c)
174
175$(obj)/syscall_nrs.h:	$(obj)/syscall_nrs.s FORCE
176	$(call filechk,offsets,__SYSCALL_NRS_H__)
177
178clean-files += syscall_nrs.h
179
180FORCE:
181
182
183# Verify LLVM compiler tools are available and bpf target is supported by llc
184.PHONY: verify_cmds verify_target_bpf $(CLANG) $(LLC)
185
186verify_cmds: $(CLANG) $(LLC)
187	@for TOOL in $^ ; do \
188		if ! (which -- "$${TOOL}" > /dev/null 2>&1); then \
189			echo "*** ERROR: Cannot find LLVM tool $${TOOL}" ;\
190			exit 1; \
191		else true; fi; \
192	done
193
194verify_target_bpf: verify_cmds
195	@if ! (${LLC} -march=bpf -mattr=help > /dev/null 2>&1); then \
196		echo "*** ERROR: LLVM (${LLC}) does not support 'bpf' target" ;\
197		echo "   NOTICE: LLVM version >= 3.7.1 required" ;\
198		exit 2; \
199	else true; fi
200
201$(src)/*.c: verify_target_bpf
202
203$(obj)/tracex5_kern.o: $(obj)/syscall_nrs.h
204
205# asm/sysreg.h - inline assembly used by it is incompatible with llvm.
206# But, there is no easy way to fix it, so just exclude it since it is
207# useless for BPF samples.
208$(obj)/%.o: $(src)/%.c
209	$(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(EXTRA_CFLAGS) -I$(obj) \
210		-I$(srctree)/tools/testing/selftests/bpf/ \
211		-D__KERNEL__ -D__ASM_SYSREG_H -Wno-unused-value -Wno-pointer-sign \
212		-Wno-compare-distinct-pointer-types \
213		-Wno-gnu-variable-sized-type-not-at-end \
214		-Wno-address-of-packed-member -Wno-tautological-compare \
215		-Wno-unknown-warning-option \
216		-O2 -emit-llvm -c $< -o -| $(LLC) -march=bpf -filetype=obj -o $@
217