value: Make accessor methods' parameters const-correct
[deliverable/binutils-gdb.git] / gdb / testsuite / lib / gdbserver-support.exp
CommitLineData
618f726f 1# Copyright 2000-2016 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
45# Send gdb the "target" command
46#
47proc gdb_target_cmd { targetname serialport } {
48 global gdb_prompt
49
ef783a7d 50 set serialport_re [string_to_regexp $serialport]
6f8eac0e
DJ
51 for {set i 1} {$i <= 3} {incr i} {
52 send_gdb "target $targetname $serialport\n"
53 gdb_expect 60 {
54 -re "A program is being debugged already.*ill it.*y or n. $" {
55 send_gdb "y\n"
56 exp_continue
57 }
401ea829
JB
58 -re "unknown host.*$gdb_prompt" {
59 verbose "Couldn't look up $serialport"
60 }
2f83a18e 61 -re "Couldn't establish connection to remote.*$gdb_prompt $" {
6f8eac0e
DJ
62 verbose "Connection failed"
63 }
64 -re "Remote MIPS debugging.*$gdb_prompt" {
65 verbose "Set target to $targetname"
66 return 0
67 }
ef783a7d 68 -re "Remote debugging using .*$serialport_re.*$gdb_prompt $" {
6f8eac0e
DJ
69 verbose "Set target to $targetname"
70 return 0
71 }
e0f9f062
DE
72 -re "Remote debugging using stdio.*$gdb_prompt $" {
73 verbose "Set target to $targetname"
74 return 0
75 }
2f83a18e 76 -re "Remote target $targetname connected to.*$gdb_prompt $" {
6f8eac0e
DJ
77 verbose "Set target to $targetname"
78 return 0
79 }
2f83a18e 80 -re "Connected to.*$gdb_prompt $" {
6f8eac0e
DJ
81 verbose "Set target to $targetname"
82 return 0
83 }
2f83a18e
DJ
84 -re "Ending remote.*$gdb_prompt $" { }
85 -re "Connection refused.*$gdb_prompt $" {
6f8eac0e
DJ
86 verbose "Connection refused by remote target. Pausing, and trying again."
87 sleep 30
88 continue
89 }
2f83a18e 90 -re "Timeout reading from remote system.*$gdb_prompt $" {
6f8eac0e
DJ
91 verbose "Got timeout error from gdb."
92 }
b741e217
DJ
93 -notransfer -re "Remote debugging using .*\r\n> $" {
94 # We got an unexpected prompt while creating the target.
95 # Leave it there for the test to diagnose.
96 return 1
97 }
6f8eac0e
DJ
98 timeout {
99 send_gdb "\ 3"
100 break
101 }
102 }
103 }
104 return 1
105}
106
107
108global portnum
109set portnum "2345"
110
111# Locate the gdbserver binary. Returns "" if gdbserver could not be found.
112
113proc find_gdbserver { } {
114 global GDB
6fadd07a
DE
115 global GDBSERVER
116
117 if [info exists GDBSERVER] {
118 return ${GDBSERVER}
119 }
6f8eac0e
DJ
120
121 if [target_info exists gdb_server_prog] {
122 return [target_info gdb_server_prog]
123 }
124
125 set gdbserver "${GDB}server"
126 if { [file isdirectory $gdbserver] } {
127 append gdbserver "/gdbserver"
128 }
129
130 if { [file executable $gdbserver] } {
131 return $gdbserver
132 }
133
134 return ""
135}
136
137# Return non-zero if we should skip gdbserver-specific tests.
138
139proc skip_gdbserver_tests { } {
140 if { [find_gdbserver] == "" } {
141 return 1
142 }
143
144 return 0
145}
146
2d717e4f
DJ
147# Download the currently loaded program to the target if necessary.
148# Return the target system filename.
6496a609
DE
149# NOTE: This was named "gdbserver_download", but that collides with the
150# dejagnu "download" API function when using load_generic_config "gdbserver".
6f8eac0e 151
6496a609 152proc gdbserver_download_current_prog { } {
b741e217
DJ
153 global gdbserver_host_exec
154 global gdbserver_host_mtime
155 global gdbserver_server_exec
156 global last_loaded_file
157
158 set host_exec $last_loaded_file
159
160 # If we already downloaded a file to the target, see if we can reuse it.
161 set reuse 0
162 if { [info exists gdbserver_server_exec] } {
163 set reuse 1
164
165 # If the file has changed, we can not.
166 if { $host_exec != $gdbserver_host_exec } {
167 set reuse 0
168 }
169
170 # If the mtime has changed, we can not.
171 if { [file mtime $host_exec] != $gdbserver_host_mtime } {
172 set reuse 0
173 }
174 }
175
176 if { $reuse == 0 } {
177 set gdbserver_host_exec $host_exec
178 set gdbserver_host_mtime [file mtime $host_exec]
7817ea46 179 set gdbserver_server_exec [gdb_remote_download target $host_exec]
b741e217 180 }
6f8eac0e 181
2d717e4f
DJ
182 return $gdbserver_server_exec
183}
184
e0f9f062
DE
185# Default routine to compute the argument to "target remote".
186
187proc gdbserver_default_get_remote_address { host port } {
ab19de87
DE
188 # Historically HOST included the trailing ":".
189 # To avoid breaking any board files out there we leave things alone.
e0f9f062
DE
190 return "$host$port"
191}
192
ab19de87
DE
193# Default routine to compute the "comm" argument for gdbserver.
194
195proc gdbserver_default_get_comm_port { port } {
196 return ":$port"
197}
198
2d717e4f
DJ
199# Start a gdbserver process with initial OPTIONS and trailing ARGUMENTS.
200# The port will be filled in between them automatically.
201#
202# Returns the target protocol and socket to connect to.
203
204proc gdbserver_start { options arguments } {
205 global portnum
206
6f8eac0e
DJ
207 # Port id -- either specified in baseboard file, or managed here.
208 if [target_info exists gdb,socketport] {
209 set portnum [target_info gdb,socketport]
210 } else {
211 # Bump the port number to avoid conflicts with hung ports.
212 incr portnum
213 }
214
215 # Extract the local and remote host ids from the target board struct.
216 if [target_info exists sockethost] {
2d717e4f 217 set debughost [target_info sockethost]
6f8eac0e
DJ
218 } else {
219 set debughost "localhost:"
220 }
221
e0f9f062
DE
222 # Some boards use a different value for the port that is passed to
223 # gdbserver and the port that is passed to the "target remote" command.
224 # One example is the stdio gdbserver support.
225 if [target_info exists gdb,get_remote_address] {
226 set get_remote_address [target_info gdb,get_remote_address]
227 } else {
228 set get_remote_address gdbserver_default_get_remote_address
229 }
ab19de87
DE
230 if [target_info exists gdbserver,get_comm_port] {
231 set get_comm_port [target_info gdbserver,get_comm_port]
232 } else {
233 set get_comm_port gdbserver_default_get_comm_port
234 }
e0f9f062 235
6f8eac0e
DJ
236 # Extract the protocol
237 if [target_info exists gdb_protocol] {
238 set protocol [target_info gdb_protocol]
239 } else {
240 set protocol "remote"
241 }
242
243 set gdbserver [find_gdbserver]
244
047427a8
JK
245 # Loop till we find a free port.
246 while 1 {
047427a8
JK
247 # Fire off the debug agent.
248 set gdbserver_command "$gdbserver"
03f2bd59
JK
249
250 # If gdbserver_reconnect will be called $gdbserver_reconnect_p must be
251 # set to true already during gdbserver_start.
252 global gdbserver_reconnect_p
253 if {![info exists gdbserver_reconnect_p] || !$gdbserver_reconnect_p} {
254 # GDB client could accidentally connect to a stale server.
f196051f 255 # append gdbserver_command " --debug --once"
03f2bd59
JK
256 append gdbserver_command " --once"
257 }
258
047427a8
JK
259 if { $options != "" } {
260 append gdbserver_command " $options"
261 }
e0f9f062 262 if { $portnum != "" } {
ab19de87 263 append gdbserver_command " [$get_comm_port $portnum]"
e0f9f062 264 }
047427a8
JK
265 if { $arguments != "" } {
266 append gdbserver_command " $arguments"
267 }
6f8eac0e 268
6423214f 269 global server_spawn_id
047427a8
JK
270 set server_spawn_id [remote_spawn target $gdbserver_command]
271
f71c18e7
PA
272 # GDBserver doesn't do inferior I/O through GDB. But we can
273 # talk to the program using GDBserver's tty instead.
274 global inferior_spawn_id
275 set inferior_spawn_id $server_spawn_id
276
047427a8
JK
277 # Wait for the server to open its TCP socket, so that GDB can connect.
278 expect {
279 -i $server_spawn_id
2bdd10b7 280 -timeout 120
047427a8
JK
281 -notransfer
282 -re "Listening on" { }
283 -re "Can't bind address: Address already in use\\.\r\n" {
284 verbose -log "Port $portnum is already in use."
285 if ![target_info exists gdb,socketport] {
286 # Bump the port number to avoid the conflict.
287 wait -i $expect_out(spawn_id)
288 incr portnum
289 continue
290 }
291 }
09635af7
MR
292 timeout {
293 error "Timeout waiting for gdbserver response."
294 }
047427a8
JK
295 }
296 break
6f8eac0e
DJ
297 }
298
e0f9f062 299 return [list $protocol [$get_remote_address $debughost $portnum]]
6f8eac0e
DJ
300}
301
2d717e4f
DJ
302# Start a gdbserver process running SERVER_EXEC, and connect GDB
303# to it. CHILD_ARGS are passed to the inferior.
304#
305# Returns the target protocol and socket to connect to.
306
307proc gdbserver_spawn { child_args } {
6496a609 308 set target_exec [gdbserver_download_current_prog]
2d717e4f
DJ
309
310 # Fire off the debug agent. This flavour of gdbserver takes as
311 # arguments the port information, the name of the executable file to
312 # be debugged, and any arguments.
313 set arguments "$target_exec"
314 if { $child_args != "" } {
315 append arguments " $child_args"
316 }
317 return [gdbserver_start "" $arguments]
318}
319
6423214f
PA
320# Close the GDBserver connection.
321
322proc close_gdbserver {} {
f71c18e7 323 global server_spawn_id inferior_spawn_id
6423214f
PA
324
325 # We can't just call close, because if gdbserver is local then that means
326 # that it will get a SIGHUP. Doing it this way could also allow us to
327 # get at the inferior's input or output if necessary, and means that we
328 # don't need to redirect output.
329
330 if {![info exists server_spawn_id]} {
331 return
332 }
333
334 verbose "Quitting GDBserver"
335
336 catch "close -i $server_spawn_id"
337 catch "wait -i $server_spawn_id"
338 unset server_spawn_id
f71c18e7 339 unset inferior_spawn_id
6423214f
PA
340}
341
342# Hook into GDB exit, and close GDBserver.
343
344if { [info procs gdbserver_gdb_exit] == "" } {
345 rename gdb_exit gdbserver_orig_gdb_exit
346}
347proc gdb_exit {} {
f71c18e7 348 global gdb_spawn_id server_spawn_id inferior_spawn_id
6423214f 349 global gdb_prompt
1ca99c42
PA
350 global gdbserver_reconnect_p
351
352 # Leave GDBserver running if we're exiting GDB in order to
353 # reconnect to the same instance of GDBserver again.
354 if {[info exists gdbserver_reconnect_p] && $gdbserver_reconnect_p} {
355 gdbserver_orig_gdb_exit
356 return
357 }
6423214f
PA
358
359 if {[info exists gdb_spawn_id] && [info exists server_spawn_id]} {
2efe15c4
YQ
360 # GDB may be terminated in an expected way or an unexpected way,
361 # but DejaGNU doesn't know that, so gdb_spawn_id isn't unset.
362 # Catch the exceptions.
363 catch {
364 send_gdb "monitor exit\n";
365 # We use expect rather than gdb_expect because
366 # we want to suppress printing exception messages, otherwise,
367 # remote_expect, invoked by gdb_expect, prints the exceptions.
368 expect {
369 -i "$gdb_spawn_id" -re "$gdb_prompt $" {
370 exp_continue
371 }
372 -i "$server_spawn_id" eof {
373 wait -i $expect_out(spawn_id)
374 unset server_spawn_id
375 unset inferior_spawn_id
376 }
6423214f
PA
377 }
378 }
379 }
380 close_gdbserver
381
382 gdbserver_orig_gdb_exit
383}
384
6f8eac0e 385# Start a gdbserver process running HOST_EXEC and pass CHILD_ARGS
09635af7
MR
386# to it. Return 0 on success, or non-zero on failure: 2 if gdbserver
387# failed to start or 1 if we couldn't connect to it.
6f8eac0e 388
b741e217 389proc gdbserver_run { child_args } {
b0f4b84b
DJ
390 global gdbserver_protocol
391 global gdbserver_gdbport
392
2226f861
DJ
393 # Kill anything running before we try to start gdbserver, in case
394 # we are sharing a serial connection.
395 global gdb_prompt
396 send_gdb "kill\n"
397 gdb_expect 120 {
398 -re "Kill the program being debugged. .y or n. $" {
399 send_gdb "y\n"
400 verbose "\t\tKilling previous program being debugged"
401 exp_continue
402 }
403 -re "$gdb_prompt $" {
404 # OK.
405 }
406 }
407
09635af7
MR
408 if { [catch { gdbserver_spawn $child_args } res] == 1 } {
409 perror $res
410 return 2
411 }
b0f4b84b
DJ
412 set gdbserver_protocol [lindex $res 0]
413 set gdbserver_gdbport [lindex $res 1]
414
415 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
416}
417
418# Reconnect to the previous gdbserver session.
419
420proc gdbserver_reconnect { } {
421 global gdbserver_protocol
422 global gdbserver_gdbport
6f8eac0e 423
4ec70201 424 global gdbserver_reconnect_p
03f2bd59
JK
425 if {![info exists gdbserver_reconnect_p] || !$gdbserver_reconnect_p} {
426 error "gdbserver_reconnect_p is not set before gdbserver_reconnect"
427 return 0
428 }
429
b0f4b84b 430 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
6f8eac0e 431}
2d717e4f 432
8cfe207c
YQ
433# Start gdbserver in extended mode with OPTIONS and connect to it. Note
434# this frobs $gdbserver_protocol, so should be used only from a board
435# that usually connects in target remote mode.
436proc gdbserver_start_extended { {options ""} } {
e11ac3a3
JK
437 global gdbserver_protocol
438 global gdbserver_gdbport
439 global use_gdb_stub
440
8cfe207c
YQ
441 set gdbserver_options "--multi"
442
443 if { $options != "" } {
444 append gdbserver_options " $options"
445 }
446
447 if { [catch { gdbserver_start $gdbserver_options "" } res] == 1 } {
09635af7
MR
448 perror $res
449 return 2
450 }
a1999d40
PA
451 set gdbserver_protocol [lindex $res 0]
452 if { [string first "extended-" $gdbserver_protocol] != 0} {
453 set gdbserver_protocol "extended-$gdbserver_protocol"
454 }
2d717e4f
DJ
455 set gdbserver_gdbport [lindex $res 1]
456
e11ac3a3
JK
457 # Even if the board file is testing with target remote, our caller
458 # wants to test against gdbserver in extended-remote mode. Make sure to
459 # disable stub-like techniques.
460 set use_gdb_stub 0
461
2d717e4f
DJ
462 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
463}
048fe15a
PA
464
465# Start and connect to a gdbserver in extended/multi mode. Unlike
466# gdbserver_start_extended, this does not frob $gdbserver_protocol.
467
468proc gdbserver_start_multi { } {
469 global gdbserver_protocol
470 global gdbserver_gdbport
471
09635af7
MR
472 if { [catch { gdbserver_start "--multi" "" } res] == 1 } {
473 perror $res
474 return 2
475 }
048fe15a
PA
476 set gdbserver_protocol [lindex $res 0]
477 set gdbserver_gdbport [lindex $res 1]
478
479 return [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
480}
481
482# Start a gdbserver process in multi/extended mode, and have GDB
483# connect to it (MI version). Return 0 on success, or non-zero on
484# failure.
485
486proc mi_gdbserver_start_multi { } {
487 global gdbserver_protocol
488 global gdbserver_gdbport
489
09635af7
MR
490 if { [catch { gdbserver_start "--multi" "" } res] == 1 } {
491 perror $res
492 return 2
493 }
048fe15a
PA
494 set gdbserver_protocol [lindex $res 0]
495 set gdbserver_gdbport [lindex $res 1]
496
497 return [mi_gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
498}
This page took 1.18362 seconds and 4 git commands to generate.