]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/signull.exp
e440c1707ea34ac8f6f747fcbb909684d6f46007
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / signull.exp
1 # This testcase is part of GDB, the GNU debugger.
2
3 # Copyright 2004-2013 Free Software Foundation, Inc.
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
7 # the Free Software Foundation; either version 3 of the License, or
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
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
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
30 if [target_info exists gdb,nosignals] {
31 verbose "Skipping signull.exp because of nosignals."
32 continue
33 }
34
35
36 standard_testfile .c
37
38 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
39 untested signull.exp
40 return -1
41 }
42
43 clean_restart ${binfile}
44
45 #
46 # Run to `main' where we begin our tests.
47 #
48
49 if ![runto_main] then {
50 gdb_suppress_tests
51 }
52
53 # If we can examine what's at memory address 0, it is possible that we
54 # could also execute it. This could probably make us run away,
55 # executing random code, which could have all sorts of ill effects,
56 # especially on targets without an MMU. Don't run the tests in that
57 # case.
58
59 gdb_test_multiple "x 0" "memory at address 0" {
60 -re "0x0:.*Cannot access memory at address 0x0.*$gdb_prompt $" { }
61 -re "0x0:.*Error accessing memory address 0x0.*$gdb_prompt $" { }
62 -re ".*$gdb_prompt $" {
63 untested "Memory at address 0 is possibly executable"
64 return
65 }
66 }
67
68 # If an attempt to call a NULL pointer leaves the inferior in main,
69 # then function pointers are descriptors, probe this and remember the
70 # result.
71
72 gdb_test_no_output "set test = code_entry_point" \
73 "set for function pointer probe"
74 set test "probe function pointer"
75 set function_pointer code_entry_point
76 set signame "SIGSEGV"
77 gdb_test_multiple "continue" "$test" {
78 -re "Program received signal SIGSEGV.*bowler .*$gdb_prompt $" {
79 set function_pointer code_descriptor
80 pass "$test (function descriptor)"
81 }
82 -re "Program received signal SIGSEGV.*0.*$gdb_prompt $" {
83 pass "$test (function entry-point)"
84 }
85 -re "Program received signal SIGBUS.*0.*$gdb_prompt $" {
86 set signame SIGBUS
87 pass "$test (function entry-point)"
88 }
89 }
90
91 # Re-start from scratch, breakpoint the bowler so that control is
92 # regained after each test, and run up to that.
93 rerun_to_main
94 gdb_test "break bowler"
95 gdb_test "break keeper"
96 # By default Stop:Yes Print:Yes Pass:Yes
97 gdb_test "handle SIGSEGV" "SIGSEGV.*Yes.*Yes.*Yes.*Segmentation fault"
98 gdb_test "handle SIGBUS" "SIGBUS.*Yes.*Yes.*Yes.*Bus error"
99
100 # For the given signal type, check that: the SIGSEGV occures; a
101 # backtrace from the SEGV works; the sigsegv is delivered; a backtrace
102 # through the SEGV works.
103
104 proc test_segv { name tag bt_from_segv bt_from_keeper } {
105 global signame
106 gdb_test continue "Breakpoint.* bowler.*" "${name}; start with the bowler"
107 # NB: Don't use $tag in the testname - changes across systems.
108 gdb_test_no_output "set test = $tag" "${name}; select the pointer type"
109 gdb_test continue "Program received signal ${signame}.*" \
110 "${name}; take the ${signame}"
111 gdb_test backtrace $bt_from_segv "${name}; backtrace from ${signame}"
112 gdb_test continue "Breakpoint.* keeper.*" "${name}; continue to the keeper"
113 gdb_test backtrace $bt_from_keeper "${name}; backtrace from keeper through ${signame}"
114 }
115
116 test_segv "data read" data_read \
117 {#0 .* bowler .*#1 .* main .*} \
118 {#0 .* keeper .*#1 .* handler .*#2 .* bowler .*#3 .* main .*}
119 test_segv "data write" data_write \
120 {#0 .* bowler .*#1 .* main .*} \
121 {#0 .* keeper .*#1 .* handler .*#2 .* bowler .*#3 .* main .*}
122 test_segv code $function_pointer \
123 {#0 .* 0x0+ .*#1 .* bowler .*#2 .* main .*} \
124 {#0 .* keeper .*#1 .* handler .*#2 .* 0x0+ .*#3 .* bowler .*#4 .* main .*}