]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-elfvers/vers.exp
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-elfvers / vers.exp
CommitLineData
252b5132 1# Expect script for ld-version tests
a2c58332 2# Copyright (C) 1997-2022 Free Software Foundation, Inc.
252b5132 3#
f96b4a7b
NC
4# This file is part of the GNU Binutils.
5#
6# This program is free software; you can redistribute it and/or modify
252b5132 7# it under the terms of the GNU General Public License as published by
f96b4a7b 8# the Free Software Foundation; either version 3 of the License, or
252b5132 9# (at your option) any later version.
f96b4a7b 10#
252b5132
RH
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
f96b4a7b 15#
252b5132
RH
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
f96b4a7b
NC
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
252b5132
RH
20#
21# Written by Eric Youngdale (eric@andante.jic.com)
22
23#
24
d9816402 25# Check to see if the C compiler works
44ed8092 26if { ![check_compiler_available] } {
d9816402
AM
27 return
28}
252b5132
RH
29
30# This test can only be run on a couple of ELF platforms.
31# Square bracket expressions seem to confuse istarget.
32# This is similar to the test that is used in ld-shared, BTW.
99753d9d
AM
33if { ![istarget hppa*64*-*-hpux*]
34 && ![istarget hppa*-*-linux*]
35 && ![istarget i?86-*-sysv4*]
36 && ![istarget i?86-*-unixware]
37 && ![istarget i?86-*-elf*]
38 && ![istarget i?86-*-linux*]
39 && ![istarget i?86-*-gnu*]
40 && ![istarget ia64-*-elf*]
41 && ![istarget ia64-*-linux*]
42 && ![istarget m68k-*-linux*]
43 && ![istarget mips*-*-irix5*]
44 && ![istarget powerpc*-*-elf*]
45 && ![istarget powerpc*-*-linux*]
46 && ![istarget powerpc*-*-sysv4*]
47 && ![istarget sparc*-*-elf]
48 && ![istarget sparc*-*-solaris2*]
49 && ![istarget sparc*-*-linux*]
a06ea964 50 && ![istarget aarch64*-*-linux*]
99753d9d
AM
51 && ![istarget arm*-*-linux*]
52 && ![istarget mips*-*-linux*]
53 && ![istarget alpha*-*-linux*]
54 && ![istarget s390*-*-linux*]
55 && ![istarget sh\[34\]*-*-linux*]
bbd19b19 56 && ![istarget x86_64-*-linux*] } {
252b5132
RH
57 return
58}
59
252b5132
RH
60set diff diff
61set tmpdir tmpdir
62set VOBJDUMP_FLAGS --private-headers
63set DOBJDUMP_FLAGS --dynamic-syms
64set SOBJDUMP_FLAGS --syms
31941635 65set shared "--shared --no-undefined-version"
252b5132
RH
66set script --version-script
67
fb35d3d8
DD
68# Old version of GCC for MIPS default to enabling -fpic
69# and get confused if it is used on the command line.
70if { [istarget mips*-*-*] && ! [at_least_gcc_version 4 3] } then {
f006af20
L
71 set picflag ""
72} else {
73 # Unfortunately, the gcc argument is -fpic and the cc argument is
74 # -KPIC. We have to try both.
75 set picflag "-fpic"
ad77db1c
AM
76 send_log "$CC_FOR_TARGET $picflag\n"
77 verbose "$CC_FOR_TARGET $picflag"
78 catch "exec $CC_FOR_TARGET $picflag" exec_output
f006af20
L
79 send_log "$exec_output\n"
80 verbose "--" "$exec_output"
99753d9d
AM
81 if { [string match "*illegal option*" $exec_output]
82 || [string match "*option ignored*" $exec_output]
83 || [string match "*unrecognized option*" $exec_output]
f006af20 84 || [string match "*passed to ld*" $exec_output] } {
c9098af4 85 set picflag "-KPIC"
f006af20
L
86 }
87}
88
e3696f67
AM
89switch -glob $target_triplet {
90 ia64-*-* { set as_options "-x" }
91 sparc-*-* { set as_options "-Av9a" }
f1dab70d
JB
92 default { set as_options "" }
93}
94
252b5132
RH
95proc test_ar { test lib object expect } {
96 global ar
97 global nm
98 global tmpdir
99 global srcdir
100 global subdir
101 global diff
102
103 verbose -log "$ar -cr $tmpdir/$lib $tmpdir/$object"
104 catch "exec $ar -cr $tmpdir/$lib $tmpdir/$object" exec_output
105 set exec_output [prune_warnings $exec_output]
106 if ![string match "" $exec_output] {
107 verbose -log "$exec_output"
5b1f6c95 108 fail "$test"
252b5132
RH
109 return
110 }
5a68afcf 111
4e95fbcd
AM
112 set cmd "$nm --print-armap $tmpdir/$lib | grep \\\ in\\\ | egrep VERS\\\|bar\\\|foo | grep -v ^\\\\. | sort > $tmpdir/nm.out"
113 verbose -log $cmd
114 catch "exec $cmd" exec_output
252b5132 115 if [string match "" $exec_output] then {
a0a21afe 116 catch "exec sort $srcdir/$subdir/$expect | $diff $tmpdir/nm.out -" exec_output
252b5132
RH
117 set exec_output [prune_warnings $exec_output]
118 if [string match "" $exec_output] then {
119 pass $test
120 return
121 } else {
122 verbose -log "$exec_output"
123 fail "$test"
124 return
125 }
126 } else {
127 verbose -log "$exec_output"
128 fail "$test"
129 }
130}
131
132#
133# objdump_emptysymstuff
134# Check non-dynamic symbols and make sure there are none with '@'.
135#
136proc objdump_emptysymstuff { objdump object } {
137 global SOBJDUMP_FLAGS
138 global version_output
139 global diff
140
141 if ![info exists SOBJDUMP_FLAGS] { set SOBJDUMP_FLAGS "" }
142
143 verbose -log "$objdump $SOBJDUMP_FLAGS $object | sed -n /\@/p"
144
145 catch "exec $objdump $SOBJDUMP_FLAGS $object | sed -n /\@/p" exec_output
146 set exec_output [prune_warnings $exec_output]
147 if [string match "" $exec_output] then {
148# We shouldn't get anything here.
149 return 1
150 } else {
151# it is not normal to come here - we have no output to compare.
152 verbose -log "$exec_output"
153 verbose -log "objdump_emptysymstuff: did not expect any output from objdump"
154 return 0
155 }
156
157}
158
159#
160# objdump_emptydynsymstuff
161# Check dynamic symbols and make sure there are none with '@'.
162#
163proc objdump_emptydynsymstuff { objdump object } {
164 global DOBJDUMP_FLAGS
165 global version_output
166 global diff
167
168 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
169
170 verbose -log "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p"
171
172 catch "exec $objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p" exec_output
173 set exec_output [prune_warnings $exec_output]
174 if [string match "" $exec_output] then {
175# We shouldn't get anything here.
176 return 1
177 } else { if [string match "*objdump: *: not a dynamic object" $exec_output] then {
178 return 1
179 } else {
180# it is not normal to come here - we have no output to compare.
181 verbose -log "$exec_output"
182 verbose -log "objdump_emptydynsymstuff: did not expect any output from objdump"
183 return 0
184 } }
185}
186
187#
188# objdump_emptyverstuff
189# Make sure there is no version information
190#
191proc objdump_emptyverstuff { objdump object } {
192 global VOBJDUMP_FLAGS
193 global version_output
194 global diff
195 global tmpdir
196
197 if {[which $objdump] == 0} then {
198 perror "$objdump does not exist"
199 return 0
200 }
201
202 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
203
204 verbose -log "$objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out"
205
206 catch "exec $objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p" exec_output
207 set exec_output [prune_warnings $exec_output]
208 if [string match "" $exec_output] then {
209# it is normal to fail here - we have no output to compare.
210 return 1
211 } else { if { [string match "*libc*" $exec_output] } then {
212# this probably means that there is version information in libc, so we
213# can't really perform this test.
214 return 1
215 } else {
216 verbose -log "$exec_output"
217 verbose -log "objdump_emptyverstuff: did not expect any output from objdump"
218 return 0
219 } }
220
221}
222
223#
224# objdump_symstuff
225# Dump non-dynamic symbol stuff and make sure that it is sane.
226#
227proc objdump_symstuff { objdump object expectfile } {
228 global SOBJDUMP_FLAGS
229 global version_output
230 global diff
231 global tmpdir
232
233 if ![info exists SOBJDUMP_FLAGS] { set SOBJDUMP_FLAGS "" }
234
4e95fbcd
AM
235 set cmd "$objdump $SOBJDUMP_FLAGS $object | sed -n {s/^\\(\[0-9a-f\]* *\\)\\(\[gw\]\\)\\( *\\)\\(\[FO\]\\)/\\1\\2\\4\\3/;/\@/p} | sort -k 5 > $tmpdir/objdump.out"
236 verbose -log $cmd
237 catch "exec $cmd" exec_output
252b5132
RH
238 set exec_output [prune_warnings $exec_output]
239 if [string match "" $exec_output] then {
240
241# Now do a line-by-line comparison to effectively diff the darned things
242# The stuff coming from the expectfile is actually a regex, so we can
243# skip over the actual addresses and so forth. This is currently very
244# simpleminded - it expects a one-to-one correspondence in terms of line
245# numbers.
246
247 if [file exists $expectfile] then {
248 set file_a [open $expectfile r]
249 } else {
250 perror "$expectfile doesn't exist"
251 return 0
252 }
5a68afcf 253
252b5132
RH
254 if [file exists $tmpdir/objdump.out] then {
255 set file_b [open $tmpdir/objdump.out r]
256 } else {
257 perror "$tmpdir/objdump.out doesn't exist"
258 return 0
259 }
260
261 verbose "# Diff'ing: $expectfile $tmpdir/objdump.out" 2
262
263 set eof -1
39d744bd
AM
264 set list_a {}
265 set list_b {}
252b5132
RH
266
267 while { [gets $file_a line] != $eof } {
268 if [regexp "^#.*$" $line] then {
269 continue
270 } else {
271 lappend list_a $line
272 }
273 }
274 close $file_a
275
276 while { [gets $file_b line] != $eof } {
4e95fbcd
AM
277 if [regexp {\.text.* \.[^ ]*$} $line] then {
278 # Discard defined powerpc64 dot-symbols
252b5132
RH
279 continue
280 } else {
281 lappend list_b $line
282 }
283 }
284 close $file_b
5a68afcf 285
252b5132
RH
286 for { set i 0 } { $i < [llength $list_a] } { incr i } {
287 set line_a [lindex $list_a $i]
288 set line_b [lindex $list_b $i]
5a68afcf 289
252b5132
RH
290 verbose "\t$expectfile: $i: $line_a" 3
291 verbose "\t/tmp/objdump.out: $i: $line_b" 3
292 if [regexp $line_a $line_b] then {
293 continue
294 } else {
295 verbose -log "\t$expectfile: $i: $line_a"
296 verbose -log "\t$tmpdir/objdump.out: $i: $line_b"
5a68afcf 297
252b5132
RH
298 return 0
299 }
300 }
5a68afcf 301
252b5132
RH
302 if { [llength $list_a] != [llength $list_b] } {
303 verbose -log "Line count"
304 return 0
305 }
39d744bd 306 return 1
5a68afcf 307
252b5132
RH
308 } else {
309 verbose -log "$exec_output"
310 return 0
311 }
252b5132
RH
312}
313
314#
315# objdump_dymsymstuff
316# Dump dynamic symbol stuff and make sure that it is sane.
317#
318proc objdump_dynsymstuff { objdump object expectfile } {
319 global DOBJDUMP_FLAGS
320 global version_output
321 global diff
322 global tmpdir
323
324 if ![info exists DOBJDUMP_FLAGS] { set DOBJDUMP_FLAGS "" }
325
4e95fbcd
AM
326 set cmd "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p | sort | uniq > $tmpdir/objdump.out"
327 verbose -log $cmd
328 catch "exec $cmd" exec_output
252b5132
RH
329 set exec_output [prune_warnings $exec_output]
330 if [string match "" $exec_output] then {
331
332# Now do a line-by-line comparison to effectively diff the darned things
333# The stuff coming from the expectfile is actually a regex, so we can
334# skip over the actual addresses and so forth. This is currently very
335# simpleminded - it expects a one-to-one correspondence in terms of line
336# numbers.
337
338 if [file exists $expectfile] then {
339 set file_a [open $expectfile r]
340 } else {
341 warning "$expectfile doesn't exist"
342 return 0
343 }
5a68afcf 344
252b5132
RH
345 if [file exists $tmpdir/objdump.out] then {
346 set file_b [open $tmpdir/objdump.out r]
347 } else {
348 fail "$tmpdir/objdump.out doesn't exist"
349 return 0
350 }
351
352 verbose "# Diff'ing: $expectfile $tmpdir/objdump.out" 2
353
354 set eof -1
39d744bd
AM
355 set list_a {}
356 set list_b {}
252b5132
RH
357
358 while { [gets $file_a line] != $eof } {
359 if [regexp "^#.*$" $line] then {
360 continue
361 } else {
362 lappend list_a $line
363 }
364 }
365 close $file_a
366
367 while { [gets $file_b line] != $eof } {
4e95fbcd
AM
368 if [regexp {\.text.* \.[^ ]*$} $line] then {
369 # Discard defined powerpc64 dot-symbols
252b5132
RH
370 continue
371 } else {
372 lappend list_b $line
373 }
374 }
375 close $file_b
5a68afcf 376
252b5132
RH
377 for { set i 0 } { $i < [llength $list_b] } { incr i } {
378 set line_b [lindex $list_b $i]
5a68afcf 379
252b5132
RH
380# The tests are rigged so that we should never export a symbol with the
381# word 'hide' in it. Thus we just search for it, and bail if we find it.
382 if [regexp "hide" $line_b] then {
383 verbose -log "\t$tmpdir/objdump.out: $i: $line_b"
5a68afcf 384
252b5132
RH
385 return 0
386 }
387
388 verbose "\t$expectfile: $i: $line_b" 3
389
390 # We can't assume that the sort is consistent across
391 # systems, so we must check each regexp. When we find a
392 # regexp, we null it out, so we don't match it twice.
393 for { set j 0 } { $j < [llength $list_a] } { incr j } {
394 set line_a [lindex $list_a $j]
395
396 if [regexp $line_a $line_b] then {
397 lreplace $list_a $j $j "CAN NOT MATCH"
398 break
399 }
400 }
401
402 if { $j >= [llength $list_a] } {
403 verbose -log "\t$tmpdir/objdump.out: $i: $line_b"
5a68afcf 404
252b5132
RH
405 return 0
406 }
407 }
5a68afcf 408
252b5132
RH
409 if { [llength $list_a] != [llength $list_b] } {
410 verbose -log "Line count"
411 return 0
412 }
39d744bd 413 return 1
5a68afcf 414
252b5132
RH
415 } else {
416 verbose -log "$exec_output"
417 return 0
418 }
252b5132
RH
419}
420
421#
422# objdump_versionstuff
423# Dump version definitions/references and make sure that it is sane.
424#
425proc objdump_versionstuff { objdump object expectfile } {
426 global VOBJDUMP_FLAGS
427 global version_output
428 global diff
429 global tmpdir
430
431 if {[which $objdump] == 0} then {
432 perror "$objdump does not exist"
433 return 0
434 }
435
436 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
437
438 verbose -log "$objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out"
439
440 catch "exec $objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out" exec_output
441 set exec_output [prune_warnings $exec_output]
442 if [string match "" $exec_output] then {
443
444 # It's OK if there are extra lines in the actual output; they
445 # may come from version information in libc. We require that
65864bd2 446 # every line in EXPECTFILE appear in the output in any order.
252b5132 447
252b5132 448 set f2 [open $expectfile r]
08d5f1b4
L
449 while { [gets $f2 l2] != -1 } {
450 if { ![regexp "^#.*$" $l2] } then {
65864bd2
AM
451 set f1 [open $tmpdir/objdump.out r]
452 while { [gets $f1 l1] != -1 } {
453 if { [string match $l2 $l1] } then {
454 break
455 }
456 }
457 close $f1
458
459 if { ![string match $l2 $l1] } then {
460 verbose -log "Did not find \"$l2\""
461 set f1 [open $tmpdir/objdump.out r]
462 while { [gets $f1 l1] != -1 } {
463 verbose -log $l1
464 }
252b5132
RH
465 close $f1
466 close $f2
65864bd2 467 return 0
252b5132
RH
468 }
469 }
470 }
252b5132 471 close $f2
65864bd2 472 return 1
252b5132
RH
473 } else {
474 verbose -log "$exec_output"
475 return 0
476 }
477}
478
3e3b46e5 479proc build_binary { shared pic test source libname other mapfile verexp versymexp symexp ldargs } {
252b5132
RH
480 global ld
481 global srcdir
482 global subdir
483 global exec_output
484 global host_triplet
485 global tmpdir
486 global as
f1dab70d 487 global as_options
252b5132 488 global objdump
ad77db1c 489 global CC_FOR_TARGET
252b5132 490 global script
e062fcc8 491 global NOSANITIZE_CFLAGS
c6d47bff 492 global NOLTO_CFLAGS
252b5132 493
669d5115 494 if ![ld_compile "$CC_FOR_TARGET -S $pic $NOSANITIZE_CFLAGS $NOLTO_CFLAGS" $srcdir/$subdir/$source $tmpdir/$libname.s] {
5b1f6c95 495 unsupported "$test"
252b5132
RH
496 return
497 }
498
f1dab70d 499 if ![ld_assemble $as "$as_options $tmpdir/$libname.s" $tmpdir/$libname.o ] {
5b1f6c95 500 unsupported "$test"
252b5132
RH
501 return
502 }
503
67954772
L
504 set other_lib ""
505 if ![string match "" $other] then {
506 foreach o $other {
82e03011 507 set other_lib "$other_lib $tmpdir/$o"
67954772 508 }
252b5132
RH
509 }
510
511 if [string match "" $mapfile] then {
512 set script_arg ""
513 } else {
514 set script_arg "$script $srcdir/$subdir/$mapfile"
515 }
516
d9816402 517 if {![ld_link $ld $tmpdir/$libname.so "$shared $tmpdir/$libname.o $other_lib $script_arg $ldargs"]} {
252b5132
RH
518 fail "$test"
519 return
520 }
521
522 if {![objdump_versionstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$verexp ]} {
523 fail "$test"
524 return
525 }
526
527 if {![objdump_dynsymstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$versymexp ]} {
528 fail "$test"
529 return
530 }
531
532 if [string match "" $symexp] then {
533 if {![objdump_emptysymstuff $objdump $tmpdir/$libname.o ]} {
534 fail "$test"
535 return
536 }
537 } else {
538 if {![objdump_symstuff $objdump $tmpdir/$libname.o $srcdir/$subdir/$symexp ]} {
539 fail "$test"
540 return
541 }
542 }
543
544 pass $test
5a68afcf 545
252b5132
RH
546}
547
0ae911fe 548proc build_executable { test source libname other mapfile verexp versymexp symexp } {
3e3b46e5 549 build_binary "" "" $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
0ae911fe
L
550}
551
f006af20 552proc build_vers_lib_no_pic { test source libname other mapfile verexp versymexp symexp } {
0ae911fe 553 global shared
c4972ed6
L
554 # Make sure that PLT is used since PLT is expected.
555 global PLT_CFLAGS
af2c48d8 556 build_binary "$shared -z notext" $PLT_CFLAGS $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
f006af20
L
557}
558
559proc build_vers_lib_pic { test source libname other mapfile verexp versymexp symexp } {
560 global picflag
0ae911fe 561 global shared
3e3b46e5
PB
562 build_binary $shared $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
563}
564
565proc build_vers_lib_pic_flags { test source libname other mapfile verexp versymexp symexp ldargs } {
566 global picflag
567 global shared
568 build_binary $shared $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp $ldargs
f006af20
L
569}
570
252b5132 571proc test_ldfail { test flag source execname other mapfile whyfail } {
252b5132
RH
572 global srcdir
573 global subdir
574 global exec_output
575 global host_triplet
576 global tmpdir
577 global as
f1dab70d 578 global as_options
252b5132 579 global objdump
ad77db1c 580 global CC_FOR_TARGET
252b5132
RH
581 global script
582
583 if [string match "" $other] then {
584 set other_lib ""
585 } else {
586 set other_lib $tmpdir/$other
587 }
588
669d5115 589 if ![ld_compile "$CC_FOR_TARGET -S $flag" $srcdir/$subdir/$source $tmpdir/$execname.s] {
5b1f6c95 590 unsupported "$test"
252b5132
RH
591 return
592 }
593
f1dab70d 594 if ![ld_assemble $as "$as_options $tmpdir/$execname.s" $tmpdir/$execname.o ] {
5b1f6c95 595 unsupported "$test"
252b5132
RH
596 return
597 }
598
599 verbose -log "This link should fail because of $whyfail"
600
601 if [string match "" $mapfile] then {
602 set script_arg ""
603 } else {
9e75165d 604 set script_arg "-Wl,$script $srcdir/$subdir/$mapfile"
252b5132
RH
605 }
606
ad77db1c 607 if {![ld_link $CC_FOR_TARGET $tmpdir/$execname "$tmpdir/$execname.o $other_lib $script_arg"]} {
252b5132
RH
608 pass "$test"
609 return
610 }
611 fail "$test"
612}
613
614proc test_asfail { test flag source execname whyfail } {
615 global srcdir
616 global subdir
617 global tmpdir
618 global as
ad77db1c 619 global CC_FOR_TARGET
c6d47bff 620 global NOLTO_CFLAGS
252b5132 621
669d5115 622 if ![ld_compile "$CC_FOR_TARGET -S $flag $NOLTO_CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
5b1f6c95 623 unsupported "$test"
252b5132
RH
624 return
625 }
626
627 verbose -log "This assemble should fail because of $whyfail"
628 catch "exec $as -o $tmpdir/$execname.o $tmpdir/$execname.s" exec_output
629 set exec_output [prune_warnings $exec_output]
630 if [string match "" $exec_output] then {
631 fail "$test"
632 return
633 }
634 verbose -log "$exec_output"
635 pass "$test"
636}
637
638proc test_strip_vers_lib { test srclib libname verexp versymexp } {
639 global strip
640 global srcdir
641 global subdir
642 global exec_output
643 global host_triplet
644 global tmpdir
645 global objdump
646
49c16254
NC
647 if {! [file exists $tmpdir/$srclib] } then {
648 fail "$test ($tmpdir/$srclib does not exist)"
649 return
650 }
252b5132
RH
651 verbose -log "cp $tmpdir/$srclib $tmpdir/$libname.so"
652 exec cp $tmpdir/$srclib $tmpdir/$libname.so
653
654 verbose -log "$strip $tmpdir/$libname.so"
655 catch "exec $strip $tmpdir/$libname.so" exec_output
656 if [string match "" $exec_output] then {
657
658# If strip went OK, then run the usual tests on the thing to make sure that
659# it is sane.
660 if {![objdump_versionstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$verexp ]} {
661 fail "$test"
662 return
663 }
5a68afcf 664
252b5132
RH
665 if {![objdump_dynsymstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$versymexp ]} {
666 fail "$test"
667 return
668 }
5a68afcf 669
252b5132
RH
670 } else {
671 verbose -log "$exec_output"
672 fail "$test"
673 return
674 }
675 pass $test
676}
677
678
679proc build_exec { test source execname flags solibname verexp versymexp symexp } {
252b5132
RH
680 global srcdir
681 global subdir
682 global exec_output
683 global host_triplet
684 global tmpdir
685 global as
f1dab70d 686 global as_options
252b5132 687 global objdump
ad77db1c 688 global CC_FOR_TARGET
e062fcc8 689 global NOSANITIZE_CFLAGS
c6d47bff 690 global NOLTO_CFLAGS
252b5132 691
31941635 692 set shared "--shared --no-undefined-version"
252b5132 693 set script --version-script
e6a6c767
L
694
695 # Disable LTO for these tests.
669d5115 696 set cc_cmd "$CC_FOR_TARGET -S"
e6a6c767
L
697 if {[check_lto_available]} {
698 append cc_cmd " -fno-lto"
699 }
700
c6d47bff
L
701 # Disable all sanitizers and LTO.
702 append cc_cmd " $NOSANITIZE_CFLAGS $NOLTO_CFLAGS"
05fd99cc 703
e6a6c767 704 if ![ld_compile $cc_cmd $srcdir/$subdir/$source $tmpdir/$execname.s] {
5b1f6c95 705 unsupported "$test"
252b5132
RH
706 return
707 }
708
f1dab70d 709 if ![ld_assemble $as "$as_options $tmpdir/$execname.s" $tmpdir/$execname.o ] {
5b1f6c95 710 unsupported "$test"
252b5132
RH
711 return
712 }
713
714 if [string match "" $solibname] then {
715 set solibname_lib ""
716 } else {
717 set solibname_lib $tmpdir/$solibname
718 }
719
ad77db1c 720 if {![ld_link $CC_FOR_TARGET $tmpdir/$execname "$flags $tmpdir/$execname.o $solibname_lib"]} {
252b5132
RH
721 fail "$test"
722 return
723 }
724
725 if [string match "" $verexp] then {
726#
727# Make sure we get nothing back.
728#
729 if {![objdump_emptyverstuff $objdump $tmpdir/$execname ]} {
730 fail "$test"
731 return
732 }
733 } else {
734 if {![objdump_versionstuff $objdump $tmpdir/$execname $srcdir/$subdir/$verexp ]} {
735 fail "$test"
736 return
737 }
738 }
739
740 if [string match "" $versymexp] then {
741 if {![objdump_emptydynsymstuff $objdump $tmpdir/$execname ]} {
742 fail "$test"
743 return
744 }
745 } else {
746 if {![objdump_dynsymstuff $objdump $tmpdir/$execname $srcdir/$subdir/$versymexp ]} {
747 fail "$test"
748 return
749 }
750 }
751
752 if [string match "" $symexp] then {
753 if {![objdump_emptysymstuff $objdump $tmpdir/$execname.o ]} {
754 fail "$test"
755 return
756 }
757 } else {
758 if {![objdump_symstuff $objdump $tmpdir/$execname.o $srcdir/$subdir/$symexp ]} {
759 fail "$test"
760 return
761 }
762 }
763
764 pass $test
765}
766
fb35d3d8 767if { [istarget x86_64-*-linux*] \
6f86b3b0 768 || [istarget arm*-*-*] \
fb35d3d8 769 || ( [istarget mips*-*-linux*] && [at_least_gcc_version 4 3] ) } {
6f86b3b0 770 # x86_64, ARM and newer MIPS toolchains do not like non-pic shared libraries
35d437df
L
771 set pic "yes"
772} else {
773 set pic "no"
774}
252b5132
RH
775
776#
777# Basic test - build a library with versioned symbols.
778#
35d437df 779build_vers_lib_pic "vers1" vers1.c vers1 "" vers1.map vers1.ver vers1.dsym vers1.sym
252b5132
RH
780
781
782#
783# Test #2 - build a library, and link it against the library we built in step
784# 1.
785#
35d437df 786build_vers_lib_pic "vers2" vers2.c vers2 vers1.so vers2.map vers2.ver vers2.dsym ""
252b5132
RH
787
788#
789# Test #3 - build an executable, and link it against vers1.so.
790#
75c8d84d 791build_exec "vers3" vers3.c vers3 "-Wl,--no-as-needed" vers1.so vers3.ver vers3.dsym ""
252b5132
RH
792
793#
794# Test #4 - Make sure a version implicitly defined in an executable
795# causes a version node to be created. Verify this both with and without
796# --export-dynamic.
797#
798
799# This test fails on MIPS. On the MIPS we must put foo in the dynamic
800# symbol table, which the test does not expect.
801setup_xfail "mips*-*-*"
802build_exec "vers4" vers4.c vers4 "" "" "" "" vers4.sym
803
8233c393 804build_exec "vers4a" vers4.c vers4a "-Wl,-export-dynamic" "" vers4a.ver vers4a.dsym vers4a.sym
252b5132 805
267e2722
CD
806# Verify that --no-export-dynamic undoes the effect of --export-dynamic.
807setup_xfail "mips*-*-*"
8233c393 808build_exec "vers4b" vers4.c vers4b "-Wl,-export-dynamic -Wl,--no-export-dynamic" "" "" "" vers4.sym
267e2722 809
252b5132
RH
810
811#
812# Try multiple definitions foo@BAR and foo@@BAR and make sure the linker
813# complains.
814#
815test_ldfail "vers5" "" vers5.c vers5 "" "" "multiple definition of foo@VERS_1.2"
816
817#
818#
819# Now build a test that should reference a bunch of versioned symbols.
820# All of them should be correctly referenced.
821#
75c8d84d 822build_exec "vers6" vers6.c vers6 "-Wl,--no-as-needed" vers1.so vers6.ver vers6.dsym vers6.sym
252b5132
RH
823
824#
825# Another test to verify that something made local via 'local' is truly not
826# accessible.
827#
da54898d
L
828if [string match "yes" $pic] then {
829 xfail "vers7a"
830 xfail "vers7"
831} else {
832 build_vers_lib_no_pic "vers7a" vers7a.c vers7a "" vers7.map vers7a.ver vers7a.dsym vers7a.sym
252b5132 833
da54898d
L
834 test_ldfail "vers7" "" vers7.c vers7 vers7a.so "" "undefined reference to hide_a"
835}
252b5132
RH
836
837
838#
839# This test is designed to verify that we can pass a linker script on the
840# command line as if it were a normal .o file.
841#
842catch "exec cp $srcdir/$subdir/vers8.map $tmpdir/" ignore_output
35d437df 843build_vers_lib_pic "vers8" vers1.c vers8 vers8.map "" vers8.ver vers1.dsym vers1.sym
252b5132
RH
844
845#
846# This test tries to make sure that version references to versioned symbols
847# don't collide with default definitions with the same symbol.
848#
8233c393 849build_exec "vers9" vers9.c vers9 "-Wl,-export-dynamic" "" vers9.ver vers9.dsym vers9.sym
252b5132
RH
850
851
852#
853# Try and use a non-existant version node. The linker should fail with
854# an error message.
855#
856test_ldfail "vers10" "-DDO_TEST10" vers1.c vers10 "" "vers1.map --shared" "invalid version"
857
858#
859# Try and some things the assembler should complain about.
860#
861test_asfail "vers11" "-DDO_TEST11" vers1.c vers11 "no @ in symver"
862
863test_asfail "vers12" "-DDO_TEST12" vers1.c vers12 "extern version definition"
864
865#
866# Put a shared library in an archive library, and make sure the global
867# archive symbol table is sane.
868#
869test_ar "ar with versioned solib" vers13.a vers1.so vers13.asym
870
871#
872# Strip a shared library, and make sure we didn't screw something up in there.
873#
5a68afcf 874test_strip_vers_lib "vers14" vers1.so vers14 vers1.ver vers1.dsym
252b5132
RH
875
876
877#
5a68afcf 878# Build another test with some versioned symbols. Here we are going to
252b5132
RH
879# try and override something from the library, and we shouldn't get
880# any errors.
881#
5cb49709 882build_exec "vers15" vers15.c vers15 "-Wl,--no-as-needed" vers1.so vers15.ver vers15.dsym vers15.sym
252b5132
RH
883
884#
885# Test that when we override a versioned symbol from the library this
886# symbol appears in the dynamic symbol table of the executable.
887#
35d437df 888build_vers_lib_pic "vers16a" vers16a.c vers16a "" vers16.map vers16a.ver vers16a.dsym ""
75c8d84d 889build_exec "vers16" vers16.c vers16 "-Wl,--no-as-needed" vers16a.so "" vers16.dsym ""
f0489494
ILT
890
891# Test a weak versioned symbol.
35d437df
L
892build_vers_lib_pic "vers17" vers17.c vers17 "" vers17.map vers17.ver vers17.dsym ""
893build_vers_lib_pic "vers18" vers18.c vers18 vers17.so vers18.map vers18.ver vers18.dsym vers18.sym
8cfc7cf8 894build_exec "vers19" vers19.c vers19 "-Wl,--no-as-needed,-rpath,.,-rpath-link,." vers18.so vers19.ver vers19.dsym ""
67954772 895
f006af20 896build_vers_lib_no_pic "vers20a" vers20.c vers20a "" vers20.map vers20a.ver vers20.dsym ""
49c16254
NC
897if {! [file exists $tmpdir/vers20a.so] } then {
898 fail "Building vers20a.so"
899} else {
900 exec cp $tmpdir/vers20a.so $tmpdir/vers20b.so
901 build_vers_lib_no_pic "vers20" vers20.c vers20 "vers20a.so vers20b.so" vers20.map vers20.ver vers20.dsym ""
902}
b42d8061
L
903
904# Test .symver override.
35d437df 905build_vers_lib_pic "vers21" vers21.c vers21 "" vers21.map vers21.ver vers21.dsym vers21.sym
b16100ad
L
906
907# Test moving default definition from one DSO to another.
35d437df
L
908build_vers_lib_pic "vers22a" vers22a.c vers22a "" vers22.map vers22a.ver vers22a.dsym vers22a.sym
909build_vers_lib_pic "vers22b" vers22b.c vers22b "" vers22.map vers22b.ver vers22b.dsym ""
910build_vers_lib_pic "vers22" vers22.c vers22 "vers22a.so vers22b.so" "" vers22.ver vers22.dsym ""
9c092167
L
911
912# Test versioned definitions in different files.
da54898d 913if [string match "yes" $pic] then {
5a68afcf 914 xfail "vers23a"
da54898d
L
915 xfail "vers23b"
916 xfail "vers23c"
917 xfail "vers23d"
918 xfail "vers23"
919} else {
920 build_vers_lib_no_pic "vers23a" vers23a.c vers23a "" vers23a.map vers23a.ver vers23a.dsym vers23a.sym
921 build_vers_lib_no_pic "vers23b" vers23b.c vers23b "" vers23b.map vers23b.ver vers23b.dsym ""
922 build_vers_lib_no_pic "vers23c" vers23b.c vers23c "vers23a.so" vers23b.map vers23c.ver vers23b.dsym ""
75c8d84d
AM
923 build_exec "vers23d" vers23.c vers23d "-Wl,--no-as-needed tmpdir/vers23a.so tmpdir/vers23c.so" "" vers23.ver vers23d.dsym ""
924 build_exec "vers23" vers23.c vers23 "-Wl,--no-as-needed tmpdir/vers23a.so tmpdir/vers23b.o tmpdir/vers23b.so" "" vers23.ver vers23.dsym ""
da54898d 925}
9147e853
JJ
926
927# Test .symver x,x@VERS.0
928set as_pic_flags ""
929if [istarget sparc*-*-*] {
930 set as_pic_flags "-K PIC"
931}
932run_ld_link_tests [list "\"vers24a\"
897aea50 933 \"-shared --version-script $srcdir/$subdir/vers24.map\" \"\"
f1dab70d 934 \"$as_pic_flags $as_options\" {vers24a.c vers24b.c} { { readelf -Wrs vers24.rd } }
9147e853
JJ
935 \"libvers24a.so\" \"-fpic\""]
936run_ld_link_tests [list "\"vers24b\"
897aea50 937 \"-shared --version-script $srcdir/$subdir/vers24.map\" \"\"
f1dab70d 938 \"$as_pic_flags $as_options\" {vers24b.c vers24a.c} { { readelf -Wrs vers24.rd } }
9147e853
JJ
939 \"libvers24b.so\" \"-fpic\""]
940run_ld_link_tests [list "\"vers24c\"
897aea50 941 \"-shared --version-script $srcdir/$subdir/vers24.map\" \"\"
f1dab70d 942 \"$as_pic_flags $as_options\" {vers24c.c} { { readelf -Wrs vers24.rd } }
9147e853 943 \"libvers24c.so\" \"-fpic\""]
365f9131
L
944
945# Test versioned definition vs. normal definition in different files.
da54898d
L
946if [string match "yes" $pic] then {
947 xfail "vers25a"
948 xfail "vers25b1"
949 xfail "vers25b2"
950} else {
951 build_vers_lib_no_pic "vers25a" vers25a.c vers25a "" vers25a.map vers25a.ver vers25a.dsym ""
952 build_vers_lib_no_pic "vers25b1" vers25b.c vers25b1 "vers25a.o vers25a.so" "" vers25b.ver vers25b.dsym ""
953 build_vers_lib_no_pic "vers25b2" vers25b.c vers25b2 "vers25a.so vers25a.o" "" vers25b.ver vers25b.dsym ""
954}
955
f006af20
L
956build_vers_lib_pic "vers26a" vers26a.c vers26a "" vers26a.map vers26a.ver vers26a.dsym ""
957build_vers_lib_pic "vers26b1" vers26b.c vers26b1 "" "" vers26b.ver vers26b.dsym ""
958build_vers_lib_pic "vers26b2" vers26b.c vers26b2 "vers26a.so vers26b1.so vers26a.o" "" vers26b.ver vers26b.dsym ""
35d437df 959if [string match "yes" $pic] then {
fcd06cfe
AJ
960 xfail "vers26b3"
961} else {
962 build_vers_lib_no_pic "vers26b3" vers26b.c vers26b3 "vers26a.so vers26b1.so vers26a.o" "" vers26b.ver vers26b.dsym ""
963}
95aa61ce
L
964
965# Test versioned definition vs. hidden definition in different files.
da54898d
L
966if [string match "yes" $pic] then {
967 xfail "vers27a"
968 xfail "vers27b"
969 xfail "vers27c1"
970 xfail "vers27c2"
971 xfail "vers27d1"
972 xfail "vers27d2"
973 xfail "vers27d3"
974 xfail "vers27d4"
975 xfail "vers27d5"
976} else {
977 build_vers_lib_no_pic "vers27a" vers27a.c vers27a "" vers27a.map vers27a.ver vers27a.dsym ""
978 build_vers_lib_no_pic "vers27b" vers27b.c vers27b "" "" vers27b.ver vers27b.dsym ""
979 build_vers_lib_no_pic "vers27c1" vers27c.c vers27c1 "vers27b.o vers27a.so" "" vers27c.ver vers27c.dsym ""
980 build_vers_lib_no_pic "vers27c2" vers27c.c vers27c2 "vers27a.so vers27b.o" "" vers27c.ver vers27c.dsym ""
981 build_vers_lib_pic "vers27d1" vers27d1.c vers27d1 "" vers27a.map vers27d.ver vers27d.dsym vers27d.sym
49c16254 982 build_vers_lib_pic "vers27d2" vers27d2.c vers27d2 "" "" vers27b.ver vers27b.dsym ""
da54898d
L
983 build_executable "vers27d3" vers27d3.c vers27d3 "vers27b.o vers27d2.so vers27d1.so" "" vers27b.ver vers27b.dsym ""
984 build_vers_lib_pic "vers27d4" vers27d2.c vers27d4 "vers27a.so" "" vers27d4.ver vers27d4.dsym ""
985 build_executable "vers27d5" vers27d3.c vers27d5 "vers27d4.so vers27b.o vers27a.so" "" vers27b.ver vers27b.dsym ""
986}
d400d2a6
L
987
988# Test weak versioned definition vs. strong definition in different
989# files.
990build_vers_lib_pic "vers28a" vers28a.c vers28a "" "" vers28a.ver vers28a.dsym ""
991build_vers_lib_pic "vers28b" vers28b.c vers28b "" vers28b.map vers28b.ver vers28b.dsym ""
992build_vers_lib_pic "vers28c" vers28c.c vers28c "vers28b.so vers28a.so" "" vers28c.ver vers28c.dsym ""
3e3b46e5 993build_vers_lib_pic_flags "vers29" vers29.c vers29 "" "" vers29.ver vers29.dsym "" "--default-symver"
96f8ade5
JJ
994
995# Test #30 - test handling of symbol names global, local and extern in the
996# version script.
997build_vers_lib_pic "vers30" vers30.c vers30 "" vers30.map vers30.ver vers30.dsym ""
86043bbb
MM
998
999# Test #31 -- quoted strings in version sections.
1000build_vers_lib_pic "vers31" vers31.c vers31 "" vers31.map vers31.ver vers31.dsym ""
70840594
L
1001
1002# Test #32 -- linker --defsym
1003build_vers_lib_pic "vers32a" vers32a.c vers32a "" vers32.map vers32a.ver vers32a.dsym ""
1004build_vers_lib_pic_flags "vers32b" vers32b.c vers32b "vers32a.so" vers32.map vers32b.ver vers32b.dsym "" "--defsym foo=0"