1 /* Remote debugging interface for boot monitors, for GDB.
3 Copyright (C) 1990-2014 Free Software Foundation, Inc.
5 Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
6 Resurrected from the ashes by Stu Grossman.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 /* This file was derived from various remote-* modules. It is a collection
24 of generic support functions so GDB can talk directly to a ROM based
25 monitor. This saves use from having to hack an exception based handler
26 into existence, and makes for quick porting.
28 This module talks to a debug monitor called 'MONITOR', which
29 We communicate with MONITOR via either a direct serial line, or a TCP
30 (or possibly TELNET) stream to a terminal multiplexor,
31 which in turn talks to the target board. */
33 /* FIXME 32x64: This code assumes that registers and addresses are at
34 most 32 bits long. If they can be larger, you will need to declare
35 values as LONGEST and use %llx or some such to print values when
36 building commands to send to the monitor. Since we don't know of
37 any actual 64-bit targets with ROM monitors that use this code,
38 it's not an issue right now. -sts 4/18/96 */
43 #include "exceptions.h"
47 #include <sys/types.h>
54 #include "gdb_regex.h"
57 #include "gdbthread.h"
58 #include "readline/readline.h"
60 static char *dev_name
;
61 static struct target_ops
*targ_ops
;
63 static void monitor_interrupt_query (void);
64 static void monitor_interrupt_twice (int);
65 static void monitor_stop (struct target_ops
*self
, ptid_t
);
66 static void monitor_dump_regs (struct regcache
*regcache
);
69 static int from_hex (int a
);
72 static struct monitor_ops
*current_monitor
;
74 static int hashmark
; /* flag set by "set hash". */
76 static int timeout
= 30;
78 static int in_monitor_wait
= 0; /* Non-zero means we are in monitor_wait(). */
80 static void (*ofunc
) (); /* Old SIGINT signal handler. */
82 static CORE_ADDR
*breakaddr
;
84 /* Descriptor for I/O to remote machine. Initialize it to NULL so
85 that monitor_open knows that we don't have a file open when the
88 static struct serial
*monitor_desc
= NULL
;
90 /* Pointer to regexp pattern matching data. */
92 static struct re_pattern_buffer register_pattern
;
93 static char register_fastmap
[256];
95 static struct re_pattern_buffer getmem_resp_delim_pattern
;
96 static char getmem_resp_delim_fastmap
[256];
98 static struct re_pattern_buffer setmem_resp_delim_pattern
;
99 static char setmem_resp_delim_fastmap
[256];
101 static struct re_pattern_buffer setreg_resp_delim_pattern
;
102 static char setreg_resp_delim_fastmap
[256];
104 static int dump_reg_flag
; /* Non-zero means do a dump_registers cmd when
105 monitor_wait wakes up. */
107 static int first_time
= 0; /* Is this the first time we're
108 executing after gaving created the
112 /* This is the ptid we use while we're connected to a monitor. Its
113 value is arbitrary, as monitor targets don't have a notion of
114 processes or threads, but we need something non-null to place in
116 static ptid_t monitor_ptid
;
118 #define TARGET_BUF_SIZE 2048
120 /* Monitor specific debugging information. Typically only useful to
121 the developer of a new monitor interface. */
123 static void monitor_debug (const char *fmt
, ...) ATTRIBUTE_PRINTF (1, 2);
125 static unsigned int monitor_debug_p
= 0;
127 /* NOTE: This file alternates between monitor_debug_p and remote_debug
128 when determining if debug information is printed. Perhaps this
129 could be simplified. */
132 monitor_debug (const char *fmt
, ...)
138 va_start (args
, fmt
);
139 vfprintf_filtered (gdb_stdlog
, fmt
, args
);
145 /* Convert a string into a printable representation, Return # byte in
146 the new string. When LEN is >0 it specifies the size of the
147 string. Otherwize strlen(oldstr) is used. */
150 monitor_printable_string (char *newstr
, char *oldstr
, int len
)
156 len
= strlen (oldstr
);
158 for (i
= 0; i
< len
; i
++)
169 sprintf (newstr
, "\\x%02x", ch
& 0xff);
208 /* Print monitor errors with a string, converting the string to printable
212 monitor_error (char *function
, char *message
,
213 CORE_ADDR memaddr
, int len
, char *string
, int final_char
)
215 int real_len
= (len
== 0 && string
!= (char *) 0) ? strlen (string
) : len
;
216 char *safe_string
= alloca ((real_len
* 4) + 1);
218 monitor_printable_string (safe_string
, string
, real_len
);
221 error (_("%s (%s): %s: %s%c"),
222 function
, paddress (target_gdbarch (), memaddr
),
223 message
, safe_string
, final_char
);
225 error (_("%s (%s): %s: %s"),
226 function
, paddress (target_gdbarch (), memaddr
),
227 message
, safe_string
);
230 /* Convert hex digit A to a number. */
235 if (a
>= '0' && a
<= '9')
237 else if (a
>= 'a' && a
<= 'f')
239 else if (a
>= 'A' && a
<= 'F')
242 error (_("Invalid hex digit %d"), a
);
245 /* monitor_vsprintf - similar to vsprintf but handles 64-bit addresses
247 This function exists to get around the problem that many host platforms
248 don't have a printf that can print 64-bit addresses. The %A format
249 specification is recognized as a special case, and causes the argument
250 to be printed as a 64-bit hexadecimal address.
252 Only format specifiers of the form "[0-9]*[a-z]" are recognized.
253 If it is a '%s' format, the argument is a string; otherwise the
254 argument is assumed to be a long integer.
256 %% is also turned into a single %. */
259 monitor_vsprintf (char *sndbuf
, char *pattern
, va_list args
)
261 int addr_bit
= gdbarch_addr_bit (target_gdbarch ());
270 for (p
= pattern
; *p
; p
++)
274 /* Copy the format specifier to a separate buffer. */
276 for (i
= 1; *p
>= '0' && *p
<= '9' && i
< (int) sizeof (format
) - 2;
279 format
[i
] = fmt
= *p
;
280 format
[i
+ 1] = '\0';
282 /* Fetch the next argument and print it. */
286 strcpy (sndbuf
, "%");
289 arg_addr
= va_arg (args
, CORE_ADDR
);
290 strcpy (sndbuf
, phex_nz (arg_addr
, addr_bit
/ 8));
293 arg_string
= va_arg (args
, char *);
294 sprintf (sndbuf
, format
, arg_string
);
297 arg_int
= va_arg (args
, long);
298 sprintf (sndbuf
, format
, arg_int
);
301 sndbuf
+= strlen (sndbuf
);
310 /* monitor_printf_noecho -- Send data to monitor, but don't expect an echo.
311 Works just like printf. */
314 monitor_printf_noecho (char *pattern
,...)
320 va_start (args
, pattern
);
322 monitor_vsprintf (sndbuf
, pattern
, args
);
324 len
= strlen (sndbuf
);
325 if (len
+ 1 > sizeof sndbuf
)
326 internal_error (__FILE__
, __LINE__
,
327 _("failed internal consistency check"));
331 char *safe_string
= (char *) alloca ((strlen (sndbuf
) * 4) + 1);
333 monitor_printable_string (safe_string
, sndbuf
, 0);
334 fprintf_unfiltered (gdb_stdlog
, "sent[%s]\n", safe_string
);
337 monitor_write (sndbuf
, len
);
340 /* monitor_printf -- Send data to monitor and check the echo. Works just like
344 monitor_printf (char *pattern
,...)
350 va_start (args
, pattern
);
352 monitor_vsprintf (sndbuf
, pattern
, args
);
354 len
= strlen (sndbuf
);
355 if (len
+ 1 > sizeof sndbuf
)
356 internal_error (__FILE__
, __LINE__
,
357 _("failed internal consistency check"));
361 char *safe_string
= (char *) alloca ((len
* 4) + 1);
363 monitor_printable_string (safe_string
, sndbuf
, 0);
364 fprintf_unfiltered (gdb_stdlog
, "sent[%s]\n", safe_string
);
367 monitor_write (sndbuf
, len
);
369 /* We used to expect that the next immediate output was the
370 characters we just output, but sometimes some extra junk appeared
371 before the characters we expected, like an extra prompt, or a
372 portmaster sending telnet negotiations. So, just start searching
373 for what we sent, and skip anything unknown. */
374 monitor_debug ("ExpectEcho\n");
375 monitor_expect (sndbuf
, (char *) 0, 0);
379 /* Write characters to the remote system. */
382 monitor_write (char *buf
, int buflen
)
384 if (serial_write (monitor_desc
, buf
, buflen
))
385 fprintf_unfiltered (gdb_stderr
, "serial_write failed: %s\n",
386 safe_strerror (errno
));
390 /* Read a binary character from the remote system, doing all the fancy
391 timeout stuff, but without interpreting the character in any way,
392 and without printing remote debug information. */
395 monitor_readchar (void)
403 c
= serial_readchar (monitor_desc
, timeout
);
406 c
&= 0xff; /* don't lose bit 7 */
413 if (c
== SERIAL_TIMEOUT
)
414 error (_("Timeout reading from remote system."));
416 perror_with_name (_("remote-monitor"));
420 /* Read a character from the remote system, doing all the fancy
424 readchar (int timeout
)
429 last_random
, last_nl
, last_cr
, last_crnl
437 c
= serial_readchar (monitor_desc
, timeout
);
442 /* This seems to interfere with proper function of the
444 if (monitor_debug_p
|| remote_debug
)
450 puts_debug ("read -->", buf
, "<--");
455 /* Canonicialize \n\r combinations into one \r. */
456 if ((current_monitor
->flags
& MO_HANDLE_NL
) != 0)
458 if ((c
== '\r' && state
== last_nl
)
459 || (c
== '\n' && state
== last_cr
))
480 if (c
== SERIAL_TIMEOUT
)
482 /* I fail to see how detaching here can be useful. */
483 if (in_monitor_wait
) /* Watchdog went off. */
485 target_mourn_inferior ();
486 error (_("GDB serial timeout has expired. Target detached."));
490 error (_("Timeout reading from remote system."));
492 perror_with_name (_("remote-monitor"));
495 /* Scan input from the remote system, until STRING is found. If BUF is non-
496 zero, then collect input until we have collected either STRING or BUFLEN-1
497 chars. In either case we terminate BUF with a 0. If input overflows BUF
498 because STRING can't be found, return -1, else return number of chars in BUF
499 (minus the terminating NUL). Note that in the non-overflow case, STRING
500 will be at the end of BUF. */
503 monitor_expect (char *string
, char *buf
, int buflen
)
506 int obuflen
= buflen
;
511 char *safe_string
= (char *) alloca ((strlen (string
) * 4) + 1);
512 monitor_printable_string (safe_string
, string
, 0);
513 fprintf_unfiltered (gdb_stdlog
, "MON Expecting '%s'\n", safe_string
);
529 c
= readchar (timeout
);
536 c
= readchar (timeout
);
538 /* Don't expect any ^C sent to be echoed. */
540 if (*p
== '\003' || c
== *p
)
550 return obuflen
- buflen
;
558 /* We got a character that doesn't match the string. We need to
559 back up p, but how far? If we're looking for "..howdy" and the
560 monitor sends "...howdy"? There's certainly a match in there,
561 but when we receive the third ".", we won't find it if we just
562 restart the matching at the beginning of the string.
564 This is a Boyer-Moore kind of situation. We want to reset P to
565 the end of the longest prefix of STRING that is a suffix of
566 what we've read so far. In the example above, that would be
567 ".." --- the longest prefix of "..howdy" that is a suffix of
568 "...". This longest prefix could be the empty string, if C
569 is nowhere to be found in STRING.
571 If this longest prefix is not the empty string, it must contain
572 C, so let's search from the end of STRING for instances of C,
573 and see if the portion of STRING before that is a suffix of
574 what we read before C. Actually, we can search backwards from
575 p, since we know no prefix can be longer than that.
577 Note that we can use STRING itself, along with C, as a record
578 of what we've received so far. :) */
581 for (i
= (p
- string
) - 1; i
>= 0; i
--)
584 /* Is this prefix a suffix of what we've read so far?
586 string[0 .. i-1] == string[p - i, p - 1]? */
587 if (! memcmp (string
, p
- i
, i
))
599 /* Search for a regexp. */
602 monitor_expect_regexp (struct re_pattern_buffer
*pat
, char *buf
, int buflen
)
607 monitor_debug ("MON Expecting regexp\n");
612 mybuf
= alloca (TARGET_BUF_SIZE
);
613 buflen
= TARGET_BUF_SIZE
;
621 if (p
- mybuf
>= buflen
)
622 { /* Buffer about to overflow. */
624 /* On overflow, we copy the upper half of the buffer to the lower half. Not
625 great, but it usually works... */
627 memcpy (mybuf
, mybuf
+ buflen
/ 2, buflen
/ 2);
628 p
= mybuf
+ buflen
/ 2;
631 *p
++ = readchar (timeout
);
633 retval
= re_search (pat
, mybuf
, p
- mybuf
, 0, p
- mybuf
, NULL
);
639 /* Keep discarding input until we see the MONITOR prompt.
641 The convention for dealing with the prompt is that you
643 o *then* wait for the prompt.
645 Thus the last thing that a procedure does with the serial line will
646 be an monitor_expect_prompt(). Exception: monitor_resume does not
647 wait for the prompt, because the terminal is being handed over to
648 the inferior. However, the next thing which happens after that is
649 a monitor_wait which does wait for the prompt. Note that this
650 includes abnormal exit, e.g. error(). This is necessary to prevent
651 getting into states from which we can't recover. */
654 monitor_expect_prompt (char *buf
, int buflen
)
656 monitor_debug ("MON Expecting prompt\n");
657 return monitor_expect (current_monitor
->prompt
, buf
, buflen
);
660 /* Get N 32-bit words from remote, each preceded by a space, and put
661 them in registers starting at REGNO. */
672 ch
= readchar (timeout
);
673 while (isspace (ch
));
677 for (i
= 7; i
>= 1; i
--)
679 ch
= readchar (timeout
);
682 val
= (val
<< 4) | from_hex (ch
);
690 compile_pattern (char *pattern
, struct re_pattern_buffer
*compiled_pattern
,
696 compiled_pattern
->fastmap
= fastmap
;
698 tmp
= re_set_syntax (RE_SYNTAX_EMACS
);
699 val
= re_compile_pattern (pattern
,
705 error (_("compile_pattern: Can't compile pattern string `%s': %s!"),
709 re_compile_fastmap (compiled_pattern
);
712 /* Open a connection to a remote debugger. NAME is the filename used
713 for communication. */
716 monitor_open (char *args
, struct monitor_ops
*mon_ops
, int from_tty
)
720 struct inferior
*inf
;
722 if (mon_ops
->magic
!= MONITOR_OPS_MAGIC
)
723 error (_("Magic number of monitor_ops struct wrong."));
725 targ_ops
= mon_ops
->target
;
726 name
= targ_ops
->to_shortname
;
729 error (_("Use `target %s DEVICE-NAME' to use a serial port, or\n\
730 `target %s HOST-NAME:PORT-NUMBER' to use a network connection."), name
, name
);
732 target_preopen (from_tty
);
734 /* Setup pattern for register dump. */
736 if (mon_ops
->register_pattern
)
737 compile_pattern (mon_ops
->register_pattern
, ®ister_pattern
,
740 if (mon_ops
->getmem
.resp_delim
)
741 compile_pattern (mon_ops
->getmem
.resp_delim
, &getmem_resp_delim_pattern
,
742 getmem_resp_delim_fastmap
);
744 if (mon_ops
->setmem
.resp_delim
)
745 compile_pattern (mon_ops
->setmem
.resp_delim
, &setmem_resp_delim_pattern
,
746 setmem_resp_delim_fastmap
);
748 if (mon_ops
->setreg
.resp_delim
)
749 compile_pattern (mon_ops
->setreg
.resp_delim
, &setreg_resp_delim_pattern
,
750 setreg_resp_delim_fastmap
);
752 unpush_target (targ_ops
);
756 dev_name
= xstrdup (args
);
758 monitor_desc
= serial_open (dev_name
);
761 perror_with_name (dev_name
);
765 if (serial_setbaudrate (monitor_desc
, baud_rate
))
767 serial_close (monitor_desc
);
768 perror_with_name (dev_name
);
772 serial_raw (monitor_desc
);
774 serial_flush_input (monitor_desc
);
776 /* some systems only work with 2 stop bits. */
778 serial_setstopbits (monitor_desc
, mon_ops
->stopbits
);
780 current_monitor
= mon_ops
;
782 /* See if we can wake up the monitor. First, try sending a stop sequence,
783 then send the init strings. Last, remove all breakpoints. */
785 if (current_monitor
->stop
)
787 monitor_stop (targ_ops
, inferior_ptid
);
788 if ((current_monitor
->flags
& MO_NO_ECHO_ON_OPEN
) == 0)
790 monitor_debug ("EXP Open echo\n");
791 monitor_expect_prompt (NULL
, 0);
795 /* wake up the monitor and see if it's alive. */
796 for (p
= mon_ops
->init
; *p
!= NULL
; p
++)
798 /* Some of the characters we send may not be echoed,
799 but we hope to get a prompt at the end of it all. */
801 if ((current_monitor
->flags
& MO_NO_ECHO_ON_OPEN
) == 0)
804 monitor_printf_noecho (*p
);
805 monitor_expect_prompt (NULL
, 0);
808 serial_flush_input (monitor_desc
);
810 /* Alloc breakpoints */
811 if (mon_ops
->set_break
!= NULL
)
813 if (mon_ops
->num_breakpoints
== 0)
814 mon_ops
->num_breakpoints
= 8;
816 breakaddr
= (CORE_ADDR
*)
817 xmalloc (mon_ops
->num_breakpoints
* sizeof (CORE_ADDR
));
818 memset (breakaddr
, 0, mon_ops
->num_breakpoints
* sizeof (CORE_ADDR
));
821 /* Remove all breakpoints. */
823 if (mon_ops
->clr_all_break
)
825 monitor_printf (mon_ops
->clr_all_break
);
826 monitor_expect_prompt (NULL
, 0);
830 printf_unfiltered (_("Remote target %s connected to %s\n"),
833 push_target (targ_ops
);
838 /* Make run command think we are busy... */
839 inferior_ptid
= monitor_ptid
;
840 inf
= current_inferior ();
841 inferior_appeared (inf
, ptid_get_pid (inferior_ptid
));
842 add_thread_silent (inferior_ptid
);
844 /* Give monitor_wait something to read. */
846 monitor_printf (current_monitor
->line_term
);
848 init_wait_for_inferior ();
850 start_remote (from_tty
);
853 /* Close out all files and local state before this target loses
857 monitor_close (struct target_ops
*self
)
860 serial_close (monitor_desc
);
862 /* Free breakpoint memory. */
863 if (breakaddr
!= NULL
)
871 delete_thread_silent (monitor_ptid
);
872 delete_inferior_silent (ptid_get_pid (monitor_ptid
));
875 /* Terminate the open connection to the remote debugger. Use this
876 when you want to detach and do something else with your gdb. */
879 monitor_detach (struct target_ops
*ops
, const char *args
, int from_tty
)
881 unpush_target (ops
); /* calls monitor_close to do the real work. */
883 printf_unfiltered (_("Ending remote %s debugging\n"), target_shortname
);
886 /* Convert VALSTR into the target byte-ordered value of REGNO and store it. */
889 monitor_supply_register (struct regcache
*regcache
, int regno
, char *valstr
)
891 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
892 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
894 unsigned char regbuf
[MAX_REGISTER_SIZE
];
899 while (p
&& *p
!= '\0')
901 if (*p
== '\r' || *p
== '\n')
912 if (!isxdigit (*p
) && *p
!= 'x')
918 val
+= fromhex (*p
++);
920 monitor_debug ("Supplying Register %d %s\n", regno
, valstr
);
922 if (val
== 0 && valstr
== p
)
923 error (_("monitor_supply_register (%d): bad value from monitor: %s."),
926 /* supply register stores in target byte order, so swap here. */
928 store_unsigned_integer (regbuf
, register_size (gdbarch
, regno
), byte_order
,
931 regcache_raw_supply (regcache
, regno
, regbuf
);
936 /* Tell the remote machine to resume. */
939 monitor_resume (struct target_ops
*ops
,
940 ptid_t ptid
, int step
, enum gdb_signal sig
)
942 /* Some monitors require a different command when starting a program. */
943 monitor_debug ("MON resume\n");
944 if (current_monitor
->flags
& MO_RUN_FIRST_TIME
&& first_time
== 1)
947 monitor_printf ("run\r");
948 if (current_monitor
->flags
& MO_NEED_REGDUMP_AFTER_CONT
)
953 monitor_printf (current_monitor
->step
);
956 if (current_monitor
->continue_hook
)
957 (*current_monitor
->continue_hook
) ();
959 monitor_printf (current_monitor
->cont
);
960 if (current_monitor
->flags
& MO_NEED_REGDUMP_AFTER_CONT
)
965 /* Parse the output of a register dump command. A monitor specific
966 regexp is used to extract individual register descriptions of the
967 form REG=VAL. Each description is split up into a name and a value
968 string which are passed down to monitor specific code. */
971 parse_register_dump (struct regcache
*regcache
, char *buf
, int len
)
973 monitor_debug ("MON Parsing register dump\n");
976 int regnamelen
, vallen
;
979 /* Element 0 points to start of register name, and element 1
980 points to the start of the register value. */
981 struct re_registers register_strings
;
983 memset (®ister_strings
, 0, sizeof (struct re_registers
));
985 if (re_search (®ister_pattern
, buf
, len
, 0, len
,
986 ®ister_strings
) == -1)
989 regnamelen
= register_strings
.end
[1] - register_strings
.start
[1];
990 regname
= buf
+ register_strings
.start
[1];
991 vallen
= register_strings
.end
[2] - register_strings
.start
[2];
992 val
= buf
+ register_strings
.start
[2];
994 current_monitor
->supply_register (regcache
, regname
, regnamelen
,
997 buf
+= register_strings
.end
[0];
998 len
-= register_strings
.end
[0];
1002 /* Send ^C to target to halt it. Target will respond, and send us a
1006 monitor_interrupt (int signo
)
1008 /* If this doesn't work, try more severe steps. */
1009 signal (signo
, monitor_interrupt_twice
);
1011 if (monitor_debug_p
|| remote_debug
)
1012 fprintf_unfiltered (gdb_stdlog
, "monitor_interrupt called\n");
1014 target_stop (inferior_ptid
);
1017 /* The user typed ^C twice. */
1020 monitor_interrupt_twice (int signo
)
1022 signal (signo
, ofunc
);
1024 monitor_interrupt_query ();
1026 signal (signo
, monitor_interrupt
);
1029 /* Ask the user what to do when an interrupt is received. */
1032 monitor_interrupt_query (void)
1034 target_terminal_ours ();
1036 if (query (_("Interrupted while waiting for the program.\n\
1037 Give up (and stop debugging it)? ")))
1039 target_mourn_inferior ();
1043 target_terminal_inferior ();
1047 monitor_wait_cleanup (void *old_timeout
)
1049 timeout
= *(int *) old_timeout
;
1050 signal (SIGINT
, ofunc
);
1051 in_monitor_wait
= 0;
1057 monitor_wait_filter (char *buf
,
1060 struct target_waitstatus
*status
)
1066 resp_len
= monitor_expect_prompt (buf
, bufmax
);
1067 *ext_resp_len
= resp_len
;
1070 fprintf_unfiltered (gdb_stderr
,
1071 "monitor_wait: excessive "
1072 "response from monitor: %s.", buf
);
1074 while (resp_len
< 0);
1076 /* Print any output characters that were preceded by ^O. */
1077 /* FIXME - This would be great as a user settabgle flag. */
1078 if (monitor_debug_p
|| remote_debug
1079 || current_monitor
->flags
& MO_PRINT_PROGRAM_OUTPUT
)
1083 for (i
= 0; i
< resp_len
- 1; i
++)
1085 putchar_unfiltered (buf
[++i
]);
1091 /* Wait until the remote machine stops, then return, storing status in
1092 status just as `wait' would. */
1095 monitor_wait (struct target_ops
*ops
,
1096 ptid_t ptid
, struct target_waitstatus
*status
, int options
)
1098 int old_timeout
= timeout
;
1099 char buf
[TARGET_BUF_SIZE
];
1101 struct cleanup
*old_chain
;
1103 status
->kind
= TARGET_WAITKIND_EXITED
;
1104 status
->value
.integer
= 0;
1106 old_chain
= make_cleanup (monitor_wait_cleanup
, &old_timeout
);
1107 monitor_debug ("MON wait\n");
1110 /* This is somthing other than a maintenance command. */
1111 in_monitor_wait
= 1;
1112 timeout
= watchdog
> 0 ? watchdog
: -1;
1114 timeout
= -1; /* Don't time out -- user program is running. */
1117 ofunc
= (void (*)()) signal (SIGINT
, monitor_interrupt
);
1119 if (current_monitor
->wait_filter
)
1120 (*current_monitor
->wait_filter
) (buf
, sizeof (buf
), &resp_len
, status
);
1122 monitor_wait_filter (buf
, sizeof (buf
), &resp_len
, status
);
1124 #if 0 /* Transferred to monitor wait filter. */
1127 resp_len
= monitor_expect_prompt (buf
, sizeof (buf
));
1130 fprintf_unfiltered (gdb_stderr
,
1131 "monitor_wait: excessive "
1132 "response from monitor: %s.", buf
);
1134 while (resp_len
< 0);
1136 /* Print any output characters that were preceded by ^O. */
1137 /* FIXME - This would be great as a user settabgle flag. */
1138 if (monitor_debug_p
|| remote_debug
1139 || current_monitor
->flags
& MO_PRINT_PROGRAM_OUTPUT
)
1143 for (i
= 0; i
< resp_len
- 1; i
++)
1145 putchar_unfiltered (buf
[++i
]);
1149 signal (SIGINT
, ofunc
);
1151 timeout
= old_timeout
;
1153 if (dump_reg_flag
&& current_monitor
->dump_registers
)
1156 monitor_printf (current_monitor
->dump_registers
);
1157 resp_len
= monitor_expect_prompt (buf
, sizeof (buf
));
1160 if (current_monitor
->register_pattern
)
1161 parse_register_dump (get_current_regcache (), buf
, resp_len
);
1163 monitor_debug ("Wait fetching registers after stop\n");
1164 monitor_dump_regs (get_current_regcache ());
1167 status
->kind
= TARGET_WAITKIND_STOPPED
;
1168 status
->value
.sig
= GDB_SIGNAL_TRAP
;
1170 discard_cleanups (old_chain
);
1172 in_monitor_wait
= 0;
1174 return inferior_ptid
;
1177 /* Fetch register REGNO, or all registers if REGNO is -1. Returns
1181 monitor_fetch_register (struct regcache
*regcache
, int regno
)
1188 regbuf
= alloca (MAX_REGISTER_SIZE
* 2 + 1);
1189 zerobuf
= alloca (MAX_REGISTER_SIZE
);
1190 memset (zerobuf
, 0, MAX_REGISTER_SIZE
);
1192 if (current_monitor
->regname
!= NULL
)
1193 name
= current_monitor
->regname (regno
);
1195 name
= current_monitor
->regnames
[regno
];
1196 monitor_debug ("MON fetchreg %d '%s'\n", regno
, name
? name
: "(null name)");
1198 if (!name
|| (*name
== '\0'))
1200 monitor_debug ("No register known for %d\n", regno
);
1201 regcache_raw_supply (regcache
, regno
, zerobuf
);
1205 /* Send the register examine command. */
1207 monitor_printf (current_monitor
->getreg
.cmd
, name
);
1209 /* If RESP_DELIM is specified, we search for that as a leading
1210 delimiter for the register value. Otherwise, we just start
1211 searching from the start of the buf. */
1213 if (current_monitor
->getreg
.resp_delim
)
1215 monitor_debug ("EXP getreg.resp_delim\n");
1216 monitor_expect (current_monitor
->getreg
.resp_delim
, NULL
, 0);
1217 /* Handle case of first 32 registers listed in pairs. */
1218 if (current_monitor
->flags
& MO_32_REGS_PAIRED
1219 && (regno
& 1) != 0 && regno
< 32)
1221 monitor_debug ("EXP getreg.resp_delim\n");
1222 monitor_expect (current_monitor
->getreg
.resp_delim
, NULL
, 0);
1226 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set. */
1227 if (current_monitor
->flags
& MO_HEX_PREFIX
)
1231 c
= readchar (timeout
);
1233 c
= readchar (timeout
);
1234 if ((c
== '0') && ((c
= readchar (timeout
)) == 'x'))
1237 error (_("Bad value returned from monitor "
1238 "while fetching register %x."),
1242 /* Read upto the maximum number of hex digits for this register, skipping
1243 spaces, but stop reading if something else is seen. Some monitors
1244 like to drop leading zeros. */
1246 for (i
= 0; i
< register_size (get_regcache_arch (regcache
), regno
) * 2; i
++)
1250 c
= readchar (timeout
);
1252 c
= readchar (timeout
);
1260 regbuf
[i
] = '\000'; /* Terminate the number. */
1261 monitor_debug ("REGVAL '%s'\n", regbuf
);
1263 /* If TERM is present, we wait for that to show up. Also, (if TERM
1264 is present), we will send TERM_CMD if that is present. In any
1265 case, we collect all of the output into buf, and then wait for
1266 the normal prompt. */
1268 if (current_monitor
->getreg
.term
)
1270 monitor_debug ("EXP getreg.term\n");
1271 monitor_expect (current_monitor
->getreg
.term
, NULL
, 0); /* Get
1275 if (current_monitor
->getreg
.term_cmd
)
1277 monitor_debug ("EMIT getreg.term.cmd\n");
1278 monitor_printf (current_monitor
->getreg
.term_cmd
);
1280 if (!current_monitor
->getreg
.term
|| /* Already expected or */
1281 current_monitor
->getreg
.term_cmd
) /* ack expected. */
1282 monitor_expect_prompt (NULL
, 0); /* Get response. */
1284 monitor_supply_register (regcache
, regno
, regbuf
);
1287 /* Sometimes, it takes several commands to dump the registers. */
1288 /* This is a primitive for use by variations of monitor interfaces in
1289 case they need to compose the operation. */
1292 monitor_dump_reg_block (struct regcache
*regcache
, char *block_cmd
)
1294 char buf
[TARGET_BUF_SIZE
];
1297 monitor_printf (block_cmd
);
1298 resp_len
= monitor_expect_prompt (buf
, sizeof (buf
));
1299 parse_register_dump (regcache
, buf
, resp_len
);
1304 /* Read the remote registers into the block regs. */
1305 /* Call the specific function if it has been provided. */
1308 monitor_dump_regs (struct regcache
*regcache
)
1310 char buf
[TARGET_BUF_SIZE
];
1313 if (current_monitor
->dumpregs
)
1314 (*(current_monitor
->dumpregs
)) (regcache
); /* Call supplied function. */
1315 else if (current_monitor
->dump_registers
) /* Default version. */
1317 monitor_printf (current_monitor
->dump_registers
);
1318 resp_len
= monitor_expect_prompt (buf
, sizeof (buf
));
1319 parse_register_dump (regcache
, buf
, resp_len
);
1322 /* Need some way to read registers. */
1323 internal_error (__FILE__
, __LINE__
,
1324 _("failed internal consistency check"));
1328 monitor_fetch_registers (struct target_ops
*ops
,
1329 struct regcache
*regcache
, int regno
)
1331 monitor_debug ("MON fetchregs\n");
1332 if (current_monitor
->getreg
.cmd
)
1336 monitor_fetch_register (regcache
, regno
);
1340 for (regno
= 0; regno
< gdbarch_num_regs (get_regcache_arch (regcache
));
1342 monitor_fetch_register (regcache
, regno
);
1346 monitor_dump_regs (regcache
);
1350 /* Store register REGNO, or all if REGNO == 0. Return errno value. */
1353 monitor_store_register (struct regcache
*regcache
, int regno
)
1355 int reg_size
= register_size (get_regcache_arch (regcache
), regno
);
1359 if (current_monitor
->regname
!= NULL
)
1360 name
= current_monitor
->regname (regno
);
1362 name
= current_monitor
->regnames
[regno
];
1364 if (!name
|| (*name
== '\0'))
1366 monitor_debug ("MON Cannot store unknown register\n");
1370 regcache_cooked_read_unsigned (regcache
, regno
, &val
);
1371 monitor_debug ("MON storeg %d %s\n", regno
, phex (val
, reg_size
));
1373 /* Send the register deposit command. */
1375 if (current_monitor
->flags
& MO_REGISTER_VALUE_FIRST
)
1376 monitor_printf (current_monitor
->setreg
.cmd
, val
, name
);
1377 else if (current_monitor
->flags
& MO_SETREG_INTERACTIVE
)
1378 monitor_printf (current_monitor
->setreg
.cmd
, name
);
1380 monitor_printf (current_monitor
->setreg
.cmd
, name
, val
);
1382 if (current_monitor
->setreg
.resp_delim
)
1384 monitor_debug ("EXP setreg.resp_delim\n");
1385 monitor_expect_regexp (&setreg_resp_delim_pattern
, NULL
, 0);
1386 if (current_monitor
->flags
& MO_SETREG_INTERACTIVE
)
1387 monitor_printf ("%s\r", phex_nz (val
, reg_size
));
1389 if (current_monitor
->setreg
.term
)
1391 monitor_debug ("EXP setreg.term\n");
1392 monitor_expect (current_monitor
->setreg
.term
, NULL
, 0);
1393 if (current_monitor
->flags
& MO_SETREG_INTERACTIVE
)
1394 monitor_printf ("%s\r", phex_nz (val
, reg_size
));
1395 monitor_expect_prompt (NULL
, 0);
1398 monitor_expect_prompt (NULL
, 0);
1399 if (current_monitor
->setreg
.term_cmd
) /* Mode exit required. */
1401 monitor_debug ("EXP setreg_termcmd\n");
1402 monitor_printf ("%s", current_monitor
->setreg
.term_cmd
);
1403 monitor_expect_prompt (NULL
, 0);
1405 } /* monitor_store_register */
1407 /* Store the remote registers. */
1410 monitor_store_registers (struct target_ops
*ops
,
1411 struct regcache
*regcache
, int regno
)
1415 monitor_store_register (regcache
, regno
);
1419 for (regno
= 0; regno
< gdbarch_num_regs (get_regcache_arch (regcache
));
1421 monitor_store_register (regcache
, regno
);
1424 /* Get ready to modify the registers array. On machines which store
1425 individual registers, this doesn't need to do anything. On machines
1426 which store all the registers in one fell swoop, this makes sure
1427 that registers contains all the registers from the program being
1431 monitor_prepare_to_store (struct target_ops
*self
, struct regcache
*regcache
)
1433 /* Do nothing, since we can store individual regs. */
1437 monitor_files_info (struct target_ops
*ops
)
1439 printf_unfiltered (_("\tAttached to %s at %d baud.\n"), dev_name
, baud_rate
);
1443 monitor_write_memory (CORE_ADDR memaddr
, const gdb_byte
*myaddr
, int len
)
1445 enum bfd_endian byte_order
= gdbarch_byte_order (target_gdbarch ());
1446 unsigned int val
, hostval
;
1450 monitor_debug ("MON write %d %s\n", len
, paddress (target_gdbarch (), memaddr
));
1452 if (current_monitor
->flags
& MO_ADDR_BITS_REMOVE
)
1453 memaddr
= gdbarch_addr_bits_remove (target_gdbarch (), memaddr
);
1455 /* Use memory fill command for leading 0 bytes. */
1457 if (current_monitor
->fill
)
1459 for (i
= 0; i
< len
; i
++)
1463 if (i
> 4) /* More than 4 zeros is worth doing. */
1465 monitor_debug ("MON FILL %d\n", i
);
1466 if (current_monitor
->flags
& MO_FILL_USES_ADDR
)
1467 monitor_printf (current_monitor
->fill
, memaddr
,
1468 (memaddr
+ i
) - 1, 0);
1470 monitor_printf (current_monitor
->fill
, memaddr
, i
, 0);
1472 monitor_expect_prompt (NULL
, 0);
1479 /* Can't actually use long longs if VAL is an int (nice idea, though). */
1480 if ((memaddr
& 0x7) == 0 && len
>= 8 && current_monitor
->setmem
.cmdll
)
1483 cmd
= current_monitor
->setmem
.cmdll
;
1487 if ((memaddr
& 0x3) == 0 && len
>= 4 && current_monitor
->setmem
.cmdl
)
1490 cmd
= current_monitor
->setmem
.cmdl
;
1492 else if ((memaddr
& 0x1) == 0 && len
>= 2 && current_monitor
->setmem
.cmdw
)
1495 cmd
= current_monitor
->setmem
.cmdw
;
1500 cmd
= current_monitor
->setmem
.cmdb
;
1503 val
= extract_unsigned_integer (myaddr
, len
, byte_order
);
1507 hostval
= *(unsigned int *) myaddr
;
1508 monitor_debug ("Hostval(%08x) val(%08x)\n", hostval
, val
);
1512 if (current_monitor
->flags
& MO_NO_ECHO_ON_SETMEM
)
1513 monitor_printf_noecho (cmd
, memaddr
, val
);
1514 else if (current_monitor
->flags
& MO_SETMEM_INTERACTIVE
)
1516 monitor_printf_noecho (cmd
, memaddr
);
1518 if (current_monitor
->setmem
.resp_delim
)
1520 monitor_debug ("EXP setmem.resp_delim");
1521 monitor_expect_regexp (&setmem_resp_delim_pattern
, NULL
, 0);
1522 monitor_printf ("%x\r", val
);
1524 if (current_monitor
->setmem
.term
)
1526 monitor_debug ("EXP setmem.term");
1527 monitor_expect (current_monitor
->setmem
.term
, NULL
, 0);
1528 monitor_printf ("%x\r", val
);
1530 if (current_monitor
->setmem
.term_cmd
)
1531 { /* Emit this to get out of the memory editing state. */
1532 monitor_printf ("%s", current_monitor
->setmem
.term_cmd
);
1533 /* Drop through to expecting a prompt. */
1537 monitor_printf (cmd
, memaddr
, val
);
1539 monitor_expect_prompt (NULL
, 0);
1546 monitor_write_memory_bytes (CORE_ADDR memaddr
, const gdb_byte
*myaddr
, int len
)
1553 /* Enter the sub mode. */
1554 monitor_printf (current_monitor
->setmem
.cmdb
, memaddr
);
1555 monitor_expect_prompt (NULL
, 0);
1559 monitor_printf ("%x\r", val
);
1563 /* If we wanted to, here we could validate the address. */
1564 monitor_expect_prompt (NULL
, 0);
1567 /* Now exit the sub mode. */
1568 monitor_printf (current_monitor
->getreg
.term_cmd
);
1569 monitor_expect_prompt (NULL
, 0);
1575 longlongendswap (unsigned char *a
)
1585 *(a
+ i
) = *(a
+ j
);
1590 /* Format 32 chars of long long value, advance the pointer. */
1591 static char *hexlate
= "0123456789abcdef";
1593 longlong_hexchars (unsigned long long value
,
1603 static unsigned char disbuf
[8]; /* disassembly buffer */
1604 unsigned char *scan
, *limit
; /* loop controls */
1605 unsigned char c
, nib
;
1611 unsigned long long *dp
;
1613 dp
= (unsigned long long *) scan
;
1616 longlongendswap (disbuf
); /* FIXME: ONly on big endian hosts. */
1617 while (scan
< limit
)
1619 c
= *scan
++; /* A byte of our long long value. */
1625 leadzero
= 0; /* Henceforth we print even zeroes. */
1627 nib
= c
>> 4; /* high nibble bits */
1628 *outbuff
++ = hexlate
[nib
];
1629 nib
= c
& 0x0f; /* low nibble bits */
1630 *outbuff
++ = hexlate
[nib
];
1634 } /* longlong_hexchars */
1638 /* I am only going to call this when writing virtual byte streams.
1639 Which possably entails endian conversions. */
1642 monitor_write_memory_longlongs (CORE_ADDR memaddr
, const gdb_byte
*myaddr
, int len
)
1644 static char hexstage
[20]; /* At least 16 digits required, plus null. */
1650 llptr
= (long long *) myaddr
;
1653 monitor_printf (current_monitor
->setmem
.cmdll
, memaddr
);
1654 monitor_expect_prompt (NULL
, 0);
1658 endstring
= longlong_hexchars (*llptr
, hexstage
);
1659 *endstring
= '\0'; /* NUll terminate for printf. */
1660 monitor_printf ("%s\r", hexstage
);
1664 /* If we wanted to, here we could validate the address. */
1665 monitor_expect_prompt (NULL
, 0);
1668 /* Now exit the sub mode. */
1669 monitor_printf (current_monitor
->getreg
.term_cmd
);
1670 monitor_expect_prompt (NULL
, 0);
1676 /* ----- MONITOR_WRITE_MEMORY_BLOCK ---------------------------- */
1677 /* This is for the large blocks of memory which may occur in downloading.
1678 And for monitors which use interactive entry,
1679 And for monitors which do not have other downloading methods.
1680 Without this, we will end up calling monitor_write_memory many times
1681 and do the entry and exit of the sub mode many times
1682 This currently assumes...
1683 MO_SETMEM_INTERACTIVE
1684 ! MO_NO_ECHO_ON_SETMEM
1685 To use this, the you have to patch the monitor_cmds block with
1686 this function. Otherwise, its not tuned up for use by all
1687 monitor variations. */
1690 monitor_write_memory_block (CORE_ADDR memaddr
, const gdb_byte
*myaddr
, int len
)
1695 /* FIXME: This would be a good place to put the zero test. */
1697 if ((len
> 8) && (((len
& 0x07)) == 0) && current_monitor
->setmem
.cmdll
)
1699 return monitor_write_memory_longlongs (memaddr
, myaddr
, len
);
1702 written
= monitor_write_memory_bytes (memaddr
, myaddr
, len
);
1706 /* This is an alternate form of monitor_read_memory which is used for monitors
1707 which can only read a single byte/word/etc. at a time. */
1710 monitor_read_memory_single (CORE_ADDR memaddr
, gdb_byte
*myaddr
, int len
)
1712 enum bfd_endian byte_order
= gdbarch_byte_order (target_gdbarch ());
1714 char membuf
[sizeof (int) * 2 + 1];
1718 monitor_debug ("MON read single\n");
1720 /* Can't actually use long longs (nice idea, though). In fact, the
1721 call to strtoul below will fail if it tries to convert a value
1722 that's too big to fit in a long. */
1723 if ((memaddr
& 0x7) == 0 && len
>= 8 && current_monitor
->getmem
.cmdll
)
1726 cmd
= current_monitor
->getmem
.cmdll
;
1730 if ((memaddr
& 0x3) == 0 && len
>= 4 && current_monitor
->getmem
.cmdl
)
1733 cmd
= current_monitor
->getmem
.cmdl
;
1735 else if ((memaddr
& 0x1) == 0 && len
>= 2 && current_monitor
->getmem
.cmdw
)
1738 cmd
= current_monitor
->getmem
.cmdw
;
1743 cmd
= current_monitor
->getmem
.cmdb
;
1746 /* Send the examine command. */
1748 monitor_printf (cmd
, memaddr
);
1750 /* If RESP_DELIM is specified, we search for that as a leading
1751 delimiter for the memory value. Otherwise, we just start
1752 searching from the start of the buf. */
1754 if (current_monitor
->getmem
.resp_delim
)
1756 monitor_debug ("EXP getmem.resp_delim\n");
1757 monitor_expect_regexp (&getmem_resp_delim_pattern
, NULL
, 0);
1760 /* Now, read the appropriate number of hex digits for this loc,
1763 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set. */
1764 if (current_monitor
->flags
& MO_HEX_PREFIX
)
1768 c
= readchar (timeout
);
1770 c
= readchar (timeout
);
1771 if ((c
== '0') && ((c
= readchar (timeout
)) == 'x'))
1774 monitor_error ("monitor_read_memory_single",
1775 "bad response from monitor",
1776 memaddr
, 0, NULL
, 0);
1782 for (i
= 0; i
< len
* 2; i
++)
1788 c
= readchar (timeout
);
1794 monitor_error ("monitor_read_memory_single",
1795 "bad response from monitor",
1796 memaddr
, i
, membuf
, 0);
1800 membuf
[i
] = '\000'; /* Terminate the number. */
1803 /* If TERM is present, we wait for that to show up. Also, (if TERM is
1804 present), we will send TERM_CMD if that is present. In any case, we collect
1805 all of the output into buf, and then wait for the normal prompt. */
1807 if (current_monitor
->getmem
.term
)
1809 monitor_expect (current_monitor
->getmem
.term
, NULL
, 0); /* Get
1812 if (current_monitor
->getmem
.term_cmd
)
1814 monitor_printf (current_monitor
->getmem
.term_cmd
);
1815 monitor_expect_prompt (NULL
, 0);
1819 monitor_expect_prompt (NULL
, 0); /* Get response. */
1822 val
= strtoul (membuf
, &p
, 16);
1824 if (val
== 0 && membuf
== p
)
1825 monitor_error ("monitor_read_memory_single",
1826 "bad value from monitor",
1827 memaddr
, 0, membuf
, 0);
1829 /* supply register stores in target byte order, so swap here. */
1831 store_unsigned_integer (myaddr
, len
, byte_order
, val
);
1836 /* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
1837 memory at MEMADDR. Returns length moved. Currently, we do no more
1838 than 16 bytes at a time. */
1841 monitor_read_memory (CORE_ADDR memaddr
, gdb_byte
*myaddr
, int len
)
1852 monitor_debug ("Zero length call to monitor_read_memory\n");
1856 monitor_debug ("MON read block ta(%s) ha(%s) %d\n",
1857 paddress (target_gdbarch (), memaddr
),
1858 host_address_to_string (myaddr
), len
);
1860 if (current_monitor
->flags
& MO_ADDR_BITS_REMOVE
)
1861 memaddr
= gdbarch_addr_bits_remove (target_gdbarch (), memaddr
);
1863 if (current_monitor
->flags
& MO_GETMEM_READ_SINGLE
)
1864 return monitor_read_memory_single (memaddr
, myaddr
, len
);
1866 len
= min (len
, 16);
1868 /* Some dumpers align the first data with the preceding 16
1869 byte boundary. Some print blanks and start at the
1870 requested boundary. EXACT_DUMPADDR */
1872 dumpaddr
= (current_monitor
->flags
& MO_EXACT_DUMPADDR
)
1873 ? memaddr
: memaddr
& ~0x0f;
1875 /* See if xfer would cross a 16 byte boundary. If so, clip it. */
1876 if (((memaddr
^ (memaddr
+ len
- 1)) & ~0xf) != 0)
1877 len
= ((memaddr
+ len
) & ~0xf) - memaddr
;
1879 /* Send the memory examine command. */
1881 if (current_monitor
->flags
& MO_GETMEM_NEEDS_RANGE
)
1882 monitor_printf (current_monitor
->getmem
.cmdb
, memaddr
, memaddr
+ len
);
1883 else if (current_monitor
->flags
& MO_GETMEM_16_BOUNDARY
)
1884 monitor_printf (current_monitor
->getmem
.cmdb
, dumpaddr
);
1886 monitor_printf (current_monitor
->getmem
.cmdb
, memaddr
, len
);
1888 /* If TERM is present, we wait for that to show up. Also, (if TERM
1889 is present), we will send TERM_CMD if that is present. In any
1890 case, we collect all of the output into buf, and then wait for
1891 the normal prompt. */
1893 if (current_monitor
->getmem
.term
)
1895 resp_len
= monitor_expect (current_monitor
->getmem
.term
,
1896 buf
, sizeof buf
); /* Get response. */
1899 monitor_error ("monitor_read_memory",
1900 "excessive response from monitor",
1901 memaddr
, resp_len
, buf
, 0);
1903 if (current_monitor
->getmem
.term_cmd
)
1905 serial_write (monitor_desc
, current_monitor
->getmem
.term_cmd
,
1906 strlen (current_monitor
->getmem
.term_cmd
));
1907 monitor_expect_prompt (NULL
, 0);
1911 resp_len
= monitor_expect_prompt (buf
, sizeof buf
); /* Get response. */
1915 /* If RESP_DELIM is specified, we search for that as a leading
1916 delimiter for the values. Otherwise, we just start searching
1917 from the start of the buf. */
1919 if (current_monitor
->getmem
.resp_delim
)
1922 struct re_registers resp_strings
;
1924 monitor_debug ("MON getmem.resp_delim %s\n",
1925 current_monitor
->getmem
.resp_delim
);
1927 memset (&resp_strings
, 0, sizeof (struct re_registers
));
1929 retval
= re_search (&getmem_resp_delim_pattern
, p
, tmp
, 0, tmp
,
1933 monitor_error ("monitor_read_memory",
1934 "bad response from monitor",
1935 memaddr
, resp_len
, buf
, 0);
1937 p
+= resp_strings
.end
[0];
1939 p
= strstr (p
, current_monitor
->getmem
.resp_delim
);
1941 monitor_error ("monitor_read_memory",
1942 "bad response from monitor",
1943 memaddr
, resp_len
, buf
, 0);
1944 p
+= strlen (current_monitor
->getmem
.resp_delim
);
1947 monitor_debug ("MON scanning %d ,%s '%s'\n", len
,
1948 host_address_to_string (p
), p
);
1949 if (current_monitor
->flags
& MO_GETMEM_16_BOUNDARY
)
1957 while (!(c
== '\000' || c
== '\n' || c
== '\r') && i
> 0)
1961 if ((dumpaddr
>= memaddr
) && (i
> 0))
1963 val
= fromhex (c
) * 16 + fromhex (*(p
+ 1));
1965 if (monitor_debug_p
|| remote_debug
)
1966 fprintf_unfiltered (gdb_stdlog
, "[%02x]", val
);
1973 ++p
; /* Skip a blank or other non hex char. */
1977 error (_("Failed to read via monitor"));
1978 if (monitor_debug_p
|| remote_debug
)
1979 fprintf_unfiltered (gdb_stdlog
, "\n");
1980 return fetched
; /* Return the number of bytes actually
1983 monitor_debug ("MON scanning bytes\n");
1985 for (i
= len
; i
> 0; i
--)
1987 /* Skip non-hex chars, but bomb on end of string and newlines. */
1994 if (*p
== '\000' || *p
== '\n' || *p
== '\r')
1995 monitor_error ("monitor_read_memory",
1996 "badly terminated response from monitor",
1997 memaddr
, resp_len
, buf
, 0);
2001 val
= strtoul (p
, &p1
, 16);
2003 if (val
== 0 && p
== p1
)
2004 monitor_error ("monitor_read_memory",
2005 "bad value from monitor",
2006 memaddr
, resp_len
, buf
, 0);
2019 /* Helper for monitor_xfer_partial that handles memory transfers.
2020 Arguments are like target_xfer_partial. */
2022 static enum target_xfer_status
2023 monitor_xfer_memory (gdb_byte
*readbuf
, const gdb_byte
*writebuf
,
2024 ULONGEST memaddr
, ULONGEST len
, ULONGEST
*xfered_len
)
2028 if (writebuf
!= NULL
)
2030 if (current_monitor
->flags
& MO_HAS_BLOCKWRITES
)
2031 res
= monitor_write_memory_block (memaddr
, writebuf
, len
);
2033 res
= monitor_write_memory (memaddr
, writebuf
, len
);
2037 res
= monitor_read_memory (memaddr
, readbuf
, len
);
2041 return TARGET_XFER_E_IO
;
2044 *xfered_len
= (ULONGEST
) res
;
2045 return TARGET_XFER_OK
;
2049 /* Target to_xfer_partial implementation. */
2051 static enum target_xfer_status
2052 monitor_xfer_partial (struct target_ops
*ops
, enum target_object object
,
2053 const char *annex
, gdb_byte
*readbuf
,
2054 const gdb_byte
*writebuf
, ULONGEST offset
, ULONGEST len
,
2055 ULONGEST
*xfered_len
)
2059 case TARGET_OBJECT_MEMORY
:
2060 return monitor_xfer_memory (readbuf
, writebuf
, offset
, len
, xfered_len
);
2063 return TARGET_XFER_E_IO
;
2068 monitor_kill (struct target_ops
*ops
)
2070 return; /* Ignore attempts to kill target system. */
2073 /* All we actually do is set the PC to the start address of exec_bfd. */
2076 monitor_create_inferior (struct target_ops
*ops
, char *exec_file
,
2077 char *args
, char **env
, int from_tty
)
2079 if (args
&& (*args
!= '\000'))
2080 error (_("Args are not supported by the monitor."));
2083 clear_proceed_status ();
2084 regcache_write_pc (get_current_regcache (),
2085 bfd_get_start_address (exec_bfd
));
2088 /* Clean up when a program exits.
2089 The program actually lives on in the remote processor's RAM, and may be
2090 run again without a download. Don't leave it full of breakpoint
2094 monitor_mourn_inferior (struct target_ops
*ops
)
2096 unpush_target (targ_ops
);
2097 generic_mourn_inferior (); /* Do all the proper things now. */
2098 delete_thread_silent (monitor_ptid
);
2101 /* Tell the monitor to add a breakpoint. */
2104 monitor_insert_breakpoint (struct target_ops
*ops
, struct gdbarch
*gdbarch
,
2105 struct bp_target_info
*bp_tgt
)
2107 CORE_ADDR addr
= bp_tgt
->placed_address
;
2111 monitor_debug ("MON inst bkpt %s\n", paddress (gdbarch
, addr
));
2112 if (current_monitor
->set_break
== NULL
)
2113 error (_("No set_break defined for this monitor"));
2115 if (current_monitor
->flags
& MO_ADDR_BITS_REMOVE
)
2116 addr
= gdbarch_addr_bits_remove (gdbarch
, addr
);
2118 /* Determine appropriate breakpoint size for this address. */
2119 gdbarch_breakpoint_from_pc (gdbarch
, &addr
, &bplen
);
2120 bp_tgt
->placed_address
= addr
;
2121 bp_tgt
->placed_size
= bplen
;
2123 for (i
= 0; i
< current_monitor
->num_breakpoints
; i
++)
2125 if (breakaddr
[i
] == 0)
2127 breakaddr
[i
] = addr
;
2128 monitor_printf (current_monitor
->set_break
, addr
);
2129 monitor_expect_prompt (NULL
, 0);
2134 error (_("Too many breakpoints (> %d) for monitor."),
2135 current_monitor
->num_breakpoints
);
2138 /* Tell the monitor to remove a breakpoint. */
2141 monitor_remove_breakpoint (struct target_ops
*ops
, struct gdbarch
*gdbarch
,
2142 struct bp_target_info
*bp_tgt
)
2144 CORE_ADDR addr
= bp_tgt
->placed_address
;
2147 monitor_debug ("MON rmbkpt %s\n", paddress (gdbarch
, addr
));
2148 if (current_monitor
->clr_break
== NULL
)
2149 error (_("No clr_break defined for this monitor"));
2151 for (i
= 0; i
< current_monitor
->num_breakpoints
; i
++)
2153 if (breakaddr
[i
] == addr
)
2156 /* Some monitors remove breakpoints based on the address. */
2157 if (current_monitor
->flags
& MO_CLR_BREAK_USES_ADDR
)
2158 monitor_printf (current_monitor
->clr_break
, addr
);
2159 else if (current_monitor
->flags
& MO_CLR_BREAK_1_BASED
)
2160 monitor_printf (current_monitor
->clr_break
, i
+ 1);
2162 monitor_printf (current_monitor
->clr_break
, i
);
2163 monitor_expect_prompt (NULL
, 0);
2167 fprintf_unfiltered (gdb_stderr
,
2168 "Can't find breakpoint associated with %s\n",
2169 paddress (gdbarch
, addr
));
2173 /* monitor_wait_srec_ack -- wait for the target to send an acknowledgement for
2174 an S-record. Return non-zero if the ACK is received properly. */
2177 monitor_wait_srec_ack (void)
2181 if (current_monitor
->flags
& MO_SREC_ACK_PLUS
)
2183 return (readchar (timeout
) == '+');
2185 else if (current_monitor
->flags
& MO_SREC_ACK_ROTATE
)
2187 /* Eat two backspaces, a "rotating" char (|/-\), and a space. */
2188 if ((ch
= readchar (1)) < 0)
2190 if ((ch
= readchar (1)) < 0)
2192 if ((ch
= readchar (1)) < 0)
2194 if ((ch
= readchar (1)) < 0)
2200 /* monitor_load -- download a file. */
2203 monitor_load (struct target_ops
*self
, const char *args
, int from_tty
)
2205 CORE_ADDR load_offset
= 0;
2207 struct cleanup
*old_cleanups
;
2210 monitor_debug ("MON load\n");
2213 error_no_arg (_("file to load"));
2215 argv
= gdb_buildargv (args
);
2216 old_cleanups
= make_cleanup_freeargv (argv
);
2218 filename
= tilde_expand (argv
[0]);
2219 make_cleanup (xfree
, filename
);
2221 /* Enable user to specify address for downloading as 2nd arg to load. */
2222 if (argv
[1] != NULL
)
2226 load_offset
= strtoulst (argv
[1], &endptr
, 0);
2228 /* If the last word was not a valid number then
2229 treat it as a file name with spaces in. */
2230 if (argv
[1] == endptr
)
2231 error (_("Invalid download offset:%s."), argv
[1]);
2233 if (argv
[2] != NULL
)
2234 error (_("Too many parameters."));
2237 monitor_printf (current_monitor
->load
);
2238 if (current_monitor
->loadresp
)
2239 monitor_expect (current_monitor
->loadresp
, NULL
, 0);
2241 load_srec (monitor_desc
, filename
, load_offset
,
2242 32, SREC_ALL
, hashmark
,
2243 current_monitor
->flags
& MO_SREC_ACK
?
2244 monitor_wait_srec_ack
: NULL
);
2246 monitor_expect_prompt (NULL
, 0);
2248 do_cleanups (old_cleanups
);
2250 /* Finally, make the PC point at the start address. */
2252 regcache_write_pc (get_current_regcache (),
2253 bfd_get_start_address (exec_bfd
));
2255 /* There used to be code here which would clear inferior_ptid and
2256 call clear_symtab_users. None of that should be necessary:
2257 monitor targets should behave like remote protocol targets, and
2258 since generic_load does none of those things, this function
2261 Furthermore, clearing inferior_ptid is *incorrect*. After doing
2262 a load, we still have a valid connection to the monitor, with a
2263 live processor state to fiddle with. The user can type
2264 `continue' or `jump *start' and make the program run. If they do
2265 these things, however, GDB will be talking to a running program
2266 while inferior_ptid is null_ptid; this makes things like
2267 reinit_frame_cache very confused. */
2271 monitor_stop (struct target_ops
*self
, ptid_t ptid
)
2273 monitor_debug ("MON stop\n");
2274 if ((current_monitor
->flags
& MO_SEND_BREAK_ON_STOP
) != 0)
2275 serial_send_break (monitor_desc
);
2276 if (current_monitor
->stop
)
2277 monitor_printf_noecho (current_monitor
->stop
);
2280 /* Put a COMMAND string out to MONITOR. Output from MONITOR is placed
2281 in OUTPUT until the prompt is seen. FIXME: We read the characters
2282 ourseleves here cause of a nasty echo. */
2285 monitor_rcmd (struct target_ops
*self
, const char *command
,
2286 struct ui_file
*outbuf
)
2292 if (monitor_desc
== NULL
)
2293 error (_("monitor target not open."));
2295 p
= current_monitor
->prompt
;
2297 /* Send the command. Note that if no args were supplied, then we're
2298 just sending the monitor a newline, which is sometimes useful. */
2300 monitor_printf ("%s\r", (command
? command
: ""));
2302 resp_len
= monitor_expect_prompt (buf
, sizeof buf
);
2304 fputs_unfiltered (buf
, outbuf
); /* Output the response. */
2307 /* Convert hex digit A to a number. */
2313 if (a
>= '0' && a
<= '9')
2315 if (a
>= 'a' && a
<= 'f')
2316 return a
- 'a' + 10;
2317 if (a
>= 'A' && a
<= 'F')
2318 return a
- 'A' + 10;
2320 error (_("Reply contains invalid hex digit 0x%x"), a
);
2325 monitor_get_dev_name (void)
2330 /* Check to see if a thread is still alive. */
2333 monitor_thread_alive (struct target_ops
*ops
, ptid_t ptid
)
2335 if (ptid_equal (ptid
, monitor_ptid
))
2336 /* The monitor's task is always alive. */
2342 /* Convert a thread ID to a string. Returns the string in a static
2346 monitor_pid_to_str (struct target_ops
*ops
, ptid_t ptid
)
2348 static char buf
[64];
2350 if (ptid_equal (monitor_ptid
, ptid
))
2352 xsnprintf (buf
, sizeof buf
, "Thread <main>");
2356 return normal_pid_to_str (ptid
);
2359 static struct target_ops monitor_ops
;
2362 init_base_monitor_ops (void)
2364 monitor_ops
.to_close
= monitor_close
;
2365 monitor_ops
.to_detach
= monitor_detach
;
2366 monitor_ops
.to_resume
= monitor_resume
;
2367 monitor_ops
.to_wait
= monitor_wait
;
2368 monitor_ops
.to_fetch_registers
= monitor_fetch_registers
;
2369 monitor_ops
.to_store_registers
= monitor_store_registers
;
2370 monitor_ops
.to_prepare_to_store
= monitor_prepare_to_store
;
2371 monitor_ops
.to_xfer_partial
= monitor_xfer_partial
;
2372 monitor_ops
.to_files_info
= monitor_files_info
;
2373 monitor_ops
.to_insert_breakpoint
= monitor_insert_breakpoint
;
2374 monitor_ops
.to_remove_breakpoint
= monitor_remove_breakpoint
;
2375 monitor_ops
.to_kill
= monitor_kill
;
2376 monitor_ops
.to_load
= monitor_load
;
2377 monitor_ops
.to_create_inferior
= monitor_create_inferior
;
2378 monitor_ops
.to_mourn_inferior
= monitor_mourn_inferior
;
2379 monitor_ops
.to_stop
= monitor_stop
;
2380 monitor_ops
.to_rcmd
= monitor_rcmd
;
2381 monitor_ops
.to_log_command
= serial_log_command
;
2382 monitor_ops
.to_thread_alive
= monitor_thread_alive
;
2383 monitor_ops
.to_pid_to_str
= monitor_pid_to_str
;
2384 monitor_ops
.to_stratum
= process_stratum
;
2385 monitor_ops
.to_has_all_memory
= default_child_has_all_memory
;
2386 monitor_ops
.to_has_memory
= default_child_has_memory
;
2387 monitor_ops
.to_has_stack
= default_child_has_stack
;
2388 monitor_ops
.to_has_registers
= default_child_has_registers
;
2389 monitor_ops
.to_has_execution
= default_child_has_execution
;
2390 monitor_ops
.to_magic
= OPS_MAGIC
;
2391 } /* init_base_monitor_ops */
2393 /* Init the target_ops structure pointed at by OPS. */
2396 init_monitor_ops (struct target_ops
*ops
)
2398 if (monitor_ops
.to_magic
!= OPS_MAGIC
)
2399 init_base_monitor_ops ();
2401 memcpy (ops
, &monitor_ops
, sizeof monitor_ops
);
2404 /* Define additional commands that are usually only used by monitors. */
2406 /* -Wmissing-prototypes */
2407 extern initialize_file_ftype _initialize_remote_monitors
;
2410 _initialize_remote_monitors (void)
2412 init_base_monitor_ops ();
2413 add_setshow_boolean_cmd ("hash", no_class
, &hashmark
, _("\
2414 Set display of activity while downloading a file."), _("\
2415 Show display of activity while downloading a file."), _("\
2416 When enabled, a hashmark \'#\' is displayed."),
2418 NULL
, /* FIXME: i18n: */
2419 &setlist
, &showlist
);
2421 add_setshow_zuinteger_cmd ("monitor", no_class
, &monitor_debug_p
, _("\
2422 Set debugging of remote monitor communication."), _("\
2423 Show debugging of remote monitor communication."), _("\
2424 When enabled, communication between GDB and the remote monitor\n\
2427 NULL
, /* FIXME: i18n: */
2428 &setdebuglist
, &showdebuglist
);
2430 /* Yes, 42000 is arbitrary. The only sense out of it, is that it
2432 monitor_ptid
= ptid_build (42000, 0, 42000);