1 /* Replay a remote debug session logfile for GDB.
2 Copyright 1996, 1998, 1999, 2000 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 2 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, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
25 #include <netinet/in.h>
26 #include <sys/socket.h>
28 #include <netinet/tcp.h>
44 /* Sort of a hack... */
47 static int remote_desc
;
49 /* Print the system error message for errno, and also mention STRING
50 as the file name for which the error was encountered.
51 Then return to command level. */
54 perror_with_name (char *string
)
58 extern char *sys_errlist
[];
64 err
= (errno
< sys_nerr
) ? sys_errlist
[errno
] : "unknown error";
65 combined
= (char *) alloca (strlen (err
) + strlen (string
) + 3);
66 strcpy (combined
, string
);
67 strcat (combined
, ": ");
68 strcat (combined
, err
);
69 fprintf (stderr
, "\n%s.\n", combined
);
75 sync_error (FILE *fp
, char *desc
, int expect
, int got
)
77 fprintf (stderr
, "\n%s\n", desc
);
78 fprintf (stderr
, "At logfile offset %ld, expected '0x%x' got '0x%x'\n",
79 ftell (fp
), expect
, got
);
90 /* Open a connection to a remote debugger.
91 NAME is the filename used for communication. */
94 remote_open (char *name
)
96 if (!strchr (name
, ':'))
98 fprintf (stderr
, "%s: Must specify tcp connection as host:addr\n", name
);
106 struct sockaddr_in sockaddr
;
110 port_str
= strchr (name
, ':');
112 port
= atoi (port_str
+ 1);
114 tmp_desc
= socket (PF_INET
, SOCK_STREAM
, 0);
116 perror_with_name ("Can't open socket");
118 /* Allow rapid reuse of this port. */
120 setsockopt (tmp_desc
, SOL_SOCKET
, SO_REUSEADDR
, (char *) &tmp
,
123 sockaddr
.sin_family
= PF_INET
;
124 sockaddr
.sin_port
= htons (port
);
125 sockaddr
.sin_addr
.s_addr
= INADDR_ANY
;
127 if (bind (tmp_desc
, (struct sockaddr
*) &sockaddr
, sizeof (sockaddr
))
128 || listen (tmp_desc
, 1))
129 perror_with_name ("Can't bind address");
131 tmp
= sizeof (sockaddr
);
132 remote_desc
= accept (tmp_desc
, (struct sockaddr
*) &sockaddr
, &tmp
);
133 if (remote_desc
== -1)
134 perror_with_name ("Accept failed");
136 /* Enable TCP keep alive process. */
138 setsockopt (tmp_desc
, SOL_SOCKET
, SO_KEEPALIVE
, (char *) &tmp
, sizeof (tmp
));
140 /* Tell TCP not to delay small packets. This greatly speeds up
141 interactive response. */
143 setsockopt (remote_desc
, IPPROTO_TCP
, TCP_NODELAY
,
144 (char *) &tmp
, sizeof (tmp
));
146 close (tmp_desc
); /* No longer need this */
148 signal (SIGPIPE
, SIG_IGN
); /* If we don't do this, then gdbreplay simply
149 exits when the remote side dies. */
152 fcntl (remote_desc
, F_SETFL
, FASYNC
);
154 fprintf (stderr
, "Replay logfile using %s\n", name
);
161 if (ch
>= '0' && ch
<= '9')
165 if (ch
>= 'A' && ch
<= 'F')
167 return (ch
- 'A' + 10);
169 if (ch
>= 'a' && ch
<= 'f')
171 return (ch
- 'a' + 10);
173 fprintf (stderr
, "\nInvalid hex digit '%c'\n", ch
);
222 ch
= tohex (ch2
) << 4;
229 /* Treat any other char as just itself */
238 /* Accept input from gdb and match with chars from fp (after skipping one
239 blank) up until a \n is read from fp (which is not matched) */
245 unsigned char fromgdb
;
247 if ((fromlog
= logchar (fp
)) != ' ')
249 sync_error (fp
, "Sync error during gdb read of leading blank", ' ',
254 fromlog
= logchar (fp
);
259 read (remote_desc
, &fromgdb
, 1);
261 while (fromlog
== fromgdb
);
264 sync_error (fp
, "Sync error during read of gdb packet", fromlog
,
269 /* Play data back to gdb from fp (after skipping leading blank) up until a
270 \n is read from fp (which is discarded and not sent to gdb). */
278 if ((fromlog
= logchar (fp
)) != ' ')
280 sync_error (fp
, "Sync error skipping blank during write to gdb", ' ',
283 while ((fromlog
= logchar (fp
)) != EOL
)
286 write (remote_desc
, &ch
, 1);
291 main (int argc
, char *argv
[])
298 fprintf (stderr
, "Usage: gdbreplay <logfile> <host:port>\n");
302 fp
= fopen (argv
[1], "r");
305 perror_with_name (argv
[1]);
307 remote_open (argv
[2]);
308 while ((ch
= logchar (fp
)) != EOF
)
313 /* data sent from gdb to gdbreplay, accept and match it */
317 /* data sent from gdbreplay to gdb, play it */
321 /* Command executed by gdb */
322 while ((ch
= logchar (fp
)) != EOL
);
This page took 0.037738 seconds and 4 git commands to generate.