1 /* Serial interface for local (hardwired) serial ports on Windows systems
3 Copyright (C) 2006-2022 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
30 #include <sys/types.h>
33 #include "gdbsupport/buildargv.h"
35 struct ser_windows_state
43 /* CancelIo is not available for Windows 95 OS, so we need to use
44 LoadLibrary/GetProcAddress to avoid a startup failure. */
45 #define CancelIo dyn_CancelIo
46 typedef BOOL
WINAPI (CancelIo_ftype
) (HANDLE
);
47 static CancelIo_ftype
*CancelIo
;
49 /* Open up a real live device for serial I/O. */
52 ser_windows_open (struct serial
*scb
, const char *name
)
55 struct ser_windows_state
*state
;
56 COMMTIMEOUTS timeouts
;
58 h
= CreateFile (name
, GENERIC_READ
| GENERIC_WRITE
, 0, NULL
,
59 OPEN_EXISTING
, FILE_FLAG_OVERLAPPED
, NULL
);
60 if (h
== INVALID_HANDLE_VALUE
)
66 scb
->fd
= _open_osfhandle ((intptr_t) h
, O_RDWR
);
73 if (!SetCommMask (h
, EV_RXCHAR
))
79 timeouts
.ReadIntervalTimeout
= MAXDWORD
;
80 timeouts
.ReadTotalTimeoutConstant
= 0;
81 timeouts
.ReadTotalTimeoutMultiplier
= 0;
82 timeouts
.WriteTotalTimeoutConstant
= 0;
83 timeouts
.WriteTotalTimeoutMultiplier
= 0;
84 if (!SetCommTimeouts (h
, &timeouts
))
90 state
= XCNEW (struct ser_windows_state
);
93 /* Create a manual reset event to watch the input buffer. */
94 state
->ov
.hEvent
= CreateEvent (0, TRUE
, FALSE
, 0);
96 /* Create a (currently unused) handle to record exceptions. */
97 state
->except_event
= CreateEvent (0, TRUE
, FALSE
, 0);
102 /* Wait for the output to drain away, as opposed to flushing (discarding)
106 ser_windows_drain_output (struct serial
*scb
)
108 HANDLE h
= (HANDLE
) _get_osfhandle (scb
->fd
);
110 return (FlushFileBuffers (h
) != 0) ? 0 : -1;
114 ser_windows_flush_output (struct serial
*scb
)
116 HANDLE h
= (HANDLE
) _get_osfhandle (scb
->fd
);
118 return (PurgeComm (h
, PURGE_TXCLEAR
) != 0) ? 0 : -1;
122 ser_windows_flush_input (struct serial
*scb
)
124 HANDLE h
= (HANDLE
) _get_osfhandle (scb
->fd
);
126 return (PurgeComm (h
, PURGE_RXCLEAR
) != 0) ? 0 : -1;
130 ser_windows_send_break (struct serial
*scb
)
132 HANDLE h
= (HANDLE
) _get_osfhandle (scb
->fd
);
134 if (SetCommBreak (h
) == 0)
137 /* Delay for 250 milliseconds. */
140 if (ClearCommBreak (h
))
147 ser_windows_raw (struct serial
*scb
)
149 HANDLE h
= (HANDLE
) _get_osfhandle (scb
->fd
);
152 if (GetCommState (h
, &state
) == 0)
155 state
.fOutxCtsFlow
= FALSE
;
156 state
.fOutxDsrFlow
= FALSE
;
157 state
.fDtrControl
= DTR_CONTROL_ENABLE
;
158 state
.fDsrSensitivity
= FALSE
;
162 state
.fAbortOnError
= FALSE
;
165 if (SetCommState (h
, &state
) == 0)
166 warning (_("SetCommState failed"));
170 ser_windows_setstopbits (struct serial
*scb
, int num
)
172 HANDLE h
= (HANDLE
) _get_osfhandle (scb
->fd
);
175 if (GetCommState (h
, &state
) == 0)
180 case SERIAL_1_STOPBITS
:
181 state
.StopBits
= ONESTOPBIT
;
183 case SERIAL_1_AND_A_HALF_STOPBITS
:
184 state
.StopBits
= ONE5STOPBITS
;
186 case SERIAL_2_STOPBITS
:
187 state
.StopBits
= TWOSTOPBITS
;
193 return (SetCommState (h
, &state
) != 0) ? 0 : -1;
196 /* Implement the "setparity" serial_ops callback. */
199 ser_windows_setparity (struct serial
*scb
, int parity
)
201 HANDLE h
= (HANDLE
) _get_osfhandle (scb
->fd
);
204 if (GetCommState (h
, &state
) == 0)
210 state
.Parity
= NOPARITY
;
211 state
.fParity
= FALSE
;
214 state
.Parity
= ODDPARITY
;
215 state
.fParity
= TRUE
;
218 state
.Parity
= EVENPARITY
;
219 state
.fParity
= TRUE
;
222 internal_warning (__FILE__
, __LINE__
,
223 "Incorrect parity value: %d", parity
);
227 return (SetCommState (h
, &state
) != 0) ? 0 : -1;
231 ser_windows_setbaudrate (struct serial
*scb
, int rate
)
233 HANDLE h
= (HANDLE
) _get_osfhandle (scb
->fd
);
236 if (GetCommState (h
, &state
) == 0)
239 state
.BaudRate
= rate
;
241 return (SetCommState (h
, &state
) != 0) ? 0 : -1;
245 ser_windows_close (struct serial
*scb
)
247 struct ser_windows_state
*state
;
249 /* Stop any pending selects. On Windows 95 OS, CancelIo function does
250 not exist. In that case, it can be replaced by a call to CloseHandle,
251 but this is not necessary here as we do close the Windows handle
252 by calling close (scb->fd) below. */
254 CancelIo ((HANDLE
) _get_osfhandle (scb
->fd
));
255 state
= (struct ser_windows_state
*) scb
->state
;
256 CloseHandle (state
->ov
.hEvent
);
257 CloseHandle (state
->except_event
);
269 ser_windows_wait_handle (struct serial
*scb
, HANDLE
*read
, HANDLE
*except
)
271 struct ser_windows_state
*state
;
274 HANDLE h
= (HANDLE
) _get_osfhandle (scb
->fd
);
276 state
= (struct ser_windows_state
*) scb
->state
;
278 *except
= state
->except_event
;
279 *read
= state
->ov
.hEvent
;
281 if (state
->in_progress
)
284 /* Reset the mask - we are only interested in any characters which
285 arrive after this point, not characters which might have arrived
286 and already been read. */
288 /* This really, really shouldn't be necessary - just the second one.
289 But otherwise an internal flag for EV_RXCHAR does not get
290 cleared, and we get a duplicated event, if the last batch
291 of characters included at least two arriving close together. */
292 if (!SetCommMask (h
, 0))
293 warning (_("ser_windows_wait_handle: reseting mask failed"));
295 if (!SetCommMask (h
, EV_RXCHAR
))
296 warning (_("ser_windows_wait_handle: reseting mask failed (2)"));
298 /* There's a potential race condition here; we must check cbInQue
299 and not wait if that's nonzero. */
301 ClearCommError (h
, &errors
, &status
);
302 if (status
.cbInQue
> 0)
304 SetEvent (state
->ov
.hEvent
);
308 state
->in_progress
= 1;
309 ResetEvent (state
->ov
.hEvent
);
310 state
->lastCommMask
= -2;
311 if (WaitCommEvent (h
, &state
->lastCommMask
, &state
->ov
))
313 gdb_assert (state
->lastCommMask
& EV_RXCHAR
);
314 SetEvent (state
->ov
.hEvent
);
317 gdb_assert (GetLastError () == ERROR_IO_PENDING
);
321 ser_windows_read_prim (struct serial
*scb
, size_t count
)
323 struct ser_windows_state
*state
;
328 state
= (struct ser_windows_state
*) scb
->state
;
329 if (state
->in_progress
)
331 WaitForSingleObject (state
->ov
.hEvent
, INFINITE
);
332 state
->in_progress
= 0;
333 ResetEvent (state
->ov
.hEvent
);
336 memset (&ov
, 0, sizeof (OVERLAPPED
));
337 ov
.hEvent
= CreateEvent (0, FALSE
, FALSE
, 0);
338 h
= (HANDLE
) _get_osfhandle (scb
->fd
);
340 if (!ReadFile (h
, scb
->buf
, /* count */ 1, &bytes_read
, &ov
))
342 if (GetLastError () != ERROR_IO_PENDING
343 || !GetOverlappedResult (h
, &ov
, &bytes_read
, TRUE
))
347 CloseHandle (ov
.hEvent
);
352 ser_windows_write_prim (struct serial
*scb
, const void *buf
, size_t len
)
358 memset (&ov
, 0, sizeof (OVERLAPPED
));
359 ov
.hEvent
= CreateEvent (0, FALSE
, FALSE
, 0);
360 h
= (HANDLE
) _get_osfhandle (scb
->fd
);
361 if (!WriteFile (h
, buf
, len
, &bytes_written
, &ov
))
363 if (GetLastError () != ERROR_IO_PENDING
364 || !GetOverlappedResult (h
, &ov
, &bytes_written
, TRUE
))
368 CloseHandle (ov
.hEvent
);
369 return bytes_written
;
372 /* On Windows, gdb_select is implemented using WaitForMulpleObjects.
373 A "select thread" is created for each file descriptor. These
374 threads looks for activity on the corresponding descriptor, using
375 whatever techniques are appropriate for the descriptor type. When
376 that activity occurs, the thread signals an appropriate event,
377 which wakes up WaitForMultipleObjects.
379 Each select thread is in one of two states: stopped or started.
380 Select threads begin in the stopped state. When gdb_select is
381 called, threads corresponding to the descriptors of interest are
382 started by calling a wait_handle function. Each thread that
383 notices activity signals the appropriate event and then reenters
384 the stopped state. Before gdb_select returns it calls the
385 wait_handle_done functions, which return the threads to the stopped
388 enum select_thread_state
{
393 struct ser_console_state
395 /* Signaled by the select thread to indicate that data is available
396 on the file descriptor. */
398 /* Signaled by the select thread to indicate that an exception has
399 occurred on the file descriptor. */
401 /* Signaled by the select thread to indicate that it has entered the
402 started state. HAVE_STARTED and HAVE_STOPPED are never signaled
405 /* Signaled by the select thread to indicate that it has stopped,
406 either because data is available (and READ_EVENT is signaled),
407 because an exception has occurred (and EXCEPT_EVENT is signaled),
408 or because STOP_SELECT was signaled. */
411 /* Signaled by the main program to tell the select thread to enter
412 the started state. */
414 /* Signaled by the main program to tell the select thread to enter
415 the stopped state. */
417 /* Signaled by the main program to tell the select thread to
421 /* The handle for the select thread. */
423 /* The state of the select thread. This field is only accessed in
424 the main program, never by the select thread itself. */
425 enum select_thread_state thread_state
;
428 /* Called by a select thread to enter the stopped state. This
429 function does not return until the thread has re-entered the
432 select_thread_wait (struct ser_console_state
*state
)
434 HANDLE wait_events
[2];
436 /* There are two things that can wake us up: a request that we enter
437 the started state, or that we exit this thread. */
438 wait_events
[0] = state
->start_select
;
439 wait_events
[1] = state
->exit_select
;
440 if (WaitForMultipleObjects (2, wait_events
, FALSE
, INFINITE
)
442 /* Either the EXIT_SELECT event was signaled (requesting that the
443 thread exit) or an error has occurred. In either case, we exit
447 /* We are now in the started state. */
448 SetEvent (state
->have_started
);
451 typedef DWORD
WINAPI (*thread_fn_type
)(void *);
453 /* Create a new select thread for SCB executing THREAD_FN. The STATE
454 will be filled in by this function before return. */
456 create_select_thread (thread_fn_type thread_fn
,
458 struct ser_console_state
*state
)
462 /* Create all of the events. These are all auto-reset events. */
463 state
->read_event
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
464 state
->except_event
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
465 state
->have_started
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
466 state
->have_stopped
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
467 state
->start_select
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
468 state
->stop_select
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
469 state
->exit_select
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
471 state
->thread
= CreateThread (NULL
, 0, thread_fn
, scb
, 0, &threadId
);
472 /* The thread begins in the stopped state. */
473 state
->thread_state
= STS_STOPPED
;
476 /* Destroy the select thread indicated by STATE. */
478 destroy_select_thread (struct ser_console_state
*state
)
480 /* Ask the thread to exit. */
481 SetEvent (state
->exit_select
);
482 /* Wait until it does. */
483 WaitForSingleObject (state
->thread
, INFINITE
);
485 /* Destroy the events. */
486 CloseHandle (state
->read_event
);
487 CloseHandle (state
->except_event
);
488 CloseHandle (state
->have_started
);
489 CloseHandle (state
->have_stopped
);
490 CloseHandle (state
->start_select
);
491 CloseHandle (state
->stop_select
);
492 CloseHandle (state
->exit_select
);
495 /* Called by gdb_select to start the select thread indicated by STATE.
496 This function does not return until the thread has started. */
498 start_select_thread (struct ser_console_state
*state
)
500 /* Ask the thread to start. */
501 SetEvent (state
->start_select
);
502 /* Wait until it does. */
503 WaitForSingleObject (state
->have_started
, INFINITE
);
504 /* The thread is now started. */
505 state
->thread_state
= STS_STARTED
;
508 /* Called by gdb_select to stop the select thread indicated by STATE.
509 This function does not return until the thread has stopped. */
511 stop_select_thread (struct ser_console_state
*state
)
513 /* If the thread is already in the stopped state, we have nothing to
514 do. Some of the wait_handle functions avoid calling
515 start_select_thread if they notice activity on the relevant file
516 descriptors. The wait_handle_done functions still call
517 stop_select_thread -- but it is already stopped. */
518 if (state
->thread_state
!= STS_STARTED
)
520 /* Ask the thread to stop. */
521 SetEvent (state
->stop_select
);
522 /* Wait until it does. */
523 WaitForSingleObject (state
->have_stopped
, INFINITE
);
524 /* The thread is now stopped. */
525 state
->thread_state
= STS_STOPPED
;
529 console_select_thread (void *arg
)
531 struct serial
*scb
= (struct serial
*) arg
;
532 struct ser_console_state
*state
;
536 state
= (struct ser_console_state
*) scb
->state
;
537 h
= (HANDLE
) _get_osfhandle (scb
->fd
);
541 HANDLE wait_events
[2];
545 select_thread_wait (state
);
549 wait_events
[0] = state
->stop_select
;
552 event_index
= WaitForMultipleObjects (2, wait_events
,
555 if (event_index
== WAIT_OBJECT_0
556 || WaitForSingleObject (state
->stop_select
, 0) == WAIT_OBJECT_0
)
559 if (event_index
!= WAIT_OBJECT_0
+ 1)
561 /* Wait must have failed; assume an error has occured, e.g.
562 the handle has been closed. */
563 SetEvent (state
->except_event
);
567 /* We've got a pending event on the console. See if it's
569 if (!PeekConsoleInput (h
, &record
, 1, &n_records
) || n_records
!= 1)
571 /* Something went wrong. Maybe the console is gone. */
572 SetEvent (state
->except_event
);
576 if (record
.EventType
== KEY_EVENT
&& record
.Event
.KeyEvent
.bKeyDown
)
578 WORD keycode
= record
.Event
.KeyEvent
.wVirtualKeyCode
;
580 /* Ignore events containing only control keys. We must
581 recognize "enhanced" keys which we are interested in
582 reading via getch, if they do not map to ASCII. But we
583 do not want to report input available for e.g. the
584 control key alone. */
586 if (record
.Event
.KeyEvent
.uChar
.AsciiChar
!= 0
587 || keycode
== VK_PRIOR
588 || keycode
== VK_NEXT
590 || keycode
== VK_HOME
591 || keycode
== VK_LEFT
593 || keycode
== VK_RIGHT
594 || keycode
== VK_DOWN
595 || keycode
== VK_INSERT
596 || keycode
== VK_DELETE
)
598 /* This is really a keypress. */
599 SetEvent (state
->read_event
);
603 else if (record
.EventType
== MOUSE_EVENT
)
605 SetEvent (state
->read_event
);
609 /* Otherwise discard it and wait again. */
610 ReadConsoleInput (h
, &record
, 1, &n_records
);
613 SetEvent(state
->have_stopped
);
621 if (PeekNamedPipe ((HANDLE
) _get_osfhandle (fd
), NULL
, 0, NULL
, NULL
, NULL
))
630 if (GetFileType ((HANDLE
) _get_osfhandle (fd
)) == FILE_TYPE_DISK
)
637 pipe_select_thread (void *arg
)
639 struct serial
*scb
= (struct serial
*) arg
;
640 struct ser_console_state
*state
;
643 state
= (struct ser_console_state
*) scb
->state
;
644 h
= (HANDLE
) _get_osfhandle (scb
->fd
);
650 select_thread_wait (state
);
652 /* Wait for something to happen on the pipe. */
655 if (!PeekNamedPipe (h
, NULL
, 0, NULL
, &n_avail
, NULL
))
657 SetEvent (state
->except_event
);
663 SetEvent (state
->read_event
);
667 /* Delay 10ms before checking again, but allow the stop
669 if (WaitForSingleObject (state
->stop_select
, 10) == WAIT_OBJECT_0
)
673 SetEvent (state
->have_stopped
);
679 file_select_thread (void *arg
)
681 struct serial
*scb
= (struct serial
*) arg
;
682 struct ser_console_state
*state
;
685 state
= (struct ser_console_state
*) scb
->state
;
686 h
= (HANDLE
) _get_osfhandle (scb
->fd
);
690 select_thread_wait (state
);
692 if (SetFilePointer (h
, 0, NULL
, FILE_CURRENT
)
693 == INVALID_SET_FILE_POINTER
)
694 SetEvent (state
->except_event
);
696 SetEvent (state
->read_event
);
698 SetEvent (state
->have_stopped
);
704 ser_console_wait_handle (struct serial
*scb
, HANDLE
*read
, HANDLE
*except
)
706 struct ser_console_state
*state
= (struct ser_console_state
*) scb
->state
;
710 thread_fn_type thread_fn
;
713 is_tty
= isatty (scb
->fd
);
714 if (!is_tty
&& !fd_is_file (scb
->fd
) && !fd_is_pipe (scb
->fd
))
721 state
= XCNEW (struct ser_console_state
);
725 thread_fn
= console_select_thread
;
726 else if (fd_is_pipe (scb
->fd
))
727 thread_fn
= pipe_select_thread
;
729 thread_fn
= file_select_thread
;
731 create_select_thread (thread_fn
, scb
, state
);
734 *read
= state
->read_event
;
735 *except
= state
->except_event
;
737 /* Start from a blank state. */
738 ResetEvent (state
->read_event
);
739 ResetEvent (state
->except_event
);
740 ResetEvent (state
->stop_select
);
742 /* First check for a key already in the buffer. If there is one,
743 we don't need a thread. This also catches the second key of
744 multi-character returns from getch, for instance for arrow
745 keys. The second half is in a C library internal buffer,
746 and PeekConsoleInput will not find it. */
749 SetEvent (state
->read_event
);
753 /* Otherwise, start the select thread. */
754 start_select_thread (state
);
758 ser_console_done_wait_handle (struct serial
*scb
)
760 struct ser_console_state
*state
= (struct ser_console_state
*) scb
->state
;
765 stop_select_thread (state
);
769 ser_console_close (struct serial
*scb
)
771 struct ser_console_state
*state
= (struct ser_console_state
*) scb
->state
;
775 destroy_select_thread (state
);
780 struct ser_console_ttystate
785 static serial_ttystate
786 ser_console_get_tty_state (struct serial
*scb
)
788 if (isatty (scb
->fd
))
790 struct ser_console_ttystate
*state
;
792 state
= XNEW (struct ser_console_ttystate
);
802 /* Since we use the pipe_select_thread for our select emulation,
803 we need to place the state structure it requires at the front
805 struct ser_console_state wait
;
807 /* The pex obj for our (one-stage) pipeline. */
810 /* Streams for the pipeline's input and output. */
811 FILE *input
, *output
;
814 static struct pipe_state
*
815 make_pipe_state (void)
817 struct pipe_state
*ps
= XCNEW (struct pipe_state
);
819 ps
->wait
.read_event
= INVALID_HANDLE_VALUE
;
820 ps
->wait
.except_event
= INVALID_HANDLE_VALUE
;
821 ps
->wait
.start_select
= INVALID_HANDLE_VALUE
;
822 ps
->wait
.stop_select
= INVALID_HANDLE_VALUE
;
828 free_pipe_state (struct pipe_state
*ps
)
830 int saved_errno
= errno
;
832 if (ps
->wait
.read_event
!= INVALID_HANDLE_VALUE
)
833 destroy_select_thread (&ps
->wait
);
835 /* Close the pipe to the child. We must close the pipe before
836 calling pex_free because pex_free will wait for the child to exit
837 and the child will not exit until the pipe is closed. */
843 /* pex_free closes ps->output. */
853 struct pipe_state_destroyer
855 void operator() (pipe_state
*ps
) const
857 free_pipe_state (ps
);
861 typedef std::unique_ptr
<pipe_state
, pipe_state_destroyer
> pipe_state_up
;
864 pipe_windows_open (struct serial
*scb
, const char *name
)
869 error_no_arg (_("child command"));
871 gdb_argv
argv (name
);
873 if (! argv
[0] || argv
[0][0] == '\0')
874 error (_("missing child command"));
876 pipe_state_up
ps (make_pipe_state ());
878 ps
->pex
= pex_init (PEX_USE_PIPES
, "target remote pipe", NULL
);
881 ps
->input
= pex_input_pipe (ps
->pex
, 1);
888 = pex_run (ps
->pex
, PEX_SEARCH
| PEX_BINARY_INPUT
| PEX_BINARY_OUTPUT
889 | PEX_STDERR_TO_PIPE
,
890 argv
[0], argv
.get (), NULL
, NULL
,
895 /* Our caller expects us to return -1, but all they'll do with
896 it generally is print the message based on errno. We have
897 all the same information here, plus err_msg provided by
898 pex_run, so we just raise the error here. */
900 error (_("error starting child process '%s': %s: %s"),
901 name
, err_msg
, safe_strerror (err
));
903 error (_("error starting child process '%s': %s"),
908 ps
->output
= pex_read_output (ps
->pex
, 1);
911 scb
->fd
= fileno (ps
->output
);
913 pex_stderr
= pex_read_err (ps
->pex
, 1);
916 scb
->error_fd
= fileno (pex_stderr
);
918 scb
->state
= ps
.release ();
924 pipe_windows_fdopen (struct serial
*scb
, int fd
)
926 struct pipe_state
*ps
;
928 ps
= make_pipe_state ();
930 ps
->input
= fdopen (fd
, "r+");
934 ps
->output
= fdopen (fd
, "r+");
939 scb
->state
= (void *) ps
;
944 free_pipe_state (ps
);
949 pipe_windows_close (struct serial
*scb
)
951 struct pipe_state
*ps
= (struct pipe_state
*) scb
->state
;
953 /* In theory, we should try to kill the subprocess here, but the pex
954 interface doesn't give us enough information to do that. Usually
955 closing the input pipe will get the message across. */
957 free_pipe_state (ps
);
962 pipe_windows_read (struct serial
*scb
, size_t count
)
964 HANDLE pipeline_out
= (HANDLE
) _get_osfhandle (scb
->fd
);
968 if (pipeline_out
== INVALID_HANDLE_VALUE
)
971 if (! PeekNamedPipe (pipeline_out
, NULL
, 0, NULL
, &available
, NULL
))
974 if (count
> available
)
977 if (! ReadFile (pipeline_out
, scb
->buf
, count
, &bytes_read
, NULL
))
985 pipe_windows_write (struct serial
*scb
, const void *buf
, size_t count
)
987 struct pipe_state
*ps
= (struct pipe_state
*) scb
->state
;
991 int pipeline_in_fd
= fileno (ps
->input
);
992 if (pipeline_in_fd
< 0)
995 pipeline_in
= (HANDLE
) _get_osfhandle (pipeline_in_fd
);
996 if (pipeline_in
== INVALID_HANDLE_VALUE
)
999 if (! WriteFile (pipeline_in
, buf
, count
, &written
, NULL
))
1007 pipe_wait_handle (struct serial
*scb
, HANDLE
*read
, HANDLE
*except
)
1009 struct pipe_state
*ps
= (struct pipe_state
*) scb
->state
;
1011 /* Have we allocated our events yet? */
1012 if (ps
->wait
.read_event
== INVALID_HANDLE_VALUE
)
1013 /* Start the thread. */
1014 create_select_thread (pipe_select_thread
, scb
, &ps
->wait
);
1016 *read
= ps
->wait
.read_event
;
1017 *except
= ps
->wait
.except_event
;
1019 /* Start from a blank state. */
1020 ResetEvent (ps
->wait
.read_event
);
1021 ResetEvent (ps
->wait
.except_event
);
1022 ResetEvent (ps
->wait
.stop_select
);
1024 start_select_thread (&ps
->wait
);
1028 pipe_done_wait_handle (struct serial
*scb
)
1030 struct pipe_state
*ps
= (struct pipe_state
*) scb
->state
;
1032 /* Have we allocated our events yet? */
1033 if (ps
->wait
.read_event
== INVALID_HANDLE_VALUE
)
1036 stop_select_thread (&ps
->wait
);
1040 pipe_avail (struct serial
*scb
, int fd
)
1042 HANDLE h
= (HANDLE
) _get_osfhandle (fd
);
1044 BOOL r
= PeekNamedPipe (h
, NULL
, 0, NULL
, &numBytes
, NULL
);
1052 gdb_pipe (int pdes
[2])
1054 if (_pipe (pdes
, 512, _O_BINARY
| _O_NOINHERIT
) == -1)
1059 struct net_windows_state
1061 struct ser_console_state base
;
1066 /* Check whether the socket has any pending data to be read. If so,
1067 set the select thread's read event. On error, set the select
1068 thread's except event. If any event was set, return true,
1069 otherwise return false. */
1072 net_windows_socket_check_pending (struct serial
*scb
)
1074 struct net_windows_state
*state
= (struct net_windows_state
*) scb
->state
;
1075 unsigned long available
;
1077 if (ioctlsocket (scb
->fd
, FIONREAD
, &available
) != 0)
1079 /* The socket closed, or some other error. */
1080 SetEvent (state
->base
.except_event
);
1083 else if (available
> 0)
1085 SetEvent (state
->base
.read_event
);
1093 net_windows_select_thread (void *arg
)
1095 struct serial
*scb
= (struct serial
*) arg
;
1096 struct net_windows_state
*state
;
1099 state
= (struct net_windows_state
*) scb
->state
;
1103 HANDLE wait_events
[2];
1104 WSANETWORKEVENTS events
;
1106 select_thread_wait (&state
->base
);
1108 wait_events
[0] = state
->base
.stop_select
;
1109 wait_events
[1] = state
->sock_event
;
1111 /* Wait for something to happen on the socket. */
1114 event_index
= WaitForMultipleObjects (2, wait_events
, FALSE
, INFINITE
);
1116 if (event_index
== WAIT_OBJECT_0
1117 || WaitForSingleObject (state
->base
.stop_select
, 0) == WAIT_OBJECT_0
)
1119 /* We have been requested to stop. */
1123 if (event_index
!= WAIT_OBJECT_0
+ 1)
1125 /* Some error has occured. Assume that this is an error
1127 SetEvent (state
->base
.except_event
);
1131 /* Enumerate the internal network events, and reset the
1132 object that signalled us to catch the next event. */
1133 if (WSAEnumNetworkEvents (scb
->fd
, state
->sock_event
, &events
) != 0)
1135 /* Something went wrong. Maybe the socket is gone. */
1136 SetEvent (state
->base
.except_event
);
1140 if (events
.lNetworkEvents
& FD_READ
)
1142 if (net_windows_socket_check_pending (scb
))
1145 /* Spurious wakeup. That is, the socket's event was
1146 signalled before we last called recv. */
1149 if (events
.lNetworkEvents
& FD_CLOSE
)
1151 SetEvent (state
->base
.except_event
);
1156 SetEvent (state
->base
.have_stopped
);
1162 net_windows_wait_handle (struct serial
*scb
, HANDLE
*read
, HANDLE
*except
)
1164 struct net_windows_state
*state
= (struct net_windows_state
*) scb
->state
;
1166 /* Start from a clean slate. */
1167 ResetEvent (state
->base
.read_event
);
1168 ResetEvent (state
->base
.except_event
);
1169 ResetEvent (state
->base
.stop_select
);
1171 *read
= state
->base
.read_event
;
1172 *except
= state
->base
.except_event
;
1174 /* Check any pending events. Otherwise, start the select
1176 if (!net_windows_socket_check_pending (scb
))
1177 start_select_thread (&state
->base
);
1181 net_windows_done_wait_handle (struct serial
*scb
)
1183 struct net_windows_state
*state
= (struct net_windows_state
*) scb
->state
;
1185 stop_select_thread (&state
->base
);
1189 net_windows_open (struct serial
*scb
, const char *name
)
1191 struct net_windows_state
*state
;
1194 ret
= net_open (scb
, name
);
1198 state
= XCNEW (struct net_windows_state
);
1201 /* Associate an event with the socket. */
1202 state
->sock_event
= CreateEvent (0, TRUE
, FALSE
, 0);
1203 WSAEventSelect (scb
->fd
, state
->sock_event
, FD_READ
| FD_CLOSE
);
1205 /* Start the thread. */
1206 create_select_thread (net_windows_select_thread
, scb
, &state
->base
);
1213 net_windows_close (struct serial
*scb
)
1215 struct net_windows_state
*state
= (struct net_windows_state
*) scb
->state
;
1217 destroy_select_thread (&state
->base
);
1218 CloseHandle (state
->sock_event
);
1225 /* The serial port driver. */
1227 static const struct serial_ops hardwire_ops
=
1235 ser_windows_flush_output
,
1236 ser_windows_flush_input
,
1237 ser_windows_send_break
,
1239 /* These are only used for stdin; we do not need them for serial
1240 ports, so supply the standard dummies. */
1241 ser_base_get_tty_state
,
1242 ser_base_copy_tty_state
,
1243 ser_base_set_tty_state
,
1244 ser_base_print_tty_state
,
1245 ser_windows_setbaudrate
,
1246 ser_windows_setstopbits
,
1247 ser_windows_setparity
,
1248 ser_windows_drain_output
,
1250 ser_windows_read_prim
,
1251 ser_windows_write_prim
,
1253 ser_windows_wait_handle
1256 /* The dummy serial driver used for terminals. We only provide the
1257 TTY-related methods. */
1259 static const struct serial_ops tty_ops
=
1271 ser_console_get_tty_state
,
1272 ser_base_copy_tty_state
,
1273 ser_base_set_tty_state
,
1274 ser_base_print_tty_state
,
1278 ser_base_drain_output
,
1283 ser_console_wait_handle
,
1284 ser_console_done_wait_handle
1287 /* The pipe interface. */
1289 static const struct serial_ops pipe_ops
=
1294 pipe_windows_fdopen
,
1297 ser_base_flush_output
,
1298 ser_base_flush_input
,
1299 ser_base_send_break
,
1301 ser_base_get_tty_state
,
1302 ser_base_copy_tty_state
,
1303 ser_base_set_tty_state
,
1304 ser_base_print_tty_state
,
1305 ser_base_setbaudrate
,
1306 ser_base_setstopbits
,
1308 ser_base_drain_output
,
1314 pipe_done_wait_handle
1317 /* The TCP/UDP socket driver. */
1319 static const struct serial_ops tcp_ops
=
1327 ser_base_flush_output
,
1328 ser_base_flush_input
,
1331 ser_base_get_tty_state
,
1332 ser_base_copy_tty_state
,
1333 ser_base_set_tty_state
,
1334 ser_base_print_tty_state
,
1335 ser_base_setbaudrate
,
1336 ser_base_setstopbits
,
1338 ser_base_drain_output
,
1343 net_windows_wait_handle
,
1344 net_windows_done_wait_handle
1347 void _initialize_ser_windows ();
1349 _initialize_ser_windows ()
1355 /* First find out if kernel32 exports CancelIo function. */
1356 hm
= LoadLibrary ("kernel32.dll");
1359 CancelIo
= (CancelIo_ftype
*) GetProcAddress (hm
, "CancelIo");
1365 serial_add_interface (&hardwire_ops
);
1366 serial_add_interface (&tty_ops
);
1367 serial_add_interface (&pipe_ops
);
1369 /* If WinSock works, register the TCP/UDP socket driver. */
1371 if (WSAStartup (MAKEWORD (1, 0), &wsa_data
) != 0)
1372 /* WinSock is unavailable. */
1375 serial_add_interface (&tcp_ops
);