1 /* Memory-access and commands for inferior process, for GDB.
2 Copyright (C) 1988-1991 Free Software Foundation, Inc.
4 This file is part of GDB.
6 GDB 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 1, or (at your option)
11 GDB 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 GDB; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* Remote communication protocol.
21 All values are encoded in ascii hex digits.
26 reply XX....X Each byte of register data
27 is described by two hex digits.
28 Registers are in the internal order
29 for GDB, and the bytes in a register
30 are in the same order the machine uses.
33 write regs GXX..XX Each byte of register data
34 is described by two hex digits.
38 read mem mAA..AA,LLLL AA..AA is address, LLLL is length.
39 reply XX..XX XX..XX is mem contents
42 write mem MAA..AA,LLLL:XX..XX
44 LLLL is number of bytes,
49 cont cAA..AA AA..AA is address to resume
51 resume at same address.
53 step sAA..AA AA..AA is address to resume
55 resume at same address.
57 last signal ? Reply the current reason for stopping.
58 This is the same reply as is generated
59 for step or cont : SAA where AA is the
62 There is no immediate reply to step or cont.
63 The reply comes when the machine stops.
64 It is SAA AA is the "signal number"
81 #include <sys/types.h>
86 extern void add_syms_addr_command ();
87 extern struct value *call_function_by_hand();
88 extern void start_remote ();
90 extern struct target_ops remote_ops; /* Forward decl */
93 static int timeout = 5;
99 /* Descriptor for I/O to remote machine. Initialize it to -1 so that
100 remote_open knows that we don't have a file open when the program
102 int remote_desc = -1;
106 /* Maximum number of bytes to read/write at once. The value here
107 is chosen to fill up a packet (the headers account for the 32). */
108 #define MAXBUFBYTES ((PBUFSIZ-32)/2)
110 static void remote_send ();
111 static void putpkt ();
112 static void getpkt ();
114 static void dcache_flush ();
118 /* Called when SIGALRM signal sent due to alarm() timeout. */
124 printf ("remote_timer called\n");
130 /* Initialize remote connection */
137 /* Clean up connection to a remote debugger. */
141 remote_close (quitting)
144 if (remote_desc >= 0)
149 /* Open a connection to a remote debugger.
150 NAME is the filename used for communication. */
153 remote_open (name, from_tty)
161 "To open a remote debug connection, you need to specify what serial\n\
162 device is attached to the remote system (e.g. /dev/ttya).");
164 target_preopen (from_tty);
172 remote_desc = open (name, O_RDWR);
174 perror_with_name (name);
176 ioctl (remote_desc, TIOCGETP, &sg);
178 sg.c_cc[VMIN] = 0; /* read with timeout. */
179 sg.c_cc[VTIME] = timeout * 10;
180 sg.c_lflag &= ~(ICANON | ECHO);
184 ioctl (remote_desc, TIOCSETP, &sg);
187 printf ("Remote debugging using %s\n", name);
188 push_target (&remote_ops); /* Switch to using remote target now */
191 #ifndef NO_SIGINTERRUPT
192 /* Cause SIGALRM's to make reads fail. */
193 if (siginterrupt (SIGALRM, 1) != 0)
194 perror ("remote_open: error in siginterrupt");
197 /* Set up read timeout timer. */
198 if ((void (*)()) signal (SIGALRM, remote_timer) == (void (*)()) -1)
199 perror ("remote_open: error in signal");
202 /* Ack any packet which the remote side has already sent. */
203 write (remote_desc, "+", 1);
204 putpkt ("?"); /* initiate a query from remote machine */
206 start_remote (); /* Initialize gdb process mechanisms */
210 takes a program previously attached to and detaches it.
211 We better not have left any breakpoints
212 in the program or it'll die when it hits one.
213 Close the open connection to the remote debugger.
214 Use this when you want to detach and do something else
218 remote_detach (args, from_tty)
223 error ("Argument given to \"detach\" when remotely debugging.");
227 printf ("Ending remote debugging.\n");
230 /* Convert hex digit A to a number. */
236 if (a >= '0' && a <= '9')
238 else if (a >= 'a' && a <= 'f')
241 error ("Reply contains invalid hex digit");
245 /* Convert number NIB to a hex digit. */
257 /* Tell the remote machine to resume. */
260 remote_resume (step, siggnal)
266 error ("Can't send signals to a remote system.");
272 strcpy (buf, step ? "s": "c");
277 /* Wait until the remote machine stops, then return,
278 storing status in STATUS just as `wait' would.
279 Returns "pid" (though it's not clear what, if anything, that
280 means in the case of this target). */
286 unsigned char buf[PBUFSIZ];
288 WSETEXIT ((*status), 0);
291 error ("Remote failure reply: %s", buf);
293 error ("Invalid remote reply: %s", buf);
294 WSETSTOP ((*status), (((fromhex (buf[1])) << 4) + (fromhex (buf[2]))));
298 /* Read the remote registers into the block REGS. */
300 /* Currently we just read all the registers, so we don't use regno. */
303 remote_fetch_registers (regno)
309 char regs[REGISTER_BYTES];
314 /* Reply describes registers byte by byte, each byte encoded as two
315 hex characters. Suck them all up, then supply them to the
316 register cacheing/storage mechanism. */
319 for (i = 0; i < REGISTER_BYTES; i++)
321 if (p[0] == 0 || p[1] == 0)
322 error ("Remote reply is too short: %s", buf);
323 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
326 for (i = 0; i < NUM_REGS; i++)
327 supply_register (i, ®s[REGISTER_BYTE(i)]);
330 /* Prepare to store registers. Since we send them all, we have to
331 read out the ones we don't want to change first. */
334 remote_prepare_to_store ()
336 remote_fetch_registers (-1);
339 /* Store the remote registers from the contents of the block REGISTERS.
340 FIXME, eventually just store one register if that's all that is needed. */
344 remote_store_registers (regno)
353 /* Command describes registers byte by byte,
354 each byte encoded as two hex characters. */
357 for (i = 0; i < REGISTER_BYTES; i++)
359 *p++ = tohex ((registers[i] >> 4) & 0xf);
360 *p++ = tohex (registers[i] & 0xf);
369 /* Read a word from remote address ADDR and return it.
370 This goes through the data cache. */
373 remote_fetch_word (addr)
378 extern CORE_ADDR text_start, text_end;
380 if (addr >= text_start && addr < text_end)
383 xfer_core_file (addr, &buffer, sizeof (int));
387 return dcache_fetch (addr);
390 /* Write a word WORD into remote address ADDR.
391 This goes through the data cache. */
394 remote_store_word (addr, word)
398 dcache_poke (addr, word);
402 /* Write memory data directly to the remote machine.
403 This does not inform the data cache; the data cache uses this.
404 MEMADDR is the address in the remote memory space.
405 MYADDR is the address of the buffer in our space.
406 LEN is the number of bytes. */
409 remote_write_bytes (memaddr, myaddr, len)
418 if (len > PBUFSIZ / 2 - 20)
421 sprintf (buf, "M%x,%x:", memaddr, len);
423 /* Command describes registers byte by byte,
424 each byte encoded as two hex characters. */
426 p = buf + strlen (buf);
427 for (i = 0; i < len; i++)
429 *p++ = tohex ((myaddr[i] >> 4) & 0xf);
430 *p++ = tohex (myaddr[i] & 0xf);
437 /* Read memory data directly from the remote machine.
438 This does not use the data cache; the data cache uses this.
439 MEMADDR is the address in the remote memory space.
440 MYADDR is the address of the buffer in our space.
441 LEN is the number of bytes. */
444 remote_read_bytes (memaddr, myaddr, len)
453 if (len > PBUFSIZ / 2 - 1)
456 sprintf (buf, "m%x,%x", memaddr, len);
459 /* Reply describes registers byte by byte,
460 each byte encoded as two hex characters. */
463 for (i = 0; i < len; i++)
465 if (p[0] == 0 || p[1] == 0)
466 error ("Remote reply is too short: %s", buf);
467 myaddr[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
472 /* Read or write LEN bytes from inferior memory at MEMADDR, transferring
473 to or from debugger address MYADDR. Write to inferior if SHOULD_WRITE is
474 nonzero. Returns length of data written or read; 0 for error. */
477 remote_xfer_inferior_memory(memaddr, myaddr, len, should_write)
487 if (len > MAXBUFBYTES)
488 xfersize = MAXBUFBYTES;
493 remote_write_bytes(memaddr, myaddr, xfersize);
495 remote_read_bytes (memaddr, myaddr, xfersize);
500 return origlen; /* no error possible */
506 printf ("remote files info missing here. FIXME.\n");
511 A debug packet whose contents are <data>
512 is encapsulated for transmission in the form:
514 $ <data> # CSUM1 CSUM2
516 <data> must be ASCII alphanumeric and cannot include characters
519 CSUM1 and CSUM2 are ascii hex representation of an 8-bit
520 checksum of <data>, the most significant nibble is sent first.
521 the hex digits 0-9,a-f are used.
523 Receiver responds with:
525 + - if CSUM is correct and ready for next packet
526 - - if CSUM is incorrect
537 /* termio does the timeout for us. */
538 read (remote_desc, &buf, 1);
541 read (remote_desc, &buf, 1);
548 /* Send the command in BUF to the remote machine,
549 and read the reply into BUF.
550 Report an error if we get an error reply. */
561 error ("Remote failure reply: %s", buf);
564 /* Send a packet to the remote machine, with error checking.
565 The data of the packet is in BUF. */
572 unsigned char csum = 0;
574 int cnt = strlen (buf);
578 /* Copy the packet into buffer BUF2, encapsulating it
579 and giving it a checksum. */
584 for (i = 0; i < cnt; i++)
590 *p++ = tohex ((csum >> 4) & 0xf);
591 *p++ = tohex (csum & 0xf);
593 /* Send it over and over until we get a positive ack. */
599 printf ("Sending packet: %s (%s)\n", buf2, buf);
601 write (remote_desc, buf2, p - buf2);
603 /* read until either a timeout occurs (\0) or '+' is read */
606 } while ((ch != '+') && (ch != '\0'));
610 /* Read a packet from the remote machine, with error checking,
611 and store it in BUF. */
620 unsigned char c1, c2;
623 /* Sorry, this will cause all hell to break loose, i.e. we'll end
624 up in the command loop with an inferior, but (at least if this
625 happens in remote_wait or some such place) without a current_frame,
626 having set up prev_* in wait_for_inferior, etc.
628 If it is necessary to have such an "emergency exit", seems like
629 the only plausible thing to do is to say the inferior died, and
630 make the user reattach if they want to. Perhaps with a prompt
631 asking for confirmation. */
633 /* allow immediate quit while reading from device, it could be hung */
639 /* Force csum to be zero here because of possible error retry. */
642 while ((c = readchar()) != '$');
655 c1 = fromhex (readchar ());
656 c2 = fromhex (readchar ());
657 if ((csum & 0xff) == (c1 << 4) + c2)
659 printf ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s\n",
660 (c1 << 4) + c2, csum & 0xff, buf);
661 write (remote_desc, "-", 1);
668 write (remote_desc, "+", 1);
671 fprintf (stderr,"Packet received :%s\n", buf);
674 /* The data cache leads to incorrect results because it doesn't know about
675 volatile variables, thus making it impossible to debug functions which
676 use hardware registers. Therefore it is #if 0'd out. Effect on
677 performance is some, for backtraces of functions with a few
678 arguments each. For functions with many arguments, the stack
679 frames don't fit in the cache blocks, which makes the cache less
680 helpful. Disabling the cache is a big performance win for fetching
681 large structures, because the cache code fetched data in 16-byte
684 /* The data cache records all the data read from the remote machine
685 since the last time it stopped.
687 Each cache block holds 16 bytes of data
688 starting at a multiple-of-16 address. */
690 #define DCACHE_SIZE 64 /* Number of cache blocks */
692 struct dcache_block {
693 struct dcache_block *next, *last;
694 unsigned int addr; /* Address for which data is recorded. */
698 struct dcache_block dcache_free, dcache_valid;
700 /* Free all the data cache blocks, thus discarding all cached data. */
705 register struct dcache_block *db;
707 while ((db = dcache_valid.next) != &dcache_valid)
710 insque (db, &dcache_free);
715 * If addr is present in the dcache, return the address of the block
719 struct dcache_block *
722 register struct dcache_block *db;
727 /* Search all cache blocks for one that is at this address. */
728 db = dcache_valid.next;
729 while (db != &dcache_valid)
731 if ((addr & 0xfffffff0) == db->addr)
738 /* Return the int data at address ADDR in dcache block DC. */
741 dcache_value (db, addr)
742 struct dcache_block *db;
747 return (db->data[(addr>>2)&3]);
750 /* Get a free cache block, put it on the valid list,
751 and return its address. The caller should store into the block
752 the address and data that it describes. */
754 struct dcache_block *
757 register struct dcache_block *db;
759 if ((db = dcache_free.next) == &dcache_free)
760 /* If we can't get one from the free list, take last valid */
761 db = dcache_valid.last;
764 insque (db, &dcache_valid);
768 /* Return the contents of the word at address ADDR in the remote machine,
769 using the data cache. */
775 register struct dcache_block *db;
777 db = dcache_hit (addr);
780 db = dcache_alloc ();
781 remote_read_bytes (addr & ~0xf, db->data, 16);
782 db->addr = addr & ~0xf;
784 return (dcache_value (db, addr));
787 /* Write the word at ADDR both in the data cache and in the remote machine. */
789 dcache_poke (addr, data)
793 register struct dcache_block *db;
795 /* First make sure the word is IN the cache. DB is its cache block. */
796 db = dcache_hit (addr);
799 db = dcache_alloc ();
800 remote_read_bytes (addr & ~0xf, db->data, 16);
801 db->addr = addr & ~0xf;
804 /* Modify the word in the cache. */
805 db->data[(addr>>2)&3] = data;
807 /* Send the changed word. */
808 remote_write_bytes (addr, &data, 4);
811 /* Initialize the data cache. */
816 register struct dcache_block *db;
818 db = (struct dcache_block *) xmalloc (sizeof (struct dcache_block) *
820 dcache_free.next = dcache_free.last = &dcache_free;
821 dcache_valid.next = dcache_valid.last = &dcache_valid;
822 for (i=0;i<DCACHE_SIZE;i++,db++)
823 insque (db, &dcache_free);
827 /* Define the target subroutine names */
829 struct target_ops remote_ops = {
830 "remote", "Remote serial target in gdb-specific protocol",
831 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
832 Specify the serial device it is connected to (e.g. /dev/ttya).",
833 remote_open, remote_close,
834 0, remote_detach, remote_resume, remote_wait, /* attach */
835 remote_fetch_registers, remote_store_registers,
836 remote_prepare_to_store, 0, 0, /* conv_from, conv_to */
837 remote_xfer_inferior_memory, remote_files_info,
838 0, 0, /* insert_breakpoint, remove_breakpoint, */
839 0, 0, 0, 0, 0, /* Terminal crud */
841 0, add_syms_addr_command, /* load */
842 call_function_by_hand,
843 0, /* lookup_symbol */
844 0, 0, /* create_inferior FIXME, mourn_inferior FIXME */
845 process_stratum, 0, /* next */
846 1, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
847 OPS_MAGIC, /* Always the last thing */
851 _initialize_remote ()
853 add_target (&remote_ops);