1 /* Remote target communications for serial-line targets in custom GDB protocol
2 Copyright 1988, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* Remote communication protocol.
22 A debug packet whose contents are <data>
23 is encapsulated for transmission in the form:
25 $ <data> # CSUM1 CSUM2
27 <data> must be ASCII alphanumeric and cannot include characters
28 '$' or '#'. If <data> starts with two characters followed by
29 ':', then the existing stubs interpret this as a sequence number.
31 CSUM1 and CSUM2 are ascii hex representation of an 8-bit
32 checksum of <data>, the most significant nibble is sent first.
33 the hex digits 0-9,a-f are used.
35 Receiver responds with:
37 + - if CSUM is correct and ready for next packet
38 - - if CSUM is incorrect
41 All values are encoded in ascii hex digits.
46 reply XX....X Each byte of register data
47 is described by two hex digits.
48 Registers are in the internal order
49 for GDB, and the bytes in a register
50 are in the same order the machine uses.
53 write regs GXX..XX Each byte of register data
54 is described by two hex digits.
58 write reg Pn...=r... Write register n... with value r...,
59 which contains two hex digits for each
60 byte in the register (target byte
64 (not supported by all stubs).
66 read mem mAA..AA,LLLL AA..AA is address, LLLL is length.
67 reply XX..XX XX..XX is mem contents
68 Can be fewer bytes than requested
69 if able to read only part of the data.
72 write mem MAA..AA,LLLL:XX..XX
74 LLLL is number of bytes,
77 ENN for an error (this includes the case
78 where only part of the data was
81 cont cAA..AA AA..AA is address to resume
83 resume at same address.
85 step sAA..AA AA..AA is address to resume
87 resume at same address.
89 last signal ? Reply the current reason for stopping.
90 This is the same reply as is generated
91 for step or cont : SAA where AA is the
94 There is no immediate reply to step or cont.
95 The reply comes when the machine stops.
96 It is SAA AA is the "signal number"
98 or... TAAn...:r...;n:r...;n...:r...;
100 n... = register number
101 r... = register contents
102 or... WAA The process exited, and AA is
103 the exit status. This is only
104 applicable for certains sorts of
108 toggle debug d toggle debug flag (see 386 & 68k stubs)
109 reset r reset -- see sparc stub.
110 reserved <other> On other requests, the stub should
111 ignore the request and send an empty
112 response ($#<checksum>). This way
113 we can extend the protocol and GDB
114 can tell whether the stub it is
115 talking to uses the old or the new.
116 search tAA:PP,MM Search backwards starting at address
117 AA for a match with pattern PP and
118 mask MM. PP and MM are 4 bytes.
119 Not supported by all stubs.
121 general query qXXXX Request info about XXXX.
122 general set QXXXX=yyyy Set value of XXXX to yyyy.
123 query sect offs qOffsets Get section offsets. Reply is
124 Text=xxx;Data=yyy;Bss=zzz
125 console output Otext Send text to stdout. Only comes from
128 Responses can be run-length encoded to save space. A '*' means that
129 the next character is an ASCII encoding giving a repeat count which
130 stands for that many repititions of the character preceding the '*'.
131 The encoding is n+29, yielding a printable character where n >=3
132 (which is where rle starts to win). Don't use an n > 126.
135 "0* " means the same as "0000". */
138 #include "gdb_string.h"
141 #include "inferior.h"
146 #include "terminal.h"
148 #include "objfiles.h"
149 #include "gdb-stabs.h"
150 #include "remote-utils.h"
154 #include <sys/types.h>
160 /* Prototypes for local functions */
163 remote_remove_breakpoint PARAMS ((CORE_ADDR, char *));
166 remote_insert_breakpoint PARAMS ((CORE_ADDR, char *));
169 remote_mourn PARAMS ((void));
172 remote_kill PARAMS ((void));
175 read_frame PARAMS ((char *));
178 boot_board PARAMS ((void));
181 remote_write_bytes PARAMS ((CORE_ADDR memaddr, char *myaddr, int len));
184 remote_read_bytes PARAMS ((CORE_ADDR memaddr, char *myaddr, int len));
187 remote_files_info PARAMS ((struct target_ops *ignore));
190 remote_xfer_memory PARAMS ((CORE_ADDR memaddr, char *myaddr, int len,
191 int should_write, struct target_ops *target));
194 remote_prepare_to_store PARAMS ((void));
197 remote_fetch_registers PARAMS ((int regno));
200 remote_resume PARAMS ((int pid, int step, enum target_signal siggnal));
203 remote_start_remote PARAMS ((char *dummy));
206 remote_open PARAMS ((char *name, int from_tty));
209 remote_close PARAMS ((int quitting));
212 remote_store_registers PARAMS ((int regno));
215 getpkt PARAMS ((char *buf, int forever));
218 putpkt PARAMS ((char *buf));
221 remote_send PARAMS ((char *buf));
224 readchar PARAMS ((int timeout));
227 remote_wait PARAMS ((int pid, struct target_waitstatus *status));
230 tohex PARAMS ((int nib));
233 fromhex PARAMS ((int a));
236 remote_detach PARAMS ((char *args, int from_tty));
239 remote_interrupt PARAMS ((int signo));
242 remote_interrupt_twice PARAMS ((int signo));
245 interrupt_query PARAMS ((void));
248 hppro_load PARAMS ((char *name, int from_tty));
250 extern struct target_ops remote_ops; /* Forward decl */
252 /* This was 5 seconds, which is a long time to sit and wait.
253 Unless this is going though some terminal server or multiplexer or
254 other form of hairy serial connection, I would think 2 seconds would
256 static int remote_timeout = 2;
258 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
259 remote_open knows that we don't have a file open when the program
261 extern serial_t remote_desc;
263 /* Having this larger than 400 causes us to be incompatible with m68k-stub.c
264 and i386-stub.c. Normally, no one would notice because it only matters
265 for writing large chunks of memory (e.g. in downloads). Also, this needs
266 to be more than 400 if required to hold the registers (see below, where
267 we round it up based on REGISTER_BYTES). */
270 /* Maximum number of bytes to read/write at once. The value here
271 is chosen to fill up a packet (the headers account for the 32). */
272 #define MAXBUFBYTES ((PBUFSIZ-32)/2)
274 /* Round up PBUFSIZ to hold all the registers, at least. */
275 /* The blank line after the #if seems to be required to work around a
276 bug in HP's PA compiler. */
277 #if REGISTER_BYTES > MAXBUFBYTES
280 #define PBUFSIZ (REGISTER_BYTES * 2 + 32)
283 /* Should we try the 'P' request? If this is set to one when the stub
284 doesn't support 'P', the only consequence is some unnecessary traffic. */
285 static int stub_supports_P = 1;
287 /* sets the download protocol, choices are srec, generic, boot */
289 static char *loadtype_str;
290 static void set_loadtype_command
291 PARAMS ((char *, int, struct cmd_list_element *));
294 hppro_load (file, from_tty)
298 puts ("Loading... HA!");
302 /* Clean up connection to a remote debugger. */
306 remote_close (quitting)
310 SERIAL_CLOSE (remote_desc);
314 /* Query the remote side for the text, data and bss offsets. */
321 unsigned char buf[PBUFSIZ];
323 CORE_ADDR text_addr, data_addr, bss_addr;
324 struct section_offsets *offs;
330 if (buf[0] == '\000')
331 return; /* Return silently. Stub doesn't support this
335 warning ("Remote failure reply: %s", buf);
339 nvals = sscanf (buf, "Text=%lx;Data=%lx;Bss=%lx", &text_addr, &data_addr,
342 error ("Malformed response to offset query, %s", buf);
344 if (symfile_objfile == NULL)
347 offs = (struct section_offsets *) alloca (sizeof (struct section_offsets)
348 + symfile_objfile->num_sections
349 * sizeof (offs->offsets));
350 memcpy (offs, symfile_objfile->section_offsets,
351 sizeof (struct section_offsets)
352 + symfile_objfile->num_sections
353 * sizeof (offs->offsets));
355 /* FIXME: This code assumes gdb-stabs.h is being used; it's broken
356 for xcoff, dwarf, sdb-coff, etc. But there is no simple
357 canonical representation for this stuff. (Just what does "text"
358 as seen by the stub mean, anyway? I think it means all sections
359 with SEC_CODE set, but we currently have no way to deal with that). */
361 ANOFFSET (offs, SECT_OFF_TEXT) = text_addr;
363 /* This is a temporary kludge to force data and bss to use the same offsets
364 because that's what nlmconv does now. The real solution requires changes
365 to the stub and remote.c that I don't have time to do right now. */
367 ANOFFSET (offs, SECT_OFF_DATA) = data_addr;
368 ANOFFSET (offs, SECT_OFF_BSS) = data_addr;
370 objfile_relocate (symfile_objfile, offs);
384 /* See if we can connect to the boot ROM command line */
387 SERIAL_WRITE (remote_desc, "\r\n", 2);
389 if ((sr_get_debug() > 2) && (isascii(c)))
391 if (c == SERIAL_TIMEOUT) {
393 puts_filtered ("Timed out.\n");
397 if (sr_get_debug() > 2)
398 puts ("Got ACK from stub");
402 if (sr_get_debug() > 2)
403 puts ("Got prompt from ROM monitor");
410 /* Stub for catch_errors. */
412 remote_start_remote (dummy)
415 immediate_quit = 1; /* Allow user to interrupt it */
417 /* Ack any packet which the remote side has already sent. */
420 puts ("Trying a '+' to ACK the target.");
422 SERIAL_WRITE (remote_desc, "+", 1);
427 get_offsets (); /* Get text, data & bss offsets */
430 putpkt ("?"); /* initiate a query from remote machine */
433 start_remote (); /* Initialize gdb process mechanisms */
438 /* Open a connection to a remote debugger.
439 NAME is the filename used for communication. */
441 static DCACHE *remote_dcache;
444 remote_open (name, from_tty)
450 "To open a remote debug connection, you need to specify what serial\n\
451 device is attached to the remote system (e.g. /dev/ttya).");
453 target_preopen (from_tty);
455 unpush_target (&remote_ops);
457 remote_dcache = dcache_init (remote_read_bytes, remote_write_bytes);
459 remote_desc = SERIAL_OPEN (name);
461 perror_with_name (name);
465 if (SERIAL_SETBAUDRATE (remote_desc, baud_rate))
467 SERIAL_CLOSE (remote_desc);
468 perror_with_name (name);
472 SERIAL_RAW (remote_desc);
474 /* If there is something sitting in the buffer we might take it as a
475 response to a command, which would be bad. */
476 SERIAL_FLUSH_INPUT (remote_desc);
480 puts_filtered ("Remote debugging using ");
481 puts_filtered (name);
482 puts_filtered ("\n");
484 push_target (&remote_ops); /* Switch to using remote target now */
486 /* Start out by trying the 'P' request to set registers. We set this each
487 time that we open a new target so that if the user switches from one
488 stub to another, we can (if the target is closed and reopened) cope. */
491 /* Without this, some commands which require an active target (such as kill)
492 won't work. This variable serves (at least) double duty as both the pid
493 of the target process (if it has such), and as a flag indicating that a
494 target is active. These functions should be split out into seperate
495 variables, especially since GDB will someday have a notion of debugging
496 several processes. */
498 inferior_pid = 42000;
500 /* Start the remote connection; if error (0), discard this target.
501 In particular, if the user quits, be sure to discard it
502 (we'd be in an inconsistent state otherwise). */
503 if (!catch_errors (remote_start_remote, (char *)0,
504 "Couldn't establish connection to remote target\n", RETURN_MASK_ALL))
509 takes a program previously attached to and detaches it.
510 We better not have left any breakpoints
511 in the program or it'll die when it hits one.
512 Close the open connection to the remote debugger.
513 Use this when you want to detach and do something else
517 remote_detach (args, from_tty)
522 error ("Argument given to \"detach\" when remotely debugging.");
526 puts_filtered ("Ending remote debugging.\n");
529 /* Convert hex digit A to a number. */
535 if (a >= '0' && a <= '9')
537 else if (a >= 'a' && a <= 'f')
540 error ("Reply contains invalid hex digit");
543 /* Convert number NIB to a hex digit. */
555 /* Tell the remote machine to resume. */
558 remote_resume (pid, step, siggnal)
560 enum target_signal siggnal;
566 target_terminal_ours_for_output ();
568 ("Can't send signals to a remote system. %s not sent.\n",
569 target_signal_to_name (siggnal)); target_terminal_inferior ();
572 dcache_flush (remote_dcache);
574 strcpy (buf, step ? "s": "c");
579 /* Send ^C to target to halt it. Target will respond, and send us a
583 remote_interrupt (signo)
586 /* If this doesn't work, try more severe steps. */
587 signal (signo, remote_interrupt_twice);
590 printf_unfiltered ("remote_interrupt called\n");
592 SERIAL_WRITE (remote_desc, "\003", 1); /* Send a ^C */
595 static void (*ofunc)();
597 /* The user typed ^C twice. */
599 remote_interrupt_twice (signo)
602 signal (signo, ofunc);
606 signal (signo, remote_interrupt);
609 /* Ask the user what to do when an interrupt is received. */
614 target_terminal_ours ();
616 if (query ("Interrupted while waiting for the program.\n\
617 Give up (and stop debugging it)? "))
619 target_mourn_inferior ();
620 return_to_top_level (RETURN_QUIT);
623 target_terminal_inferior ();
626 /* Wait until the remote machine stops, then return,
627 storing status in STATUS just as `wait' would.
628 Returns "pid" (though it's not clear what, if anything, that
629 means in the case of this target). */
632 remote_wait (pid, status)
634 struct target_waitstatus *status;
636 unsigned char buf[PBUFSIZ];
638 status->kind = TARGET_WAITKIND_EXITED;
639 status->value.integer = 0;
645 ofunc = (void (*)()) signal (SIGINT, remote_interrupt);
646 getpkt ((char *) buf, 1);
647 signal (SIGINT, ofunc);
651 case 'E': /* Error of some sort */
652 warning ("Remote failure reply: %s", buf);
654 case 'T': /* Status with PC, SP, FP, ... */
658 char regs[MAX_REGISTER_RAW_SIZE];
660 /* Expedited reply, containing Signal, {regno, reg} repeat */
661 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
663 n... = register number
664 r... = register contents
667 p = &buf[3]; /* after Txx */
673 regno = strtol (p, (char **) &p1, 16); /* Read the register number */
676 warning ("Remote sent badly formed register number: %s\nPacket: '%s'\n",
682 warning ("Malformed packet (missing colon): %s\nPacket: '%s'\n",
685 if (regno >= NUM_REGS)
686 warning ("Remote sent bad register number %d: %s\nPacket: '%s'\n",
689 for (i = 0; i < REGISTER_RAW_SIZE (regno); i++)
691 if (p[0] == 0 || p[1] == 0)
692 warning ("Remote reply is too short: %s", buf);
693 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
698 warning ("Remote register badly formatted: %s", buf);
700 supply_register (regno, regs);
704 case 'S': /* Old style status, just signal only */
705 status->kind = TARGET_WAITKIND_STOPPED;
706 status->value.sig = (enum target_signal)
707 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
710 case 'W': /* Target exited */
712 /* The remote process exited. */
713 status->kind = TARGET_WAITKIND_EXITED;
714 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
717 case 'O': /* Console output */
718 fputs_filtered (buf + 1, gdb_stdout);
721 warning ("Invalid remote reply: %s", buf);
728 /* Number of bytes of registers this stub implements. */
729 static int register_bytes_found;
731 /* Read the remote registers into the block REGS. */
732 /* Currently we just read all the registers, so we don't use regno. */
735 remote_fetch_registers (regno)
741 char regs[REGISTER_BYTES];
746 /* Unimplemented registers read as all bits zero. */
747 memset (regs, 0, REGISTER_BYTES);
749 /* We can get out of synch in various cases. If the first character
750 in the buffer is not a hex character, assume that has happened
751 and try to fetch another packet to read. */
752 while ((buf[0] < '0' || buf[0] > '9')
753 && (buf[0] < 'a' || buf[0] > 'f'))
756 printf_unfiltered ("Bad register packet; fetching a new packet\n");
760 /* Reply describes registers byte by byte, each byte encoded as two
761 hex characters. Suck them all up, then supply them to the
762 register cacheing/storage mechanism. */
765 for (i = 0; i < REGISTER_BYTES; i++)
771 warning ("Remote reply is of odd length: %s", buf);
772 /* Don't change register_bytes_found in this case, and don't
773 print a second warning. */
776 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
780 if (i != register_bytes_found)
782 register_bytes_found = i;
783 #ifdef REGISTER_BYTES_OK
784 if (!REGISTER_BYTES_OK (i))
785 warning ("Remote reply is too short: %s", buf);
790 for (i = 0; i < NUM_REGS; i++)
791 supply_register (i, ®s[REGISTER_BYTE(i)]);
794 /* Prepare to store registers. Since we may send them all (using a
795 'G' request), we have to read out the ones we don't want to change
799 remote_prepare_to_store ()
801 /* Make sure the entire registers array is valid. */
802 read_register_bytes (0, (char *)NULL, REGISTER_BYTES);
805 /* Store register REGNO, or all registers if REGNO == -1, from the contents
806 of REGISTERS. FIXME: ignores errors. */
809 remote_store_registers (regno)
816 if (regno >= 0 && stub_supports_P)
818 /* Try storing a single register. */
821 sprintf (buf, "P%x=", regno);
822 p = buf + strlen (buf);
823 regp = ®isters[REGISTER_BYTE (regno)];
824 for (i = 0; i < REGISTER_RAW_SIZE (regno); ++i)
826 *p++ = tohex ((regp[i] >> 4) & 0xf);
827 *p++ = tohex (regp[i] & 0xf);
833 /* The stub understands the 'P' request. We are done. */
837 /* The stub does not support the 'P' request. Use 'G' instead,
838 and don't try using 'P' in the future (it will just waste our
845 /* Command describes registers byte by byte,
846 each byte encoded as two hex characters. */
849 /* remote_prepare_to_store insures that register_bytes_found gets set. */
850 for (i = 0; i < register_bytes_found; i++)
852 *p++ = tohex ((registers[i] >> 4) & 0xf);
853 *p++ = tohex (registers[i] & 0xf);
862 /* Use of the data cache is disabled because it loses for looking at
863 and changing hardware I/O ports and the like. Accepting `volatile'
864 would perhaps be one way to fix it. Another idea would be to use the
865 executable file for the text segment (for all SEC_CODE sections?
866 For all SEC_READONLY sections?). This has problems if you want to
867 actually see what the memory contains (e.g. self-modifying code,
868 clobbered memory, user downloaded the wrong thing). */
870 /* Read a word from remote address ADDR and return it.
871 This goes through the data cache. */
874 remote_fetch_word (addr)
877 return dcache_fetch (remote_dcache, addr);
880 /* Write a word WORD into remote address ADDR.
881 This goes through the data cache. */
884 remote_store_word (addr, word)
888 dcache_poke (remote_dcache, addr, word);
892 /* Write memory data directly to the remote machine.
893 This does not inform the data cache; the data cache uses this.
894 MEMADDR is the address in the remote memory space.
895 MYADDR is the address of the buffer in our space.
896 LEN is the number of bytes.
898 Returns number of bytes transferred, or 0 for error. */
901 remote_write_bytes (memaddr, myaddr, len)
910 /* FIXME-32x64: Need a version of print_address_numeric which puts the
911 result in a buffer like sprintf. */
912 sprintf (buf, "M%lx,%x:", (unsigned long) memaddr, len);
914 /* We send target system values byte by byte, in increasing byte addresses,
915 each byte encoded as two hex characters. */
917 p = buf + strlen (buf);
918 for (i = 0; i < len; i++)
920 *p++ = tohex ((myaddr[i] >> 4) & 0xf);
921 *p++ = tohex (myaddr[i] & 0xf);
930 /* There is no correspondance between what the remote protocol uses
931 for errors and errno codes. We would like a cleaner way of
932 representing errors (big enough to include errno codes, bfd_error
933 codes, and others). But for now just return EIO. */
940 /* Read memory data directly from the remote machine.
941 This does not use the data cache; the data cache uses this.
942 MEMADDR is the address in the remote memory space.
943 MYADDR is the address of the buffer in our space.
944 LEN is the number of bytes.
946 Returns number of bytes transferred, or 0 for error. */
949 remote_read_bytes (memaddr, myaddr, len)
958 if (len > PBUFSIZ / 2 - 1)
961 /* FIXME-32x64: Need a version of print_address_numeric which puts the
962 result in a buffer like sprintf. */
963 sprintf (buf, "m%lx,%x", (unsigned long) memaddr, len);
969 /* There is no correspondance between what the remote protocol uses
970 for errors and errno codes. We would like a cleaner way of
971 representing errors (big enough to include errno codes, bfd_error
972 codes, and others). But for now just return EIO. */
977 /* Reply describes memory byte by byte,
978 each byte encoded as two hex characters. */
981 for (i = 0; i < len; i++)
983 if (p[0] == 0 || p[1] == 0)
984 /* Reply is short. This means that we were able to read only part
985 of what we wanted to. */
987 myaddr[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
993 /* Read or write LEN bytes from inferior memory at MEMADDR, transferring
994 to or from debugger address MYADDR. Write to inferior if SHOULD_WRITE is
995 nonzero. Returns length of data written or read; 0 for error. */
999 remote_xfer_memory(memaddr, myaddr, len, should_write, target)
1004 struct target_ops *target; /* ignored */
1008 int total_xferred = 0;
1012 if (len > MAXBUFBYTES)
1013 xfersize = MAXBUFBYTES;
1018 bytes_xferred = remote_write_bytes (memaddr, myaddr, xfersize);
1020 bytes_xferred = remote_read_bytes (memaddr, myaddr, xfersize);
1022 /* If we get an error, we are done xferring. */
1023 if (bytes_xferred == 0)
1026 memaddr += bytes_xferred;
1027 myaddr += bytes_xferred;
1028 len -= bytes_xferred;
1029 total_xferred += bytes_xferred;
1031 return total_xferred;
1035 /* Enable after 4.12. */
1038 remote_search (len, data, mask, startaddr, increment, lorange, hirange
1039 addr_found, data_found)
1043 CORE_ADDR startaddr;
1047 CORE_ADDR *addr_found;
1050 if (increment == -4 && len == 4)
1052 long mask_long, data_long;
1053 long data_found_long;
1054 CORE_ADDR addr_we_found;
1056 long returned_long[2];
1059 mask_long = extract_unsigned_integer (mask, len);
1060 data_long = extract_unsigned_integer (data, len);
1061 sprintf (buf, "t%x:%x,%x", startaddr, data_long, mask_long);
1066 /* The stub doesn't support the 't' request. We might want to
1067 remember this fact, but on the other hand the stub could be
1068 switched on us. Maybe we should remember it only until
1069 the next "target remote". */
1070 generic_search (len, data, mask, startaddr, increment, lorange,
1071 hirange, addr_found, data_found);
1076 /* There is no correspondance between what the remote protocol uses
1077 for errors and errno codes. We would like a cleaner way of
1078 representing errors (big enough to include errno codes, bfd_error
1079 codes, and others). But for now just use EIO. */
1080 memory_error (EIO, startaddr);
1083 while (*p != '\0' && *p != ',')
1084 addr_we_found = (addr_we_found << 4) + fromhex (*p++);
1086 error ("Protocol error: short return for search");
1088 data_found_long = 0;
1089 while (*p != '\0' && *p != ',')
1090 data_found_long = (data_found_long << 4) + fromhex (*p++);
1091 /* Ignore anything after this comma, for future extensions. */
1093 if (addr_we_found < lorange || addr_we_found >= hirange)
1099 *addr_found = addr_we_found;
1100 *data_found = store_unsigned_integer (data_we_found, len);
1103 generic_search (len, data, mask, startaddr, increment, lorange,
1104 hirange, addr_found, data_found);
1109 remote_files_info (ignore)
1110 struct target_ops *ignore;
1112 puts_filtered ("Debugging a target over a serial line.\n");
1115 /* Stuff for dealing with the packets which are part of this protocol.
1116 See comment at top of file for details. */
1118 /* Read a single character from the remote end, masking it down to 7 bits. */
1126 ch = SERIAL_READCHAR (remote_desc, timeout);
1131 error ("Remote connection closed");
1133 perror_with_name ("Remote communication error");
1134 case SERIAL_TIMEOUT:
1141 /* Send the command in BUF to the remote machine,
1142 and read the reply into BUF.
1143 Report an error if we get an error reply. */
1154 error ("Remote failure reply: %s", buf);
1157 /* Send a packet to the remote machine, with error checking.
1158 The data of the packet is in BUF. */
1164 unsigned char csum = 0;
1166 int cnt = strlen (buf);
1170 /* Copy the packet into buffer BUF2, encapsulating it
1171 and giving it a checksum. */
1173 if (cnt > sizeof(buf2) - 5) /* Prosanity check */
1179 for (i = 0; i < cnt; i++)
1185 *p++ = tohex ((csum >> 4) & 0xf);
1186 *p++ = tohex (csum & 0xf);
1188 /* Send it over and over until we get a positive ack. */
1192 int started_error_output = 0;
1197 printf_unfiltered ("Sending packet: %s...", buf2);
1198 gdb_flush(gdb_stdout);
1200 if (SERIAL_WRITE (remote_desc, buf2, p - buf2))
1201 perror_with_name ("putpkt: write failed");
1203 /* read until either a timeout occurs (-2) or '+' is read */
1206 ch = readchar (remote_timeout);
1213 case SERIAL_TIMEOUT:
1215 if (started_error_output)
1217 putchar_unfiltered ('\n');
1218 started_error_output = 0;
1227 printf_unfiltered("Got Ack\n");
1229 case SERIAL_TIMEOUT:
1230 break; /* Retransmit buffer */
1233 unsigned char junkbuf[PBUFSIZ];
1235 /* It's probably an old response, and we're out of sync. Just
1236 gobble up the packet and ignore it. */
1237 getpkt (junkbuf, 0);
1238 continue; /* Now, go look for + */
1243 if (!started_error_output)
1245 started_error_output = 1;
1246 printf_unfiltered ("putpkt: Junk: ");
1248 putchar_unfiltered (ch & 0177);
1252 break; /* Here to retransmit */
1256 /* This is wrong. If doing a long backtrace, the user should be
1257 able to get out next time we call QUIT, without anything as violent
1258 as interrupt_query. If we want to provide a way out of here
1259 without getting to the next QUIT, it should be based on hitting
1260 ^C twice as in remote_wait. */
1270 /* Come here after finding the start of the frame. Collect the rest into BUF,
1271 verifying the checksum, length, and handling run-length compression.
1272 Returns 0 on any error, 1 on success. */
1287 c = readchar (remote_timeout);
1291 case SERIAL_TIMEOUT:
1293 puts_filtered ("Timeout in mid-packet, retrying\n");
1297 puts_filtered ("Saw new packet start in middle of old one\n");
1298 return 0; /* Start a new packet, count retries */
1301 unsigned char pktcsum;
1305 pktcsum = fromhex (readchar (remote_timeout)) << 4;
1306 pktcsum |= fromhex (readchar (remote_timeout));
1308 if (csum == pktcsum)
1311 printf_filtered ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
1313 puts_filtered (buf);
1314 puts_filtered ("\n");
1318 case '*': /* Run length encoding */
1320 c = readchar (remote_timeout);
1322 c = c - ' ' + 3; /* Compute repeat count */
1324 if (bp + c - 1 < buf + PBUFSIZ - 1)
1326 memset (bp, *(bp - 1), c);
1332 printf_filtered ("Repeat count %d too large for buffer: ", c);
1333 puts_filtered (buf);
1334 puts_filtered ("\n");
1338 if (bp < buf + PBUFSIZ - 1)
1346 puts_filtered ("Remote packet too long: ");
1347 puts_filtered (buf);
1348 puts_filtered ("\n");
1355 /* Read a packet from the remote machine, with error checking,
1356 and store it in BUF. BUF is expected to be of size PBUFSIZ.
1357 If FOREVER, wait forever rather than timing out; this is used
1358 while the target is executing user code. */
1361 getpkt (buf, forever)
1373 timeout = remote_timeout;
1375 #define MAX_TRIES 10
1377 for (tries = 1; tries <= MAX_TRIES; tries++)
1379 /* This can loop forever if the remote side sends us characters
1380 continuously, but if it pauses, we'll get a zero from readchar
1381 because of timeout. Then we'll count that as a retry. */
1383 /* Note that we will only wait forever prior to the start of a packet.
1384 After that, we expect characters to arrive at a brisk pace. They
1385 should show up within remote_timeout intervals. */
1389 c = readchar (timeout);
1391 if (c == SERIAL_TIMEOUT)
1394 puts_filtered ("Timed out.\n");
1400 /* We've found the start of a packet, now collect the data. */
1402 val = read_frame (buf);
1407 fprintf_unfiltered (gdb_stderr, "Packet received: %s\n", buf);
1408 SERIAL_WRITE (remote_desc, "+", 1);
1412 /* Try the whole thing again. */
1414 SERIAL_WRITE (remote_desc, "-", 1);
1417 /* We have tried hard enough, and just can't receive the packet. Give up. */
1419 printf_unfiltered ("Ignoring packet error, continuing...\n");
1420 SERIAL_WRITE (remote_desc, "+", 1);
1427 /* Don't wait for it to die. I'm not really sure it matters whether
1428 we do or not. For the existing stubs, kill is a noop. */
1429 target_mourn_inferior ();
1435 unpush_target (&remote_ops);
1436 generic_mourn_inferior ();
1439 #ifdef REMOTE_BREAKPOINT
1441 /* On some machines, e.g. 68k, we may use a different breakpoint instruction
1442 than other targets. */
1443 static unsigned char break_insn[] = REMOTE_BREAKPOINT;
1445 #else /* No REMOTE_BREAKPOINT. */
1447 /* Same old breakpoint instruction. This code does nothing different
1448 than mem-break.c. */
1449 static unsigned char break_insn[] = BREAKPOINT;
1451 #endif /* No REMOTE_BREAKPOINT. */
1453 /* Insert a breakpoint on targets that don't have any better breakpoint
1454 support. We read the contents of the target location and stash it,
1455 then overwrite it with a breakpoint instruction. ADDR is the target
1456 location in the target machine. CONTENTS_CACHE is a pointer to
1457 memory allocated for saving the target contents. It is guaranteed
1458 by the caller to be long enough to save sizeof BREAKPOINT bytes (this
1459 is accomplished via BREAKPOINT_MAX). */
1462 remote_insert_breakpoint (addr, contents_cache)
1464 char *contents_cache;
1468 val = target_read_memory (addr, contents_cache, sizeof break_insn);
1471 val = target_write_memory (addr, (char *)break_insn, sizeof break_insn);
1477 remote_remove_breakpoint (addr, contents_cache)
1479 char *contents_cache;
1481 return target_write_memory (addr, contents_cache, sizeof break_insn);
1484 /* Define the target subroutine names */
1486 struct target_ops remote_hppro_ops = {
1487 "hppro", /* to_shortname */
1488 "Remote serial target for HP-PRO targets", /* to_longname */
1489 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
1490 This is for targets that supports the HP-PRO standard.\n\
1491 Specify the serial device it is connected to (e.g. /dev/ttya) or telnet port.", /* to_doc */
1492 remote_open, /* to_open */
1493 remote_close, /* to_close */
1494 NULL, /* to_attach */
1495 remote_detach, /* to_detach */
1496 remote_resume, /* to_resume */
1497 remote_wait, /* to_wait */
1498 remote_fetch_registers, /* to_fetch_registers */
1499 remote_store_registers, /* to_store_registers */
1500 remote_prepare_to_store, /* to_prepare_to_store */
1501 remote_xfer_memory, /* to_xfer_memory */
1502 remote_files_info, /* to_files_info */
1504 remote_insert_breakpoint, /* to_insert_breakpoint */
1505 remote_remove_breakpoint, /* to_remove_breakpoint */
1507 NULL, /* to_terminal_init */
1508 NULL, /* to_terminal_inferior */
1509 NULL, /* to_terminal_ours_for_output */
1510 NULL, /* to_terminal_ours */
1511 NULL, /* to_terminal_info */
1512 remote_kill, /* to_kill */
1513 hppro_load, /* to_load */
1514 NULL, /* to_lookup_symbol */
1515 NULL, /* to_create_inferior */
1516 remote_mourn, /* to_mourn_inferior */
1518 0, /* to_notice_signals */
1519 0, /* to_thread_alive */
1521 process_stratum, /* to_stratum */
1523 1, /* to_has_all_memory */
1524 1, /* to_has_memory */
1525 1, /* to_has_stack */
1526 1, /* to_has_registers */
1527 1, /* to_has_execution */
1528 NULL, /* sections */
1529 NULL, /* sections_end */
1530 OPS_MAGIC /* to_magic */
1534 _initialize_remote_hppro ()
1536 struct cmd_list_element *c;
1537 add_target (&remote_hppro_ops);
1539 /* this sets the type of download protocol */
1540 c = add_set_cmd ("loadtype", no_class, var_string, (char *)&loadtype_str,
1541 "Set the type of the remote load protocol.\n", &setlist);
1542 c->function.sfunc = set_loadtype_command;
1543 add_show_from_set (c, &showlist);
1544 loadtype_str = savestring ("generic", 8);
1546 /* this adds a command to boot the board */
1547 add_com ("boot", class_support, boot_board,
1548 "Boot the damn target board.\n");
1552 set_loadtype_command (ignore, from_tty, c)
1555 struct cmd_list_element *c;
1557 loadtype_str = savestring (*(char **) c->var, strlen (*(char **) c->var));