]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/serial.c
* reloc.h (Bits): New class with static functions, copied from
[thirdparty/binutils-gdb.git] / gdb / serial.c
CommitLineData
c906108c 1/* Generic serial interface routines
4fcf66da 2
0b302171 3 Copyright (C) 1992-2002, 2004-2012 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 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/>. */
c906108c
SS
19
20#include "defs.h"
21#include <ctype.h>
22#include "serial.h"
23#include "gdb_string.h"
24#include "gdbcmd.h"
25
c2c6d25f 26extern void _initialize_serial (void);
392a587b 27
c378eb4e 28/* Is serial being debugged? */
2acceee2
JM
29
30static int global_serial_debug_p;
31
c378eb4e 32/* Linked list of serial I/O handlers. */
c906108c
SS
33
34static struct serial_ops *serial_ops_list = NULL;
35
c378eb4e 36/* This is the last serial stream opened. Used by connect command. */
c906108c 37
819cc324 38static struct serial *last_serial_opened = NULL;
c906108c 39
c378eb4e 40/* Pointer to list of scb's. */
c906108c 41
819cc324 42static struct serial *scb_base;
c906108c
SS
43
44/* Non-NULL gives filename which contains a recording of the remote session,
c378eb4e 45 suitable for playback by gdbserver. */
c906108c
SS
46
47static char *serial_logfile = NULL;
d9fcf2fb 48static struct ui_file *serial_logfp = NULL;
c906108c 49
58f07bae 50static struct serial_ops *serial_interface_lookup (const char *);
3e43a32a
MS
51static void serial_logchar (struct ui_file *stream,
52 int ch_type, int ch, int timeout);
53904c9e
AC
53static const char logbase_hex[] = "hex";
54static const char logbase_octal[] = "octal";
55static const char logbase_ascii[] = "ascii";
56static const char *logbase_enums[] =
c5aa993b 57{logbase_hex, logbase_octal, logbase_ascii, NULL};
53904c9e 58static const char *serial_logbase = logbase_ascii;
c906108c 59\f
c5aa993b 60
c906108c
SS
61static int serial_current_type = 0;
62
c378eb4e 63/* Log char CH of type CHTYPE, with TIMEOUT. */
c906108c
SS
64
65/* Define bogus char to represent a BREAK. Should be careful to choose a value
66 that can't be confused with a normal char, or an error code. */
67#define SERIAL_BREAK 1235
68
69static void
d9fcf2fb 70serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout)
c906108c
SS
71{
72 if (ch_type != serial_current_type)
73 {
2acceee2 74 fprintf_unfiltered (stream, "\n%c ", ch_type);
c906108c
SS
75 serial_current_type = ch_type;
76 }
77
78 if (serial_logbase != logbase_ascii)
2acceee2 79 fputc_unfiltered (' ', stream);
c906108c
SS
80
81 switch (ch)
82 {
83 case SERIAL_TIMEOUT:
2acceee2 84 fprintf_unfiltered (stream, "<Timeout: %d seconds>", timeout);
c906108c
SS
85 return;
86 case SERIAL_ERROR:
2acceee2 87 fprintf_unfiltered (stream, "<Error: %s>", safe_strerror (errno));
c906108c
SS
88 return;
89 case SERIAL_EOF:
2acceee2 90 fputs_unfiltered ("<Eof>", stream);
c906108c
SS
91 return;
92 case SERIAL_BREAK:
2acceee2 93 fputs_unfiltered ("<Break>", stream);
c906108c
SS
94 return;
95 default:
96 if (serial_logbase == logbase_hex)
2acceee2 97 fprintf_unfiltered (stream, "%02x", ch & 0xff);
c906108c 98 else if (serial_logbase == logbase_octal)
2acceee2 99 fprintf_unfiltered (stream, "%03o", ch & 0xff);
c906108c
SS
100 else
101 switch (ch)
102 {
c5aa993b 103 case '\\':
2acceee2 104 fputs_unfiltered ("\\\\", stream);
c5aa993b
JM
105 break;
106 case '\b':
2acceee2 107 fputs_unfiltered ("\\b", stream);
c5aa993b
JM
108 break;
109 case '\f':
2acceee2 110 fputs_unfiltered ("\\f", stream);
c5aa993b
JM
111 break;
112 case '\n':
2acceee2 113 fputs_unfiltered ("\\n", stream);
c5aa993b
JM
114 break;
115 case '\r':
2acceee2 116 fputs_unfiltered ("\\r", stream);
c5aa993b
JM
117 break;
118 case '\t':
2acceee2 119 fputs_unfiltered ("\\t", stream);
c5aa993b
JM
120 break;
121 case '\v':
2acceee2 122 fputs_unfiltered ("\\v", stream);
c5aa993b
JM
123 break;
124 default:
3e43a32a
MS
125 fprintf_unfiltered (stream,
126 isprint (ch) ? "%c" : "\\x%02x", ch & 0xFF);
c5aa993b 127 break;
c906108c
SS
128 }
129 }
130}
131
132void
c2c6d25f 133serial_log_command (const char *cmd)
c906108c
SS
134{
135 if (!serial_logfp)
136 return;
137
138 serial_current_type = 'c';
139
140 fputs_unfiltered ("\nc ", serial_logfp);
141 fputs_unfiltered (cmd, serial_logfp);
142
143 /* Make sure that the log file is as up-to-date as possible,
c378eb4e 144 in case we are getting ready to dump core or something. */
c906108c
SS
145 gdb_flush (serial_logfp);
146}
147
c2c6d25f 148\f
c906108c 149static struct serial_ops *
58f07bae 150serial_interface_lookup (const char *name)
c906108c
SS
151{
152 struct serial_ops *ops;
153
154 for (ops = serial_ops_list; ops; ops = ops->next)
155 if (strcmp (name, ops->name) == 0)
156 return ops;
157
158 return NULL;
159}
160
161void
c2c6d25f 162serial_add_interface (struct serial_ops *optable)
c906108c
SS
163{
164 optable->next = serial_ops_list;
165 serial_ops_list = optable;
166}
167
c378eb4e 168/* Open up a device or a network socket, depending upon the syntax of NAME. */
c906108c 169
819cc324 170struct serial *
c2c6d25f 171serial_open (const char *name)
c906108c 172{
819cc324 173 struct serial *scb;
c906108c 174 struct serial_ops *ops;
c2c6d25f 175 const char *open_name = name;
c906108c
SS
176
177 for (scb = scb_base; scb; scb = scb->next)
178 if (scb->name && strcmp (scb->name, name) == 0)
179 {
180 scb->refcnt++;
181 return scb;
182 }
183
50a9e2f1 184 if (strcmp (name, "pc") == 0)
c906108c 185 ops = serial_interface_lookup ("pc");
c906108c
SS
186 else if (strncmp (name, "lpt", 3) == 0)
187 ops = serial_interface_lookup ("parallel");
43e526b9 188 else if (strncmp (name, "|", 1) == 0)
c2c6d25f
JM
189 {
190 ops = serial_interface_lookup ("pipe");
8b9e3a15
VP
191 /* Discard ``|'' and any space before the command itself. */
192 ++open_name;
193 while (isspace (*open_name))
194 ++open_name;
c2c6d25f 195 }
2821caf1
JB
196 /* Check for a colon, suggesting an IP address/port pair.
197 Do this *after* checking for all the interesting prefixes. We
198 don't want to constrain the syntax of what can follow them. */
199 else if (strchr (name, ':'))
200 ops = serial_interface_lookup ("tcp");
c906108c
SS
201 else
202 ops = serial_interface_lookup ("hardwire");
203
204 if (!ops)
205 return NULL;
206
65e2f740 207 scb = XMALLOC (struct serial);
c906108c
SS
208
209 scb->ops = ops;
210
211 scb->bufcnt = 0;
212 scb->bufp = scb->buf;
65cc4390 213 scb->error_fd = -1;
c906108c 214
766062f6 215 /* `...->open (...)' would get expanded by the open(2) syscall macro. */
652aaa24 216 if ((*scb->ops->open) (scb, open_name))
c906108c 217 {
b8c9b27d 218 xfree (scb);
c906108c
SS
219 return NULL;
220 }
221
4fcf66da 222 scb->name = xstrdup (name);
c906108c
SS
223 scb->next = scb_base;
224 scb->refcnt = 1;
2acceee2
JM
225 scb->debug_p = 0;
226 scb->async_state = 0;
c2c6d25f
JM
227 scb->async_handler = NULL;
228 scb->async_context = NULL;
c906108c
SS
229 scb_base = scb;
230
231 last_serial_opened = scb;
232
233 if (serial_logfile != NULL)
234 {
235 serial_logfp = gdb_fopen (serial_logfile, "w");
236 if (serial_logfp == NULL)
237 perror_with_name (serial_logfile);
238 }
239
240 return scb;
241}
242
0ea3f30e
DJ
243/* Return the open serial device for FD, if found, or NULL if FD
244 is not already opened. */
245
246struct serial *
247serial_for_fd (int fd)
248{
249 struct serial *scb;
0ea3f30e
DJ
250
251 for (scb = scb_base; scb; scb = scb->next)
252 if (scb->fd == fd)
253 return scb;
254
255 return NULL;
256}
257
58f07bae
PA
258/* Open a new serial stream using a file handle, using serial
259 interface ops OPS. */
260
261static struct serial *
262serial_fdopen_ops (const int fd, struct serial_ops *ops)
c906108c 263{
819cc324 264 struct serial *scb;
c906108c 265
58f07bae
PA
266 scb = serial_for_fd (fd);
267 if (scb)
268 {
269 scb->refcnt++;
270 return scb;
271 }
c906108c 272
0ea3f30e 273 if (!ops)
58f07bae
PA
274 {
275 ops = serial_interface_lookup ("terminal");
276 if (!ops)
277 ops = serial_interface_lookup ("hardwire");
278 }
c906108c
SS
279
280 if (!ops)
281 return NULL;
282
0ea3f30e 283 scb = XCALLOC (1, struct serial);
c906108c
SS
284
285 scb->ops = ops;
286
287 scb->bufcnt = 0;
288 scb->bufp = scb->buf;
58f07bae 289 scb->error_fd = -1;
c906108c
SS
290
291 scb->name = NULL;
292 scb->next = scb_base;
293 scb->refcnt = 1;
2acceee2
JM
294 scb->debug_p = 0;
295 scb->async_state = 0;
c2c6d25f
JM
296 scb->async_handler = NULL;
297 scb->async_context = NULL;
c906108c
SS
298 scb_base = scb;
299
58f07bae
PA
300 if ((ops->fdopen) != NULL)
301 (*ops->fdopen) (scb, fd);
302 else
303 scb->fd = fd;
304
c906108c
SS
305 last_serial_opened = scb;
306
307 return scb;
308}
309
58f07bae
PA
310struct serial *
311serial_fdopen (const int fd)
312{
313 return serial_fdopen_ops (fd, NULL);
314}
315
c2c6d25f 316static void
819cc324 317do_serial_close (struct serial *scb, int really_close)
c906108c 318{
819cc324 319 struct serial *tmp_scb;
c906108c
SS
320
321 last_serial_opened = NULL;
322
323 if (serial_logfp)
324 {
325 fputs_unfiltered ("\nEnd of log\n", serial_logfp);
326 serial_current_type = 0;
327
c378eb4e 328 /* XXX - What if serial_logfp == gdb_stdout or gdb_stderr? */
d9fcf2fb 329 ui_file_delete (serial_logfp);
c906108c
SS
330 serial_logfp = NULL;
331 }
332
333/* This is bogus. It's not our fault if you pass us a bad scb...! Rob, you
334 should fix your code instead. */
335
336 if (!scb)
337 return;
338
339 scb->refcnt--;
340 if (scb->refcnt > 0)
341 return;
342
c378eb4e 343 /* ensure that the FD has been taken out of async mode. */
c2c6d25f
JM
344 if (scb->async_handler != NULL)
345 serial_async (scb, NULL, NULL);
346
c906108c
SS
347 if (really_close)
348 scb->ops->close (scb);
349
350 if (scb->name)
b8c9b27d 351 xfree (scb->name);
c906108c
SS
352
353 if (scb_base == scb)
354 scb_base = scb_base->next;
355 else
356 for (tmp_scb = scb_base; tmp_scb; tmp_scb = tmp_scb->next)
357 {
358 if (tmp_scb->next != scb)
359 continue;
360
361 tmp_scb->next = tmp_scb->next->next;
362 break;
363 }
364
b8c9b27d 365 xfree (scb);
c906108c
SS
366}
367
c2c6d25f 368void
819cc324 369serial_close (struct serial *scb)
c2c6d25f
JM
370{
371 do_serial_close (scb, 1);
372}
373
374void
819cc324 375serial_un_fdopen (struct serial *scb)
c2c6d25f
JM
376{
377 do_serial_close (scb, 0);
378}
379
380int
819cc324 381serial_readchar (struct serial *scb, int timeout)
c2c6d25f
JM
382{
383 int ch;
384
2df3850c 385 /* FIXME: cagney/1999-10-11: Don't enable this check until the ASYNC
c378eb4e 386 code is finished. */
2cd58942 387 if (0 && serial_is_async_p (scb) && timeout < 0)
8e65ff28 388 internal_error (__FILE__, __LINE__,
e2e0b3e5 389 _("serial_readchar: blocking read in async mode"));
2df3850c 390
c2c6d25f
JM
391 ch = scb->ops->readchar (scb, timeout);
392 if (serial_logfp != NULL)
393 {
2acceee2 394 serial_logchar (serial_logfp, 'r', ch, timeout);
c2c6d25f
JM
395
396 /* Make sure that the log file is as up-to-date as possible,
c378eb4e 397 in case we are getting ready to dump core or something. */
c2c6d25f
JM
398 gdb_flush (serial_logfp);
399 }
2cd58942 400 if (serial_debug_p (scb))
2acceee2
JM
401 {
402 fprintf_unfiltered (gdb_stdlog, "[");
403 serial_logchar (gdb_stdlog, 'r', ch, timeout);
404 fprintf_unfiltered (gdb_stdlog, "]");
405 gdb_flush (gdb_stdlog);
406 }
c2c6d25f
JM
407
408 return (ch);
409}
410
411int
819cc324 412serial_write (struct serial *scb, const char *str, int len)
c2c6d25f
JM
413{
414 if (serial_logfp != NULL)
415 {
416 int count;
417
418 for (count = 0; count < len; count++)
2acceee2 419 serial_logchar (serial_logfp, 'w', str[count] & 0xff, 0);
c2c6d25f
JM
420
421 /* Make sure that the log file is as up-to-date as possible,
c378eb4e 422 in case we are getting ready to dump core or something. */
c2c6d25f
JM
423 gdb_flush (serial_logfp);
424 }
9214d371
DE
425 if (serial_debug_p (scb))
426 {
427 int count;
428
429 for (count = 0; count < len; count++)
430 {
431 fprintf_unfiltered (gdb_stdlog, "[");
432 serial_logchar (gdb_stdlog, 'w', str[count] & 0xff, 0);
433 fprintf_unfiltered (gdb_stdlog, "]");
434 }
435 gdb_flush (gdb_stdlog);
436 }
c2c6d25f
JM
437
438 return (scb->ops->write (scb, str, len));
439}
440
441void
819cc324 442serial_printf (struct serial *desc, const char *format,...)
c2c6d25f
JM
443{
444 va_list args;
445 char *buf;
446 va_start (args, format);
447
e623b504 448 buf = xstrvprintf (format, args);
2cd58942 449 serial_write (desc, buf, strlen (buf));
c2c6d25f 450
b8c9b27d 451 xfree (buf);
c2c6d25f
JM
452 va_end (args);
453}
454
455int
819cc324 456serial_drain_output (struct serial *scb)
c2c6d25f
JM
457{
458 return scb->ops->drain_output (scb);
459}
460
461int
819cc324 462serial_flush_output (struct serial *scb)
c2c6d25f
JM
463{
464 return scb->ops->flush_output (scb);
465}
466
467int
819cc324 468serial_flush_input (struct serial *scb)
c2c6d25f
JM
469{
470 return scb->ops->flush_input (scb);
471}
472
473int
819cc324 474serial_send_break (struct serial *scb)
c2c6d25f
JM
475{
476 if (serial_logfp != NULL)
2acceee2 477 serial_logchar (serial_logfp, 'w', SERIAL_BREAK, 0);
c2c6d25f
JM
478
479 return (scb->ops->send_break (scb));
480}
481
482void
819cc324 483serial_raw (struct serial *scb)
c2c6d25f
JM
484{
485 scb->ops->go_raw (scb);
486}
487
488serial_ttystate
819cc324 489serial_get_tty_state (struct serial *scb)
c2c6d25f
JM
490{
491 return scb->ops->get_tty_state (scb);
492}
493
1e182ce8
UW
494serial_ttystate
495serial_copy_tty_state (struct serial *scb, serial_ttystate ttystate)
496{
497 return scb->ops->copy_tty_state (scb, ttystate);
498}
499
c2c6d25f 500int
819cc324 501serial_set_tty_state (struct serial *scb, serial_ttystate ttystate)
c2c6d25f
JM
502{
503 return scb->ops->set_tty_state (scb, ttystate);
504}
505
506void
819cc324 507serial_print_tty_state (struct serial *scb,
c2c6d25f 508 serial_ttystate ttystate,
d9fcf2fb 509 struct ui_file *stream)
c2c6d25f
JM
510{
511 scb->ops->print_tty_state (scb, ttystate, stream);
512}
513
514int
819cc324 515serial_noflush_set_tty_state (struct serial *scb,
c2c6d25f
JM
516 serial_ttystate new_ttystate,
517 serial_ttystate old_ttystate)
518{
519 return scb->ops->noflush_set_tty_state (scb, new_ttystate, old_ttystate);
520}
521
522int
819cc324 523serial_setbaudrate (struct serial *scb, int rate)
c2c6d25f
JM
524{
525 return scb->ops->setbaudrate (scb, rate);
526}
527
528int
819cc324 529serial_setstopbits (struct serial *scb, int num)
c2c6d25f
JM
530{
531 return scb->ops->setstopbits (scb, num);
532}
533
534int
819cc324 535serial_can_async_p (struct serial *scb)
c2c6d25f
JM
536{
537 return (scb->ops->async != NULL);
538}
539
540int
819cc324 541serial_is_async_p (struct serial *scb)
c2c6d25f
JM
542{
543 return (scb->ops->async != NULL) && (scb->async_handler != NULL);
544}
545
546void
819cc324 547serial_async (struct serial *scb,
c2c6d25f
JM
548 serial_event_ftype *handler,
549 void *context)
550{
05ce04a4 551 int changed = ((scb->async_handler == NULL) != (handler == NULL));
433759f7 552
c2c6d25f
JM
553 scb->async_handler = handler;
554 scb->async_context = context;
05ce04a4
VP
555 /* Only change mode if there is a need. */
556 if (changed)
557 scb->ops->async (scb, handler != NULL);
c2c6d25f
JM
558}
559
560int
819cc324 561deprecated_serial_fd (struct serial *scb)
c2c6d25f
JM
562{
563 /* FIXME: should this output a warning that deprecated code is being
c378eb4e 564 called? */
c2c6d25f
JM
565 if (scb->fd < 0)
566 {
8e65ff28 567 internal_error (__FILE__, __LINE__,
e2e0b3e5 568 _("serial: FD not valid"));
c2c6d25f
JM
569 }
570 return scb->fd; /* sigh */
571}
572
2acceee2 573void
819cc324 574serial_debug (struct serial *scb, int debug_p)
2acceee2
JM
575{
576 scb->debug_p = debug_p;
577}
578
579int
819cc324 580serial_debug_p (struct serial *scb)
2acceee2
JM
581{
582 return scb->debug_p || global_serial_debug_p;
583}
584
0ea3f30e
DJ
585#ifdef USE_WIN32API
586void
587serial_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
588{
589 if (scb->ops->wait_handle)
590 scb->ops->wait_handle (scb, read, except);
591 else
592 {
593 *read = (HANDLE) _get_osfhandle (scb->fd);
594 *except = NULL;
595 }
596}
c3e2b812
DJ
597
598void
599serial_done_wait_handle (struct serial *scb)
600{
601 if (scb->ops->done_wait_handle)
602 scb->ops->done_wait_handle (scb);
603}
0ea3f30e 604#endif
2acceee2 605
58f07bae
PA
606int
607serial_pipe (struct serial *scbs[2])
608{
609 struct serial_ops *ops;
610 int fildes[2];
611
612 ops = serial_interface_lookup ("pipe");
613 if (!ops)
614 {
615 errno = ENOSYS;
616 return -1;
617 }
618
619 if (gdb_pipe (fildes) == -1)
620 return -1;
621
622 scbs[0] = serial_fdopen_ops (fildes[0], ops);
623 scbs[1] = serial_fdopen_ops (fildes[1], ops);
624 return 0;
625}
626
c906108c 627#if 0
819cc324
AC
628/* The connect command is #if 0 because I hadn't thought of an elegant
629 way to wait for I/O on two `struct serial *'s simultaneously. Two
630 solutions came to mind:
c906108c 631
c5aa993b
JM
632 1) Fork, and have have one fork handle the to user direction,
633 and have the other hand the to target direction. This
634 obviously won't cut it for MSDOS.
c906108c 635
c5aa993b
JM
636 2) Use something like select. This assumes that stdin and
637 the target side can both be waited on via the same
638 mechanism. This may not be true for DOS, if GDB is
639 talking to the target via a TCP socket.
819cc324 640 -grossman, 8 Jun 93 */
c906108c
SS
641
642/* Connect the user directly to the remote system. This command acts just like
643 the 'cu' or 'tip' command. Use <CR>~. or <CR>~^D to break out. */
644
819cc324 645static struct serial *tty_desc; /* Controlling terminal */
c906108c
SS
646
647static void
c2c6d25f 648cleanup_tty (serial_ttystate ttystate)
c906108c
SS
649{
650 printf_unfiltered ("\r\n[Exiting connect mode]\r\n");
2cd58942 651 serial_set_tty_state (tty_desc, ttystate);
b8c9b27d 652 xfree (ttystate);
2cd58942 653 serial_close (tty_desc);
c906108c
SS
654}
655
656static void
c2c6d25f 657connect_command (char *args, int fromtty)
c906108c
SS
658{
659 int c;
660 char cur_esc = 0;
661 serial_ttystate ttystate;
819cc324 662 struct serial *port_desc; /* TTY port */
c906108c 663
c5aa993b 664 dont_repeat ();
c906108c
SS
665
666 if (args)
3e43a32a
MS
667 fprintf_unfiltered (gdb_stderr,
668 "This command takes no args. "
669 "They have been ignored.\n");
c5aa993b
JM
670
671 printf_unfiltered ("[Entering connect mode. Use ~. or ~^D to escape]\n");
c906108c 672
2cd58942 673 tty_desc = serial_fdopen (0);
c906108c
SS
674 port_desc = last_serial_opened;
675
2cd58942 676 ttystate = serial_get_tty_state (tty_desc);
c906108c 677
2cd58942
AC
678 serial_raw (tty_desc);
679 serial_raw (port_desc);
c906108c
SS
680
681 make_cleanup (cleanup_tty, ttystate);
682
683 while (1)
684 {
685 int mask;
686
2cd58942 687 mask = serial_wait_2 (tty_desc, port_desc, -1);
c906108c
SS
688
689 if (mask & 2)
690 { /* tty input */
691 char cx;
692
693 while (1)
694 {
2cd58942 695 c = serial_readchar (tty_desc, 0);
c906108c
SS
696
697 if (c == SERIAL_TIMEOUT)
c5aa993b 698 break;
c906108c
SS
699
700 if (c < 0)
e2e0b3e5 701 perror_with_name (_("connect"));
c906108c
SS
702
703 cx = c;
2cd58942 704 serial_write (port_desc, &cx, 1);
c906108c
SS
705
706 switch (cur_esc)
707 {
708 case 0:
709 if (c == '\r')
710 cur_esc = c;
711 break;
712 case '\r':
713 if (c == '~')
714 cur_esc = c;
715 else
716 cur_esc = 0;
717 break;
718 case '~':
719 if (c == '.' || c == '\004')
720 return;
721 else
722 cur_esc = 0;
723 }
724 }
725 }
726
727 if (mask & 1)
728 { /* Port input */
729 char cx;
730
731 while (1)
732 {
2cd58942 733 c = serial_readchar (port_desc, 0);
c906108c
SS
734
735 if (c == SERIAL_TIMEOUT)
c5aa993b 736 break;
c906108c
SS
737
738 if (c < 0)
e2e0b3e5 739 perror_with_name (_("connect"));
c906108c
SS
740
741 cx = c;
742
2cd58942 743 serial_write (tty_desc, &cx, 1);
c906108c
SS
744 }
745 }
746 }
747}
748#endif /* 0 */
749
e3abfe1d
AC
750/* Serial set/show framework. */
751
752static struct cmd_list_element *serial_set_cmdlist;
753static struct cmd_list_element *serial_show_cmdlist;
754
755static void
756serial_set_cmd (char *args, int from_tty)
757{
3e43a32a
MS
758 printf_unfiltered ("\"set serial\" must be followed "
759 "by the name of a command.\n");
e3abfe1d
AC
760 help_list (serial_set_cmdlist, "set serial ", -1, gdb_stdout);
761}
762
763static void
764serial_show_cmd (char *args, int from_tty)
765{
766 cmd_show_list (serial_show_cmdlist, from_tty, "");
767}
768
769
c906108c 770void
c2c6d25f 771_initialize_serial (void)
c906108c
SS
772{
773#if 0
1bedd215
AC
774 add_com ("connect", class_obscure, connect_command, _("\
775Connect the terminal directly up to the command monitor.\n\
776Use <CR>~. or <CR>~^D to break out."));
c906108c
SS
777#endif /* 0 */
778
1bedd215
AC
779 add_prefix_cmd ("serial", class_maintenance, serial_set_cmd, _("\
780Set default serial/parallel port configuration."),
e3abfe1d
AC
781 &serial_set_cmdlist, "set serial ",
782 0/*allow-unknown*/,
783 &setlist);
784
1bedd215
AC
785 add_prefix_cmd ("serial", class_maintenance, serial_show_cmd, _("\
786Show default serial/parallel port configuration."),
e3abfe1d
AC
787 &serial_show_cmdlist, "show serial ",
788 0/*allow-unknown*/,
789 &showlist);
790
f397e303
AC
791 add_setshow_filename_cmd ("remotelogfile", no_class, &serial_logfile, _("\
792Set filename for remote session recording."), _("\
793Show filename for remote session recording."), _("\
c906108c 794This file is used to record the remote session for future playback\n\
f397e303
AC
795by gdbserver."),
796 NULL,
797 NULL, /* FIXME: i18n: */
798 &setlist, &showlist);
c906108c 799
7ab04401
AC
800 add_setshow_enum_cmd ("remotelogbase", no_class, logbase_enums,
801 &serial_logbase, _("\
802Set numerical base for remote session logging"), _("\
803Show numerical base for remote session logging"), NULL,
804 NULL,
805 NULL, /* FIXME: i18n: */
806 &setlist, &showlist);
2acceee2 807
85c07804
AC
808 add_setshow_zinteger_cmd ("serial", class_maintenance,
809 &global_serial_debug_p, _("\
810Set serial debugging."), _("\
811Show serial debugging."), _("\
812When non-zero, serial port debugging is enabled."),
813 NULL,
814 NULL, /* FIXME: i18n: */
815 &setdebuglist, &showdebuglist);
c906108c 816}