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