1 /* Support for connecting Guile's stdio to GDB's.
2 as well as r/w memory via ports.
4 Copyright (C) 2014-2019 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 /* See README file in this directory for implementation notes, coding
22 conventions, et.al. */
25 #include "gdb_select.h"
28 #include "guile-internal.h"
29 #include "common/gdb_optional.h"
32 #if defined (HAVE_POLL_H)
34 #elif defined (HAVE_SYS_POLL_H)
39 /* A ui-file for sending output to Guile. */
41 class ioscm_file_port : public ui_file
44 /* Return a ui_file that writes to PORT. */
45 explicit ioscm_file_port (SCM port);
47 void flush () override;
48 void write (const char *buf, long length_buf) override;
54 /* Data for a memory port. */
58 /* Bounds of memory range this port is allowed to access: [start, end).
59 This means that 0xff..ff is not accessible. I can live with that. */
62 /* (end - start), recorded for convenience. */
65 /* Think of this as the lseek value maintained by the kernel.
66 This value is always in the range [0, size]. */
69 /* The size of the internal r/w buffers.
70 Scheme ports aren't a straightforward mapping to memory r/w.
71 Generally the user specifies how much to r/w and all access is
72 unbuffered. We don't try to provide equivalent access, but we allow
73 the user to specify these values to help get something similar. */
74 unsigned read_buf_size, write_buf_size;
77 /* Copies of the original system input/output/error ports.
78 These are recorded for debugging purposes. */
79 static SCM orig_input_port_scm;
80 static SCM orig_output_port_scm;
81 static SCM orig_error_port_scm;
83 /* This is the stdio port descriptor, scm_ptob_descriptor. */
84 static scm_t_bits stdio_port_desc;
86 /* Note: scm_make_port_type takes a char * instead of a const char *. */
87 static /*const*/ char stdio_port_desc_name[] = "gdb:stdio-port";
89 /* Names of each gdb port. */
90 static const char input_port_name[] = "gdb:stdin";
91 static const char output_port_name[] = "gdb:stdout";
92 static const char error_port_name[] = "gdb:stderr";
94 /* This is the actual port used from Guile.
95 We don't expose these to the user though, to ensure they're not
97 static SCM input_port_scm;
98 static SCM output_port_scm;
99 static SCM error_port_scm;
101 /* Internal enum for specifying output port. */
102 enum oport { GDB_STDOUT, GDB_STDERR };
104 /* This is the memory port descriptor, scm_ptob_descriptor. */
105 static scm_t_bits memory_port_desc;
107 /* Note: scm_make_port_type takes a char * instead of a const char *. */
108 static /*const*/ char memory_port_desc_name[] = "gdb:memory-port";
110 /* The default amount of memory to fetch for each read/write request.
111 Scheme ports don't provide a way to specify the size of a read,
112 which is important to us to minimize the number of inferior interactions,
113 which over a remote link can be important. To compensate we augment the
114 port API with a new function that let's the user specify how much the next
115 read request should fetch. This is the initial value for each new port. */
116 static const unsigned default_read_buf_size = 16;
117 static const unsigned default_write_buf_size = 16;
119 /* Arbitrarily limit memory port buffers to 1 byte to 4K. */
120 static const unsigned min_memory_port_buf_size = 1;
121 static const unsigned max_memory_port_buf_size = 4096;
123 /* "out of range" error message for buf sizes. */
124 static char *out_of_range_buf_size;
126 /* Keywords used by open-memory. */
127 static SCM mode_keyword;
128 static SCM start_keyword;
129 static SCM size_keyword;
131 /* Helper to do the low level work of opening a port.
132 Newer versions of Guile (2.1.x) have scm_c_make_port. */
135 ioscm_open_port (scm_t_bits port_type, long mode_bits)
139 #if 0 /* TODO: Guile doesn't export this. What to do? */
140 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
143 port = scm_new_port_table_entry (port_type);
145 SCM_SET_CELL_TYPE (port, port_type | mode_bits);
147 #if 0 /* TODO: Guile doesn't export this. What to do? */
148 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
154 /* Support for connecting Guile's stdio ports to GDB's stdio ports. */
156 /* The scm_t_ptob_descriptor.input_waiting "method".
157 Return a lower bound on the number of bytes available for input. */
160 ioscm_input_waiting (SCM port)
164 if (! scm_is_eq (port, input_port_scm))
169 /* This is copied from libguile/fports.c. */
170 struct pollfd pollfd = { fdes, POLLIN, 0 };
171 static int use_poll = -1;
175 /* This is copied from event-loop.c: poll cannot be used for stdin on
176 m68k-motorola-sysv. */
177 struct pollfd test_pollfd = { fdes, POLLIN, 0 };
179 if (poll (&test_pollfd, 1, 0) == 1 && (test_pollfd.revents & POLLNVAL))
187 /* Guile doesn't export SIGINT hooks like Python does.
188 For now pass EINTR to scm_syserror, that's what fports.c does. */
189 if (poll (&pollfd, 1, 0) < 0)
190 scm_syserror (FUNC_NAME);
192 return pollfd.revents & POLLIN ? 1 : 0;
199 struct timeval timeout;
201 int num_fds = fdes + 1;
204 memset (&timeout, 0, sizeof (timeout));
205 FD_ZERO (&input_fds);
206 FD_SET (fdes, &input_fds);
208 num_found = interruptible_select (num_fds,
209 &input_fds, NULL, NULL,
213 /* Guile doesn't export SIGINT hooks like Python does.
214 For now pass EINTR to scm_syserror, that's what fports.c does. */
215 scm_syserror (FUNC_NAME);
217 return num_found > 0 && FD_ISSET (fdes, &input_fds);
221 /* The scm_t_ptob_descriptor.fill_input "method". */
224 ioscm_fill_input (SCM port)
226 /* Borrowed from libguile/fports.c. */
228 scm_t_port *pt = SCM_PTAB_ENTRY (port);
230 /* If we're called on stdout,stderr, punt. */
231 if (! scm_is_eq (port, input_port_scm))
232 return (scm_t_wchar) EOF; /* Set errno and return -1? */
234 gdb_flush (gdb_stdout);
235 gdb_flush (gdb_stderr);
237 count = ui_file_read (gdb_stdin, (char *) pt->read_buf, pt->read_buf_size);
239 scm_syserror (FUNC_NAME);
241 return (scm_t_wchar) EOF;
243 pt->read_pos = pt->read_buf;
244 pt->read_end = pt->read_buf + count;
245 return *pt->read_buf;
248 /* Like fputstrn_filtered, but don't escape characters, except nul.
249 Also like fputs_filtered, but a length is specified. */
252 fputsn_filtered (const char *s, size_t size, struct ui_file *stream)
256 for (i = 0; i < size; ++i)
259 fputs_filtered ("\\000", stream);
261 fputc_filtered (s[i], stream);
265 /* Write to gdb's stdout or stderr. */
268 ioscm_write (SCM port, const void *data, size_t size)
271 /* If we're called on stdin, punt. */
272 if (scm_is_eq (port, input_port_scm))
277 if (scm_is_eq (port, error_port_scm))
278 fputsn_filtered ((const char *) data, size, gdb_stderr);
280 fputsn_filtered ((const char *) data, size, gdb_stdout);
282 CATCH (except, RETURN_MASK_ALL)
284 GDBSCM_HANDLE_GDB_EXCEPTION (except);
289 /* Flush gdb's stdout or stderr. */
292 ioscm_flush (SCM port)
294 /* If we're called on stdin, punt. */
295 if (scm_is_eq (port, input_port_scm))
298 if (scm_is_eq (port, error_port_scm))
299 gdb_flush (gdb_stderr);
301 gdb_flush (gdb_stdout);
304 /* Initialize the gdb stdio port type.
306 N.B. isatty? will fail on these ports, it is only supported for file
307 ports. IWBN if we could "subclass" file ports. */
310 ioscm_init_gdb_stdio_port (void)
312 stdio_port_desc = scm_make_port_type (stdio_port_desc_name,
313 ioscm_fill_input, ioscm_write);
315 scm_set_port_input_waiting (stdio_port_desc, ioscm_input_waiting);
316 scm_set_port_flush (stdio_port_desc, ioscm_flush);
319 /* Subroutine of ioscm_make_gdb_stdio_port to simplify it.
320 Set up the buffers of port PORT.
321 MODE_BITS are the mode bits of PORT. */
324 ioscm_init_stdio_buffers (SCM port, long mode_bits)
326 scm_t_port *pt = SCM_PTAB_ENTRY (port);
327 #define GDB_STDIO_BUFFER_DEFAULT_SIZE 1024
328 int size = mode_bits & SCM_BUF0 ? 0 : GDB_STDIO_BUFFER_DEFAULT_SIZE;
329 int writing = (mode_bits & SCM_WRTNG) != 0;
331 /* This is heavily copied from scm_fport_buffer_add. */
333 if (!writing && size > 0)
336 = (unsigned char *) scm_gc_malloc_pointerless (size, "port buffer");
337 pt->read_pos = pt->read_end = pt->read_buf;
338 pt->read_buf_size = size;
342 pt->read_pos = pt->read_buf = pt->read_end = &pt->shortbuf;
343 pt->read_buf_size = 1;
346 if (writing && size > 0)
349 = (unsigned char *) scm_gc_malloc_pointerless (size, "port buffer");
350 pt->write_pos = pt->write_buf;
351 pt->write_buf_size = size;
355 pt->write_buf = pt->write_pos = &pt->shortbuf;
356 pt->write_buf_size = 1;
358 pt->write_end = pt->write_buf + pt->write_buf_size;
361 /* Create a gdb stdio port. */
364 ioscm_make_gdb_stdio_port (int fd)
366 int is_a_tty = isatty (fd);
368 const char *mode_str;
375 name = input_port_name;
376 mode_str = is_a_tty ? "r0" : "r";
379 name = output_port_name;
380 mode_str = is_a_tty ? "w0" : "w";
383 name = error_port_name;
384 mode_str = is_a_tty ? "w0" : "w";
387 gdb_assert_not_reached ("bad stdio file descriptor");
390 mode_bits = scm_mode_bits ((char *) mode_str);
391 port = ioscm_open_port (stdio_port_desc, mode_bits);
393 scm_set_port_filename_x (port, gdbscm_scm_from_c_string (name));
395 ioscm_init_stdio_buffers (port, mode_bits);
400 /* (stdio-port? object) -> boolean */
403 gdbscm_stdio_port_p (SCM scm)
405 /* This is copied from SCM_FPORTP. */
406 return scm_from_bool (!SCM_IMP (scm)
407 && (SCM_TYP16 (scm) == stdio_port_desc));
410 /* GDB's ports are accessed via functions to keep them read-only. */
412 /* (input-port) -> port */
415 gdbscm_input_port (void)
417 return input_port_scm;
420 /* (output-port) -> port */
423 gdbscm_output_port (void)
425 return output_port_scm;
428 /* (error-port) -> port */
431 gdbscm_error_port (void)
433 return error_port_scm;
436 /* Support for sending GDB I/O to Guile ports. */
438 ioscm_file_port::ioscm_file_port (SCM port)
443 ioscm_file_port::flush ()
448 ioscm_file_port::write (const char *buffer, long length_buffer)
450 scm_c_write (m_port, buffer, length_buffer);
454 /* Helper routine for with-{output,error}-to-port. */
457 ioscm_with_output_to_port_worker (SCM port, SCM thunk, enum oport oport,
458 const char *func_name)
462 SCM_ASSERT_TYPE (gdbscm_is_true (scm_output_port_p (port)), port,
463 SCM_ARG1, func_name, _("output port"));
464 SCM_ASSERT_TYPE (gdbscm_is_true (scm_thunk_p (thunk)), thunk,
465 SCM_ARG2, func_name, _("thunk"));
467 set_batch_flag_and_restore_page_info save_page_info;
469 scoped_restore restore_async = make_scoped_restore (¤t_ui->async, 0);
471 ui_file_up port_file (new ioscm_file_port (port));
473 scoped_restore save_file = make_scoped_restore (oport == GDB_STDERR
474 ? &gdb_stderr : &gdb_stdout);
477 gdb::optional<ui_out_redirect_pop> redirect_popper;
478 if (oport == GDB_STDERR)
479 gdb_stderr = port_file.get ();
482 current_uiout->redirect (port_file.get ());
483 redirect_popper.emplace (current_uiout);
485 gdb_stdout = port_file.get ();
488 result = gdbscm_safe_call_0 (thunk, NULL);
491 if (gdbscm_is_exception (result))
492 gdbscm_throw (result);
497 /* (%with-gdb-output-to-port port thunk) -> object
498 This function is experimental.
499 IWBN to not include "gdb" in the name, but it would collide with a standard
500 procedure, and it's common to import the gdb module without a prefix.
501 There are ways around this, but they're more cumbersome.
503 This has % in the name because it's experimental, and we want the
504 user-visible version to come from module (gdb experimental). */
507 gdbscm_percent_with_gdb_output_to_port (SCM port, SCM thunk)
509 return ioscm_with_output_to_port_worker (port, thunk, GDB_STDOUT, FUNC_NAME);
512 /* (%with-gdb-error-to-port port thunk) -> object
513 This function is experimental.
514 IWBN to not include "gdb" in the name, but it would collide with a standard
515 procedure, and it's common to import the gdb module without a prefix.
516 There are ways around this, but they're more cumbersome.
518 This has % in the name because it's experimental, and we want the
519 user-visible version to come from module (gdb experimental). */
522 gdbscm_percent_with_gdb_error_to_port (SCM port, SCM thunk)
524 return ioscm_with_output_to_port_worker (port, thunk, GDB_STDERR, FUNC_NAME);
527 /* Support for r/w memory via ports. */
529 /* Perform an "lseek" to OFFSET,WHENCE on memory port IOMEM.
530 OFFSET must be in the range [0,size].
531 The result is non-zero for success, zero for failure. */
534 ioscm_lseek_address (ioscm_memory_port *iomem, LONGEST offset, int whence)
536 CORE_ADDR new_current;
538 gdb_assert (iomem->current <= iomem->size);
543 /* Catch over/underflow. */
544 if ((offset < 0 && iomem->current + offset > iomem->current)
545 || (offset > 0 && iomem->current + offset < iomem->current))
547 new_current = iomem->current + offset;
550 new_current = offset;
555 new_current = iomem->size;
558 /* TODO: Not supported yet. */
564 if (new_current > iomem->size)
566 iomem->current = new_current;
570 /* "fill_input" method for memory ports. */
573 gdbscm_memory_port_fill_input (SCM port)
575 scm_t_port *pt = SCM_PTAB_ENTRY (port);
576 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
579 /* "current" is the offset of the first byte we want to read. */
580 gdb_assert (iomem->current <= iomem->size);
581 if (iomem->current == iomem->size)
584 /* Don't read outside the allowed memory range. */
585 to_read = pt->read_buf_size;
586 if (to_read > iomem->size - iomem->current)
587 to_read = iomem->size - iomem->current;
589 if (target_read_memory (iomem->start + iomem->current, pt->read_buf,
591 gdbscm_memory_error (FUNC_NAME, _("error reading memory"), SCM_EOL);
593 iomem->current += to_read;
594 pt->read_pos = pt->read_buf;
595 pt->read_end = pt->read_buf + to_read;
596 return *pt->read_buf;
599 /* "end_input" method for memory ports.
600 Clear the read buffer and adjust the file position for unread bytes. */
603 gdbscm_memory_port_end_input (SCM port, int offset)
605 scm_t_port *pt = SCM_PTAB_ENTRY (port);
606 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
607 size_t remaining = pt->read_end - pt->read_pos;
609 /* Note: Use of "int offset" is specified by Guile ports API. */
610 if ((offset < 0 && remaining + offset > remaining)
611 || (offset > 0 && remaining + offset < remaining))
613 gdbscm_out_of_range_error (FUNC_NAME, 0, scm_from_int (offset),
614 _("overflow in offset calculation"));
620 pt->read_pos = pt->read_end;
621 /* Throw error if unread-char used at beginning of file
622 then attempting to write. Seems correct. */
623 if (!ioscm_lseek_address (iomem, -offset, SEEK_CUR))
625 gdbscm_out_of_range_error (FUNC_NAME, 0, scm_from_int (offset),
630 pt->rw_active = SCM_PORT_NEITHER;
633 /* "flush" method for memory ports. */
636 gdbscm_memory_port_flush (SCM port)
638 scm_t_port *pt = SCM_PTAB_ENTRY (port);
639 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
640 size_t to_write = pt->write_pos - pt->write_buf;
645 /* There's no way to indicate a short write, so if the request goes past
646 the end of the port's memory range, flag an error. */
647 if (to_write > iomem->size - iomem->current)
649 gdbscm_out_of_range_error (FUNC_NAME, 0,
650 gdbscm_scm_from_ulongest (to_write),
651 _("writing beyond end of memory range"));
654 if (target_write_memory (iomem->start + iomem->current, pt->write_buf,
656 gdbscm_memory_error (FUNC_NAME, _("error writing memory"), SCM_EOL);
658 iomem->current += to_write;
659 pt->write_pos = pt->write_buf;
660 pt->rw_active = SCM_PORT_NEITHER;
663 /* "write" method for memory ports. */
666 gdbscm_memory_port_write (SCM port, const void *void_data, size_t size)
668 scm_t_port *pt = SCM_PTAB_ENTRY (port);
669 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
670 const gdb_byte *data = (const gdb_byte *) void_data;
672 /* There's no way to indicate a short write, so if the request goes past
673 the end of the port's memory range, flag an error. */
674 if (size > iomem->size - iomem->current)
676 gdbscm_out_of_range_error (FUNC_NAME, 0, gdbscm_scm_from_ulongest (size),
677 _("writing beyond end of memory range"));
680 if (pt->write_buf == &pt->shortbuf)
682 /* Unbuffered port. */
683 if (target_write_memory (iomem->start + iomem->current, data, size) != 0)
684 gdbscm_memory_error (FUNC_NAME, _("error writing memory"), SCM_EOL);
685 iomem->current += size;
689 /* Note: The edge case of what to do when the buffer exactly fills is
690 debatable. Guile flushes when the buffer exactly fills up, so we
691 do too. It's counter-intuitive to my mind, but in case there's a
692 subtlety somewhere that depends on this, we do the same. */
695 size_t space = pt->write_end - pt->write_pos;
699 /* Data fits in buffer, and does not fill it. */
700 memcpy (pt->write_pos, data, size);
701 pt->write_pos += size;
705 memcpy (pt->write_pos, data, space);
706 pt->write_pos = pt->write_end;
707 gdbscm_memory_port_flush (port);
709 const gdb_byte *ptr = data + space;
710 size_t remaining = size - space;
712 if (remaining >= pt->write_buf_size)
714 if (target_write_memory (iomem->start + iomem->current, ptr,
716 gdbscm_memory_error (FUNC_NAME, _("error writing memory"),
718 iomem->current += remaining;
722 memcpy (pt->write_pos, ptr, remaining);
723 pt->write_pos += remaining;
730 /* "seek" method for memory ports. */
733 gdbscm_memory_port_seek (SCM port, scm_t_off offset, int whence)
735 scm_t_port *pt = SCM_PTAB_ENTRY (port);
736 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
740 if (pt->rw_active == SCM_PORT_WRITE)
742 if (offset != 0 || whence != SEEK_CUR)
744 gdbscm_memory_port_flush (port);
745 rc = ioscm_lseek_address (iomem, offset, whence);
746 result = iomem->current;
750 /* Read current position without disturbing the buffer,
751 but flag an error if what's in the buffer goes outside the
753 CORE_ADDR current = iomem->current;
754 size_t delta = pt->write_pos - pt->write_buf;
756 if (current + delta < current
757 || current + delta > iomem->size)
761 result = current + delta;
766 else if (pt->rw_active == SCM_PORT_READ)
768 if (offset != 0 || whence != SEEK_CUR)
770 scm_end_input (port);
771 rc = ioscm_lseek_address (iomem, offset, whence);
772 result = iomem->current;
776 /* Read current position without disturbing the buffer
777 (particularly the unread-char buffer). */
778 CORE_ADDR current = iomem->current;
779 size_t remaining = pt->read_end - pt->read_pos;
781 if (current - remaining > current
782 || current - remaining < iomem->start)
786 result = current - remaining;
790 if (rc != 0 && pt->read_buf == pt->putback_buf)
792 size_t saved_remaining = pt->saved_read_end - pt->saved_read_pos;
794 if (result - saved_remaining > result
795 || result - saved_remaining < iomem->start)
798 result -= saved_remaining;
802 else /* SCM_PORT_NEITHER */
804 rc = ioscm_lseek_address (iomem, offset, whence);
805 result = iomem->current;
810 gdbscm_out_of_range_error (FUNC_NAME, 0,
811 gdbscm_scm_from_longest (offset),
815 /* TODO: The Guile API doesn't support 32x64. We can't fix that here,
816 and there's no need to throw an error if the new address can't be
817 represented in a scm_t_off. But we could return something less
822 /* "close" method for memory ports. */
825 gdbscm_memory_port_close (SCM port)
827 scm_t_port *pt = SCM_PTAB_ENTRY (port);
828 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
830 gdbscm_memory_port_flush (port);
832 if (pt->read_buf == pt->putback_buf)
833 pt->read_buf = pt->saved_read_buf;
834 if (pt->read_buf != &pt->shortbuf)
835 xfree (pt->read_buf);
836 if (pt->write_buf != &pt->shortbuf)
837 xfree (pt->write_buf);
838 scm_gc_free (iomem, sizeof (*iomem), "memory port");
843 /* "free" method for memory ports. */
846 gdbscm_memory_port_free (SCM port)
848 gdbscm_memory_port_close (port);
853 /* "print" method for memory ports. */
856 gdbscm_memory_port_print (SCM exp, SCM port, scm_print_state *pstate)
858 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (exp);
859 char *type = SCM_PTOBNAME (SCM_PTOBNUM (exp));
861 scm_puts ("#<", port);
862 scm_print_port_mode (exp, port);
863 /* scm_print_port_mode includes a trailing space. */
864 gdbscm_printf (port, "%s %s-%s", type,
865 hex_string (iomem->start), hex_string (iomem->end));
866 scm_putc ('>', port);
870 /* Create the port type used for memory. */
873 ioscm_init_memory_port_type (void)
875 memory_port_desc = scm_make_port_type (memory_port_desc_name,
876 gdbscm_memory_port_fill_input,
877 gdbscm_memory_port_write);
879 scm_set_port_end_input (memory_port_desc, gdbscm_memory_port_end_input);
880 scm_set_port_flush (memory_port_desc, gdbscm_memory_port_flush);
881 scm_set_port_seek (memory_port_desc, gdbscm_memory_port_seek);
882 scm_set_port_close (memory_port_desc, gdbscm_memory_port_close);
883 scm_set_port_free (memory_port_desc, gdbscm_memory_port_free);
884 scm_set_port_print (memory_port_desc, gdbscm_memory_port_print);
887 /* Helper for gdbscm_open_memory to parse the mode bits.
888 An exception is thrown if MODE is invalid. */
891 ioscm_parse_mode_bits (const char *func_name, const char *mode)
896 if (*mode != 'r' && *mode != 'w')
898 gdbscm_out_of_range_error (func_name, 0,
899 gdbscm_scm_from_c_string (mode),
900 _("bad mode string"));
902 for (p = mode + 1; *p != '\0'; ++p)
911 gdbscm_out_of_range_error (func_name, 0,
912 gdbscm_scm_from_c_string (mode),
913 _("bad mode string"));
917 /* Kinda awkward to convert the mode from SCM -> string only to have Guile
918 convert it back to SCM, but that's the API we have to work with. */
919 mode_bits = scm_mode_bits ((char *) mode);
924 /* Helper for gdbscm_open_memory to finish initializing the port.
925 The port has address range [start,end).
926 This means that address of 0xff..ff is not accessible.
927 I can live with that. */
930 ioscm_init_memory_port (SCM port, CORE_ADDR start, CORE_ADDR end)
933 ioscm_memory_port *iomem;
934 int buffered = (SCM_CELL_WORD_0 (port) & SCM_BUF0) == 0;
936 gdb_assert (start <= end);
938 iomem = (ioscm_memory_port *) scm_gc_malloc_pointerless (sizeof (*iomem),
941 iomem->start = start;
943 iomem->size = end - start;
947 iomem->read_buf_size = default_read_buf_size;
948 iomem->write_buf_size = default_write_buf_size;
952 iomem->read_buf_size = 1;
953 iomem->write_buf_size = 1;
956 pt = SCM_PTAB_ENTRY (port);
957 /* Match the expectation of `binary-port?'. */
960 pt->read_buf_size = iomem->read_buf_size;
961 pt->write_buf_size = iomem->write_buf_size;
964 pt->read_buf = (unsigned char *) xmalloc (pt->read_buf_size);
965 pt->write_buf = (unsigned char *) xmalloc (pt->write_buf_size);
969 pt->read_buf = &pt->shortbuf;
970 pt->write_buf = &pt->shortbuf;
972 pt->read_pos = pt->read_end = pt->read_buf;
973 pt->write_pos = pt->write_buf;
974 pt->write_end = pt->write_buf + pt->write_buf_size;
976 SCM_SETSTREAM (port, iomem);
979 /* Re-initialize a memory port, updating its read/write buffer sizes.
980 An exception is thrown if the port is unbuffered.
981 TODO: Allow switching buffered/unbuffered.
982 An exception is also thrown if data is still buffered, except in the case
983 where the buffer size isn't changing (since that's just a nop). */
986 ioscm_reinit_memory_port (SCM port, size_t read_buf_size,
987 size_t write_buf_size, const char *func_name)
989 scm_t_port *pt = SCM_PTAB_ENTRY (port);
990 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
992 gdb_assert (read_buf_size >= min_memory_port_buf_size
993 && read_buf_size <= max_memory_port_buf_size);
994 gdb_assert (write_buf_size >= min_memory_port_buf_size
995 && write_buf_size <= max_memory_port_buf_size);
997 /* First check if the port is unbuffered. */
999 if (pt->read_buf == &pt->shortbuf)
1001 gdb_assert (pt->write_buf == &pt->shortbuf);
1002 scm_misc_error (func_name, _("port is unbuffered: ~a"),
1006 /* Next check if anything is buffered. */
1008 if (read_buf_size != pt->read_buf_size
1009 && pt->read_end != pt->read_buf)
1011 scm_misc_error (func_name, _("read buffer not empty: ~a"),
1015 if (write_buf_size != pt->write_buf_size
1016 && pt->write_pos != pt->write_buf)
1018 scm_misc_error (func_name, _("write buffer not empty: ~a"),
1022 /* Now we can update the buffer sizes, but only if the size has changed. */
1024 if (read_buf_size != pt->read_buf_size)
1026 iomem->read_buf_size = read_buf_size;
1027 pt->read_buf_size = read_buf_size;
1028 xfree (pt->read_buf);
1029 pt->read_buf = (unsigned char *) xmalloc (pt->read_buf_size);
1030 pt->read_pos = pt->read_end = pt->read_buf;
1033 if (write_buf_size != pt->write_buf_size)
1035 iomem->write_buf_size = write_buf_size;
1036 pt->write_buf_size = write_buf_size;
1037 xfree (pt->write_buf);
1038 pt->write_buf = (unsigned char *) xmalloc (pt->write_buf_size);
1039 pt->write_pos = pt->write_buf;
1040 pt->write_end = pt->write_buf + pt->write_buf_size;
1044 /* (open-memory [#:mode string] [#:start address] [#:size integer]) -> port
1045 Return a port that can be used for reading and writing memory.
1046 MODE is a string, and must be one of "r", "w", or "r+".
1047 "0" may be appended to MODE to mark the port as unbuffered.
1048 For compatibility "b" (binary) may also be appended, but we ignore it:
1049 memory ports are binary only.
1051 The chunk of memory that can be accessed can be bounded.
1052 If both START,SIZE are unspecified, all of memory can be accessed
1053 (except 0xff..ff). If only START is specified, all of memory from that
1054 point on can be accessed (except 0xff..ff). If only SIZE if specified,
1055 all memory in [0,SIZE) can be accessed. If both are specified, all memory
1056 in [START,START+SIZE) can be accessed.
1058 Note: If it becomes useful enough we can later add #:end as an alternative
1059 to #:size. For now it is left out.
1061 The result is a Scheme port, and its semantics are a bit odd for accessing
1062 memory (e.g., unget), but we don't try to hide this. It's a port.
1064 N.B. Seeks on the port must be in the range [0,size].
1065 This is for similarity with bytevector ports, and so that one can seek
1066 to the first byte. */
1069 gdbscm_open_memory (SCM rest)
1071 const SCM keywords[] = {
1072 mode_keyword, start_keyword, size_keyword, SCM_BOOL_F
1075 CORE_ADDR start = 0;
1077 int mode_arg_pos = -1, start_arg_pos = -1, size_arg_pos = -1;
1082 gdbscm_parse_function_args (FUNC_NAME, SCM_ARG1, keywords, "#sUU", rest,
1083 &mode_arg_pos, &mode,
1084 &start_arg_pos, &start,
1085 &size_arg_pos, &size);
1087 scm_dynwind_begin ((scm_t_dynwind_flags) 0);
1090 mode = xstrdup ("r");
1091 scm_dynwind_free (mode);
1093 if (size_arg_pos > 0)
1095 /* For now be strict about start+size overflowing. If it becomes
1096 a nuisance we can relax things later. */
1097 if (start + size < start)
1099 gdbscm_out_of_range_error (FUNC_NAME, 0,
1100 scm_list_2 (gdbscm_scm_from_ulongest (start),
1101 gdbscm_scm_from_ulongest (size)),
1102 _("start+size overflows"));
1107 end = ~(CORE_ADDR) 0;
1109 mode_bits = ioscm_parse_mode_bits (FUNC_NAME, mode);
1111 port = ioscm_open_port (memory_port_desc, mode_bits);
1113 ioscm_init_memory_port (port, start, end);
1117 /* TODO: Set the file name as "memory-start-end"? */
1121 /* Return non-zero if OBJ is a memory port. */
1124 gdbscm_is_memory_port (SCM obj)
1126 return !SCM_IMP (obj) && (SCM_TYP16 (obj) == memory_port_desc);
1129 /* (memory-port? obj) -> boolean */
1132 gdbscm_memory_port_p (SCM obj)
1134 return scm_from_bool (gdbscm_is_memory_port (obj));
1137 /* (memory-port-range port) -> (start end) */
1140 gdbscm_memory_port_range (SCM port)
1142 ioscm_memory_port *iomem;
1144 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1145 memory_port_desc_name);
1147 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1148 return scm_list_2 (gdbscm_scm_from_ulongest (iomem->start),
1149 gdbscm_scm_from_ulongest (iomem->end));
1152 /* (memory-port-read-buffer-size port) -> integer */
1155 gdbscm_memory_port_read_buffer_size (SCM port)
1157 ioscm_memory_port *iomem;
1159 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1160 memory_port_desc_name);
1162 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1163 return scm_from_uint (iomem->read_buf_size);
1166 /* (set-memory-port-read-buffer-size! port size) -> unspecified
1167 An exception is thrown if read data is still buffered or if the port
1171 gdbscm_set_memory_port_read_buffer_size_x (SCM port, SCM size)
1173 ioscm_memory_port *iomem;
1175 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1176 memory_port_desc_name);
1177 SCM_ASSERT_TYPE (scm_is_integer (size), size, SCM_ARG2, FUNC_NAME,
1180 if (!scm_is_unsigned_integer (size, min_memory_port_buf_size,
1181 max_memory_port_buf_size))
1183 gdbscm_out_of_range_error (FUNC_NAME, SCM_ARG2, size,
1184 out_of_range_buf_size);
1187 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1188 ioscm_reinit_memory_port (port, scm_to_uint (size), iomem->write_buf_size,
1191 return SCM_UNSPECIFIED;
1194 /* (memory-port-write-buffer-size port) -> integer */
1197 gdbscm_memory_port_write_buffer_size (SCM port)
1199 ioscm_memory_port *iomem;
1201 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1202 memory_port_desc_name);
1204 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1205 return scm_from_uint (iomem->write_buf_size);
1208 /* (set-memory-port-write-buffer-size! port size) -> unspecified
1209 An exception is thrown if write data is still buffered or if the port
1213 gdbscm_set_memory_port_write_buffer_size_x (SCM port, SCM size)
1215 ioscm_memory_port *iomem;
1217 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1218 memory_port_desc_name);
1219 SCM_ASSERT_TYPE (scm_is_integer (size), size, SCM_ARG2, FUNC_NAME,
1222 if (!scm_is_unsigned_integer (size, min_memory_port_buf_size,
1223 max_memory_port_buf_size))
1225 gdbscm_out_of_range_error (FUNC_NAME, SCM_ARG2, size,
1226 out_of_range_buf_size);
1229 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1230 ioscm_reinit_memory_port (port, iomem->read_buf_size, scm_to_uint (size),
1233 return SCM_UNSPECIFIED;
1236 /* Initialize gdb ports. */
1238 static const scheme_function port_functions[] =
1240 { "input-port", 0, 0, 0, as_a_scm_t_subr (gdbscm_input_port),
1242 Return gdb's input port." },
1244 { "output-port", 0, 0, 0, as_a_scm_t_subr (gdbscm_output_port),
1246 Return gdb's output port." },
1248 { "error-port", 0, 0, 0, as_a_scm_t_subr (gdbscm_error_port),
1250 Return gdb's error port." },
1252 { "stdio-port?", 1, 0, 0, as_a_scm_t_subr (gdbscm_stdio_port_p),
1254 Return #t if the object is a gdb:stdio-port." },
1256 { "open-memory", 0, 0, 1, as_a_scm_t_subr (gdbscm_open_memory),
1258 Return a port that can be used for reading/writing inferior memory.\n\
1260 Arguments: [#:mode string] [#:start address] [#:size integer]\n\
1261 Returns: A port object." },
1263 { "memory-port?", 1, 0, 0, as_a_scm_t_subr (gdbscm_memory_port_p),
1265 Return #t if the object is a memory port." },
1267 { "memory-port-range", 1, 0, 0, as_a_scm_t_subr (gdbscm_memory_port_range),
1269 Return the memory range of the port as (start end)." },
1271 { "memory-port-read-buffer-size", 1, 0, 0,
1272 as_a_scm_t_subr (gdbscm_memory_port_read_buffer_size),
1274 Return the size of the read buffer for the memory port." },
1276 { "set-memory-port-read-buffer-size!", 2, 0, 0,
1277 as_a_scm_t_subr (gdbscm_set_memory_port_read_buffer_size_x),
1279 Set the size of the read buffer for the memory port.\n\
1281 Arguments: port integer\n\
1282 Returns: unspecified." },
1284 { "memory-port-write-buffer-size", 1, 0, 0,
1285 as_a_scm_t_subr (gdbscm_memory_port_write_buffer_size),
1287 Return the size of the write buffer for the memory port." },
1289 { "set-memory-port-write-buffer-size!", 2, 0, 0,
1290 as_a_scm_t_subr (gdbscm_set_memory_port_write_buffer_size_x),
1292 Set the size of the write buffer for the memory port.\n\
1294 Arguments: port integer\n\
1295 Returns: unspecified." },
1300 static const scheme_function private_port_functions[] =
1303 { "%with-gdb-input-from-port", 2, 0, 0,
1304 as_a_scm_t_subr (gdbscm_percent_with_gdb_input_from_port),
1306 Temporarily set GDB's input port to PORT and then invoke THUNK.\n\
1308 Arguments: port thunk\n\
1309 Returns: The result of calling THUNK.\n\
1311 This procedure is experimental." },
1314 { "%with-gdb-output-to-port", 2, 0, 0,
1315 as_a_scm_t_subr (gdbscm_percent_with_gdb_output_to_port),
1317 Temporarily set GDB's output port to PORT and then invoke THUNK.\n\
1319 Arguments: port thunk\n\
1320 Returns: The result of calling THUNK.\n\
1322 This procedure is experimental." },
1324 { "%with-gdb-error-to-port", 2, 0, 0,
1325 as_a_scm_t_subr (gdbscm_percent_with_gdb_error_to_port),
1327 Temporarily set GDB's error port to PORT and then invoke THUNK.\n\
1329 Arguments: port thunk\n\
1330 Returns: The result of calling THUNK.\n\
1332 This procedure is experimental." },
1338 gdbscm_initialize_ports (void)
1340 /* Save the original stdio ports for debugging purposes. */
1342 orig_input_port_scm = scm_current_input_port ();
1343 orig_output_port_scm = scm_current_output_port ();
1344 orig_error_port_scm = scm_current_error_port ();
1346 /* Set up the stdio ports. */
1348 ioscm_init_gdb_stdio_port ();
1349 input_port_scm = ioscm_make_gdb_stdio_port (0);
1350 output_port_scm = ioscm_make_gdb_stdio_port (1);
1351 error_port_scm = ioscm_make_gdb_stdio_port (2);
1353 /* Set up memory ports. */
1355 ioscm_init_memory_port_type ();
1357 /* Install the accessor functions. */
1359 gdbscm_define_functions (port_functions, 1);
1360 gdbscm_define_functions (private_port_functions, 0);
1362 /* Keyword args for open-memory. */
1364 mode_keyword = scm_from_latin1_keyword ("mode");
1365 start_keyword = scm_from_latin1_keyword ("start");
1366 size_keyword = scm_from_latin1_keyword ("size");
1368 /* Error message text for "out of range" memory port buffer sizes. */
1370 out_of_range_buf_size = xstrprintf ("size not between %u - %u",
1371 min_memory_port_buf_size,
1372 max_memory_port_buf_size);