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., 675 Mass Ave, Cambridge, MA 02139, 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 Most values are encoded in ascii hex digits. Signal numbers are according
42 to the numbering in target.h.
46 set thread Hct... Set thread for subsequent operations.
47 c = 'c' for thread used in step and
48 continue; t... can be -1 for all
50 c = 'g' for thread used in other
51 operations. If zero, pick a thread,
57 reply XX....X Each byte of register data
58 is described by two hex digits.
59 Registers are in the internal order
60 for GDB, and the bytes in a register
61 are in the same order the machine uses.
64 write regs GXX..XX Each byte of register data
65 is described by two hex digits.
69 write reg Pn...=r... Write register n... with value r...,
70 which contains two hex digits for each
71 byte in the register (target byte
75 (not supported by all stubs).
77 read mem mAA..AA,LLLL AA..AA is address, LLLL is length.
78 reply XX..XX XX..XX is mem contents
79 Can be fewer bytes than requested
80 if able to read only part of the data.
83 write mem MAA..AA,LLLL:XX..XX
85 LLLL is number of bytes,
88 ENN for an error (this includes the case
89 where only part of the data was
92 continue cAA..AA AA..AA is address to resume
94 resume at same address.
96 step sAA..AA AA..AA is address to resume
98 resume at same address.
100 continue with Csig;AA Continue with signal sig (hex signal
103 step with Ssig;AA Like 'C' but step not continue.
106 last signal ? Reply the current reason for stopping.
107 This is the same reply as is generated
108 for step or cont : SAA where AA is the
111 There is no immediate reply to step or cont.
112 The reply comes when the machine stops.
113 It is SAA AA is the signal number.
115 or... TAAn...:r...;n...:r...;n...:r...;
117 n... = register number (hex)
118 r... = register contents
120 r... = thread process ID. This is
122 n... = other string not starting
123 with valid hex digit.
124 gdb should ignore this n,r pair
125 and go on to the next. This way
126 we can extend the protocol.
127 or... WAA The process exited, and AA is
128 the exit status. This is only
129 applicable for certains sorts of
131 or... XAA The process terminated with signal
133 or... Otext Send text to stdout. This can happen
134 at any time while the program is
135 running and the debugger should
136 continue to wait for 'W', 'T', etc.
140 toggle debug d toggle debug flag (see 386 & 68k stubs)
141 reset r reset -- see sparc stub.
142 reserved <other> On other requests, the stub should
143 ignore the request and send an empty
144 response ($#<checksum>). This way
145 we can extend the protocol and GDB
146 can tell whether the stub it is
147 talking to uses the old or the new.
148 search tAA:PP,MM Search backwards starting at address
149 AA for a match with pattern PP and
150 mask MM. PP and MM are 4 bytes.
151 Not supported by all stubs.
153 general query qXXXX Request info about XXXX.
154 general set QXXXX=yyyy Set value of XXXX to yyyy.
155 query sect offs qOffsets Get section offsets. Reply is
156 Text=xxx;Data=yyy;Bss=zzz
158 Responses can be run-length encoded to save space. A '*' means that
159 the next character is an ASCII encoding giving a repeat count which
160 stands for that many repititions of the character preceding the '*'.
161 The encoding is n+29, yielding a printable character where n >=3
162 (which is where rle starts to win). Don't use an n > 126.
165 "0* " means the same as "0000". */
171 #include "inferior.h"
176 #include "terminal.h"
178 #include "objfiles.h"
179 #include "gdb-stabs.h"
184 #include <sys/types.h>
190 /* Prototypes for local functions */
193 remote_write_bytes PARAMS ((CORE_ADDR memaddr, unsigned char *myaddr, int len));
196 remote_read_bytes PARAMS ((CORE_ADDR memaddr, unsigned char *myaddr, int len));
199 remote_files_info PARAMS ((struct target_ops *ignore));
202 remote_xfer_memory PARAMS ((CORE_ADDR memaddr, char *myaddr, int len,
203 int should_write, struct target_ops *target));
206 remote_prepare_to_store PARAMS ((void));
209 remote_fetch_registers PARAMS ((int regno));
212 remote_resume PARAMS ((int pid, int step, enum target_signal siggnal));
215 remote_start_remote PARAMS ((char *dummy));
218 remote_open PARAMS ((char *name, int from_tty));
221 remote_close PARAMS ((int quitting));
224 remote_store_registers PARAMS ((int regno));
227 getpkt PARAMS ((char *buf, int forever));
230 putpkt PARAMS ((char *buf));
233 remote_send PARAMS ((char *buf));
236 readchar PARAMS ((int timeout));
238 static int remote_wait PARAMS ((int pid, struct target_waitstatus *status));
241 tohex PARAMS ((int nib));
244 fromhex PARAMS ((int a));
247 remote_detach PARAMS ((char *args, int from_tty));
250 remote_interrupt PARAMS ((int signo));
253 remote_interrupt_twice PARAMS ((int signo));
256 interrupt_query PARAMS ((void));
258 extern struct target_ops remote_ops; /* Forward decl */
260 /* This was 5 seconds, which is a long time to sit and wait.
261 Unless this is going though some terminal server or multiplexer or
262 other form of hairy serial connection, I would think 2 seconds would
264 static int remote_timeout = 2;
270 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
271 remote_open knows that we don't have a file open when the program
273 serial_t remote_desc = NULL;
275 /* Having this larger than 400 causes us to be incompatible with m68k-stub.c
276 and i386-stub.c. Normally, no one would notice because it only matters
277 for writing large chunks of memory (e.g. in downloads). Also, this needs
278 to be more than 400 if required to hold the registers (see below, where
279 we round it up based on REGISTER_BYTES). */
282 /* Maximum number of bytes to read/write at once. The value here
283 is chosen to fill up a packet (the headers account for the 32). */
284 #define MAXBUFBYTES ((PBUFSIZ-32)/2)
286 /* Round up PBUFSIZ to hold all the registers, at least. */
287 /* The blank line after the #if seems to be required to work around a
288 bug in HP's PA compiler. */
289 #if REGISTER_BYTES > MAXBUFBYTES
292 #define PBUFSIZ (REGISTER_BYTES * 2 + 32)
295 /* Should we try the 'P' request? If this is set to one when the stub
296 doesn't support 'P', the only consequence is some unnecessary traffic. */
297 static int stub_supports_P = 1;
300 /* These are the threads which we last sent to the remote system. -1 for all
301 or -2 for not sent yet. */
311 int state = gen ? general_thread : cont_thread;
315 buf[1] = gen ? 'g' : 'c';
322 sprintf (&buf[2], "-%x", -th);
324 sprintf (&buf[2], "%x", th);
333 /* Clean up connection to a remote debugger. */
337 remote_close (quitting)
341 SERIAL_CLOSE (remote_desc);
345 /* Query the remote side for the text, data and bss offsets. */
352 CORE_ADDR text_addr, data_addr, bss_addr;
353 struct section_offsets *offs;
359 if (buf[0] == '\000')
360 return; /* Return silently. Stub doesn't support this
364 warning ("Remote failure reply: %s", buf);
368 nvals = sscanf (buf, "Text=%lx;Data=%lx;Bss=%lx", &text_addr, &data_addr,
371 error ("Malformed response to offset query, %s", buf);
373 if (symfile_objfile == NULL)
376 offs = (struct section_offsets *) alloca (sizeof (struct section_offsets)
377 + symfile_objfile->num_sections
378 * sizeof (offs->offsets));
379 memcpy (offs, symfile_objfile->section_offsets,
380 sizeof (struct section_offsets)
381 + symfile_objfile->num_sections
382 * sizeof (offs->offsets));
384 /* FIXME: This code assumes gdb-stabs.h is being used; it's broken
385 for xcoff, dwarf, sdb-coff, etc. But there is no simple
386 canonical representation for this stuff. (Just what does "text"
387 as seen by the stub mean, anyway? I think it means all sections
388 with SEC_CODE set, but we currently have no way to deal with that). */
390 ANOFFSET (offs, SECT_OFF_TEXT) = text_addr;
392 /* This is a temporary kludge to force data and bss to use the same offsets
393 because that's what nlmconv does now. The real solution requires changes
394 to the stub and remote.c that I don't have time to do right now. */
396 ANOFFSET (offs, SECT_OFF_DATA) = data_addr;
397 ANOFFSET (offs, SECT_OFF_BSS) = data_addr;
399 objfile_relocate (symfile_objfile, offs);
402 /* Stub for catch_errors. */
405 remote_start_remote (dummy)
408 immediate_quit = 1; /* Allow user to interrupt it */
410 /* Ack any packet which the remote side has already sent. */
412 SERIAL_WRITE (remote_desc, "+", 1);
414 /* Let the stub know that we want it to return the thread. */
417 get_offsets (); /* Get text, data & bss offsets */
419 putpkt ("?"); /* initiate a query from remote machine */
422 start_remote (); /* Initialize gdb process mechanisms */
427 /* Open a connection to a remote debugger.
428 NAME is the filename used for communication. */
430 static DCACHE *remote_dcache;
433 remote_open (name, from_tty)
439 "To open a remote debug connection, you need to specify what serial\n\
440 device is attached to the remote system (e.g. /dev/ttya).");
442 target_preopen (from_tty);
444 unpush_target (&remote_ops);
446 remote_dcache = dcache_init (remote_read_bytes, remote_write_bytes);
448 remote_desc = SERIAL_OPEN (name);
450 perror_with_name (name);
454 if (SERIAL_SETBAUDRATE (remote_desc, baud_rate))
456 SERIAL_CLOSE (remote_desc);
457 perror_with_name (name);
461 SERIAL_RAW (remote_desc);
463 /* If there is something sitting in the buffer we might take it as a
464 response to a command, which would be bad. */
465 SERIAL_FLUSH_INPUT (remote_desc);
469 puts_filtered ("Remote debugging using ");
470 puts_filtered (name);
471 puts_filtered ("\n");
473 push_target (&remote_ops); /* Switch to using remote target now */
475 /* Start out by trying the 'P' request to set registers. We set this each
476 time that we open a new target so that if the user switches from one
477 stub to another, we can (if the target is closed and reopened) cope. */
483 /* Without this, some commands which require an active target (such as kill)
484 won't work. This variable serves (at least) double duty as both the pid
485 of the target process (if it has such), and as a flag indicating that a
486 target is active. These functions should be split out into seperate
487 variables, especially since GDB will someday have a notion of debugging
488 several processes. */
490 inferior_pid = 42000;
492 /* Start the remote connection; if error (0), discard this target.
493 In particular, if the user quits, be sure to discard it
494 (we'd be in an inconsistent state otherwise). */
495 if (!catch_errors (remote_start_remote, (char *)0,
496 "Couldn't establish connection to remote target\n", RETURN_MASK_ALL))
501 takes a program previously attached to and detaches it.
502 We better not have left any breakpoints
503 in the program or it'll die when it hits one.
504 Close the open connection to the remote debugger.
505 Use this when you want to detach and do something else
509 remote_detach (args, from_tty)
514 error ("Argument given to \"detach\" when remotely debugging.");
518 puts_filtered ("Ending remote debugging.\n");
521 /* Convert hex digit A to a number. */
527 if (a >= '0' && a <= '9')
529 else if (a >= 'a' && a <= 'f')
532 error ("Reply contains invalid hex digit %d", a);
535 /* Convert number NIB to a hex digit. */
547 /* Tell the remote machine to resume. */
549 static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
553 remote_resume (pid, step, siggnal)
555 enum target_signal siggnal;
560 set_thread (inferior_pid, 0);
564 dcache_flush (remote_dcache);
566 last_sent_signal = siggnal;
567 last_sent_step = step;
569 if (siggnal != TARGET_SIGNAL_0)
571 buf[0] = step ? 'S' : 'C';
572 buf[1] = tohex (((int)siggnal >> 4) & 0xf);
573 buf[2] = tohex ((int)siggnal & 0xf);
577 strcpy (buf, step ? "s": "c");
582 /* Send ^C to target to halt it. Target will respond, and send us a
586 remote_interrupt (signo)
589 /* If this doesn't work, try more severe steps. */
590 signal (signo, remote_interrupt_twice);
593 printf_unfiltered ("remote_interrupt called\n");
595 SERIAL_WRITE (remote_desc, "\003", 1); /* Send a ^C */
598 static void (*ofunc)();
600 /* The user typed ^C twice. */
602 remote_interrupt_twice (signo)
605 signal (signo, ofunc);
609 signal (signo, remote_interrupt);
612 /* Ask the user what to do when an interrupt is received. */
617 target_terminal_ours ();
619 if (query ("Interrupted while waiting for the program.\n\
620 Give up (and stop debugging it)? "))
622 target_mourn_inferior ();
623 return_to_top_level (RETURN_QUIT);
626 target_terminal_inferior ();
629 /* If nonzero, ignore the next kill. */
632 /* Wait until the remote machine stops, then return,
633 storing status in STATUS just as `wait' would.
634 Returns "pid" (though it's not clear what, if anything, that
635 means in the case of this target). */
638 remote_wait (pid, status)
640 struct target_waitstatus *status;
642 unsigned char buf[PBUFSIZ];
645 status->kind = TARGET_WAITKIND_EXITED;
646 status->value.integer = 0;
652 ofunc = (void (*)()) signal (SIGINT, remote_interrupt);
653 getpkt ((char *) buf, 1);
654 signal (SIGINT, ofunc);
658 case 'E': /* Error of some sort */
659 warning ("Remote failure reply: %s", buf);
661 case 'T': /* Status with PC, SP, FP, ... */
665 char regs[MAX_REGISTER_RAW_SIZE];
667 /* Expedited reply, containing Signal, {regno, reg} repeat */
668 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
670 n... = register number
671 r... = register contents
674 p = &buf[3]; /* after Txx */
680 regno = strtol (p, &p1, 16); /* Read the register number */
684 p1 = (unsigned char *) strchr (p, ':');
686 warning ("Malformed packet (missing colon): %s\n\
689 if (strncmp (p, "thread", p1 - p) == 0)
692 thread_num = strtol (++p1, &p, 16);
700 warning ("Malformed packet (missing colon): %s\n\
704 if (regno >= NUM_REGS)
705 warning ("Remote sent bad register number %d: %s\n\
709 for (i = 0; i < REGISTER_RAW_SIZE (regno); i++)
711 if (p[0] == 0 || p[1] == 0)
712 warning ("Remote reply is too short: %s", buf);
713 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
716 supply_register (regno, regs);
720 warning ("Remote register badly formatted: %s", buf);
724 case 'S': /* Old style status, just signal only */
725 status->kind = TARGET_WAITKIND_STOPPED;
726 status->value.sig = (enum target_signal)
727 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
730 case 'W': /* Target exited */
732 /* The remote process exited. */
733 status->kind = TARGET_WAITKIND_EXITED;
734 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
738 status->kind = TARGET_WAITKIND_SIGNALLED;
739 status->value.sig = (enum target_signal)
740 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
744 case 'O': /* Console output */
745 fputs_filtered ((char *)(buf + 1), gdb_stdout);
748 if (last_sent_signal != TARGET_SIGNAL_0)
750 /* Zero length reply means that we tried 'S' or 'C' and
751 the remote system doesn't support it. */
752 target_terminal_ours_for_output ();
754 ("Can't send signals to this remote system. %s not sent.\n",
755 target_signal_to_name (last_sent_signal));
756 last_sent_signal = TARGET_SIGNAL_0;
757 target_terminal_inferior ();
759 strcpy (buf, last_sent_step ? "s" : "c");
763 /* else fallthrough */
765 warning ("Invalid remote reply: %s", buf);
770 if (thread_num != -1)
772 /* Initial thread value can only be acquired via wait, so deal with
773 this marker which is used before the first thread value is
775 if (inferior_pid == 42000)
777 inferior_pid = thread_num;
778 add_thread (inferior_pid);
785 /* Number of bytes of registers this stub implements. */
786 static int register_bytes_found;
788 /* Read the remote registers into the block REGS. */
789 /* Currently we just read all the registers, so we don't use regno. */
792 remote_fetch_registers (regno)
798 char regs[REGISTER_BYTES];
800 set_thread (inferior_pid, 1);
805 /* Unimplemented registers read as all bits zero. */
806 memset (regs, 0, REGISTER_BYTES);
808 /* We can get out of synch in various cases. If the first character
809 in the buffer is not a hex character, assume that has happened
810 and try to fetch another packet to read. */
811 while ((buf[0] < '0' || buf[0] > '9')
812 && (buf[0] < 'a' || buf[0] > 'f'))
815 printf_unfiltered ("Bad register packet; fetching a new packet\n");
819 /* Reply describes registers byte by byte, each byte encoded as two
820 hex characters. Suck them all up, then supply them to the
821 register cacheing/storage mechanism. */
824 for (i = 0; i < REGISTER_BYTES; i++)
830 warning ("Remote reply is of odd length: %s", buf);
831 /* Don't change register_bytes_found in this case, and don't
832 print a second warning. */
835 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
839 if (i != register_bytes_found)
841 register_bytes_found = i;
842 #ifdef REGISTER_BYTES_OK
843 if (!REGISTER_BYTES_OK (i))
844 warning ("Remote reply is too short: %s", buf);
849 for (i = 0; i < NUM_REGS; i++)
850 supply_register (i, ®s[REGISTER_BYTE(i)]);
853 /* Prepare to store registers. Since we may send them all (using a
854 'G' request), we have to read out the ones we don't want to change
858 remote_prepare_to_store ()
860 /* Make sure the entire registers array is valid. */
861 read_register_bytes (0, (char *)NULL, REGISTER_BYTES);
864 /* Store register REGNO, or all registers if REGNO == -1, from the contents
865 of REGISTERS. FIXME: ignores errors. */
868 remote_store_registers (regno)
875 set_thread (inferior_pid, 1);
877 if (regno >= 0 && stub_supports_P)
879 /* Try storing a single register. */
882 sprintf (buf, "P%x=", regno);
883 p = buf + strlen (buf);
884 regp = ®isters[REGISTER_BYTE (regno)];
885 for (i = 0; i < REGISTER_RAW_SIZE (regno); ++i)
887 *p++ = tohex ((regp[i] >> 4) & 0xf);
888 *p++ = tohex (regp[i] & 0xf);
894 /* The stub understands the 'P' request. We are done. */
898 /* The stub does not support the 'P' request. Use 'G' instead,
899 and don't try using 'P' in the future (it will just waste our
906 /* Command describes registers byte by byte,
907 each byte encoded as two hex characters. */
910 /* remote_prepare_to_store insures that register_bytes_found gets set. */
911 for (i = 0; i < register_bytes_found; i++)
913 *p++ = tohex ((registers[i] >> 4) & 0xf);
914 *p++ = tohex (registers[i] & 0xf);
923 /* Use of the data cache is disabled because it loses for looking at
924 and changing hardware I/O ports and the like. Accepting `volatile'
925 would perhaps be one way to fix it, but a better way which would
926 win for more cases would be to use the executable file for the text
927 segment, like the `icache' code below but done cleanly (in some
928 target-independent place, perhaps in target_xfer_memory, perhaps
929 based on assigning each target a speed or perhaps by some simpler
932 /* Read a word from remote address ADDR and return it.
933 This goes through the data cache. */
936 remote_fetch_word (addr)
942 extern CORE_ADDR text_start, text_end;
944 if (addr >= text_start && addr < text_end)
947 target_read_memory (addr, &buffer, sizeof (int));
952 return dcache_fetch (remote_dcache, addr);
955 /* Write a word WORD into remote address ADDR.
956 This goes through the data cache. */
959 remote_store_word (addr, word)
963 dcache_poke (remote_dcache, addr, word);
967 /* Write memory data directly to the remote machine.
968 This does not inform the data cache; the data cache uses this.
969 MEMADDR is the address in the remote memory space.
970 MYADDR is the address of the buffer in our space.
971 LEN is the number of bytes.
973 Returns number of bytes transferred, or 0 for error. */
976 remote_write_bytes (memaddr, myaddr, len)
978 unsigned char *myaddr;
985 /* FIXME-32x64: Need a version of print_address_numeric which puts the
986 result in a buffer like sprintf. */
987 sprintf (buf, "M%lx,%x:", (unsigned long) memaddr, len);
989 /* We send target system values byte by byte, in increasing byte addresses,
990 each byte encoded as two hex characters. */
992 p = buf + strlen (buf);
993 for (i = 0; i < len; i++)
995 *p++ = tohex ((myaddr[i] >> 4) & 0xf);
996 *p++ = tohex (myaddr[i] & 0xf);
1005 /* There is no correspondance between what the remote protocol uses
1006 for errors and errno codes. We would like a cleaner way of
1007 representing errors (big enough to include errno codes, bfd_error
1008 codes, and others). But for now just return EIO. */
1015 /* Read memory data directly from the remote machine.
1016 This does not use the data cache; the data cache uses this.
1017 MEMADDR is the address in the remote memory space.
1018 MYADDR is the address of the buffer in our space.
1019 LEN is the number of bytes.
1021 Returns number of bytes transferred, or 0 for error. */
1024 remote_read_bytes (memaddr, myaddr, len)
1026 unsigned char *myaddr;
1033 if (len > PBUFSIZ / 2 - 1)
1036 /* FIXME-32x64: Need a version of print_address_numeric which puts the
1037 result in a buffer like sprintf. */
1038 sprintf (buf, "m%lx,%x", (unsigned long) memaddr, len);
1044 /* There is no correspondance between what the remote protocol uses
1045 for errors and errno codes. We would like a cleaner way of
1046 representing errors (big enough to include errno codes, bfd_error
1047 codes, and others). But for now just return EIO. */
1052 /* Reply describes memory byte by byte,
1053 each byte encoded as two hex characters. */
1056 for (i = 0; i < len; i++)
1058 if (p[0] == 0 || p[1] == 0)
1059 /* Reply is short. This means that we were able to read only part
1060 of what we wanted to. */
1062 myaddr[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
1068 /* Read or write LEN bytes from inferior memory at MEMADDR, transferring
1069 to or from debugger address MYADDR. Write to inferior if SHOULD_WRITE is
1070 nonzero. Returns length of data written or read; 0 for error. */
1074 remote_xfer_memory(memaddr, myaddr, len, should_write, target)
1079 struct target_ops *target; /* ignored */
1083 int total_xferred = 0;
1085 set_thread (inferior_pid, 1);
1089 if (len > MAXBUFBYTES)
1090 xfersize = MAXBUFBYTES;
1095 bytes_xferred = remote_write_bytes (memaddr,
1096 (unsigned char *)myaddr, xfersize);
1098 bytes_xferred = remote_read_bytes (memaddr,
1099 (unsigned char *)myaddr, xfersize);
1101 /* If we get an error, we are done xferring. */
1102 if (bytes_xferred == 0)
1105 memaddr += bytes_xferred;
1106 myaddr += bytes_xferred;
1107 len -= bytes_xferred;
1108 total_xferred += bytes_xferred;
1110 return total_xferred;
1114 /* Enable after 4.12. */
1117 remote_search (len, data, mask, startaddr, increment, lorange, hirange
1118 addr_found, data_found)
1122 CORE_ADDR startaddr;
1126 CORE_ADDR *addr_found;
1129 if (increment == -4 && len == 4)
1131 long mask_long, data_long;
1132 long data_found_long;
1133 CORE_ADDR addr_we_found;
1135 long returned_long[2];
1138 mask_long = extract_unsigned_integer (mask, len);
1139 data_long = extract_unsigned_integer (data, len);
1140 sprintf (buf, "t%x:%x,%x", startaddr, data_long, mask_long);
1145 /* The stub doesn't support the 't' request. We might want to
1146 remember this fact, but on the other hand the stub could be
1147 switched on us. Maybe we should remember it only until
1148 the next "target remote". */
1149 generic_search (len, data, mask, startaddr, increment, lorange,
1150 hirange, addr_found, data_found);
1155 /* There is no correspondance between what the remote protocol uses
1156 for errors and errno codes. We would like a cleaner way of
1157 representing errors (big enough to include errno codes, bfd_error
1158 codes, and others). But for now just use EIO. */
1159 memory_error (EIO, startaddr);
1162 while (*p != '\0' && *p != ',')
1163 addr_we_found = (addr_we_found << 4) + fromhex (*p++);
1165 error ("Protocol error: short return for search");
1167 data_found_long = 0;
1168 while (*p != '\0' && *p != ',')
1169 data_found_long = (data_found_long << 4) + fromhex (*p++);
1170 /* Ignore anything after this comma, for future extensions. */
1172 if (addr_we_found < lorange || addr_we_found >= hirange)
1178 *addr_found = addr_we_found;
1179 *data_found = store_unsigned_integer (data_we_found, len);
1182 generic_search (len, data, mask, startaddr, increment, lorange,
1183 hirange, addr_found, data_found);
1188 remote_files_info (ignore)
1189 struct target_ops *ignore;
1191 puts_filtered ("Debugging a target over a serial line.\n");
1194 /* Stuff for dealing with the packets which are part of this protocol.
1195 See comment at top of file for details. */
1197 /* Read a single character from the remote end, masking it down to 7 bits. */
1205 ch = SERIAL_READCHAR (remote_desc, timeout);
1210 error ("Remote connection closed");
1212 perror_with_name ("Remote communication error");
1213 case SERIAL_TIMEOUT:
1220 /* Send the command in BUF to the remote machine,
1221 and read the reply into BUF.
1222 Report an error if we get an error reply. */
1233 error ("Remote failure reply: %s", buf);
1236 /* Send a packet to the remote machine, with error checking.
1237 The data of the packet is in BUF. */
1244 unsigned char csum = 0;
1246 int cnt = strlen (buf);
1250 /* Copy the packet into buffer BUF2, encapsulating it
1251 and giving it a checksum. */
1253 if (cnt > sizeof(buf2) - 5) /* Prosanity check */
1259 for (i = 0; i < cnt; i++)
1265 *p++ = tohex ((csum >> 4) & 0xf);
1266 *p++ = tohex (csum & 0xf);
1268 /* Send it over and over until we get a positive ack. */
1272 int started_error_output = 0;
1277 printf_unfiltered ("Sending packet: %s...", buf2);
1278 gdb_flush(gdb_stdout);
1280 if (SERIAL_WRITE (remote_desc, buf2, p - buf2))
1281 perror_with_name ("putpkt: write failed");
1283 /* read until either a timeout occurs (-2) or '+' is read */
1286 ch = readchar (remote_timeout);
1293 case SERIAL_TIMEOUT:
1295 if (started_error_output)
1297 putc_unfiltered ('\n');
1298 started_error_output = 0;
1307 printf_unfiltered("Ack\n");
1309 case SERIAL_TIMEOUT:
1310 break; /* Retransmit buffer */
1313 char junkbuf[PBUFSIZ];
1315 /* It's probably an old response, and we're out of sync. Just
1316 gobble up the packet and ignore it. */
1317 getpkt (junkbuf, 0);
1318 continue; /* Now, go look for + */
1323 if (!started_error_output)
1325 started_error_output = 1;
1326 printf_unfiltered ("putpkt: Junk: ");
1328 putc_unfiltered (ch & 0177);
1332 break; /* Here to retransmit */
1336 /* This is wrong. If doing a long backtrace, the user should be
1337 able to get out next time we call QUIT, without anything as violent
1338 as interrupt_query. If we want to provide a way out of here
1339 without getting to the next QUIT, it should be based on hitting
1340 ^C twice as in remote_wait. */
1350 /* Come here after finding the start of the frame. Collect the rest into BUF,
1351 verifying the checksum, length, and handling run-length compression.
1352 Returns 0 on any error, 1 on success. */
1367 c = readchar (remote_timeout);
1371 case SERIAL_TIMEOUT:
1373 puts_filtered ("Timeout in mid-packet, retrying\n");
1377 puts_filtered ("Saw new packet start in middle of old one\n");
1378 return 0; /* Start a new packet, count retries */
1381 unsigned char pktcsum;
1385 pktcsum = fromhex (readchar (remote_timeout)) << 4;
1386 pktcsum |= fromhex (readchar (remote_timeout));
1388 if (csum == pktcsum)
1393 printf_filtered ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
1395 puts_filtered (buf);
1396 puts_filtered ("\n");
1400 case '*': /* Run length encoding */
1402 c = readchar (remote_timeout);
1404 c = c - ' ' + 3; /* Compute repeat count */
1407 if (c > 0 && c < 255 && bp + c - 1 < buf + PBUFSIZ - 1)
1409 memset (bp, *(bp - 1), c);
1415 printf_filtered ("Repeat count %d too large for buffer: ", c);
1416 puts_filtered (buf);
1417 puts_filtered ("\n");
1421 if (bp < buf + PBUFSIZ - 1)
1429 puts_filtered ("Remote packet too long: ");
1430 puts_filtered (buf);
1431 puts_filtered ("\n");
1438 /* Read a packet from the remote machine, with error checking,
1439 and store it in BUF. BUF is expected to be of size PBUFSIZ.
1440 If FOREVER, wait forever rather than timing out; this is used
1441 while the target is executing user code. */
1444 getpkt (buf, forever)
1457 timeout = remote_timeout;
1459 #define MAX_TRIES 10
1461 for (tries = 1; tries <= MAX_TRIES; tries++)
1463 /* This can loop forever if the remote side sends us characters
1464 continuously, but if it pauses, we'll get a zero from readchar
1465 because of timeout. Then we'll count that as a retry. */
1467 /* Note that we will only wait forever prior to the start of a packet.
1468 After that, we expect characters to arrive at a brisk pace. They
1469 should show up within remote_timeout intervals. */
1473 c = readchar (timeout);
1475 if (c == SERIAL_TIMEOUT)
1478 puts_filtered ("Timed out.\n");
1484 /* We've found the start of a packet, now collect the data. */
1486 val = read_frame (buf);
1491 fprintf_unfiltered (gdb_stderr, "Packet received: %s\n", buf);
1492 SERIAL_WRITE (remote_desc, "+", 1);
1496 /* Try the whole thing again. */
1498 SERIAL_WRITE (remote_desc, "-", 1);
1501 /* We have tried hard enough, and just can't receive the packet. Give up. */
1503 printf_unfiltered ("Ignoring packet error, continuing...\n");
1504 SERIAL_WRITE (remote_desc, "+", 1);
1510 /* For some mysterious reason, wait_for_inferior calls kill instead of
1511 mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */
1515 target_mourn_inferior ();
1519 /* Use catch_errors so the user can quit from gdb even when we aren't on
1520 speaking terms with the remote system. */
1521 catch_errors (putpkt, "k", "", RETURN_MASK_ERROR);
1523 /* Don't wait for it to die. I'm not really sure it matters whether
1524 we do or not. For the existing stubs, kill is a noop. */
1525 target_mourn_inferior ();
1531 unpush_target (&remote_ops);
1532 generic_mourn_inferior ();
1535 #ifdef REMOTE_BREAKPOINT
1537 /* On some machines, e.g. 68k, we may use a different breakpoint instruction
1538 than other targets. */
1539 static unsigned char break_insn[] = REMOTE_BREAKPOINT;
1541 /* Check that it fits in BREAKPOINT_MAX bytes. */
1542 static unsigned char check_break_insn_size[BREAKPOINT_MAX] = REMOTE_BREAKPOINT;
1544 #else /* No REMOTE_BREAKPOINT. */
1546 /* Same old breakpoint instruction. This code does nothing different
1547 than mem-break.c. */
1548 static unsigned char break_insn[] = BREAKPOINT;
1550 #endif /* No REMOTE_BREAKPOINT. */
1552 /* Insert a breakpoint on targets that don't have any better breakpoint
1553 support. We read the contents of the target location and stash it,
1554 then overwrite it with a breakpoint instruction. ADDR is the target
1555 location in the target machine. CONTENTS_CACHE is a pointer to
1556 memory allocated for saving the target contents. It is guaranteed
1557 by the caller to be long enough to save sizeof BREAKPOINT bytes (this
1558 is accomplished via BREAKPOINT_MAX). */
1561 remote_insert_breakpoint (addr, contents_cache)
1563 char *contents_cache;
1567 val = target_read_memory (addr, contents_cache, sizeof break_insn);
1570 val = target_write_memory (addr, (char *)break_insn, sizeof break_insn);
1576 remote_remove_breakpoint (addr, contents_cache)
1578 char *contents_cache;
1580 return target_write_memory (addr, contents_cache, sizeof break_insn);
1583 /* Define the target subroutine names */
1585 struct target_ops remote_ops = {
1586 "remote", /* to_shortname */
1587 "Remote serial target in gdb-specific protocol", /* to_longname */
1588 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
1589 Specify the serial device it is connected to (e.g. /dev/ttya).", /* to_doc */
1590 remote_open, /* to_open */
1591 remote_close, /* to_close */
1592 NULL, /* to_attach */
1593 remote_detach, /* to_detach */
1594 remote_resume, /* to_resume */
1595 remote_wait, /* to_wait */
1596 remote_fetch_registers, /* to_fetch_registers */
1597 remote_store_registers, /* to_store_registers */
1598 remote_prepare_to_store, /* to_prepare_to_store */
1599 remote_xfer_memory, /* to_xfer_memory */
1600 remote_files_info, /* to_files_info */
1602 remote_insert_breakpoint, /* to_insert_breakpoint */
1603 remote_remove_breakpoint, /* to_remove_breakpoint */
1605 NULL, /* to_terminal_init */
1606 NULL, /* to_terminal_inferior */
1607 NULL, /* to_terminal_ours_for_output */
1608 NULL, /* to_terminal_ours */
1609 NULL, /* to_terminal_info */
1610 remote_kill, /* to_kill */
1611 generic_load, /* to_load */
1612 NULL, /* to_lookup_symbol */
1613 NULL, /* to_create_inferior */
1614 remote_mourn, /* to_mourn_inferior */
1616 0, /* to_notice_signals */
1618 process_stratum, /* to_stratum */
1620 1, /* to_has_all_memory */
1621 1, /* to_has_memory */
1622 1, /* to_has_stack */
1623 1, /* to_has_registers */
1624 1, /* to_has_execution */
1625 NULL, /* sections */
1626 NULL, /* sections_end */
1627 OPS_MAGIC /* to_magic */
1631 _initialize_remote ()
1633 add_target (&remote_ops);