1999-04-16 03:35:26 +02:00
|
|
|
|
/* Generic serial interface routines
|
2001-01-31 02:24:03 +01:00
|
|
|
|
|
2001-03-06 09:22:02 +01:00
|
|
|
|
Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
|
|
|
|
Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
#include "serial.h"
|
|
|
|
|
#include "gdb_string.h"
|
|
|
|
|
#include "gdbcmd.h"
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
extern void _initialize_serial (void);
|
1999-05-25 20:09:09 +02:00
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
/* Is serial being debugged? */
|
|
|
|
|
|
|
|
|
|
static int global_serial_debug_p;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Linked list of serial I/O handlers */
|
|
|
|
|
|
|
|
|
|
static struct serial_ops *serial_ops_list = NULL;
|
|
|
|
|
|
|
|
|
|
/* This is the last serial stream opened. Used by connect command. */
|
|
|
|
|
|
|
|
|
|
static serial_t last_serial_opened = NULL;
|
|
|
|
|
|
|
|
|
|
/* Pointer to list of scb's. */
|
|
|
|
|
|
|
|
|
|
static serial_t scb_base;
|
|
|
|
|
|
|
|
|
|
/* Non-NULL gives filename which contains a recording of the remote session,
|
|
|
|
|
suitable for playback by gdbserver. */
|
|
|
|
|
|
|
|
|
|
static char *serial_logfile = NULL;
|
2000-02-02 01:21:19 +01:00
|
|
|
|
static struct ui_file *serial_logfp = NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
static struct serial_ops *serial_interface_lookup (char *);
|
2000-02-02 01:21:19 +01:00
|
|
|
|
static void serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout);
|
2000-06-08 02:52:56 +02:00
|
|
|
|
static const char logbase_hex[] = "hex";
|
|
|
|
|
static const char logbase_octal[] = "octal";
|
|
|
|
|
static const char logbase_ascii[] = "ascii";
|
|
|
|
|
static const char *logbase_enums[] =
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{logbase_hex, logbase_octal, logbase_ascii, NULL};
|
2000-06-08 02:52:56 +02:00
|
|
|
|
static const char *serial_logbase = logbase_ascii;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static int serial_current_type = 0;
|
|
|
|
|
|
|
|
|
|
/* Log char CH of type CHTYPE, with TIMEOUT */
|
|
|
|
|
|
|
|
|
|
/* Define bogus char to represent a BREAK. Should be careful to choose a value
|
|
|
|
|
that can't be confused with a normal char, or an error code. */
|
|
|
|
|
#define SERIAL_BREAK 1235
|
|
|
|
|
|
|
|
|
|
static void
|
2000-02-02 01:21:19 +01:00
|
|
|
|
serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (ch_type != serial_current_type)
|
|
|
|
|
{
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fprintf_unfiltered (stream, "\n%c ", ch_type);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
serial_current_type = ch_type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (serial_logbase != logbase_ascii)
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputc_unfiltered (' ', stream);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
switch (ch)
|
|
|
|
|
{
|
|
|
|
|
case SERIAL_TIMEOUT:
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fprintf_unfiltered (stream, "<Timeout: %d seconds>", timeout);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return;
|
|
|
|
|
case SERIAL_ERROR:
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fprintf_unfiltered (stream, "<Error: %s>", safe_strerror (errno));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return;
|
|
|
|
|
case SERIAL_EOF:
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputs_unfiltered ("<Eof>", stream);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return;
|
|
|
|
|
case SERIAL_BREAK:
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputs_unfiltered ("<Break>", stream);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return;
|
|
|
|
|
default:
|
|
|
|
|
if (serial_logbase == logbase_hex)
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fprintf_unfiltered (stream, "%02x", ch & 0xff);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else if (serial_logbase == logbase_octal)
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fprintf_unfiltered (stream, "%03o", ch & 0xff);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
switch (ch)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
case '\\':
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputs_unfiltered ("\\\\", stream);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
|
|
|
|
case '\b':
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputs_unfiltered ("\\b", stream);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
|
|
|
|
case '\f':
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputs_unfiltered ("\\f", stream);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
|
|
|
|
case '\n':
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputs_unfiltered ("\\n", stream);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
|
|
|
|
case '\r':
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputs_unfiltered ("\\r", stream);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
|
|
|
|
case '\t':
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputs_unfiltered ("\\t", stream);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
|
|
|
|
case '\v':
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fputs_unfiltered ("\\v", stream);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
|
|
|
|
default:
|
1999-10-06 01:13:56 +02:00
|
|
|
|
fprintf_unfiltered (stream, isprint (ch) ? "%c" : "\\x%02x", ch & 0xFF);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
1999-09-22 05:28:34 +02:00
|
|
|
|
serial_log_command (const char *cmd)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (!serial_logfp)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
serial_current_type = 'c';
|
|
|
|
|
|
|
|
|
|
fputs_unfiltered ("\nc ", serial_logfp);
|
|
|
|
|
fputs_unfiltered (cmd, serial_logfp);
|
|
|
|
|
|
|
|
|
|
/* Make sure that the log file is as up-to-date as possible,
|
|
|
|
|
in case we are getting ready to dump core or something. */
|
|
|
|
|
gdb_flush (serial_logfp);
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static struct serial_ops *
|
1999-09-22 05:28:34 +02:00
|
|
|
|
serial_interface_lookup (char *name)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct serial_ops *ops;
|
|
|
|
|
|
|
|
|
|
for (ops = serial_ops_list; ops; ops = ops->next)
|
|
|
|
|
if (strcmp (name, ops->name) == 0)
|
|
|
|
|
return ops;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
1999-09-22 05:28:34 +02:00
|
|
|
|
serial_add_interface (struct serial_ops *optable)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
optable->next = serial_ops_list;
|
|
|
|
|
serial_ops_list = optable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Open up a device or a network socket, depending upon the syntax of NAME. */
|
|
|
|
|
|
|
|
|
|
serial_t
|
1999-09-22 05:28:34 +02:00
|
|
|
|
serial_open (const char *name)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
serial_t scb;
|
|
|
|
|
struct serial_ops *ops;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
const char *open_name = name;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
for (scb = scb_base; scb; scb = scb->next)
|
|
|
|
|
if (scb->name && strcmp (scb->name, name) == 0)
|
|
|
|
|
{
|
|
|
|
|
scb->refcnt++;
|
|
|
|
|
return scb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp (name, "ocd") == 0)
|
|
|
|
|
ops = serial_interface_lookup ("ocd");
|
|
|
|
|
else if (strcmp (name, "pc") == 0)
|
|
|
|
|
ops = serial_interface_lookup ("pc");
|
|
|
|
|
else if (strchr (name, ':'))
|
|
|
|
|
ops = serial_interface_lookup ("tcp");
|
|
|
|
|
else if (strncmp (name, "lpt", 3) == 0)
|
|
|
|
|
ops = serial_interface_lookup ("parallel");
|
1999-07-12 13:15:22 +02:00
|
|
|
|
else if (strncmp (name, "|", 1) == 0)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
|
|
|
|
ops = serial_interface_lookup ("pipe");
|
|
|
|
|
open_name = name + 1; /* discard ``|'' */
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
ops = serial_interface_lookup ("hardwire");
|
|
|
|
|
|
|
|
|
|
if (!ops)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
scb = (serial_t) xmalloc (sizeof (struct _serial_t));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
scb->ops = ops;
|
|
|
|
|
|
|
|
|
|
scb->bufcnt = 0;
|
|
|
|
|
scb->bufp = scb->buf;
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
if (scb->ops->open (scb, open_name))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (scb);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-31 02:24:03 +01:00
|
|
|
|
scb->name = xstrdup (name);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
scb->next = scb_base;
|
|
|
|
|
scb->refcnt = 1;
|
1999-10-06 01:13:56 +02:00
|
|
|
|
scb->debug_p = 0;
|
|
|
|
|
scb->async_state = 0;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
scb->async_handler = NULL;
|
|
|
|
|
scb->async_context = NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
scb_base = scb;
|
|
|
|
|
|
|
|
|
|
last_serial_opened = scb;
|
|
|
|
|
|
|
|
|
|
if (serial_logfile != NULL)
|
|
|
|
|
{
|
|
|
|
|
serial_logfp = gdb_fopen (serial_logfile, "w");
|
|
|
|
|
if (serial_logfp == NULL)
|
|
|
|
|
perror_with_name (serial_logfile);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return scb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
serial_t
|
1999-09-22 05:28:34 +02:00
|
|
|
|
serial_fdopen (const int fd)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
serial_t scb;
|
|
|
|
|
struct serial_ops *ops;
|
|
|
|
|
|
|
|
|
|
for (scb = scb_base; scb; scb = scb->next)
|
|
|
|
|
if (scb->fd == fd)
|
|
|
|
|
{
|
|
|
|
|
scb->refcnt++;
|
|
|
|
|
return scb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ops = serial_interface_lookup ("hardwire");
|
|
|
|
|
|
|
|
|
|
if (!ops)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
scb = (serial_t) xmalloc (sizeof (struct _serial_t));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
scb->ops = ops;
|
|
|
|
|
|
|
|
|
|
scb->bufcnt = 0;
|
|
|
|
|
scb->bufp = scb->buf;
|
|
|
|
|
|
|
|
|
|
scb->fd = fd;
|
|
|
|
|
|
|
|
|
|
scb->name = NULL;
|
|
|
|
|
scb->next = scb_base;
|
|
|
|
|
scb->refcnt = 1;
|
1999-10-06 01:13:56 +02:00
|
|
|
|
scb->debug_p = 0;
|
|
|
|
|
scb->async_state = 0;
|
1999-09-22 05:28:34 +02:00
|
|
|
|
scb->async_handler = NULL;
|
|
|
|
|
scb->async_context = NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
scb_base = scb;
|
|
|
|
|
|
|
|
|
|
last_serial_opened = scb;
|
|
|
|
|
|
|
|
|
|
return scb;
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
static void
|
|
|
|
|
do_serial_close (serial_t scb, int really_close)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
serial_t tmp_scb;
|
|
|
|
|
|
|
|
|
|
last_serial_opened = NULL;
|
|
|
|
|
|
|
|
|
|
if (serial_logfp)
|
|
|
|
|
{
|
|
|
|
|
fputs_unfiltered ("\nEnd of log\n", serial_logfp);
|
|
|
|
|
serial_current_type = 0;
|
|
|
|
|
|
|
|
|
|
/* XXX - What if serial_logfp == gdb_stdout or gdb_stderr? */
|
2000-02-02 01:21:19 +01:00
|
|
|
|
ui_file_delete (serial_logfp);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
serial_logfp = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is bogus. It's not our fault if you pass us a bad scb...! Rob, you
|
|
|
|
|
should fix your code instead. */
|
|
|
|
|
|
|
|
|
|
if (!scb)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
scb->refcnt--;
|
|
|
|
|
if (scb->refcnt > 0)
|
|
|
|
|
return;
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
/* ensure that the FD has been taken out of async mode */
|
|
|
|
|
if (scb->async_handler != NULL)
|
|
|
|
|
serial_async (scb, NULL, NULL);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (really_close)
|
|
|
|
|
scb->ops->close (scb);
|
|
|
|
|
|
|
|
|
|
if (scb->name)
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (scb->name);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (scb_base == scb)
|
|
|
|
|
scb_base = scb_base->next;
|
|
|
|
|
else
|
|
|
|
|
for (tmp_scb = scb_base; tmp_scb; tmp_scb = tmp_scb->next)
|
|
|
|
|
{
|
|
|
|
|
if (tmp_scb->next != scb)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
tmp_scb->next = tmp_scb->next->next;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (scb);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
void
|
|
|
|
|
serial_close (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
do_serial_close (scb, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
serial_un_fdopen (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
do_serial_close (scb, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_readchar (serial_t scb, int timeout)
|
|
|
|
|
{
|
|
|
|
|
int ch;
|
|
|
|
|
|
1999-10-12 06:37:53 +02:00
|
|
|
|
/* FIXME: cagney/1999-10-11: Don't enable this check until the ASYNC
|
|
|
|
|
code is finished. */
|
|
|
|
|
if (0 && SERIAL_IS_ASYNC_P (scb) && timeout < 0)
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
|
|
|
|
"serial_readchar: blocking read in async mode");
|
1999-10-12 06:37:53 +02:00
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
ch = scb->ops->readchar (scb, timeout);
|
|
|
|
|
if (serial_logfp != NULL)
|
|
|
|
|
{
|
1999-10-06 01:13:56 +02:00
|
|
|
|
serial_logchar (serial_logfp, 'r', ch, timeout);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
/* Make sure that the log file is as up-to-date as possible,
|
|
|
|
|
in case we are getting ready to dump core or something. */
|
|
|
|
|
gdb_flush (serial_logfp);
|
|
|
|
|
}
|
1999-10-06 01:13:56 +02:00
|
|
|
|
if (SERIAL_DEBUG_P (scb))
|
|
|
|
|
{
|
|
|
|
|
fprintf_unfiltered (gdb_stdlog, "[");
|
|
|
|
|
serial_logchar (gdb_stdlog, 'r', ch, timeout);
|
|
|
|
|
fprintf_unfiltered (gdb_stdlog, "]");
|
|
|
|
|
gdb_flush (gdb_stdlog);
|
|
|
|
|
}
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
return (ch);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_write (serial_t scb, const char *str, int len)
|
|
|
|
|
{
|
|
|
|
|
if (serial_logfp != NULL)
|
|
|
|
|
{
|
|
|
|
|
int count;
|
|
|
|
|
|
|
|
|
|
for (count = 0; count < len; count++)
|
1999-10-06 01:13:56 +02:00
|
|
|
|
serial_logchar (serial_logfp, 'w', str[count] & 0xff, 0);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
/* Make sure that the log file is as up-to-date as possible,
|
|
|
|
|
in case we are getting ready to dump core or something. */
|
|
|
|
|
gdb_flush (serial_logfp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (scb->ops->write (scb, str, len));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
serial_printf (serial_t desc, const char *format,...)
|
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
char *buf;
|
|
|
|
|
va_start (args, format);
|
|
|
|
|
|
2000-12-15 13:04:03 +01:00
|
|
|
|
xvasprintf (&buf, format, args);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
SERIAL_WRITE (desc, buf, strlen (buf));
|
|
|
|
|
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (buf);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
va_end (args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_drain_output (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
return scb->ops->drain_output (scb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_flush_output (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
return scb->ops->flush_output (scb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_flush_input (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
return scb->ops->flush_input (scb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_send_break (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
if (serial_logfp != NULL)
|
1999-10-06 01:13:56 +02:00
|
|
|
|
serial_logchar (serial_logfp, 'w', SERIAL_BREAK, 0);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
return (scb->ops->send_break (scb));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
serial_raw (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
scb->ops->go_raw (scb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
serial_ttystate
|
|
|
|
|
serial_get_tty_state (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
return scb->ops->get_tty_state (scb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_set_tty_state (serial_t scb, serial_ttystate ttystate)
|
|
|
|
|
{
|
|
|
|
|
return scb->ops->set_tty_state (scb, ttystate);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
serial_print_tty_state (serial_t scb,
|
|
|
|
|
serial_ttystate ttystate,
|
2000-02-02 01:21:19 +01:00
|
|
|
|
struct ui_file *stream)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
{
|
|
|
|
|
scb->ops->print_tty_state (scb, ttystate, stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_noflush_set_tty_state (serial_t scb,
|
|
|
|
|
serial_ttystate new_ttystate,
|
|
|
|
|
serial_ttystate old_ttystate)
|
|
|
|
|
{
|
|
|
|
|
return scb->ops->noflush_set_tty_state (scb, new_ttystate, old_ttystate);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_setbaudrate (serial_t scb, int rate)
|
|
|
|
|
{
|
|
|
|
|
return scb->ops->setbaudrate (scb, rate);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_setstopbits (serial_t scb, int num)
|
|
|
|
|
{
|
|
|
|
|
return scb->ops->setstopbits (scb, num);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_can_async_p (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
return (scb->ops->async != NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_is_async_p (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
return (scb->ops->async != NULL) && (scb->async_handler != NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
serial_async (serial_t scb,
|
|
|
|
|
serial_event_ftype *handler,
|
|
|
|
|
void *context)
|
|
|
|
|
{
|
|
|
|
|
/* Only change mode if there is a need. */
|
|
|
|
|
if ((scb->async_handler == NULL)
|
|
|
|
|
!= (handler == NULL))
|
|
|
|
|
scb->ops->async (scb, handler != NULL);
|
|
|
|
|
scb->async_handler = handler;
|
|
|
|
|
scb->async_context = context;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
deprecated_serial_fd (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
/* FIXME: should this output a warning that deprecated code is being
|
|
|
|
|
called? */
|
|
|
|
|
if (scb->fd < 0)
|
|
|
|
|
{
|
2001-02-08 07:03:54 +01:00
|
|
|
|
internal_error (__FILE__, __LINE__,
|
|
|
|
|
"serial: FD not valid");
|
1999-09-22 05:28:34 +02:00
|
|
|
|
}
|
|
|
|
|
return scb->fd; /* sigh */
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
void
|
|
|
|
|
serial_debug (serial_t scb, int debug_p)
|
|
|
|
|
{
|
|
|
|
|
scb->debug_p = debug_p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
serial_debug_p (serial_t scb)
|
|
|
|
|
{
|
|
|
|
|
return scb->debug_p || global_serial_debug_p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#if 0
|
|
|
|
|
/*
|
1999-07-07 22:19:36 +02:00
|
|
|
|
The connect command is #if 0 because I hadn't thought of an elegant
|
|
|
|
|
way to wait for I/O on two serial_t's simultaneously. Two solutions
|
|
|
|
|
came to mind:
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
1) Fork, and have have one fork handle the to user direction,
|
|
|
|
|
and have the other hand the to target direction. This
|
|
|
|
|
obviously won't cut it for MSDOS.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
2) Use something like select. This assumes that stdin and
|
|
|
|
|
the target side can both be waited on via the same
|
|
|
|
|
mechanism. This may not be true for DOS, if GDB is
|
|
|
|
|
talking to the target via a TCP socket.
|
|
|
|
|
-grossman, 8 Jun 93
|
|
|
|
|
*/
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Connect the user directly to the remote system. This command acts just like
|
|
|
|
|
the 'cu' or 'tip' command. Use <CR>~. or <CR>~^D to break out. */
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
static serial_t tty_desc; /* Controlling terminal */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static void
|
1999-09-22 05:28:34 +02:00
|
|
|
|
cleanup_tty (serial_ttystate ttystate)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
printf_unfiltered ("\r\n[Exiting connect mode]\r\n");
|
|
|
|
|
SERIAL_SET_TTY_STATE (tty_desc, ttystate);
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (ttystate);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
SERIAL_CLOSE (tty_desc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1999-09-22 05:28:34 +02:00
|
|
|
|
connect_command (char *args, int fromtty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
char cur_esc = 0;
|
|
|
|
|
serial_ttystate ttystate;
|
|
|
|
|
serial_t port_desc; /* TTY port */
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
dont_repeat ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (args)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
fprintf_unfiltered (gdb_stderr, "This command takes no args. They have been ignored.\n");
|
|
|
|
|
|
|
|
|
|
printf_unfiltered ("[Entering connect mode. Use ~. or ~^D to escape]\n");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
tty_desc = SERIAL_FDOPEN (0);
|
|
|
|
|
port_desc = last_serial_opened;
|
|
|
|
|
|
|
|
|
|
ttystate = SERIAL_GET_TTY_STATE (tty_desc);
|
|
|
|
|
|
|
|
|
|
SERIAL_RAW (tty_desc);
|
|
|
|
|
SERIAL_RAW (port_desc);
|
|
|
|
|
|
|
|
|
|
make_cleanup (cleanup_tty, ttystate);
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
int mask;
|
|
|
|
|
|
|
|
|
|
mask = SERIAL_WAIT_2 (tty_desc, port_desc, -1);
|
|
|
|
|
|
|
|
|
|
if (mask & 2)
|
|
|
|
|
{ /* tty input */
|
|
|
|
|
char cx;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
c = SERIAL_READCHAR (tty_desc, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (c == SERIAL_TIMEOUT)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (c < 0)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
perror_with_name ("connect");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
cx = c;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
SERIAL_WRITE (port_desc, &cx, 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
switch (cur_esc)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
if (c == '\r')
|
|
|
|
|
cur_esc = c;
|
|
|
|
|
break;
|
|
|
|
|
case '\r':
|
|
|
|
|
if (c == '~')
|
|
|
|
|
cur_esc = c;
|
|
|
|
|
else
|
|
|
|
|
cur_esc = 0;
|
|
|
|
|
break;
|
|
|
|
|
case '~':
|
|
|
|
|
if (c == '.' || c == '\004')
|
|
|
|
|
return;
|
|
|
|
|
else
|
|
|
|
|
cur_esc = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mask & 1)
|
|
|
|
|
{ /* Port input */
|
|
|
|
|
char cx;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
c = SERIAL_READCHAR (port_desc, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (c == SERIAL_TIMEOUT)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
break;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (c < 0)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
perror_with_name ("connect");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
cx = c;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
SERIAL_WRITE (tty_desc, &cx, 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif /* 0 */
|
|
|
|
|
|
|
|
|
|
void
|
1999-09-22 05:28:34 +02:00
|
|
|
|
_initialize_serial (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
#if 0
|
|
|
|
|
add_com ("connect", class_obscure, connect_command,
|
|
|
|
|
"Connect the terminal directly up to the command monitor.\n\
|
|
|
|
|
Use <CR>~. or <CR>~^D to break out.");
|
|
|
|
|
#endif /* 0 */
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
add_show_from_set
|
1999-04-16 03:35:26 +02:00
|
|
|
|
(add_set_cmd ("remotelogfile", no_class,
|
|
|
|
|
var_filename, (char *) &serial_logfile,
|
|
|
|
|
"Set filename for remote session recording.\n\
|
|
|
|
|
This file is used to record the remote session for future playback\n\
|
1999-07-07 22:19:36 +02:00
|
|
|
|
by gdbserver.",
|
1999-04-16 03:35:26 +02:00
|
|
|
|
&setlist),
|
|
|
|
|
&showlist);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
add_show_from_set
|
1999-04-16 03:35:26 +02:00
|
|
|
|
(add_set_enum_cmd ("remotelogbase", no_class,
|
2000-05-16 05:03:13 +02:00
|
|
|
|
logbase_enums, &serial_logbase,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
"Set numerical base for remote session logging",
|
|
|
|
|
&setlist),
|
|
|
|
|
&showlist);
|
1999-10-06 01:13:56 +02:00
|
|
|
|
|
2000-03-28 04:25:14 +02:00
|
|
|
|
add_show_from_set (add_set_cmd ("serial",
|
1999-10-06 01:13:56 +02:00
|
|
|
|
class_maintenance,
|
|
|
|
|
var_zinteger,
|
|
|
|
|
(char *)&global_serial_debug_p,
|
|
|
|
|
"Set serial debugging.\n\
|
2000-03-28 04:25:14 +02:00
|
|
|
|
When non-zero, serial port debugging is enabled.", &setdebuglist),
|
|
|
|
|
&showdebuglist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|