testsuite: Record all gdb input to gdb.in
[deliverable/binutils-gdb.git] / gdb / testsuite / lib / gdbserver-support.exp
CommitLineData
42a4f53d 1# Copyright 2000-2019 Free Software Foundation, Inc.
6f8eac0e
DJ
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
6f8eac0e 6# (at your option) any later version.
e22f8b7c 7#
6f8eac0e
DJ
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.
e22f8b7c 12#
6f8eac0e 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
6f8eac0e
DJ
15
16# This file is based on config/gdbserver.exp, which was written by
17# Michael Snyder (msnyder@redhat.com).
18
19#
20# To be addressed or set in your baseboard config file:
21#
22# set_board_info gdb_protocol "remote"
23# Unles you have a gdbserver that uses a different protocol...
e11ac3a3
JK
24# After GDB starts you should check global $gdbserver_protocol instead as
25# the testfile may force a specific different target protocol itself.
6f8eac0e
DJ
26#
27# set_board_info gdb_server_prog
28# This will be the path to the gdbserver program you want to test.
29# Defaults to "gdbserver".
30#
31# set_board_info sockethost
32# The name of the host computer whose socket is being used.
33# Defaults to "localhost". Note: old gdbserver requires
34# that you define this, but libremote/gdbserver does not.
35#
36# set_board_info gdb,socketport
37# Port id to use for socket connection. If not set explicitly,
38# it will start at "2345" and increment for each use.
e11ac3a3
JK
39# After GDB starts you should check global $gdbserver_gdbport for the
40# real port used. It is not useful if $gdbserver_reconnect_p was not set.
6f8eac0e
DJ
41#
42
43#
44# gdb_target_cmd
e5a1a79a
AH
45# Send gdb the "target" command. Returns 0 on success, 1 on failure.
46# If specified, then ADDITIONAL_TEXT must match the text that comes after
47# the connection message in order for the procedure to succeed.
6f8eac0e 48#
e5a1a79a 49proc gdb_target_cmd { targetname serialport {additional_text ""} } {
6f8eac0e
DJ
50 global gdb_prompt
51
ef783a7d 52 set serialport_re [string_to_regexp $serialport]
6f8eac0e
DJ
53 for {set i 1} {$i <= 3} {incr i} {
54 send_gdb "target $targetname $serialport\n"
55 gdb_expect 60 {
56 -re "A program is being debugged already.*ill it.*y or n. $" {
57 send_gdb "y\n"
58 exp_continue
59 }
401ea829
JB
60 -re "unknown host.*$gdb_prompt" {
61 verbose "Couldn't look up $serialport"
62 }
2f83a18e 63 -re "Couldn't establish connection to remote.*$gdb_prompt $" {
6f8eac0e
DJ
64 verbose "Connection failed"
65 }
e5a1a79a 66 -re "Remote MIPS debugging.*$additional_text.*$gdb_prompt" {
6f8eac0e
DJ
67 verbose "Set target to $targetname"
68 return 0
69 }
e5a1a79a 70 -re "Remote debugging using .*$serialport_re.*$additional_text.*$gdb_prompt $" {
6f8eac0e
DJ
71 verbose "Set target to $targetname"
72 return 0
73 }
e5a1a79a 74 -re "Remote debugging using stdio.*$additional_text.*$gdb_prompt $" {
e0f9f062
DE
75 verbose "Set target to $targetname"
76 return 0
77 }
e5a1a79a 78 -re "Remote target $targetname connected to.*$additional_text.*$gdb_prompt $" {
6f8eac0e
DJ
79 verbose "Set target to $targetname"
80 return 0
81 }
e5a1a79a 82 -re "Connected to.*$additional_text.*$gdb_prompt $" {
6f8eac0e
DJ
83 verbose "Set target to $targetname"
84 return 0
85 }
2f83a18e
DJ
86 -re "Ending remote.*$gdb_prompt $" { }
87 -re "Connection refused.*$gdb_prompt $" {
6f8eac0e
DJ
88 verbose "Connection refused by remote target. Pausing, and trying again."
89 sleep 30
90 continue
91 }
2f83a18e 92 -re "Timeout reading from remote system.*$gdb_prompt $" {
6f8eac0e
DJ
93 verbose "Got timeout error from gdb."
94 }
b741e217
DJ
95 -notransfer -re "Remote debugging using .*\r\n> $" {
96 # We got an unexpected prompt while creating the target.
97 # Leave it there for the test to diagnose.
98 return 1
99 }
6f8eac0e
DJ
100 timeout {
101 send_gdb "\ 3"
102 break
103 }
104 }
105 }
106 return 1
107}
108
109
110global portnum
111set portnum "2345"
112
113# Locate the gdbserver binary. Returns "" if gdbserver could not be found.
114
115proc find_gdbserver { } {
116 global GDB
6fadd07a
DE
117 global GDBSERVER
118
119 if [info exists GDBSERVER] {
120 return ${GDBSERVER}
121 }
6f8eac0e
DJ
122
123 if [target_info exists gdb_server_prog] {
124 return [target_info gdb_server_prog]
125 }
126
127 set gdbserver "${GDB}server"
128 if { [file isdirectory $gdbserver] } {
129 append gdbserver "/gdbserver"
130 }
131
132 if { [file executable $gdbserver] } {
133 return $gdbserver
134 }
135
136 return ""
137}
138
139# Return non-zero if we should skip gdbserver-specific tests.
140
141proc skip_gdbserver_tests { } {
142 if { [find_gdbserver] == "" } {
143 return 1
144 }
145
bae62ee2
YQ
146 # If GDB is lack of XML support, and targets, like arm, have
147 # multiple target descriptions, GDB doesn't know which target
148 # description GDBserver uses, and may fail to parse 'g' packet
149 # after connection.
150 if { [gdb_skip_xml_test]
151 && ([istarget "arm*-*-linux*"]
152 || [istarget "mips*-*-linux*"]
153 || [istarget "powerpc*-*-linux*"]
154 || [istarget "s390*-*-linux*"]
155 || [istarget "x86_64-*-linux*"]
156 || [istarget "i\[34567\]86-*-linux*"]) } {
157 return 1
158 }
159
6f8eac0e
DJ
160 return 0
161}
162
2d717e4f
DJ
163# Download the currently loaded program to the target if necessary.
164# Return the target system filename.
6496a609
DE
165# NOTE: This was named "gdbserver_download", but that collides with the
166# dejagnu "download" API function when using load_generic_config "gdbserver".
6f8eac0e 167
6496a609 168proc gdbserver_download_current_prog { } {
b741e217
DJ
169 global gdbserver_host_exec
170 global gdbserver_host_mtime
171 global gdbserver_server_exec
172 global last_loaded_file
173
096be756
PA
174 if { ![info exists last_loaded_file] } {
175 return ""
176 }
177
b741e217
DJ
178 set host_exec $last_loaded_file
179
180 # If we already downloaded a file to the target, see if we can reuse it.
181 set reuse 0
182 if { [info exists gdbserver_server_exec] } {
183 set reuse 1
184
185 # If the file has changed, we can not.
186 if { $host_exec != $gdbserver_host_exec } {
187 set reuse 0
188 }
189
190 # If the mtime has changed, we can not.
191 if { [file mtime $host_exec] != $gdbserver_host_mtime } {
192 set reuse 0
193 }
194 }
195
196 if { $reuse == 0 } {
197 set gdbserver_host_exec $host_exec
198 set gdbserver_host_mtime [file mtime $host_exec]
7817ea46 199 set gdbserver_server_exec [gdb_remote_download target $host_exec]
b741e217 200 }
6f8eac0e 201
2d717e4f
DJ
202 return $gdbserver_server_exec
203}
204
e0f9f062
DE
205# Default routine to compute the argument to "target remote".
206
207proc gdbserver_default_get_remote_address { host port } {
ab19de87
DE
208 # Historically HOST included the trailing ":".
209 # To avoid breaking any board files out there we leave things alone.
e0f9f062
DE
210 return "$host$port"
211}
212
ab19de87
DE
213# Default routine to compute the "comm" argument for gdbserver.
214
215proc gdbserver_default_get_comm_port { port } {
c7ab0aef 216 return "$port"
ab19de87
DE
217}
218
2d717e4f
DJ
219# Start a gdbserver process with initial OPTIONS and trailing ARGUMENTS.
220# The port will be filled in between them automatically.
221#
222# Returns the target protocol and socket to connect to.
223
224proc gdbserver_start { options arguments } {
225 global portnum
c7ab0aef 226 global GDB_TEST_SOCKETHOST
2d717e4f 227
6f8eac0e
DJ
228 # Port id -- either specified in baseboard file, or managed here.
229 if [target_info exists gdb,socketport] {
230 set portnum [target_info gdb,socketport]
231 } else {
232 # Bump the port number to avoid conflicts with hung ports.
233 incr portnum
234 }
235
236 # Extract the local and remote host ids from the target board struct.
c7ab0aef
SDJ
237 if { [info exists GDB_TEST_SOCKETHOST] } {
238 # The user is not supposed to provide a port number, just a
239 # hostname/address, therefore we add the trailing ":" here.
240 set debughost "${GDB_TEST_SOCKETHOST}:"
241 # Escape open and close square brackets.
242 set debughost_tmp [string map { [ \\[ ] \\] } $debughost]
243 # We need a "gdbserver" version of the debughost, which will
244 # have the possible connection prefix stripped. This is
245 # because gdbserver currently doesn't recognize the prefixes.
246 regsub -all "^\(tcp:|udp:|tcp4:|udp4:|tcp6:|udp6:\)" $debughost_tmp "" debughost_gdbserver
247 } elseif [target_info exists sockethost] {
2d717e4f 248 set debughost [target_info sockethost]
c7ab0aef 249 set debughost_gdbserver $debughost
6f8eac0e
DJ
250 } else {
251 set debughost "localhost:"
c7ab0aef 252 set debughost_gdbserver $debughost
6f8eac0e
DJ
253 }
254
e0f9f062
DE
255 # Some boards use a different value for the port that is passed to
256 # gdbserver and the port that is passed to the "target remote" command.
257 # One example is the stdio gdbserver support.
258 if [target_info exists gdb,get_remote_address] {
259 set get_remote_address [target_info gdb,get_remote_address]
260 } else {
261 set get_remote_address gdbserver_default_get_remote_address
262 }
ab19de87
DE
263 if [target_info exists gdbserver,get_comm_port] {
264 set get_comm_port [target_info gdbserver,get_comm_port]
265 } else {
266 set get_comm_port gdbserver_default_get_comm_port
267 }
e0f9f062 268
6f8eac0e
DJ
269 # Extract the protocol
270 if [target_info exists gdb_protocol] {
271 set protocol [target_info gdb_protocol]
272 } else {
273 set protocol "remote"
274 }
275
276 set gdbserver [find_gdbserver]
277
047427a8
JK
278 # Loop till we find a free port.
279 while 1 {
047427a8
JK
280 # Fire off the debug agent.
281 set gdbserver_command "$gdbserver"
03f2bd59
JK
282
283 # If gdbserver_reconnect will be called $gdbserver_reconnect_p must be
284 # set to true already during gdbserver_start.
285 global gdbserver_reconnect_p
dd06d4d6
AH
286 global srcdir
287 global subdir
03f2bd59
JK
288 if {![info exists gdbserver_reconnect_p] || !$gdbserver_reconnect_p} {
289 # GDB client could accidentally connect to a stale server.
290 append gdbserver_command " --once"
291 }
292
dd06d4d6
AH
293 # Enable debug if set.
294 if [gdbserver_debug_enabled] {
295 global gdbserverdebug
296 set debugfile [standard_output_file gdbserver.debug]
297 if { $gdbserverdebug == "debug" } {
298 append gdbserver_command " --debug --debug-file=$debugfile"
299 } elseif { $gdbserverdebug == "remote" } {
300 append gdbserver_command " --remote-debug --debug-file=$debugfile"
301 } elseif { $gdbserverdebug == "all" } {
302 append gdbserver_command " --debug --remote-debug --debug-file=$debugfile"
303 }
304 }
305
047427a8
JK
306 if { $options != "" } {
307 append gdbserver_command " $options"
308 }
c7ab0aef
SDJ
309 if { $debughost_gdbserver != "" } {
310 append gdbserver_command " $debughost_gdbserver"
311 }
e0f9f062 312 if { $portnum != "" } {
c7ab0aef
SDJ
313 if { $debughost_gdbserver == "" } {
314 append gdbserver_command " "
315 }
316 append gdbserver_command "[$get_comm_port $portnum]"
e0f9f062 317 }
047427a8
JK
318 if { $arguments != "" } {
319 append gdbserver_command " $arguments"
320 }
6f8eac0e 321
6423214f 322 global server_spawn_id
047427a8
JK
323 set server_spawn_id [remote_spawn target $gdbserver_command]
324
f71c18e7
PA
325 # GDBserver doesn't do inferior I/O through GDB. But we can
326 # talk to the program using GDBserver's tty instead.
327 global inferior_spawn_id
328 set inferior_spawn_id $server_spawn_id
329
047427a8
JK
330 # Wait for the server to open its TCP socket, so that GDB can connect.
331 expect {
332 -i $server_spawn_id
2bdd10b7 333 -timeout 120
047427a8
JK
334 -notransfer
335 -re "Listening on" { }
01abb042 336 -re "Can't (bind address|listen on socket): Address already in use\\.\r\n" {
047427a8
JK
337 verbose -log "Port $portnum is already in use."
338 if ![target_info exists gdb,socketport] {
339 # Bump the port number to avoid the conflict.
340 wait -i $expect_out(spawn_id)
341 incr portnum
342 continue
343 }
344 }
fb66cde8 345 -re ".*: cannot resolve name: .*\r\n" {
c7ab0aef
SDJ
346 error "gdbserver cannot resolve name."
347 }
09635af7
MR
348 timeout {
349 error "Timeout waiting for gdbserver response."
350 }
047427a8
JK
351 }
352 break
6f8eac0e
DJ
353 }
354
e0f9f062 355 return [list $protocol [$get_remote_address $debughost $portnum]]
6f8eac0e
DJ
356}
357
2d717e4f
DJ
358# Start a gdbserver process running SERVER_EXEC, and connect GDB
359# to it. CHILD_ARGS are passed to the inferior.
360#
361# Returns the target protocol and socket to connect to.
362
363proc gdbserver_spawn { child_args } {
6496a609 364 set target_exec [gdbserver_download_current_prog]
2d717e4f
DJ
365
366 # Fire off the debug agent. This flavour of gdbserver takes as
367 # arguments the port information, the name of the executable file to
368 # be debugged, and any arguments.
369 set arguments "$target_exec"
370 if { $child_args != "" } {
371 append arguments " $child_args"
372 }
373 return [gdbserver_start "" $arguments]
374}
375
6423214f
PA
376# Close the GDBserver connection.
377
378proc close_gdbserver {} {
038d4868 379 global server_spawn_id
6423214f
PA
380
381 # We can't just call close, because if gdbserver is local then that means
382 # that it will get a SIGHUP. Doing it this way could also allow us to
383 # get at the inferior's input or output if necessary, and means that we
384 # don't need to redirect output.
385
386 if {![info exists server_spawn_id]} {
387 return
388 }
389
390 verbose "Quitting GDBserver"
391
392 catch "close -i $server_spawn_id"
393 catch "wait -i $server_spawn_id"
394 unset server_spawn_id
395}
396
f73842fc
YQ
397# Hook into GDB exit, and close GDBserver. We must load this
398# explicitly here, and rename the procedures we want to override.
399load_lib mi-support.exp
6423214f 400
9c211fd8 401if { [info procs gdbserver_orig_gdb_exit] == "" } {
6423214f 402 rename gdb_exit gdbserver_orig_gdb_exit
f73842fc 403 rename mi_gdb_exit gdbserver_orig_mi_gdb_exit
6423214f 404}
f73842fc
YQ
405
406proc gdbserver_gdb_exit { is_mi } {
038d4868 407 global gdb_spawn_id server_spawn_id
6423214f 408 global gdb_prompt
1ca99c42
PA
409 global gdbserver_reconnect_p
410
411 # Leave GDBserver running if we're exiting GDB in order to
412 # reconnect to the same instance of GDBserver again.
413 if {[info exists gdbserver_reconnect_p] && $gdbserver_reconnect_p} {
f73842fc
YQ
414 if { $is_mi } {
415 gdbserver_orig_mi_gdb_exit
416 } else {
417 gdbserver_orig_gdb_exit
418 }
1ca99c42
PA
419 return
420 }
6423214f
PA
421
422 if {[info exists gdb_spawn_id] && [info exists server_spawn_id]} {
2efe15c4
YQ
423 # GDB may be terminated in an expected way or an unexpected way,
424 # but DejaGNU doesn't know that, so gdb_spawn_id isn't unset.
425 # Catch the exceptions.
426 catch {
f73842fc
YQ
427 if { $is_mi } {
428 set monitor_exit "-interpreter-exec console \"monitor exit\""
429 } else {
430 set monitor_exit "monitor exit"
431 }
432 send_gdb "$monitor_exit\n";
2efe15c4
YQ
433 # We use expect rather than gdb_expect because
434 # we want to suppress printing exception messages, otherwise,
435 # remote_expect, invoked by gdb_expect, prints the exceptions.
436 expect {
437 -i "$gdb_spawn_id" -re "$gdb_prompt $" {
438 exp_continue
439 }
440 -i "$server_spawn_id" eof {
441 wait -i $expect_out(spawn_id)
442 unset server_spawn_id
2efe15c4 443 }
6423214f
PA
444 }
445 }
446 }
447 close_gdbserver
448
f73842fc
YQ
449 if { $is_mi } {
450 gdbserver_orig_mi_gdb_exit
451 } else {
452 gdbserver_orig_gdb_exit
453 }
454}
455
456proc gdb_exit {} {
457 gdbserver_gdb_exit 0
458}
459
460proc mi_gdb_exit {} {
461 gdbserver_gdb_exit 1
6423214f
PA
462}
463
6f8eac0e 464# Start a gdbserver process running HOST_EXEC and pass CHILD_ARGS
09635af7
MR
465# to it. Return 0 on success, or non-zero on failure: 2 if gdbserver
466# failed to start or 1 if we couldn't connect to it.
6f8eac0e 467
b741e217 468proc gdbserver_run { child_args } {
b0f4b84b
DJ
469 global gdbserver_protocol
470 global gdbserver_gdbport
471
2226f861
DJ
472 # Kill anything running before we try to start gdbserver, in case
473 # we are sharing a serial connection.
474 global gdb_prompt
475 send_gdb "kill\n"
476 gdb_expect 120 {
477 -re "Kill the program being debugged. .y or n. $" {
478 send_gdb "y\n"
479 verbose "\t\tKilling previous program being debugged"
480 exp_continue
481 }
482 -re "$gdb_prompt $" {
483 # OK.
484 }
485 }
486
09635af7
MR
487 if { [catch { gdbserver_spawn $child_args } res] == 1 } {
488 perror $res
489 return 2
490 }
b0f4b84b
DJ
491 set gdbserver_protocol [lindex $res 0]
492 set gdbserver_gdbport [lindex $res 1]
493
494 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
495}
496
497# Reconnect to the previous gdbserver session.
498
499proc gdbserver_reconnect { } {
500 global gdbserver_protocol
501 global gdbserver_gdbport
6f8eac0e 502
4ec70201 503 global gdbserver_reconnect_p
03f2bd59
JK
504 if {![info exists gdbserver_reconnect_p] || !$gdbserver_reconnect_p} {
505 error "gdbserver_reconnect_p is not set before gdbserver_reconnect"
506 return 0
507 }
508
b0f4b84b 509 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
6f8eac0e 510}
2d717e4f 511
8cfe207c
YQ
512# Start gdbserver in extended mode with OPTIONS and connect to it. Note
513# this frobs $gdbserver_protocol, so should be used only from a board
514# that usually connects in target remote mode.
515proc gdbserver_start_extended { {options ""} } {
e11ac3a3
JK
516 global gdbserver_protocol
517 global gdbserver_gdbport
518 global use_gdb_stub
519
8cfe207c
YQ
520 set gdbserver_options "--multi"
521
522 if { $options != "" } {
523 append gdbserver_options " $options"
524 }
525
526 if { [catch { gdbserver_start $gdbserver_options "" } res] == 1 } {
09635af7
MR
527 perror $res
528 return 2
529 }
a1999d40
PA
530 set gdbserver_protocol [lindex $res 0]
531 if { [string first "extended-" $gdbserver_protocol] != 0} {
532 set gdbserver_protocol "extended-$gdbserver_protocol"
533 }
2d717e4f
DJ
534 set gdbserver_gdbport [lindex $res 1]
535
e11ac3a3
JK
536 # Even if the board file is testing with target remote, our caller
537 # wants to test against gdbserver in extended-remote mode. Make sure to
538 # disable stub-like techniques.
539 set use_gdb_stub 0
540
2d717e4f
DJ
541 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
542}
048fe15a
PA
543
544# Start and connect to a gdbserver in extended/multi mode. Unlike
545# gdbserver_start_extended, this does not frob $gdbserver_protocol.
546
547proc gdbserver_start_multi { } {
548 global gdbserver_protocol
549 global gdbserver_gdbport
550
09635af7
MR
551 if { [catch { gdbserver_start "--multi" "" } res] == 1 } {
552 perror $res
553 return 2
554 }
048fe15a
PA
555 set gdbserver_protocol [lindex $res 0]
556 set gdbserver_gdbport [lindex $res 1]
557
558 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
559}
560
561# Start a gdbserver process in multi/extended mode, and have GDB
562# connect to it (MI version). Return 0 on success, or non-zero on
563# failure.
564
565proc mi_gdbserver_start_multi { } {
566 global gdbserver_protocol
567 global gdbserver_gdbport
568
09635af7
MR
569 if { [catch { gdbserver_start "--multi" "" } res] == 1 } {
570 perror $res
571 return 2
572 }
048fe15a
PA
573 set gdbserver_protocol [lindex $res 0]
574 set gdbserver_gdbport [lindex $res 1]
575
576 return [mi_gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
577}
dd06d4d6
AH
578
579# Check if debugging is enabled for gdbserver.
580
581proc gdbserver_debug_enabled { } {
582 global gdbserverdebug
583
584 # If not already read, get the debug setting from environment or board setting.
585 if ![info exists gdbserverdebug] {
586 global env
587 if [info exists env(GDBSERVER_DEBUG)] {
588 set gdbserverdebug $env(GDBSERVER_DEBUG)
589 } elseif [target_info exists gdbserver,debug] {
590 set gdbserverdebug [target_info gdbserver,debug]
591 } else {
592 return 0
593 }
594 }
595
596 # Only return success on valid values.
597 return [expr { $gdbserverdebug == "debug" || $gdbserverdebug == "remote"
598 || $gdbserverdebug == "all" }]
599}
This page took 1.507743 seconds and 4 git commands to generate.