1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-05 00:57:08 +03:00
mold/test/elf/reloc.sh

224 lines
3.5 KiB
Bash
Raw Normal View History

2020-12-17 14:21:51 +03:00
#!/bin/bash
set -e
2021-03-01 10:28:16 +03:00
cd $(dirname $0)
2021-09-08 13:11:48 +03:00
mold=`pwd`/../../mold
2021-01-25 05:02:01 +03:00
echo -n "Testing $(basename -s .sh $0) ... "
2021-10-12 12:32:20 +03:00
t=$(pwd)/../../out/test/elf/$(basename -s .sh $0)
2020-12-17 14:21:51 +03:00
mkdir -p $t
2021-08-23 07:44:38 +03:00
[ $(uname -m) = x86_64 ] || { echo skipped; exit; }
2021-02-27 14:28:33 +03:00
cat <<'EOF' | cc -fPIC -c -o $t/a.o -x assembler -
.data
.globl ext_var
.type ext_var, @object
.size ext_var, 56
ext_var:
.long 56
EOF
cat <<'EOF' | cc -fPIC -c -o $t/b.o -xc -
#include <stdio.h>
int print(int x) {
printf("%d\n", x);
return 0;
}
int print64(long x) {
printf("%ld\n", x);
return 0;
}
2021-02-27 14:28:33 +03:00
EOF
cc -shared -o $t/c.so $t/a.o $t/b.o
# Absolute symbol
cat <<'EOF' > $t/d.s
.globl abs_sym
.set abs_sym, 42
.globl main
main:
2021-07-15 18:11:03 +03:00
sub $8, %rsp
2021-02-27 14:28:33 +03:00
lea abs_sym, %edi
call print
2021-07-15 18:11:03 +03:00
add $8, %rsp
2021-02-27 14:28:33 +03:00
ret
EOF
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -no-pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 42
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 42
# GOT
cat <<'EOF' > $t/d.s
.globl main
main:
2021-07-15 18:11:03 +03:00
sub $8, %rsp
2021-02-27 14:28:33 +03:00
mov ext_var@GOTPCREL(%rip), %rdi
mov (%rdi), %edi
call print
2021-07-15 18:11:03 +03:00
add $8, %rsp
2021-02-27 14:28:33 +03:00
ret
EOF
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -no-pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 56
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 56
# Copyrel
cat <<'EOF' > $t/d.s
.globl main
main:
2021-07-15 18:11:03 +03:00
sub $8, %rsp
2021-02-27 14:28:33 +03:00
mov ext_var(%rip), %edi
call print
2021-07-15 18:11:03 +03:00
add $8, %rsp
2021-02-27 14:28:33 +03:00
ret
EOF
2021-07-15 18:11:03 +03:00
clang -c -o $t/d.o $t/d.s
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.o -no-pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 56
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 56
# Copyrel
cat <<'EOF' > $t/d.s
.globl main
main:
2021-07-15 18:11:03 +03:00
sub $8, %rsp
2021-02-27 14:28:33 +03:00
mov foo(%rip), %rdi
mov (%rdi), %edi
call print
2021-07-15 18:11:03 +03:00
add $8, %rsp
2021-02-27 14:28:33 +03:00
ret
.data
foo:
.quad ext_var
EOF
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -no-pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 56
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 56
# PLT
cat <<'EOF' > $t/d.s
.globl main
main:
2021-07-15 18:11:03 +03:00
sub $8, %rsp
2021-02-27 14:28:33 +03:00
mov $76, %edi
call print@PLT
2021-07-15 18:11:03 +03:00
add $8, %rsp
2021-02-27 14:28:33 +03:00
ret
EOF
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -no-pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 76
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 76
# PLT
cat <<'EOF' > $t/d.s
.globl main
main:
2021-07-15 18:11:03 +03:00
sub $8, %rsp
2021-02-27 14:28:33 +03:00
mov $76, %edi
lea print(%rip), %rax
call *%rax
2021-07-15 18:11:03 +03:00
add $8, %rsp
2021-02-27 14:28:33 +03:00
ret
EOF
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -no-pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 76
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s -pie
2021-02-27 14:28:33 +03:00
$t/exe | grep -q 76
2020-12-17 14:21:51 +03:00
# SIZE32
cat <<'EOF' > $t/d.s
.globl main
main:
2021-07-15 18:11:03 +03:00
sub $8, %rsp
mov $foo+2@SIZE, %edi
call print@PLT
2021-07-15 18:11:03 +03:00
add $8, %rsp
ret
.data
.globl foo
.type foo, %object
.size foo, 24
foo:
EOF
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s
$t/exe | grep -q 26
# SIZE64
cat <<'EOF' > $t/d.s
.globl main
main:
2021-07-15 18:11:03 +03:00
sub $8, %rsp
movabs $foo+5@SIZE, %rdi
call print64@PLT
2021-07-15 18:11:03 +03:00
add $8, %rsp
ret
.data
.globl foo
.type foo, %object
.size foo, 56
foo:
EOF
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/d.s
$t/exe | grep -q 61
# GOTPCREL64
cat <<'EOF' > $t/e.c
extern long ext_var;
void print64(long);
int main() {
print64(ext_var);
}
EOF
clang -c -o $t/e.o $t/e.c -mcmodel=large -fPIC
clang -fuse-ld=$mold -o $t/exe $t/c.so $t/e.o
$t/exe | grep -q 56
2021-03-22 09:33:39 +03:00
# R_X86_64_32 against non-alloc section
cat <<'EOF' > $t/f.s
.globl main
main:
2021-07-15 18:11:03 +03:00
sub $8, %rsp
add $8, %rsp
2021-03-22 09:33:39 +03:00
ret
.section .foo, "", @progbits
.zero 16
foo:
.quad bar
.section .bar, "", @progbits
.zero 24
bar:
.quad foo
EOF
clang -c -o $t/f.o $t/f.s
clang -fuse-ld=$mold -o $t/exe $t/f.o
2021-03-22 09:33:39 +03:00
readelf -x .foo -x .bar $t/exe > $t/log
fgrep -q '0x00000010 00000000 00000000 10000000 00000000' $t/log
fgrep -q '0x00000010 18000000 00000000' $t/log
2021-01-25 05:02:01 +03:00
echo OK