2018-06-02 20:44:08 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+ OR MIT
|
2019-04-29 23:28:03 +08:00
|
|
|
|
|
|
|
ifneq ($(shell $(CC) --version 2>&1 | head -n 1 | grep clang),)
|
|
|
|
CLANG_FLAGS += -no-integrated-as
|
|
|
|
endif
|
|
|
|
|
2020-02-20 19:37:48 +08:00
|
|
|
CFLAGS += -O2 -Wall -g -I./ -I../../../../usr/include/ -L$(OUTPUT) -Wl,-rpath=./ \
|
2019-04-29 23:28:03 +08:00
|
|
|
$(CLANG_FLAGS)
|
selftests/rseq: Uplift rseq selftests for compatibility with glibc-2.35
glibc-2.35 (upcoming release date 2022-02-01) exposes the rseq per-thread
data in the TCB, accessible at an offset from the thread pointer, rather
than through an actual Thread-Local Storage (TLS) variable, as the
Linux kernel selftests initially expected.
The __rseq_abi TLS and glibc-2.35's ABI for per-thread data cannot
actively coexist in a process, because the kernel supports only a single
rseq registration per thread.
Here is the scheme introduced to ensure selftests can work both with an
older glibc and with glibc-2.35+:
- librseq exposes its own "rseq_offset, rseq_size, rseq_flags" ABI.
- librseq queries for glibc rseq ABI (__rseq_offset, __rseq_size,
__rseq_flags) using dlsym() in a librseq library constructor. If those
are found, copy their values into rseq_offset, rseq_size, and
rseq_flags.
- Else, if those glibc symbols are not found, handle rseq registration
from librseq and use its own IE-model TLS to implement the rseq ABI
per-thread storage.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20220124171253.22072-8-mathieu.desnoyers@efficios.com
2022-01-25 01:12:45 +08:00
|
|
|
LDLIBS += -lpthread -ldl
|
2018-06-02 20:44:08 +08:00
|
|
|
|
|
|
|
# Own dependencies because we only want to build against 1st prerequisite, but
|
|
|
|
# still track changes to header files and depend on shared object.
|
|
|
|
OVERRIDE_TARGETS = 1
|
|
|
|
|
|
|
|
TEST_GEN_PROGS = basic_test basic_percpu_ops_test param_test \
|
|
|
|
param_test_benchmark param_test_compare_twice
|
|
|
|
|
|
|
|
TEST_GEN_PROGS_EXTENDED = librseq.so
|
|
|
|
|
|
|
|
TEST_PROGS = run_param_test.sh
|
|
|
|
|
2020-02-20 12:42:41 +08:00
|
|
|
TEST_FILES := settings
|
|
|
|
|
2018-06-02 20:44:08 +08:00
|
|
|
include ../lib.mk
|
|
|
|
|
|
|
|
$(OUTPUT)/librseq.so: rseq.c rseq.h rseq-*.h
|
|
|
|
$(CC) $(CFLAGS) -shared -fPIC $< $(LDLIBS) -o $@
|
|
|
|
|
|
|
|
$(OUTPUT)/%: %.c $(TEST_GEN_PROGS_EXTENDED) rseq.h rseq-*.h
|
|
|
|
$(CC) $(CFLAGS) $< $(LDLIBS) -lrseq -o $@
|
|
|
|
|
|
|
|
$(OUTPUT)/param_test_benchmark: param_test.c $(TEST_GEN_PROGS_EXTENDED) \
|
|
|
|
rseq.h rseq-*.h
|
|
|
|
$(CC) $(CFLAGS) -DBENCHMARK $< $(LDLIBS) -lrseq -o $@
|
|
|
|
|
|
|
|
$(OUTPUT)/param_test_compare_twice: param_test.c $(TEST_GEN_PROGS_EXTENDED) \
|
|
|
|
rseq.h rseq-*.h
|
|
|
|
$(CC) $(CFLAGS) -DRSEQ_COMPARE_TWICE $< $(LDLIBS) -lrseq -o $@
|