1 /* Replay a remote debug session logfile for GDB.
2 Copyright (C) 1996-2020 Free Software Foundation, Inc.
3 Written by Fred Fish (fnf@cygnus.com) from pieces of gdbserver.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "gdbsupport/common-defs.h"
24 #undef PACKAGE_VERSION
26 #undef PACKAGE_TARNAME
29 #include "gdbsupport/version.h"
42 #ifdef HAVE_NETINET_IN_H
43 #include <netinet/in.h>
45 #ifdef HAVE_SYS_SOCKET_H
46 #include <sys/socket.h>
51 #if HAVE_NETINET_TCP_H
52 #include <netinet/tcp.h>
59 #include "gdbsupport/netstuff.h"
60 #include "gdbsupport/rsp-low.h"
62 #ifndef HAVE_SOCKLEN_T
63 typedef int socklen_t
;
66 /* Sort of a hack... */
69 static int remote_desc
;
74 #define COUNTOF(STR) (sizeof (STR) / sizeof ((STR)[0]))
77 #define errno (GetLastError ())
80 strerror (DWORD error
)
82 static char buf
[1024];
84 DWORD lasterr
= GetLastError ();
85 DWORD chars
= FormatMessageW (FORMAT_MESSAGE_FROM_SYSTEM
86 | FORMAT_MESSAGE_ALLOCATE_BUFFER
,
89 0, /* Default language */
95 /* If there is an \r\n appended, zap it. */
97 && msgbuf
[chars
- 2] == '\r'
98 && msgbuf
[chars
- 1] == '\n')
104 if (chars
> ((COUNTOF (buf
)) - 1))
106 chars
= COUNTOF (buf
) - 1;
110 wcstombs (buf
, msgbuf
, chars
+ 1);
114 sprintf (buf
, "unknown win32 error (%ld)", error
);
116 SetLastError (lasterr
);
120 #endif /* __MINGW32CE__ */
123 sync_error (FILE *fp
, const char *desc
, int expect
, int got
)
125 fprintf (stderr
, "\n%s\n", desc
);
126 fprintf (stderr
, "At logfile offset %ld, expected '0x%x' got '0x%x'\n",
127 ftell (fp
), expect
, got
);
133 remote_error (const char *desc
)
135 fprintf (stderr
, "\n%s\n", desc
);
144 closesocket (remote_desc
);
150 /* Open a connection to a remote debugger.
151 NAME is the filename used for communication. */
154 remote_open (char *name
)
156 char *last_colon
= strrchr (name
, ':');
158 if (last_colon
== NULL
)
160 fprintf (stderr
, "%s: Must specify tcp connection as host:addr\n", name
);
166 static int winsock_initialized
;
170 struct addrinfo hint
;
171 struct addrinfo
*ainfo
;
173 memset (&hint
, 0, sizeof (hint
));
174 /* Assume no prefix will be passed, therefore we should use
176 hint
.ai_family
= AF_UNSPEC
;
177 hint
.ai_socktype
= SOCK_STREAM
;
178 hint
.ai_protocol
= IPPROTO_TCP
;
180 parsed_connection_spec parsed
= parse_connection_spec (name
, &hint
);
182 if (parsed
.port_str
.empty ())
183 error (_("Missing port on hostname '%s'"), name
);
186 if (!winsock_initialized
)
190 WSAStartup (MAKEWORD (1, 0), &wsad
);
191 winsock_initialized
= 1;
195 int r
= getaddrinfo (parsed
.host_str
.c_str (), parsed
.port_str
.c_str (),
200 fprintf (stderr
, "%s:%s: cannot resolve name: %s\n",
201 parsed
.host_str
.c_str (), parsed
.port_str
.c_str (),
207 scoped_free_addrinfo
free_ainfo (ainfo
);
211 for (p
= ainfo
; p
!= NULL
; p
= p
->ai_next
)
213 tmp_desc
= socket (p
->ai_family
, p
->ai_socktype
, p
->ai_protocol
);
220 perror_with_name ("Cannot open socket");
222 /* Allow rapid reuse of this port. */
224 setsockopt (tmp_desc
, SOL_SOCKET
, SO_REUSEADDR
, (char *) &tmp
,
227 switch (p
->ai_family
)
230 ((struct sockaddr_in
*) p
->ai_addr
)->sin_addr
.s_addr
= INADDR_ANY
;
233 ((struct sockaddr_in6
*) p
->ai_addr
)->sin6_addr
= in6addr_any
;
236 fprintf (stderr
, "Invalid 'ai_family' %d\n", p
->ai_family
);
240 if (bind (tmp_desc
, p
->ai_addr
, p
->ai_addrlen
) != 0)
241 perror_with_name ("Can't bind address");
243 if (p
->ai_socktype
== SOCK_DGRAM
)
244 remote_desc
= tmp_desc
;
247 struct sockaddr_storage sockaddr
;
248 socklen_t sockaddrsize
= sizeof (sockaddr
);
249 char orig_host
[GDB_NI_MAX_ADDR
], orig_port
[GDB_NI_MAX_PORT
];
251 if (listen (tmp_desc
, 1) != 0)
252 perror_with_name ("Can't listen on socket");
254 remote_desc
= accept (tmp_desc
, (struct sockaddr
*) &sockaddr
,
257 if (remote_desc
== -1)
258 perror_with_name ("Accept failed");
260 /* Enable TCP keep alive process. */
262 setsockopt (tmp_desc
, SOL_SOCKET
, SO_KEEPALIVE
,
263 (char *) &tmp
, sizeof (tmp
));
265 /* Tell TCP not to delay small packets. This greatly speeds up
266 interactive response. */
268 setsockopt (remote_desc
, IPPROTO_TCP
, TCP_NODELAY
,
269 (char *) &tmp
, sizeof (tmp
));
271 if (getnameinfo ((struct sockaddr
*) &sockaddr
, sockaddrsize
,
272 orig_host
, sizeof (orig_host
),
273 orig_port
, sizeof (orig_port
),
274 NI_NUMERICHOST
| NI_NUMERICSERV
) == 0)
276 fprintf (stderr
, "Remote debugging from host %s, port %s\n",
277 orig_host
, orig_port
);
282 close (tmp_desc
); /* No longer need this */
284 signal (SIGPIPE
, SIG_IGN
); /* If we don't do this, then
285 gdbreplay simply exits when
286 the remote side dies. */
288 closesocket (tmp_desc
); /* No longer need this */
292 #if defined(F_SETFL) && defined (FASYNC)
293 fcntl (remote_desc
, F_SETFL
, FASYNC
);
296 fprintf (stderr
, "Replay logfile using %s\n", name
);
314 /* Treat \r\n as a newline. */
324 fputc (ch
== EOL
? '\n' : '\r', stdout
);
360 ch
= fromhex (ch2
) << 4;
367 /* Treat any other char as just itself */
379 unsigned char fromgdb
;
381 if (read (desc
, &fromgdb
, 1) != 1)
387 /* Accept input from gdb and match with chars from fp (after skipping one
388 blank) up until a \n is read from fp (which is not matched) */
396 if ((fromlog
= logchar (fp
)) != ' ')
398 sync_error (fp
, "Sync error during gdb read of leading blank", ' ',
403 fromlog
= logchar (fp
);
406 fromgdb
= gdbchar (remote_desc
);
408 remote_error ("Error during read from gdb");
410 while (fromlog
== fromgdb
);
414 sync_error (fp
, "Sync error during read of gdb packet from log", fromlog
,
419 /* Play data back to gdb from fp (after skipping leading blank) up until a
420 \n is read from fp (which is discarded and not sent to gdb). */
428 if ((fromlog
= logchar (fp
)) != ' ')
430 sync_error (fp
, "Sync error skipping blank during write to gdb", ' ',
433 while ((fromlog
= logchar (fp
)) != EOL
)
436 if (write (remote_desc
, &ch
, 1) != 1)
437 remote_error ("Error during write to gdb");
442 gdbreplay_version (void)
444 printf ("GNU gdbreplay %s%s\n"
445 "Copyright (C) 2020 Free Software Foundation, Inc.\n"
446 "gdbreplay is free software, covered by "
447 "the GNU General Public License.\n"
448 "This gdbreplay was configured as \"%s\"\n",
449 PKGVERSION
, version
, host_name
);
453 gdbreplay_usage (FILE *stream
)
455 fprintf (stream
, "Usage:\tgdbreplay LOGFILE HOST:PORT\n");
456 if (REPORT_BUGS_TO
[0] && stream
== stdout
)
457 fprintf (stream
, "Report bugs to \"%s\".\n", REPORT_BUGS_TO
);
460 /* Main function. This is called by the real "main" function,
461 wrapped in a TRY_CATCH that handles any uncaught exceptions. */
463 static void ATTRIBUTE_NORETURN
464 captured_main (int argc
, char *argv
[])
469 if (argc
>= 2 && strcmp (argv
[1], "--version") == 0)
471 gdbreplay_version ();
474 if (argc
>= 2 && strcmp (argv
[1], "--help") == 0)
476 gdbreplay_usage (stdout
);
482 gdbreplay_usage (stderr
);
485 fp
= fopen (argv
[1], "r");
488 perror_with_name (argv
[1]);
490 remote_open (argv
[2]);
491 while ((ch
= logchar (fp
)) != EOF
)
496 /* data sent from gdb to gdbreplay, accept and match it */
500 /* data sent from gdbreplay to gdb, play it */
504 /* Command executed by gdb */
505 while ((ch
= logchar (fp
)) != EOL
);
514 main (int argc
, char *argv
[])
518 captured_main (argc
, argv
);
520 catch (const gdb_exception
&exception
)
522 if (exception
.reason
== RETURN_ERROR
)
525 fprintf (stderr
, "%s\n", exception
.what ());
531 gdb_assert_not_reached ("captured_main should never return");