mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-28 13:02:59 +00:00
[ Upstream commit0ae065a5d2] Avi Kivity reported a problem where the __weak btf__load_from_kernel_by_id() in tools/perf/util/bpf-event.c was being used and it called btf__get_from_id() in tools/lib/bpf/btf.c that in turn called back to btf__load_from_kernel_by_id(), resulting in an endless loop. Fix this by adding a feature test to check if btf__load_from_kernel_by_id() is available when building perf with LIBBPF_DYNAMIC=1, and if not then provide the fallback to the old btf__get_from_id(), that doesn't call back to btf__load_from_kernel_by_id() since at that time it didn't exist at all. Tested on Fedora 35 where we have libbpf-devel 0.4.0 with LIBBPF_DYNAMIC where we don't have btf__load_from_kernel_by_id() and thus its feature test fail, not defining HAVE_LIBBPF_BTF__LOAD_FROM_KERNEL_BY_ID: $ cat /tmp/build/perf-urgent/feature/test-libbpf-btf__load_from_kernel_by_id.make.output test-libbpf-btf__load_from_kernel_by_id.c: In function ‘main’: test-libbpf-btf__load_from_kernel_by_id.c:6:16: error: implicit declaration of function ‘btf__load_from_kernel_by_id’ [-Werror=implicit-function-declaration] 6 | return btf__load_from_kernel_by_id(20151128, NULL); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ cc1: all warnings being treated as errors $ $ nm /tmp/build/perf-urgent/perf | grep btf__load_from_kernel_by_id 00000000005ba180 T btf__load_from_kernel_by_id $ $ objdump --disassemble=btf__load_from_kernel_by_id -S /tmp/build/perf-urgent/perf /tmp/build/perf-urgent/perf: file format elf64-x86-64 <SNIP> 00000000005ba180 <btf__load_from_kernel_by_id>: #include "record.h" #include "util/synthetic-events.h" #ifndef HAVE_LIBBPF_BTF__LOAD_FROM_KERNEL_BY_ID struct btf *btf__load_from_kernel_by_id(__u32 id) { 5ba180: 55 push %rbp 5ba181: 48 89 e5 mov %rsp,%rbp 5ba184: 48 83 ec 10 sub $0x10,%rsp 5ba188: 64 48 8b 04 25 28 00 mov %fs:0x28,%rax 5ba18f: 00 00 5ba191: 48 89 45 f8 mov %rax,-0x8(%rbp) 5ba195: 31 c0 xor %eax,%eax struct btf *btf; #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" int err = btf__get_from_id(id, &btf); 5ba197: 48 8d 75 f0 lea -0x10(%rbp),%rsi 5ba19b: e8 a0 57 e5 ff call 40f940 <btf__get_from_id@plt> 5ba1a0: 89 c2 mov %eax,%edx #pragma GCC diagnostic pop return err ? ERR_PTR(err) : btf; 5ba1a2: 48 98 cltq 5ba1a4: 85 d2 test %edx,%edx 5ba1a6: 48 0f 44 45 f0 cmove -0x10(%rbp),%rax } <SNIP> Fixes:218e7b775d("perf bpf: Provide a weak btf__load_from_kernel_by_id() for older libbpf versions") Reported-by: Avi Kivity <avi@scylladb.com> Link: https://lore.kernel.org/linux-perf-users/f0add43b-3de5-20c5-22c4-70aff4af959f@scylladb.com Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Ian Rogers <irogers@google.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lore.kernel.org/linux-perf-users/YobjjFOblY4Xvwo7@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
351 lines
9.7 KiB
Makefile
351 lines
9.7 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
include ../../scripts/Makefile.include
|
|
|
|
FILES= \
|
|
test-all.bin \
|
|
test-backtrace.bin \
|
|
test-bionic.bin \
|
|
test-dwarf.bin \
|
|
test-dwarf_getlocations.bin \
|
|
test-eventfd.bin \
|
|
test-fortify-source.bin \
|
|
test-get_current_dir_name.bin \
|
|
test-glibc.bin \
|
|
test-gtk2.bin \
|
|
test-gtk2-infobar.bin \
|
|
test-hello.bin \
|
|
test-libaudit.bin \
|
|
test-libbfd.bin \
|
|
test-libbfd-buildid.bin \
|
|
test-disassembler-four-args.bin \
|
|
test-reallocarray.bin \
|
|
test-libbfd-liberty.bin \
|
|
test-libbfd-liberty-z.bin \
|
|
test-cplus-demangle.bin \
|
|
test-libcap.bin \
|
|
test-libelf.bin \
|
|
test-libelf-getphdrnum.bin \
|
|
test-libelf-gelf_getnote.bin \
|
|
test-libelf-getshdrstrndx.bin \
|
|
test-libdebuginfod.bin \
|
|
test-libnuma.bin \
|
|
test-numa_num_possible_cpus.bin \
|
|
test-libperl.bin \
|
|
test-libpython.bin \
|
|
test-libslang.bin \
|
|
test-libslang-include-subdir.bin \
|
|
test-libtraceevent.bin \
|
|
test-libcrypto.bin \
|
|
test-libunwind.bin \
|
|
test-libunwind-debug-frame.bin \
|
|
test-libunwind-x86.bin \
|
|
test-libunwind-x86_64.bin \
|
|
test-libunwind-arm.bin \
|
|
test-libunwind-aarch64.bin \
|
|
test-libunwind-debug-frame-arm.bin \
|
|
test-libunwind-debug-frame-aarch64.bin \
|
|
test-pthread-attr-setaffinity-np.bin \
|
|
test-pthread-barrier.bin \
|
|
test-stackprotector-all.bin \
|
|
test-timerfd.bin \
|
|
test-libdw-dwarf-unwind.bin \
|
|
test-libbabeltrace.bin \
|
|
test-compile-32.bin \
|
|
test-compile-x32.bin \
|
|
test-zlib.bin \
|
|
test-lzma.bin \
|
|
test-bpf.bin \
|
|
test-libbpf.bin \
|
|
test-libbpf-btf__load_from_kernel_by_id.bin \
|
|
test-get_cpuid.bin \
|
|
test-sdt.bin \
|
|
test-cxx.bin \
|
|
test-gettid.bin \
|
|
test-jvmti.bin \
|
|
test-jvmti-cmlr.bin \
|
|
test-sched_getcpu.bin \
|
|
test-setns.bin \
|
|
test-libopencsd.bin \
|
|
test-clang.bin \
|
|
test-llvm.bin \
|
|
test-llvm-version.bin \
|
|
test-libaio.bin \
|
|
test-libzstd.bin \
|
|
test-clang-bpf-co-re.bin \
|
|
test-file-handle.bin \
|
|
test-libpfm4.bin
|
|
|
|
FILES := $(addprefix $(OUTPUT),$(FILES))
|
|
|
|
PKG_CONFIG ?= $(CROSS_COMPILE)pkg-config
|
|
|
|
all: $(FILES)
|
|
|
|
__BUILD = $(CC) $(CFLAGS) -MD -Wall -Werror -o $@ $(patsubst %.bin,%.c,$(@F)) $(LDFLAGS)
|
|
BUILD = $(__BUILD) > $(@:.bin=.make.output) 2>&1
|
|
|
|
__BUILDXX = $(CXX) $(CXXFLAGS) -MD -Wall -Werror -o $@ $(patsubst %.bin,%.cpp,$(@F)) $(LDFLAGS)
|
|
BUILDXX = $(__BUILDXX) > $(@:.bin=.make.output) 2>&1
|
|
|
|
###############################
|
|
|
|
$(OUTPUT)test-all.bin:
|
|
$(BUILD) -fstack-protector-all -O2 -D_FORTIFY_SOURCE=2 -ldw -lelf -lnuma -lelf -I/usr/include/slang -lslang $(FLAGS_PERL_EMBED) $(FLAGS_PYTHON_EMBED) -DPACKAGE='"perf"' -lbfd -ldl -lz -llzma -lzstd -lcap
|
|
|
|
$(OUTPUT)test-hello.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-pthread-attr-setaffinity-np.bin:
|
|
$(BUILD) -D_GNU_SOURCE -lpthread
|
|
|
|
$(OUTPUT)test-pthread-barrier.bin:
|
|
$(BUILD) -lpthread
|
|
|
|
$(OUTPUT)test-stackprotector-all.bin:
|
|
$(BUILD) -fstack-protector-all
|
|
|
|
$(OUTPUT)test-fortify-source.bin:
|
|
$(BUILD) -O2 -D_FORTIFY_SOURCE=2
|
|
|
|
$(OUTPUT)test-bionic.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-libcap.bin:
|
|
$(BUILD) -lcap
|
|
|
|
$(OUTPUT)test-libelf.bin:
|
|
$(BUILD) -lelf
|
|
|
|
$(OUTPUT)test-eventfd.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-get_current_dir_name.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-glibc.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-sched_getcpu.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-setns.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-libopencsd.bin:
|
|
$(BUILD) # -lopencsd_c_api -lopencsd provided by
|
|
# $(FEATURE_CHECK_LDFLAGS-libopencsd)
|
|
|
|
DWARFLIBS := -ldw
|
|
ifeq ($(findstring -static,${LDFLAGS}),-static)
|
|
DWARFLIBS += -lelf -lebl -lz -llzma -lbz2
|
|
endif
|
|
|
|
$(OUTPUT)test-dwarf.bin:
|
|
$(BUILD) $(DWARFLIBS)
|
|
|
|
$(OUTPUT)test-dwarf_getlocations.bin:
|
|
$(BUILD) $(DWARFLIBS)
|
|
|
|
$(OUTPUT)test-libelf-getphdrnum.bin:
|
|
$(BUILD) -lelf
|
|
|
|
$(OUTPUT)test-libelf-gelf_getnote.bin:
|
|
$(BUILD) -lelf
|
|
|
|
$(OUTPUT)test-libelf-getshdrstrndx.bin:
|
|
$(BUILD) -lelf
|
|
|
|
$(OUTPUT)test-libdebuginfod.bin:
|
|
$(BUILD) -ldebuginfod
|
|
|
|
$(OUTPUT)test-libnuma.bin:
|
|
$(BUILD) -lnuma
|
|
|
|
$(OUTPUT)test-numa_num_possible_cpus.bin:
|
|
$(BUILD) -lnuma
|
|
|
|
$(OUTPUT)test-libunwind.bin:
|
|
$(BUILD) -lelf
|
|
|
|
$(OUTPUT)test-libunwind-debug-frame.bin:
|
|
$(BUILD) -lelf
|
|
$(OUTPUT)test-libunwind-x86.bin:
|
|
$(BUILD) -lelf -lunwind-x86
|
|
|
|
$(OUTPUT)test-libunwind-x86_64.bin:
|
|
$(BUILD) -lelf -lunwind-x86_64
|
|
|
|
$(OUTPUT)test-libunwind-arm.bin:
|
|
$(BUILD) -lelf -lunwind-arm
|
|
|
|
$(OUTPUT)test-libunwind-aarch64.bin:
|
|
$(BUILD) -lelf -lunwind-aarch64
|
|
|
|
$(OUTPUT)test-libunwind-debug-frame-arm.bin:
|
|
$(BUILD) -lelf -lunwind-arm
|
|
|
|
$(OUTPUT)test-libunwind-debug-frame-aarch64.bin:
|
|
$(BUILD) -lelf -lunwind-aarch64
|
|
|
|
$(OUTPUT)test-libaudit.bin:
|
|
$(BUILD) -laudit
|
|
|
|
$(OUTPUT)test-libslang.bin:
|
|
$(BUILD) -lslang
|
|
|
|
$(OUTPUT)test-libslang-include-subdir.bin:
|
|
$(BUILD) -lslang
|
|
|
|
$(OUTPUT)test-libtraceevent.bin:
|
|
$(BUILD) -ltraceevent
|
|
|
|
$(OUTPUT)test-libcrypto.bin:
|
|
$(BUILD) -lcrypto
|
|
|
|
$(OUTPUT)test-gtk2.bin:
|
|
$(BUILD) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) -Wno-deprecated-declarations
|
|
|
|
$(OUTPUT)test-gtk2-infobar.bin:
|
|
$(BUILD) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
|
|
|
|
grep-libs = $(filter -l%,$(1))
|
|
strip-libs = $(filter-out -l%,$(1))
|
|
|
|
PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
|
|
PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
|
|
PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
|
|
PERL_EMBED_CCOPTS = $(shell perl -MExtUtils::Embed -e ccopts 2>/dev/null)
|
|
FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
|
|
|
|
ifeq ($(CC_NO_CLANG), 0)
|
|
PERL_EMBED_LDOPTS := $(filter-out -specs=%,$(PERL_EMBED_LDOPTS))
|
|
PERL_EMBED_CCOPTS := $(filter-out -flto=auto -ffat-lto-objects, $(PERL_EMBED_CCOPTS))
|
|
PERL_EMBED_CCOPTS := $(filter-out -specs=%,$(PERL_EMBED_CCOPTS))
|
|
FLAGS_PERL_EMBED += -Wno-compound-token-split-by-macro
|
|
endif
|
|
|
|
$(OUTPUT)test-libperl.bin:
|
|
$(BUILD) $(FLAGS_PERL_EMBED)
|
|
|
|
$(OUTPUT)test-libpython.bin:
|
|
$(BUILD) $(FLAGS_PYTHON_EMBED)
|
|
|
|
$(OUTPUT)test-libbfd.bin:
|
|
$(BUILD) -DPACKAGE='"perf"' -lbfd -ldl
|
|
|
|
$(OUTPUT)test-libbfd-buildid.bin:
|
|
$(BUILD) -DPACKAGE='"perf"' -lbfd -ldl
|
|
|
|
$(OUTPUT)test-disassembler-four-args.bin:
|
|
$(BUILD) -DPACKAGE='"perf"' -lbfd -lopcodes
|
|
|
|
$(OUTPUT)test-reallocarray.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-libbfd-liberty.bin:
|
|
$(CC) $(CFLAGS) -Wall -Werror -o $@ test-libbfd.c -DPACKAGE='"perf"' $(LDFLAGS) -lbfd -ldl -liberty
|
|
|
|
$(OUTPUT)test-libbfd-liberty-z.bin:
|
|
$(CC) $(CFLAGS) -Wall -Werror -o $@ test-libbfd.c -DPACKAGE='"perf"' $(LDFLAGS) -lbfd -ldl -liberty -lz
|
|
|
|
$(OUTPUT)test-cplus-demangle.bin:
|
|
$(BUILD) -liberty
|
|
|
|
$(OUTPUT)test-backtrace.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-timerfd.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-libdw-dwarf-unwind.bin:
|
|
$(BUILD) # -ldw provided by $(FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind)
|
|
|
|
$(OUTPUT)test-libbabeltrace.bin:
|
|
$(BUILD) # -lbabeltrace provided by $(FEATURE_CHECK_LDFLAGS-libbabeltrace)
|
|
|
|
$(OUTPUT)test-compile-32.bin:
|
|
$(CC) -m32 -o $@ test-compile.c
|
|
|
|
$(OUTPUT)test-compile-x32.bin:
|
|
$(CC) -mx32 -o $@ test-compile.c
|
|
|
|
$(OUTPUT)test-zlib.bin:
|
|
$(BUILD) -lz
|
|
|
|
$(OUTPUT)test-lzma.bin:
|
|
$(BUILD) -llzma
|
|
|
|
$(OUTPUT)test-get_cpuid.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-bpf.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-libbpf.bin:
|
|
$(BUILD) -lbpf
|
|
|
|
$(OUTPUT)test-libbpf-btf__load_from_kernel_by_id.bin:
|
|
$(BUILD) -lbpf
|
|
|
|
$(OUTPUT)test-sdt.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-cxx.bin:
|
|
$(BUILDXX) -std=gnu++11
|
|
|
|
$(OUTPUT)test-gettid.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-jvmti.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-jvmti-cmlr.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-llvm.bin:
|
|
$(BUILDXX) -std=gnu++11 \
|
|
-I$(shell $(LLVM_CONFIG) --includedir) \
|
|
-L$(shell $(LLVM_CONFIG) --libdir) \
|
|
$(shell $(LLVM_CONFIG) --libs Core BPF) \
|
|
$(shell $(LLVM_CONFIG) --system-libs) \
|
|
> $(@:.bin=.make.output) 2>&1
|
|
|
|
$(OUTPUT)test-llvm-version.bin:
|
|
$(BUILDXX) -std=gnu++11 \
|
|
-I$(shell $(LLVM_CONFIG) --includedir) \
|
|
> $(@:.bin=.make.output) 2>&1
|
|
|
|
$(OUTPUT)test-clang.bin:
|
|
$(BUILDXX) -std=gnu++11 \
|
|
-I$(shell $(LLVM_CONFIG) --includedir) \
|
|
-L$(shell $(LLVM_CONFIG) --libdir) \
|
|
-Wl,--start-group -lclangBasic -lclangDriver \
|
|
-lclangFrontend -lclangEdit -lclangLex \
|
|
-lclangAST -Wl,--end-group \
|
|
$(shell $(LLVM_CONFIG) --libs Core option) \
|
|
$(shell $(LLVM_CONFIG) --system-libs) \
|
|
> $(@:.bin=.make.output) 2>&1
|
|
|
|
-include $(OUTPUT)*.d
|
|
|
|
$(OUTPUT)test-libaio.bin:
|
|
$(BUILD) -lrt
|
|
|
|
$(OUTPUT)test-libzstd.bin:
|
|
$(BUILD) -lzstd
|
|
|
|
$(OUTPUT)test-clang-bpf-co-re.bin:
|
|
$(CLANG) -S -g -target bpf -o - $(patsubst %.bin,%.c,$(@F)) | \
|
|
grep BTF_KIND_VAR
|
|
|
|
$(OUTPUT)test-file-handle.bin:
|
|
$(BUILD)
|
|
|
|
$(OUTPUT)test-libpfm4.bin:
|
|
$(BUILD) -lpfm
|
|
|
|
###############################
|
|
|
|
clean:
|
|
rm -f $(FILES) $(OUTPUT)*.d $(FILES:.bin=.make.output)
|