Files
2025-01-24 11:12:27 +03:00

66 lines
1.4 KiB
Bash
Executable File

#!/bin/sh
# Copyright 2025 Yury Gribov
#
# The MIT License (MIT)
#
# Use of this source code is governed by MIT license that can be
# found in the LICENSE.txt file.
# Another test for checking thread safety of Implib's shims.
set -eu
cd $(dirname $0)
if test -n "${1:-}"; then
ARCH="$1"
fi
. ../common.sh
CFLAGS="-g -O2 $CFLAGS"
N=10
# Build shlib to test against
$CC $CFLAGS -shared -fPIC interposed.c -o libinterposed.so
# Prepare implib
${PYTHON:-} ../../implib-gen.py -q --target $TARGET libinterposed.so
# Test without export shims
$CC $CFLAGS -fPIE main.c libinterposed.so.tramp.S libinterposed.so.init.c $LIBS
for i in $(seq 1 $N); do
LD_LIBRARY_PATH=.:${LD_LIBRARY_PATH:-} $INTERP ./a.out > a.out.log
diff test.ref a.out.log
done
# Test with export shims
$CC $CFLAGS -DIMPLIB_EXPORT_SHIMS -fPIE main.c libinterposed.so.tramp.S libinterposed.so.init.c $LIBS
for i in $(seq 1 $N); do
LD_LIBRARY_PATH=.:${LD_LIBRARY_PATH:-} $INTERP ./a.out > a.out.log
diff test.ref a.out.log
done
# Test with Tsan
if test -n "$TSAN_AVAILABLE"; then
# ASLR keeps breaking Tsan mmaps
if test $(cat /proc/sys/kernel/randomize_va_space) != 0; then
echo 0 | sudo tee /proc/sys/kernel/randomize_va_space
fi
$CC $CFLAGS -g -fsanitize=thread -fPIE main.c libinterposed.so.tramp.S libinterposed.so.init.c $LIBS
for i in $(seq 1 $N); do
LD_LIBRARY_PATH=.:${LD_LIBRARY_PATH:-} $INTERP ./a.out > a.out.log
diff test.ref a.out.log
done
fi
echo SUCCESS