]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/lib/gdbserver-support.exp
testsuite: Mark the kill in gdbserver_run as optional
[thirdparty/binutils-gdb.git] / gdb / testsuite / lib / gdbserver-support.exp
1 # Copyright 2000-2019 Free Software Foundation, Inc.
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 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...
24 # After GDB starts you should check global $gdbserver_protocol instead as
25 # the testfile may force a specific different target protocol itself.
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.
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.
41 #
42
43 #
44 # gdb_target_cmd
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.
48 #
49 proc gdb_target_cmd { targetname serialport {additional_text ""} } {
50 global gdb_prompt
51
52 set serialport_re [string_to_regexp $serialport]
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 }
60 -re "unknown host.*$gdb_prompt" {
61 verbose "Couldn't look up $serialport"
62 }
63 -re "Couldn't establish connection to remote.*$gdb_prompt $" {
64 verbose "Connection failed"
65 }
66 -re "Remote MIPS debugging.*$additional_text.*$gdb_prompt" {
67 verbose "Set target to $targetname"
68 return 0
69 }
70 -re "Remote debugging using .*$serialport_re.*$additional_text.*$gdb_prompt $" {
71 verbose "Set target to $targetname"
72 return 0
73 }
74 -re "Remote debugging using stdio.*$additional_text.*$gdb_prompt $" {
75 verbose "Set target to $targetname"
76 return 0
77 }
78 -re "Remote target $targetname connected to.*$additional_text.*$gdb_prompt $" {
79 verbose "Set target to $targetname"
80 return 0
81 }
82 -re "Connected to.*$additional_text.*$gdb_prompt $" {
83 verbose "Set target to $targetname"
84 return 0
85 }
86 -re "Ending remote.*$gdb_prompt $" { }
87 -re "Connection refused.*$gdb_prompt $" {
88 verbose "Connection refused by remote target. Pausing, and trying again."
89 sleep 30
90 continue
91 }
92 -re "Timeout reading from remote system.*$gdb_prompt $" {
93 verbose "Got timeout error from gdb."
94 }
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 }
100 timeout {
101 send_gdb "\ 3"
102 break
103 }
104 }
105 }
106 return 1
107 }
108
109
110 global portnum
111 set portnum "2345"
112
113 # Locate the gdbserver binary. Returns "" if gdbserver could not be found.
114
115 proc find_gdbserver { } {
116 global GDB
117 global GDBSERVER
118
119 if [info exists GDBSERVER] {
120 return ${GDBSERVER}
121 }
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
141 proc skip_gdbserver_tests { } {
142 if { [find_gdbserver] == "" } {
143 return 1
144 }
145
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
160 return 0
161 }
162
163 # Download the currently loaded program to the target if necessary.
164 # Return the target system filename.
165 # NOTE: This was named "gdbserver_download", but that collides with the
166 # dejagnu "download" API function when using load_generic_config "gdbserver".
167
168 proc gdbserver_download_current_prog { } {
169 global gdbserver_host_exec
170 global gdbserver_host_mtime
171 global gdbserver_server_exec
172 global last_loaded_file
173
174 if { ![info exists last_loaded_file] } {
175 return ""
176 }
177
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]
199 set gdbserver_server_exec [gdb_remote_download target $host_exec]
200 }
201
202 return $gdbserver_server_exec
203 }
204
205 # Default routine to compute the argument to "target remote".
206
207 proc gdbserver_default_get_remote_address { host port } {
208 # Historically HOST included the trailing ":".
209 # To avoid breaking any board files out there we leave things alone.
210 return "$host$port"
211 }
212
213 # Default routine to compute the "comm" argument for gdbserver.
214
215 proc gdbserver_default_get_comm_port { port } {
216 return "$port"
217 }
218
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
224 proc gdbserver_start { options arguments } {
225 global portnum
226 global GDB_TEST_SOCKETHOST
227
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.
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] {
248 set debughost [target_info sockethost]
249 set debughost_gdbserver $debughost
250 } else {
251 set debughost "localhost:"
252 set debughost_gdbserver $debughost
253 }
254
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 }
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 }
268
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
278 # Loop till we find a free port.
279 while 1 {
280 # Fire off the debug agent.
281 set gdbserver_command "$gdbserver"
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
286 global srcdir
287 global subdir
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
293 # Enable debug if set.
294 if [gdbserver_debug_enabled] {
295 global gdbserverdebug
296 set enabled 0
297 foreach entry [split $gdbserverdebug ,] {
298 switch -- $entry {
299 "debug" {
300 append gdbserver_command " --debug"
301 set enabled 1
302 }
303 "remote" {
304 append gdbserver_command " --remote-debug"
305 set enabled 1
306 }
307 }
308 }
309 # Ensure debugfile is only added if something has been enabled
310 if { $enabled } {
311 set debugfile [standard_output_file gdbserver.debug]
312 append gdbserver_command " --debug-file=$debugfile"
313 }
314 }
315
316 if { $options != "" } {
317 append gdbserver_command " $options"
318 }
319 if { $debughost_gdbserver != "" } {
320 append gdbserver_command " $debughost_gdbserver"
321 }
322 if { $portnum != "" } {
323 if { $debughost_gdbserver == "" } {
324 append gdbserver_command " "
325 }
326 append gdbserver_command "[$get_comm_port $portnum]"
327 }
328 if { $arguments != "" } {
329 append gdbserver_command " $arguments"
330 }
331
332 gdbserver_write_cmd_file $gdbserver_command
333
334 global server_spawn_id
335 set server_spawn_id [remote_spawn target $gdbserver_command]
336
337 # GDBserver doesn't do inferior I/O through GDB. But we can
338 # talk to the program using GDBserver's tty instead.
339 global inferior_spawn_id
340 set inferior_spawn_id $server_spawn_id
341
342 # Wait for the server to open its TCP socket, so that GDB can connect.
343 expect {
344 -i $server_spawn_id
345 -timeout 120
346 -notransfer
347 -re "Listening on" { }
348 -re "Can't (bind address|listen on socket): Address already in use\\.\r\n" {
349 verbose -log "Port $portnum is already in use."
350 if ![target_info exists gdb,socketport] {
351 # Bump the port number to avoid the conflict.
352 wait -i $expect_out(spawn_id)
353 incr portnum
354 continue
355 }
356 }
357 -re ".*: cannot resolve name: .*\r\n" {
358 error "gdbserver cannot resolve name."
359 }
360 timeout {
361 error "Timeout waiting for gdbserver response."
362 }
363 }
364 break
365 }
366
367 return [list $protocol [$get_remote_address $debughost $portnum]]
368 }
369
370 # Start a gdbserver process running SERVER_EXEC, and connect GDB
371 # to it. CHILD_ARGS are passed to the inferior.
372 #
373 # Returns the target protocol and socket to connect to.
374
375 proc gdbserver_spawn { child_args } {
376 set target_exec [gdbserver_download_current_prog]
377
378 # Fire off the debug agent. This flavour of gdbserver takes as
379 # arguments the port information, the name of the executable file to
380 # be debugged, and any arguments.
381 set arguments "$target_exec"
382 if { $child_args != "" } {
383 append arguments " $child_args"
384 }
385 return [gdbserver_start "" $arguments]
386 }
387
388 # Close the GDBserver connection.
389
390 proc close_gdbserver {} {
391 global server_spawn_id
392
393 # We can't just call close, because if gdbserver is local then that means
394 # that it will get a SIGHUP. Doing it this way could also allow us to
395 # get at the inferior's input or output if necessary, and means that we
396 # don't need to redirect output.
397
398 if {![info exists server_spawn_id]} {
399 return
400 }
401
402 verbose "Quitting GDBserver"
403
404 catch "close -i $server_spawn_id"
405 catch "wait -i $server_spawn_id"
406 unset server_spawn_id
407 }
408
409 # Hook into GDB exit, and close GDBserver. We must load this
410 # explicitly here, and rename the procedures we want to override.
411 load_lib mi-support.exp
412
413 if { [info procs gdbserver_orig_gdb_exit] == "" } {
414 rename gdb_exit gdbserver_orig_gdb_exit
415 rename mi_gdb_exit gdbserver_orig_mi_gdb_exit
416 }
417
418 proc gdbserver_gdb_exit { is_mi } {
419 global gdb_spawn_id server_spawn_id
420 global gdb_prompt
421 global gdbserver_reconnect_p
422
423 # Leave GDBserver running if we're exiting GDB in order to
424 # reconnect to the same instance of GDBserver again.
425 if {[info exists gdbserver_reconnect_p] && $gdbserver_reconnect_p} {
426 if { $is_mi } {
427 gdbserver_orig_mi_gdb_exit
428 } else {
429 gdbserver_orig_gdb_exit
430 }
431 return
432 }
433
434 if {[info exists gdb_spawn_id] && [info exists server_spawn_id]} {
435 # GDB may be terminated in an expected way or an unexpected way,
436 # but DejaGNU doesn't know that, so gdb_spawn_id isn't unset.
437 # Catch the exceptions.
438 catch {
439 if { $is_mi } {
440 set monitor_exit "-interpreter-exec console \"monitor exit\""
441 } else {
442 set monitor_exit "monitor exit"
443 }
444 send_gdb "$monitor_exit\n";
445 # We use expect rather than gdb_expect because
446 # we want to suppress printing exception messages, otherwise,
447 # remote_expect, invoked by gdb_expect, prints the exceptions.
448 expect {
449 -i "$gdb_spawn_id" -re "$gdb_prompt $" {
450 exp_continue
451 }
452 -i "$server_spawn_id" eof {
453 wait -i $expect_out(spawn_id)
454 unset server_spawn_id
455 }
456 }
457 }
458 }
459 close_gdbserver
460
461 if { $is_mi } {
462 gdbserver_orig_mi_gdb_exit
463 } else {
464 gdbserver_orig_gdb_exit
465 }
466 }
467
468 proc gdb_exit {} {
469 gdbserver_gdb_exit 0
470 }
471
472 proc mi_gdb_exit {} {
473 gdbserver_gdb_exit 1
474 }
475
476 # Start a gdbserver process running HOST_EXEC and pass CHILD_ARGS
477 # to it. Return 0 on success, or non-zero on failure: 2 if gdbserver
478 # failed to start or 1 if we couldn't connect to it.
479
480 proc gdbserver_run { child_args } {
481 global gdbserver_protocol
482 global gdbserver_gdbport
483
484 # Kill anything running before we try to start gdbserver, in case
485 # we are sharing a serial connection.
486 global gdb_prompt
487 send_gdb "kill\n" optional
488 gdb_expect 120 {
489 -re "Kill the program being debugged. .y or n. $" {
490 send_gdb "y\n"
491 verbose "\t\tKilling previous program being debugged"
492 exp_continue
493 }
494 -re "$gdb_prompt $" {
495 # OK.
496 }
497 }
498
499 if { [catch { gdbserver_spawn $child_args } res] == 1 } {
500 perror $res
501 return 2
502 }
503 set gdbserver_protocol [lindex $res 0]
504 set gdbserver_gdbport [lindex $res 1]
505
506 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
507 }
508
509 # Reconnect to the previous gdbserver session.
510
511 proc gdbserver_reconnect { } {
512 global gdbserver_protocol
513 global gdbserver_gdbport
514
515 global gdbserver_reconnect_p
516 if {![info exists gdbserver_reconnect_p] || !$gdbserver_reconnect_p} {
517 error "gdbserver_reconnect_p is not set before gdbserver_reconnect"
518 return 0
519 }
520
521 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
522 }
523
524 # Start gdbserver in extended mode with OPTIONS and connect to it. Note
525 # this frobs $gdbserver_protocol, so should be used only from a board
526 # that usually connects in target remote mode.
527 proc gdbserver_start_extended { {options ""} } {
528 global gdbserver_protocol
529 global gdbserver_gdbport
530 global use_gdb_stub
531
532 set gdbserver_options "--multi"
533
534 if { $options != "" } {
535 append gdbserver_options " $options"
536 }
537
538 if { [catch { gdbserver_start $gdbserver_options "" } res] == 1 } {
539 perror $res
540 return 2
541 }
542 set gdbserver_protocol [lindex $res 0]
543 if { [string first "extended-" $gdbserver_protocol] != 0} {
544 set gdbserver_protocol "extended-$gdbserver_protocol"
545 }
546 set gdbserver_gdbport [lindex $res 1]
547
548 # Even if the board file is testing with target remote, our caller
549 # wants to test against gdbserver in extended-remote mode. Make sure to
550 # disable stub-like techniques.
551 set use_gdb_stub 0
552
553 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
554 }
555
556 # Start and connect to a gdbserver in extended/multi mode. Unlike
557 # gdbserver_start_extended, this does not frob $gdbserver_protocol.
558
559 proc gdbserver_start_multi { } {
560 global gdbserver_protocol
561 global gdbserver_gdbport
562
563 if { [catch { gdbserver_start "--multi" "" } res] == 1 } {
564 perror $res
565 return 2
566 }
567 set gdbserver_protocol [lindex $res 0]
568 set gdbserver_gdbport [lindex $res 1]
569
570 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
571 }
572
573 # Start a gdbserver process in multi/extended mode, and have GDB
574 # connect to it (MI version). Return 0 on success, or non-zero on
575 # failure.
576
577 proc mi_gdbserver_start_multi { } {
578 global gdbserver_protocol
579 global gdbserver_gdbport
580
581 if { [catch { gdbserver_start "--multi" "" } res] == 1 } {
582 perror $res
583 return 2
584 }
585 set gdbserver_protocol [lindex $res 0]
586 set gdbserver_gdbport [lindex $res 1]
587
588 return [mi_gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
589 }
590
591 # Check if debugging is enabled for gdbserver.
592
593 proc gdbserver_debug_enabled { } {
594 global gdbserverdebug
595
596 # If not already read, get the debug setting from environment or board setting.
597 if ![info exists gdbserverdebug] {
598 global env
599 if [info exists env(GDBSERVER_DEBUG)] {
600 set gdbserverdebug $env(GDBSERVER_DEBUG)
601 } elseif [target_info exists gdbserver,debug] {
602 set gdbserverdebug [target_info gdbserver,debug]
603 } else {
604 return 0
605 }
606 }
607
608 # Expand the all option
609 if { $gdbserverdebug == "all" } {
610 set gdbserverdebug "debug,remote,replay"
611 }
612
613 # Ensure it is not empty.
614 return [expr { $gdbserverdebug != "" }]
615 }
616
617 # Write the command line used to invocate gdbserver to the cmd file.
618
619 proc gdbserver_write_cmd_file { cmdline } {
620 set logfile [standard_output_file_with_gdb_instance gdbserver.cmd]
621 set cmd_file [open $logfile w]
622 puts $cmd_file $cmdline
623 catch "close $cmd_file"
624 }
625
626 # Override gdb_debug_init so that we can set replay logging in GDB if required.
627 # Backup the original function so we can call it afterwards
628
629 rename gdb_debug_init _gdb_debug_init
630
631 proc gdb_debug_init { } {
632 global gdbserverdebug
633 global gdb_prompt
634
635 if [gdbserver_debug_enabled] {
636 foreach entry [split $gdbserverdebug ,] {
637 if { $entry == "replay" } {
638 set replayfile [standard_output_file_with_gdb_instance gdbserver.replay]
639 send_gdb "set remotelogfile $replayfile\n" optional
640 gdb_expect 10 {
641 -re "$gdb_prompt $" {}
642 }
643 }
644 }
645 }
646
647 # Now call the standard debug init function
648 _gdb_debug_init
649 }