Remove set_batch_flag_and_make_cleanup_restore_page_info
[deliverable/binutils-gdb.git] / gdb / guile / scm-ports.c
1 /* Support for connecting Guile's stdio to GDB's.
2 as well as r/w memory via ports.
3
4 Copyright (C) 2014-2017 Free Software Foundation, Inc.
5
6 This file is part of GDB.
7
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.
12
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.
17
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/>. */
20
21 /* See README file in this directory for implementation notes, coding
22 conventions, et.al. */
23
24 #include "defs.h"
25 #include "gdb_select.h"
26 #include "top.h"
27 #include "target.h"
28 #include "guile-internal.h"
29 #include "common/gdb_optional.h"
30
31 #ifdef HAVE_POLL
32 #if defined (HAVE_POLL_H)
33 #include <poll.h>
34 #elif defined (HAVE_SYS_POLL_H)
35 #include <sys/poll.h>
36 #endif
37 #endif
38
39 /* A ui-file for sending output to Guile. */
40
41 class ioscm_file_port : public ui_file
42 {
43 public:
44 /* Return a ui_file that writes to PORT. */
45 explicit ioscm_file_port (SCM port);
46
47 void flush () override;
48 void write (const char *buf, long length_buf) override;
49
50 private:
51 SCM m_port;
52 };
53
54 /* Data for a memory port. */
55
56 typedef struct
57 {
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. */
60 CORE_ADDR start, end;
61
62 /* (end - start), recorded for convenience. */
63 ULONGEST size;
64
65 /* Think of this as the lseek value maintained by the kernel.
66 This value is always in the range [0, size]. */
67 ULONGEST current;
68
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;
75 } ioscm_memory_port;
76
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;
82
83 /* This is the stdio port descriptor, scm_ptob_descriptor. */
84 static scm_t_bits stdio_port_desc;
85
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";
88
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";
93
94 /* This is the actual port used from Guile.
95 We don't expose these to the user though, to ensure they're not
96 overwritten. */
97 static SCM input_port_scm;
98 static SCM output_port_scm;
99 static SCM error_port_scm;
100
101 /* Magic number to identify port ui-files.
102 Actually, the address of this variable is the magic number. */
103 static int file_port_magic;
104
105 /* Internal enum for specifying output port. */
106 enum oport { GDB_STDOUT, GDB_STDERR };
107
108 /* This is the memory port descriptor, scm_ptob_descriptor. */
109 static scm_t_bits memory_port_desc;
110
111 /* Note: scm_make_port_type takes a char * instead of a const char *. */
112 static /*const*/ char memory_port_desc_name[] = "gdb:memory-port";
113
114 /* The default amount of memory to fetch for each read/write request.
115 Scheme ports don't provide a way to specify the size of a read,
116 which is important to us to minimize the number of inferior interactions,
117 which over a remote link can be important. To compensate we augment the
118 port API with a new function that let's the user specify how much the next
119 read request should fetch. This is the initial value for each new port. */
120 static const unsigned default_read_buf_size = 16;
121 static const unsigned default_write_buf_size = 16;
122
123 /* Arbitrarily limit memory port buffers to 1 byte to 4K. */
124 static const unsigned min_memory_port_buf_size = 1;
125 static const unsigned max_memory_port_buf_size = 4096;
126
127 /* "out of range" error message for buf sizes. */
128 static char *out_of_range_buf_size;
129
130 /* Keywords used by open-memory. */
131 static SCM mode_keyword;
132 static SCM start_keyword;
133 static SCM size_keyword;
134 \f
135 /* Helper to do the low level work of opening a port.
136 Newer versions of Guile (2.1.x) have scm_c_make_port. */
137
138 static SCM
139 ioscm_open_port (scm_t_bits port_type, long mode_bits)
140 {
141 SCM port;
142
143 #if 0 /* TODO: Guile doesn't export this. What to do? */
144 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
145 #endif
146
147 port = scm_new_port_table_entry (port_type);
148
149 SCM_SET_CELL_TYPE (port, port_type | mode_bits);
150
151 #if 0 /* TODO: Guile doesn't export this. What to do? */
152 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
153 #endif
154
155 return port;
156 }
157 \f
158 /* Support for connecting Guile's stdio ports to GDB's stdio ports. */
159
160 /* The scm_t_ptob_descriptor.input_waiting "method".
161 Return a lower bound on the number of bytes available for input. */
162
163 static int
164 ioscm_input_waiting (SCM port)
165 {
166 int fdes = 0;
167
168 if (! scm_is_eq (port, input_port_scm))
169 return 0;
170
171 #ifdef HAVE_POLL
172 {
173 /* This is copied from libguile/fports.c. */
174 struct pollfd pollfd = { fdes, POLLIN, 0 };
175 static int use_poll = -1;
176
177 if (use_poll < 0)
178 {
179 /* This is copied from event-loop.c: poll cannot be used for stdin on
180 m68k-motorola-sysv. */
181 struct pollfd test_pollfd = { fdes, POLLIN, 0 };
182
183 if (poll (&test_pollfd, 1, 0) == 1 && (test_pollfd.revents & POLLNVAL))
184 use_poll = 0;
185 else
186 use_poll = 1;
187 }
188
189 if (use_poll)
190 {
191 /* Guile doesn't export SIGINT hooks like Python does.
192 For now pass EINTR to scm_syserror, that's what fports.c does. */
193 if (poll (&pollfd, 1, 0) < 0)
194 scm_syserror (FUNC_NAME);
195
196 return pollfd.revents & POLLIN ? 1 : 0;
197 }
198 }
199 /* Fall through. */
200 #endif
201
202 {
203 struct timeval timeout;
204 fd_set input_fds;
205 int num_fds = fdes + 1;
206 int num_found;
207
208 memset (&timeout, 0, sizeof (timeout));
209 FD_ZERO (&input_fds);
210 FD_SET (fdes, &input_fds);
211
212 num_found = interruptible_select (num_fds,
213 &input_fds, NULL, NULL,
214 &timeout);
215 if (num_found < 0)
216 {
217 /* Guile doesn't export SIGINT hooks like Python does.
218 For now pass EINTR to scm_syserror, that's what fports.c does. */
219 scm_syserror (FUNC_NAME);
220 }
221 return num_found > 0 && FD_ISSET (fdes, &input_fds);
222 }
223 }
224
225 /* The scm_t_ptob_descriptor.fill_input "method". */
226
227 static int
228 ioscm_fill_input (SCM port)
229 {
230 /* Borrowed from libguile/fports.c. */
231 long count;
232 scm_t_port *pt = SCM_PTAB_ENTRY (port);
233
234 /* If we're called on stdout,stderr, punt. */
235 if (! scm_is_eq (port, input_port_scm))
236 return (scm_t_wchar) EOF; /* Set errno and return -1? */
237
238 gdb_flush (gdb_stdout);
239 gdb_flush (gdb_stderr);
240
241 count = ui_file_read (gdb_stdin, (char *) pt->read_buf, pt->read_buf_size);
242 if (count == -1)
243 scm_syserror (FUNC_NAME);
244 if (count == 0)
245 return (scm_t_wchar) EOF;
246
247 pt->read_pos = pt->read_buf;
248 pt->read_end = pt->read_buf + count;
249 return *pt->read_buf;
250 }
251
252 /* Like fputstrn_filtered, but don't escape characters, except nul.
253 Also like fputs_filtered, but a length is specified. */
254
255 static void
256 fputsn_filtered (const char *s, size_t size, struct ui_file *stream)
257 {
258 size_t i;
259
260 for (i = 0; i < size; ++i)
261 {
262 if (s[i] == '\0')
263 fputs_filtered ("\\000", stream);
264 else
265 fputc_filtered (s[i], stream);
266 }
267 }
268
269 /* Write to gdb's stdout or stderr. */
270
271 static void
272 ioscm_write (SCM port, const void *data, size_t size)
273 {
274
275 /* If we're called on stdin, punt. */
276 if (scm_is_eq (port, input_port_scm))
277 return;
278
279 TRY
280 {
281 if (scm_is_eq (port, error_port_scm))
282 fputsn_filtered ((const char *) data, size, gdb_stderr);
283 else
284 fputsn_filtered ((const char *) data, size, gdb_stdout);
285 }
286 CATCH (except, RETURN_MASK_ALL)
287 {
288 GDBSCM_HANDLE_GDB_EXCEPTION (except);
289 }
290 END_CATCH
291 }
292
293 /* Flush gdb's stdout or stderr. */
294
295 static void
296 ioscm_flush (SCM port)
297 {
298 /* If we're called on stdin, punt. */
299 if (scm_is_eq (port, input_port_scm))
300 return;
301
302 if (scm_is_eq (port, error_port_scm))
303 gdb_flush (gdb_stderr);
304 else
305 gdb_flush (gdb_stdout);
306 }
307
308 /* Initialize the gdb stdio port type.
309
310 N.B. isatty? will fail on these ports, it is only supported for file
311 ports. IWBN if we could "subclass" file ports. */
312
313 static void
314 ioscm_init_gdb_stdio_port (void)
315 {
316 stdio_port_desc = scm_make_port_type (stdio_port_desc_name,
317 ioscm_fill_input, ioscm_write);
318
319 scm_set_port_input_waiting (stdio_port_desc, ioscm_input_waiting);
320 scm_set_port_flush (stdio_port_desc, ioscm_flush);
321 }
322
323 /* Subroutine of ioscm_make_gdb_stdio_port to simplify it.
324 Set up the buffers of port PORT.
325 MODE_BITS are the mode bits of PORT. */
326
327 static void
328 ioscm_init_stdio_buffers (SCM port, long mode_bits)
329 {
330 scm_t_port *pt = SCM_PTAB_ENTRY (port);
331 #define GDB_STDIO_BUFFER_DEFAULT_SIZE 1024
332 int size = mode_bits & SCM_BUF0 ? 0 : GDB_STDIO_BUFFER_DEFAULT_SIZE;
333 int writing = (mode_bits & SCM_WRTNG) != 0;
334
335 /* This is heavily copied from scm_fport_buffer_add. */
336
337 if (!writing && size > 0)
338 {
339 pt->read_buf
340 = (unsigned char *) scm_gc_malloc_pointerless (size, "port buffer");
341 pt->read_pos = pt->read_end = pt->read_buf;
342 pt->read_buf_size = size;
343 }
344 else
345 {
346 pt->read_pos = pt->read_buf = pt->read_end = &pt->shortbuf;
347 pt->read_buf_size = 1;
348 }
349
350 if (writing && size > 0)
351 {
352 pt->write_buf
353 = (unsigned char *) scm_gc_malloc_pointerless (size, "port buffer");
354 pt->write_pos = pt->write_buf;
355 pt->write_buf_size = size;
356 }
357 else
358 {
359 pt->write_buf = pt->write_pos = &pt->shortbuf;
360 pt->write_buf_size = 1;
361 }
362 pt->write_end = pt->write_buf + pt->write_buf_size;
363 }
364
365 /* Create a gdb stdio port. */
366
367 static SCM
368 ioscm_make_gdb_stdio_port (int fd)
369 {
370 int is_a_tty = isatty (fd);
371 const char *name;
372 const char *mode_str;
373 long mode_bits;
374 SCM port;
375
376 switch (fd)
377 {
378 case 0:
379 name = input_port_name;
380 mode_str = is_a_tty ? "r0" : "r";
381 break;
382 case 1:
383 name = output_port_name;
384 mode_str = is_a_tty ? "w0" : "w";
385 break;
386 case 2:
387 name = error_port_name;
388 mode_str = is_a_tty ? "w0" : "w";
389 break;
390 default:
391 gdb_assert_not_reached ("bad stdio file descriptor");
392 }
393
394 mode_bits = scm_mode_bits ((char *) mode_str);
395 port = ioscm_open_port (stdio_port_desc, mode_bits);
396
397 scm_set_port_filename_x (port, gdbscm_scm_from_c_string (name));
398
399 ioscm_init_stdio_buffers (port, mode_bits);
400
401 return port;
402 }
403
404 /* (stdio-port? object) -> boolean */
405
406 static SCM
407 gdbscm_stdio_port_p (SCM scm)
408 {
409 /* This is copied from SCM_FPORTP. */
410 return scm_from_bool (!SCM_IMP (scm)
411 && (SCM_TYP16 (scm) == stdio_port_desc));
412 }
413 \f
414 /* GDB's ports are accessed via functions to keep them read-only. */
415
416 /* (input-port) -> port */
417
418 static SCM
419 gdbscm_input_port (void)
420 {
421 return input_port_scm;
422 }
423
424 /* (output-port) -> port */
425
426 static SCM
427 gdbscm_output_port (void)
428 {
429 return output_port_scm;
430 }
431
432 /* (error-port) -> port */
433
434 static SCM
435 gdbscm_error_port (void)
436 {
437 return error_port_scm;
438 }
439 \f
440 /* Support for sending GDB I/O to Guile ports. */
441
442 ioscm_file_port::ioscm_file_port (SCM port)
443 : m_port (port)
444 {}
445
446 void
447 ioscm_file_port::flush ()
448 {
449 }
450
451 void
452 ioscm_file_port::write (const char *buffer, long length_buffer)
453 {
454 scm_c_write (m_port, buffer, length_buffer);
455 }
456
457 \f
458 /* Helper routine for with-{output,error}-to-port. */
459
460 static SCM
461 ioscm_with_output_to_port_worker (SCM port, SCM thunk, enum oport oport,
462 const char *func_name)
463 {
464 SCM result;
465
466 SCM_ASSERT_TYPE (gdbscm_is_true (scm_output_port_p (port)), port,
467 SCM_ARG1, func_name, _("output port"));
468 SCM_ASSERT_TYPE (gdbscm_is_true (scm_thunk_p (thunk)), thunk,
469 SCM_ARG2, func_name, _("thunk"));
470
471 set_batch_flag_and_restore_page_info save_page_info;
472
473 scoped_restore restore_async = make_scoped_restore (&current_ui->async, 0);
474
475 ui_file_up port_file (new ioscm_file_port (port));
476
477 scoped_restore save_file = make_scoped_restore (oport == GDB_STDERR
478 ? &gdb_stderr : &gdb_stdout);
479
480 {
481 gdb::optional<ui_out_redirect_pop> redirect_popper;
482 if (oport == GDB_STDERR)
483 gdb_stderr = port_file.get ();
484 else
485 {
486 current_uiout->redirect (port_file.get ());
487 redirect_popper.emplace (current_uiout);
488
489 gdb_stdout = port_file.get ();
490 }
491
492 result = gdbscm_safe_call_0 (thunk, NULL);
493 }
494
495 if (gdbscm_is_exception (result))
496 gdbscm_throw (result);
497
498 return result;
499 }
500
501 /* (%with-gdb-output-to-port port thunk) -> object
502 This function is experimental.
503 IWBN to not include "gdb" in the name, but it would collide with a standard
504 procedure, and it's common to import the gdb module without a prefix.
505 There are ways around this, but they're more cumbersome.
506
507 This has % in the name because it's experimental, and we want the
508 user-visible version to come from module (gdb experimental). */
509
510 static SCM
511 gdbscm_percent_with_gdb_output_to_port (SCM port, SCM thunk)
512 {
513 return ioscm_with_output_to_port_worker (port, thunk, GDB_STDOUT, FUNC_NAME);
514 }
515
516 /* (%with-gdb-error-to-port port thunk) -> object
517 This function is experimental.
518 IWBN to not include "gdb" in the name, but it would collide with a standard
519 procedure, and it's common to import the gdb module without a prefix.
520 There are ways around this, but they're more cumbersome.
521
522 This has % in the name because it's experimental, and we want the
523 user-visible version to come from module (gdb experimental). */
524
525 static SCM
526 gdbscm_percent_with_gdb_error_to_port (SCM port, SCM thunk)
527 {
528 return ioscm_with_output_to_port_worker (port, thunk, GDB_STDERR, FUNC_NAME);
529 }
530 \f
531 /* Support for r/w memory via ports. */
532
533 /* Perform an "lseek" to OFFSET,WHENCE on memory port IOMEM.
534 OFFSET must be in the range [0,size].
535 The result is non-zero for success, zero for failure. */
536
537 static int
538 ioscm_lseek_address (ioscm_memory_port *iomem, LONGEST offset, int whence)
539 {
540 CORE_ADDR new_current;
541
542 gdb_assert (iomem->current <= iomem->size);
543
544 switch (whence)
545 {
546 case SEEK_CUR:
547 /* Catch over/underflow. */
548 if ((offset < 0 && iomem->current + offset > iomem->current)
549 || (offset > 0 && iomem->current + offset < iomem->current))
550 return 0;
551 new_current = iomem->current + offset;
552 break;
553 case SEEK_SET:
554 new_current = offset;
555 break;
556 case SEEK_END:
557 if (offset == 0)
558 {
559 new_current = iomem->size;
560 break;
561 }
562 /* TODO: Not supported yet. */
563 return 0;
564 default:
565 return 0;
566 }
567
568 if (new_current > iomem->size)
569 return 0;
570 iomem->current = new_current;
571 return 1;
572 }
573
574 /* "fill_input" method for memory ports. */
575
576 static int
577 gdbscm_memory_port_fill_input (SCM port)
578 {
579 scm_t_port *pt = SCM_PTAB_ENTRY (port);
580 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
581 size_t to_read;
582
583 /* "current" is the offset of the first byte we want to read. */
584 gdb_assert (iomem->current <= iomem->size);
585 if (iomem->current == iomem->size)
586 return EOF;
587
588 /* Don't read outside the allowed memory range. */
589 to_read = pt->read_buf_size;
590 if (to_read > iomem->size - iomem->current)
591 to_read = iomem->size - iomem->current;
592
593 if (target_read_memory (iomem->start + iomem->current, pt->read_buf,
594 to_read) != 0)
595 gdbscm_memory_error (FUNC_NAME, _("error reading memory"), SCM_EOL);
596
597 iomem->current += to_read;
598 pt->read_pos = pt->read_buf;
599 pt->read_end = pt->read_buf + to_read;
600 return *pt->read_buf;
601 }
602
603 /* "end_input" method for memory ports.
604 Clear the read buffer and adjust the file position for unread bytes. */
605
606 static void
607 gdbscm_memory_port_end_input (SCM port, int offset)
608 {
609 scm_t_port *pt = SCM_PTAB_ENTRY (port);
610 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
611 size_t remaining = pt->read_end - pt->read_pos;
612
613 /* Note: Use of "int offset" is specified by Guile ports API. */
614 if ((offset < 0 && remaining + offset > remaining)
615 || (offset > 0 && remaining + offset < remaining))
616 {
617 gdbscm_out_of_range_error (FUNC_NAME, 0, scm_from_int (offset),
618 _("overflow in offset calculation"));
619 }
620 offset += remaining;
621
622 if (offset > 0)
623 {
624 pt->read_pos = pt->read_end;
625 /* Throw error if unread-char used at beginning of file
626 then attempting to write. Seems correct. */
627 if (!ioscm_lseek_address (iomem, -offset, SEEK_CUR))
628 {
629 gdbscm_out_of_range_error (FUNC_NAME, 0, scm_from_int (offset),
630 _("bad offset"));
631 }
632 }
633
634 pt->rw_active = SCM_PORT_NEITHER;
635 }
636
637 /* "flush" method for memory ports. */
638
639 static void
640 gdbscm_memory_port_flush (SCM port)
641 {
642 scm_t_port *pt = SCM_PTAB_ENTRY (port);
643 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
644 size_t to_write = pt->write_pos - pt->write_buf;
645
646 if (to_write == 0)
647 return;
648
649 /* There's no way to indicate a short write, so if the request goes past
650 the end of the port's memory range, flag an error. */
651 if (to_write > iomem->size - iomem->current)
652 {
653 gdbscm_out_of_range_error (FUNC_NAME, 0,
654 gdbscm_scm_from_ulongest (to_write),
655 _("writing beyond end of memory range"));
656 }
657
658 if (target_write_memory (iomem->start + iomem->current, pt->write_buf,
659 to_write) != 0)
660 gdbscm_memory_error (FUNC_NAME, _("error writing memory"), SCM_EOL);
661
662 iomem->current += to_write;
663 pt->write_pos = pt->write_buf;
664 pt->rw_active = SCM_PORT_NEITHER;
665 }
666
667 /* "write" method for memory ports. */
668
669 static void
670 gdbscm_memory_port_write (SCM port, const void *void_data, size_t size)
671 {
672 scm_t_port *pt = SCM_PTAB_ENTRY (port);
673 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
674 const gdb_byte *data = (const gdb_byte *) void_data;
675
676 /* There's no way to indicate a short write, so if the request goes past
677 the end of the port's memory range, flag an error. */
678 if (size > iomem->size - iomem->current)
679 {
680 gdbscm_out_of_range_error (FUNC_NAME, 0, gdbscm_scm_from_ulongest (size),
681 _("writing beyond end of memory range"));
682 }
683
684 if (pt->write_buf == &pt->shortbuf)
685 {
686 /* Unbuffered port. */
687 if (target_write_memory (iomem->start + iomem->current, data, size) != 0)
688 gdbscm_memory_error (FUNC_NAME, _("error writing memory"), SCM_EOL);
689 iomem->current += size;
690 return;
691 }
692
693 /* Note: The edge case of what to do when the buffer exactly fills is
694 debatable. Guile flushes when the buffer exactly fills up, so we
695 do too. It's counter-intuitive to my mind, but in case there's a
696 subtlety somewhere that depends on this, we do the same. */
697
698 {
699 size_t space = pt->write_end - pt->write_pos;
700
701 if (size < space)
702 {
703 /* Data fits in buffer, and does not fill it. */
704 memcpy (pt->write_pos, data, size);
705 pt->write_pos += size;
706 }
707 else
708 {
709 memcpy (pt->write_pos, data, space);
710 pt->write_pos = pt->write_end;
711 gdbscm_memory_port_flush (port);
712 {
713 const gdb_byte *ptr = data + space;
714 size_t remaining = size - space;
715
716 if (remaining >= pt->write_buf_size)
717 {
718 if (target_write_memory (iomem->start + iomem->current, ptr,
719 remaining) != 0)
720 gdbscm_memory_error (FUNC_NAME, _("error writing memory"),
721 SCM_EOL);
722 iomem->current += remaining;
723 }
724 else
725 {
726 memcpy (pt->write_pos, ptr, remaining);
727 pt->write_pos += remaining;
728 }
729 }
730 }
731 }
732 }
733
734 /* "seek" method for memory ports. */
735
736 static scm_t_off
737 gdbscm_memory_port_seek (SCM port, scm_t_off offset, int whence)
738 {
739 scm_t_port *pt = SCM_PTAB_ENTRY (port);
740 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
741 CORE_ADDR result;
742 int rc;
743
744 if (pt->rw_active == SCM_PORT_WRITE)
745 {
746 if (offset != 0 || whence != SEEK_CUR)
747 {
748 gdbscm_memory_port_flush (port);
749 rc = ioscm_lseek_address (iomem, offset, whence);
750 result = iomem->current;
751 }
752 else
753 {
754 /* Read current position without disturbing the buffer,
755 but flag an error if what's in the buffer goes outside the
756 allowed range. */
757 CORE_ADDR current = iomem->current;
758 size_t delta = pt->write_pos - pt->write_buf;
759
760 if (current + delta < current
761 || current + delta > iomem->size)
762 rc = 0;
763 else
764 {
765 result = current + delta;
766 rc = 1;
767 }
768 }
769 }
770 else if (pt->rw_active == SCM_PORT_READ)
771 {
772 if (offset != 0 || whence != SEEK_CUR)
773 {
774 scm_end_input (port);
775 rc = ioscm_lseek_address (iomem, offset, whence);
776 result = iomem->current;
777 }
778 else
779 {
780 /* Read current position without disturbing the buffer
781 (particularly the unread-char buffer). */
782 CORE_ADDR current = iomem->current;
783 size_t remaining = pt->read_end - pt->read_pos;
784
785 if (current - remaining > current
786 || current - remaining < iomem->start)
787 rc = 0;
788 else
789 {
790 result = current - remaining;
791 rc = 1;
792 }
793
794 if (rc != 0 && pt->read_buf == pt->putback_buf)
795 {
796 size_t saved_remaining = pt->saved_read_end - pt->saved_read_pos;
797
798 if (result - saved_remaining > result
799 || result - saved_remaining < iomem->start)
800 rc = 0;
801 else
802 result -= saved_remaining;
803 }
804 }
805 }
806 else /* SCM_PORT_NEITHER */
807 {
808 rc = ioscm_lseek_address (iomem, offset, whence);
809 result = iomem->current;
810 }
811
812 if (rc == 0)
813 {
814 gdbscm_out_of_range_error (FUNC_NAME, 0,
815 gdbscm_scm_from_longest (offset),
816 _("bad seek"));
817 }
818
819 /* TODO: The Guile API doesn't support 32x64. We can't fix that here,
820 and there's no need to throw an error if the new address can't be
821 represented in a scm_t_off. But we could return something less
822 clumsy. */
823 return result;
824 }
825
826 /* "close" method for memory ports. */
827
828 static int
829 gdbscm_memory_port_close (SCM port)
830 {
831 scm_t_port *pt = SCM_PTAB_ENTRY (port);
832 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
833
834 gdbscm_memory_port_flush (port);
835
836 if (pt->read_buf == pt->putback_buf)
837 pt->read_buf = pt->saved_read_buf;
838 if (pt->read_buf != &pt->shortbuf)
839 xfree (pt->read_buf);
840 if (pt->write_buf != &pt->shortbuf)
841 xfree (pt->write_buf);
842 scm_gc_free (iomem, sizeof (*iomem), "memory port");
843
844 return 0;
845 }
846
847 /* "free" method for memory ports. */
848
849 static size_t
850 gdbscm_memory_port_free (SCM port)
851 {
852 gdbscm_memory_port_close (port);
853
854 return 0;
855 }
856
857 /* "print" method for memory ports. */
858
859 static int
860 gdbscm_memory_port_print (SCM exp, SCM port, scm_print_state *pstate)
861 {
862 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (exp);
863 char *type = SCM_PTOBNAME (SCM_PTOBNUM (exp));
864
865 scm_puts ("#<", port);
866 scm_print_port_mode (exp, port);
867 /* scm_print_port_mode includes a trailing space. */
868 gdbscm_printf (port, "%s %s-%s", type,
869 hex_string (iomem->start), hex_string (iomem->end));
870 scm_putc ('>', port);
871 return 1;
872 }
873
874 /* Create the port type used for memory. */
875
876 static void
877 ioscm_init_memory_port_type (void)
878 {
879 memory_port_desc = scm_make_port_type (memory_port_desc_name,
880 gdbscm_memory_port_fill_input,
881 gdbscm_memory_port_write);
882
883 scm_set_port_end_input (memory_port_desc, gdbscm_memory_port_end_input);
884 scm_set_port_flush (memory_port_desc, gdbscm_memory_port_flush);
885 scm_set_port_seek (memory_port_desc, gdbscm_memory_port_seek);
886 scm_set_port_close (memory_port_desc, gdbscm_memory_port_close);
887 scm_set_port_free (memory_port_desc, gdbscm_memory_port_free);
888 scm_set_port_print (memory_port_desc, gdbscm_memory_port_print);
889 }
890
891 /* Helper for gdbscm_open_memory to parse the mode bits.
892 An exception is thrown if MODE is invalid. */
893
894 static long
895 ioscm_parse_mode_bits (const char *func_name, const char *mode)
896 {
897 const char *p;
898 long mode_bits;
899
900 if (*mode != 'r' && *mode != 'w')
901 {
902 gdbscm_out_of_range_error (func_name, 0,
903 gdbscm_scm_from_c_string (mode),
904 _("bad mode string"));
905 }
906 for (p = mode + 1; *p != '\0'; ++p)
907 {
908 switch (*p)
909 {
910 case '0':
911 case 'b':
912 case '+':
913 break;
914 default:
915 gdbscm_out_of_range_error (func_name, 0,
916 gdbscm_scm_from_c_string (mode),
917 _("bad mode string"));
918 }
919 }
920
921 /* Kinda awkward to convert the mode from SCM -> string only to have Guile
922 convert it back to SCM, but that's the API we have to work with. */
923 mode_bits = scm_mode_bits ((char *) mode);
924
925 return mode_bits;
926 }
927
928 /* Helper for gdbscm_open_memory to finish initializing the port.
929 The port has address range [start,end).
930 This means that address of 0xff..ff is not accessible.
931 I can live with that. */
932
933 static void
934 ioscm_init_memory_port (SCM port, CORE_ADDR start, CORE_ADDR end)
935 {
936 scm_t_port *pt;
937 ioscm_memory_port *iomem;
938 int buffered = (SCM_CELL_WORD_0 (port) & SCM_BUF0) == 0;
939
940 gdb_assert (start <= end);
941
942 iomem = (ioscm_memory_port *) scm_gc_malloc_pointerless (sizeof (*iomem),
943 "memory port");
944
945 iomem->start = start;
946 iomem->end = end;
947 iomem->size = end - start;
948 iomem->current = 0;
949 if (buffered)
950 {
951 iomem->read_buf_size = default_read_buf_size;
952 iomem->write_buf_size = default_write_buf_size;
953 }
954 else
955 {
956 iomem->read_buf_size = 1;
957 iomem->write_buf_size = 1;
958 }
959
960 pt = SCM_PTAB_ENTRY (port);
961 /* Match the expectation of `binary-port?'. */
962 pt->encoding = NULL;
963 pt->rw_random = 1;
964 pt->read_buf_size = iomem->read_buf_size;
965 pt->write_buf_size = iomem->write_buf_size;
966 if (buffered)
967 {
968 pt->read_buf = (unsigned char *) xmalloc (pt->read_buf_size);
969 pt->write_buf = (unsigned char *) xmalloc (pt->write_buf_size);
970 }
971 else
972 {
973 pt->read_buf = &pt->shortbuf;
974 pt->write_buf = &pt->shortbuf;
975 }
976 pt->read_pos = pt->read_end = pt->read_buf;
977 pt->write_pos = pt->write_buf;
978 pt->write_end = pt->write_buf + pt->write_buf_size;
979
980 SCM_SETSTREAM (port, iomem);
981 }
982
983 /* Re-initialize a memory port, updating its read/write buffer sizes.
984 An exception is thrown if the port is unbuffered.
985 TODO: Allow switching buffered/unbuffered.
986 An exception is also thrown if data is still buffered, except in the case
987 where the buffer size isn't changing (since that's just a nop). */
988
989 static void
990 ioscm_reinit_memory_port (SCM port, size_t read_buf_size,
991 size_t write_buf_size, const char *func_name)
992 {
993 scm_t_port *pt = SCM_PTAB_ENTRY (port);
994 ioscm_memory_port *iomem = (ioscm_memory_port *) SCM_STREAM (port);
995
996 gdb_assert (read_buf_size >= min_memory_port_buf_size
997 && read_buf_size <= max_memory_port_buf_size);
998 gdb_assert (write_buf_size >= min_memory_port_buf_size
999 && write_buf_size <= max_memory_port_buf_size);
1000
1001 /* First check if the port is unbuffered. */
1002
1003 if (pt->read_buf == &pt->shortbuf)
1004 {
1005 gdb_assert (pt->write_buf == &pt->shortbuf);
1006 scm_misc_error (func_name, _("port is unbuffered: ~a"),
1007 scm_list_1 (port));
1008 }
1009
1010 /* Next check if anything is buffered. */
1011
1012 if (read_buf_size != pt->read_buf_size
1013 && pt->read_end != pt->read_buf)
1014 {
1015 scm_misc_error (func_name, _("read buffer not empty: ~a"),
1016 scm_list_1 (port));
1017 }
1018
1019 if (write_buf_size != pt->write_buf_size
1020 && pt->write_pos != pt->write_buf)
1021 {
1022 scm_misc_error (func_name, _("write buffer not empty: ~a"),
1023 scm_list_1 (port));
1024 }
1025
1026 /* Now we can update the buffer sizes, but only if the size has changed. */
1027
1028 if (read_buf_size != pt->read_buf_size)
1029 {
1030 iomem->read_buf_size = read_buf_size;
1031 pt->read_buf_size = read_buf_size;
1032 xfree (pt->read_buf);
1033 pt->read_buf = (unsigned char *) xmalloc (pt->read_buf_size);
1034 pt->read_pos = pt->read_end = pt->read_buf;
1035 }
1036
1037 if (write_buf_size != pt->write_buf_size)
1038 {
1039 iomem->write_buf_size = write_buf_size;
1040 pt->write_buf_size = write_buf_size;
1041 xfree (pt->write_buf);
1042 pt->write_buf = (unsigned char *) xmalloc (pt->write_buf_size);
1043 pt->write_pos = pt->write_buf;
1044 pt->write_end = pt->write_buf + pt->write_buf_size;
1045 }
1046 }
1047
1048 /* (open-memory [#:mode string] [#:start address] [#:size integer]) -> port
1049 Return a port that can be used for reading and writing memory.
1050 MODE is a string, and must be one of "r", "w", or "r+".
1051 "0" may be appended to MODE to mark the port as unbuffered.
1052 For compatibility "b" (binary) may also be appended, but we ignore it:
1053 memory ports are binary only.
1054
1055 The chunk of memory that can be accessed can be bounded.
1056 If both START,SIZE are unspecified, all of memory can be accessed
1057 (except 0xff..ff). If only START is specified, all of memory from that
1058 point on can be accessed (except 0xff..ff). If only SIZE if specified,
1059 all memory in [0,SIZE) can be accessed. If both are specified, all memory
1060 in [START,START+SIZE) can be accessed.
1061
1062 Note: If it becomes useful enough we can later add #:end as an alternative
1063 to #:size. For now it is left out.
1064
1065 The result is a Scheme port, and its semantics are a bit odd for accessing
1066 memory (e.g., unget), but we don't try to hide this. It's a port.
1067
1068 N.B. Seeks on the port must be in the range [0,size].
1069 This is for similarity with bytevector ports, and so that one can seek
1070 to the first byte. */
1071
1072 static SCM
1073 gdbscm_open_memory (SCM rest)
1074 {
1075 const SCM keywords[] = {
1076 mode_keyword, start_keyword, size_keyword, SCM_BOOL_F
1077 };
1078 char *mode = NULL;
1079 CORE_ADDR start = 0;
1080 CORE_ADDR end;
1081 int mode_arg_pos = -1, start_arg_pos = -1, size_arg_pos = -1;
1082 ULONGEST size;
1083 SCM port;
1084 long mode_bits;
1085
1086 gdbscm_parse_function_args (FUNC_NAME, SCM_ARG1, keywords, "#sUU", rest,
1087 &mode_arg_pos, &mode,
1088 &start_arg_pos, &start,
1089 &size_arg_pos, &size);
1090
1091 scm_dynwind_begin ((scm_t_dynwind_flags) 0);
1092
1093 if (mode == NULL)
1094 mode = xstrdup ("r");
1095 scm_dynwind_free (mode);
1096
1097 if (size_arg_pos > 0)
1098 {
1099 /* For now be strict about start+size overflowing. If it becomes
1100 a nuisance we can relax things later. */
1101 if (start + size < start)
1102 {
1103 gdbscm_out_of_range_error (FUNC_NAME, 0,
1104 scm_list_2 (gdbscm_scm_from_ulongest (start),
1105 gdbscm_scm_from_ulongest (size)),
1106 _("start+size overflows"));
1107 }
1108 end = start + size;
1109 }
1110 else
1111 end = ~(CORE_ADDR) 0;
1112
1113 mode_bits = ioscm_parse_mode_bits (FUNC_NAME, mode);
1114
1115 port = ioscm_open_port (memory_port_desc, mode_bits);
1116
1117 ioscm_init_memory_port (port, start, end);
1118
1119 scm_dynwind_end ();
1120
1121 /* TODO: Set the file name as "memory-start-end"? */
1122 return port;
1123 }
1124
1125 /* Return non-zero if OBJ is a memory port. */
1126
1127 static int
1128 gdbscm_is_memory_port (SCM obj)
1129 {
1130 return !SCM_IMP (obj) && (SCM_TYP16 (obj) == memory_port_desc);
1131 }
1132
1133 /* (memory-port? obj) -> boolean */
1134
1135 static SCM
1136 gdbscm_memory_port_p (SCM obj)
1137 {
1138 return scm_from_bool (gdbscm_is_memory_port (obj));
1139 }
1140
1141 /* (memory-port-range port) -> (start end) */
1142
1143 static SCM
1144 gdbscm_memory_port_range (SCM port)
1145 {
1146 ioscm_memory_port *iomem;
1147
1148 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1149 memory_port_desc_name);
1150
1151 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1152 return scm_list_2 (gdbscm_scm_from_ulongest (iomem->start),
1153 gdbscm_scm_from_ulongest (iomem->end));
1154 }
1155
1156 /* (memory-port-read-buffer-size port) -> integer */
1157
1158 static SCM
1159 gdbscm_memory_port_read_buffer_size (SCM port)
1160 {
1161 ioscm_memory_port *iomem;
1162
1163 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1164 memory_port_desc_name);
1165
1166 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1167 return scm_from_uint (iomem->read_buf_size);
1168 }
1169
1170 /* (set-memory-port-read-buffer-size! port size) -> unspecified
1171 An exception is thrown if read data is still buffered or if the port
1172 is unbuffered. */
1173
1174 static SCM
1175 gdbscm_set_memory_port_read_buffer_size_x (SCM port, SCM size)
1176 {
1177 ioscm_memory_port *iomem;
1178
1179 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1180 memory_port_desc_name);
1181 SCM_ASSERT_TYPE (scm_is_integer (size), size, SCM_ARG2, FUNC_NAME,
1182 _("integer"));
1183
1184 if (!scm_is_unsigned_integer (size, min_memory_port_buf_size,
1185 max_memory_port_buf_size))
1186 {
1187 gdbscm_out_of_range_error (FUNC_NAME, SCM_ARG2, size,
1188 out_of_range_buf_size);
1189 }
1190
1191 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1192 ioscm_reinit_memory_port (port, scm_to_uint (size), iomem->write_buf_size,
1193 FUNC_NAME);
1194
1195 return SCM_UNSPECIFIED;
1196 }
1197
1198 /* (memory-port-write-buffer-size port) -> integer */
1199
1200 static SCM
1201 gdbscm_memory_port_write_buffer_size (SCM port)
1202 {
1203 ioscm_memory_port *iomem;
1204
1205 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1206 memory_port_desc_name);
1207
1208 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1209 return scm_from_uint (iomem->write_buf_size);
1210 }
1211
1212 /* (set-memory-port-write-buffer-size! port size) -> unspecified
1213 An exception is thrown if write data is still buffered or if the port
1214 is unbuffered. */
1215
1216 static SCM
1217 gdbscm_set_memory_port_write_buffer_size_x (SCM port, SCM size)
1218 {
1219 ioscm_memory_port *iomem;
1220
1221 SCM_ASSERT_TYPE (gdbscm_is_memory_port (port), port, SCM_ARG1, FUNC_NAME,
1222 memory_port_desc_name);
1223 SCM_ASSERT_TYPE (scm_is_integer (size), size, SCM_ARG2, FUNC_NAME,
1224 _("integer"));
1225
1226 if (!scm_is_unsigned_integer (size, min_memory_port_buf_size,
1227 max_memory_port_buf_size))
1228 {
1229 gdbscm_out_of_range_error (FUNC_NAME, SCM_ARG2, size,
1230 out_of_range_buf_size);
1231 }
1232
1233 iomem = (ioscm_memory_port *) SCM_STREAM (port);
1234 ioscm_reinit_memory_port (port, iomem->read_buf_size, scm_to_uint (size),
1235 FUNC_NAME);
1236
1237 return SCM_UNSPECIFIED;
1238 }
1239 \f
1240 /* Initialize gdb ports. */
1241
1242 static const scheme_function port_functions[] =
1243 {
1244 { "input-port", 0, 0, 0, as_a_scm_t_subr (gdbscm_input_port),
1245 "\
1246 Return gdb's input port." },
1247
1248 { "output-port", 0, 0, 0, as_a_scm_t_subr (gdbscm_output_port),
1249 "\
1250 Return gdb's output port." },
1251
1252 { "error-port", 0, 0, 0, as_a_scm_t_subr (gdbscm_error_port),
1253 "\
1254 Return gdb's error port." },
1255
1256 { "stdio-port?", 1, 0, 0, as_a_scm_t_subr (gdbscm_stdio_port_p),
1257 "\
1258 Return #t if the object is a gdb:stdio-port." },
1259
1260 { "open-memory", 0, 0, 1, as_a_scm_t_subr (gdbscm_open_memory),
1261 "\
1262 Return a port that can be used for reading/writing inferior memory.\n\
1263 \n\
1264 Arguments: [#:mode string] [#:start address] [#:size integer]\n\
1265 Returns: A port object." },
1266
1267 { "memory-port?", 1, 0, 0, as_a_scm_t_subr (gdbscm_memory_port_p),
1268 "\
1269 Return #t if the object is a memory port." },
1270
1271 { "memory-port-range", 1, 0, 0, as_a_scm_t_subr (gdbscm_memory_port_range),
1272 "\
1273 Return the memory range of the port as (start end)." },
1274
1275 { "memory-port-read-buffer-size", 1, 0, 0,
1276 as_a_scm_t_subr (gdbscm_memory_port_read_buffer_size),
1277 "\
1278 Return the size of the read buffer for the memory port." },
1279
1280 { "set-memory-port-read-buffer-size!", 2, 0, 0,
1281 as_a_scm_t_subr (gdbscm_set_memory_port_read_buffer_size_x),
1282 "\
1283 Set the size of the read buffer for the memory port.\n\
1284 \n\
1285 Arguments: port integer\n\
1286 Returns: unspecified." },
1287
1288 { "memory-port-write-buffer-size", 1, 0, 0,
1289 as_a_scm_t_subr (gdbscm_memory_port_write_buffer_size),
1290 "\
1291 Return the size of the write buffer for the memory port." },
1292
1293 { "set-memory-port-write-buffer-size!", 2, 0, 0,
1294 as_a_scm_t_subr (gdbscm_set_memory_port_write_buffer_size_x),
1295 "\
1296 Set the size of the write buffer for the memory port.\n\
1297 \n\
1298 Arguments: port integer\n\
1299 Returns: unspecified." },
1300
1301 END_FUNCTIONS
1302 };
1303
1304 static const scheme_function private_port_functions[] =
1305 {
1306 #if 0 /* TODO */
1307 { "%with-gdb-input-from-port", 2, 0, 0,
1308 as_a_scm_t_subr (gdbscm_percent_with_gdb_input_from_port),
1309 "\
1310 Temporarily set GDB's input port to PORT and then invoke THUNK.\n\
1311 \n\
1312 Arguments: port thunk\n\
1313 Returns: The result of calling THUNK.\n\
1314 \n\
1315 This procedure is experimental." },
1316 #endif
1317
1318 { "%with-gdb-output-to-port", 2, 0, 0,
1319 as_a_scm_t_subr (gdbscm_percent_with_gdb_output_to_port),
1320 "\
1321 Temporarily set GDB's output port to PORT and then invoke THUNK.\n\
1322 \n\
1323 Arguments: port thunk\n\
1324 Returns: The result of calling THUNK.\n\
1325 \n\
1326 This procedure is experimental." },
1327
1328 { "%with-gdb-error-to-port", 2, 0, 0,
1329 as_a_scm_t_subr (gdbscm_percent_with_gdb_error_to_port),
1330 "\
1331 Temporarily set GDB's error port to PORT and then invoke THUNK.\n\
1332 \n\
1333 Arguments: port thunk\n\
1334 Returns: The result of calling THUNK.\n\
1335 \n\
1336 This procedure is experimental." },
1337
1338 END_FUNCTIONS
1339 };
1340
1341 void
1342 gdbscm_initialize_ports (void)
1343 {
1344 /* Save the original stdio ports for debugging purposes. */
1345
1346 orig_input_port_scm = scm_current_input_port ();
1347 orig_output_port_scm = scm_current_output_port ();
1348 orig_error_port_scm = scm_current_error_port ();
1349
1350 /* Set up the stdio ports. */
1351
1352 ioscm_init_gdb_stdio_port ();
1353 input_port_scm = ioscm_make_gdb_stdio_port (0);
1354 output_port_scm = ioscm_make_gdb_stdio_port (1);
1355 error_port_scm = ioscm_make_gdb_stdio_port (2);
1356
1357 /* Set up memory ports. */
1358
1359 ioscm_init_memory_port_type ();
1360
1361 /* Install the accessor functions. */
1362
1363 gdbscm_define_functions (port_functions, 1);
1364 gdbscm_define_functions (private_port_functions, 0);
1365
1366 /* Keyword args for open-memory. */
1367
1368 mode_keyword = scm_from_latin1_keyword ("mode");
1369 start_keyword = scm_from_latin1_keyword ("start");
1370 size_keyword = scm_from_latin1_keyword ("size");
1371
1372 /* Error message text for "out of range" memory port buffer sizes. */
1373
1374 out_of_range_buf_size = xstrprintf ("size not between %u - %u",
1375 min_memory_port_buf_size,
1376 max_memory_port_buf_size);
1377 }
This page took 0.095301 seconds and 4 git commands to generate.