2012-06-11 Pedro Alves <palves@redhat.com>
[deliverable/binutils-gdb.git] / gdb / serial.c
1 /* Generic serial interface routines
2
3 Copyright (C) 1992-2002, 2004-2012 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20 #include "defs.h"
21 #include <ctype.h>
22 #include "serial.h"
23 #include "gdb_string.h"
24 #include "gdbcmd.h"
25
26 extern void _initialize_serial (void);
27
28 /* Is serial being debugged? */
29
30 static int global_serial_debug_p;
31
32 /* Linked list of serial I/O handlers. */
33
34 static struct serial_ops *serial_ops_list = NULL;
35
36 /* Non-NULL gives filename which contains a recording of the remote session,
37 suitable for playback by gdbserver. */
38
39 static char *serial_logfile = NULL;
40 static struct ui_file *serial_logfp = NULL;
41
42 static struct serial_ops *serial_interface_lookup (const char *);
43 static void serial_logchar (struct ui_file *stream,
44 int ch_type, int ch, int timeout);
45 static const char logbase_hex[] = "hex";
46 static const char logbase_octal[] = "octal";
47 static const char logbase_ascii[] = "ascii";
48 static const char *const logbase_enums[] =
49 {logbase_hex, logbase_octal, logbase_ascii, NULL};
50 static const char *serial_logbase = logbase_ascii;
51 \f
52
53 static int serial_current_type = 0;
54
55 /* Log char CH of type CHTYPE, with TIMEOUT. */
56
57 /* Define bogus char to represent a BREAK. Should be careful to choose a value
58 that can't be confused with a normal char, or an error code. */
59 #define SERIAL_BREAK 1235
60
61 static void
62 serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout)
63 {
64 if (ch_type != serial_current_type)
65 {
66 fprintf_unfiltered (stream, "\n%c ", ch_type);
67 serial_current_type = ch_type;
68 }
69
70 if (serial_logbase != logbase_ascii)
71 fputc_unfiltered (' ', stream);
72
73 switch (ch)
74 {
75 case SERIAL_TIMEOUT:
76 fprintf_unfiltered (stream, "<Timeout: %d seconds>", timeout);
77 return;
78 case SERIAL_ERROR:
79 fprintf_unfiltered (stream, "<Error: %s>", safe_strerror (errno));
80 return;
81 case SERIAL_EOF:
82 fputs_unfiltered ("<Eof>", stream);
83 return;
84 case SERIAL_BREAK:
85 fputs_unfiltered ("<Break>", stream);
86 return;
87 default:
88 if (serial_logbase == logbase_hex)
89 fprintf_unfiltered (stream, "%02x", ch & 0xff);
90 else if (serial_logbase == logbase_octal)
91 fprintf_unfiltered (stream, "%03o", ch & 0xff);
92 else
93 switch (ch)
94 {
95 case '\\':
96 fputs_unfiltered ("\\\\", stream);
97 break;
98 case '\b':
99 fputs_unfiltered ("\\b", stream);
100 break;
101 case '\f':
102 fputs_unfiltered ("\\f", stream);
103 break;
104 case '\n':
105 fputs_unfiltered ("\\n", stream);
106 break;
107 case '\r':
108 fputs_unfiltered ("\\r", stream);
109 break;
110 case '\t':
111 fputs_unfiltered ("\\t", stream);
112 break;
113 case '\v':
114 fputs_unfiltered ("\\v", stream);
115 break;
116 default:
117 fprintf_unfiltered (stream,
118 isprint (ch) ? "%c" : "\\x%02x", ch & 0xFF);
119 break;
120 }
121 }
122 }
123
124 void
125 serial_log_command (const char *cmd)
126 {
127 if (!serial_logfp)
128 return;
129
130 serial_current_type = 'c';
131
132 fputs_unfiltered ("\nc ", serial_logfp);
133 fputs_unfiltered (cmd, serial_logfp);
134
135 /* Make sure that the log file is as up-to-date as possible,
136 in case we are getting ready to dump core or something. */
137 gdb_flush (serial_logfp);
138 }
139
140 \f
141 static struct serial_ops *
142 serial_interface_lookup (const char *name)
143 {
144 struct serial_ops *ops;
145
146 for (ops = serial_ops_list; ops; ops = ops->next)
147 if (strcmp (name, ops->name) == 0)
148 return ops;
149
150 return NULL;
151 }
152
153 void
154 serial_add_interface (struct serial_ops *optable)
155 {
156 optable->next = serial_ops_list;
157 serial_ops_list = optable;
158 }
159
160 /* Open up a device or a network socket, depending upon the syntax of NAME. */
161
162 struct serial *
163 serial_open (const char *name)
164 {
165 struct serial *scb;
166 struct serial_ops *ops;
167 const char *open_name = name;
168
169 if (strcmp (name, "pc") == 0)
170 ops = serial_interface_lookup ("pc");
171 else if (strncmp (name, "lpt", 3) == 0)
172 ops = serial_interface_lookup ("parallel");
173 else if (strncmp (name, "|", 1) == 0)
174 {
175 ops = serial_interface_lookup ("pipe");
176 /* Discard ``|'' and any space before the command itself. */
177 ++open_name;
178 while (isspace (*open_name))
179 ++open_name;
180 }
181 /* Check for a colon, suggesting an IP address/port pair.
182 Do this *after* checking for all the interesting prefixes. We
183 don't want to constrain the syntax of what can follow them. */
184 else if (strchr (name, ':'))
185 ops = serial_interface_lookup ("tcp");
186 else
187 ops = serial_interface_lookup ("hardwire");
188
189 if (!ops)
190 return NULL;
191
192 scb = XMALLOC (struct serial);
193
194 scb->ops = ops;
195
196 scb->bufcnt = 0;
197 scb->bufp = scb->buf;
198 scb->error_fd = -1;
199
200 /* `...->open (...)' would get expanded by the open(2) syscall macro. */
201 if ((*scb->ops->open) (scb, open_name))
202 {
203 xfree (scb);
204 return NULL;
205 }
206
207 scb->name = xstrdup (name);
208 scb->debug_p = 0;
209 scb->async_state = 0;
210 scb->async_handler = NULL;
211 scb->async_context = NULL;
212
213 if (serial_logfile != NULL)
214 {
215 serial_logfp = gdb_fopen (serial_logfile, "w");
216 if (serial_logfp == NULL)
217 perror_with_name (serial_logfile);
218 }
219
220 return scb;
221 }
222
223 /* Open a new serial stream using a file handle, using serial
224 interface ops OPS. */
225
226 static struct serial *
227 serial_fdopen_ops (const int fd, struct serial_ops *ops)
228 {
229 struct serial *scb;
230
231 if (!ops)
232 {
233 ops = serial_interface_lookup ("terminal");
234 if (!ops)
235 ops = serial_interface_lookup ("hardwire");
236 }
237
238 if (!ops)
239 return NULL;
240
241 scb = XCALLOC (1, struct serial);
242
243 scb->ops = ops;
244
245 scb->bufcnt = 0;
246 scb->bufp = scb->buf;
247 scb->error_fd = -1;
248
249 scb->name = NULL;
250 scb->debug_p = 0;
251 scb->async_state = 0;
252 scb->async_handler = NULL;
253 scb->async_context = NULL;
254
255 if ((ops->fdopen) != NULL)
256 (*ops->fdopen) (scb, fd);
257 else
258 scb->fd = fd;
259
260 return scb;
261 }
262
263 struct serial *
264 serial_fdopen (const int fd)
265 {
266 return serial_fdopen_ops (fd, NULL);
267 }
268
269 static void
270 do_serial_close (struct serial *scb, int really_close)
271 {
272 struct serial *tmp_scb;
273
274 if (serial_logfp)
275 {
276 fputs_unfiltered ("\nEnd of log\n", serial_logfp);
277 serial_current_type = 0;
278
279 /* XXX - What if serial_logfp == gdb_stdout or gdb_stderr? */
280 ui_file_delete (serial_logfp);
281 serial_logfp = NULL;
282 }
283
284 /* ensure that the FD has been taken out of async mode. */
285 if (scb->async_handler != NULL)
286 serial_async (scb, NULL, NULL);
287
288 if (really_close)
289 scb->ops->close (scb);
290
291 if (scb->name)
292 xfree (scb->name);
293
294 xfree (scb);
295 }
296
297 void
298 serial_close (struct serial *scb)
299 {
300 do_serial_close (scb, 1);
301 }
302
303 void
304 serial_un_fdopen (struct serial *scb)
305 {
306 do_serial_close (scb, 0);
307 }
308
309 int
310 serial_readchar (struct serial *scb, int timeout)
311 {
312 int ch;
313
314 /* FIXME: cagney/1999-10-11: Don't enable this check until the ASYNC
315 code is finished. */
316 if (0 && serial_is_async_p (scb) && timeout < 0)
317 internal_error (__FILE__, __LINE__,
318 _("serial_readchar: blocking read in async mode"));
319
320 ch = scb->ops->readchar (scb, timeout);
321 if (serial_logfp != NULL)
322 {
323 serial_logchar (serial_logfp, 'r', ch, timeout);
324
325 /* Make sure that the log file is as up-to-date as possible,
326 in case we are getting ready to dump core or something. */
327 gdb_flush (serial_logfp);
328 }
329 if (serial_debug_p (scb))
330 {
331 fprintf_unfiltered (gdb_stdlog, "[");
332 serial_logchar (gdb_stdlog, 'r', ch, timeout);
333 fprintf_unfiltered (gdb_stdlog, "]");
334 gdb_flush (gdb_stdlog);
335 }
336
337 return (ch);
338 }
339
340 int
341 serial_write (struct serial *scb, const char *str, int len)
342 {
343 if (serial_logfp != NULL)
344 {
345 int count;
346
347 for (count = 0; count < len; count++)
348 serial_logchar (serial_logfp, 'w', str[count] & 0xff, 0);
349
350 /* Make sure that the log file is as up-to-date as possible,
351 in case we are getting ready to dump core or something. */
352 gdb_flush (serial_logfp);
353 }
354 if (serial_debug_p (scb))
355 {
356 int count;
357
358 for (count = 0; count < len; count++)
359 {
360 fprintf_unfiltered (gdb_stdlog, "[");
361 serial_logchar (gdb_stdlog, 'w', str[count] & 0xff, 0);
362 fprintf_unfiltered (gdb_stdlog, "]");
363 }
364 gdb_flush (gdb_stdlog);
365 }
366
367 return (scb->ops->write (scb, str, len));
368 }
369
370 void
371 serial_printf (struct serial *desc, const char *format,...)
372 {
373 va_list args;
374 char *buf;
375 va_start (args, format);
376
377 buf = xstrvprintf (format, args);
378 serial_write (desc, buf, strlen (buf));
379
380 xfree (buf);
381 va_end (args);
382 }
383
384 int
385 serial_drain_output (struct serial *scb)
386 {
387 return scb->ops->drain_output (scb);
388 }
389
390 int
391 serial_flush_output (struct serial *scb)
392 {
393 return scb->ops->flush_output (scb);
394 }
395
396 int
397 serial_flush_input (struct serial *scb)
398 {
399 return scb->ops->flush_input (scb);
400 }
401
402 int
403 serial_send_break (struct serial *scb)
404 {
405 if (serial_logfp != NULL)
406 serial_logchar (serial_logfp, 'w', SERIAL_BREAK, 0);
407
408 return (scb->ops->send_break (scb));
409 }
410
411 void
412 serial_raw (struct serial *scb)
413 {
414 scb->ops->go_raw (scb);
415 }
416
417 serial_ttystate
418 serial_get_tty_state (struct serial *scb)
419 {
420 return scb->ops->get_tty_state (scb);
421 }
422
423 serial_ttystate
424 serial_copy_tty_state (struct serial *scb, serial_ttystate ttystate)
425 {
426 return scb->ops->copy_tty_state (scb, ttystate);
427 }
428
429 int
430 serial_set_tty_state (struct serial *scb, serial_ttystate ttystate)
431 {
432 return scb->ops->set_tty_state (scb, ttystate);
433 }
434
435 void
436 serial_print_tty_state (struct serial *scb,
437 serial_ttystate ttystate,
438 struct ui_file *stream)
439 {
440 scb->ops->print_tty_state (scb, ttystate, stream);
441 }
442
443 int
444 serial_noflush_set_tty_state (struct serial *scb,
445 serial_ttystate new_ttystate,
446 serial_ttystate old_ttystate)
447 {
448 return scb->ops->noflush_set_tty_state (scb, new_ttystate, old_ttystate);
449 }
450
451 int
452 serial_setbaudrate (struct serial *scb, int rate)
453 {
454 return scb->ops->setbaudrate (scb, rate);
455 }
456
457 int
458 serial_setstopbits (struct serial *scb, int num)
459 {
460 return scb->ops->setstopbits (scb, num);
461 }
462
463 int
464 serial_can_async_p (struct serial *scb)
465 {
466 return (scb->ops->async != NULL);
467 }
468
469 int
470 serial_is_async_p (struct serial *scb)
471 {
472 return (scb->ops->async != NULL) && (scb->async_handler != NULL);
473 }
474
475 void
476 serial_async (struct serial *scb,
477 serial_event_ftype *handler,
478 void *context)
479 {
480 int changed = ((scb->async_handler == NULL) != (handler == NULL));
481
482 scb->async_handler = handler;
483 scb->async_context = context;
484 /* Only change mode if there is a need. */
485 if (changed)
486 scb->ops->async (scb, handler != NULL);
487 }
488
489 int
490 deprecated_serial_fd (struct serial *scb)
491 {
492 /* FIXME: should this output a warning that deprecated code is being
493 called? */
494 if (scb->fd < 0)
495 {
496 internal_error (__FILE__, __LINE__,
497 _("serial: FD not valid"));
498 }
499 return scb->fd; /* sigh */
500 }
501
502 void
503 serial_debug (struct serial *scb, int debug_p)
504 {
505 scb->debug_p = debug_p;
506 }
507
508 int
509 serial_debug_p (struct serial *scb)
510 {
511 return scb->debug_p || global_serial_debug_p;
512 }
513
514 #ifdef USE_WIN32API
515 void
516 serial_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
517 {
518 if (scb->ops->wait_handle)
519 scb->ops->wait_handle (scb, read, except);
520 else
521 {
522 *read = (HANDLE) _get_osfhandle (scb->fd);
523 *except = NULL;
524 }
525 }
526
527 void
528 serial_done_wait_handle (struct serial *scb)
529 {
530 if (scb->ops->done_wait_handle)
531 scb->ops->done_wait_handle (scb);
532 }
533 #endif
534
535 int
536 serial_pipe (struct serial *scbs[2])
537 {
538 struct serial_ops *ops;
539 int fildes[2];
540
541 ops = serial_interface_lookup ("pipe");
542 if (!ops)
543 {
544 errno = ENOSYS;
545 return -1;
546 }
547
548 if (gdb_pipe (fildes) == -1)
549 return -1;
550
551 scbs[0] = serial_fdopen_ops (fildes[0], ops);
552 scbs[1] = serial_fdopen_ops (fildes[1], ops);
553 return 0;
554 }
555
556 /* Serial set/show framework. */
557
558 static struct cmd_list_element *serial_set_cmdlist;
559 static struct cmd_list_element *serial_show_cmdlist;
560
561 static void
562 serial_set_cmd (char *args, int from_tty)
563 {
564 printf_unfiltered ("\"set serial\" must be followed "
565 "by the name of a command.\n");
566 help_list (serial_set_cmdlist, "set serial ", -1, gdb_stdout);
567 }
568
569 static void
570 serial_show_cmd (char *args, int from_tty)
571 {
572 cmd_show_list (serial_show_cmdlist, from_tty, "");
573 }
574
575
576 void
577 _initialize_serial (void)
578 {
579 #if 0
580 add_com ("connect", class_obscure, connect_command, _("\
581 Connect the terminal directly up to the command monitor.\n\
582 Use <CR>~. or <CR>~^D to break out."));
583 #endif /* 0 */
584
585 add_prefix_cmd ("serial", class_maintenance, serial_set_cmd, _("\
586 Set default serial/parallel port configuration."),
587 &serial_set_cmdlist, "set serial ",
588 0/*allow-unknown*/,
589 &setlist);
590
591 add_prefix_cmd ("serial", class_maintenance, serial_show_cmd, _("\
592 Show default serial/parallel port configuration."),
593 &serial_show_cmdlist, "show serial ",
594 0/*allow-unknown*/,
595 &showlist);
596
597 add_setshow_filename_cmd ("remotelogfile", no_class, &serial_logfile, _("\
598 Set filename for remote session recording."), _("\
599 Show filename for remote session recording."), _("\
600 This file is used to record the remote session for future playback\n\
601 by gdbserver."),
602 NULL,
603 NULL, /* FIXME: i18n: */
604 &setlist, &showlist);
605
606 add_setshow_enum_cmd ("remotelogbase", no_class, logbase_enums,
607 &serial_logbase, _("\
608 Set numerical base for remote session logging"), _("\
609 Show numerical base for remote session logging"), NULL,
610 NULL,
611 NULL, /* FIXME: i18n: */
612 &setlist, &showlist);
613
614 add_setshow_zinteger_cmd ("serial", class_maintenance,
615 &global_serial_debug_p, _("\
616 Set serial debugging."), _("\
617 Show serial debugging."), _("\
618 When non-zero, serial port debugging is enabled."),
619 NULL,
620 NULL, /* FIXME: i18n: */
621 &setdebuglist, &showdebuglist);
622 }
This page took 0.046448 seconds and 5 git commands to generate.