Tweak ARM process record
[deliverable/binutils-gdb.git] / gdb / ser-mingw.c
CommitLineData
0ea3f30e
DJ
1/* Serial interface for local (hardwired) serial ports on Windows systems
2
618f726f 3 Copyright (C) 2006-2016 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
DJ
165
166 scb->current_timeout = 0;
167
168 if (SetCommState (h, &state) == 0)
b37520b6 169 warning (_("SetCommState failed"));
0ea3f30e
DJ
170}
171
172static int
173ser_windows_setstopbits (struct serial *scb, int num)
174{
175 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
176 DCB state;
177
178 if (GetCommState (h, &state) == 0)
179 return -1;
180
181 switch (num)
182 {
183 case SERIAL_1_STOPBITS:
184 state.StopBits = ONESTOPBIT;
185 break;
186 case SERIAL_1_AND_A_HALF_STOPBITS:
187 state.StopBits = ONE5STOPBITS;
188 break;
189 case SERIAL_2_STOPBITS:
190 state.StopBits = TWOSTOPBITS;
191 break;
192 default:
193 return 1;
194 }
195
196 return (SetCommState (h, &state) != 0) ? 0 : -1;
197}
198
236af5e3
YG
199/* Implement the "setparity" serial_ops callback. */
200
201static int
202ser_windows_setparity (struct serial *scb, int parity)
203{
204 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
205 DCB state;
206
207 if (GetCommState (h, &state) == 0)
208 return -1;
209
210 switch (parity)
211 {
212 case GDBPARITY_NONE:
213 state.Parity = NOPARITY;
214 state.fParity = FALSE;
215 break;
216 case GDBPARITY_ODD:
217 state.Parity = ODDPARITY;
218 state.fParity = TRUE;
219 break;
220 case GDBPARITY_EVEN:
221 state.Parity = EVENPARITY;
222 state.fParity = TRUE;
223 break;
224 default:
225 internal_warning (__FILE__, __LINE__,
8a4506c0 226 "Incorrect parity value: %d", parity);
236af5e3
YG
227 return -1;
228 }
229
230 return (SetCommState (h, &state) != 0) ? 0 : -1;
231}
232
0ea3f30e
DJ
233static int
234ser_windows_setbaudrate (struct serial *scb, int rate)
235{
236 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
237 DCB state;
238
239 if (GetCommState (h, &state) == 0)
240 return -1;
241
242 state.BaudRate = rate;
243
244 return (SetCommState (h, &state) != 0) ? 0 : -1;
245}
246
247static void
248ser_windows_close (struct serial *scb)
249{
250 struct ser_windows_state *state;
251
e25b2cfa
PM
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. */
4af53f97
PM
256 if (CancelIo)
257 CancelIo ((HANDLE) _get_osfhandle (scb->fd));
cd78b7a1 258 state = (struct ser_windows_state *) scb->state;
0ea3f30e
DJ
259 CloseHandle (state->ov.hEvent);
260 CloseHandle (state->except_event);
261
262 if (scb->fd < 0)
263 return;
264
265 close (scb->fd);
266 scb->fd = -1;
267
268 xfree (scb->state);
269}
270
271static void
272ser_windows_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
273{
274 struct ser_windows_state *state;
275 COMSTAT status;
276 DWORD errors;
277 HANDLE h = (HANDLE) _get_osfhandle (scb->fd);
278
cd78b7a1 279 state = (struct ser_windows_state *) scb->state;
0ea3f30e
DJ
280
281 *except = state->except_event;
282 *read = state->ov.hEvent;
283
284 if (state->in_progress)
285 return;
286
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. */
290
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"));
297
298 if (!SetCommMask (h, EV_RXCHAR))
299 warning (_("ser_windows_wait_handle: reseting mask failed (2)"));
300
301 /* There's a potential race condition here; we must check cbInQue
302 and not wait if that's nonzero. */
303
304 ClearCommError (h, &errors, &status);
305 if (status.cbInQue > 0)
306 {
307 SetEvent (state->ov.hEvent);
308 return;
309 }
310
311 state->in_progress = 1;
312 ResetEvent (state->ov.hEvent);
313 state->lastCommMask = -2;
314 if (WaitCommEvent (h, &state->lastCommMask, &state->ov))
315 {
316 gdb_assert (state->lastCommMask & EV_RXCHAR);
317 SetEvent (state->ov.hEvent);
318 }
319 else
320 gdb_assert (GetLastError () == ERROR_IO_PENDING);
321}
322
323static int
324ser_windows_read_prim (struct serial *scb, size_t count)
325{
326 struct ser_windows_state *state;
327 OVERLAPPED ov;
328 DWORD bytes_read, bytes_read_tmp;
329 HANDLE h;
330 gdb_byte *p;
331
cd78b7a1 332 state = (struct ser_windows_state *) scb->state;
0ea3f30e
DJ
333 if (state->in_progress)
334 {
335 WaitForSingleObject (state->ov.hEvent, INFINITE);
336 state->in_progress = 0;
337 ResetEvent (state->ov.hEvent);
338 }
339
340 memset (&ov, 0, sizeof (OVERLAPPED));
341 ov.hEvent = CreateEvent (0, FALSE, FALSE, 0);
342 h = (HANDLE) _get_osfhandle (scb->fd);
343
344 if (!ReadFile (h, scb->buf, /* count */ 1, &bytes_read, &ov))
345 {
346 if (GetLastError () != ERROR_IO_PENDING
347 || !GetOverlappedResult (h, &ov, &bytes_read, TRUE))
348 bytes_read = -1;
349 }
350
351 CloseHandle (ov.hEvent);
352 return bytes_read;
353}
354
355static int
356ser_windows_write_prim (struct serial *scb, const void *buf, size_t len)
357{
358 struct ser_windows_state *state;
359 OVERLAPPED ov;
360 DWORD bytes_written;
361 HANDLE h;
362
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))
367 {
368 if (GetLastError () != ERROR_IO_PENDING
369 || !GetOverlappedResult (h, &ov, &bytes_written, TRUE))
370 bytes_written = -1;
371 }
372
373 CloseHandle (ov.hEvent);
374 return bytes_written;
375}
376
4577549b
DJ
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.
383
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
391 state. */
392
393enum select_thread_state {
394 STS_STARTED,
395 STS_STOPPED
396};
397
0ea3f30e
DJ
398struct ser_console_state
399{
4577549b
DJ
400 /* Signaled by the select thread to indicate that data is available
401 on the file descriptor. */
0ea3f30e 402 HANDLE read_event;
4577549b
DJ
403 /* Signaled by the select thread to indicate that an exception has
404 occurred on the file descriptor. */
0ea3f30e 405 HANDLE except_event;
4577549b
DJ
406 /* Signaled by the select thread to indicate that it has entered the
407 started state. HAVE_STARTED and HAVE_STOPPED are never signaled
408 simultaneously. */
409 HANDLE have_started;
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. */
414 HANDLE have_stopped;
0ea3f30e 415
4577549b
DJ
416 /* Signaled by the main program to tell the select thread to enter
417 the started state. */
0ea3f30e 418 HANDLE start_select;
4577549b 419 /* Signaled by the main program to tell the select thread to enter
c378eb4e 420 the stopped state. */
0ea3f30e 421 HANDLE stop_select;
4577549b
DJ
422 /* Signaled by the main program to tell the select thread to
423 exit. */
c3e2b812 424 HANDLE exit_select;
c3e2b812 425
4577549b 426 /* The handle for the select thread. */
c3e2b812 427 HANDLE thread;
4577549b
DJ
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;
0ea3f30e
DJ
431};
432
4577549b
DJ
433/* Called by a select thread to enter the stopped state. This
434 function does not return until the thread has re-entered the
435 started state. */
436static void
437select_thread_wait (struct ser_console_state *state)
438{
439 HANDLE wait_events[2];
440
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)
446 != WAIT_OBJECT_0)
447 /* Either the EXIT_SELECT event was signaled (requesting that the
448 thread exit) or an error has occurred. In either case, we exit
449 the thread. */
450 ExitThread (0);
451
452 /* We are now in the started state. */
453 SetEvent (state->have_started);
454}
455
456typedef DWORD WINAPI (*thread_fn_type)(void *);
457
458/* Create a new select thread for SCB executing THREAD_FN. The STATE
459 will be filled in by this function before return. */
a95babbf 460static void
4577549b
DJ
461create_select_thread (thread_fn_type thread_fn,
462 struct serial *scb,
463 struct ser_console_state *state)
464{
465 DWORD threadId;
466
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);
475
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;
479}
480
481/* Destroy the select thread indicated by STATE. */
482static void
483destroy_select_thread (struct ser_console_state *state)
484{
485 /* Ask the thread to exit. */
486 SetEvent (state->exit_select);
487 /* Wait until it does. */
488 WaitForSingleObject (state->thread, INFINITE);
489
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);
498}
499
500/* Called by gdb_select to start the select thread indicated by STATE.
501 This function does not return until the thread has started. */
502static void
503start_select_thread (struct ser_console_state *state)
504{
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;
511}
512
513/* Called by gdb_select to stop the select thread indicated by STATE.
514 This function does not return until the thread has stopped. */
515static void
516stop_select_thread (struct ser_console_state *state)
517{
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)
524 return;
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;
531}
532
0ea3f30e
DJ
533static DWORD WINAPI
534console_select_thread (void *arg)
535{
cd78b7a1 536 struct serial *scb = (struct serial *) arg;
c3e2b812
DJ
537 struct ser_console_state *state;
538 int event_index;
0ea3f30e
DJ
539 HANDLE h;
540
cd78b7a1 541 state = (struct ser_console_state *) scb->state;
c3e2b812 542 h = (HANDLE) _get_osfhandle (scb->fd);
0ea3f30e
DJ
543
544 while (1)
545 {
546 HANDLE wait_events[2];
547 INPUT_RECORD record;
548 DWORD n_records;
549
4577549b 550 select_thread_wait (state);
c3e2b812 551
4577549b
DJ
552 while (1)
553 {
554 wait_events[0] = state->stop_select;
555 wait_events[1] = h;
0ea3f30e 556
3e43a32a
MS
557 event_index = WaitForMultipleObjects (2, wait_events,
558 FALSE, INFINITE);
0ea3f30e 559
4577549b
DJ
560 if (event_index == WAIT_OBJECT_0
561 || WaitForSingleObject (state->stop_select, 0) == WAIT_OBJECT_0)
562 break;
0ea3f30e 563
4577549b
DJ
564 if (event_index != WAIT_OBJECT_0 + 1)
565 {
566 /* Wait must have failed; assume an error has occured, e.g.
567 the handle has been closed. */
568 SetEvent (state->except_event);
569 break;
570 }
0ea3f30e 571
4577549b
DJ
572 /* We've got a pending event on the console. See if it's
573 of interest. */
574 if (!PeekConsoleInput (h, &record, 1, &n_records) || n_records != 1)
575 {
576 /* Something went wrong. Maybe the console is gone. */
577 SetEvent (state->except_event);
578 break;
579 }
0ea3f30e 580
4577549b 581 if (record.EventType == KEY_EVENT && record.Event.KeyEvent.bKeyDown)
c3e2b812 582 {
4577549b
DJ
583 WORD keycode = record.Event.KeyEvent.wVirtualKeyCode;
584
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. */
590
591 if (record.Event.KeyEvent.uChar.AsciiChar != 0
592 || keycode == VK_PRIOR
593 || keycode == VK_NEXT
594 || keycode == VK_END
595 || keycode == VK_HOME
596 || keycode == VK_LEFT
597 || keycode == VK_UP
598 || keycode == VK_RIGHT
599 || keycode == VK_DOWN
600 || keycode == VK_INSERT
601 || keycode == VK_DELETE)
602 {
603 /* This is really a keypress. */
604 SetEvent (state->read_event);
605 break;
606 }
c3e2b812 607 }
4577549b
DJ
608
609 /* Otherwise discard it and wait again. */
610 ReadConsoleInput (h, &record, 1, &n_records);
0ea3f30e
DJ
611 }
612
4577549b 613 SetEvent(state->have_stopped);
0ea3f30e 614 }
a32d7317 615 return 0;
0ea3f30e
DJ
616}
617
618static int
619fd_is_pipe (int fd)
620{
621 if (PeekNamedPipe ((HANDLE) _get_osfhandle (fd), NULL, 0, NULL, NULL, NULL))
622 return 1;
623 else
624 return 0;
625}
626
7e71daaa
JG
627static int
628fd_is_file (int fd)
629{
630 if (GetFileType ((HANDLE) _get_osfhandle (fd)) == FILE_TYPE_DISK)
631 return 1;
632 else
633 return 0;
634}
635
0ea3f30e
DJ
636static DWORD WINAPI
637pipe_select_thread (void *arg)
638{
cd78b7a1 639 struct serial *scb = (struct serial *) arg;
c3e2b812
DJ
640 struct ser_console_state *state;
641 int event_index;
0ea3f30e
DJ
642 HANDLE h;
643
cd78b7a1 644 state = (struct ser_console_state *) scb->state;
c3e2b812 645 h = (HANDLE) _get_osfhandle (scb->fd);
0ea3f30e
DJ
646
647 while (1)
648 {
0ea3f30e
DJ
649 DWORD n_avail;
650
4577549b 651 select_thread_wait (state);
c3e2b812 652
4577549b
DJ
653 /* Wait for something to happen on the pipe. */
654 while (1)
0ea3f30e 655 {
4577549b
DJ
656 if (!PeekNamedPipe (h, NULL, 0, NULL, &n_avail, NULL))
657 {
658 SetEvent (state->except_event);
659 break;
660 }
0ea3f30e 661
4577549b
DJ
662 if (n_avail > 0)
663 {
664 SetEvent (state->read_event);
665 break;
666 }
0ea3f30e 667
4577549b
DJ
668 /* Delay 10ms before checking again, but allow the stop
669 event to wake us. */
670 if (WaitForSingleObject (state->stop_select, 10) == WAIT_OBJECT_0)
671 break;
672 }
0ea3f30e 673
4577549b 674 SetEvent (state->have_stopped);
0ea3f30e 675 }
a32d7317 676 return 0;
0ea3f30e
DJ
677}
678
7e71daaa
JG
679static DWORD WINAPI
680file_select_thread (void *arg)
681{
cd78b7a1 682 struct serial *scb = (struct serial *) arg;
7e71daaa
JG
683 struct ser_console_state *state;
684 int event_index;
685 HANDLE h;
686
cd78b7a1 687 state = (struct ser_console_state *) scb->state;
7e71daaa
JG
688 h = (HANDLE) _get_osfhandle (scb->fd);
689
690 while (1)
691 {
4577549b 692 select_thread_wait (state);
7e71daaa 693
3e43a32a
MS
694 if (SetFilePointer (h, 0, NULL, FILE_CURRENT)
695 == INVALID_SET_FILE_POINTER)
4577549b
DJ
696 SetEvent (state->except_event);
697 else
698 SetEvent (state->read_event);
7e71daaa 699
4577549b 700 SetEvent (state->have_stopped);
7e71daaa 701 }
a32d7317 702 return 0;
7e71daaa
JG
703}
704
0ea3f30e
DJ
705static void
706ser_console_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
707{
cd78b7a1 708 struct ser_console_state *state = (struct ser_console_state *) scb->state;
0ea3f30e
DJ
709
710 if (state == NULL)
711 {
4577549b 712 thread_fn_type thread_fn;
0ea3f30e
DJ
713 int is_tty;
714
715 is_tty = isatty (scb->fd);
7e71daaa 716 if (!is_tty && !fd_is_file (scb->fd) && !fd_is_pipe (scb->fd))
0ea3f30e
DJ
717 {
718 *read = NULL;
719 *except = NULL;
720 return;
721 }
722
8d749320 723 state = XCNEW (struct ser_console_state);
0ea3f30e
DJ
724 scb->state = state;
725
0ea3f30e 726 if (is_tty)
4577549b 727 thread_fn = console_select_thread;
7e71daaa 728 else if (fd_is_pipe (scb->fd))
4577549b 729 thread_fn = pipe_select_thread;
7e71daaa 730 else
4577549b
DJ
731 thread_fn = file_select_thread;
732
733 create_select_thread (thread_fn, scb, state);
0ea3f30e
DJ
734 }
735
c3e2b812
DJ
736 *read = state->read_event;
737 *except = state->except_event;
738
739 /* Start from a blank state. */
0ea3f30e
DJ
740 ResetEvent (state->read_event);
741 ResetEvent (state->except_event);
c3e2b812
DJ
742 ResetEvent (state->stop_select);
743
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. */
749 if (_kbhit ())
750 {
751 SetEvent (state->read_event);
752 return;
753 }
0ea3f30e 754
c3e2b812 755 /* Otherwise, start the select thread. */
4577549b 756 start_select_thread (state);
c3e2b812 757}
0ea3f30e 758
c3e2b812
DJ
759static void
760ser_console_done_wait_handle (struct serial *scb)
761{
cd78b7a1 762 struct ser_console_state *state = (struct ser_console_state *) scb->state;
c3e2b812
DJ
763
764 if (state == NULL)
765 return;
766
4577549b 767 stop_select_thread (state);
0ea3f30e
DJ
768}
769
770static void
771ser_console_close (struct serial *scb)
772{
cd78b7a1 773 struct ser_console_state *state = (struct ser_console_state *) scb->state;
0ea3f30e
DJ
774
775 if (scb->state)
776 {
4577549b 777 destroy_select_thread (state);
0ea3f30e
DJ
778 xfree (scb->state);
779 }
780}
781
782struct ser_console_ttystate
783{
784 int is_a_tty;
785};
786
787static serial_ttystate
788ser_console_get_tty_state (struct serial *scb)
789{
790 if (isatty (scb->fd))
791 {
792 struct ser_console_ttystate *state;
433759f7 793
8d749320 794 state = XNEW (struct ser_console_ttystate);
0ea3f30e
DJ
795 state->is_a_tty = 1;
796 return state;
797 }
798 else
799 return NULL;
800}
801
5f1fb6dc
JB
802struct pipe_state
803{
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
806 of our state. */
807 struct ser_console_state wait;
808
809 /* The pex obj for our (one-stage) pipeline. */
810 struct pex_obj *pex;
811
812 /* Streams for the pipeline's input and output. */
813 FILE *input, *output;
814};
815
816static struct pipe_state *
817make_pipe_state (void)
818{
8d749320 819 struct pipe_state *ps = XCNEW (struct pipe_state);
5f1fb6dc 820
5f1fb6dc
JB
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;
825
826 return ps;
827}
828
829static void
830free_pipe_state (struct pipe_state *ps)
831{
832 int saved_errno = errno;
833
834 if (ps->wait.read_event != INVALID_HANDLE_VALUE)
4577549b 835 destroy_select_thread (&ps->wait);
5f1fb6dc
JB
836
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. */
840 if (ps->input)
841 fclose (ps->input);
842 if (ps->pex)
58f07bae
PA
843 {
844 pex_free (ps->pex);
845 /* pex_free closes ps->output. */
846 }
847 else if (ps->output)
848 fclose (ps->output);
5f1fb6dc
JB
849
850 xfree (ps);
851
852 errno = saved_errno;
853}
854
855static void
856cleanup_pipe_state (void *untyped)
857{
cd78b7a1 858 struct pipe_state *ps = (struct pipe_state *) untyped;
5f1fb6dc
JB
859
860 free_pipe_state (ps);
861}
862
863static int
864pipe_windows_open (struct serial *scb, const char *name)
865{
ef7723eb 866 struct pipe_state *ps;
65cc4390 867 FILE *pex_stderr;
efdb2a86
PA
868 char **argv;
869 struct cleanup *back_to;
ef7723eb 870
d1a41061
PP
871 if (name == NULL)
872 error_no_arg (_("child command"));
873
efdb2a86
PA
874 argv = gdb_buildargv (name);
875 back_to = make_cleanup_freeargv (argv);
d1a41061 876
5f1fb6dc 877 if (! argv[0] || argv[0][0] == '\0')
a73c6dcd 878 error (_("missing child command"));
5f1fb6dc 879
ef7723eb 880 ps = make_pipe_state ();
5f1fb6dc
JB
881 make_cleanup (cleanup_pipe_state, ps);
882
883 ps->pex = pex_init (PEX_USE_PIPES, "target remote pipe", NULL);
884 if (! ps->pex)
885 goto fail;
886 ps->input = pex_input_pipe (ps->pex, 1);
887 if (! ps->input)
888 goto fail;
889
890 {
891 int err;
892 const char *err_msg
65cc4390
VP
893 = pex_run (ps->pex, PEX_SEARCH | PEX_BINARY_INPUT | PEX_BINARY_OUTPUT
894 | PEX_STDERR_TO_PIPE,
5f1fb6dc
JB
895 argv[0], argv, NULL, NULL,
896 &err);
897
898 if (err_msg)
899 {
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. */
904 if (err)
a73c6dcd 905 error (_("error starting child process '%s': %s: %s"),
5f1fb6dc
JB
906 name, err_msg, safe_strerror (err));
907 else
a73c6dcd 908 error (_("error starting child process '%s': %s"),
5f1fb6dc
JB
909 name, err_msg);
910 }
911 }
912
913 ps->output = pex_read_output (ps->pex, 1);
914 if (! ps->output)
915 goto fail;
5f1fb6dc 916 scb->fd = fileno (ps->output);
65cc4390
VP
917
918 pex_stderr = pex_read_err (ps->pex, 1);
919 if (! pex_stderr)
920 goto fail;
921 scb->error_fd = fileno (pex_stderr);
922
5f1fb6dc
JB
923 scb->state = (void *) ps;
924
925 discard_cleanups (back_to);
926 return 0;
927
928 fail:
929 do_cleanups (back_to);
930 return -1;
931}
932
58f07bae
PA
933static int
934pipe_windows_fdopen (struct serial *scb, int fd)
935{
936 struct pipe_state *ps;
937
938 ps = make_pipe_state ();
939
940 ps->input = fdopen (fd, "r+");
941 if (! ps->input)
942 goto fail;
943
944 ps->output = fdopen (fd, "r+");
945 if (! ps->output)
946 goto fail;
947
948 scb->fd = fd;
949 scb->state = (void *) ps;
950
951 return 0;
952
953 fail:
954 free_pipe_state (ps);
955 return -1;
956}
5f1fb6dc
JB
957
958static void
959pipe_windows_close (struct serial *scb)
960{
cd78b7a1 961 struct pipe_state *ps = (struct pipe_state *) scb->state;
5f1fb6dc
JB
962
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. */
966
967 free_pipe_state (ps);
968}
969
970
971static int
972pipe_windows_read (struct serial *scb, size_t count)
973{
4998c1df 974 HANDLE pipeline_out = (HANDLE) _get_osfhandle (scb->fd);
ef7723eb
VP
975 DWORD available;
976 DWORD bytes_read;
977
5f1fb6dc
JB
978 if (pipeline_out == INVALID_HANDLE_VALUE)
979 return -1;
980
5f1fb6dc
JB
981 if (! PeekNamedPipe (pipeline_out, NULL, 0, NULL, &available, NULL))
982 return -1;
983
984 if (count > available)
985 count = available;
986
5f1fb6dc
JB
987 if (! ReadFile (pipeline_out, scb->buf, count, &bytes_read, NULL))
988 return -1;
989
990 return bytes_read;
991}
992
993
994static int
995pipe_windows_write (struct serial *scb, const void *buf, size_t count)
996{
cd78b7a1 997 struct pipe_state *ps = (struct pipe_state *) scb->state;
ef7723eb
VP
998 HANDLE pipeline_in;
999 DWORD written;
1000
5f1fb6dc
JB
1001 int pipeline_in_fd = fileno (ps->input);
1002 if (pipeline_in_fd < 0)
1003 return -1;
1004
ef7723eb 1005 pipeline_in = (HANDLE) _get_osfhandle (pipeline_in_fd);
5f1fb6dc
JB
1006 if (pipeline_in == INVALID_HANDLE_VALUE)
1007 return -1;
1008
5f1fb6dc
JB
1009 if (! WriteFile (pipeline_in, buf, count, &written, NULL))
1010 return -1;
1011
1012 return written;
1013}
1014
1015
1016static void
1017pipe_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
1018{
cd78b7a1 1019 struct pipe_state *ps = (struct pipe_state *) scb->state;
5f1fb6dc
JB
1020
1021 /* Have we allocated our events yet? */
1022 if (ps->wait.read_event == INVALID_HANDLE_VALUE)
4577549b
DJ
1023 /* Start the thread. */
1024 create_select_thread (pipe_select_thread, scb, &ps->wait);
5f1fb6dc 1025
774a49c0
DJ
1026 *read = ps->wait.read_event;
1027 *except = ps->wait.except_event;
1028
1029 /* Start from a blank state. */
5f1fb6dc
JB
1030 ResetEvent (ps->wait.read_event);
1031 ResetEvent (ps->wait.except_event);
774a49c0 1032 ResetEvent (ps->wait.stop_select);
5f1fb6dc 1033
4577549b 1034 start_select_thread (&ps->wait);
5f1fb6dc
JB
1035}
1036
774a49c0
DJ
1037static void
1038pipe_done_wait_handle (struct serial *scb)
1039{
cd78b7a1 1040 struct pipe_state *ps = (struct pipe_state *) scb->state;
774a49c0
DJ
1041
1042 /* Have we allocated our events yet? */
1043 if (ps->wait.read_event == INVALID_HANDLE_VALUE)
1044 return;
1045
4577549b 1046 stop_select_thread (&ps->wait);
774a49c0 1047}
5f1fb6dc 1048
65cc4390
VP
1049static int
1050pipe_avail (struct serial *scb, int fd)
1051{
1052 HANDLE h = (HANDLE) _get_osfhandle (fd);
1053 DWORD numBytes;
1054 BOOL r = PeekNamedPipe (h, NULL, 0, NULL, &numBytes, NULL);
433759f7 1055
65cc4390
VP
1056 if (r == FALSE)
1057 numBytes = 0;
1058 return numBytes;
1059}
1060
58f07bae
PA
1061int
1062gdb_pipe (int pdes[2])
1063{
1064 if (_pipe (pdes, 512, _O_BINARY | _O_NOINHERIT) == -1)
1065 return -1;
1066 return 0;
1067}
1068
0ea3f30e
DJ
1069struct net_windows_state
1070{
4577549b
DJ
1071 struct ser_console_state base;
1072
0ea3f30e
DJ
1073 HANDLE sock_event;
1074};
1075
364fe1f7
PA
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. */
1080
1081static int
1082net_windows_socket_check_pending (struct serial *scb)
1083{
cd78b7a1 1084 struct net_windows_state *state = (struct net_windows_state *) scb->state;
364fe1f7
PA
1085 unsigned long available;
1086
1087 if (ioctlsocket (scb->fd, FIONREAD, &available) != 0)
1088 {
1089 /* The socket closed, or some other error. */
1090 SetEvent (state->base.except_event);
1091 return 1;
1092 }
1093 else if (available > 0)
1094 {
1095 SetEvent (state->base.read_event);
1096 return 1;
1097 }
1098
1099 return 0;
1100}
1101
0ea3f30e
DJ
1102static DWORD WINAPI
1103net_windows_select_thread (void *arg)
1104{
cd78b7a1 1105 struct serial *scb = (struct serial *) arg;
4577549b 1106 struct net_windows_state *state;
c3e2b812 1107 int event_index;
0ea3f30e 1108
cd78b7a1 1109 state = (struct net_windows_state *) scb->state;
0ea3f30e
DJ
1110
1111 while (1)
1112 {
1113 HANDLE wait_events[2];
1114 WSANETWORKEVENTS events;
1115
4577549b 1116 select_thread_wait (&state->base);
c3e2b812 1117
4577549b 1118 wait_events[0] = state->base.stop_select;
0ea3f30e
DJ
1119 wait_events[1] = state->sock_event;
1120
364fe1f7
PA
1121 /* Wait for something to happen on the socket. */
1122 while (1)
0ea3f30e 1123 {
364fe1f7
PA
1124 event_index = WaitForMultipleObjects (2, wait_events, FALSE, INFINITE);
1125
1126 if (event_index == WAIT_OBJECT_0
1127 || WaitForSingleObject (state->base.stop_select, 0) == WAIT_OBJECT_0)
1128 {
1129 /* We have been requested to stop. */
1130 break;
1131 }
1132
1133 if (event_index != WAIT_OBJECT_0 + 1)
1134 {
1135 /* Some error has occured. Assume that this is an error
1136 condition. */
1137 SetEvent (state->base.except_event);
1138 break;
1139 }
1140
4577549b
DJ
1141 /* Enumerate the internal network events, and reset the
1142 object that signalled us to catch the next event. */
364fe1f7
PA
1143 if (WSAEnumNetworkEvents (scb->fd, state->sock_event, &events) != 0)
1144 {
1145 /* Something went wrong. Maybe the socket is gone. */
1146 SetEvent (state->base.except_event);
1147 break;
1148 }
1149
4577549b 1150 if (events.lNetworkEvents & FD_READ)
364fe1f7
PA
1151 {
1152 if (net_windows_socket_check_pending (scb))
1153 break;
1154
1155 /* Spurious wakeup. That is, the socket's event was
1156 signalled before we last called recv. */
1157 }
1158
4577549b 1159 if (events.lNetworkEvents & FD_CLOSE)
364fe1f7
PA
1160 {
1161 SetEvent (state->base.except_event);
1162 break;
1163 }
0ea3f30e
DJ
1164 }
1165
4577549b 1166 SetEvent (state->base.have_stopped);
0ea3f30e 1167 }
364fe1f7 1168 return 0;
0ea3f30e
DJ
1169}
1170
1171static void
1172net_windows_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
1173{
cd78b7a1 1174 struct net_windows_state *state = (struct net_windows_state *) scb->state;
0ea3f30e 1175
c3e2b812 1176 /* Start from a clean slate. */
4577549b
DJ
1177 ResetEvent (state->base.read_event);
1178 ResetEvent (state->base.except_event);
1179 ResetEvent (state->base.stop_select);
0ea3f30e 1180
4577549b
DJ
1181 *read = state->base.read_event;
1182 *except = state->base.except_event;
c3e2b812 1183
364fe1f7
PA
1184 /* Check any pending events. Otherwise, start the select
1185 thread. */
1186 if (!net_windows_socket_check_pending (scb))
1187 start_select_thread (&state->base);
c3e2b812
DJ
1188}
1189
1190static void
1191net_windows_done_wait_handle (struct serial *scb)
1192{
cd78b7a1 1193 struct net_windows_state *state = (struct net_windows_state *) scb->state;
c3e2b812 1194
4577549b 1195 stop_select_thread (&state->base);
0ea3f30e
DJ
1196}
1197
1198static int
1199net_windows_open (struct serial *scb, const char *name)
1200{
1201 struct net_windows_state *state;
1202 int ret;
1203 DWORD threadId;
1204
1205 ret = net_open (scb, name);
1206 if (ret != 0)
1207 return ret;
1208
8d749320 1209 state = XCNEW (struct net_windows_state);
0ea3f30e
DJ
1210 scb->state = state;
1211
0ea3f30e
DJ
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);
1215
4577549b
DJ
1216 /* Start the thread. */
1217 create_select_thread (net_windows_select_thread, scb, &state->base);
0ea3f30e
DJ
1218
1219 return 0;
1220}
1221
1222
1223static void
1224net_windows_close (struct serial *scb)
1225{
cd78b7a1 1226 struct net_windows_state *state = (struct net_windows_state *) scb->state;
0ea3f30e 1227
4577549b 1228 destroy_select_thread (&state->base);
0ea3f30e
DJ
1229 CloseHandle (state->sock_event);
1230
1231 xfree (scb->state);
1232
1233 net_close (scb);
1234}
1235
12e8c7d7
TT
1236/* The serial port driver. */
1237
1238static const struct serial_ops hardwire_ops =
1239{
1240 "hardwire",
1241 ser_windows_open,
1242 ser_windows_close,
1243 NULL,
1244 ser_base_readchar,
1245 ser_base_write,
1246 ser_windows_flush_output,
1247 ser_windows_flush_input,
1248 ser_windows_send_break,
1249 ser_windows_raw,
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,
236af5e3 1259 ser_windows_setparity,
12e8c7d7
TT
1260 ser_windows_drain_output,
1261 ser_base_async,
1262 ser_windows_read_prim,
1263 ser_windows_write_prim,
1264 NULL,
1265 ser_windows_wait_handle
1266};
1267
1268/* The dummy serial driver used for terminals. We only provide the
1269 TTY-related methods. */
1270
1271static const struct serial_ops tty_ops =
1272{
1273 "terminal",
1274 NULL,
1275 ser_console_close,
1276 NULL,
1277 NULL,
1278 NULL,
1279 NULL,
1280 NULL,
1281 NULL,
1282 NULL,
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,
1288 NULL,
1289 NULL,
236af5e3 1290 NULL,
12e8c7d7
TT
1291 ser_base_drain_output,
1292 NULL,
1293 NULL,
1294 NULL,
1295 NULL,
1296 ser_console_wait_handle,
1297 ser_console_done_wait_handle
1298};
1299
1300/* The pipe interface. */
1301
1302static const struct serial_ops pipe_ops =
1303{
1304 "pipe",
1305 pipe_windows_open,
1306 pipe_windows_close,
1307 pipe_windows_fdopen,
1308 ser_base_readchar,
1309 ser_base_write,
1310 ser_base_flush_output,
1311 ser_base_flush_input,
1312 ser_base_send_break,
1313 ser_base_raw,
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,
236af5e3 1321 ser_base_setparity,
12e8c7d7
TT
1322 ser_base_drain_output,
1323 ser_base_async,
1324 pipe_windows_read,
1325 pipe_windows_write,
1326 pipe_avail,
1327 pipe_wait_handle,
1328 pipe_done_wait_handle
1329};
1330
1331/* The TCP/UDP socket driver. */
1332
1333static const struct serial_ops tcp_ops =
1334{
1335 "tcp",
1336 net_windows_open,
1337 net_windows_close,
1338 NULL,
1339 ser_base_readchar,
1340 ser_base_write,
1341 ser_base_flush_output,
1342 ser_base_flush_input,
1343 ser_tcp_send_break,
1344 ser_base_raw,
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,
236af5e3 1352 ser_base_setparity,
12e8c7d7
TT
1353 ser_base_drain_output,
1354 ser_base_async,
1355 net_read_prim,
1356 net_write_prim,
1357 NULL,
1358 net_windows_wait_handle,
1359 net_windows_done_wait_handle
1360};
1361
0ea3f30e
DJ
1362void
1363_initialize_ser_windows (void)
1364{
1365 WSADATA wsa_data;
1366 struct serial_ops *ops;
1367
4af53f97
PM
1368 HMODULE hm = NULL;
1369
1370 /* First find out if kernel32 exports CancelIo function. */
1371 hm = LoadLibrary ("kernel32.dll");
1372 if (hm)
1373 {
cd78b7a1 1374 CancelIo = (CancelIo_ftype *) GetProcAddress (hm, "CancelIo");
4af53f97
PM
1375 FreeLibrary (hm);
1376 }
1377 else
1378 CancelIo = NULL;
0ea3f30e 1379
12e8c7d7
TT
1380 serial_add_interface (&hardwire_ops);
1381 serial_add_interface (&tty_ops);
1382 serial_add_interface (&pipe_ops);
5f1fb6dc 1383
0ea3f30e
DJ
1384 /* If WinSock works, register the TCP/UDP socket driver. */
1385
1386 if (WSAStartup (MAKEWORD (1, 0), &wsa_data) != 0)
1387 /* WinSock is unavailable. */
1388 return;
1389
12e8c7d7 1390 serial_add_interface (&tcp_ops);
0ea3f30e 1391}
This page took 1.105843 seconds and 4 git commands to generate.