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