X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fserial.c;h=7471a6b5ab53073f5b6ff63a1e6f17c3ee2e6ab4;hb=40c1a0073715c1e3f93afc83edac8396eb362a98;hp=c1f331d769912c869e5d71d3cfacae87f24f4999;hpb=d5ad6aa5ce9ef3812c344bfebfb27bda36d8cb46;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/serial.c b/gdb/serial.c index c1f331d769..7471a6b5ab 100644 --- a/gdb/serial.c +++ b/gdb/serial.c @@ -1,6 +1,6 @@ /* Generic serial interface routines - Copyright (C) 1992-2002, 2004-2012 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of GDB. @@ -20,18 +20,26 @@ #include "defs.h" #include #include "serial.h" -#include "gdb_string.h" +#include #include "gdbcmd.h" +#include "cli/cli-utils.h" extern void _initialize_serial (void); /* Is serial being debugged? */ -static int global_serial_debug_p; +static unsigned int global_serial_debug_p; -/* Linked list of serial I/O handlers. */ +typedef const struct serial_ops *serial_ops_p; +DEF_VEC_P (serial_ops_p); -static struct serial_ops *serial_ops_list = NULL; +/* Serial I/O handlers. */ + +VEC (serial_ops_p) *serial_ops_list = NULL; + +/* Pointer to list of scb's. */ + +static struct serial *scb_base; /* Non-NULL gives filename which contains a recording of the remote session, suitable for playback by gdbserver. */ @@ -39,7 +47,7 @@ static struct serial_ops *serial_ops_list = NULL; static char *serial_logfile = NULL; static struct ui_file *serial_logfp = NULL; -static struct serial_ops *serial_interface_lookup (const char *); +static const struct serial_ops *serial_interface_lookup (const char *); static void serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout); static const char logbase_hex[] = "hex"; @@ -122,7 +130,7 @@ serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout) } void -serial_log_command (const char *cmd) +serial_log_command (struct target_ops *self, const char *cmd) { if (!serial_logfp) return; @@ -138,12 +146,13 @@ serial_log_command (const char *cmd) } -static struct serial_ops * +static const struct serial_ops * serial_interface_lookup (const char *name) { - struct serial_ops *ops; + const struct serial_ops *ops; + int i; - for (ops = serial_ops_list; ops; ops = ops->next) + for (i = 0; VEC_iterate (serial_ops_p, serial_ops_list, i, ops); ++i) if (strcmp (name, ops->name) == 0) return ops; @@ -151,10 +160,24 @@ serial_interface_lookup (const char *name) } void -serial_add_interface (struct serial_ops *optable) +serial_add_interface (const struct serial_ops *optable) +{ + VEC_safe_push (serial_ops_p, serial_ops_list, optable); +} + +/* Return the open serial device for FD, if found, or NULL if FD is + not already opened. */ + +struct serial * +serial_for_fd (int fd) { - optable->next = serial_ops_list; - serial_ops_list = optable; + struct serial *scb; + + for (scb = scb_base; scb; scb = scb->next) + if (scb->fd == fd) + return scb; + + return NULL; } /* Open up a device or a network socket, depending upon the syntax of NAME. */ @@ -163,7 +186,7 @@ struct serial * serial_open (const char *name) { struct serial *scb; - struct serial_ops *ops; + const struct serial_ops *ops; const char *open_name = name; if (strcmp (name, "pc") == 0) @@ -175,8 +198,7 @@ serial_open (const char *name) ops = serial_interface_lookup ("pipe"); /* Discard ``|'' and any space before the command itself. */ ++open_name; - while (isspace (*open_name)) - ++open_name; + open_name = skip_spaces_const (open_name); } /* Check for a colon, suggesting an IP address/port pair. Do this *after* checking for all the interesting prefixes. We @@ -189,13 +211,14 @@ serial_open (const char *name) if (!ops) return NULL; - scb = XMALLOC (struct serial); + scb = XNEW (struct serial); scb->ops = ops; scb->bufcnt = 0; scb->bufp = scb->buf; scb->error_fd = -1; + scb->refcnt = 1; /* `...->open (...)' would get expanded by the open(2) syscall macro. */ if ((*scb->ops->open) (scb, open_name)) @@ -205,10 +228,12 @@ serial_open (const char *name) } scb->name = xstrdup (name); + scb->next = scb_base; scb->debug_p = 0; scb->async_state = 0; scb->async_handler = NULL; scb->async_context = NULL; + scb_base = scb; if (serial_logfile != NULL) { @@ -224,7 +249,7 @@ serial_open (const char *name) interface ops OPS. */ static struct serial * -serial_fdopen_ops (const int fd, struct serial_ops *ops) +serial_fdopen_ops (const int fd, const struct serial_ops *ops) { struct serial *scb; @@ -238,19 +263,22 @@ serial_fdopen_ops (const int fd, struct serial_ops *ops) if (!ops) return NULL; - scb = XCALLOC (1, struct serial); + scb = XCNEW (struct serial); scb->ops = ops; scb->bufcnt = 0; scb->bufp = scb->buf; scb->error_fd = -1; + scb->refcnt = 1; scb->name = NULL; + scb->next = scb_base; scb->debug_p = 0; scb->async_state = 0; scb->async_handler = NULL; scb->async_context = NULL; + scb_base = scb; if ((ops->fdopen) != NULL) (*ops->fdopen) (scb, fd); @@ -291,7 +319,22 @@ do_serial_close (struct serial *scb, int really_close) if (scb->name) xfree (scb->name); - xfree (scb); + /* For serial_is_open. */ + scb->bufp = NULL; + + 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; + } + + serial_unref (scb); } void @@ -306,6 +349,26 @@ serial_un_fdopen (struct serial *scb) do_serial_close (scb, 0); } +int +serial_is_open (struct serial *scb) +{ + return scb->bufp != NULL; +} + +void +serial_ref (struct serial *scb) +{ + scb->refcnt++; +} + +void +serial_unref (struct serial *scb) +{ + --scb->refcnt; + if (scb->refcnt == 0) + xfree (scb); +} + int serial_readchar (struct serial *scb, int timeout) { @@ -338,14 +401,15 @@ serial_readchar (struct serial *scb, int timeout) } int -serial_write (struct serial *scb, const char *str, int len) +serial_write (struct serial *scb, const void *buf, size_t count) { if (serial_logfp != NULL) { - int count; + const char *str = buf; + size_t c; - for (count = 0; count < len; count++) - serial_logchar (serial_logfp, 'w', str[count] & 0xff, 0); + for (c = 0; c < count; c++) + serial_logchar (serial_logfp, 'w', str[c] & 0xff, 0); /* Make sure that the log file is as up-to-date as possible, in case we are getting ready to dump core or something. */ @@ -353,9 +417,10 @@ serial_write (struct serial *scb, const char *str, int len) } if (serial_debug_p (scb)) { - int count; + const char *str = buf; + size_t c; - for (count = 0; count < len; count++) + for (c = 0; c < count; c++) { fprintf_unfiltered (gdb_stdlog, "["); serial_logchar (gdb_stdlog, 'w', str[count] & 0xff, 0); @@ -364,7 +429,7 @@ serial_write (struct serial *scb, const char *str, int len) gdb_flush (gdb_stdlog); } - return (scb->ops->write (scb, str, len)); + return (scb->ops->write (scb, buf, count)); } void @@ -486,19 +551,6 @@ serial_async (struct serial *scb, scb->ops->async (scb, handler != NULL); } -int -deprecated_serial_fd (struct serial *scb) -{ - /* FIXME: should this output a warning that deprecated code is being - called? */ - if (scb->fd < 0) - { - internal_error (__FILE__, __LINE__, - _("serial: FD not valid")); - } - return scb->fd; /* sigh */ -} - void serial_debug (struct serial *scb, int debug_p) { @@ -535,7 +587,7 @@ serial_done_wait_handle (struct serial *scb) int serial_pipe (struct serial *scbs[2]) { - struct serial_ops *ops; + const struct serial_ops *ops; int fildes[2]; ops = serial_interface_lookup ("pipe"); @@ -572,6 +624,20 @@ serial_show_cmd (char *args, int from_tty) cmd_show_list (serial_show_cmdlist, from_tty, ""); } +/* Baud rate specified for talking to serial target systems. Default + is left as -1, so targets can choose their own defaults. */ +/* FIXME: This means that "show serial baud" and gr_files_info can + print -1 or (unsigned int)-1. This is a Bad User Interface. */ + +int baud_rate = -1; + +static void +serial_baud_show_cmd (struct ui_file *file, int from_tty, + struct cmd_list_element *c, const char *value) +{ + fprintf_filtered (file, _("Baud rate for remote serial I/O is %s.\n"), + value); +} void _initialize_serial (void) @@ -594,6 +660,45 @@ Show default serial/parallel port configuration."), 0/*allow-unknown*/, &showlist); + /* If target is open when baud changes, it doesn't take effect until + the next open (I think, not sure). */ + add_setshow_zinteger_cmd ("baud", no_class, &baud_rate, _("\ +Set baud rate for remote serial I/O."), _("\ +Show baud rate for remote serial I/O."), _("\ +This value is used to set the speed of the serial port when debugging\n\ +using remote targets."), + NULL, + serial_baud_show_cmd, + &serial_set_cmdlist, &serial_show_cmdlist); + + /* The commands "set/show serial baud" used to have a different name. + Add aliases to those names to facilitate the transition, and mark + them as deprecated, in order to make users aware of the fact that + the command names have been changed. */ + { + const char *cmd_name; + struct cmd_list_element *cmd; + + /* FIXME: There is a limitation in the deprecation mechanism, + and the warning ends up not being displayed for prefixed + aliases. So use a real command instead of an alias. */ + add_setshow_zinteger_cmd ("remotebaud", class_alias, &baud_rate, _("\ +Set baud rate for remote serial I/O."), _("\ +Show baud rate for remote serial I/O."), _("\ +This value is used to set the speed of the serial port when debugging\n\ +using remote targets."), + NULL, + serial_baud_show_cmd, + &setlist, &showlist); + cmd_name = "remotebaud"; + cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1); + deprecate_cmd (cmd, "set serial baud"); + cmd_name + = "remotebaud"; /* needed because lookup_cmd updates the pointer */ + cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1); + deprecate_cmd (cmd, "show serial baud"); + } + add_setshow_filename_cmd ("remotelogfile", no_class, &serial_logfile, _("\ Set filename for remote session recording."), _("\ Show filename for remote session recording."), _("\ @@ -611,12 +716,12 @@ Show numerical base for remote session logging"), NULL, NULL, /* FIXME: i18n: */ &setlist, &showlist); - add_setshow_zinteger_cmd ("serial", class_maintenance, - &global_serial_debug_p, _("\ + add_setshow_zuinteger_cmd ("serial", class_maintenance, + &global_serial_debug_p, _("\ Set serial debugging."), _("\ Show serial debugging."), _("\ When non-zero, serial port debugging is enabled."), - NULL, - NULL, /* FIXME: i18n: */ - &setdebuglist, &showdebuglist); + NULL, + NULL, /* FIXME: i18n: */ + &setdebuglist, &showdebuglist); }