* defs.h: Include build-gnulib/config.h
[deliverable/binutils-gdb.git] / gdb / gdbserver / gdbreplay.c
1 /* Replay a remote debug session logfile for GDB.
2 Copyright (C) 1996, 1998-2000, 2002-2003, 2005-2012 Free Software
3 Foundation, Inc.
4 Written by Fred Fish (fnf@cygnus.com) from pieces of gdbserver.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21 #include "config.h"
22 #include "build-gnulib-gdbserver/config.h"
23
24 #include <stdio.h>
25 #if HAVE_SYS_FILE_H
26 #include <sys/file.h>
27 #endif
28 #if HAVE_SIGNAL_H
29 #include <signal.h>
30 #endif
31 #include <ctype.h>
32 #if HAVE_FCNTL_H
33 #include <fcntl.h>
34 #endif
35 #if HAVE_ERRNO_H
36 #include <errno.h>
37 #endif
38 #ifdef HAVE_STDLIB_H
39 #include <stdlib.h>
40 #endif
41 #ifdef HAVE_STRING_H
42 #include <string.h>
43 #endif
44 #ifdef HAVE_UNISTD_H
45 #include <unistd.h>
46 #endif
47 #ifdef HAVE_NETINET_IN_H
48 #include <netinet/in.h>
49 #endif
50 #ifdef HAVE_SYS_SOCKET_H
51 #include <sys/socket.h>
52 #endif
53 #if HAVE_NETDB_H
54 #include <netdb.h>
55 #endif
56 #if HAVE_NETINET_TCP_H
57 #include <netinet/tcp.h>
58 #endif
59 #if HAVE_ALLOCA_H
60 #include <alloca.h>
61 #endif
62 #if HAVE_MALLOC_H
63 #include <malloc.h>
64 #endif
65 #if USE_WIN32API
66 #include <winsock2.h>
67 #endif
68
69 #ifndef HAVE_SOCKLEN_T
70 typedef int socklen_t;
71 #endif
72
73 /* Sort of a hack... */
74 #define EOL (EOF - 1)
75
76 /* Version information, from version.c. */
77 extern const char version[];
78 extern const char host_name[];
79
80 static int remote_desc;
81
82 #ifdef __MINGW32CE__
83
84 #ifndef COUNTOF
85 #define COUNTOF(STR) (sizeof (STR) / sizeof ((STR)[0]))
86 #endif
87
88 #define errno (GetLastError ())
89
90 char *
91 strerror (DWORD error)
92 {
93 static char buf[1024];
94 WCHAR *msgbuf;
95 DWORD lasterr = GetLastError ();
96 DWORD chars = FormatMessageW (FORMAT_MESSAGE_FROM_SYSTEM
97 | FORMAT_MESSAGE_ALLOCATE_BUFFER,
98 NULL,
99 error,
100 0, /* Default language */
101 (LPVOID)&msgbuf,
102 0,
103 NULL);
104 if (chars != 0)
105 {
106 /* If there is an \r\n appended, zap it. */
107 if (chars >= 2
108 && msgbuf[chars - 2] == '\r'
109 && msgbuf[chars - 1] == '\n')
110 {
111 chars -= 2;
112 msgbuf[chars] = 0;
113 }
114
115 if (chars > ((COUNTOF (buf)) - 1))
116 {
117 chars = COUNTOF (buf) - 1;
118 msgbuf [chars] = 0;
119 }
120
121 wcstombs (buf, msgbuf, chars + 1);
122 LocalFree (msgbuf);
123 }
124 else
125 sprintf (buf, "unknown win32 error (%ld)", error);
126
127 SetLastError (lasterr);
128 return buf;
129 }
130
131 #endif /* __MINGW32CE__ */
132
133 /* Print the system error message for errno, and also mention STRING
134 as the file name for which the error was encountered.
135 Then return to command level. */
136
137 static void
138 perror_with_name (const char *string)
139 {
140 #ifndef STDC_HEADERS
141 extern int errno;
142 #endif
143 const char *err;
144 char *combined;
145
146 err = strerror (errno);
147 if (err == NULL)
148 err = "unknown error";
149
150 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
151 strcpy (combined, string);
152 strcat (combined, ": ");
153 strcat (combined, err);
154 fprintf (stderr, "\n%s.\n", combined);
155 fflush (stderr);
156 exit (1);
157 }
158
159 static void
160 sync_error (FILE *fp, char *desc, int expect, int got)
161 {
162 fprintf (stderr, "\n%s\n", desc);
163 fprintf (stderr, "At logfile offset %ld, expected '0x%x' got '0x%x'\n",
164 ftell (fp), expect, got);
165 fflush (stderr);
166 exit (1);
167 }
168
169 static void
170 remote_error (const char *desc)
171 {
172 fprintf (stderr, "\n%s\n", desc);
173 fflush (stderr);
174 exit (1);
175 }
176
177 static void
178 remote_close (void)
179 {
180 #ifdef USE_WIN32API
181 closesocket (remote_desc);
182 #else
183 close (remote_desc);
184 #endif
185 }
186
187 /* Open a connection to a remote debugger.
188 NAME is the filename used for communication. */
189
190 static void
191 remote_open (char *name)
192 {
193 if (!strchr (name, ':'))
194 {
195 fprintf (stderr, "%s: Must specify tcp connection as host:addr\n", name);
196 fflush (stderr);
197 exit (1);
198 }
199 else
200 {
201 #ifdef USE_WIN32API
202 static int winsock_initialized;
203 #endif
204 char *port_str;
205 int port;
206 struct sockaddr_in sockaddr;
207 socklen_t tmp;
208 int tmp_desc;
209
210 port_str = strchr (name, ':');
211
212 port = atoi (port_str + 1);
213
214 #ifdef USE_WIN32API
215 if (!winsock_initialized)
216 {
217 WSADATA wsad;
218
219 WSAStartup (MAKEWORD (1, 0), &wsad);
220 winsock_initialized = 1;
221 }
222 #endif
223
224 tmp_desc = socket (PF_INET, SOCK_STREAM, 0);
225 if (tmp_desc == -1)
226 perror_with_name ("Can't open socket");
227
228 /* Allow rapid reuse of this port. */
229 tmp = 1;
230 setsockopt (tmp_desc, SOL_SOCKET, SO_REUSEADDR, (char *) &tmp,
231 sizeof (tmp));
232
233 sockaddr.sin_family = PF_INET;
234 sockaddr.sin_port = htons (port);
235 sockaddr.sin_addr.s_addr = INADDR_ANY;
236
237 if (bind (tmp_desc, (struct sockaddr *) &sockaddr, sizeof (sockaddr))
238 || listen (tmp_desc, 1))
239 perror_with_name ("Can't bind address");
240
241 tmp = sizeof (sockaddr);
242 remote_desc = accept (tmp_desc, (struct sockaddr *) &sockaddr, &tmp);
243 if (remote_desc == -1)
244 perror_with_name ("Accept failed");
245
246 /* Enable TCP keep alive process. */
247 tmp = 1;
248 setsockopt (tmp_desc, SOL_SOCKET, SO_KEEPALIVE,
249 (char *) &tmp, sizeof (tmp));
250
251 /* Tell TCP not to delay small packets. This greatly speeds up
252 interactive response. */
253 tmp = 1;
254 setsockopt (remote_desc, IPPROTO_TCP, TCP_NODELAY,
255 (char *) &tmp, sizeof (tmp));
256
257 #ifndef USE_WIN32API
258 close (tmp_desc); /* No longer need this */
259
260 signal (SIGPIPE, SIG_IGN); /* If we don't do this, then
261 gdbreplay simply exits when
262 the remote side dies. */
263 #else
264 closesocket (tmp_desc); /* No longer need this */
265 #endif
266 }
267
268 #if defined(F_SETFL) && defined (FASYNC)
269 fcntl (remote_desc, F_SETFL, FASYNC);
270 #endif
271
272 fprintf (stderr, "Replay logfile using %s\n", name);
273 fflush (stderr);
274 }
275
276 static int
277 tohex (int ch)
278 {
279 if (ch >= '0' && ch <= '9')
280 {
281 return (ch - '0');
282 }
283 if (ch >= 'A' && ch <= 'F')
284 {
285 return (ch - 'A' + 10);
286 }
287 if (ch >= 'a' && ch <= 'f')
288 {
289 return (ch - 'a' + 10);
290 }
291 fprintf (stderr, "\nInvalid hex digit '%c'\n", ch);
292 fflush (stderr);
293 exit (1);
294 }
295
296 static int
297 logchar (FILE *fp)
298 {
299 int ch;
300 int ch2;
301
302 ch = fgetc (fp);
303 fputc (ch, stdout);
304 fflush (stdout);
305 switch (ch)
306 {
307 case '\n':
308 ch = EOL;
309 break;
310 case '\\':
311 ch = fgetc (fp);
312 fputc (ch, stdout);
313 fflush (stdout);
314 switch (ch)
315 {
316 case '\\':
317 break;
318 case 'b':
319 ch = '\b';
320 break;
321 case 'f':
322 ch = '\f';
323 break;
324 case 'n':
325 ch = '\n';
326 break;
327 case 'r':
328 ch = '\r';
329 break;
330 case 't':
331 ch = '\t';
332 break;
333 case 'v':
334 ch = '\v';
335 break;
336 case 'x':
337 ch2 = fgetc (fp);
338 fputc (ch2, stdout);
339 fflush (stdout);
340 ch = tohex (ch2) << 4;
341 ch2 = fgetc (fp);
342 fputc (ch2, stdout);
343 fflush (stdout);
344 ch |= tohex (ch2);
345 break;
346 default:
347 /* Treat any other char as just itself */
348 break;
349 }
350 default:
351 break;
352 }
353 return (ch);
354 }
355
356 static int
357 gdbchar (int desc)
358 {
359 unsigned char fromgdb;
360
361 if (read (desc, &fromgdb, 1) != 1)
362 return -1;
363 else
364 return fromgdb;
365 }
366
367 /* Accept input from gdb and match with chars from fp (after skipping one
368 blank) up until a \n is read from fp (which is not matched) */
369
370 static void
371 expect (FILE *fp)
372 {
373 int fromlog;
374 int fromgdb;
375
376 if ((fromlog = logchar (fp)) != ' ')
377 {
378 sync_error (fp, "Sync error during gdb read of leading blank", ' ',
379 fromlog);
380 }
381 do
382 {
383 fromlog = logchar (fp);
384 if (fromlog == EOL)
385 break;
386 fromgdb = gdbchar (remote_desc);
387 if (fromgdb < 0)
388 remote_error ("Error during read from gdb");
389 }
390 while (fromlog == fromgdb);
391
392 if (fromlog != EOL)
393 {
394 sync_error (fp, "Sync error during read of gdb packet from log", fromlog,
395 fromgdb);
396 }
397 }
398
399 /* Play data back to gdb from fp (after skipping leading blank) up until a
400 \n is read from fp (which is discarded and not sent to gdb). */
401
402 static void
403 play (FILE *fp)
404 {
405 int fromlog;
406 char ch;
407
408 if ((fromlog = logchar (fp)) != ' ')
409 {
410 sync_error (fp, "Sync error skipping blank during write to gdb", ' ',
411 fromlog);
412 }
413 while ((fromlog = logchar (fp)) != EOL)
414 {
415 ch = fromlog;
416 if (write (remote_desc, &ch, 1) != 1)
417 remote_error ("Error during write to gdb");
418 }
419 }
420
421 static void
422 gdbreplay_version (void)
423 {
424 printf ("GNU gdbreplay %s%s\n"
425 "Copyright (C) 2012 Free Software Foundation, Inc.\n"
426 "gdbreplay is free software, covered by "
427 "the GNU General Public License.\n"
428 "This gdbreplay was configured as \"%s\"\n",
429 PKGVERSION, version, host_name);
430 }
431
432 static void
433 gdbreplay_usage (FILE *stream)
434 {
435 fprintf (stream, "Usage:\tgdbreplay <logfile> <host:port>\n");
436 if (REPORT_BUGS_TO[0] && stream == stdout)
437 fprintf (stream, "Report bugs to \"%s\".\n", REPORT_BUGS_TO);
438 }
439
440 int
441 main (int argc, char *argv[])
442 {
443 FILE *fp;
444 int ch;
445
446 if (argc >= 2 && strcmp (argv[1], "--version") == 0)
447 {
448 gdbreplay_version ();
449 exit (0);
450 }
451 if (argc >= 2 && strcmp (argv[1], "--help") == 0)
452 {
453 gdbreplay_usage (stdout);
454 exit (0);
455 }
456
457 if (argc < 3)
458 {
459 gdbreplay_usage (stderr);
460 exit (1);
461 }
462 fp = fopen (argv[1], "r");
463 if (fp == NULL)
464 {
465 perror_with_name (argv[1]);
466 }
467 remote_open (argv[2]);
468 while ((ch = logchar (fp)) != EOF)
469 {
470 switch (ch)
471 {
472 case 'w':
473 /* data sent from gdb to gdbreplay, accept and match it */
474 expect (fp);
475 break;
476 case 'r':
477 /* data sent from gdbreplay to gdb, play it */
478 play (fp);
479 break;
480 case 'c':
481 /* Command executed by gdb */
482 while ((ch = logchar (fp)) != EOL);
483 break;
484 }
485 }
486 remote_close ();
487 exit (0);
488 }
This page took 0.057491 seconds and 4 git commands to generate.