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