1 /* Serial interface for local (hardwired) serial ports on Windows systems
3 Copyright (C) 2006-2016 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>
34 void _initialize_ser_windows (void);
36 struct ser_windows_state
44 /* CancelIo is not available for Windows 95 OS, so we need to use
45 LoadLibrary/GetProcAddress to avoid a startup failure. */
46 #define CancelIo dyn_CancelIo
47 typedef BOOL WINAPI (CancelIo_ftype) (HANDLE);
48 static CancelIo_ftype *CancelIo;
50 /* Open up a real live device for serial I/O. */
53 ser_windows_open (struct serial *scb, const char *name)
56 struct ser_windows_state *state;
57 COMMTIMEOUTS timeouts;
59 h = CreateFile (name, GENERIC_READ | GENERIC_WRITE, 0, NULL,
60 OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL);
61 if (h == INVALID_HANDLE_VALUE)
67 scb->fd = _open_osfhandle ((intptr_t) h, O_RDWR);
74 if (!SetCommMask (h, EV_RXCHAR))
80 timeouts.ReadIntervalTimeout = MAXDWORD;
81 timeouts.ReadTotalTimeoutConstant = 0;
82 timeouts.ReadTotalTimeoutMultiplier = 0;
83 timeouts.WriteTotalTimeoutConstant = 0;
84 timeouts.WriteTotalTimeoutMultiplier = 0;
85 if (!SetCommTimeouts (h, &timeouts))
91 state = XCNEW (struct ser_windows_state);
94 /* Create a manual reset event to watch the input buffer. */
95 state->ov.hEvent = CreateEvent (0, TRUE, FALSE, 0);
97 /* Create a (currently unused) handle to record exceptions. */
98 state->except_event = CreateEvent (0, TRUE, FALSE, 0);
103 /* Wait for the output to drain away, as opposed to flushing (discarding)
107 ser_windows_drain_output (struct serial *scb)
109 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
111 return (FlushFileBuffers (h) != 0) ? 0 : -1;
115 ser_windows_flush_output (struct serial *scb)
117 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
119 return (PurgeComm (h, PURGE_TXCLEAR) != 0) ? 0 : -1;
123 ser_windows_flush_input (struct serial *scb)
125 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
127 return (PurgeComm (h, PURGE_RXCLEAR) != 0) ? 0 : -1;
131 ser_windows_send_break (struct serial *scb)
133 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
135 if (SetCommBreak (h) == 0)
138 /* Delay for 250 milliseconds. */
141 if (ClearCommBreak (h))
148 ser_windows_raw (struct serial *scb)
150 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
153 if (GetCommState (h, &state) == 0)
156 state.fOutxCtsFlow = FALSE;
157 state.fOutxDsrFlow = FALSE;
158 state.fDtrControl = DTR_CONTROL_ENABLE;
159 state.fDsrSensitivity = FALSE;
163 state.fAbortOnError = FALSE;
166 scb->current_timeout = 0;
168 if (SetCommState (h, &state) == 0)
169 warning (_("SetCommState failed"));
173 ser_windows_setstopbits (struct serial *scb, int num)
175 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
178 if (GetCommState (h, &state) == 0)
183 case SERIAL_1_STOPBITS:
184 state.StopBits = ONESTOPBIT;
186 case SERIAL_1_AND_A_HALF_STOPBITS:
187 state.StopBits = ONE5STOPBITS;
189 case SERIAL_2_STOPBITS:
190 state.StopBits = TWOSTOPBITS;
196 return (SetCommState (h, &state) != 0) ? 0 : -1;
199 /* Implement the "setparity" serial_ops callback. */
202 ser_windows_setparity (struct serial *scb, int parity)
204 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
207 if (GetCommState (h, &state) == 0)
213 state.Parity = NOPARITY;
214 state.fParity = FALSE;
217 state.Parity = ODDPARITY;
218 state.fParity = TRUE;
221 state.Parity = EVENPARITY;
222 state.fParity = TRUE;
225 internal_warning (__FILE__, __LINE__,
226 "Incorrect parity value: %d", parity);
230 return (SetCommState (h, &state) != 0) ? 0 : -1;
234 ser_windows_setbaudrate (struct serial *scb, int rate)
236 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
239 if (GetCommState (h, &state) == 0)
242 state.BaudRate = rate;
244 return (SetCommState (h, &state) != 0) ? 0 : -1;
248 ser_windows_close (struct serial *scb)
250 struct ser_windows_state *state;
252 /* Stop any pending selects. On Windows 95 OS, CancelIo function does
253 not exist. In that case, it can be replaced by a call to CloseHandle,
254 but this is not necessary here as we do close the Windows handle
255 by calling close (scb->fd) below. */
257 CancelIo ((HANDLE) _get_osfhandle (scb->fd));
258 state = (struct ser_windows_state *) scb->state;
259 CloseHandle (state->ov.hEvent);
260 CloseHandle (state->except_event);
272 ser_windows_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
274 struct ser_windows_state *state;
277 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
279 state = (struct ser_windows_state *) scb->state;
281 *except = state->except_event;
282 *read = state->ov.hEvent;
284 if (state->in_progress)
287 /* Reset the mask - we are only interested in any characters which
288 arrive after this point, not characters which might have arrived
289 and already been read. */
291 /* This really, really shouldn't be necessary - just the second one.
292 But otherwise an internal flag for EV_RXCHAR does not get
293 cleared, and we get a duplicated event, if the last batch
294 of characters included at least two arriving close together. */
295 if (!SetCommMask (h, 0))
296 warning (_("ser_windows_wait_handle: reseting mask failed"));
298 if (!SetCommMask (h, EV_RXCHAR))
299 warning (_("ser_windows_wait_handle: reseting mask failed (2)"));
301 /* There's a potential race condition here; we must check cbInQue
302 and not wait if that's nonzero. */
304 ClearCommError (h, &errors, &status);
305 if (status.cbInQue > 0)
307 SetEvent (state->ov.hEvent);
311 state->in_progress = 1;
312 ResetEvent (state->ov.hEvent);
313 state->lastCommMask = -2;
314 if (WaitCommEvent (h, &state->lastCommMask, &state->ov))
316 gdb_assert (state->lastCommMask & EV_RXCHAR);
317 SetEvent (state->ov.hEvent);
320 gdb_assert (GetLastError () == ERROR_IO_PENDING);
324 ser_windows_read_prim (struct serial *scb, size_t count)
326 struct ser_windows_state *state;
328 DWORD bytes_read, bytes_read_tmp;
332 state = (struct ser_windows_state *) scb->state;
333 if (state->in_progress)
335 WaitForSingleObject (state->ov.hEvent, INFINITE);
336 state->in_progress = 0;
337 ResetEvent (state->ov.hEvent);
340 memset (&ov, 0, sizeof (OVERLAPPED));
341 ov.hEvent = CreateEvent (0, FALSE, FALSE, 0);
342 h = (HANDLE) _get_osfhandle (scb->fd);
344 if (!ReadFile (h, scb->buf, /* count */ 1, &bytes_read, &ov))
346 if (GetLastError () != ERROR_IO_PENDING
347 || !GetOverlappedResult (h, &ov, &bytes_read, TRUE))
351 CloseHandle (ov.hEvent);
356 ser_windows_write_prim (struct serial *scb, const void *buf, size_t len)
358 struct ser_windows_state *state;
363 memset (&ov, 0, sizeof (OVERLAPPED));
364 ov.hEvent = CreateEvent (0, FALSE, FALSE, 0);
365 h = (HANDLE) _get_osfhandle (scb->fd);
366 if (!WriteFile (h, buf, len, &bytes_written, &ov))
368 if (GetLastError () != ERROR_IO_PENDING
369 || !GetOverlappedResult (h, &ov, &bytes_written, TRUE))
373 CloseHandle (ov.hEvent);
374 return bytes_written;
377 /* On Windows, gdb_select is implemented using WaitForMulpleObjects.
378 A "select thread" is created for each file descriptor. These
379 threads looks for activity on the corresponding descriptor, using
380 whatever techniques are appropriate for the descriptor type. When
381 that activity occurs, the thread signals an appropriate event,
382 which wakes up WaitForMultipleObjects.
384 Each select thread is in one of two states: stopped or started.
385 Select threads begin in the stopped state. When gdb_select is
386 called, threads corresponding to the descriptors of interest are
387 started by calling a wait_handle function. Each thread that
388 notices activity signals the appropriate event and then reenters
389 the stopped state. Before gdb_select returns it calls the
390 wait_handle_done functions, which return the threads to the stopped
393 enum select_thread_state {
398 struct ser_console_state
400 /* Signaled by the select thread to indicate that data is available
401 on the file descriptor. */
403 /* Signaled by the select thread to indicate that an exception has
404 occurred on the file descriptor. */
406 /* Signaled by the select thread to indicate that it has entered the
407 started state. HAVE_STARTED and HAVE_STOPPED are never signaled
410 /* Signaled by the select thread to indicate that it has stopped,
411 either because data is available (and READ_EVENT is signaled),
412 because an exception has occurred (and EXCEPT_EVENT is signaled),
413 or because STOP_SELECT was signaled. */
416 /* Signaled by the main program to tell the select thread to enter
417 the started state. */
419 /* Signaled by the main program to tell the select thread to enter
420 the stopped state. */
422 /* Signaled by the main program to tell the select thread to
426 /* The handle for the select thread. */
428 /* The state of the select thread. This field is only accessed in
429 the main program, never by the select thread itself. */
430 enum select_thread_state thread_state;
433 /* Called by a select thread to enter the stopped state. This
434 function does not return until the thread has re-entered the
437 select_thread_wait (struct ser_console_state *state)
439 HANDLE wait_events[2];
441 /* There are two things that can wake us up: a request that we enter
442 the started state, or that we exit this thread. */
443 wait_events[0] = state->start_select;
444 wait_events[1] = state->exit_select;
445 if (WaitForMultipleObjects (2, wait_events, FALSE, INFINITE)
447 /* Either the EXIT_SELECT event was signaled (requesting that the
448 thread exit) or an error has occurred. In either case, we exit
452 /* We are now in the started state. */
453 SetEvent (state->have_started);
456 typedef DWORD WINAPI (*thread_fn_type)(void *);
458 /* Create a new select thread for SCB executing THREAD_FN. The STATE
459 will be filled in by this function before return. */
461 create_select_thread (thread_fn_type thread_fn,
463 struct ser_console_state *state)
467 /* Create all of the events. These are all auto-reset events. */
468 state->read_event = CreateEvent (NULL, FALSE, FALSE, NULL);
469 state->except_event = CreateEvent (NULL, FALSE, FALSE, NULL);
470 state->have_started = CreateEvent (NULL, FALSE, FALSE, NULL);
471 state->have_stopped = CreateEvent (NULL, FALSE, FALSE, NULL);
472 state->start_select = CreateEvent (NULL, FALSE, FALSE, NULL);
473 state->stop_select = CreateEvent (NULL, FALSE, FALSE, NULL);
474 state->exit_select = CreateEvent (NULL, FALSE, FALSE, NULL);
476 state->thread = CreateThread (NULL, 0, thread_fn, scb, 0, &threadId);
477 /* The thread begins in the stopped state. */
478 state->thread_state = STS_STOPPED;
481 /* Destroy the select thread indicated by STATE. */
483 destroy_select_thread (struct ser_console_state *state)
485 /* Ask the thread to exit. */
486 SetEvent (state->exit_select);
487 /* Wait until it does. */
488 WaitForSingleObject (state->thread, INFINITE);
490 /* Destroy the events. */
491 CloseHandle (state->read_event);
492 CloseHandle (state->except_event);
493 CloseHandle (state->have_started);
494 CloseHandle (state->have_stopped);
495 CloseHandle (state->start_select);
496 CloseHandle (state->stop_select);
497 CloseHandle (state->exit_select);
500 /* Called by gdb_select to start the select thread indicated by STATE.
501 This function does not return until the thread has started. */
503 start_select_thread (struct ser_console_state *state)
505 /* Ask the thread to start. */
506 SetEvent (state->start_select);
507 /* Wait until it does. */
508 WaitForSingleObject (state->have_started, INFINITE);
509 /* The thread is now started. */
510 state->thread_state = STS_STARTED;
513 /* Called by gdb_select to stop the select thread indicated by STATE.
514 This function does not return until the thread has stopped. */
516 stop_select_thread (struct ser_console_state *state)
518 /* If the thread is already in the stopped state, we have nothing to
519 do. Some of the wait_handle functions avoid calling
520 start_select_thread if they notice activity on the relevant file
521 descriptors. The wait_handle_done functions still call
522 stop_select_thread -- but it is already stopped. */
523 if (state->thread_state != STS_STARTED)
525 /* Ask the thread to stop. */
526 SetEvent (state->stop_select);
527 /* Wait until it does. */
528 WaitForSingleObject (state->have_stopped, INFINITE);
529 /* The thread is now stopped. */
530 state->thread_state = STS_STOPPED;
534 console_select_thread (void *arg)
536 struct serial *scb = (struct serial *) arg;
537 struct ser_console_state *state;
541 state = (struct ser_console_state *) scb->state;
542 h = (HANDLE) _get_osfhandle (scb->fd);
546 HANDLE wait_events[2];
550 select_thread_wait (state);
554 wait_events[0] = state->stop_select;
557 event_index = WaitForMultipleObjects (2, wait_events,
560 if (event_index == WAIT_OBJECT_0
561 || WaitForSingleObject (state->stop_select, 0) == WAIT_OBJECT_0)
564 if (event_index != WAIT_OBJECT_0 + 1)
566 /* Wait must have failed; assume an error has occured, e.g.
567 the handle has been closed. */
568 SetEvent (state->except_event);
572 /* We've got a pending event on the console. See if it's
574 if (!PeekConsoleInput (h, &record, 1, &n_records) || n_records != 1)
576 /* Something went wrong. Maybe the console is gone. */
577 SetEvent (state->except_event);
581 if (record.EventType == KEY_EVENT && record.Event.KeyEvent.bKeyDown)
583 WORD keycode = record.Event.KeyEvent.wVirtualKeyCode;
585 /* Ignore events containing only control keys. We must
586 recognize "enhanced" keys which we are interested in
587 reading via getch, if they do not map to ASCII. But we
588 do not want to report input available for e.g. the
589 control key alone. */
591 if (record.Event.KeyEvent.uChar.AsciiChar != 0
592 || keycode == VK_PRIOR
593 || keycode == VK_NEXT
595 || keycode == VK_HOME
596 || keycode == VK_LEFT
598 || keycode == VK_RIGHT
599 || keycode == VK_DOWN
600 || keycode == VK_INSERT
601 || keycode == VK_DELETE)
603 /* This is really a keypress. */
604 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;
644 state = (struct ser_console_state *) scb->state;
645 h = (HANDLE) _get_osfhandle (scb->fd);
651 select_thread_wait (state);
653 /* Wait for something to happen on the pipe. */
656 if (!PeekNamedPipe (h, NULL, 0, NULL, &n_avail, NULL))
658 SetEvent (state->except_event);
664 SetEvent (state->read_event);
668 /* Delay 10ms before checking again, but allow the stop
670 if (WaitForSingleObject (state->stop_select, 10) == WAIT_OBJECT_0)
674 SetEvent (state->have_stopped);
680 file_select_thread (void *arg)
682 struct serial *scb = (struct serial *) arg;
683 struct ser_console_state *state;
687 state = (struct ser_console_state *) scb->state;
688 h = (HANDLE) _get_osfhandle (scb->fd);
692 select_thread_wait (state);
694 if (SetFilePointer (h, 0, NULL, FILE_CURRENT)
695 == INVALID_SET_FILE_POINTER)
696 SetEvent (state->except_event);
698 SetEvent (state->read_event);
700 SetEvent (state->have_stopped);
706 ser_console_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
708 struct ser_console_state *state = (struct ser_console_state *) scb->state;
712 thread_fn_type thread_fn;
715 is_tty = isatty (scb->fd);
716 if (!is_tty && !fd_is_file (scb->fd) && !fd_is_pipe (scb->fd))
723 state = XCNEW (struct ser_console_state);
727 thread_fn = console_select_thread;
728 else if (fd_is_pipe (scb->fd))
729 thread_fn = pipe_select_thread;
731 thread_fn = file_select_thread;
733 create_select_thread (thread_fn, scb, state);
736 *read = state->read_event;
737 *except = state->except_event;
739 /* Start from a blank state. */
740 ResetEvent (state->read_event);
741 ResetEvent (state->except_event);
742 ResetEvent (state->stop_select);
744 /* First check for a key already in the buffer. If there is one,
745 we don't need a thread. This also catches the second key of
746 multi-character returns from getch, for instance for arrow
747 keys. The second half is in a C library internal buffer,
748 and PeekConsoleInput will not find it. */
751 SetEvent (state->read_event);
755 /* Otherwise, start the select thread. */
756 start_select_thread (state);
760 ser_console_done_wait_handle (struct serial *scb)
762 struct ser_console_state *state = (struct ser_console_state *) scb->state;
767 stop_select_thread (state);
771 ser_console_close (struct serial *scb)
773 struct ser_console_state *state = (struct ser_console_state *) scb->state;
777 destroy_select_thread (state);
782 struct ser_console_ttystate
787 static serial_ttystate
788 ser_console_get_tty_state (struct serial *scb)
790 if (isatty (scb->fd))
792 struct ser_console_ttystate *state;
794 state = XNEW (struct ser_console_ttystate);
804 /* Since we use the pipe_select_thread for our select emulation,
805 we need to place the state structure it requires at the front
807 struct ser_console_state wait;
809 /* The pex obj for our (one-stage) pipeline. */
812 /* Streams for the pipeline's input and output. */
813 FILE *input, *output;
816 static struct pipe_state *
817 make_pipe_state (void)
819 struct pipe_state *ps = XCNEW (struct pipe_state);
821 ps->wait.read_event = INVALID_HANDLE_VALUE;
822 ps->wait.except_event = INVALID_HANDLE_VALUE;
823 ps->wait.start_select = INVALID_HANDLE_VALUE;
824 ps->wait.stop_select = INVALID_HANDLE_VALUE;
830 free_pipe_state (struct pipe_state *ps)
832 int saved_errno = errno;
834 if (ps->wait.read_event != INVALID_HANDLE_VALUE)
835 destroy_select_thread (&ps->wait);
837 /* Close the pipe to the child. We must close the pipe before
838 calling pex_free because pex_free will wait for the child to exit
839 and the child will not exit until the pipe is closed. */
845 /* pex_free closes ps->output. */
856 cleanup_pipe_state (void *untyped)
858 struct pipe_state *ps = (struct pipe_state *) untyped;
860 free_pipe_state (ps);
864 pipe_windows_open (struct serial *scb, const char *name)
866 struct pipe_state *ps;
869 struct cleanup *back_to;
872 error_no_arg (_("child command"));
874 argv = gdb_buildargv (name);
875 back_to = make_cleanup_freeargv (argv);
877 if (! argv[0] || argv[0][0] == '\0')
878 error (_("missing child command"));
880 ps = make_pipe_state ();
881 make_cleanup (cleanup_pipe_state, ps);
883 ps->pex = pex_init (PEX_USE_PIPES, "target remote pipe", NULL);
886 ps->input = pex_input_pipe (ps->pex, 1);
893 = pex_run (ps->pex, PEX_SEARCH | PEX_BINARY_INPUT | PEX_BINARY_OUTPUT
894 | PEX_STDERR_TO_PIPE,
895 argv[0], argv, NULL, NULL,
900 /* Our caller expects us to return -1, but all they'll do with
901 it generally is print the message based on errno. We have
902 all the same information here, plus err_msg provided by
903 pex_run, so we just raise the error here. */
905 error (_("error starting child process '%s': %s: %s"),
906 name, err_msg, safe_strerror (err));
908 error (_("error starting child process '%s': %s"),
913 ps->output = pex_read_output (ps->pex, 1);
916 scb->fd = fileno (ps->output);
918 pex_stderr = pex_read_err (ps->pex, 1);
921 scb->error_fd = fileno (pex_stderr);
923 scb->state = (void *) ps;
925 discard_cleanups (back_to);
929 do_cleanups (back_to);
934 pipe_windows_fdopen (struct serial *scb, int fd)
936 struct pipe_state *ps;
938 ps = make_pipe_state ();
940 ps->input = fdopen (fd, "r+");
944 ps->output = fdopen (fd, "r+");
949 scb->state = (void *) ps;
954 free_pipe_state (ps);
959 pipe_windows_close (struct serial *scb)
961 struct pipe_state *ps = (struct pipe_state *) scb->state;
963 /* In theory, we should try to kill the subprocess here, but the pex
964 interface doesn't give us enough information to do that. Usually
965 closing the input pipe will get the message across. */
967 free_pipe_state (ps);
972 pipe_windows_read (struct serial *scb, size_t count)
974 HANDLE pipeline_out = (HANDLE) _get_osfhandle (scb->fd);
978 if (pipeline_out == INVALID_HANDLE_VALUE)
981 if (! PeekNamedPipe (pipeline_out, NULL, 0, NULL, &available, NULL))
984 if (count > available)
987 if (! ReadFile (pipeline_out, scb->buf, count, &bytes_read, NULL))
995 pipe_windows_write (struct serial *scb, const void *buf, size_t count)
997 struct pipe_state *ps = (struct pipe_state *) scb->state;
1001 int pipeline_in_fd = fileno (ps->input);
1002 if (pipeline_in_fd < 0)
1005 pipeline_in = (HANDLE) _get_osfhandle (pipeline_in_fd);
1006 if (pipeline_in == INVALID_HANDLE_VALUE)
1009 if (! WriteFile (pipeline_in, buf, count, &written, NULL))
1017 pipe_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
1019 struct pipe_state *ps = (struct pipe_state *) scb->state;
1021 /* Have we allocated our events yet? */
1022 if (ps->wait.read_event == INVALID_HANDLE_VALUE)
1023 /* Start the thread. */
1024 create_select_thread (pipe_select_thread, scb, &ps->wait);
1026 *read = ps->wait.read_event;
1027 *except = ps->wait.except_event;
1029 /* Start from a blank state. */
1030 ResetEvent (ps->wait.read_event);
1031 ResetEvent (ps->wait.except_event);
1032 ResetEvent (ps->wait.stop_select);
1034 start_select_thread (&ps->wait);
1038 pipe_done_wait_handle (struct serial *scb)
1040 struct pipe_state *ps = (struct pipe_state *) scb->state;
1042 /* Have we allocated our events yet? */
1043 if (ps->wait.read_event == INVALID_HANDLE_VALUE)
1046 stop_select_thread (&ps->wait);
1050 pipe_avail (struct serial *scb, int fd)
1052 HANDLE h = (HANDLE) _get_osfhandle (fd);
1054 BOOL r = PeekNamedPipe (h, NULL, 0, NULL, &numBytes, NULL);
1062 gdb_pipe (int pdes[2])
1064 if (_pipe (pdes, 512, _O_BINARY | _O_NOINHERIT) == -1)
1069 struct net_windows_state
1071 struct ser_console_state base;
1076 /* Check whether the socket has any pending data to be read. If so,
1077 set the select thread's read event. On error, set the select
1078 thread's except event. If any event was set, return true,
1079 otherwise return false. */
1082 net_windows_socket_check_pending (struct serial *scb)
1084 struct net_windows_state *state = (struct net_windows_state *) scb->state;
1085 unsigned long available;
1087 if (ioctlsocket (scb->fd, FIONREAD, &available) != 0)
1089 /* The socket closed, or some other error. */
1090 SetEvent (state->base.except_event);
1093 else if (available > 0)
1095 SetEvent (state->base.read_event);
1103 net_windows_select_thread (void *arg)
1105 struct serial *scb = (struct serial *) arg;
1106 struct net_windows_state *state;
1109 state = (struct net_windows_state *) scb->state;
1113 HANDLE wait_events[2];
1114 WSANETWORKEVENTS events;
1116 select_thread_wait (&state->base);
1118 wait_events[0] = state->base.stop_select;
1119 wait_events[1] = state->sock_event;
1121 /* Wait for something to happen on the socket. */
1124 event_index = WaitForMultipleObjects (2, wait_events, FALSE, INFINITE);
1126 if (event_index == WAIT_OBJECT_0
1127 || WaitForSingleObject (state->base.stop_select, 0) == WAIT_OBJECT_0)
1129 /* We have been requested to stop. */
1133 if (event_index != WAIT_OBJECT_0 + 1)
1135 /* Some error has occured. Assume that this is an error
1137 SetEvent (state->base.except_event);
1141 /* Enumerate the internal network events, and reset the
1142 object that signalled us to catch the next event. */
1143 if (WSAEnumNetworkEvents (scb->fd, state->sock_event, &events) != 0)
1145 /* Something went wrong. Maybe the socket is gone. */
1146 SetEvent (state->base.except_event);
1150 if (events.lNetworkEvents & FD_READ)
1152 if (net_windows_socket_check_pending (scb))
1155 /* Spurious wakeup. That is, the socket's event was
1156 signalled before we last called recv. */
1159 if (events.lNetworkEvents & FD_CLOSE)
1161 SetEvent (state->base.except_event);
1166 SetEvent (state->base.have_stopped);
1172 net_windows_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
1174 struct net_windows_state *state = (struct net_windows_state *) scb->state;
1176 /* Start from a clean slate. */
1177 ResetEvent (state->base.read_event);
1178 ResetEvent (state->base.except_event);
1179 ResetEvent (state->base.stop_select);
1181 *read = state->base.read_event;
1182 *except = state->base.except_event;
1184 /* Check any pending events. Otherwise, start the select
1186 if (!net_windows_socket_check_pending (scb))
1187 start_select_thread (&state->base);
1191 net_windows_done_wait_handle (struct serial *scb)
1193 struct net_windows_state *state = (struct net_windows_state *) scb->state;
1195 stop_select_thread (&state->base);
1199 net_windows_open (struct serial *scb, const char *name)
1201 struct net_windows_state *state;
1205 ret = net_open (scb, name);
1209 state = XCNEW (struct net_windows_state);
1212 /* Associate an event with the socket. */
1213 state->sock_event = CreateEvent (0, TRUE, FALSE, 0);
1214 WSAEventSelect (scb->fd, state->sock_event, FD_READ | FD_CLOSE);
1216 /* Start the thread. */
1217 create_select_thread (net_windows_select_thread, scb, &state->base);
1224 net_windows_close (struct serial *scb)
1226 struct net_windows_state *state = (struct net_windows_state *) scb->state;
1228 destroy_select_thread (&state->base);
1229 CloseHandle (state->sock_event);
1236 /* The serial port driver. */
1238 static const struct serial_ops hardwire_ops =
1246 ser_windows_flush_output,
1247 ser_windows_flush_input,
1248 ser_windows_send_break,
1250 /* These are only used for stdin; we do not need them for serial
1251 ports, so supply the standard dummies. */
1252 ser_base_get_tty_state,
1253 ser_base_copy_tty_state,
1254 ser_base_set_tty_state,
1255 ser_base_print_tty_state,
1256 ser_base_noflush_set_tty_state,
1257 ser_windows_setbaudrate,
1258 ser_windows_setstopbits,
1259 ser_windows_setparity,
1260 ser_windows_drain_output,
1262 ser_windows_read_prim,
1263 ser_windows_write_prim,
1265 ser_windows_wait_handle
1268 /* The dummy serial driver used for terminals. We only provide the
1269 TTY-related methods. */
1271 static const struct serial_ops tty_ops =
1283 ser_console_get_tty_state,
1284 ser_base_copy_tty_state,
1285 ser_base_set_tty_state,
1286 ser_base_print_tty_state,
1287 ser_base_noflush_set_tty_state,
1291 ser_base_drain_output,
1296 ser_console_wait_handle,
1297 ser_console_done_wait_handle
1300 /* The pipe interface. */
1302 static const struct serial_ops pipe_ops =
1307 pipe_windows_fdopen,
1310 ser_base_flush_output,
1311 ser_base_flush_input,
1312 ser_base_send_break,
1314 ser_base_get_tty_state,
1315 ser_base_copy_tty_state,
1316 ser_base_set_tty_state,
1317 ser_base_print_tty_state,
1318 ser_base_noflush_set_tty_state,
1319 ser_base_setbaudrate,
1320 ser_base_setstopbits,
1322 ser_base_drain_output,
1328 pipe_done_wait_handle
1331 /* The TCP/UDP socket driver. */
1333 static const struct serial_ops tcp_ops =
1341 ser_base_flush_output,
1342 ser_base_flush_input,
1345 ser_base_get_tty_state,
1346 ser_base_copy_tty_state,
1347 ser_base_set_tty_state,
1348 ser_base_print_tty_state,
1349 ser_base_noflush_set_tty_state,
1350 ser_base_setbaudrate,
1351 ser_base_setstopbits,
1353 ser_base_drain_output,
1358 net_windows_wait_handle,
1359 net_windows_done_wait_handle
1363 _initialize_ser_windows (void)
1366 struct serial_ops *ops;
1370 /* First find out if kernel32 exports CancelIo function. */
1371 hm = LoadLibrary ("kernel32.dll");
1374 CancelIo = (CancelIo_ftype *) GetProcAddress (hm, "CancelIo");
1380 serial_add_interface (&hardwire_ops);
1381 serial_add_interface (&tty_ops);
1382 serial_add_interface (&pipe_ops);
1384 /* If WinSock works, register the TCP/UDP socket driver. */
1386 if (WSAStartup (MAKEWORD (1, 0), &wsa_data) != 0)
1387 /* WinSock is unavailable. */
1390 serial_add_interface (&tcp_ops);