]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/break-interp.exp
gdb/
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / break-interp.exp
CommitLineData
7b6bb8da 1# Copyright 2010, 2011 Free Software Foundation, Inc.
b8040f19
JK
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16# This test only works on GNU/Linux.
06a6f270 17if { ![isnative] || [is_remote host] || ![istarget *-linux*] || [skip_shlib_tests]} {
b8040f19
JK
18 continue
19}
20
5e3b36f8
JK
21load_lib prelink-support.exp
22
b8040f19
JK
23set test "break-interp"
24set binprefix ${objdir}/${subdir}/${test}
25# Only to get the $interp_system name.
26set srcfile_test "start.c"
27set binfile_test ${test}-test
06a6f270
JK
28set binfile_lib ${objdir}/${subdir}/${test}.so
29set srcfile "${test}-main.c"
30set srcfile_lib "${test}-lib.c"
31
32if [get_compiler_info ${binfile_lib}] {
33 return -1
34}
35
5e3b36f8 36# Use -soname so that the new library gets copied by build_executable_own_libs.
06a6f270 37
d8b34041 38if {[gdb_compile_shlib ${srcdir}/${subdir}/${srcfile_lib} ${binfile_lib} [list debug ldflags=-Wl,-soname,${test}.so]] != ""} {
06a6f270
JK
39 return -1
40}
41
b8040f19
JK
42if {[build_executable ${test}.exp $binfile_test ${srcfile_test} {}] == -1} {
43 return -1
44}
45
b8040f19
JK
46# Note: The separate debug info file content build-id/crc32 are not verified
47# contrary to the GDB search algorithm skipping non-matching ones.
48proc system_debug_get {exec} {
49 global debug_root
50
51 set exec_build_id_debug [build_id_debug_filename_get $exec]
52 set debug_base "[file tail $exec].debug"
53 set exec_dir [file dirname $exec]
54
55 # isfile returns 1 even for symlinks to files.
56 set retval $debug_root/$exec_build_id_debug
57 if [file isfile $retval] {
58 return $retval
59 }
60 set retval $exec_dir/$debug_base
61 if [file isfile $retval] {
62 return $retval
63 }
64 set retval $exec_dir/.debug/$debug_base
65 if [file isfile $retval] {
66 return $retval
67 }
68 set retval $debug_root/$exec_dir/$debug_base
69 if [file isfile $retval] {
70 return $retval
71 }
72 return ""
73}
74
75gdb_exit
76gdb_start
77set debug_root ""
78set test "show debug-file-directory"
79gdb_test_multiple $test $test {
80 -re "The directory where separate debug symbols are searched for is \"(.*)\".\r\n$gdb_prompt $" {
81 set debug_root $expect_out(1,string)
82 }
83}
84
85set interp_system [section_get ${objdir}/${subdir}/$binfile_test .interp]
86set interp_system_debug [system_debug_get $interp_system]
87verbose -log "$interp_system has debug $interp_system_debug"
88
5e3b36f8
JK
89proc prelinkNO {arg {name ""}} {
90 return [prelink_no $arg $name]
b8040f19
JK
91}
92
93proc prelinkYES {arg {name ""}} {
5e3b36f8 94 return [prelink_yes $arg $name]
b8040f19
JK
95}
96
97proc strip_debug {dest} {
98 set test "strip [file tail $dest]"
99 set strip_program [transform strip]
100 set command "exec $strip_program --strip-debug $dest"
101 verbose -log "command is $command"
102 if [catch $command] {
103 fail $test
104 return 0
105 } else {
106 pass $test
107 return 1
108 }
109}
110
d3d7896d
JK
111# Implementation of reach.
112
113proc reach_1 {func command displacement} {
ccf26247
JK
114 global gdb_prompt expect_out
115
d3d7896d
JK
116 if {$func == "_dl_debug_state"} {
117 # Breakpoint on _dl_debug_state can have problems due to its overlap
118 # with the existing internal breakpoint from GDB.
119 gdb_test_no_output "set stop-on-solib-events 1"
120 } elseif {! [gdb_breakpoint $func allow-pending]} {
121 return
122 }
b8040f19 123
d3d7896d
JK
124 set test "reach"
125 set test_displacement "seen displacement message as $displacement"
126 set debug_state_count 0
127 gdb_test_multiple $command $test {
128 -re "Using PIE \\(Position Independent Executable\\) displacement (0x\[0-9a-f\]+) " {
129 # Missing "$gdb_prompt $" is intentional.
130 if {$expect_out(1,string) == "0x0"} {
131 set case "ZERO"
132 } else {
133 set case "NONZERO"
ccf26247 134 }
d3d7896d
JK
135 if {$displacement == $case || $displacement == "PRESENT"} {
136 pass $test_displacement
137 set displacement "FOUND-$displacement"
138 } else {
139 fail $test_displacement
140 }
141 exp_continue
142 }
143 -re "Breakpoint \[0-9\]+, \\.?$func \\(.*\\) at .*:\[0-9\]+\r\n.*$gdb_prompt $" {
144 if {$func == "_dl_debug_state"} {
145 fail $test
146 } else {
b8040f19
JK
147 pass $test
148 }
d3d7896d
JK
149 }
150 -re "Breakpoint \[0-9\]+, \[0-9xa-f\]+ in \\.?$func \\(\\).*\r\n$gdb_prompt $" {
151 if {$func == "_dl_debug_state"} {
152 fail $test
153 } else {
b8040f19
JK
154 pass $test
155 }
156 }
d3d7896d
JK
157 -re "Stopped due to shared library event\r\n$gdb_prompt $" {
158 if {$func == "_dl_debug_state"} {
159 if {$debug_state_count == 0} {
160 # First stop does not yet relocate the _start function
161 # descriptor on ppc64.
162 set debug_state_count 1
163 send_gdb "continue\n"
164 exp_continue
165 } else {
166 pass $test
167 }
168 } else {
169 fail $test
170 }
ccf26247 171 }
b8040f19 172 }
d3d7896d
JK
173 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
174 fail $test_displacement
175 }
176
177 if {$func == "_dl_debug_state"} {
178 gdb_test_no_output "set stop-on-solib-events 0"
179 }
180}
181
182# `runto' does not check we stopped really at the function we specified.
183# DISPLACEMENT can be "NONE" for no message to be present, "ZERO" for
184# displacement of 0 bytes to be present, "NONZERO" for displacement of non-0
185# bytes to be present and "PRESENT" if both "ZERO" and "NONZERO" are valid.
186proc reach {func command displacement} {
187 global pf_prefix
188 set old_ldprefix $pf_prefix
189 lappend pf_prefix "reach-$func:"
190
191 reach_1 $func $command $displacement
ccf26247
JK
192
193 set pf_prefix $old_ldprefix
b8040f19
JK
194}
195
ccf26247
JK
196proc test_core {file displacement} {
197 global srcdir subdir gdb_prompt expect_out
61f0d762 198
bbfba9ed 199 set corefile [core_find $file {} "segv"]
61f0d762
JK
200 if {$corefile == ""} {
201 return
202 }
203
ccf26247
JK
204 global pf_prefix
205 set old_ldprefix $pf_prefix
206 lappend pf_prefix "core:"
207
61f0d762
JK
208 gdb_exit
209 gdb_start
210 # Clear it to never find any separate debug infos in $debug_root.
27d3a1a2
MS
211 gdb_test_no_output "set debug-file-directory" \
212 "set debug-file-directory for core"
61f0d762
JK
213 gdb_reinitialize_dir $srcdir/$subdir
214 gdb_load $file
215
ccf26247 216 # Print the "PIE (Position Independent Executable) displacement" message.
27d3a1a2 217 gdb_test_no_output "set verbose on"
ccf26247
JK
218
219 set test "core loaded"
09248348 220 set test_displacement "seen displacement message as $displacement"
ccf26247
JK
221 gdb_test_multiple "core-file $corefile" $test {
222 -re "Using PIE \\(Position Independent Executable\\) displacement (0x\[0-9a-f\]+) " {
223 # Missing "$gdb_prompt $" is intentional.
224 if {$expect_out(1,string) == "0x0"} {
225 set case "ZERO"
226 } else {
227 set case "NONZERO"
228 }
5e533c94 229 if {$displacement == $case || $displacement == "PRESENT"} {
ccf26247 230 pass $test_displacement
ccf26247 231 set displacement "FOUND-$displacement"
86e4bafc 232 } else {
ccf26247
JK
233 fail $test_displacement
234 }
235 exp_continue
236 }
237 -re "Core was generated by .*\r\n#0 .*$gdb_prompt $" {
238 # Do not check the binary filename as it may be truncated.
239 pass $test
240 }
241 }
242 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
243 fail $test_displacement
244 }
61f0d762
JK
245
246 gdb_test "bt" "#\[0-9\]+ +\[^\r\n\]*\\mlibfunc\\M\[^\r\n\]*\r\n#\[0-9\]+ +\[^\r\n\]*\\mmain\\M.*" "core main bt"
ccf26247
JK
247
248 set pf_prefix $old_ldprefix
61f0d762
JK
249}
250
0a1e94c7
JK
251proc test_attach_gdb {file pid displacement prefix} {
252 global gdb_prompt expect_out
bbfba9ed 253
ccf26247
JK
254 global pf_prefix
255 set old_ldprefix $pf_prefix
0a1e94c7 256 lappend pf_prefix "$prefix:"
ccf26247 257
bbfba9ed
JK
258 gdb_exit
259 gdb_start
ccf26247
JK
260
261 # Print the "PIE (Position Independent Executable) displacement" message.
27d3a1a2 262 gdb_test_no_output "set verbose on"
ccf26247 263
0a1e94c7
JK
264 if {$file != ""} {
265 gdb_test "file $file" "Reading symbols from .*done\\." "file"
266 }
267
ccf26247
JK
268 set test "attach"
269 gdb_test_multiple "attach $pid" $test {
0a1e94c7 270 -re "Attaching to (program: .*, )?process $pid\r\n" {
ccf26247
JK
271 # Missing "$gdb_prompt $" is intentional.
272 pass $test
273 }
274 }
275
276 set test "attach final prompt"
09248348 277 set test_displacement "seen displacement message as $displacement"
ccf26247
JK
278 gdb_test_multiple "" $test {
279 -re "Using PIE \\(Position Independent Executable\\) displacement (0x\[0-9a-f\]+) " {
280 # Missing "$gdb_prompt $" is intentional.
281 if {$expect_out(1,string) == "0x0"} {
282 set case "ZERO"
283 } else {
284 set case "NONZERO"
285 }
5e533c94 286 if {$displacement == $case || $displacement == "PRESENT"} {
ccf26247 287 pass $test_displacement
ccf26247 288 set displacement "FOUND-$displacement"
86e4bafc 289 } else {
ccf26247
JK
290 fail $test_displacement
291 }
292 exp_continue
293 }
294 -re "$gdb_prompt $" {
295 pass $test
296 }
297 }
298 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
299 fail $test_displacement
300 }
301
bbfba9ed
JK
302 gdb_test "bt" "#\[0-9\]+ +\[^\r\n\]*\\mlibfunc\\M\[^\r\n\]*\r\n#\[0-9\]+ +\[^\r\n\]*\\mmain\\M.*" "attach main bt"
303 gdb_exit
304
ccf26247 305 set pf_prefix $old_ldprefix
bbfba9ed
JK
306}
307
0a1e94c7
JK
308proc test_attach {file displacement {relink_args ""}} {
309 global board_info
310
311 gdb_exit
312
313 set test "sleep function started"
314
315 set command "${file} sleep"
316 set res [remote_spawn host $command];
317 if { $res < 0 || $res == "" } {
318 perror "Spawning $command failed."
319 fail $test
320 return
321 }
322 set pid [exp_pid -i $res]
323 gdb_expect {
324 -re "sleeping\r\n" {
325 pass $test
326 }
327 eof {
328 fail "$test (eof)"
329 return
330 }
331 timeout {
332 fail "$test (timeout)"
333 return
334 }
335 }
336
337 if {$relink_args == ""} {
338 test_attach_gdb "" $pid $displacement "attach"
339 } else {
340 # These could be rather passed as arguments.
341 global exec interp_saved interp
342
343 foreach relink {YES NO} {
3cd07d20
JK
344 # Formerly this test was testing only prelinking of $EXEC. As the
345 # prelink command automatically prelinks all of $EXEC's libraries,
346 # even $INTERP got prelinked. Therefore, we formerly had to
5e3b36f8
JK
347 # `[file_copy $interp_saved $interp]' to make $INTERP not affected
348 # by this prelinking of $EXEC.
3cd07d20
JK
349 #
350 # But now we need to test even prelinking of $INTERP. We could
351 # create a separate test to test just the $INTERP prelinking. For
352 # test simplicity, we merged this test and the test above by not
353 # restoring $INTERP after $EXEC prelink. $INTERP gets restored
354 # later below.
02835898
JK
355 #
356 # `(wrong library or version mismatch?)' messages are printed for
357 # $binfile_lib on platforms converting REL->RELA relocations by
358 # prelink (such as on i386). There is no reliable way to verify
359 # the library file matches the running library in such case but
360 # GDB at least attempts to set the right displacement. We test
361 # `libfunc' is present in the backtrace and therefore the
362 # displacement has been guessed right.
3cd07d20
JK
363
364 if [prelink$relink $relink_args [file tail $exec]] {
0a1e94c7
JK
365 # /proc/PID/exe cannot be loaded as it is "EXECNAME (deleted)".
366 test_attach_gdb $exec $pid $displacement "attach-relink$relink"
367 }
368 }
5e3b36f8 369 file_copy $interp_saved $interp
0a1e94c7
JK
370 }
371
372 remote_exec host "kill -9 $pid"
373}
374
ccf26247 375proc test_ld {file ifmain trynosym displacement} {
fda326dd 376 global srcdir subdir gdb_prompt expect_out inferior_exited_re
b8040f19
JK
377
378 # First test normal `file'-command loaded $FILE with symbols.
379
380 gdb_exit
381 gdb_start
382 # Clear it to never find any separate debug infos in $debug_root.
27d3a1a2 383 gdb_test_no_output "set debug-file-directory"
b8040f19
JK
384 gdb_reinitialize_dir $srcdir/$subdir
385 gdb_load $file
386
ccf26247 387 # Print the "PIE (Position Independent Executable) displacement" message.
27d3a1a2 388 gdb_test_no_output "set verbose on"
ccf26247 389
4e5799b6
JK
390 # We want to test the re-run of a PIE in the case where the executable
391 # is loaded with a different displacement, but disable-randomization
392 # prevents that from happening. So turn it off.
393 gdb_test "set disable-randomization off"
394
d3d7896d
JK
395 if $ifmain {
396 gdb_test_no_output "set args segv"
397 } else {
398 global objdir binfile_test
399
400 # ld.so needs some executable to run to reach _dl_debug_state.
a449c2d8 401 gdb_test_no_output "set args ${objdir}/${subdir}/$binfile_test" "set args OBJDIR/${subdir}/$binfile_test"
d3d7896d
JK
402 }
403
404 reach "_dl_debug_state" "run" $displacement
06a6f270 405
d3d7896d 406 gdb_test "bt" "#0 +\[^\r\n\]*\\m_dl_debug_state\\M.*" "dl bt"
06a6f270 407
b8040f19 408 if $ifmain {
86e4bafc 409 reach "main" continue "NONE"
06a6f270 410
ccf26247 411 reach "libfunc" continue "NONE"
06a6f270
JK
412
413 gdb_test "bt" "#0 +\[^\r\n\]*\\mlibfunc\\M\[^\r\n\]*\r\n#1 +\[^\r\n\]*\\mmain\\M.*" "main bt"
4e5799b6 414 }
61f0d762 415
4e5799b6
JK
416 # Try re-run if the new PIE displacement takes effect.
417 gdb_test "kill" "" "kill" {Kill the program being debugged\? \(y or n\) } "y"
d3d7896d 418 reach "_dl_debug_state" "run" $displacement
4e5799b6
JK
419
420 if $ifmain {
ccf26247 421 test_core $file $displacement
bbfba9ed 422
ccf26247 423 test_attach $file $displacement
b8040f19 424 }
51bee8e9
JK
425
426 if !$trynosym {
427 return
428 }
429
430 global pf_prefix
431 set old_ldprefix $pf_prefix
432 lappend pf_prefix "symbol-less:"
433
434 # Test also `exec-file'-command loaded $FILE - therefore without symbols.
435 # SYMBOL_OBJFILE is not available and only EXEC_BFD must be used.
436
437 gdb_exit
438 gdb_start
439 # Clear it to never find any separate debug infos in $debug_root.
27d3a1a2 440 gdb_test_no_output "set debug-file-directory"
51bee8e9
JK
441 gdb_reinitialize_dir $srcdir/$subdir
442
ccf26247 443 # Print the "PIE (Position Independent Executable) displacement" message.
27d3a1a2 444 gdb_test_no_output "set verbose on"
ccf26247 445
51bee8e9
JK
446 # Test no (error) message has been printed by `exec-file'.
447 set escapedfile [string_to_regexp $file]
448 gdb_test "exec-file $file" "exec-file $escapedfile" "load"
449
450 if $ifmain {
d3d7896d 451 reach "_dl_debug_state" run $displacement
51bee8e9 452
93c17e06
JK
453 # Use two separate gdb_test_multiple statements to avoid timeouts due
454 # to slow processing of wildcard capturing long output
51bee8e9
JK
455 set test "info files"
456 set entrynohex ""
93c17e06 457 gdb_test_multiple $test $test {
e0cc584e 458 -re "\r\n\[\t \]*Entry point:\[\t \]*0x(\[0-9a-f\]+)\r\n" {
ccf26247 459 set entrynohex $expect_out(1,string)
93c17e06
JK
460 gdb_test_multiple "" $test {
461 -re "\r\n$gdb_prompt $" {
462 pass $test
463 }
e0cc584e 464 }
51bee8e9
JK
465 }
466 }
e0cc584e 467
4569eed2
JK
468 # `info sym' cannot be tested for .opd as the binary may not have
469 # symbols.
8e64f2a0 470 if {[istarget powerpc64-*] && [is_lp64_target]} {
4569eed2
JK
471 set test "convert entry point"
472 gdb_test_multiple "p *(void(*)(void) *) 0x$entrynohex" $test {
473 -re " =( \\(\[^0-9\]*\\))? 0x(\[0-9a-f\]+)( < \[^\r\n\]*)?\r\n$gdb_prompt $" {
474 set entrynohex $expect_out(2,string)
475 pass $test
476 }
477 }
478 }
51bee8e9
JK
479 if {$entrynohex != ""} {
480 gdb_test "break *0x$entrynohex" "" "break at entry point"
481 gdb_test "continue" "\r\nBreakpoint \[0-9\]+, 0x0*$entrynohex in .*" "entry point reached"
482 }
483 } else {
484 # There is no symbol to break at ld.so. Moreover it can exit with an
485 # error code.
ccf26247
JK
486
487 set test "ld.so exit"
09248348 488 set test_displacement "seen displacement message as $displacement"
ccf26247
JK
489 gdb_test_multiple "run" $test {
490 -re "Using PIE \\(Position Independent Executable\\) displacement (0x\[0-9a-f\]+) " {
491 # Missing "$gdb_prompt $" is intentional.
492 if {$expect_out(1,string) == "0x0"} {
493 set case "ZERO"
494 } else {
495 set case "NONZERO"
496 }
5e533c94 497 if {$displacement == $case || $displacement == "PRESENT"} {
ccf26247 498 pass $test_displacement
ccf26247 499 set displacement "FOUND-$displacement"
86e4bafc 500 } else {
ccf26247
JK
501 fail $test_displacement
502 }
503 exp_continue
504 }
fda326dd 505 -re "$inferior_exited_re (normally|with code \[0-9\]+).\r\n$gdb_prompt $" {
ccf26247
JK
506 # Do not check the binary filename as it may be truncated.
507 pass $test
508 }
509 }
510 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
511 fail $test_displacement
512 }
51bee8e9
JK
513 }
514
515 set pf_prefix $old_ldprefix
b8040f19
JK
516}
517
518# Create separate binaries for each testcase - to make the possible reported
519# problem reproducible after the whole test run finishes.
520
521set old_ldprefix $pf_prefix
522foreach ldprelink {NO YES} {
523 foreach ldsepdebug {NO IN SEP} {
524 # Skip running the ldsepdebug test if we do not have system separate
525 # debug info available.
526 if {$interp_system_debug == "" && $ldsepdebug == "SEP"} {
527 continue
528 }
529
530 set ldname "LDprelink${ldprelink}debug${ldsepdebug}"
531 set interp $binprefix-$ldname
532
533 # prelink needs to always prelink all the dependencies to do any file
534 # modifications of its files. ld.so also needs all the dependencies to
535 # be prelinked to omit the relocation process. In-memory file offsets
536 # are not dependent whether ld.so went the prelink way or through the
537 # relocation process.
538 #
539 # For GDB we are not interested whether prelink succeeds as it is
540 # transparent to GDB. GDB is being tested for differences of file
541 # offsets vs. in-memory offsets. So we have to prelink even ld.so for
542 # the BIN modification to happen but we need to restore the original
543 # possibly unprelinked ld.so to test all the combinations for GDB.
544 set interp_saved ${interp}-saved
545
546 set pf_prefix $old_ldprefix
547 lappend pf_prefix "$ldname:"
548
549 if {$ldsepdebug == "NO"} {
5e3b36f8 550 file_copy $interp_system $interp
b8040f19
JK
551 # Never call strip-debug before unprelink:
552 # prelink: ...: Section .note.gnu.build-id created after prelinking
553 if ![prelinkNO $interp] {
554 continue
555 }
556 strip_debug $interp
557 } elseif {$ldsepdebug == "IN" && $interp_system_debug == ""} {
5e3b36f8 558 file_copy $interp_system $interp
b8040f19 559 } elseif {$ldsepdebug == "IN" && $interp_system_debug != ""} {
5e3b36f8
JK
560 file_copy $interp_system $interp
561 file_copy $interp_system_debug "${interp}.debug"
b8040f19
JK
562 # eu-unstrip: DWARF data in '...' not adjusted for prelinking bias; consider prelink -u
563 if {![prelinkNO $interp] || ![prelinkNO "${interp}.debug"]} {
564 continue
565 }
566 set test "eu-unstrip unprelinked:[file tail $interp_system] + [file tail $interp_system_debug] to [file tail $interp]"
567 set command "exec eu-unstrip -o $interp $interp ${interp}.debug"
568 verbose -log "command is $command"
569 if [catch $command] {
570 setup_xfail *-*-*
571 fail $test
572 continue
573 } else {
574 pass $test
575 }
576 } elseif {$ldsepdebug == "SEP" && $interp_system_debug == ""} {
5e3b36f8 577 file_copy $interp_system $interp
b8040f19
JK
578 # eu-unstrip: DWARF data in '...' not adjusted for prelinking bias; consider prelink -u
579 if ![prelinkNO $interp] {
580 continue
581 }
582 gdb_gnu_strip_debug $interp
583 } elseif {$ldsepdebug == "SEP" && $interp_system_debug != ""} {
5e3b36f8
JK
584 file_copy $interp_system $interp
585 file_copy $interp_system_debug "${interp}.debug"
b8040f19
JK
586 }
587
588 if {$ldsepdebug == "SEP"} {
589 if ![prelinkNO "${interp}.debug"] {
590 continue
591 }
592 } else {
593 file delete "${interp}.debug"
594 }
595
596 if ![prelink$ldprelink $interp] {
597 continue
598 }
ccf26247
JK
599 if {$ldprelink == "NO"} {
600 set displacement "NONZERO"
601 } else {
5e533c94
JK
602 # x86* kernel loads prelinked PIE binary at its prelinked address
603 # but ppc* kernel loads it at a random address. prelink normally
604 # skips PIE binaries during the system scan.
605 set displacement "PRESENT"
ccf26247
JK
606 }
607 test_ld $interp 0 [expr {$ldsepdebug == "NO"}] $displacement
b8040f19 608
5e3b36f8 609 if ![file_copy $interp $interp_saved] {
b8040f19
JK
610 continue
611 }
612 set old_binprefix $pf_prefix
613 foreach binprelink {NO YES} {
614 foreach binsepdebug {NO IN SEP} {
0a1e94c7
JK
615 # "ATTACH" is like "YES" but it is modified during run.
616 # It cannot be used for problem reproducibility after the
617 # testcase ends.
618 foreach binpie {NO YES ATTACH} {
b8040f19
JK
619 # This combination is not possible, non-PIE (fixed address)
620 # binary cannot be prelinked to any (other) address.
621 if {$binprelink == "YES" && $binpie == "NO"} {
622 continue
623 }
624
625 set binname "BINprelink${binprelink}debug${binsepdebug}pie${binpie}"
626 set exec $binprefix-$binname
b8040f19
JK
627
628 set pf_prefix $old_binprefix
629 lappend pf_prefix "$binname:"
630
d8b34041 631 set opts "ldflags=-Wl,$binfile_lib,-rpath,[file dirname $binfile_lib]"
b8040f19
JK
632 if {$binsepdebug != "NO"} {
633 lappend opts {debug}
634 }
0a1e94c7 635 if {$binpie != "NO"} {
b8040f19
JK
636 lappend opts {additional_flags=-fPIE -pie}
637 }
5e3b36f8
JK
638
639 set dir ${exec}.d
640 set relink_args [build_executable_own_libs ${test}.exp [file tail $exec] $srcfile $opts $interp $dir]
641 if {$relink_args == ""} {
b8040f19
JK
642 continue;
643 }
5e3b36f8 644
b8040f19
JK
645 if {$binsepdebug == "SEP"} {
646 gdb_gnu_strip_debug $exec
b8040f19
JK
647 }
648
0a1e94c7
JK
649 if {$binpie == "NO"} {
650 set displacement "NONE"
651 } elseif {$binprelink == "NO"} {
652 set displacement "NONZERO"
653 } else {
5e533c94
JK
654 # x86* kernel loads prelinked PIE binary at its
655 # prelinked address but ppc* kernel loads it at
656 # a random address. prelink normally skips PIE
657 # binaries during the system scan.
658 set displacement "PRESENT"
0a1e94c7
JK
659 }
660
0a1e94c7 661 if {[prelink$binprelink $relink_args [file tail $exec]]
5e3b36f8 662 && [file_copy $interp_saved $interp]} {
0a1e94c7
JK
663 if {$binpie != "ATTACH"} {
664 test_ld $exec 1 [expr {$binsepdebug == "NO"}] $displacement
ccf26247 665 } else {
0a1e94c7
JK
666 # If the file has been randomly prelinked it must
667 # be "NONZERO". We could see "ZERO" only if it was
668 # unprelinked and it is now running at the same
669 # address - which is 0 but executable can never run
670 # at address 0.
671
672 set displacement "NONZERO"
673 test_attach $exec $displacement $relink_args
674
675 # ATTACH means that executables and libraries have
676 # been modified after they have been run. They
677 # cannot be reused for problem reproducibility after
678 # the testcase ends in the ATTACH case. Therefore
679 # they are rather deleted not to confuse after the
680 # run finishes.
681 set exec_debug [system_debug_get $exec]
682 if {$exec_debug != ""} {
683 # `file delete [glob "${exec_debug}*"]' does not work.
684 foreach f [glob "${exec_debug}*"] {
685 file delete $f
686 }
687 }
688 file delete -force $dir
689 # `file delete [glob "${exec}*"]' does not work.
690 foreach f [glob "${exec}*"] {
691 file delete $f
692 }
ccf26247 693 }
b8040f19
JK
694 }
695 }
696 }
697 }
698
699 file delete $interp_saved
700 }
701}
702set pf_prefix $old_ldprefix