Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gdb6 / gdb / serial.c
blob6a2c634cb345d5084e6ca8d10367449db646cbc3
1 /* Generic serial interface routines
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
6 This file is part of GDB.
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 2 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 #include "defs.h"
24 #include <ctype.h>
25 #include "serial.h"
26 #include "gdb_string.h"
27 #include "gdbcmd.h"
29 extern void _initialize_serial (void);
31 /* Is serial being debugged? */
33 static int global_serial_debug_p;
35 /* Linked list of serial I/O handlers */
37 static struct serial_ops *serial_ops_list = NULL;
39 /* This is the last serial stream opened. Used by connect command. */
41 static struct serial *last_serial_opened = NULL;
43 /* Pointer to list of scb's. */
45 static struct serial *scb_base;
47 /* Non-NULL gives filename which contains a recording of the remote session,
48 suitable for playback by gdbserver. */
50 static char *serial_logfile = NULL;
51 static struct ui_file *serial_logfp = NULL;
53 static struct serial_ops *serial_interface_lookup (char *);
54 static void serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout);
55 static const char logbase_hex[] = "hex";
56 static const char logbase_octal[] = "octal";
57 static const char logbase_ascii[] = "ascii";
58 static const char *logbase_enums[] =
59 {logbase_hex, logbase_octal, logbase_ascii, NULL};
60 static const char *serial_logbase = logbase_ascii;
63 static int serial_current_type = 0;
65 /* Log char CH of type CHTYPE, with TIMEOUT */
67 /* Define bogus char to represent a BREAK. Should be careful to choose a value
68 that can't be confused with a normal char, or an error code. */
69 #define SERIAL_BREAK 1235
71 static void
72 serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout)
74 if (ch_type != serial_current_type)
76 fprintf_unfiltered (stream, "\n%c ", ch_type);
77 serial_current_type = ch_type;
80 if (serial_logbase != logbase_ascii)
81 fputc_unfiltered (' ', stream);
83 switch (ch)
85 case SERIAL_TIMEOUT:
86 fprintf_unfiltered (stream, "<Timeout: %d seconds>", timeout);
87 return;
88 case SERIAL_ERROR:
89 fprintf_unfiltered (stream, "<Error: %s>", safe_strerror (errno));
90 return;
91 case SERIAL_EOF:
92 fputs_unfiltered ("<Eof>", stream);
93 return;
94 case SERIAL_BREAK:
95 fputs_unfiltered ("<Break>", stream);
96 return;
97 default:
98 if (serial_logbase == logbase_hex)
99 fprintf_unfiltered (stream, "%02x", ch & 0xff);
100 else if (serial_logbase == logbase_octal)
101 fprintf_unfiltered (stream, "%03o", ch & 0xff);
102 else
103 switch (ch)
105 case '\\':
106 fputs_unfiltered ("\\\\", stream);
107 break;
108 case '\b':
109 fputs_unfiltered ("\\b", stream);
110 break;
111 case '\f':
112 fputs_unfiltered ("\\f", stream);
113 break;
114 case '\n':
115 fputs_unfiltered ("\\n", stream);
116 break;
117 case '\r':
118 fputs_unfiltered ("\\r", stream);
119 break;
120 case '\t':
121 fputs_unfiltered ("\\t", stream);
122 break;
123 case '\v':
124 fputs_unfiltered ("\\v", stream);
125 break;
126 default:
127 fprintf_unfiltered (stream, isprint (ch) ? "%c" : "\\x%02x", ch & 0xFF);
128 break;
133 void
134 serial_log_command (const char *cmd)
136 if (!serial_logfp)
137 return;
139 serial_current_type = 'c';
141 fputs_unfiltered ("\nc ", serial_logfp);
142 fputs_unfiltered (cmd, serial_logfp);
144 /* Make sure that the log file is as up-to-date as possible,
145 in case we are getting ready to dump core or something. */
146 gdb_flush (serial_logfp);
150 static struct serial_ops *
151 serial_interface_lookup (char *name)
153 struct serial_ops *ops;
155 for (ops = serial_ops_list; ops; ops = ops->next)
156 if (strcmp (name, ops->name) == 0)
157 return ops;
159 return NULL;
162 void
163 serial_add_interface (struct serial_ops *optable)
165 optable->next = serial_ops_list;
166 serial_ops_list = optable;
169 /* Open up a device or a network socket, depending upon the syntax of NAME. */
171 struct serial *
172 serial_open (const char *name)
174 struct serial *scb;
175 struct serial_ops *ops;
176 const char *open_name = name;
178 for (scb = scb_base; scb; scb = scb->next)
179 if (scb->name && strcmp (scb->name, name) == 0)
181 scb->refcnt++;
182 return scb;
185 if (strcmp (name, "pc") == 0)
186 ops = serial_interface_lookup ("pc");
187 else if (strncmp (name, "lpt", 3) == 0)
188 ops = serial_interface_lookup ("parallel");
189 else if (strncmp (name, "|", 1) == 0)
191 ops = serial_interface_lookup ("pipe");
192 open_name = name + 1; /* discard ``|'' */
194 /* Check for a colon, suggesting an IP address/port pair.
195 Do this *after* checking for all the interesting prefixes. We
196 don't want to constrain the syntax of what can follow them. */
197 else if (strchr (name, ':'))
198 ops = serial_interface_lookup ("tcp");
199 else
200 ops = serial_interface_lookup ("hardwire");
202 if (!ops)
203 return NULL;
205 scb = XMALLOC (struct serial);
207 scb->ops = ops;
209 scb->bufcnt = 0;
210 scb->bufp = scb->buf;
212 if (scb->ops->open (scb, open_name))
214 xfree (scb);
215 return NULL;
218 scb->name = xstrdup (name);
219 scb->next = scb_base;
220 scb->refcnt = 1;
221 scb->debug_p = 0;
222 scb->async_state = 0;
223 scb->async_handler = NULL;
224 scb->async_context = NULL;
225 scb_base = scb;
227 last_serial_opened = scb;
229 if (serial_logfile != NULL)
231 serial_logfp = gdb_fopen (serial_logfile, "w");
232 if (serial_logfp == NULL)
233 perror_with_name (serial_logfile);
236 return scb;
239 /* Return the open serial device for FD, if found, or NULL if FD
240 is not already opened. */
242 struct serial *
243 serial_for_fd (int fd)
245 struct serial *scb;
246 struct serial_ops *ops;
248 for (scb = scb_base; scb; scb = scb->next)
249 if (scb->fd == fd)
250 return scb;
252 return NULL;
255 struct serial *
256 serial_fdopen (const int fd)
258 struct serial *scb;
259 struct serial_ops *ops;
261 for (scb = scb_base; scb; scb = scb->next)
262 if (scb->fd == fd)
264 scb->refcnt++;
265 return scb;
268 ops = serial_interface_lookup ("terminal");
269 if (!ops)
270 ops = serial_interface_lookup ("hardwire");
272 if (!ops)
273 return NULL;
275 scb = XCALLOC (1, struct serial);
277 scb->ops = ops;
279 scb->bufcnt = 0;
280 scb->bufp = scb->buf;
282 scb->fd = fd;
284 scb->name = NULL;
285 scb->next = scb_base;
286 scb->refcnt = 1;
287 scb->debug_p = 0;
288 scb->async_state = 0;
289 scb->async_handler = NULL;
290 scb->async_context = NULL;
291 scb_base = scb;
293 last_serial_opened = scb;
295 return scb;
298 static void
299 do_serial_close (struct serial *scb, int really_close)
301 struct serial *tmp_scb;
303 last_serial_opened = NULL;
305 if (serial_logfp)
307 fputs_unfiltered ("\nEnd of log\n", serial_logfp);
308 serial_current_type = 0;
310 /* XXX - What if serial_logfp == gdb_stdout or gdb_stderr? */
311 ui_file_delete (serial_logfp);
312 serial_logfp = NULL;
315 /* This is bogus. It's not our fault if you pass us a bad scb...! Rob, you
316 should fix your code instead. */
318 if (!scb)
319 return;
321 scb->refcnt--;
322 if (scb->refcnt > 0)
323 return;
325 /* ensure that the FD has been taken out of async mode */
326 if (scb->async_handler != NULL)
327 serial_async (scb, NULL, NULL);
329 if (really_close)
330 scb->ops->close (scb);
332 if (scb->name)
333 xfree (scb->name);
335 if (scb_base == scb)
336 scb_base = scb_base->next;
337 else
338 for (tmp_scb = scb_base; tmp_scb; tmp_scb = tmp_scb->next)
340 if (tmp_scb->next != scb)
341 continue;
343 tmp_scb->next = tmp_scb->next->next;
344 break;
347 xfree (scb);
350 void
351 serial_close (struct serial *scb)
353 do_serial_close (scb, 1);
356 void
357 serial_un_fdopen (struct serial *scb)
359 do_serial_close (scb, 0);
363 serial_readchar (struct serial *scb, int timeout)
365 int ch;
367 /* FIXME: cagney/1999-10-11: Don't enable this check until the ASYNC
368 code is finished. */
369 if (0 && serial_is_async_p (scb) && timeout < 0)
370 internal_error (__FILE__, __LINE__,
371 _("serial_readchar: blocking read in async mode"));
373 ch = scb->ops->readchar (scb, timeout);
374 if (serial_logfp != NULL)
376 serial_logchar (serial_logfp, 'r', ch, timeout);
378 /* Make sure that the log file is as up-to-date as possible,
379 in case we are getting ready to dump core or something. */
380 gdb_flush (serial_logfp);
382 if (serial_debug_p (scb))
384 fprintf_unfiltered (gdb_stdlog, "[");
385 serial_logchar (gdb_stdlog, 'r', ch, timeout);
386 fprintf_unfiltered (gdb_stdlog, "]");
387 gdb_flush (gdb_stdlog);
390 return (ch);
394 serial_write (struct serial *scb, const char *str, int len)
396 if (serial_logfp != NULL)
398 int count;
400 for (count = 0; count < len; count++)
401 serial_logchar (serial_logfp, 'w', str[count] & 0xff, 0);
403 /* Make sure that the log file is as up-to-date as possible,
404 in case we are getting ready to dump core or something. */
405 gdb_flush (serial_logfp);
408 return (scb->ops->write (scb, str, len));
411 void
412 serial_printf (struct serial *desc, const char *format,...)
414 va_list args;
415 char *buf;
416 va_start (args, format);
418 buf = xstrvprintf (format, args);
419 serial_write (desc, buf, strlen (buf));
421 xfree (buf);
422 va_end (args);
426 serial_drain_output (struct serial *scb)
428 return scb->ops->drain_output (scb);
432 serial_flush_output (struct serial *scb)
434 return scb->ops->flush_output (scb);
438 serial_flush_input (struct serial *scb)
440 return scb->ops->flush_input (scb);
444 serial_send_break (struct serial *scb)
446 if (serial_logfp != NULL)
447 serial_logchar (serial_logfp, 'w', SERIAL_BREAK, 0);
449 return (scb->ops->send_break (scb));
452 void
453 serial_raw (struct serial *scb)
455 scb->ops->go_raw (scb);
458 serial_ttystate
459 serial_get_tty_state (struct serial *scb)
461 return scb->ops->get_tty_state (scb);
465 serial_set_tty_state (struct serial *scb, serial_ttystate ttystate)
467 return scb->ops->set_tty_state (scb, ttystate);
470 void
471 serial_print_tty_state (struct serial *scb,
472 serial_ttystate ttystate,
473 struct ui_file *stream)
475 scb->ops->print_tty_state (scb, ttystate, stream);
479 serial_noflush_set_tty_state (struct serial *scb,
480 serial_ttystate new_ttystate,
481 serial_ttystate old_ttystate)
483 return scb->ops->noflush_set_tty_state (scb, new_ttystate, old_ttystate);
487 serial_setbaudrate (struct serial *scb, int rate)
489 return scb->ops->setbaudrate (scb, rate);
493 serial_setstopbits (struct serial *scb, int num)
495 return scb->ops->setstopbits (scb, num);
499 serial_can_async_p (struct serial *scb)
501 return (scb->ops->async != NULL);
505 serial_is_async_p (struct serial *scb)
507 return (scb->ops->async != NULL) && (scb->async_handler != NULL);
510 void
511 serial_async (struct serial *scb,
512 serial_event_ftype *handler,
513 void *context)
515 /* Only change mode if there is a need. */
516 if ((scb->async_handler == NULL)
517 != (handler == NULL))
518 scb->ops->async (scb, handler != NULL);
519 scb->async_handler = handler;
520 scb->async_context = context;
524 deprecated_serial_fd (struct serial *scb)
526 /* FIXME: should this output a warning that deprecated code is being
527 called? */
528 if (scb->fd < 0)
530 internal_error (__FILE__, __LINE__,
531 _("serial: FD not valid"));
533 return scb->fd; /* sigh */
536 void
537 serial_debug (struct serial *scb, int debug_p)
539 scb->debug_p = debug_p;
543 serial_debug_p (struct serial *scb)
545 return scb->debug_p || global_serial_debug_p;
548 #ifdef USE_WIN32API
549 void
550 serial_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
552 if (scb->ops->wait_handle)
553 scb->ops->wait_handle (scb, read, except);
554 else
556 *read = (HANDLE) _get_osfhandle (scb->fd);
557 *except = NULL;
561 void
562 serial_done_wait_handle (struct serial *scb)
564 if (scb->ops->done_wait_handle)
565 scb->ops->done_wait_handle (scb);
567 #endif
569 #if 0
570 /* The connect command is #if 0 because I hadn't thought of an elegant
571 way to wait for I/O on two `struct serial *'s simultaneously. Two
572 solutions came to mind:
574 1) Fork, and have have one fork handle the to user direction,
575 and have the other hand the to target direction. This
576 obviously won't cut it for MSDOS.
578 2) Use something like select. This assumes that stdin and
579 the target side can both be waited on via the same
580 mechanism. This may not be true for DOS, if GDB is
581 talking to the target via a TCP socket.
582 -grossman, 8 Jun 93 */
584 /* Connect the user directly to the remote system. This command acts just like
585 the 'cu' or 'tip' command. Use <CR>~. or <CR>~^D to break out. */
587 static struct serial *tty_desc; /* Controlling terminal */
589 static void
590 cleanup_tty (serial_ttystate ttystate)
592 printf_unfiltered ("\r\n[Exiting connect mode]\r\n");
593 serial_set_tty_state (tty_desc, ttystate);
594 xfree (ttystate);
595 serial_close (tty_desc);
598 static void
599 connect_command (char *args, int fromtty)
601 int c;
602 char cur_esc = 0;
603 serial_ttystate ttystate;
604 struct serial *port_desc; /* TTY port */
606 dont_repeat ();
608 if (args)
609 fprintf_unfiltered (gdb_stderr, "This command takes no args. They have been ignored.\n");
611 printf_unfiltered ("[Entering connect mode. Use ~. or ~^D to escape]\n");
613 tty_desc = serial_fdopen (0);
614 port_desc = last_serial_opened;
616 ttystate = serial_get_tty_state (tty_desc);
618 serial_raw (tty_desc);
619 serial_raw (port_desc);
621 make_cleanup (cleanup_tty, ttystate);
623 while (1)
625 int mask;
627 mask = serial_wait_2 (tty_desc, port_desc, -1);
629 if (mask & 2)
630 { /* tty input */
631 char cx;
633 while (1)
635 c = serial_readchar (tty_desc, 0);
637 if (c == SERIAL_TIMEOUT)
638 break;
640 if (c < 0)
641 perror_with_name (_("connect"));
643 cx = c;
644 serial_write (port_desc, &cx, 1);
646 switch (cur_esc)
648 case 0:
649 if (c == '\r')
650 cur_esc = c;
651 break;
652 case '\r':
653 if (c == '~')
654 cur_esc = c;
655 else
656 cur_esc = 0;
657 break;
658 case '~':
659 if (c == '.' || c == '\004')
660 return;
661 else
662 cur_esc = 0;
667 if (mask & 1)
668 { /* Port input */
669 char cx;
671 while (1)
673 c = serial_readchar (port_desc, 0);
675 if (c == SERIAL_TIMEOUT)
676 break;
678 if (c < 0)
679 perror_with_name (_("connect"));
681 cx = c;
683 serial_write (tty_desc, &cx, 1);
688 #endif /* 0 */
690 /* Serial set/show framework. */
692 static struct cmd_list_element *serial_set_cmdlist;
693 static struct cmd_list_element *serial_show_cmdlist;
695 static void
696 serial_set_cmd (char *args, int from_tty)
698 printf_unfiltered ("\"set serial\" must be followed by the name of a command.\n");
699 help_list (serial_set_cmdlist, "set serial ", -1, gdb_stdout);
702 static void
703 serial_show_cmd (char *args, int from_tty)
705 cmd_show_list (serial_show_cmdlist, from_tty, "");
709 void
710 _initialize_serial (void)
712 #if 0
713 add_com ("connect", class_obscure, connect_command, _("\
714 Connect the terminal directly up to the command monitor.\n\
715 Use <CR>~. or <CR>~^D to break out."));
716 #endif /* 0 */
718 add_prefix_cmd ("serial", class_maintenance, serial_set_cmd, _("\
719 Set default serial/parallel port configuration."),
720 &serial_set_cmdlist, "set serial ",
721 0/*allow-unknown*/,
722 &setlist);
724 add_prefix_cmd ("serial", class_maintenance, serial_show_cmd, _("\
725 Show default serial/parallel port configuration."),
726 &serial_show_cmdlist, "show serial ",
727 0/*allow-unknown*/,
728 &showlist);
730 add_setshow_filename_cmd ("remotelogfile", no_class, &serial_logfile, _("\
731 Set filename for remote session recording."), _("\
732 Show filename for remote session recording."), _("\
733 This file is used to record the remote session for future playback\n\
734 by gdbserver."),
735 NULL,
736 NULL, /* FIXME: i18n: */
737 &setlist, &showlist);
739 add_setshow_enum_cmd ("remotelogbase", no_class, logbase_enums,
740 &serial_logbase, _("\
741 Set numerical base for remote session logging"), _("\
742 Show numerical base for remote session logging"), NULL,
743 NULL,
744 NULL, /* FIXME: i18n: */
745 &setlist, &showlist);
747 add_setshow_zinteger_cmd ("serial", class_maintenance,
748 &global_serial_debug_p, _("\
749 Set serial debugging."), _("\
750 Show serial debugging."), _("\
751 When non-zero, serial port debugging is enabled."),
752 NULL,
753 NULL, /* FIXME: i18n: */
754 &setdebuglist, &showdebuglist);