gdb/serial.h - gdb

Data types defined

Macros defined

Source code

  1. /* Remote serial support interface definitions for GDB, the GNU Debugger.
  2.    Copyright (C) 1992-2015 Free Software Foundation, Inc.

  3.    This file is part of GDB.

  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. #ifndef SERIAL_H
  15. #define SERIAL_H

  16. #ifdef USE_WIN32API
  17. #include <winsock2.h>
  18. #include <windows.h>
  19. #endif

  20. struct ui_file;

  21. /* For most routines, if a failure is indicated, then errno should be
  22.    examined.  */

  23. /* Terminal state pointer.  This is specific to each type of
  24.    interface.  */

  25. typedef void *serial_ttystate;
  26. struct serial;

  27. /* Try to open NAME.  Returns a new `struct serial *' on success, NULL
  28.    on failure.  The new serial object has a reference count of 1.
  29.    Note that some open calls can block and, if possible, should be
  30.    written to be non-blocking, with calls to ui_look_hook so they can
  31.    be cancelled.  An async interface for open could be added to GDB if
  32.    necessary.  */

  33. extern struct serial *serial_open (const char *name);

  34. /* Returns true if SCB is open.  */

  35. extern int serial_is_open (struct serial *scb);

  36. /* Find an already opened serial stream using a file handle.  */

  37. extern struct serial *serial_for_fd (int fd);

  38. /* Open a new serial stream using a file handle.  */

  39. extern struct serial *serial_fdopen (const int fd);

  40. /* Push out all buffers, close the device and unref SCB.  */

  41. extern void serial_close (struct serial *scb);

  42. /* Increment reference count of SCB.  */

  43. extern void serial_ref (struct serial *scb);

  44. /* Decrement reference count of SCB.  */

  45. extern void serial_unref (struct serial *scb);

  46. /* Create a pipe, and put the read end in files[0], and the write end
  47.    in filde[1].  Returns 0 for success, negative value for error (in
  48.    which case errno contains the error).  */

  49. extern int gdb_pipe (int fildes[2]);

  50. /* Create a pipe with each end wrapped in a `struct serial' interface.
  51.    Put the read end in scbs[0], and the write end in scbs[1].  Returns
  52.    0 for success, negative value for error (in which case errno
  53.    contains the error).  */

  54. extern int serial_pipe (struct serial *scbs[2]);

  55. /* Push out all buffers and destroy SCB without closing the device.  */

  56. extern void serial_un_fdopen (struct serial *scb);

  57. /* Read one char from the serial device with TIMEOUT seconds to wait
  58.    or -1 to wait forever.  Use timeout of 0 to effect a poll.
  59.    Infinite waits are not permitted.  Returns unsigned char if ok, else
  60.    one of the following codes.  Note that all error return-codes are
  61.    guaranteed to be < 0.  */

  62. enum serial_rc {
  63.   SERIAL_ERROR = -1,        /* General error.  */
  64.   SERIAL_TIMEOUT = -2,        /* Timeout or data-not-ready during read.
  65.                            Unfortunately, through
  66.                            deprecated_ui_loop_hook (), this can also
  67.                            be a QUIT indication.  */
  68.   SERIAL_EOF = -3        /* General end-of-file or remote target
  69.                            connection closed, indication.  Includes
  70.                            things like the line dropping dead.  */
  71. };

  72. extern int serial_readchar (struct serial *scb, int timeout);

  73. /* Write COUNT bytes from BUF to the port SCB.  Returns 0 for
  74.    success, non-zero for failure.  */

  75. extern int serial_write (struct serial *scb, const void *buf, size_t count);

  76. /* Write a printf style string onto the serial port.  */

  77. extern void serial_printf (struct serial *desc,
  78.                            const char *,...) ATTRIBUTE_PRINTF (2, 3);

  79. /* Allow pending output to drain.  */

  80. extern int serial_drain_output (struct serial *);

  81. /* Flush (discard) pending output.  Might also flush input (if this
  82.    system can't flush only output).  */

  83. extern int serial_flush_output (struct serial *);

  84. /* Flush pending input.  Might also flush output (if this system can't
  85.    flush only input).  */

  86. extern int serial_flush_input (struct serial *);

  87. /* Send a break between 0.25 and 0.5 seconds long.  */

  88. extern int serial_send_break (struct serial *scb);

  89. /* Turn the port into raw mode.  */

  90. extern void serial_raw (struct serial *scb);

  91. /* Return a pointer to a newly malloc'd ttystate containing the state
  92.    of the tty.  */

  93. extern serial_ttystate serial_get_tty_state (struct serial *scb);

  94. /* Return a pointer to a newly malloc'd ttystate containing a copy
  95.    of the state in TTYSTATE.  */

  96. extern serial_ttystate serial_copy_tty_state (struct serial *scb,
  97.                                               serial_ttystate ttystate);

  98. /* Set the state of the tty to TTYSTATE.  The change is immediate.
  99.    When changing to or from raw mode, input might be discarded.
  100.    Returns 0 for success, negative value for error (in which case
  101.    errno contains the error).  */

  102. extern int serial_set_tty_state (struct serial *scb, serial_ttystate ttystate);

  103. /* printf_filtered a user-comprehensible description of ttystate on
  104.    the specified STREAM.  FIXME: At present this sends output to the
  105.    default stream - GDB_STDOUT.  */

  106. extern void serial_print_tty_state (struct serial *scb,
  107.                                     serial_ttystate ttystate,
  108.                                     struct ui_file *);

  109. /* Set the tty state to NEW_TTYSTATE, where OLD_TTYSTATE is the
  110.    current state (generally obtained from a recent call to
  111.    serial_get_tty_state()), but be careful not to discard any input.
  112.    This means that we never switch in or out of raw mode, even if
  113.    NEW_TTYSTATE specifies a switch.  */

  114. extern int serial_noflush_set_tty_state (struct serial *scb,
  115.                                          serial_ttystate new_ttystate,
  116.                                          serial_ttystate old_ttystate);

  117. /* Set the baudrate to the decimal value supplied.  Returns 0 for
  118.    success, -1 for failure.  */

  119. extern int serial_setbaudrate (struct serial *scb, int rate);

  120. /* Set the number of stop bits to the value specified.  Returns 0 for
  121.    success, -1 for failure.  */

  122. #define SERIAL_1_STOPBITS 1
  123. #define SERIAL_1_AND_A_HALF_STOPBITS 2        /* 1.5 bits, snicker...  */
  124. #define SERIAL_2_STOPBITS 3

  125. extern int serial_setstopbits (struct serial *scb, int num);

  126. /* Asynchronous serial interface: */

  127. /* Can the serial device support asynchronous mode?  */

  128. extern int serial_can_async_p (struct serial *scb);

  129. /* Has the serial device been put in asynchronous mode?  */

  130. extern int serial_is_async_p (struct serial *scb);

  131. /* For ASYNC enabled devices, register a callback and enable
  132.    asynchronous mode.  To disable asynchronous mode, register a NULL
  133.    callback.  */

  134. typedef void (serial_event_ftype) (struct serial *scb, void *context);
  135. extern void serial_async (struct serial *scb,
  136.                           serial_event_ftype *handler, void *context);

  137. /* Trace/debug mechanism.

  138.    serial_debug() enables/disables internal debugging.
  139.    serial_debug_p() indicates the current debug state.  */

  140. extern void serial_debug (struct serial *scb, int debug_p);

  141. extern int serial_debug_p (struct serial *scb);


  142. /* Details of an instance of a serial object.  */

  143. struct serial
  144.   {
  145.     /* serial objects are ref counted (but not the underlying
  146.        connection, just the object's lifetime in memory).  */
  147.     int refcnt;

  148.     int fd;                        /* File descriptor */
  149.     /* File descriptor for a separate error stream that should be
  150.        immediately forwarded to gdb_stderr.  This may be -1.
  151.        If != -1, this descriptor should be non-blocking or
  152.        ops->avail should be non-NULL.  */
  153.     int error_fd;
  154.     const struct serial_ops *ops; /* Function vector */
  155.     void *state;                       /* Local context info for open FD */
  156.     serial_ttystate ttystate;        /* Not used (yet) */
  157.     int bufcnt;                        /* Amount of data remaining in receive
  158.                                    buffer.  -ve for sticky errors.  */
  159.     unsigned char *bufp;        /* Current byte */
  160.     unsigned char buf[BUFSIZ];        /* Da buffer itself */
  161.     int current_timeout;        /* (ser-unix.c termio{,s} only), last
  162.                                    value of VTIME */
  163.     int timeout_remaining;        /* (ser-unix.c termio{,s} only), we
  164.                                    still need to wait for this many
  165.                                    more seconds.  */
  166.     char *name;                        /* The name of the device or host */
  167.     struct serial *next;        /* Pointer to the next `struct serial *' */
  168.     int debug_p;                /* Trace this serial devices operation.  */
  169.     int async_state;                /* Async internal state.  */
  170.     void *async_context;        /* Async event thread's context */
  171.     serial_event_ftype *async_handler;/* Async event handler */
  172.   };

  173. struct serial_ops
  174.   {
  175.     char *name;
  176.     int (*open) (struct serial *, const char *name);
  177.     void (*close) (struct serial *);
  178.     int (*fdopen) (struct serial *, int fd);
  179.     int (*readchar) (struct serial *, int timeout);
  180.     int (*write) (struct serial *, const void *buf, size_t count);
  181.     /* Discard pending output */
  182.     int (*flush_output) (struct serial *);
  183.     /* Discard pending input */
  184.     int (*flush_input) (struct serial *);
  185.     int (*send_break) (struct serial *);
  186.     void (*go_raw) (struct serial *);
  187.     serial_ttystate (*get_tty_state) (struct serial *);
  188.     serial_ttystate (*copy_tty_state) (struct serial *, serial_ttystate);
  189.     int (*set_tty_state) (struct serial *, serial_ttystate);
  190.     void (*print_tty_state) (struct serial *, serial_ttystate,
  191.                              struct ui_file *);
  192.     int (*noflush_set_tty_state) (struct serial *, serial_ttystate,
  193.                                   serial_ttystate);
  194.     int (*setbaudrate) (struct serial *, int rate);
  195.     int (*setstopbits) (struct serial *, int num);
  196.     /* Wait for output to drain.  */
  197.     int (*drain_output) (struct serial *);
  198.     /* Change the serial device into/out of asynchronous mode, call
  199.        the specified function when ever there is something
  200.        interesting.  */
  201.     void (*async) (struct serial *scb, int async_p);
  202.     /* Perform a low-level read operation, reading (at most) COUNT
  203.        bytes into SCB->BUF.  Return zero at end of file.  */
  204.     int (*read_prim)(struct serial *scb, size_t count);
  205.     /* Perform a low-level write operation, writing (at most) COUNT
  206.        bytes from BUF.  */
  207.     int (*write_prim)(struct serial *scb, const void *buf, size_t count);
  208.     /* Return that number of bytes that can be read from FD
  209.        without blocking.  Return value of -1 means that the
  210.        read will not block even if less that requested bytes
  211.        are available.  */
  212.     int (*avail)(struct serial *scb, int fd);

  213. #ifdef USE_WIN32API
  214.     /* Return a handle to wait on, indicating available data from SCB
  215.        when signaled, in *READ.  Return a handle indicating errors
  216.        in *EXCEPT.  */
  217.     void (*wait_handle) (struct serial *scb, HANDLE *read, HANDLE *except);
  218.     void (*done_wait_handle) (struct serial *scb);
  219. #endif /* USE_WIN32API */
  220.   };

  221. /* Add a new serial interface to the interface list.  */

  222. extern void serial_add_interface (const struct serial_ops * optable);

  223. /* File in which to record the remote debugging session.  */

  224. extern void serial_log_command (struct target_ops *self, const char *);

  225. #ifdef USE_WIN32API

  226. /* Windows-only: find or create handles that we can wait on for this
  227.    serial device.  */
  228. extern void serial_wait_handle (struct serial *, HANDLE *, HANDLE *);

  229. /* Windows-only: signal that we are done with the wait handles.  */
  230. extern void serial_done_wait_handle (struct serial *);

  231. #endif /* USE_WIN32API */

  232. #endif /* SERIAL_H */