2004-05-13 20:12:07 +02:00
|
|
|
# This testcase is part of GDB, the GNU debugger.
|
|
|
|
|
2016-01-01 05:33:14 +01:00
|
|
|
# Copyright 2004-2016 Free Software Foundation, Inc.
|
2004-05-13 20:12:07 +02:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-23 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2004-05-13 20:12:07 +02:00
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-05-13 20:12:07 +02:00
|
|
|
|
|
|
|
# Check that GDB can trigger and backtrace SIGSEGV signal stacks
|
|
|
|
# caused by both accessing (data) and executing (code) at address
|
|
|
|
# zero.
|
|
|
|
|
|
|
|
# On function descriptor architectures, a zero descriptor, instead of
|
|
|
|
# a NULL pointer, is used. That way the NULL code test always
|
|
|
|
# contains a zero code reference.
|
|
|
|
|
|
|
|
# For recovery, sigjmp/longjmp are used.
|
|
|
|
|
|
|
|
# This also tests backtrace/gdb1476.
|
|
|
|
|
2005-03-08 11:12:21 +01:00
|
|
|
if [target_info exists gdb,nosignals] {
|
2007-03-23 13:41:18 +01:00
|
|
|
verbose "Skipping signull.exp because of nosignals."
|
2005-03-08 11:12:21 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2004-05-13 20:12:07 +02:00
|
|
|
|
test suite update - gdb.base/s*
Convert files gdb.base/s*.exp to use standard_output_file et al.
* gdb.base/save-bp.exp, gdb.base/savedregs.exp,
gdb.base/scope.exp, gdb.base/sep.exp, gdb.base/sepsymtab.exp,
gdb.base/set-lang-auto.exp, gdb.base/setshow.exp,
gdb.base/setvar.exp, gdb.base/shlib-call.exp,
gdb.base/shreloc.exp, gdb.base/sigall.exp,
gdb.base/sigaltstack.exp, gdb.base/sigbpt.exp,
gdb.base/sigchld.exp, gdb.base/siginfo-addr.exp,
gdb.base/siginfo-infcall.exp, gdb.base/siginfo-obj.exp,
gdb.base/siginfo.exp, gdb.base/signals.exp, gdb.base/signest.exp,
gdb.base/signull.exp, gdb.base/sigrepeat.exp,
gdb.base/sigstep.exp, gdb.base/sizeof.exp,
gdb.base/skip-solib.exp, gdb.base/so-impl-ld.exp,
gdb.base/solib-display.exp, gdb.base/solib-nodir.exp,
gdb.base/solib-overlap.exp, gdb.base/solib-symbol.exp,
gdb.base/solib-weak.exp, gdb.base/source.exp,
gdb.base/stack-checking.exp, gdb.base/stale-infcall.exp,
gdb.base/stap-probe.exp, gdb.base/start.exp,
gdb.base/step-break.exp, gdb.base/step-bt.exp,
gdb.base/step-line.exp, gdb.base/step-resume-infcall.exp,
gdb.base/step-test.exp, gdb.base/structs.exp,
gdb.base/structs2.exp, gdb.base/structs3.exp,
gdb.base/symbol-without-target_section.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 20:58:28 +02:00
|
|
|
standard_testfile .c
|
|
|
|
|
2004-05-13 20:12:07 +02:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
2006-08-10 07:27:22 +02:00
|
|
|
untested signull.exp
|
|
|
|
return -1
|
2004-05-13 20:12:07 +02:00
|
|
|
}
|
|
|
|
|
test suite update - gdb.base/s*
Convert files gdb.base/s*.exp to use standard_output_file et al.
* gdb.base/save-bp.exp, gdb.base/savedregs.exp,
gdb.base/scope.exp, gdb.base/sep.exp, gdb.base/sepsymtab.exp,
gdb.base/set-lang-auto.exp, gdb.base/setshow.exp,
gdb.base/setvar.exp, gdb.base/shlib-call.exp,
gdb.base/shreloc.exp, gdb.base/sigall.exp,
gdb.base/sigaltstack.exp, gdb.base/sigbpt.exp,
gdb.base/sigchld.exp, gdb.base/siginfo-addr.exp,
gdb.base/siginfo-infcall.exp, gdb.base/siginfo-obj.exp,
gdb.base/siginfo.exp, gdb.base/signals.exp, gdb.base/signest.exp,
gdb.base/signull.exp, gdb.base/sigrepeat.exp,
gdb.base/sigstep.exp, gdb.base/sizeof.exp,
gdb.base/skip-solib.exp, gdb.base/so-impl-ld.exp,
gdb.base/solib-display.exp, gdb.base/solib-nodir.exp,
gdb.base/solib-overlap.exp, gdb.base/solib-symbol.exp,
gdb.base/solib-weak.exp, gdb.base/source.exp,
gdb.base/stack-checking.exp, gdb.base/stale-infcall.exp,
gdb.base/stap-probe.exp, gdb.base/start.exp,
gdb.base/step-break.exp, gdb.base/step-bt.exp,
gdb.base/step-line.exp, gdb.base/step-resume-infcall.exp,
gdb.base/step-test.exp, gdb.base/structs.exp,
gdb.base/structs2.exp, gdb.base/structs3.exp,
gdb.base/symbol-without-target_section.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 20:58:28 +02:00
|
|
|
clean_restart ${binfile}
|
2004-05-13 20:12:07 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Run to `main' where we begin our tests.
|
|
|
|
#
|
|
|
|
|
|
|
|
if ![runto_main] then {
|
|
|
|
gdb_suppress_tests
|
|
|
|
}
|
|
|
|
|
|
|
|
# If we can examine what's at memory address 0, it is possible that we
|
|
|
|
# could also execute it. This could probably make us run away,
|
|
|
|
# executing random code, which could have all sorts of ill effects,
|
|
|
|
# especially on targets without an MMU. Don't run the tests in that
|
|
|
|
# case.
|
|
|
|
|
2014-08-07 10:09:38 +02:00
|
|
|
if { [is_address_zero_readable] } {
|
2016-12-01 21:40:05 +01:00
|
|
|
untested "memory at address 0 is possibly executable"
|
2014-08-07 10:09:38 +02:00
|
|
|
return
|
2004-05-13 20:12:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# If an attempt to call a NULL pointer leaves the inferior in main,
|
|
|
|
# then function pointers are descriptors, probe this and remember the
|
|
|
|
# result.
|
|
|
|
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set test = code_entry_point" \
|
|
|
|
"set for function pointer probe"
|
2004-05-13 20:12:07 +02:00
|
|
|
set test "probe function pointer"
|
|
|
|
set function_pointer code_entry_point
|
2009-02-05 14:59:18 +01:00
|
|
|
set signame "SIGSEGV"
|
2004-05-13 20:12:07 +02:00
|
|
|
gdb_test_multiple "continue" "$test" {
|
2004-06-16 18:40:51 +02:00
|
|
|
-re "Program received signal SIGSEGV.*bowler .*$gdb_prompt $" {
|
2004-05-13 20:12:07 +02:00
|
|
|
set function_pointer code_descriptor
|
|
|
|
pass "$test (function descriptor)"
|
|
|
|
}
|
|
|
|
-re "Program received signal SIGSEGV.*0.*$gdb_prompt $" {
|
|
|
|
pass "$test (function entry-point)"
|
|
|
|
}
|
2009-02-05 14:59:18 +01:00
|
|
|
-re "Program received signal SIGBUS.*0.*$gdb_prompt $" {
|
|
|
|
set signame SIGBUS
|
|
|
|
pass "$test (function entry-point)"
|
|
|
|
}
|
2004-05-13 20:12:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Re-start from scratch, breakpoint the bowler so that control is
|
|
|
|
# regained after each test, and run up to that.
|
|
|
|
rerun_to_main
|
|
|
|
gdb_test "break bowler"
|
|
|
|
gdb_test "break keeper"
|
|
|
|
# By default Stop:Yes Print:Yes Pass:Yes
|
|
|
|
gdb_test "handle SIGSEGV" "SIGSEGV.*Yes.*Yes.*Yes.*Segmentation fault"
|
2009-02-05 14:59:18 +01:00
|
|
|
gdb_test "handle SIGBUS" "SIGBUS.*Yes.*Yes.*Yes.*Bus error"
|
2004-05-13 20:12:07 +02:00
|
|
|
|
|
|
|
# For the given signal type, check that: the SIGSEGV occures; a
|
|
|
|
# backtrace from the SEGV works; the sigsegv is delivered; a backtrace
|
|
|
|
# through the SEGV works.
|
|
|
|
|
|
|
|
proc test_segv { name tag bt_from_segv bt_from_keeper } {
|
2009-02-05 14:59:18 +01:00
|
|
|
global signame
|
2004-07-13 15:44:01 +02:00
|
|
|
gdb_test continue "Breakpoint.* bowler.*" "${name}; start with the bowler"
|
|
|
|
# NB: Don't use $tag in the testname - changes across systems.
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set test = $tag" "${name}; select the pointer type"
|
2009-02-05 14:59:18 +01:00
|
|
|
gdb_test continue "Program received signal ${signame}.*" \
|
|
|
|
"${name}; take the ${signame}"
|
|
|
|
gdb_test backtrace $bt_from_segv "${name}; backtrace from ${signame}"
|
2004-07-13 15:44:01 +02:00
|
|
|
gdb_test continue "Breakpoint.* keeper.*" "${name}; continue to the keeper"
|
2009-02-05 14:59:18 +01:00
|
|
|
gdb_test backtrace $bt_from_keeper "${name}; backtrace from keeper through ${signame}"
|
2004-05-13 20:12:07 +02:00
|
|
|
}
|
|
|
|
|
2004-07-13 15:44:01 +02:00
|
|
|
test_segv "data read" data_read \
|
2004-06-16 18:40:51 +02:00
|
|
|
{#0 .* bowler .*#1 .* main .*} \
|
|
|
|
{#0 .* keeper .*#1 .* handler .*#2 .* bowler .*#3 .* main .*}
|
2004-07-13 15:44:01 +02:00
|
|
|
test_segv "data write" data_write \
|
2004-05-13 20:12:07 +02:00
|
|
|
{#0 .* bowler .*#1 .* main .*} \
|
|
|
|
{#0 .* keeper .*#1 .* handler .*#2 .* bowler .*#3 .* main .*}
|
|
|
|
test_segv code $function_pointer \
|
|
|
|
{#0 .* 0x0+ .*#1 .* bowler .*#2 .* main .*} \
|
|
|
|
{#0 .* keeper .*#1 .* handler .*#2 .* 0x0+ .*#3 .* bowler .*#4 .* main .*}
|