]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/signull.exp
Update copyright year range in all GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / signull.exp
CommitLineData
8bfabb04
AC
1# This testcase is part of GDB, the GNU debugger.
2
b811d2c2 3# Copyright 2004-2020 Free Software Foundation, Inc.
8bfabb04
AC
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
e22f8b7c 7# the Free Software Foundation; either version 3 of the License, or
8bfabb04
AC
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
e22f8b7c 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
8bfabb04
AC
17
18# Check that GDB can trigger and backtrace SIGSEGV signal stacks
19# caused by both accessing (data) and executing (code) at address
20# zero.
21
22# On function descriptor architectures, a zero descriptor, instead of
23# a NULL pointer, is used. That way the NULL code test always
24# contains a zero code reference.
25
26# For recovery, sigjmp/longjmp are used.
27
28# This also tests backtrace/gdb1476.
29
5f579bc5 30if [target_info exists gdb,nosignals] {
446ab585 31 verbose "Skipping signull.exp because of nosignals."
5f579bc5
NS
32 continue
33}
34
8bfabb04 35
0ab77f5f
TT
36standard_testfile .c
37
8bfabb04 38if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
84c93cd5 39 untested "failed to compile"
b60f0898 40 return -1
8bfabb04
AC
41}
42
0ab77f5f 43clean_restart ${binfile}
8bfabb04
AC
44
45#
46# Run to `main' where we begin our tests.
47#
48
49if ![runto_main] then {
c8ee3f04
PW
50 fail "can't run to main"
51 return 0
8bfabb04
AC
52}
53
54# If we can examine what's at memory address 0, it is possible that we
55# could also execute it. This could probably make us run away,
56# executing random code, which could have all sorts of ill effects,
57# especially on targets without an MMU. Don't run the tests in that
58# case.
59
20c6f1e1 60if { [is_address_zero_readable] } {
bc6c7af4 61 untested "memory at address 0 is possibly executable"
20c6f1e1 62 return
8bfabb04
AC
63}
64
65# If an attempt to call a NULL pointer leaves the inferior in main,
66# then function pointers are descriptors, probe this and remember the
67# result.
68
27d3a1a2
MS
69gdb_test_no_output "set test = code_entry_point" \
70 "set for function pointer probe"
8bfabb04
AC
71set test "probe function pointer"
72set function_pointer code_entry_point
aacd552b 73set signame "SIGSEGV"
8bfabb04 74gdb_test_multiple "continue" "$test" {
9d9030bc 75 -re "Program received signal SIGSEGV.*bowler .*$gdb_prompt $" {
8bfabb04
AC
76 set function_pointer code_descriptor
77 pass "$test (function descriptor)"
78 }
79 -re "Program received signal SIGSEGV.*0.*$gdb_prompt $" {
80 pass "$test (function entry-point)"
81 }
aacd552b
TG
82 -re "Program received signal SIGBUS.*0.*$gdb_prompt $" {
83 set signame SIGBUS
84 pass "$test (function entry-point)"
85 }
8bfabb04
AC
86}
87
88# Re-start from scratch, breakpoint the bowler so that control is
89# regained after each test, and run up to that.
90rerun_to_main
91gdb_test "break bowler"
92gdb_test "break keeper"
93# By default Stop:Yes Print:Yes Pass:Yes
94gdb_test "handle SIGSEGV" "SIGSEGV.*Yes.*Yes.*Yes.*Segmentation fault"
aacd552b 95gdb_test "handle SIGBUS" "SIGBUS.*Yes.*Yes.*Yes.*Bus error"
8bfabb04
AC
96
97# For the given signal type, check that: the SIGSEGV occures; a
98# backtrace from the SEGV works; the sigsegv is delivered; a backtrace
99# through the SEGV works.
100
101proc test_segv { name tag bt_from_segv bt_from_keeper } {
aacd552b 102 global signame
ec58997a
AC
103 gdb_test continue "Breakpoint.* bowler.*" "${name}; start with the bowler"
104 # NB: Don't use $tag in the testname - changes across systems.
27d3a1a2 105 gdb_test_no_output "set test = $tag" "${name}; select the pointer type"
aacd552b
TG
106 gdb_test continue "Program received signal ${signame}.*" \
107 "${name}; take the ${signame}"
108 gdb_test backtrace $bt_from_segv "${name}; backtrace from ${signame}"
ec58997a 109 gdb_test continue "Breakpoint.* keeper.*" "${name}; continue to the keeper"
aacd552b 110 gdb_test backtrace $bt_from_keeper "${name}; backtrace from keeper through ${signame}"
8bfabb04
AC
111}
112
ec58997a 113test_segv "data read" data_read \
9d9030bc
AC
114 {#0 .* bowler .*#1 .* main .*} \
115 {#0 .* keeper .*#1 .* handler .*#2 .* bowler .*#3 .* main .*}
ec58997a 116test_segv "data write" data_write \
8bfabb04
AC
117 {#0 .* bowler .*#1 .* main .*} \
118 {#0 .* keeper .*#1 .* handler .*#2 .* bowler .*#3 .* main .*}
119test_segv code $function_pointer \
120 {#0 .* 0x0+ .*#1 .* bowler .*#2 .* main .*} \
121 {#0 .* keeper .*#1 .* handler .*#2 .* 0x0+ .*#3 .* bowler .*#4 .* main .*}