]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-elf/indirect.exp
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-elf / indirect.exp
CommitLineData
90c984fc 1# Expect script for various indirect symbol tests.
b3adc24a 2# Copyright (C) 2012-2020 Free Software Foundation, Inc.
90c984fc
L
3#
4# This file is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
17#
18
19#
20# Written by H.J. Lu (hongjiu.lu@intel.com)
21#
22
23# Exclude non-ELF targets.
24
25if ![is_elf_format] {
26 return
27}
28
83a23418
YZ
29# Skip target where -shared is not supported
30
31if ![check_shared_lib_support] {
32 return
33}
34
90c984fc 35# Check if compiler works
44ed8092 36if { ![check_compiler_available] } {
90c984fc
L
37 return
38}
39
36591ba1
SL
40# Some bare-metal targets don't support shared libs or PIC.
41if { ![run_host_cmd_yesno $CC "-shared -fPIC $srcdir/$subdir/dummy.c -o tmpdir/t.so"] } {
42 return
43}
44
90c984fc
L
45proc check_link_message { cmd string testname } {
46 send_log "$cmd\n"
47 verbose "$cmd"
48 catch "exec $cmd" exec_output
49 send_log "$exec_output\n"
50 verbose "$exec_output"
51
52 foreach str $string {
53 if [string match "*$str*" $exec_output] {
54 pass "$testname: $str"
55 } else {
56 fail "$testname: $str"
57 }
58 }
59}
60
61if { ![ld_compile $CC $srcdir/$subdir/indirect1a.c tmpdir/indirect1a.o]
62 || ![ld_compile $CC $srcdir/$subdir/indirect1b.c tmpdir/indirect1b.o]
63 || ![ld_compile "$CC -fPIC" $srcdir/$subdir/indirect2.c tmpdir/indirect2.o]
64 || ![ld_compile $CC $srcdir/$subdir/indirect3a.c tmpdir/indirect3a.o]
65 || ![ld_compile $CC $srcdir/$subdir/indirect3b.c tmpdir/indirect3b.o]
66 || ![ld_compile $CC $srcdir/$subdir/indirect4a.c tmpdir/indirect4a.o]
6e33951e
L
67 || ![ld_compile $CC $srcdir/$subdir/indirect4b.c tmpdir/indirect4b.o]
68 || ![ld_compile "$CC -O2 -fPIC -I../bfd" $srcdir/$subdir/pr18720a.c tmpdir/pr18720a.o]
aef28989
L
69 || ![ld_compile $CC $srcdir/$subdir/pr18720b.c tmpdir/pr18720b.o]
70 || ![ld_compile "$CC -fPIC" $srcdir/$subdir/pr19553d.c tmpdir/pr19553d.o]
71 || ![ld_compile "$CC -fPIC" $srcdir/$subdir/pr19553c.c tmpdir/pr19553c.o]
72 || ![ld_compile "$CC -fPIC" $srcdir/$subdir/pr19553b.c tmpdir/pr19553b.o]
73 || ![ld_compile $CC $srcdir/$subdir/pr19553a.c tmpdir/pr19553a.o] } {
90c984fc
L
74 unresolved "Indirect symbol tests"
75 return
76}
77
78set build_tests {
79 {"Build libindirect1c.so"
80 "-shared" "-fPIC"
81 {indirect1c.c} {} "libindirect1c.so"}
82 {"Build libindirect3c.so"
83 "-shared" "-fPIC"
84 {indirect3c.c} {} "libindirect3c.so"}
85 {"Build libindirect4c.so"
86 "-shared" "-fPIC"
87 {indirect4c.c} {} "libindirect4c.so"}
c5d37467
AM
88 {"Build libindirect5.so"
89 "-shared -Wl,--version-script=indirect5.map" "-fPIC"
90 {indirect5b.c} {} "libindirect5.so"}
6e33951e
L
91 {"Build libpr18720c.so"
92 "-shared" "-fPIC"
93 {pr18720c.c} {} "libpr18720c.so"}
94 {"Build pr18720b1.o"
95 "-r -nostdlib tmpdir/pr18720b.o" ""
96 {dummy.c} {} "pr18720b1.o"}
4deb8f71
L
97 {"Build pr18720a"
98 "tmpdir/pr18720a.o tmpdir/pr18720b.o tmpdir/libpr18720c.so" ""
99 {check-ptr-eq.c} {{readelf {--dyn-syms} pr18720.rd}} "pr18720a"}
aef28989
L
100 {"Build libpr19553b.so"
101 "-shared -Wl,--version-script=pr19553.map" "-fPIC"
102 {pr19553b.c} {} "libpr19553b.so"}
103 {"Build libpr19553c.so"
104 "-shared -Wl,--version-script=pr19553.map" "-fPIC"
105 {pr19553c.c} {} "libpr19553c.so"}
106 {"Build libpr19553d.so"
107 "-shared tmpdir/libpr19553c.so" "-fPIC"
108 {pr19553d.c} {} "libpr19553d.so"}
90c984fc
L
109}
110
111run_cc_link_tests $build_tests
112
113global ld
114
6e05870c 115set string ": final link failed: bad value"
90c984fc
L
116set string1 ": local symbol \`foo\' in tmpdir/indirect1b.o is referenced by DSO"
117
118set testname "Indirect symbol 1a"
119set cmd "$ld -e start -o tmpdir/indirect1 tmpdir/indirect1a.o tmpdir/indirect1b.o tmpdir/libindirect1c.so"
120check_link_message "$cmd" [list $string1 $string] "$testname"
121
122set testname "Indirect symbol 1b"
123set cmd "$ld -e start -o tmpdir/indirect1 tmpdir/indirect1a.o tmpdir/libindirect1c.so tmpdir/indirect1b.o"
124check_link_message "$cmd" [list $string1 $string] "$testname"
125
9793eb77 126set string2 ": no symbol version section for versioned symbol \`foo@FOO\'"
90c984fc
L
127set testname "Indirect symbol 2"
128set cmd "$ld -shared -o tmpdir/indirect2.so tmpdir/indirect2.o"
847d5183 129check_link_message "$cmd" [list $string2] "$testname"
90c984fc 130
afe9edbf
L
131global NOPIE_CFLAGS NOPIE_LDFLAGS
132
90c984fc
L
133set run_tests {
134 {"Run with libindirect3c.so 1"
d9816402 135 "-Wl,--no-as-needed tmpdir/indirect3a.o tmpdir/indirect3b.o tmpdir/libindirect3c.so" ""
90c984fc
L
136 {dummy.c} "indirect3a" "indirect3.out"}
137 {"Run with libindirect3c.so 2"
d9816402 138 "-Wl,--no-as-needed tmpdir/indirect3a.o tmpdir/libindirect3c.so tmpdir/indirect3b.o" ""
90c984fc
L
139 {dummy.c} "indirect3b" "indirect3.out"}
140 {"Run with libindirect3c.so 3"
d9816402 141 "-Wl,--no-as-needed tmpdir/indirect3b.o tmpdir/libindirect3c.so tmpdir/indirect3a.o" ""
90c984fc
L
142 {dummy.c} "indirect3c" "indirect3.out"}
143 {"Run with libindirect3c.so 4"
d9816402 144 "-Wl,--no-as-needed tmpdir/libindirect3c.so tmpdir/indirect3b.o tmpdir/indirect3a.o" ""
90c984fc
L
145 {dummy.c} "indirect3d" "indirect3.out"}
146 {"Run with libindirect4c.so 1"
d9816402 147 "-Wl,--no-as-needed tmpdir/indirect4a.o tmpdir/indirect4b.o tmpdir/libindirect4c.so" ""
90c984fc
L
148 {dummy.c} "indirect4a" "indirect4.out"}
149 {"Run with libindirect4c.so 2"
d9816402 150 "-Wl,--no-as-needed tmpdir/indirect4a.o tmpdir/libindirect4c.so tmpdir/indirect4b.o" ""
90c984fc
L
151 {dummy.c} "indirect4b" "indirect4.out"}
152 {"Run with libindirect4c.so 3"
d9816402 153 "-Wl,--no-as-needed tmpdir/indirect4b.o tmpdir/libindirect4c.so tmpdir/indirect4a.o" ""
90c984fc
L
154 {dummy.c} "indirect4c" "indirect4.out"}
155 {"Run with libindirect4c.so 4"
d9816402 156 "-Wl,--no-as-needed tmpdir/libindirect4c.so tmpdir/indirect4b.o tmpdir/indirect4a.o" ""
90c984fc 157 {dummy.c} "indirect4d" "indirect4.out"}
c5d37467 158 {"Run indirect5 1"
afe9edbf
L
159 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/libindirect5.so" ""
160 {indirect5a.c} "indirect5a" "indirect5.out" "$NOPIE_CFLAGS"}
c5d37467 161 {"Run indirect5 2"
afe9edbf
L
162 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/indirect5a.o tmpdir/libindirect5.so" ""
163 {dummy.c} "indirect5b" "indirect5.out" "$NOPIE_CFLAGS"}
c5d37467 164 {"Run indirect6 1"
afe9edbf
L
165 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/libindirect5.so" ""
166 {indirect6a.c} "indirect6a" "indirect5.out" "$NOPIE_CFLAGS"}
c5d37467 167 {"Run indirect6 2"
afe9edbf
L
168 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/indirect6a.o tmpdir/libindirect5.so" ""
169 {dummy.c} "indirect6b" "indirect5.out" "$NOPIE_CFLAGS"}
6e33951e 170 {"Run with libpr18720c.so 1"
d9816402 171 "-Wl,--no-as-needed tmpdir/pr18720a.o tmpdir/pr18720b.o tmpdir/libpr18720c.so" ""
6e33951e
L
172 {check-ptr-eq.c} "pr18720a" "pr18720.out"}
173 {"Run with libpr18720c.so 2"
d9816402 174 "-Wl,--no-as-needed tmpdir/pr18720a.o tmpdir/libpr18720c.so tmpdir/pr18720b.o" ""
6e33951e
L
175 {check-ptr-eq.c} "pr18720b" "pr18720.out"}
176 {"Run with libpr18720c.so 3"
d9816402 177 "-Wl,--no-as-needed tmpdir/pr18720b.o tmpdir/libpr18720c.so tmpdir/pr18720a.o" ""
6e33951e
L
178 {check-ptr-eq.c} "pr18720c" "pr18720.out"}
179 {"Run with libpr18720c.so 4"
d9816402 180 "-Wl,--no-as-needed tmpdir/libpr18720c.so tmpdir/pr18720b.o tmpdir/pr18720a.o" ""
6e33951e
L
181 {check-ptr-eq.c} "pr18720d" "pr18720.out"}
182 {"Run with libpr18720c.so 5"
d9816402 183 "-Wl,--no-as-needed tmpdir/libpr18720c.so tmpdir/pr18720b1.o tmpdir/pr18720a.o" ""
6e33951e 184 {check-ptr-eq.c} "pr18720d" "pr18720.out"}
aef28989 185 {"Run with libpr19553b.so"
d9816402 186 "-Wl,--no-as-needed tmpdir/libpr19553b.so tmpdir/libpr19553d.so -Wl,-rpath-link,." ""
aef28989
L
187 {pr19553a.c} "pr19553b" "pr19553b.out"}
188 {"Run with libpr19553c.so"
d9816402 189 "-Wl,--no-as-needed tmpdir/libpr19553c.so tmpdir/libpr19553b.so tmpdir/libpr19553d.so" ""
aef28989
L
190 {pr19553a.c} "pr19553c" "pr19553c.out"}
191 {"Run with libpr19553d.so"
d9816402 192 "-Wl,--no-as-needed tmpdir/libpr19553d.so tmpdir/libpr19553b.so -Wl,-rpath-link,." ""
aef28989 193 {pr19553a.c} "pr19553d" "pr19553d.out"}
90c984fc
L
194}
195
982c6f26 196run_ld_link_exec_tests $run_tests
c5d37467
AM
197
198# Check that "bar" is not dynamic in the executable
199proc check_dynamic_syms { test } {
200 global nm
201 set cmd "$nm -D $test > dump.out"
202 send_log "$cmd\n"
203 catch "exec $cmd" comp_output
204 if ![string match "" $comp_output] then {
205 send_log "$comp_output\n"
206 return 0
207 }
208 if { [string match "* bar\n*" [file_contents "dump.out"]] } then {
209 verbose "output is [file_contents "dump.out"]"
210 return 0
211 }
212 return 1
213}
214
215foreach t [list indirect5a indirect5b indirect6a indirect6b] {
216 set testname [concat $t "dynsym"]
217 if { [check_dynamic_syms tmpdir/$t] } {
218 pass $testname
219 } else {
220 fail $testname
221 }
222}
223
224send_log "$CC -fPIE -pie $srcdir/$subdir/main.c -o tmpdir/pie"
225catch "exec $CC -fPIE -pie $srcdir/$subdir/main.c -o tmpdir/pie" exec_output
226send_log "$exec_output"
227if { ! [string match "" $exec_output] } {
228 return
229}
230
231set pie_tests {
232 {"Run indirect5 3"
233 "-pie -Wl,--no-as-needed tmpdir/libindirect5.so" ""
234 {indirect5a.c} "indirect5c" "indirect5.out" "-fPIE"}
235 {"Run indirect5 4"
236 "-pie -Wl,--no-as-needed tmpdir/indirect5a.o tmpdir/libindirect5.so" ""
237 {dummy.c} "indirect5d" "indirect5.out" "-fPIE"}
238 {"Run indirect6 3"
239 "-pie -Wl,--no-as-needed tmpdir/libindirect5.so" ""
240 {indirect6a.c} "indirect6c" "indirect5.out" "-fPIE"}
241 {"Run indirect6 4"
242 "-pie -Wl,--no-as-needed tmpdir/indirect6a.o tmpdir/libindirect5.so" "-fPIE"
243 {dummy.c} "indirect6d" "indirect5.out" "-fPIE"}
244}
245
246run_ld_link_exec_tests $pie_tests
247
248foreach t [list indirect5c indirect5d indirect6c indirect6d] {
249 set testname [concat $t "dynsym"]
250 if { [check_dynamic_syms tmpdir/$t] } {
251 pass $testname
252 } else {
253 fail $testname
254 }
255}