Home | History | Annotate | Line # | Download | only in gdb
ser-mingw.c revision 1.5
      1  1.1  christos /* Serial interface for local (hardwired) serial ports on Windows systems
      2  1.1  christos 
      3  1.3  christos    Copyright (C) 2006-2015 Free Software Foundation, Inc.
      4  1.1  christos 
      5  1.1  christos    This file is part of GDB.
      6  1.1  christos 
      7  1.1  christos    This program is free software; you can redistribute it and/or modify
      8  1.1  christos    it under the terms of the GNU General Public License as published by
      9  1.1  christos    the Free Software Foundation; either version 3 of the License, or
     10  1.1  christos    (at your option) any later version.
     11  1.1  christos 
     12  1.1  christos    This program is distributed in the hope that it will be useful,
     13  1.1  christos    but WITHOUT ANY WARRANTY; without even the implied warranty of
     14  1.1  christos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15  1.1  christos    GNU General Public License for more details.
     16  1.1  christos 
     17  1.1  christos    You should have received a copy of the GNU General Public License
     18  1.1  christos    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
     19  1.1  christos 
     20  1.1  christos #include "defs.h"
     21  1.1  christos #include "serial.h"
     22  1.1  christos #include "ser-base.h"
     23  1.1  christos #include "ser-tcp.h"
     24  1.1  christos 
     25  1.1  christos #include <windows.h>
     26  1.1  christos #include <conio.h>
     27  1.1  christos 
     28  1.1  christos #include <fcntl.h>
     29  1.1  christos #include <unistd.h>
     30  1.1  christos #include <sys/types.h>
     31  1.1  christos 
     32  1.1  christos #include "command.h"
     33  1.1  christos 
     34  1.1  christos void _initialize_ser_windows (void);
     35  1.1  christos 
     36  1.1  christos struct ser_windows_state
     37  1.1  christos {
     38  1.1  christos   int in_progress;
     39  1.1  christos   OVERLAPPED ov;
     40  1.1  christos   DWORD lastCommMask;
     41  1.1  christos   HANDLE except_event;
     42  1.1  christos };
     43  1.1  christos 
     44  1.1  christos /* CancelIo is not available for Windows 95 OS, so we need to use
     45  1.1  christos    LoadLibrary/GetProcAddress to avoid a startup failure.  */
     46  1.1  christos #define CancelIo dyn_CancelIo
     47  1.1  christos static BOOL WINAPI (*CancelIo) (HANDLE);
     48  1.1  christos 
     49  1.1  christos /* Open up a real live device for serial I/O.  */
     50  1.1  christos 
     51  1.1  christos static int
     52  1.1  christos ser_windows_open (struct serial *scb, const char *name)
     53  1.1  christos {
     54  1.1  christos   HANDLE h;
     55  1.1  christos   struct ser_windows_state *state;
     56  1.1  christos   COMMTIMEOUTS timeouts;
     57  1.1  christos 
     58  1.1  christos   h = CreateFile (name, GENERIC_READ | GENERIC_WRITE, 0, NULL,
     59  1.1  christos 		  OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL);
     60  1.1  christos   if (h == INVALID_HANDLE_VALUE)
     61  1.1  christos     {
     62  1.1  christos       errno = ENOENT;
     63  1.1  christos       return -1;
     64  1.1  christos     }
     65  1.1  christos 
     66  1.1  christos   scb->fd = _open_osfhandle ((intptr_t) h, O_RDWR);
     67  1.1  christos   if (scb->fd < 0)
     68  1.1  christos     {
     69  1.1  christos       errno = ENOENT;
     70  1.1  christos       return -1;
     71  1.1  christos     }
     72  1.1  christos 
     73  1.1  christos   if (!SetCommMask (h, EV_RXCHAR))
     74  1.1  christos     {
     75  1.1  christos       errno = EINVAL;
     76  1.1  christos       return -1;
     77  1.1  christos     }
     78  1.1  christos 
     79  1.1  christos   timeouts.ReadIntervalTimeout = MAXDWORD;
     80  1.1  christos   timeouts.ReadTotalTimeoutConstant = 0;
     81  1.1  christos   timeouts.ReadTotalTimeoutMultiplier = 0;
     82  1.1  christos   timeouts.WriteTotalTimeoutConstant = 0;
     83  1.1  christos   timeouts.WriteTotalTimeoutMultiplier = 0;
     84  1.1  christos   if (!SetCommTimeouts (h, &timeouts))
     85  1.1  christos     {
     86  1.1  christos       errno = EINVAL;
     87  1.1  christos       return -1;
     88  1.1  christos     }
     89  1.1  christos 
     90  1.1  christos   state = xmalloc (sizeof (struct ser_windows_state));
     91  1.1  christos   memset (state, 0, sizeof (struct ser_windows_state));
     92  1.1  christos   scb->state = state;
     93  1.1  christos 
     94  1.1  christos   /* Create a manual reset event to watch the input buffer.  */
     95  1.1  christos   state->ov.hEvent = CreateEvent (0, TRUE, FALSE, 0);
     96  1.1  christos 
     97  1.1  christos   /* Create a (currently unused) handle to record exceptions.  */
     98  1.1  christos   state->except_event = CreateEvent (0, TRUE, FALSE, 0);
     99  1.1  christos 
    100  1.1  christos   return 0;
    101  1.1  christos }
    102  1.1  christos 
    103  1.1  christos /* Wait for the output to drain away, as opposed to flushing (discarding)
    104  1.1  christos    it.  */
    105  1.1  christos 
    106  1.1  christos static int
    107  1.1  christos ser_windows_drain_output (struct serial *scb)
    108  1.1  christos {
    109  1.1  christos   HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
    110  1.1  christos 
    111  1.1  christos   return (FlushFileBuffers (h) != 0) ? 0 : -1;
    112  1.1  christos }
    113  1.1  christos 
    114  1.1  christos static int
    115  1.1  christos ser_windows_flush_output (struct serial *scb)
    116  1.1  christos {
    117  1.1  christos   HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
    118  1.1  christos 
    119  1.1  christos   return (PurgeComm (h, PURGE_TXCLEAR) != 0) ? 0 : -1;
    120  1.1  christos }
    121  1.1  christos 
    122  1.1  christos static int
    123  1.1  christos ser_windows_flush_input (struct serial *scb)
    124  1.1  christos {
    125  1.1  christos   HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
    126  1.1  christos 
    127  1.1  christos   return (PurgeComm (h, PURGE_RXCLEAR) != 0) ? 0 : -1;
    128  1.1  christos }
    129  1.1  christos 
    130  1.1  christos static int
    131  1.1  christos ser_windows_send_break (struct serial *scb)
    132  1.1  christos {
    133  1.1  christos   HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
    134  1.1  christos 
    135  1.1  christos   if (SetCommBreak (h) == 0)
    136  1.1  christos     return -1;
    137  1.1  christos 
    138  1.1  christos   /* Delay for 250 milliseconds.  */
    139  1.1  christos   Sleep (250);
    140  1.1  christos 
    141  1.1  christos   if (ClearCommBreak (h))
    142  1.1  christos     return -1;
    143  1.1  christos 
    144  1.1  christos   return 0;
    145  1.1  christos }
    146  1.1  christos 
    147  1.1  christos static void
    148  1.1  christos ser_windows_raw (struct serial *scb)
    149  1.1  christos {
    150  1.1  christos   HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
    151  1.1  christos   DCB state;
    152  1.1  christos 
    153  1.1  christos   if (GetCommState (h, &state) == 0)
    154  1.1  christos     return;
    155  1.1  christos 
    156  1.1  christos   state.fOutxCtsFlow = FALSE;
    157  1.1  christos   state.fOutxDsrFlow = FALSE;
    158  1.1  christos   state.fDtrControl = DTR_CONTROL_ENABLE;
    159  1.1  christos   state.fDsrSensitivity = FALSE;
    160  1.1  christos   state.fOutX = FALSE;
    161  1.1  christos   state.fInX = FALSE;
    162  1.1  christos   state.fNull = FALSE;
    163  1.1  christos   state.fAbortOnError = FALSE;
    164  1.1  christos   state.ByteSize = 8;
    165  1.1  christos 
    166  1.1  christos   scb->current_timeout = 0;
    167  1.1  christos 
    168  1.1  christos   if (SetCommState (h, &state) == 0)
    169  1.1  christos     warning (_("SetCommState failed"));
    170  1.1  christos }
    171  1.1  christos 
    172  1.1  christos static int
    173  1.1  christos ser_windows_setstopbits (struct serial *scb, int num)
    174  1.1  christos {
    175  1.1  christos   HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
    176  1.1  christos   DCB state;
    177  1.1  christos 
    178  1.1  christos   if (GetCommState (h, &state) == 0)
    179  1.1  christos     return -1;
    180  1.1  christos 
    181  1.1  christos   switch (num)
    182  1.1  christos     {
    183  1.1  christos     case SERIAL_1_STOPBITS:
    184  1.1  christos       state.StopBits = ONESTOPBIT;
    185  1.1  christos       break;
    186  1.1  christos     case SERIAL_1_AND_A_HALF_STOPBITS:
    187  1.1  christos       state.StopBits = ONE5STOPBITS;
    188  1.1  christos       break;
    189  1.1  christos     case SERIAL_2_STOPBITS:
    190  1.1  christos       state.StopBits = TWOSTOPBITS;
    191  1.1  christos       break;
    192  1.1  christos     default:
    193  1.1  christos       return 1;
    194  1.1  christos     }
    195  1.1  christos 
    196  1.1  christos   return (SetCommState (h, &state) != 0) ? 0 : -1;
    197  1.1  christos }
    198  1.1  christos 
    199  1.5  christos /* Implement the "setparity" serial_ops callback.  */
    200  1.5  christos 
    201  1.5  christos static int
    202  1.5  christos ser_windows_setparity (struct serial *scb, int parity)
    203  1.5  christos {
    204  1.5  christos   HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
    205  1.5  christos   DCB state;
    206  1.5  christos 
    207  1.5  christos   if (GetCommState (h, &state) == 0)
    208  1.5  christos     return -1;
    209  1.5  christos 
    210  1.5  christos   switch (parity)
    211  1.5  christos     {
    212  1.5  christos     case GDBPARITY_NONE:
    213  1.5  christos       state.Parity = NOPARITY;
    214  1.5  christos       state.fParity = FALSE;
    215  1.5  christos       break;
    216  1.5  christos     case GDBPARITY_ODD:
    217  1.5  christos       state.Parity = ODDPARITY;
    218  1.5  christos       state.fParity = TRUE;
    219  1.5  christos       break;
    220  1.5  christos     case GDBPARITY_EVEN:
    221  1.5  christos       state.Parity = EVENPARITY;
    222  1.5  christos       state.fParity = TRUE;
    223  1.5  christos       break;
    224  1.5  christos     default:
    225  1.5  christos       internal_warning (__FILE__, __LINE__,
    226  1.5  christos 			"Incorrect parity value: %d", parity);
    227  1.5  christos       return -1;
    228  1.5  christos     }
    229  1.5  christos 
    230  1.5  christos   return (SetCommState (h, &state) != 0) ? 0 : -1;
    231  1.5  christos }
    232  1.5  christos 
    233  1.1  christos static int
    234  1.1  christos ser_windows_setbaudrate (struct serial *scb, int rate)
    235  1.1  christos {
    236  1.1  christos   HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
    237  1.1  christos   DCB state;
    238  1.1  christos 
    239  1.1  christos   if (GetCommState (h, &state) == 0)
    240  1.1  christos     return -1;
    241  1.1  christos 
    242  1.1  christos   state.BaudRate = rate;
    243  1.1  christos 
    244  1.1  christos   return (SetCommState (h, &state) != 0) ? 0 : -1;
    245  1.1  christos }
    246  1.1  christos 
    247  1.1  christos static void
    248  1.1  christos ser_windows_close (struct serial *scb)
    249  1.1  christos {
    250  1.1  christos   struct ser_windows_state *state;
    251  1.1  christos 
    252  1.1  christos   /* Stop any pending selects.  On Windows 95 OS, CancelIo function does
    253  1.1  christos      not exist.  In that case, it can be replaced by a call to CloseHandle,
    254  1.1  christos      but this is not necessary here as we do close the Windows handle
    255  1.1  christos      by calling close (scb->fd) below.  */
    256  1.1  christos   if (CancelIo)
    257  1.1  christos     CancelIo ((HANDLE) _get_osfhandle (scb->fd));
    258  1.1  christos   state = scb->state;
    259  1.1  christos   CloseHandle (state->ov.hEvent);
    260  1.1  christos   CloseHandle (state->except_event);
    261  1.1  christos 
    262  1.1  christos   if (scb->fd < 0)
    263  1.1  christos     return;
    264  1.1  christos 
    265  1.1  christos   close (scb->fd);
    266  1.1  christos   scb->fd = -1;
    267  1.1  christos 
    268  1.1  christos   xfree (scb->state);
    269  1.1  christos }
    270  1.1  christos 
    271  1.1  christos static void
    272  1.1  christos ser_windows_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
    273  1.1  christos {
    274  1.1  christos   struct ser_windows_state *state;
    275  1.1  christos   COMSTAT status;
    276  1.1  christos   DWORD errors;
    277  1.1  christos   HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
    278  1.1  christos 
    279  1.1  christos   state = scb->state;
    280  1.1  christos 
    281  1.1  christos   *except = state->except_event;
    282  1.1  christos   *read = state->ov.hEvent;
    283  1.1  christos 
    284  1.1  christos   if (state->in_progress)
    285  1.1  christos     return;
    286  1.1  christos 
    287  1.1  christos   /* Reset the mask - we are only interested in any characters which
    288  1.1  christos      arrive after this point, not characters which might have arrived
    289  1.1  christos      and already been read.  */
    290  1.1  christos 
    291  1.1  christos   /* This really, really shouldn't be necessary - just the second one.
    292  1.1  christos      But otherwise an internal flag for EV_RXCHAR does not get
    293  1.1  christos      cleared, and we get a duplicated event, if the last batch
    294  1.1  christos      of characters included at least two arriving close together.  */
    295  1.1  christos   if (!SetCommMask (h, 0))
    296  1.1  christos     warning (_("ser_windows_wait_handle: reseting mask failed"));
    297  1.1  christos 
    298  1.1  christos   if (!SetCommMask (h, EV_RXCHAR))
    299  1.1  christos     warning (_("ser_windows_wait_handle: reseting mask failed (2)"));
    300  1.1  christos 
    301  1.1  christos   /* There's a potential race condition here; we must check cbInQue
    302  1.1  christos      and not wait if that's nonzero.  */
    303  1.1  christos 
    304  1.1  christos   ClearCommError (h, &errors, &status);
    305  1.1  christos   if (status.cbInQue > 0)
    306  1.1  christos     {
    307  1.1  christos       SetEvent (state->ov.hEvent);
    308  1.1  christos       return;
    309  1.1  christos     }
    310  1.1  christos 
    311  1.1  christos   state->in_progress = 1;
    312  1.1  christos   ResetEvent (state->ov.hEvent);
    313  1.1  christos   state->lastCommMask = -2;
    314  1.1  christos   if (WaitCommEvent (h, &state->lastCommMask, &state->ov))
    315  1.1  christos     {
    316  1.1  christos       gdb_assert (state->lastCommMask & EV_RXCHAR);
    317  1.1  christos       SetEvent (state->ov.hEvent);
    318  1.1  christos     }
    319  1.1  christos   else
    320  1.1  christos     gdb_assert (GetLastError () == ERROR_IO_PENDING);
    321  1.1  christos }
    322  1.1  christos 
    323  1.1  christos static int
    324  1.1  christos ser_windows_read_prim (struct serial *scb, size_t count)
    325  1.1  christos {
    326  1.1  christos   struct ser_windows_state *state;
    327  1.1  christos   OVERLAPPED ov;
    328  1.1  christos   DWORD bytes_read, bytes_read_tmp;
    329  1.1  christos   HANDLE h;
    330  1.1  christos   gdb_byte *p;
    331  1.1  christos 
    332  1.1  christos   state = scb->state;
    333  1.1  christos   if (state->in_progress)
    334  1.1  christos     {
    335  1.1  christos       WaitForSingleObject (state->ov.hEvent, INFINITE);
    336  1.1  christos       state->in_progress = 0;
    337  1.1  christos       ResetEvent (state->ov.hEvent);
    338  1.1  christos     }
    339  1.1  christos 
    340  1.1  christos   memset (&ov, 0, sizeof (OVERLAPPED));
    341  1.1  christos   ov.hEvent = CreateEvent (0, FALSE, FALSE, 0);
    342  1.1  christos   h = (HANDLE) _get_osfhandle (scb->fd);
    343  1.1  christos 
    344  1.1  christos   if (!ReadFile (h, scb->buf, /* count */ 1, &bytes_read, &ov))
    345  1.1  christos     {
    346  1.1  christos       if (GetLastError () != ERROR_IO_PENDING
    347  1.1  christos 	  || !GetOverlappedResult (h, &ov, &bytes_read, TRUE))
    348  1.1  christos 	bytes_read = -1;
    349  1.1  christos     }
    350  1.1  christos 
    351  1.1  christos   CloseHandle (ov.hEvent);
    352  1.1  christos   return bytes_read;
    353  1.1  christos }
    354  1.1  christos 
    355  1.1  christos static int
    356  1.1  christos ser_windows_write_prim (struct serial *scb, const void *buf, size_t len)
    357  1.1  christos {
    358  1.1  christos   struct ser_windows_state *state;
    359  1.1  christos   OVERLAPPED ov;
    360  1.1  christos   DWORD bytes_written;
    361  1.1  christos   HANDLE h;
    362  1.1  christos 
    363  1.1  christos   memset (&ov, 0, sizeof (OVERLAPPED));
    364  1.1  christos   ov.hEvent = CreateEvent (0, FALSE, FALSE, 0);
    365  1.1  christos   h = (HANDLE) _get_osfhandle (scb->fd);
    366  1.1  christos   if (!WriteFile (h, buf, len, &bytes_written, &ov))
    367  1.1  christos     {
    368  1.1  christos       if (GetLastError () != ERROR_IO_PENDING
    369  1.1  christos 	  || !GetOverlappedResult (h, &ov, &bytes_written, TRUE))
    370  1.1  christos 	bytes_written = -1;
    371  1.1  christos     }
    372  1.1  christos 
    373  1.1  christos   CloseHandle (ov.hEvent);
    374  1.1  christos   return bytes_written;
    375  1.1  christos }
    376  1.1  christos 
    377  1.1  christos /* On Windows, gdb_select is implemented using WaitForMulpleObjects.
    378  1.1  christos    A "select thread" is created for each file descriptor.  These
    379  1.1  christos    threads looks for activity on the corresponding descriptor, using
    380  1.1  christos    whatever techniques are appropriate for the descriptor type.  When
    381  1.1  christos    that activity occurs, the thread signals an appropriate event,
    382  1.1  christos    which wakes up WaitForMultipleObjects.
    383  1.1  christos 
    384  1.1  christos    Each select thread is in one of two states: stopped or started.
    385  1.1  christos    Select threads begin in the stopped state.  When gdb_select is
    386  1.1  christos    called, threads corresponding to the descriptors of interest are
    387  1.1  christos    started by calling a wait_handle function.  Each thread that
    388  1.1  christos    notices activity signals the appropriate event and then reenters
    389  1.1  christos    the stopped state.  Before gdb_select returns it calls the
    390  1.1  christos    wait_handle_done functions, which return the threads to the stopped
    391  1.1  christos    state.  */
    392  1.1  christos 
    393  1.1  christos enum select_thread_state {
    394  1.1  christos   STS_STARTED,
    395  1.1  christos   STS_STOPPED
    396  1.1  christos };
    397  1.1  christos 
    398  1.1  christos struct ser_console_state
    399  1.1  christos {
    400  1.1  christos   /* Signaled by the select thread to indicate that data is available
    401  1.1  christos      on the file descriptor.  */
    402  1.1  christos   HANDLE read_event;
    403  1.1  christos   /* Signaled by the select thread to indicate that an exception has
    404  1.1  christos      occurred on the file descriptor.  */
    405  1.1  christos   HANDLE except_event;
    406  1.1  christos   /* Signaled by the select thread to indicate that it has entered the
    407  1.1  christos      started state.  HAVE_STARTED and HAVE_STOPPED are never signaled
    408  1.1  christos      simultaneously.  */
    409  1.1  christos   HANDLE have_started;
    410  1.1  christos   /* Signaled by the select thread to indicate that it has stopped,
    411  1.1  christos      either because data is available (and READ_EVENT is signaled),
    412  1.1  christos      because an exception has occurred (and EXCEPT_EVENT is signaled),
    413  1.1  christos      or because STOP_SELECT was signaled.  */
    414  1.1  christos   HANDLE have_stopped;
    415  1.1  christos 
    416  1.1  christos   /* Signaled by the main program to tell the select thread to enter
    417  1.1  christos      the started state.  */
    418  1.1  christos   HANDLE start_select;
    419  1.1  christos   /* Signaled by the main program to tell the select thread to enter
    420  1.1  christos      the stopped state.  */
    421  1.1  christos   HANDLE stop_select;
    422  1.1  christos   /* Signaled by the main program to tell the select thread to
    423  1.1  christos      exit.  */
    424  1.1  christos   HANDLE exit_select;
    425  1.1  christos 
    426  1.1  christos   /* The handle for the select thread.  */
    427  1.1  christos   HANDLE thread;
    428  1.1  christos   /* The state of the select thread.  This field is only accessed in
    429  1.1  christos      the main program, never by the select thread itself.  */
    430  1.1  christos   enum select_thread_state thread_state;
    431  1.1  christos };
    432  1.1  christos 
    433  1.1  christos /* Called by a select thread to enter the stopped state.  This
    434  1.1  christos    function does not return until the thread has re-entered the
    435  1.1  christos    started state.  */
    436  1.1  christos static void
    437  1.1  christos select_thread_wait (struct ser_console_state *state)
    438  1.1  christos {
    439  1.1  christos   HANDLE wait_events[2];
    440  1.1  christos 
    441  1.1  christos   /* There are two things that can wake us up: a request that we enter
    442  1.1  christos      the started state, or that we exit this thread.  */
    443  1.1  christos   wait_events[0] = state->start_select;
    444  1.1  christos   wait_events[1] = state->exit_select;
    445  1.1  christos   if (WaitForMultipleObjects (2, wait_events, FALSE, INFINITE)
    446  1.1  christos       != WAIT_OBJECT_0)
    447  1.1  christos     /* Either the EXIT_SELECT event was signaled (requesting that the
    448  1.1  christos        thread exit) or an error has occurred.  In either case, we exit
    449  1.1  christos        the thread.  */
    450  1.1  christos     ExitThread (0);
    451  1.1  christos 
    452  1.1  christos   /* We are now in the started state.  */
    453  1.1  christos   SetEvent (state->have_started);
    454  1.1  christos }
    455  1.1  christos 
    456  1.1  christos typedef DWORD WINAPI (*thread_fn_type)(void *);
    457  1.1  christos 
    458  1.1  christos /* Create a new select thread for SCB executing THREAD_FN.  The STATE
    459  1.1  christos    will be filled in by this function before return.  */
    460  1.1  christos static void
    461  1.1  christos create_select_thread (thread_fn_type thread_fn,
    462  1.1  christos 		      struct serial *scb,
    463  1.1  christos 		      struct ser_console_state *state)
    464  1.1  christos {
    465  1.1  christos   DWORD threadId;
    466  1.1  christos 
    467  1.1  christos   /* Create all of the events.  These are all auto-reset events.  */
    468  1.1  christos   state->read_event = CreateEvent (NULL, FALSE, FALSE, NULL);
    469  1.1  christos   state->except_event = CreateEvent (NULL, FALSE, FALSE, NULL);
    470  1.1  christos   state->have_started = CreateEvent (NULL, FALSE, FALSE, NULL);
    471  1.1  christos   state->have_stopped = CreateEvent (NULL, FALSE, FALSE, NULL);
    472  1.1  christos   state->start_select = CreateEvent (NULL, FALSE, FALSE, NULL);
    473  1.1  christos   state->stop_select = CreateEvent (NULL, FALSE, FALSE, NULL);
    474  1.1  christos   state->exit_select = CreateEvent (NULL, FALSE, FALSE, NULL);
    475  1.1  christos 
    476  1.1  christos   state->thread = CreateThread (NULL, 0, thread_fn, scb, 0, &threadId);
    477  1.1  christos   /* The thread begins in the stopped state.  */
    478  1.1  christos   state->thread_state = STS_STOPPED;
    479  1.1  christos }
    480  1.1  christos 
    481  1.1  christos /* Destroy the select thread indicated by STATE.  */
    482  1.1  christos static void
    483  1.1  christos destroy_select_thread (struct ser_console_state *state)
    484  1.1  christos {
    485  1.1  christos   /* Ask the thread to exit.  */
    486  1.1  christos   SetEvent (state->exit_select);
    487  1.1  christos   /* Wait until it does.  */
    488  1.1  christos   WaitForSingleObject (state->thread, INFINITE);
    489  1.1  christos 
    490  1.1  christos   /* Destroy the events.  */
    491  1.1  christos   CloseHandle (state->read_event);
    492  1.1  christos   CloseHandle (state->except_event);
    493  1.1  christos   CloseHandle (state->have_started);
    494  1.1  christos   CloseHandle (state->have_stopped);
    495  1.1  christos   CloseHandle (state->start_select);
    496  1.1  christos   CloseHandle (state->stop_select);
    497  1.1  christos   CloseHandle (state->exit_select);
    498  1.1  christos }
    499  1.1  christos 
    500  1.1  christos /* Called by gdb_select to start the select thread indicated by STATE.
    501  1.1  christos    This function does not return until the thread has started.  */
    502  1.1  christos static void
    503  1.1  christos start_select_thread (struct ser_console_state *state)
    504  1.1  christos {
    505  1.1  christos   /* Ask the thread to start.  */
    506  1.1  christos   SetEvent (state->start_select);
    507  1.1  christos   /* Wait until it does.  */
    508  1.1  christos   WaitForSingleObject (state->have_started, INFINITE);
    509  1.1  christos   /* The thread is now started.  */
    510  1.1  christos   state->thread_state = STS_STARTED;
    511  1.1  christos }
    512  1.1  christos 
    513  1.1  christos /* Called by gdb_select to stop the select thread indicated by STATE.
    514  1.1  christos    This function does not return until the thread has stopped.  */
    515  1.1  christos static void
    516  1.1  christos stop_select_thread (struct ser_console_state *state)
    517  1.1  christos {
    518  1.1  christos   /* If the thread is already in the stopped state, we have nothing to
    519  1.1  christos      do.  Some of the wait_handle functions avoid calling
    520  1.1  christos      start_select_thread if they notice activity on the relevant file
    521  1.1  christos      descriptors.  The wait_handle_done functions still call
    522  1.1  christos      stop_select_thread -- but it is already stopped.  */
    523  1.1  christos   if (state->thread_state != STS_STARTED)
    524  1.1  christos     return;
    525  1.1  christos   /* Ask the thread to stop.  */
    526  1.1  christos   SetEvent (state->stop_select);
    527  1.1  christos   /* Wait until it does.  */
    528  1.1  christos   WaitForSingleObject (state->have_stopped, INFINITE);
    529  1.1  christos   /* The thread is now stopped.  */
    530  1.1  christos   state->thread_state = STS_STOPPED;
    531  1.1  christos }
    532  1.1  christos 
    533  1.1  christos static DWORD WINAPI
    534  1.1  christos console_select_thread (void *arg)
    535  1.1  christos {
    536  1.1  christos   struct serial *scb = arg;
    537  1.1  christos   struct ser_console_state *state;
    538  1.1  christos   int event_index;
    539  1.1  christos   HANDLE h;
    540  1.1  christos 
    541  1.1  christos   state = scb->state;
    542  1.1  christos   h = (HANDLE) _get_osfhandle (scb->fd);
    543  1.1  christos 
    544  1.1  christos   while (1)
    545  1.1  christos     {
    546  1.1  christos       HANDLE wait_events[2];
    547  1.1  christos       INPUT_RECORD record;
    548  1.1  christos       DWORD n_records;
    549  1.1  christos 
    550  1.1  christos       select_thread_wait (state);
    551  1.1  christos 
    552  1.1  christos       while (1)
    553  1.1  christos 	{
    554  1.1  christos 	  wait_events[0] = state->stop_select;
    555  1.1  christos 	  wait_events[1] = h;
    556  1.1  christos 
    557  1.1  christos 	  event_index = WaitForMultipleObjects (2, wait_events,
    558  1.1  christos 						FALSE, INFINITE);
    559  1.1  christos 
    560  1.1  christos 	  if (event_index == WAIT_OBJECT_0
    561  1.1  christos 	      || WaitForSingleObject (state->stop_select, 0) == WAIT_OBJECT_0)
    562  1.1  christos 	    break;
    563  1.1  christos 
    564  1.1  christos 	  if (event_index != WAIT_OBJECT_0 + 1)
    565  1.1  christos 	    {
    566  1.1  christos 	      /* Wait must have failed; assume an error has occured, e.g.
    567  1.1  christos 		 the handle has been closed.  */
    568  1.1  christos 	      SetEvent (state->except_event);
    569  1.1  christos 	      break;
    570  1.1  christos 	    }
    571  1.1  christos 
    572  1.1  christos 	  /* We've got a pending event on the console.  See if it's
    573  1.1  christos 	     of interest.  */
    574  1.1  christos 	  if (!PeekConsoleInput (h, &record, 1, &n_records) || n_records != 1)
    575  1.1  christos 	    {
    576  1.1  christos 	      /* Something went wrong.  Maybe the console is gone.  */
    577  1.1  christos 	      SetEvent (state->except_event);
    578  1.1  christos 	      break;
    579  1.1  christos 	    }
    580  1.1  christos 
    581  1.1  christos 	  if (record.EventType == KEY_EVENT && record.Event.KeyEvent.bKeyDown)
    582  1.1  christos 	    {
    583  1.1  christos 	      WORD keycode = record.Event.KeyEvent.wVirtualKeyCode;
    584  1.1  christos 
    585  1.1  christos 	      /* Ignore events containing only control keys.  We must
    586  1.1  christos 		 recognize "enhanced" keys which we are interested in
    587  1.1  christos 		 reading via getch, if they do not map to ASCII.  But we
    588  1.1  christos 		 do not want to report input available for e.g. the
    589  1.1  christos 		 control key alone.  */
    590  1.1  christos 
    591  1.1  christos 	      if (record.Event.KeyEvent.uChar.AsciiChar != 0
    592  1.1  christos 		  || keycode == VK_PRIOR
    593  1.1  christos 		  || keycode == VK_NEXT
    594  1.1  christos 		  || keycode == VK_END
    595  1.1  christos 		  || keycode == VK_HOME
    596  1.1  christos 		  || keycode == VK_LEFT
    597  1.1  christos 		  || keycode == VK_UP
    598  1.1  christos 		  || keycode == VK_RIGHT
    599  1.1  christos 		  || keycode == VK_DOWN
    600  1.1  christos 		  || keycode == VK_INSERT
    601  1.1  christos 		  || keycode == VK_DELETE)
    602  1.1  christos 		{
    603  1.1  christos 		  /* This is really a keypress.  */
    604  1.1  christos 		  SetEvent (state->read_event);
    605  1.1  christos 		  break;
    606  1.1  christos 		}
    607  1.1  christos 	    }
    608  1.1  christos 
    609  1.1  christos 	  /* Otherwise discard it and wait again.  */
    610  1.1  christos 	  ReadConsoleInput (h, &record, 1, &n_records);
    611  1.1  christos 	}
    612  1.1  christos 
    613  1.1  christos       SetEvent(state->have_stopped);
    614  1.1  christos     }
    615  1.1  christos   return 0;
    616  1.1  christos }
    617  1.1  christos 
    618  1.1  christos static int
    619  1.1  christos fd_is_pipe (int fd)
    620  1.1  christos {
    621  1.1  christos   if (PeekNamedPipe ((HANDLE) _get_osfhandle (fd), NULL, 0, NULL, NULL, NULL))
    622  1.1  christos     return 1;
    623  1.1  christos   else
    624  1.1  christos     return 0;
    625  1.1  christos }
    626  1.1  christos 
    627  1.1  christos static int
    628  1.1  christos fd_is_file (int fd)
    629  1.1  christos {
    630  1.1  christos   if (GetFileType ((HANDLE) _get_osfhandle (fd)) == FILE_TYPE_DISK)
    631  1.1  christos     return 1;
    632  1.1  christos   else
    633  1.1  christos     return 0;
    634  1.1  christos }
    635  1.1  christos 
    636  1.1  christos static DWORD WINAPI
    637  1.1  christos pipe_select_thread (void *arg)
    638  1.1  christos {
    639  1.1  christos   struct serial *scb = arg;
    640  1.1  christos   struct ser_console_state *state;
    641  1.1  christos   int event_index;
    642  1.1  christos   HANDLE h;
    643  1.1  christos 
    644  1.1  christos   state = scb->state;
    645  1.1  christos   h = (HANDLE) _get_osfhandle (scb->fd);
    646  1.1  christos 
    647  1.1  christos   while (1)
    648  1.1  christos     {
    649  1.1  christos       DWORD n_avail;
    650  1.1  christos 
    651  1.1  christos       select_thread_wait (state);
    652  1.1  christos 
    653  1.1  christos       /* Wait for something to happen on the pipe.  */
    654  1.1  christos       while (1)
    655  1.1  christos 	{
    656  1.1  christos 	  if (!PeekNamedPipe (h, NULL, 0, NULL, &n_avail, NULL))
    657  1.1  christos 	    {
    658  1.1  christos 	      SetEvent (state->except_event);
    659  1.1  christos 	      break;
    660  1.1  christos 	    }
    661  1.1  christos 
    662  1.1  christos 	  if (n_avail > 0)
    663  1.1  christos 	    {
    664  1.1  christos 	      SetEvent (state->read_event);
    665  1.1  christos 	      break;
    666  1.1  christos 	    }
    667  1.1  christos 
    668  1.1  christos 	  /* Delay 10ms before checking again, but allow the stop
    669  1.1  christos 	     event to wake us.  */
    670  1.1  christos 	  if (WaitForSingleObject (state->stop_select, 10) == WAIT_OBJECT_0)
    671  1.1  christos 	    break;
    672  1.1  christos 	}
    673  1.1  christos 
    674  1.1  christos       SetEvent (state->have_stopped);
    675  1.1  christos     }
    676  1.1  christos   return 0;
    677  1.1  christos }
    678  1.1  christos 
    679  1.1  christos static DWORD WINAPI
    680  1.1  christos file_select_thread (void *arg)
    681  1.1  christos {
    682  1.1  christos   struct serial *scb = arg;
    683  1.1  christos   struct ser_console_state *state;
    684  1.1  christos   int event_index;
    685  1.1  christos   HANDLE h;
    686  1.1  christos 
    687  1.1  christos   state = scb->state;
    688  1.1  christos   h = (HANDLE) _get_osfhandle (scb->fd);
    689  1.1  christos 
    690  1.1  christos   while (1)
    691  1.1  christos     {
    692  1.1  christos       select_thread_wait (state);
    693  1.1  christos 
    694  1.1  christos       if (SetFilePointer (h, 0, NULL, FILE_CURRENT)
    695  1.1  christos 	  == INVALID_SET_FILE_POINTER)
    696  1.1  christos 	SetEvent (state->except_event);
    697  1.1  christos       else
    698  1.1  christos 	SetEvent (state->read_event);
    699  1.1  christos 
    700  1.1  christos       SetEvent (state->have_stopped);
    701  1.1  christos     }
    702  1.1  christos   return 0;
    703  1.1  christos }
    704  1.1  christos 
    705  1.1  christos static void
    706  1.1  christos ser_console_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
    707  1.1  christos {
    708  1.1  christos   struct ser_console_state *state = scb->state;
    709  1.1  christos 
    710  1.1  christos   if (state == NULL)
    711  1.1  christos     {
    712  1.1  christos       thread_fn_type thread_fn;
    713  1.1  christos       int is_tty;
    714  1.1  christos 
    715  1.1  christos       is_tty = isatty (scb->fd);
    716  1.1  christos       if (!is_tty && !fd_is_file (scb->fd) && !fd_is_pipe (scb->fd))
    717  1.1  christos 	{
    718  1.1  christos 	  *read = NULL;
    719  1.1  christos 	  *except = NULL;
    720  1.1  christos 	  return;
    721  1.1  christos 	}
    722  1.1  christos 
    723  1.1  christos       state = xmalloc (sizeof (struct ser_console_state));
    724  1.1  christos       memset (state, 0, sizeof (struct ser_console_state));
    725  1.1  christos       scb->state = state;
    726  1.1  christos 
    727  1.1  christos       if (is_tty)
    728  1.1  christos 	thread_fn = console_select_thread;
    729  1.1  christos       else if (fd_is_pipe (scb->fd))
    730  1.1  christos 	thread_fn = pipe_select_thread;
    731  1.1  christos       else
    732  1.1  christos 	thread_fn = file_select_thread;
    733  1.1  christos 
    734  1.1  christos       create_select_thread (thread_fn, scb, state);
    735  1.1  christos     }
    736  1.1  christos 
    737  1.1  christos   *read = state->read_event;
    738  1.1  christos   *except = state->except_event;
    739  1.1  christos 
    740  1.1  christos   /* Start from a blank state.  */
    741  1.1  christos   ResetEvent (state->read_event);
    742  1.1  christos   ResetEvent (state->except_event);
    743  1.1  christos   ResetEvent (state->stop_select);
    744  1.1  christos 
    745  1.1  christos   /* First check for a key already in the buffer.  If there is one,
    746  1.1  christos      we don't need a thread.  This also catches the second key of
    747  1.1  christos      multi-character returns from getch, for instance for arrow
    748  1.1  christos      keys.  The second half is in a C library internal buffer,
    749  1.1  christos      and PeekConsoleInput will not find it.  */
    750  1.1  christos   if (_kbhit ())
    751  1.1  christos     {
    752  1.1  christos       SetEvent (state->read_event);
    753  1.1  christos       return;
    754  1.1  christos     }
    755  1.1  christos 
    756  1.1  christos   /* Otherwise, start the select thread.  */
    757  1.1  christos   start_select_thread (state);
    758  1.1  christos }
    759  1.1  christos 
    760  1.1  christos static void
    761  1.1  christos ser_console_done_wait_handle (struct serial *scb)
    762  1.1  christos {
    763  1.1  christos   struct ser_console_state *state = scb->state;
    764  1.1  christos 
    765  1.1  christos   if (state == NULL)
    766  1.1  christos     return;
    767  1.1  christos 
    768  1.1  christos   stop_select_thread (state);
    769  1.1  christos }
    770  1.1  christos 
    771  1.1  christos static void
    772  1.1  christos ser_console_close (struct serial *scb)
    773  1.1  christos {
    774  1.1  christos   struct ser_console_state *state = scb->state;
    775  1.1  christos 
    776  1.1  christos   if (scb->state)
    777  1.1  christos     {
    778  1.1  christos       destroy_select_thread (state);
    779  1.1  christos       xfree (scb->state);
    780  1.1  christos     }
    781  1.1  christos }
    782  1.1  christos 
    783  1.1  christos struct ser_console_ttystate
    784  1.1  christos {
    785  1.1  christos   int is_a_tty;
    786  1.1  christos };
    787  1.1  christos 
    788  1.1  christos static serial_ttystate
    789  1.1  christos ser_console_get_tty_state (struct serial *scb)
    790  1.1  christos {
    791  1.1  christos   if (isatty (scb->fd))
    792  1.1  christos     {
    793  1.1  christos       struct ser_console_ttystate *state;
    794  1.1  christos 
    795  1.1  christos       state = (struct ser_console_ttystate *) xmalloc (sizeof *state);
    796  1.1  christos       state->is_a_tty = 1;
    797  1.1  christos       return state;
    798  1.1  christos     }
    799  1.1  christos   else
    800  1.1  christos     return NULL;
    801  1.1  christos }
    802  1.1  christos 
    803  1.1  christos struct pipe_state
    804  1.1  christos {
    805  1.1  christos   /* Since we use the pipe_select_thread for our select emulation,
    806  1.1  christos      we need to place the state structure it requires at the front
    807  1.1  christos      of our state.  */
    808  1.1  christos   struct ser_console_state wait;
    809  1.1  christos 
    810  1.1  christos   /* The pex obj for our (one-stage) pipeline.  */
    811  1.1  christos   struct pex_obj *pex;
    812  1.1  christos 
    813  1.1  christos   /* Streams for the pipeline's input and output.  */
    814  1.1  christos   FILE *input, *output;
    815  1.1  christos };
    816  1.1  christos 
    817  1.1  christos static struct pipe_state *
    818  1.1  christos make_pipe_state (void)
    819  1.1  christos {
    820  1.3  christos   struct pipe_state *ps = XNEW (struct pipe_state);
    821  1.1  christos 
    822  1.1  christos   memset (ps, 0, sizeof (*ps));
    823  1.1  christos   ps->wait.read_event = INVALID_HANDLE_VALUE;
    824  1.1  christos   ps->wait.except_event = INVALID_HANDLE_VALUE;
    825  1.1  christos   ps->wait.start_select = INVALID_HANDLE_VALUE;
    826  1.1  christos   ps->wait.stop_select = INVALID_HANDLE_VALUE;
    827  1.1  christos 
    828  1.1  christos   return ps;
    829  1.1  christos }
    830  1.1  christos 
    831  1.1  christos static void
    832  1.1  christos free_pipe_state (struct pipe_state *ps)
    833  1.1  christos {
    834  1.1  christos   int saved_errno = errno;
    835  1.1  christos 
    836  1.1  christos   if (ps->wait.read_event != INVALID_HANDLE_VALUE)
    837  1.1  christos     destroy_select_thread (&ps->wait);
    838  1.1  christos 
    839  1.1  christos   /* Close the pipe to the child.  We must close the pipe before
    840  1.1  christos      calling pex_free because pex_free will wait for the child to exit
    841  1.1  christos      and the child will not exit until the pipe is closed.  */
    842  1.1  christos   if (ps->input)
    843  1.1  christos     fclose (ps->input);
    844  1.1  christos   if (ps->pex)
    845  1.1  christos     {
    846  1.1  christos       pex_free (ps->pex);
    847  1.1  christos       /* pex_free closes ps->output.  */
    848  1.1  christos     }
    849  1.1  christos   else if (ps->output)
    850  1.1  christos     fclose (ps->output);
    851  1.1  christos 
    852  1.1  christos   xfree (ps);
    853  1.1  christos 
    854  1.1  christos   errno = saved_errno;
    855  1.1  christos }
    856  1.1  christos 
    857  1.1  christos static void
    858  1.1  christos cleanup_pipe_state (void *untyped)
    859  1.1  christos {
    860  1.1  christos   struct pipe_state *ps = untyped;
    861  1.1  christos 
    862  1.1  christos   free_pipe_state (ps);
    863  1.1  christos }
    864  1.1  christos 
    865  1.1  christos static int
    866  1.1  christos pipe_windows_open (struct serial *scb, const char *name)
    867  1.1  christos {
    868  1.1  christos   struct pipe_state *ps;
    869  1.1  christos   FILE *pex_stderr;
    870  1.1  christos   char **argv;
    871  1.1  christos   struct cleanup *back_to;
    872  1.1  christos 
    873  1.1  christos   if (name == NULL)
    874  1.1  christos     error_no_arg (_("child command"));
    875  1.1  christos 
    876  1.1  christos   argv = gdb_buildargv (name);
    877  1.1  christos   back_to = make_cleanup_freeargv (argv);
    878  1.1  christos 
    879  1.1  christos   if (! argv[0] || argv[0][0] == '\0')
    880  1.1  christos     error (_("missing child command"));
    881  1.1  christos 
    882  1.1  christos   ps = make_pipe_state ();
    883  1.1  christos   make_cleanup (cleanup_pipe_state, ps);
    884  1.1  christos 
    885  1.1  christos   ps->pex = pex_init (PEX_USE_PIPES, "target remote pipe", NULL);
    886  1.1  christos   if (! ps->pex)
    887  1.1  christos     goto fail;
    888  1.1  christos   ps->input = pex_input_pipe (ps->pex, 1);
    889  1.1  christos   if (! ps->input)
    890  1.1  christos     goto fail;
    891  1.1  christos 
    892  1.1  christos   {
    893  1.1  christos     int err;
    894  1.1  christos     const char *err_msg
    895  1.1  christos       = pex_run (ps->pex, PEX_SEARCH | PEX_BINARY_INPUT | PEX_BINARY_OUTPUT
    896  1.1  christos 		 | PEX_STDERR_TO_PIPE,
    897  1.1  christos                  argv[0], argv, NULL, NULL,
    898  1.1  christos                  &err);
    899  1.1  christos 
    900  1.1  christos     if (err_msg)
    901  1.1  christos       {
    902  1.1  christos         /* Our caller expects us to return -1, but all they'll do with
    903  1.1  christos            it generally is print the message based on errno.  We have
    904  1.1  christos            all the same information here, plus err_msg provided by
    905  1.1  christos            pex_run, so we just raise the error here.  */
    906  1.1  christos         if (err)
    907  1.1  christos           error (_("error starting child process '%s': %s: %s"),
    908  1.1  christos                  name, err_msg, safe_strerror (err));
    909  1.1  christos         else
    910  1.1  christos           error (_("error starting child process '%s': %s"),
    911  1.1  christos                  name, err_msg);
    912  1.1  christos       }
    913  1.1  christos   }
    914  1.1  christos 
    915  1.1  christos   ps->output = pex_read_output (ps->pex, 1);
    916  1.1  christos   if (! ps->output)
    917  1.1  christos     goto fail;
    918  1.1  christos   scb->fd = fileno (ps->output);
    919  1.1  christos 
    920  1.1  christos   pex_stderr = pex_read_err (ps->pex, 1);
    921  1.1  christos   if (! pex_stderr)
    922  1.1  christos     goto fail;
    923  1.1  christos   scb->error_fd = fileno (pex_stderr);
    924  1.1  christos 
    925  1.1  christos   scb->state = (void *) ps;
    926  1.1  christos 
    927  1.1  christos   discard_cleanups (back_to);
    928  1.1  christos   return 0;
    929  1.1  christos 
    930  1.1  christos  fail:
    931  1.1  christos   do_cleanups (back_to);
    932  1.1  christos   return -1;
    933  1.1  christos }
    934  1.1  christos 
    935  1.1  christos static int
    936  1.1  christos pipe_windows_fdopen (struct serial *scb, int fd)
    937  1.1  christos {
    938  1.1  christos   struct pipe_state *ps;
    939  1.1  christos 
    940  1.1  christos   ps = make_pipe_state ();
    941  1.1  christos 
    942  1.1  christos   ps->input = fdopen (fd, "r+");
    943  1.1  christos   if (! ps->input)
    944  1.1  christos     goto fail;
    945  1.1  christos 
    946  1.1  christos   ps->output = fdopen (fd, "r+");
    947  1.1  christos   if (! ps->output)
    948  1.1  christos     goto fail;
    949  1.1  christos 
    950  1.1  christos   scb->fd = fd;
    951  1.1  christos   scb->state = (void *) ps;
    952  1.1  christos 
    953  1.1  christos   return 0;
    954  1.1  christos 
    955  1.1  christos  fail:
    956  1.1  christos   free_pipe_state (ps);
    957  1.1  christos   return -1;
    958  1.1  christos }
    959  1.1  christos 
    960  1.1  christos static void
    961  1.1  christos pipe_windows_close (struct serial *scb)
    962  1.1  christos {
    963  1.1  christos   struct pipe_state *ps = scb->state;
    964  1.1  christos 
    965  1.1  christos   /* In theory, we should try to kill the subprocess here, but the pex
    966  1.1  christos      interface doesn't give us enough information to do that.  Usually
    967  1.1  christos      closing the input pipe will get the message across.  */
    968  1.1  christos 
    969  1.1  christos   free_pipe_state (ps);
    970  1.1  christos }
    971  1.1  christos 
    972  1.1  christos 
    973  1.1  christos static int
    974  1.1  christos pipe_windows_read (struct serial *scb, size_t count)
    975  1.1  christos {
    976  1.1  christos   HANDLE pipeline_out = (HANDLE) _get_osfhandle (scb->fd);
    977  1.1  christos   DWORD available;
    978  1.1  christos   DWORD bytes_read;
    979  1.1  christos 
    980  1.1  christos   if (pipeline_out == INVALID_HANDLE_VALUE)
    981  1.1  christos     return -1;
    982  1.1  christos 
    983  1.1  christos   if (! PeekNamedPipe (pipeline_out, NULL, 0, NULL, &available, NULL))
    984  1.1  christos     return -1;
    985  1.1  christos 
    986  1.1  christos   if (count > available)
    987  1.1  christos     count = available;
    988  1.1  christos 
    989  1.1  christos   if (! ReadFile (pipeline_out, scb->buf, count, &bytes_read, NULL))
    990  1.1  christos     return -1;
    991  1.1  christos 
    992  1.1  christos   return bytes_read;
    993  1.1  christos }
    994  1.1  christos 
    995  1.1  christos 
    996  1.1  christos static int
    997  1.1  christos pipe_windows_write (struct serial *scb, const void *buf, size_t count)
    998  1.1  christos {
    999  1.1  christos   struct pipe_state *ps = scb->state;
   1000  1.1  christos   HANDLE pipeline_in;
   1001  1.1  christos   DWORD written;
   1002  1.1  christos 
   1003  1.1  christos   int pipeline_in_fd = fileno (ps->input);
   1004  1.1  christos   if (pipeline_in_fd < 0)
   1005  1.1  christos     return -1;
   1006  1.1  christos 
   1007  1.1  christos   pipeline_in = (HANDLE) _get_osfhandle (pipeline_in_fd);
   1008  1.1  christos   if (pipeline_in == INVALID_HANDLE_VALUE)
   1009  1.1  christos     return -1;
   1010  1.1  christos 
   1011  1.1  christos   if (! WriteFile (pipeline_in, buf, count, &written, NULL))
   1012  1.1  christos     return -1;
   1013  1.1  christos 
   1014  1.1  christos   return written;
   1015  1.1  christos }
   1016  1.1  christos 
   1017  1.1  christos 
   1018  1.1  christos static void
   1019  1.1  christos pipe_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
   1020  1.1  christos {
   1021  1.1  christos   struct pipe_state *ps = scb->state;
   1022  1.1  christos 
   1023  1.1  christos   /* Have we allocated our events yet?  */
   1024  1.1  christos   if (ps->wait.read_event == INVALID_HANDLE_VALUE)
   1025  1.1  christos     /* Start the thread.  */
   1026  1.1  christos     create_select_thread (pipe_select_thread, scb, &ps->wait);
   1027  1.1  christos 
   1028  1.1  christos   *read = ps->wait.read_event;
   1029  1.1  christos   *except = ps->wait.except_event;
   1030  1.1  christos 
   1031  1.1  christos   /* Start from a blank state.  */
   1032  1.1  christos   ResetEvent (ps->wait.read_event);
   1033  1.1  christos   ResetEvent (ps->wait.except_event);
   1034  1.1  christos   ResetEvent (ps->wait.stop_select);
   1035  1.1  christos 
   1036  1.1  christos   start_select_thread (&ps->wait);
   1037  1.1  christos }
   1038  1.1  christos 
   1039  1.1  christos static void
   1040  1.1  christos pipe_done_wait_handle (struct serial *scb)
   1041  1.1  christos {
   1042  1.1  christos   struct pipe_state *ps = scb->state;
   1043  1.1  christos 
   1044  1.1  christos   /* Have we allocated our events yet?  */
   1045  1.1  christos   if (ps->wait.read_event == INVALID_HANDLE_VALUE)
   1046  1.1  christos     return;
   1047  1.1  christos 
   1048  1.1  christos   stop_select_thread (&ps->wait);
   1049  1.1  christos }
   1050  1.1  christos 
   1051  1.1  christos static int
   1052  1.1  christos pipe_avail (struct serial *scb, int fd)
   1053  1.1  christos {
   1054  1.1  christos   HANDLE h = (HANDLE) _get_osfhandle (fd);
   1055  1.1  christos   DWORD numBytes;
   1056  1.1  christos   BOOL r = PeekNamedPipe (h, NULL, 0, NULL, &numBytes, NULL);
   1057  1.1  christos 
   1058  1.1  christos   if (r == FALSE)
   1059  1.1  christos     numBytes = 0;
   1060  1.1  christos   return numBytes;
   1061  1.1  christos }
   1062  1.1  christos 
   1063  1.1  christos int
   1064  1.1  christos gdb_pipe (int pdes[2])
   1065  1.1  christos {
   1066  1.1  christos   if (_pipe (pdes, 512, _O_BINARY | _O_NOINHERIT) == -1)
   1067  1.1  christos     return -1;
   1068  1.1  christos   return 0;
   1069  1.1  christos }
   1070  1.1  christos 
   1071  1.1  christos struct net_windows_state
   1072  1.1  christos {
   1073  1.1  christos   struct ser_console_state base;
   1074  1.1  christos 
   1075  1.1  christos   HANDLE sock_event;
   1076  1.1  christos };
   1077  1.1  christos 
   1078  1.3  christos /* Check whether the socket has any pending data to be read.  If so,
   1079  1.3  christos    set the select thread's read event.  On error, set the select
   1080  1.3  christos    thread's except event.  If any event was set, return true,
   1081  1.3  christos    otherwise return false.  */
   1082  1.3  christos 
   1083  1.3  christos static int
   1084  1.3  christos net_windows_socket_check_pending (struct serial *scb)
   1085  1.3  christos {
   1086  1.3  christos   struct net_windows_state *state = scb->state;
   1087  1.3  christos   unsigned long available;
   1088  1.3  christos 
   1089  1.3  christos   if (ioctlsocket (scb->fd, FIONREAD, &available) != 0)
   1090  1.3  christos     {
   1091  1.3  christos       /* The socket closed, or some other error.  */
   1092  1.3  christos       SetEvent (state->base.except_event);
   1093  1.3  christos       return 1;
   1094  1.3  christos     }
   1095  1.3  christos   else if (available > 0)
   1096  1.3  christos     {
   1097  1.3  christos       SetEvent (state->base.read_event);
   1098  1.3  christos       return 1;
   1099  1.3  christos     }
   1100  1.3  christos 
   1101  1.3  christos   return 0;
   1102  1.3  christos }
   1103  1.3  christos 
   1104  1.1  christos static DWORD WINAPI
   1105  1.1  christos net_windows_select_thread (void *arg)
   1106  1.1  christos {
   1107  1.1  christos   struct serial *scb = arg;
   1108  1.1  christos   struct net_windows_state *state;
   1109  1.1  christos   int event_index;
   1110  1.1  christos 
   1111  1.1  christos   state = scb->state;
   1112  1.1  christos 
   1113  1.1  christos   while (1)
   1114  1.1  christos     {
   1115  1.1  christos       HANDLE wait_events[2];
   1116  1.1  christos       WSANETWORKEVENTS events;
   1117  1.1  christos 
   1118  1.1  christos       select_thread_wait (&state->base);
   1119  1.1  christos 
   1120  1.1  christos       wait_events[0] = state->base.stop_select;
   1121  1.1  christos       wait_events[1] = state->sock_event;
   1122  1.1  christos 
   1123  1.3  christos       /* Wait for something to happen on the socket.  */
   1124  1.3  christos       while (1)
   1125  1.3  christos 	{
   1126  1.3  christos 	  event_index = WaitForMultipleObjects (2, wait_events, FALSE, INFINITE);
   1127  1.3  christos 
   1128  1.3  christos 	  if (event_index == WAIT_OBJECT_0
   1129  1.3  christos 	      || WaitForSingleObject (state->base.stop_select, 0) == WAIT_OBJECT_0)
   1130  1.3  christos 	    {
   1131  1.3  christos 	      /* We have been requested to stop.  */
   1132  1.3  christos 	      break;
   1133  1.3  christos 	    }
   1134  1.3  christos 
   1135  1.3  christos 	  if (event_index != WAIT_OBJECT_0 + 1)
   1136  1.3  christos 	    {
   1137  1.3  christos 	      /* Some error has occured.  Assume that this is an error
   1138  1.3  christos 		 condition.  */
   1139  1.3  christos 	      SetEvent (state->base.except_event);
   1140  1.3  christos 	      break;
   1141  1.3  christos 	    }
   1142  1.1  christos 
   1143  1.1  christos 	  /* Enumerate the internal network events, and reset the
   1144  1.1  christos 	     object that signalled us to catch the next event.  */
   1145  1.3  christos 	  if (WSAEnumNetworkEvents (scb->fd, state->sock_event, &events) != 0)
   1146  1.3  christos 	    {
   1147  1.3  christos 	      /* Something went wrong.  Maybe the socket is gone.  */
   1148  1.3  christos 	      SetEvent (state->base.except_event);
   1149  1.3  christos 	      break;
   1150  1.3  christos 	    }
   1151  1.3  christos 
   1152  1.1  christos 	  if (events.lNetworkEvents & FD_READ)
   1153  1.3  christos 	    {
   1154  1.3  christos 	      if (net_windows_socket_check_pending (scb))
   1155  1.3  christos 		break;
   1156  1.3  christos 
   1157  1.3  christos 	      /* Spurious wakeup.  That is, the socket's event was
   1158  1.3  christos 		 signalled before we last called recv.  */
   1159  1.3  christos 	    }
   1160  1.3  christos 
   1161  1.1  christos 	  if (events.lNetworkEvents & FD_CLOSE)
   1162  1.3  christos 	    {
   1163  1.3  christos 	      SetEvent (state->base.except_event);
   1164  1.3  christos 	      break;
   1165  1.3  christos 	    }
   1166  1.1  christos 	}
   1167  1.1  christos 
   1168  1.1  christos       SetEvent (state->base.have_stopped);
   1169  1.1  christos     }
   1170  1.3  christos   return 0;
   1171  1.1  christos }
   1172  1.1  christos 
   1173  1.1  christos static void
   1174  1.1  christos net_windows_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
   1175  1.1  christos {
   1176  1.1  christos   struct net_windows_state *state = scb->state;
   1177  1.1  christos 
   1178  1.1  christos   /* Start from a clean slate.  */
   1179  1.1  christos   ResetEvent (state->base.read_event);
   1180  1.1  christos   ResetEvent (state->base.except_event);
   1181  1.1  christos   ResetEvent (state->base.stop_select);
   1182  1.1  christos 
   1183  1.1  christos   *read = state->base.read_event;
   1184  1.1  christos   *except = state->base.except_event;
   1185  1.1  christos 
   1186  1.3  christos   /* Check any pending events.  Otherwise, start the select
   1187  1.3  christos      thread.  */
   1188  1.3  christos   if (!net_windows_socket_check_pending (scb))
   1189  1.3  christos     start_select_thread (&state->base);
   1190  1.1  christos }
   1191  1.1  christos 
   1192  1.1  christos static void
   1193  1.1  christos net_windows_done_wait_handle (struct serial *scb)
   1194  1.1  christos {
   1195  1.1  christos   struct net_windows_state *state = scb->state;
   1196  1.1  christos 
   1197  1.1  christos   stop_select_thread (&state->base);
   1198  1.1  christos }
   1199  1.1  christos 
   1200  1.1  christos static int
   1201  1.1  christos net_windows_open (struct serial *scb, const char *name)
   1202  1.1  christos {
   1203  1.1  christos   struct net_windows_state *state;
   1204  1.1  christos   int ret;
   1205  1.1  christos   DWORD threadId;
   1206  1.1  christos 
   1207  1.1  christos   ret = net_open (scb, name);
   1208  1.1  christos   if (ret != 0)
   1209  1.1  christos     return ret;
   1210  1.1  christos 
   1211  1.1  christos   state = xmalloc (sizeof (struct net_windows_state));
   1212  1.1  christos   memset (state, 0, sizeof (struct net_windows_state));
   1213  1.1  christos   scb->state = state;
   1214  1.1  christos 
   1215  1.1  christos   /* Associate an event with the socket.  */
   1216  1.1  christos   state->sock_event = CreateEvent (0, TRUE, FALSE, 0);
   1217  1.1  christos   WSAEventSelect (scb->fd, state->sock_event, FD_READ | FD_CLOSE);
   1218  1.1  christos 
   1219  1.1  christos   /* Start the thread.  */
   1220  1.1  christos   create_select_thread (net_windows_select_thread, scb, &state->base);
   1221  1.1  christos 
   1222  1.1  christos   return 0;
   1223  1.1  christos }
   1224  1.1  christos 
   1225  1.1  christos 
   1226  1.1  christos static void
   1227  1.1  christos net_windows_close (struct serial *scb)
   1228  1.1  christos {
   1229  1.1  christos   struct net_windows_state *state = scb->state;
   1230  1.1  christos 
   1231  1.1  christos   destroy_select_thread (&state->base);
   1232  1.1  christos   CloseHandle (state->sock_event);
   1233  1.1  christos 
   1234  1.1  christos   xfree (scb->state);
   1235  1.1  christos 
   1236  1.1  christos   net_close (scb);
   1237  1.1  christos }
   1238  1.1  christos 
   1239  1.1  christos /* The serial port driver.  */
   1240  1.1  christos 
   1241  1.1  christos static const struct serial_ops hardwire_ops =
   1242  1.1  christos {
   1243  1.1  christos   "hardwire",
   1244  1.1  christos   ser_windows_open,
   1245  1.1  christos   ser_windows_close,
   1246  1.1  christos   NULL,
   1247  1.1  christos   ser_base_readchar,
   1248  1.1  christos   ser_base_write,
   1249  1.1  christos   ser_windows_flush_output,
   1250  1.1  christos   ser_windows_flush_input,
   1251  1.1  christos   ser_windows_send_break,
   1252  1.1  christos   ser_windows_raw,
   1253  1.1  christos   /* These are only used for stdin; we do not need them for serial
   1254  1.1  christos      ports, so supply the standard dummies.  */
   1255  1.1  christos   ser_base_get_tty_state,
   1256  1.1  christos   ser_base_copy_tty_state,
   1257  1.1  christos   ser_base_set_tty_state,
   1258  1.1  christos   ser_base_print_tty_state,
   1259  1.1  christos   ser_base_noflush_set_tty_state,
   1260  1.1  christos   ser_windows_setbaudrate,
   1261  1.1  christos   ser_windows_setstopbits,
   1262  1.5  christos   ser_windows_setparity,
   1263  1.1  christos   ser_windows_drain_output,
   1264  1.1  christos   ser_base_async,
   1265  1.1  christos   ser_windows_read_prim,
   1266  1.1  christos   ser_windows_write_prim,
   1267  1.1  christos   NULL,
   1268  1.1  christos   ser_windows_wait_handle
   1269  1.1  christos };
   1270  1.1  christos 
   1271  1.1  christos /* The dummy serial driver used for terminals.  We only provide the
   1272  1.1  christos    TTY-related methods.  */
   1273  1.1  christos 
   1274  1.1  christos static const struct serial_ops tty_ops =
   1275  1.1  christos {
   1276  1.1  christos   "terminal",
   1277  1.1  christos   NULL,
   1278  1.1  christos   ser_console_close,
   1279  1.1  christos   NULL,
   1280  1.1  christos   NULL,
   1281  1.1  christos   NULL,
   1282  1.1  christos   NULL,
   1283  1.1  christos   NULL,
   1284  1.1  christos   NULL,
   1285  1.1  christos   NULL,
   1286  1.1  christos   ser_console_get_tty_state,
   1287  1.1  christos   ser_base_copy_tty_state,
   1288  1.1  christos   ser_base_set_tty_state,
   1289  1.1  christos   ser_base_print_tty_state,
   1290  1.1  christos   ser_base_noflush_set_tty_state,
   1291  1.1  christos   NULL,
   1292  1.1  christos   NULL,
   1293  1.5  christos   NULL,
   1294  1.1  christos   ser_base_drain_output,
   1295  1.1  christos   NULL,
   1296  1.1  christos   NULL,
   1297  1.1  christos   NULL,
   1298  1.1  christos   NULL,
   1299  1.1  christos   ser_console_wait_handle,
   1300  1.1  christos   ser_console_done_wait_handle
   1301  1.1  christos };
   1302  1.1  christos 
   1303  1.1  christos /* The pipe interface.  */
   1304  1.1  christos 
   1305  1.1  christos static const struct serial_ops pipe_ops =
   1306  1.1  christos {
   1307  1.1  christos   "pipe",
   1308  1.1  christos   pipe_windows_open,
   1309  1.1  christos   pipe_windows_close,
   1310  1.1  christos   pipe_windows_fdopen,
   1311  1.1  christos   ser_base_readchar,
   1312  1.1  christos   ser_base_write,
   1313  1.1  christos   ser_base_flush_output,
   1314  1.1  christos   ser_base_flush_input,
   1315  1.1  christos   ser_base_send_break,
   1316  1.1  christos   ser_base_raw,
   1317  1.1  christos   ser_base_get_tty_state,
   1318  1.1  christos   ser_base_copy_tty_state,
   1319  1.1  christos   ser_base_set_tty_state,
   1320  1.1  christos   ser_base_print_tty_state,
   1321  1.1  christos   ser_base_noflush_set_tty_state,
   1322  1.1  christos   ser_base_setbaudrate,
   1323  1.1  christos   ser_base_setstopbits,
   1324  1.5  christos   ser_base_setparity,
   1325  1.1  christos   ser_base_drain_output,
   1326  1.1  christos   ser_base_async,
   1327  1.1  christos   pipe_windows_read,
   1328  1.1  christos   pipe_windows_write,
   1329  1.1  christos   pipe_avail,
   1330  1.1  christos   pipe_wait_handle,
   1331  1.1  christos   pipe_done_wait_handle
   1332  1.1  christos };
   1333  1.1  christos 
   1334  1.1  christos /* The TCP/UDP socket driver.  */
   1335  1.1  christos 
   1336  1.1  christos static const struct serial_ops tcp_ops =
   1337  1.1  christos {
   1338  1.1  christos   "tcp",
   1339  1.1  christos   net_windows_open,
   1340  1.1  christos   net_windows_close,
   1341  1.1  christos   NULL,
   1342  1.1  christos   ser_base_readchar,
   1343  1.1  christos   ser_base_write,
   1344  1.1  christos   ser_base_flush_output,
   1345  1.1  christos   ser_base_flush_input,
   1346  1.1  christos   ser_tcp_send_break,
   1347  1.1  christos   ser_base_raw,
   1348  1.1  christos   ser_base_get_tty_state,
   1349  1.1  christos   ser_base_copy_tty_state,
   1350  1.1  christos   ser_base_set_tty_state,
   1351  1.1  christos   ser_base_print_tty_state,
   1352  1.1  christos   ser_base_noflush_set_tty_state,
   1353  1.1  christos   ser_base_setbaudrate,
   1354  1.1  christos   ser_base_setstopbits,
   1355  1.5  christos   ser_base_setparity,
   1356  1.1  christos   ser_base_drain_output,
   1357  1.1  christos   ser_base_async,
   1358  1.1  christos   net_read_prim,
   1359  1.1  christos   net_write_prim,
   1360  1.1  christos   NULL,
   1361  1.1  christos   net_windows_wait_handle,
   1362  1.1  christos   net_windows_done_wait_handle
   1363  1.1  christos };
   1364  1.1  christos 
   1365  1.1  christos void
   1366  1.1  christos _initialize_ser_windows (void)
   1367  1.1  christos {
   1368  1.1  christos   WSADATA wsa_data;
   1369  1.1  christos   struct serial_ops *ops;
   1370  1.1  christos 
   1371  1.1  christos   HMODULE hm = NULL;
   1372  1.1  christos 
   1373  1.1  christos   /* First find out if kernel32 exports CancelIo function.  */
   1374  1.1  christos   hm = LoadLibrary ("kernel32.dll");
   1375  1.1  christos   if (hm)
   1376  1.1  christos     {
   1377  1.1  christos       CancelIo = (void *) GetProcAddress (hm, "CancelIo");
   1378  1.1  christos       FreeLibrary (hm);
   1379  1.1  christos     }
   1380  1.1  christos   else
   1381  1.1  christos     CancelIo = NULL;
   1382  1.1  christos 
   1383  1.1  christos   serial_add_interface (&hardwire_ops);
   1384  1.1  christos   serial_add_interface (&tty_ops);
   1385  1.1  christos   serial_add_interface (&pipe_ops);
   1386  1.1  christos 
   1387  1.1  christos   /* If WinSock works, register the TCP/UDP socket driver.  */
   1388  1.1  christos 
   1389  1.1  christos   if (WSAStartup (MAKEWORD (1, 0), &wsa_data) != 0)
   1390  1.1  christos     /* WinSock is unavailable.  */
   1391  1.1  christos     return;
   1392  1.1  christos 
   1393  1.1  christos   serial_add_interface (&tcp_ops);
   1394  1.1  christos }
   1395