Tests for validate symbol file using build-id.
[gdb/archer.git] / gdb / ser-base.c
blobc602650b2ec29c087127bee63faa33fce4d319b5
1 /* Generic serial interface functions.
3 Copyright (C) 1992-2013 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/>. */
20 #include "defs.h"
21 #include "serial.h"
22 #include "ser-base.h"
23 #include "event-loop.h"
25 #include "gdb_select.h"
26 #include "gdb_string.h"
27 #include "gdb_assert.h"
28 #include <sys/time.h>
29 #ifdef USE_WIN32API
30 #include <winsock2.h>
31 #endif
34 static timer_handler_func push_event;
35 static handler_func fd_event;
37 /* Event handling for ASYNC serial code.
39 At any time the SERIAL device either: has an empty FIFO and is
40 waiting on a FD event; or has a non-empty FIFO/error condition and
41 is constantly scheduling timer events.
43 ASYNC only stops pestering its client when it is de-async'ed or it
44 is told to go away. */
46 /* Value of scb->async_state: */
47 enum {
48 /* >= 0 (TIMER_SCHEDULED) */
49 /* The ID of the currently scheduled timer event. This state is
50 rarely encountered. Timer events are one-off so as soon as the
51 event is delivered the state is shanged to NOTHING_SCHEDULED. */
52 FD_SCHEDULED = -1,
53 /* The fd_event() handler is scheduled. It is called when ever the
54 file descriptor becomes ready. */
55 NOTHING_SCHEDULED = -2
56 /* Either no task is scheduled (just going into ASYNC mode) or a
57 timer event has just gone off and the current state has been
58 forced into nothing scheduled. */
61 /* Identify and schedule the next ASYNC task based on scb->async_state
62 and scb->buf* (the input FIFO). A state machine is used to avoid
63 the need to make redundant calls into the event-loop - the next
64 scheduled task is only changed when needed. */
66 static void
67 reschedule (struct serial *scb)
69 if (serial_is_async_p (scb))
71 int next_state;
73 switch (scb->async_state)
75 case FD_SCHEDULED:
76 if (scb->bufcnt == 0)
77 next_state = FD_SCHEDULED;
78 else
80 delete_file_handler (scb->fd);
81 next_state = create_timer (0, push_event, scb);
83 break;
84 case NOTHING_SCHEDULED:
85 if (scb->bufcnt == 0)
87 add_file_handler (scb->fd, fd_event, scb);
88 next_state = FD_SCHEDULED;
90 else
92 next_state = create_timer (0, push_event, scb);
94 break;
95 default: /* TIMER SCHEDULED */
96 if (scb->bufcnt == 0)
98 delete_timer (scb->async_state);
99 add_file_handler (scb->fd, fd_event, scb);
100 next_state = FD_SCHEDULED;
102 else
103 next_state = scb->async_state;
104 break;
106 if (serial_debug_p (scb))
108 switch (next_state)
110 case FD_SCHEDULED:
111 if (scb->async_state != FD_SCHEDULED)
112 fprintf_unfiltered (gdb_stdlog, "[fd%d->fd-scheduled]\n",
113 scb->fd);
114 break;
115 default: /* TIMER SCHEDULED */
116 if (scb->async_state == FD_SCHEDULED)
117 fprintf_unfiltered (gdb_stdlog, "[fd%d->timer-scheduled]\n",
118 scb->fd);
119 break;
122 scb->async_state = next_state;
126 /* Run the SCB's async handle, and reschedule, if the handler doesn't
127 close SCB. */
129 static void
130 run_async_handler_and_reschedule (struct serial *scb)
132 int is_open;
134 /* Take a reference, so a serial_close call within the handler
135 doesn't make SCB a dangling pointer. */
136 serial_ref (scb);
138 /* Run the handler. */
139 scb->async_handler (scb, scb->async_context);
141 is_open = serial_is_open (scb);
142 serial_unref (scb);
144 /* Get ready for more, if not already closed. */
145 if (is_open)
146 reschedule (scb);
149 /* FD_EVENT: This is scheduled when the input FIFO is empty (and there
150 is no pending error). As soon as data arrives, it is read into the
151 input FIFO and the client notified. The client should then drain
152 the FIFO using readchar(). If the FIFO isn't immediatly emptied,
153 push_event() is used to nag the client until it is. */
155 static void
156 fd_event (int error, void *context)
158 struct serial *scb = context;
159 if (error != 0)
161 scb->bufcnt = SERIAL_ERROR;
163 else if (scb->bufcnt == 0)
165 /* Prime the input FIFO. The readchar() function is used to
166 pull characters out of the buffer. See also
167 generic_readchar(). */
168 int nr;
169 nr = scb->ops->read_prim (scb, BUFSIZ);
170 if (nr == 0)
172 scb->bufcnt = SERIAL_EOF;
174 else if (nr > 0)
176 scb->bufcnt = nr;
177 scb->bufp = scb->buf;
179 else
181 scb->bufcnt = SERIAL_ERROR;
184 run_async_handler_and_reschedule (scb);
187 /* PUSH_EVENT: The input FIFO is non-empty (or there is a pending
188 error). Nag the client until all the data has been read. In the
189 case of errors, the client will need to close or de-async the
190 device before naging stops. */
192 static void
193 push_event (void *context)
195 struct serial *scb = context;
197 scb->async_state = NOTHING_SCHEDULED; /* Timers are one-off */
198 run_async_handler_and_reschedule (scb);
201 /* Wait for input on scb, with timeout seconds. Returns 0 on success,
202 otherwise SERIAL_TIMEOUT or SERIAL_ERROR. */
204 static int
205 ser_base_wait_for (struct serial *scb, int timeout)
207 while (1)
209 int numfds;
210 struct timeval tv;
211 fd_set readfds, exceptfds;
213 /* NOTE: Some OS's can scramble the READFDS when the select()
214 call fails (ex the kernel with Red Hat 5.2). Initialize all
215 arguments before each call. */
217 tv.tv_sec = timeout;
218 tv.tv_usec = 0;
220 FD_ZERO (&readfds);
221 FD_ZERO (&exceptfds);
222 FD_SET (scb->fd, &readfds);
223 FD_SET (scb->fd, &exceptfds);
225 if (timeout >= 0)
226 numfds = gdb_select (scb->fd + 1, &readfds, 0, &exceptfds, &tv);
227 else
228 numfds = gdb_select (scb->fd + 1, &readfds, 0, &exceptfds, 0);
230 if (numfds <= 0)
232 if (numfds == 0)
233 return SERIAL_TIMEOUT;
234 else if (errno == EINTR)
235 continue;
236 else
237 return SERIAL_ERROR; /* Got an error from select or
238 poll. */
241 return 0;
245 /* Read any error output we might have. */
247 static void
248 ser_base_read_error_fd (struct serial *scb, int close_fd)
250 if (scb->error_fd != -1)
252 ssize_t s;
253 char buf[GDB_MI_MSG_WIDTH + 1];
255 for (;;)
257 char *current;
258 char *newline;
259 int to_read = GDB_MI_MSG_WIDTH;
260 int num_bytes = -1;
262 if (scb->ops->avail)
263 num_bytes = (scb->ops->avail)(scb, scb->error_fd);
265 if (num_bytes != -1)
266 to_read = (num_bytes < to_read) ? num_bytes : to_read;
268 if (to_read == 0)
269 break;
271 s = read (scb->error_fd, &buf, to_read);
272 if ((s == -1) || (s == 0 && !close_fd))
273 break;
275 if (s == 0 && close_fd)
277 /* End of file. */
278 close (scb->error_fd);
279 scb->error_fd = -1;
280 break;
283 /* In theory, embedded newlines are not a problem.
284 But for MI, we want each output line to have just
285 one newline for legibility. So output things
286 in newline chunks. */
287 gdb_assert (s > 0 && s <= GDB_MI_MSG_WIDTH);
288 buf[s] = '\0';
289 current = buf;
290 while ((newline = strstr (current, "\n")) != NULL)
292 *newline = '\0';
293 fputs_unfiltered (current, gdb_stderr);
294 fputs_unfiltered ("\n", gdb_stderr);
295 current = newline + 1;
298 fputs_unfiltered (current, gdb_stderr);
303 /* Read a character with user-specified timeout. TIMEOUT is number of seconds
304 to wait, or -1 to wait forever. Use timeout of 0 to effect a poll. Returns
305 char if successful. Returns -2 if timeout expired, EOF if line dropped
306 dead, or -3 for any other error (see errno in that case). */
308 static int
309 do_ser_base_readchar (struct serial *scb, int timeout)
311 int status;
312 int delta;
314 /* We have to be able to keep the GUI alive here, so we break the
315 original timeout into steps of 1 second, running the "keep the
316 GUI alive" hook each time through the loop.
318 Also, timeout = 0 means to poll, so we just set the delta to 0,
319 so we will only go through the loop once. */
321 delta = (timeout == 0 ? 0 : 1);
322 while (1)
324 /* N.B. The UI may destroy our world (for instance by calling
325 remote_stop,) in which case we want to get out of here as
326 quickly as possible. It is not safe to touch scb, since
327 someone else might have freed it. The
328 deprecated_ui_loop_hook signals that we should exit by
329 returning 1. */
331 if (deprecated_ui_loop_hook)
333 if (deprecated_ui_loop_hook (0))
334 return SERIAL_TIMEOUT;
337 status = ser_base_wait_for (scb, delta);
338 if (timeout > 0)
339 timeout -= delta;
341 /* If we got a character or an error back from wait_for, then we can
342 break from the loop before the timeout is completed. */
343 if (status != SERIAL_TIMEOUT)
344 break;
346 /* If we have exhausted the original timeout, then generate
347 a SERIAL_TIMEOUT, and pass it out of the loop. */
348 else if (timeout == 0)
350 status = SERIAL_TIMEOUT;
351 break;
354 /* We also need to check and consume the stderr because it could
355 come before the stdout for some stubs. If we just sit and wait
356 for stdout, we would hit a deadlock for that case. */
357 ser_base_read_error_fd (scb, 0);
360 if (status < 0)
361 return status;
363 status = scb->ops->read_prim (scb, BUFSIZ);
365 if (status <= 0)
367 if (status == 0)
368 return SERIAL_EOF;
369 else
370 /* Got an error from read. */
371 return SERIAL_ERROR;
374 scb->bufcnt = status;
375 scb->bufcnt--;
376 scb->bufp = scb->buf;
377 return *scb->bufp++;
380 /* Perform operations common to both old and new readchar. */
382 /* Return the next character from the input FIFO. If the FIFO is
383 empty, call the SERIAL specific routine to try and read in more
384 characters.
386 Initially data from the input FIFO is returned (fd_event()
387 pre-reads the input into that FIFO. Once that has been emptied,
388 further data is obtained by polling the input FD using the device
389 specific readchar() function. Note: reschedule() is called after
390 every read. This is because there is no guarentee that the lower
391 level fd_event() poll_event() code (which also calls reschedule())
392 will be called. */
395 generic_readchar (struct serial *scb, int timeout,
396 int (do_readchar) (struct serial *scb, int timeout))
398 int ch;
399 if (scb->bufcnt > 0)
401 ch = *scb->bufp;
402 scb->bufcnt--;
403 scb->bufp++;
405 else if (scb->bufcnt < 0)
407 /* Some errors/eof are are sticky. */
408 ch = scb->bufcnt;
410 else
412 ch = do_readchar (scb, timeout);
413 if (ch < 0)
415 switch ((enum serial_rc) ch)
417 case SERIAL_EOF:
418 case SERIAL_ERROR:
419 /* Make the error/eof stick. */
420 scb->bufcnt = ch;
421 break;
422 case SERIAL_TIMEOUT:
423 scb->bufcnt = 0;
424 break;
429 /* Read any error output we might have. */
430 ser_base_read_error_fd (scb, 1);
432 reschedule (scb);
433 return ch;
437 ser_base_readchar (struct serial *scb, int timeout)
439 return generic_readchar (scb, timeout, do_ser_base_readchar);
443 ser_base_write (struct serial *scb, const char *str, int len)
445 int cc;
447 while (len > 0)
449 cc = scb->ops->write_prim (scb, str, len);
451 if (cc < 0)
452 return 1;
453 len -= cc;
454 str += cc;
456 return 0;
460 ser_base_flush_output (struct serial *scb)
462 return 0;
466 ser_base_flush_input (struct serial *scb)
468 if (scb->bufcnt >= 0)
470 scb->bufcnt = 0;
471 scb->bufp = scb->buf;
472 return 0;
474 else
475 return SERIAL_ERROR;
479 ser_base_send_break (struct serial *scb)
481 return 0;
485 ser_base_drain_output (struct serial *scb)
487 return 0;
490 void
491 ser_base_raw (struct serial *scb)
493 return; /* Always in raw mode. */
496 serial_ttystate
497 ser_base_get_tty_state (struct serial *scb)
499 /* Allocate a dummy. */
500 return (serial_ttystate) XMALLOC (int);
503 serial_ttystate
504 ser_base_copy_tty_state (struct serial *scb, serial_ttystate ttystate)
506 /* Allocate another dummy. */
507 return (serial_ttystate) XMALLOC (int);
511 ser_base_set_tty_state (struct serial *scb, serial_ttystate ttystate)
513 return 0;
517 ser_base_noflush_set_tty_state (struct serial *scb,
518 serial_ttystate new_ttystate,
519 serial_ttystate old_ttystate)
521 return 0;
524 void
525 ser_base_print_tty_state (struct serial *scb,
526 serial_ttystate ttystate,
527 struct ui_file *stream)
529 /* Nothing to print. */
530 return;
534 ser_base_setbaudrate (struct serial *scb, int rate)
536 return 0; /* Never fails! */
540 ser_base_setstopbits (struct serial *scb, int num)
542 return 0; /* Never fails! */
545 /* Put the SERIAL device into/out-of ASYNC mode. */
547 void
548 ser_base_async (struct serial *scb,
549 int async_p)
551 if (async_p)
553 /* Force a re-schedule. */
554 scb->async_state = NOTHING_SCHEDULED;
555 if (serial_debug_p (scb))
556 fprintf_unfiltered (gdb_stdlog, "[fd%d->asynchronous]\n",
557 scb->fd);
558 reschedule (scb);
560 else
562 if (serial_debug_p (scb))
563 fprintf_unfiltered (gdb_stdlog, "[fd%d->synchronous]\n",
564 scb->fd);
565 /* De-schedule whatever tasks are currently scheduled. */
566 switch (scb->async_state)
568 case FD_SCHEDULED:
569 delete_file_handler (scb->fd);
570 break;
571 case NOTHING_SCHEDULED:
572 break;
573 default: /* TIMER SCHEDULED */
574 delete_timer (scb->async_state);
575 break;