* corelow.c, exec.c, inftarg.c, m3-nat.c, op50-rom.c, procfs.c,
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
b543979c 1/* Remote target communications for serial-line targets in custom GDB protocol
94d4b713 2 Copyright 1988, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
bd5635a1
RP
3
4This file is part of GDB.
5
b543979c 6This program is free software; you can redistribute it and/or modify
bd5635a1 7it under the terms of the GNU General Public License as published by
b543979c
JG
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
bd5635a1 10
b543979c 11This program is distributed in the hope that it will be useful,
bd5635a1
RP
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
b543979c
JG
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
bd5635a1
RP
19
20/* Remote communication protocol.
e50ebec8
JK
21
22 A debug packet whose contents are <data>
23 is encapsulated for transmission in the form:
24
25 $ <data> # CSUM1 CSUM2
26
27 <data> must be ASCII alphanumeric and cannot include characters
0c993550
JK
28 '$' or '#'. If <data> starts with two characters followed by
29 ':', then the existing stubs interpret this as a sequence number.
e50ebec8
JK
30
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.
34
35 Receiver responds with:
36
37 + - if CSUM is correct and ready for next packet
38 - - if CSUM is incorrect
39
40 <data> is as follows:
bd5635a1
RP
41 All values are encoded in ascii hex digits.
42
43 Request Packet
44
45 read registers g
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.
51 or ENN for an error.
52
53 write regs GXX..XX Each byte of register data
54 is described by two hex digits.
55 reply OK for success
56 ENN for an error
57
0c993550 58 write reg Pn...=r... Write register n... with value r...,
4aa6fe10
JK
59 which contains two hex digits for each
60 byte in the register (target byte
61 order).
62 reply OK for success
63 ENN for an error
64 (not supported by all stubs).
65
bd5635a1
RP
66 read mem mAA..AA,LLLL AA..AA is address, LLLL is length.
67 reply XX..XX XX..XX is mem contents
d538b510
RP
68 Can be fewer bytes than requested
69 if able to read only part of the data.
bd5635a1
RP
70 or ENN NN is errno
71
72 write mem MAA..AA,LLLL:XX..XX
73 AA..AA is address,
74 LLLL is number of bytes,
75 XX..XX is data
76 reply OK for success
d538b510
RP
77 ENN for an error (this includes the case
78 where only part of the data was
79 written).
bd5635a1
RP
80
81 cont cAA..AA AA..AA is address to resume
82 If AA..AA is omitted,
83 resume at same address.
84
85 step sAA..AA AA..AA is address to resume
86 If AA..AA is omitted,
87 resume at same address.
88
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
92 signal number.
93
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"
97
e50ebec8
JK
98 or... TAAn...:r...;n:r...;n...:r...;
99 AA = signal number
100 n... = register number
101 r... = register contents
72bba93b 102 or... WAA The process exited, and AA is
758aeb93
ILT
103 the exit status. This is only
104 applicable for certains sorts of
105 targets.
d538b510
RP
106 kill request k
107
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.
72bba93b 116 search tAA:PP,MM Search backwards starting at address
94d4b713
JK
117 AA for a match with pattern PP and
118 mask MM. PP and MM are 4 bytes.
119 Not supported by all stubs.
120
72bba93b
SG
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
754e5da2
SG
125 console output Otext Send text to stdout. Only comes from
126 remote target.
72bba93b 127
94d4b713 128 Responses can be run-length encoded to save space. A '*' means that
284f4ee9 129 the next character is an ASCII encoding giving a repeat count which
94d4b713 130 stands for that many repititions of the character preceding the '*'.
284f4ee9
SC
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.
133
134 So
135 "0* " means the same as "0000". */
bd5635a1 136
d747e0af 137#include "defs.h"
bd5635a1
RP
138#include <string.h>
139#include <fcntl.h>
bd5635a1
RP
140#include "frame.h"
141#include "inferior.h"
e50ebec8 142#include "bfd.h"
6b27ebe8 143#include "symfile.h"
bd5635a1
RP
144#include "target.h"
145#include "wait.h"
146#include "terminal.h"
8f86a4e4 147#include "gdbcmd.h"
758aeb93
ILT
148#include "objfiles.h"
149#include "gdb-stabs.h"
bd5635a1 150
d538b510
RP
151#include "dcache.h"
152
bd5635a1
RP
153#ifdef USG
154#include <sys/types.h>
155#endif
156
157#include <signal.h>
ebdb9ade 158#include "serial.h"
bd5635a1 159
b543979c
JG
160/* Prototypes for local functions */
161
d538b510
RP
162static int
163remote_write_bytes PARAMS ((CORE_ADDR memaddr, unsigned char *myaddr, int len));
b543979c 164
d538b510
RP
165static int
166remote_read_bytes PARAMS ((CORE_ADDR memaddr, unsigned char *myaddr, int len));
b543979c
JG
167
168static void
5af4f5f6 169remote_files_info PARAMS ((struct target_ops *ignore));
b543979c
JG
170
171static int
5af4f5f6
JK
172remote_xfer_memory PARAMS ((CORE_ADDR memaddr, char *myaddr, int len,
173 int should_write, struct target_ops *target));
b543979c
JG
174
175static void
176remote_prepare_to_store PARAMS ((void));
177
178static void
5af4f5f6 179remote_fetch_registers PARAMS ((int regno));
b543979c
JG
180
181static void
94d4b713 182remote_resume PARAMS ((int pid, int step, enum target_signal siggnal));
b543979c 183
7c622b41 184static int
5af4f5f6 185remote_start_remote PARAMS ((char *dummy));
7c622b41 186
b543979c 187static void
5af4f5f6 188remote_open PARAMS ((char *name, int from_tty));
b543979c
JG
189
190static void
5af4f5f6 191remote_close PARAMS ((int quitting));
b543979c
JG
192
193static void
5af4f5f6 194remote_store_registers PARAMS ((int regno));
b543979c
JG
195
196static void
5af4f5f6 197getpkt PARAMS ((char *buf, int forever));
b543979c
JG
198
199static void
5af4f5f6 200putpkt PARAMS ((char *buf));
b543979c
JG
201
202static void
5af4f5f6 203remote_send PARAMS ((char *buf));
b543979c
JG
204
205static int
754e5da2 206readchar PARAMS ((int timeout));
b543979c 207
94d4b713 208static int remote_wait PARAMS ((int pid, struct target_waitstatus *status));
b543979c
JG
209
210static int
5af4f5f6 211tohex PARAMS ((int nib));
b543979c
JG
212
213static int
5af4f5f6 214fromhex PARAMS ((int a));
b543979c
JG
215
216static void
5af4f5f6
JK
217remote_detach PARAMS ((char *args, int from_tty));
218
219static void
220remote_interrupt PARAMS ((int signo));
221
222static void
223remote_interrupt_twice PARAMS ((int signo));
b543979c 224
981a3309
SG
225static void
226interrupt_query PARAMS ((void));
227
bd5635a1
RP
228extern struct target_ops remote_ops; /* Forward decl */
229
ebdb9ade
JK
230/* This was 5 seconds, which is a long time to sit and wait.
231 Unless this is going though some terminal server or multiplexer or
232 other form of hairy serial connection, I would think 2 seconds would
233 be plenty. */
754e5da2 234static int remote_timeout = 2;
bd5635a1
RP
235
236#if 0
237int icache;
238#endif
239
16e1d1d3 240/* Descriptor for I/O to remote machine. Initialize it to NULL so that
bd5635a1
RP
241 remote_open knows that we don't have a file open when the program
242 starts. */
ebdb9ade 243serial_t remote_desc = NULL;
bd5635a1 244
4d57c599
JK
245/* Having this larger than 400 causes us to be incompatible with m68k-stub.c
246 and i386-stub.c. Normally, no one would notice because it only matters
247 for writing large chunks of memory (e.g. in downloads). Also, this needs
248 to be more than 400 if required to hold the registers (see below, where
249 we round it up based on REGISTER_BYTES). */
250#define PBUFSIZ 400
bd5635a1
RP
251
252/* Maximum number of bytes to read/write at once. The value here
253 is chosen to fill up a packet (the headers account for the 32). */
254#define MAXBUFBYTES ((PBUFSIZ-32)/2)
255
b543979c 256/* Round up PBUFSIZ to hold all the registers, at least. */
2ddeed27
JK
257/* The blank line after the #if seems to be required to work around a
258 bug in HP's PA compiler. */
b543979c 259#if REGISTER_BYTES > MAXBUFBYTES
2ddeed27
JK
260
261#undef PBUFSIZ
b543979c 262#define PBUFSIZ (REGISTER_BYTES * 2 + 32)
bd5635a1 263#endif
4aa6fe10
JK
264
265/* Should we try the 'P' request? If this is set to one when the stub
266 doesn't support 'P', the only consequence is some unnecessary traffic. */
267static int stub_supports_P = 1;
268
bd5635a1 269\f
bd5635a1
RP
270/* Clean up connection to a remote debugger. */
271
e1ce8aa5 272/* ARGSUSED */
b543979c 273static void
bd5635a1
RP
274remote_close (quitting)
275 int quitting;
276{
ebdb9ade
JK
277 if (remote_desc)
278 SERIAL_CLOSE (remote_desc);
279 remote_desc = NULL;
b543979c
JG
280}
281
72bba93b
SG
282/* Query the remote side for the text, data and bss offsets. */
283
284static void
285get_offsets ()
286{
1c95d7ab 287 unsigned char buf[PBUFSIZ];
72bba93b
SG
288 int nvals;
289 CORE_ADDR text_addr, data_addr, bss_addr;
290 struct section_offsets *offs;
291
292 putpkt ("qOffsets");
293
1c95d7ab 294 getpkt (buf, 0);
72bba93b 295
1c95d7ab
JK
296 if (buf[0] == '\000')
297 return; /* Return silently. Stub doesn't support this
298 command. */
72bba93b
SG
299 if (buf[0] == 'E')
300 {
301 warning ("Remote failure reply: %s", buf);
302 return;
303 }
304
305 nvals = sscanf (buf, "Text=%lx;Data=%lx;Bss=%lx", &text_addr, &data_addr,
306 &bss_addr);
307 if (nvals != 3)
308 error ("Malformed response to offset query, %s", buf);
309
310 if (symfile_objfile == NULL)
311 return;
312
313 offs = (struct section_offsets *) alloca (sizeof (struct section_offsets)
314 + symfile_objfile->num_sections
315 * sizeof (offs->offsets));
316 memcpy (offs, symfile_objfile->section_offsets,
317 sizeof (struct section_offsets)
318 + symfile_objfile->num_sections
319 * sizeof (offs->offsets));
320
4aa6fe10
JK
321 /* FIXME: This code assumes gdb-stabs.h is being used; it's broken
322 for xcoff, dwarf, sdb-coff, etc. But there is no simple
323 canonical representation for this stuff. (Just what does "text"
324 as seen by the stub mean, anyway? I think it means all sections
325 with SEC_CODE set, but we currently have no way to deal with that). */
326
72bba93b 327 ANOFFSET (offs, SECT_OFF_TEXT) = text_addr;
1624c38f
SG
328
329 /* This is a temporary kludge to force data and bss to use the same offsets
330 because that's what nlmconv does now. The real solution requires changes
331 to the stub and remote.c that I don't have time to do right now. */
332
72bba93b 333 ANOFFSET (offs, SECT_OFF_DATA) = data_addr;
1624c38f 334 ANOFFSET (offs, SECT_OFF_BSS) = data_addr;
72bba93b
SG
335
336 objfile_relocate (symfile_objfile, offs);
337}
338
7c622b41
JG
339/* Stub for catch_errors. */
340
341static int
342remote_start_remote (dummy)
343 char *dummy;
344{
ac7a377f
JK
345 immediate_quit = 1; /* Allow user to interrupt it */
346
7c622b41 347 /* Ack any packet which the remote side has already sent. */
72bba93b
SG
348
349 SERIAL_WRITE (remote_desc, "+", 1);
350
351 get_offsets (); /* Get text, data & bss offsets */
352
7c622b41 353 putpkt ("?"); /* initiate a query from remote machine */
ac7a377f 354 immediate_quit = 0;
7c622b41
JG
355
356 start_remote (); /* Initialize gdb process mechanisms */
72bba93b 357
7c622b41
JG
358 return 1;
359}
360
bd5635a1
RP
361/* Open a connection to a remote debugger.
362 NAME is the filename used for communication. */
363
d538b510
RP
364static DCACHE *remote_dcache;
365
b543979c 366static void
bd5635a1
RP
367remote_open (name, from_tty)
368 char *name;
369 int from_tty;
370{
bd5635a1
RP
371 if (name == 0)
372 error (
373"To open a remote debug connection, you need to specify what serial\n\
374device is attached to the remote system (e.g. /dev/ttya).");
375
f2fc6e7a
JK
376 target_preopen (from_tty);
377
ebdb9ade 378 unpush_target (&remote_ops);
bd5635a1 379
d538b510 380 remote_dcache = dcache_init (remote_read_bytes, remote_write_bytes);
bd5635a1 381
ebdb9ade
JK
382 remote_desc = SERIAL_OPEN (name);
383 if (!remote_desc)
bd5635a1
RP
384 perror_with_name (name);
385
94d4b713 386 if (baud_rate != -1)
b543979c 387 {
94d4b713
JK
388 if (SERIAL_SETBAUDRATE (remote_desc, baud_rate))
389 {
390 SERIAL_CLOSE (remote_desc);
391 perror_with_name (name);
392 }
b543979c 393 }
ebdb9ade
JK
394
395 SERIAL_RAW (remote_desc);
bd5635a1 396
e15f2a54
JK
397 /* If there is something sitting in the buffer we might take it as a
398 response to a command, which would be bad. */
399 SERIAL_FLUSH_INPUT (remote_desc);
400
bd5635a1 401 if (from_tty)
7c622b41
JG
402 {
403 puts_filtered ("Remote debugging using ");
404 puts_filtered (name);
405 puts_filtered ("\n");
406 }
bd5635a1 407 push_target (&remote_ops); /* Switch to using remote target now */
bd5635a1 408
4aa6fe10
JK
409 /* Start out by trying the 'P' request to set registers. We set this each
410 time that we open a new target so that if the user switches from one
411 stub to another, we can (if the target is closed and reopened) cope. */
412 stub_supports_P = 1;
413
a1e0ba7a
SG
414 /* Without this, some commands which require an active target (such as kill)
415 won't work. This variable serves (at least) double duty as both the pid
416 of the target process (if it has such), and as a flag indicating that a
417 target is active. These functions should be split out into seperate
418 variables, especially since GDB will someday have a notion of debugging
419 several processes. */
420
4fb7359d
SG
421 inferior_pid = 42000;
422
423 /* Start the remote connection; if error (0), discard this target.
424 In particular, if the user quits, be sure to discard it
425 (we'd be in an inconsistent state otherwise). */
426 if (!catch_errors (remote_start_remote, (char *)0,
427 "Couldn't establish connection to remote target\n", RETURN_MASK_ALL))
428 pop_target();
bd5635a1
RP
429}
430
431/* remote_detach()
432 takes a program previously attached to and detaches it.
433 We better not have left any breakpoints
434 in the program or it'll die when it hits one.
435 Close the open connection to the remote debugger.
436 Use this when you want to detach and do something else
437 with your gdb. */
438
439static void
440remote_detach (args, from_tty)
441 char *args;
442 int from_tty;
443{
444 if (args)
445 error ("Argument given to \"detach\" when remotely debugging.");
446
447 pop_target ();
448 if (from_tty)
7c622b41 449 puts_filtered ("Ending remote debugging.\n");
bd5635a1
RP
450}
451
452/* Convert hex digit A to a number. */
453
454static int
455fromhex (a)
456 int a;
457{
458 if (a >= '0' && a <= '9')
459 return a - '0';
460 else if (a >= 'a' && a <= 'f')
461 return a - 'a' + 10;
462 else
463 error ("Reply contains invalid hex digit");
bd5635a1
RP
464}
465
466/* Convert number NIB to a hex digit. */
467
468static int
469tohex (nib)
470 int nib;
471{
472 if (nib < 10)
473 return '0'+nib;
474 else
475 return 'a'+nib-10;
476}
477\f
478/* Tell the remote machine to resume. */
479
b543979c 480static void
d538b510 481remote_resume (pid, step, siggnal)
94d4b713
JK
482 int pid, step;
483 enum target_signal siggnal;
bd5635a1
RP
484{
485 char buf[PBUFSIZ];
486
487 if (siggnal)
ebdb9ade 488 {
ebdb9ade 489 target_terminal_ours_for_output ();
94d4b713
JK
490 printf_filtered
491 ("Can't send signals to a remote system. %s not sent.\n",
492 target_signal_to_name (siggnal));
ebdb9ade
JK
493 target_terminal_inferior ();
494 }
bd5635a1 495
d538b510 496 dcache_flush (remote_dcache);
bd5635a1
RP
497
498 strcpy (buf, step ? "s": "c");
499
500 putpkt (buf);
501}
ebdb9ade 502\f
b543979c
JG
503/* Send ^C to target to halt it. Target will respond, and send us a
504 packet. */
505
5af4f5f6
JK
506static void
507remote_interrupt (signo)
e676a15f 508 int signo;
b543979c 509{
ebdb9ade
JK
510 /* If this doesn't work, try more severe steps. */
511 signal (signo, remote_interrupt_twice);
8f86a4e4 512
d0d8484a 513 if (remote_debug)
199b2450 514 printf_unfiltered ("remote_interrupt called\n");
8f86a4e4 515
ebdb9ade 516 SERIAL_WRITE (remote_desc, "\003", 1); /* Send a ^C */
b543979c
JG
517}
518
5af4f5f6
JK
519static void (*ofunc)();
520
ebdb9ade
JK
521/* The user typed ^C twice. */
522static void
523remote_interrupt_twice (signo)
524 int signo;
525{
526 signal (signo, ofunc);
527
981a3309
SG
528 interrupt_query ();
529
530 signal (signo, remote_interrupt);
531}
532
533/* Ask the user what to do when an interrupt is received. */
534
535static void
536interrupt_query ()
537{
ebdb9ade 538 target_terminal_ours ();
981a3309 539
6b27ebe8 540 if (query ("Interrupted while waiting for the program.\n\
ebdb9ade
JK
541Give up (and stop debugging it)? "))
542 {
543 target_mourn_inferior ();
e50ebec8 544 return_to_top_level (RETURN_QUIT);
ebdb9ade 545 }
981a3309
SG
546
547 target_terminal_inferior ();
ebdb9ade 548}
b543979c 549
bd5635a1 550/* Wait until the remote machine stops, then return,
e1ce8aa5
JK
551 storing status in STATUS just as `wait' would.
552 Returns "pid" (though it's not clear what, if anything, that
553 means in the case of this target). */
bd5635a1 554
b543979c 555static int
d0d8484a
SG
556remote_wait (pid, status)
557 int pid;
94d4b713 558 struct target_waitstatus *status;
bd5635a1
RP
559{
560 unsigned char buf[PBUFSIZ];
8f86a4e4 561
94d4b713
JK
562 status->kind = TARGET_WAITKIND_EXITED;
563 status->value.integer = 0;
b543979c 564
4f8a48e5 565 while (1)
8f86a4e4 566 {
4f8a48e5 567 unsigned char *p;
a03d4f8e 568
4f8a48e5
ILT
569 ofunc = (void (*)()) signal (SIGINT, remote_interrupt);
570 getpkt ((char *) buf, 1);
571 signal (SIGINT, ofunc);
4ecee2f9 572
754e5da2 573 switch (buf[0])
8f86a4e4 574 {
754e5da2
SG
575 case 'E': /* Error of some sort */
576 warning ("Remote failure reply: %s", buf);
577 continue;
578 case 'T': /* Status with PC, SP, FP, ... */
579 {
580 int i;
581 long regno;
582 char regs[MAX_REGISTER_RAW_SIZE];
a03d4f8e 583
754e5da2
SG
584 /* Expedited reply, containing Signal, {regno, reg} repeat */
585 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
586 ss = signal number
587 n... = register number
588 r... = register contents
589 */
5af4f5f6 590
754e5da2 591 p = &buf[3]; /* after Txx */
5af4f5f6 592
754e5da2
SG
593 while (*p)
594 {
595 unsigned char *p1;
5af4f5f6 596
754e5da2 597 regno = strtol (p, &p1, 16); /* Read the register number */
5af4f5f6 598
754e5da2
SG
599 if (p1 == p)
600 warning ("Remote sent badly formed register number: %s\nPacket: '%s'\n",
601 p1, buf);
4ecee2f9 602
754e5da2 603 p = p1;
4ecee2f9 604
754e5da2
SG
605 if (*p++ != ':')
606 warning ("Malformed packet (missing colon): %s\nPacket: '%s'\n",
607 p, buf);
a03d4f8e 608
754e5da2
SG
609 if (regno >= NUM_REGS)
610 warning ("Remote sent bad register number %d: %s\nPacket: '%s'\n",
611 regno, p, buf);
4f8a48e5 612
754e5da2
SG
613 for (i = 0; i < REGISTER_RAW_SIZE (regno); i++)
614 {
615 if (p[0] == 0 || p[1] == 0)
616 warning ("Remote reply is too short: %s", buf);
617 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
618 p += 2;
619 }
4f8a48e5 620
754e5da2
SG
621 if (*p++ != ';')
622 warning ("Remote register badly formatted: %s", buf);
623
624 supply_register (regno, regs);
625 }
626 }
627 /* fall through */
628 case 'S': /* Old style status, just signal only */
629 status->kind = TARGET_WAITKIND_STOPPED;
630 status->value.sig = (enum target_signal)
631 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
4f8a48e5 632
4fb7359d 633 return inferior_pid;
754e5da2
SG
634 case 'W': /* Target exited */
635 {
636 /* The remote process exited. */
637 status->kind = TARGET_WAITKIND_EXITED;
638 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
4fb7359d 639 return inferior_pid;
754e5da2
SG
640 }
641 case 'O': /* Console output */
642 fputs_filtered (buf + 1, gdb_stdout);
643 continue;
644 default:
645 warning ("Invalid remote reply: %s", buf);
646 continue;
4f8a48e5 647 }
758aeb93 648 }
a1e0ba7a 649 return inferior_pid;
bd5635a1
RP
650}
651
55fea07b
JK
652/* Number of bytes of registers this stub implements. */
653static int register_bytes_found;
654
bd5635a1 655/* Read the remote registers into the block REGS. */
e1ce8aa5
JK
656/* Currently we just read all the registers, so we don't use regno. */
657/* ARGSUSED */
b543979c 658static void
bd5635a1
RP
659remote_fetch_registers (regno)
660 int regno;
661{
662 char buf[PBUFSIZ];
663 int i;
664 char *p;
665 char regs[REGISTER_BYTES];
666
667 sprintf (buf, "g");
668 remote_send (buf);
669
55fea07b
JK
670 /* Unimplemented registers read as all bits zero. */
671 memset (regs, 0, REGISTER_BYTES);
672
981a3309
SG
673 /* We can get out of synch in various cases. If the first character
674 in the buffer is not a hex character, assume that has happened
675 and try to fetch another packet to read. */
676 while ((buf[0] < '0' || buf[0] > '9')
677 && (buf[0] < 'a' || buf[0] > 'f'))
678 {
d0d8484a 679 if (remote_debug)
199b2450 680 printf_unfiltered ("Bad register packet; fetching a new packet\n");
981a3309
SG
681 getpkt (buf, 0);
682 }
683
bd5635a1
RP
684 /* Reply describes registers byte by byte, each byte encoded as two
685 hex characters. Suck them all up, then supply them to the
686 register cacheing/storage mechanism. */
687
688 p = buf;
689 for (i = 0; i < REGISTER_BYTES; i++)
690 {
55fea07b
JK
691 if (p[0] == 0)
692 break;
693 if (p[1] == 0)
694 {
695 warning ("Remote reply is of odd length: %s", buf);
696 /* Don't change register_bytes_found in this case, and don't
697 print a second warning. */
698 goto supply_them;
699 }
bd5635a1
RP
700 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
701 p += 2;
702 }
55fea07b
JK
703
704 if (i != register_bytes_found)
705 {
706 register_bytes_found = i;
707#ifdef REGISTER_BYTES_OK
708 if (!REGISTER_BYTES_OK (i))
709 warning ("Remote reply is too short: %s", buf);
710#endif
711 }
712
713 supply_them:
bd5635a1
RP
714 for (i = 0; i < NUM_REGS; i++)
715 supply_register (i, &regs[REGISTER_BYTE(i)]);
bd5635a1
RP
716}
717
4aa6fe10
JK
718/* Prepare to store registers. Since we may send them all (using a
719 'G' request), we have to read out the ones we don't want to change
720 first. */
bd5635a1 721
b543979c 722static void
bd5635a1
RP
723remote_prepare_to_store ()
724{
34517ebc
JG
725 /* Make sure the entire registers array is valid. */
726 read_register_bytes (0, (char *)NULL, REGISTER_BYTES);
bd5635a1
RP
727}
728
4aa6fe10
JK
729/* Store register REGNO, or all registers if REGNO == -1, from the contents
730 of REGISTERS. FIXME: ignores errors. */
bd5635a1 731
b543979c 732static void
bd5635a1
RP
733remote_store_registers (regno)
734 int regno;
735{
736 char buf[PBUFSIZ];
737 int i;
738 char *p;
739
4aa6fe10
JK
740 if (regno >= 0 && stub_supports_P)
741 {
742 /* Try storing a single register. */
743 char *regp;
744
0c993550 745 sprintf (buf, "P%x=", regno);
4aa6fe10
JK
746 p = buf + strlen (buf);
747 regp = &registers[REGISTER_BYTE (regno)];
748 for (i = 0; i < REGISTER_RAW_SIZE (regno); ++i)
749 {
750 *p++ = tohex ((regp[i] >> 4) & 0xf);
751 *p++ = tohex (regp[i] & 0xf);
752 }
753 *p = '\0';
754 remote_send (buf);
755 if (buf[0] != '\0')
756 {
757 /* The stub understands the 'P' request. We are done. */
758 return;
759 }
760
761 /* The stub does not support the 'P' request. Use 'G' instead,
762 and don't try using 'P' in the future (it will just waste our
763 time). */
764 stub_supports_P = 0;
765 }
766
bd5635a1 767 buf[0] = 'G';
4aa6fe10 768
bd5635a1
RP
769 /* Command describes registers byte by byte,
770 each byte encoded as two hex characters. */
771
772 p = buf + 1;
55fea07b
JK
773 /* remote_prepare_to_store insures that register_bytes_found gets set. */
774 for (i = 0; i < register_bytes_found; i++)
bd5635a1
RP
775 {
776 *p++ = tohex ((registers[i] >> 4) & 0xf);
777 *p++ = tohex (registers[i] & 0xf);
778 }
779 *p = '\0';
780
781 remote_send (buf);
bd5635a1
RP
782}
783
b43e0347
JK
784#if 0
785
786/* Use of the data cache is disabled because it loses for looking at
787 and changing hardware I/O ports and the like. Accepting `volatile'
788 would perhaps be one way to fix it, but a better way which would
789 win for more cases would be to use the executable file for the text
790 segment, like the `icache' code below but done cleanly (in some
791 target-independent place, perhaps in target_xfer_memory, perhaps
792 based on assigning each target a speed or perhaps by some simpler
793 mechanism). */
794
bd5635a1
RP
795/* Read a word from remote address ADDR and return it.
796 This goes through the data cache. */
797
b43e0347 798static int
bd5635a1
RP
799remote_fetch_word (addr)
800 CORE_ADDR addr;
801{
d538b510 802#if 0
bd5635a1
RP
803 if (icache)
804 {
805 extern CORE_ADDR text_start, text_end;
806
807 if (addr >= text_start && addr < text_end)
808 {
809 int buffer;
810 xfer_core_file (addr, &buffer, sizeof (int));
811 return buffer;
812 }
813 }
d538b510
RP
814#endif
815 return dcache_fetch (remote_dcache, addr);
bd5635a1
RP
816}
817
818/* Write a word WORD into remote address ADDR.
819 This goes through the data cache. */
820
b43e0347 821static void
bd5635a1
RP
822remote_store_word (addr, word)
823 CORE_ADDR addr;
824 int word;
825{
d538b510 826 dcache_poke (remote_dcache, addr, word);
bd5635a1 827}
b43e0347 828#endif /* 0 */
bd5635a1
RP
829\f
830/* Write memory data directly to the remote machine.
831 This does not inform the data cache; the data cache uses this.
832 MEMADDR is the address in the remote memory space.
833 MYADDR is the address of the buffer in our space.
d538b510 834 LEN is the number of bytes.
bd5635a1 835
d538b510
RP
836 Returns number of bytes transferred, or 0 for error. */
837
838static int
bd5635a1
RP
839remote_write_bytes (memaddr, myaddr, len)
840 CORE_ADDR memaddr;
d538b510 841 unsigned char *myaddr;
bd5635a1
RP
842 int len;
843{
844 char buf[PBUFSIZ];
845 int i;
846 char *p;
847
d24c0599
JK
848 /* FIXME-32x64: Need a version of print_address_numeric which puts the
849 result in a buffer like sprintf. */
4aa6fe10 850 sprintf (buf, "M%lx,%x:", (unsigned long) memaddr, len);
bd5635a1 851
b543979c 852 /* We send target system values byte by byte, in increasing byte addresses,
bd5635a1
RP
853 each byte encoded as two hex characters. */
854
855 p = buf + strlen (buf);
856 for (i = 0; i < len; i++)
857 {
858 *p++ = tohex ((myaddr[i] >> 4) & 0xf);
859 *p++ = tohex (myaddr[i] & 0xf);
860 }
861 *p = '\0';
862
d538b510
RP
863 putpkt (buf);
864 getpkt (buf, 0);
865
866 if (buf[0] == 'E')
867 {
868 /* There is no correspondance between what the remote protocol uses
869 for errors and errno codes. We would like a cleaner way of
870 representing errors (big enough to include errno codes, bfd_error
871 codes, and others). But for now just return EIO. */
872 errno = EIO;
873 return 0;
874 }
875 return len;
bd5635a1
RP
876}
877
878/* Read memory data directly from the remote machine.
879 This does not use the data cache; the data cache uses this.
880 MEMADDR is the address in the remote memory space.
881 MYADDR is the address of the buffer in our space.
d538b510 882 LEN is the number of bytes.
bd5635a1 883
d538b510
RP
884 Returns number of bytes transferred, or 0 for error. */
885
886static int
bd5635a1
RP
887remote_read_bytes (memaddr, myaddr, len)
888 CORE_ADDR memaddr;
d538b510 889 unsigned char *myaddr;
bd5635a1
RP
890 int len;
891{
892 char buf[PBUFSIZ];
893 int i;
894 char *p;
895
896 if (len > PBUFSIZ / 2 - 1)
897 abort ();
898
d24c0599
JK
899 /* FIXME-32x64: Need a version of print_address_numeric which puts the
900 result in a buffer like sprintf. */
4aa6fe10 901 sprintf (buf, "m%lx,%x", (unsigned long) memaddr, len);
d538b510
RP
902 putpkt (buf);
903 getpkt (buf, 0);
904
905 if (buf[0] == 'E')
906 {
907 /* There is no correspondance between what the remote protocol uses
908 for errors and errno codes. We would like a cleaner way of
909 representing errors (big enough to include errno codes, bfd_error
910 codes, and others). But for now just return EIO. */
911 errno = EIO;
912 return 0;
913 }
bd5635a1 914
b543979c 915 /* Reply describes memory byte by byte,
bd5635a1
RP
916 each byte encoded as two hex characters. */
917
918 p = buf;
919 for (i = 0; i < len; i++)
920 {
921 if (p[0] == 0 || p[1] == 0)
d538b510
RP
922 /* Reply is short. This means that we were able to read only part
923 of what we wanted to. */
924 break;
bd5635a1
RP
925 myaddr[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
926 p += 2;
927 }
d538b510 928 return i;
bd5635a1
RP
929}
930\f
931/* Read or write LEN bytes from inferior memory at MEMADDR, transferring
e1ce8aa5 932 to or from debugger address MYADDR. Write to inferior if SHOULD_WRITE is
bd5635a1
RP
933 nonzero. Returns length of data written or read; 0 for error. */
934
b543979c
JG
935/* ARGSUSED */
936static int
937remote_xfer_memory(memaddr, myaddr, len, should_write, target)
bd5635a1
RP
938 CORE_ADDR memaddr;
939 char *myaddr;
940 int len;
e1ce8aa5 941 int should_write;
b543979c 942 struct target_ops *target; /* ignored */
bd5635a1 943{
bd5635a1 944 int xfersize;
d538b510
RP
945 int bytes_xferred;
946 int total_xferred = 0;
947
bd5635a1
RP
948 while (len > 0)
949 {
950 if (len > MAXBUFBYTES)
951 xfersize = MAXBUFBYTES;
952 else
953 xfersize = len;
954
e1ce8aa5 955 if (should_write)
94d4b713
JK
956 bytes_xferred = remote_write_bytes (memaddr,
957 (unsigned char *)myaddr, xfersize);
bd5635a1 958 else
94d4b713
JK
959 bytes_xferred = remote_read_bytes (memaddr,
960 (unsigned char *)myaddr, xfersize);
d538b510
RP
961
962 /* If we get an error, we are done xferring. */
963 if (bytes_xferred == 0)
964 break;
965
966 memaddr += bytes_xferred;
967 myaddr += bytes_xferred;
968 len -= bytes_xferred;
969 total_xferred += bytes_xferred;
bd5635a1 970 }
d538b510 971 return total_xferred;
bd5635a1
RP
972}
973
94d4b713
JK
974#if 0
975/* Enable after 4.12. */
976
977void
978remote_search (len, data, mask, startaddr, increment, lorange, hirange
979 addr_found, data_found)
980 int len;
981 char *data;
982 char *mask;
983 CORE_ADDR startaddr;
984 int increment;
985 CORE_ADDR lorange;
986 CORE_ADDR hirange;
987 CORE_ADDR *addr_found;
988 char *data_found;
989{
990 if (increment == -4 && len == 4)
991 {
992 long mask_long, data_long;
993 long data_found_long;
994 CORE_ADDR addr_we_found;
995 char buf[PBUFSIZ];
996 long returned_long[2];
997 char *p;
998
999 mask_long = extract_unsigned_integer (mask, len);
1000 data_long = extract_unsigned_integer (data, len);
1001 sprintf (buf, "t%x:%x,%x", startaddr, data_long, mask_long);
1002 putpkt (buf);
1003 getpkt (buf, 0);
1004 if (buf[0] == '\0')
1005 {
1006 /* The stub doesn't support the 't' request. We might want to
1007 remember this fact, but on the other hand the stub could be
1008 switched on us. Maybe we should remember it only until
1009 the next "target remote". */
1010 generic_search (len, data, mask, startaddr, increment, lorange,
1011 hirange, addr_found, data_found);
1012 return;
1013 }
1014
1015 if (buf[0] == 'E')
1016 /* There is no correspondance between what the remote protocol uses
1017 for errors and errno codes. We would like a cleaner way of
1018 representing errors (big enough to include errno codes, bfd_error
1019 codes, and others). But for now just use EIO. */
1020 memory_error (EIO, startaddr);
1021 p = buf;
1022 addr_we_found = 0;
1023 while (*p != '\0' && *p != ',')
1024 addr_we_found = (addr_we_found << 4) + fromhex (*p++);
1025 if (*p == '\0')
1026 error ("Protocol error: short return for search");
1027
1028 data_found_long = 0;
1029 while (*p != '\0' && *p != ',')
1030 data_found_long = (data_found_long << 4) + fromhex (*p++);
1031 /* Ignore anything after this comma, for future extensions. */
1032
1033 if (addr_we_found < lorange || addr_we_found >= hirange)
1034 {
1035 *addr_found = 0;
1036 return;
1037 }
1038
1039 *addr_found = addr_we_found;
1040 *data_found = store_unsigned_integer (data_we_found, len);
1041 return;
1042 }
1043 generic_search (len, data, mask, startaddr, increment, lorange,
1044 hirange, addr_found, data_found);
1045}
1046#endif /* 0 */
1047\f
b543979c 1048static void
8f86a4e4 1049remote_files_info (ignore)
5af4f5f6 1050 struct target_ops *ignore;
bd5635a1 1051{
7c622b41 1052 puts_filtered ("Debugging a target over a serial line.\n");
bd5635a1
RP
1053}
1054\f
e50ebec8
JK
1055/* Stuff for dealing with the packets which are part of this protocol.
1056 See comment at top of file for details. */
bd5635a1 1057
ebdb9ade 1058/* Read a single character from the remote end, masking it down to 7 bits. */
b543979c 1059
bd5635a1 1060static int
754e5da2
SG
1061readchar (timeout)
1062 int timeout;
bd5635a1 1063{
ebdb9ade 1064 int ch;
bd5635a1 1065
ebdb9ade 1066 ch = SERIAL_READCHAR (remote_desc, timeout);
fce7f2d9 1067
754e5da2
SG
1068 switch (ch)
1069 {
1070 case SERIAL_EOF:
1071 error ("Remote connection closed");
1072 case SERIAL_ERROR:
1073 perror_with_name ("Remote communication error");
1074 case SERIAL_TIMEOUT:
1075 return ch;
1076 default:
1077 return ch & 0x7f;
1078 }
bd5635a1
RP
1079}
1080
1081/* Send the command in BUF to the remote machine,
1082 and read the reply into BUF.
1083 Report an error if we get an error reply. */
1084
1085static void
1086remote_send (buf)
1087 char *buf;
1088{
1089
1090 putpkt (buf);
7c622b41 1091 getpkt (buf, 0);
bd5635a1
RP
1092
1093 if (buf[0] == 'E')
1094 error ("Remote failure reply: %s", buf);
1095}
1096
1097/* Send a packet to the remote machine, with error checking.
1098 The data of the packet is in BUF. */
1099
1100static void
1101putpkt (buf)
1102 char *buf;
1103{
1104 int i;
1105 unsigned char csum = 0;
b543979c 1106 char buf2[PBUFSIZ];
bd5635a1 1107 int cnt = strlen (buf);
ebdb9ade 1108 int ch;
bd5635a1
RP
1109 char *p;
1110
1111 /* Copy the packet into buffer BUF2, encapsulating it
1112 and giving it a checksum. */
1113
b543979c
JG
1114 if (cnt > sizeof(buf2) - 5) /* Prosanity check */
1115 abort();
1116
bd5635a1
RP
1117 p = buf2;
1118 *p++ = '$';
1119
1120 for (i = 0; i < cnt; i++)
1121 {
1122 csum += buf[i];
1123 *p++ = buf[i];
1124 }
1125 *p++ = '#';
1126 *p++ = tohex ((csum >> 4) & 0xf);
1127 *p++ = tohex (csum & 0xf);
1128
1129 /* Send it over and over until we get a positive ack. */
1130
6b27ebe8
JK
1131 while (1)
1132 {
1624c38f
SG
1133 int started_error_output = 0;
1134
d0d8484a 1135 if (remote_debug)
6b27ebe8
JK
1136 {
1137 *p = '\0';
1624c38f
SG
1138 printf_unfiltered ("Sending packet: %s...", buf2);
1139 gdb_flush(gdb_stdout);
6b27ebe8
JK
1140 }
1141 if (SERIAL_WRITE (remote_desc, buf2, p - buf2))
1142 perror_with_name ("putpkt: write failed");
1143
1144 /* read until either a timeout occurs (-2) or '+' is read */
1145 while (1)
1146 {
754e5da2 1147 ch = readchar (remote_timeout);
6b27ebe8 1148
1624c38f
SG
1149 if (remote_debug)
1150 {
1151 switch (ch)
1152 {
1153 case '+':
1154 case SERIAL_TIMEOUT:
1624c38f
SG
1155 case '$':
1156 if (started_error_output)
1157 {
1158 putc_unfiltered ('\n');
1159 started_error_output = 0;
1160 }
1161 }
1162 }
1163
6b27ebe8
JK
1164 switch (ch)
1165 {
1166 case '+':
d0d8484a 1167 if (remote_debug)
199b2450 1168 printf_unfiltered("Ack\n");
6b27ebe8
JK
1169 return;
1170 case SERIAL_TIMEOUT:
1171 break; /* Retransmit buffer */
1624c38f
SG
1172 case '$':
1173 {
1174 unsigned char junkbuf[PBUFSIZ];
1175
1176 /* It's probably an old response, and we're out of sync. Just
1177 gobble up the packet and ignore it. */
1178 getpkt (junkbuf, 0);
1179 continue; /* Now, go look for + */
1180 }
6b27ebe8 1181 default:
d0d8484a 1182 if (remote_debug)
1624c38f
SG
1183 {
1184 if (!started_error_output)
1185 {
1186 started_error_output = 1;
1187 printf_unfiltered ("putpkt: Junk: ");
1188 }
1189 putc_unfiltered (ch & 0177);
1190 }
6b27ebe8
JK
1191 continue;
1192 }
1193 break; /* Here to retransmit */
1194 }
981a3309 1195
94d4b713
JK
1196#if 0
1197 /* This is wrong. If doing a long backtrace, the user should be
1198 able to get out next time we call QUIT, without anything as violent
1199 as interrupt_query. If we want to provide a way out of here
1200 without getting to the next QUIT, it should be based on hitting
1201 ^C twice as in remote_wait. */
981a3309
SG
1202 if (quit_flag)
1203 {
1204 quit_flag = 0;
1205 interrupt_query ();
1206 }
94d4b713 1207#endif
6b27ebe8 1208 }
bd5635a1
RP
1209}
1210
754e5da2
SG
1211/* Come here after finding the start of the frame. Collect the rest into BUF,
1212 verifying the checksum, length, and handling run-length compression.
1213 Returns 0 on any error, 1 on success. */
1214
1215static int
1216read_frame (buf)
1217 char *buf;
1218{
1219 unsigned char csum;
1220 char *bp;
1221 int c;
1222
1223 csum = 0;
1224 bp = buf;
1225
1226 while (1)
1227 {
1228 c = readchar (remote_timeout);
1229
1230 switch (c)
1231 {
1232 case SERIAL_TIMEOUT:
1233 if (remote_debug)
1234 puts_filtered ("Timeout in mid-packet, retrying\n");
1235 return 0;
1236 case '$':
1237 if (remote_debug)
1238 puts_filtered ("Saw new packet start in middle of old one\n");
1239 return 0; /* Start a new packet, count retries */
1240 case '#':
1241 {
1242 unsigned char pktcsum;
1243
1244 *bp = '\000';
1245
205fc02b
SC
1246 pktcsum = fromhex (readchar (remote_timeout)) << 4;
1247 pktcsum |= fromhex (readchar (remote_timeout));
754e5da2
SG
1248
1249 if (csum == pktcsum)
1250 return 1;
1251
1252 printf_filtered ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
1253 pktcsum, csum);
1254 puts_filtered (buf);
1255 puts_filtered ("\n");
1256
1257 return 0;
1258 }
1259 case '*': /* Run length encoding */
284f4ee9 1260 csum += c;
754e5da2
SG
1261 c = readchar (remote_timeout);
1262 csum += c;
1263 c = c - ' ' + 3; /* Compute repeat count */
1264
1265 if (bp + c - 1 < buf + PBUFSIZ - 1)
1266 {
1267 memset (bp, *(bp - 1), c);
1268 bp += c;
1269 continue;
1270 }
1271
1272 *bp = '\0';
1273 printf_filtered ("Repeat count %d too large for buffer: ", c);
1274 puts_filtered (buf);
1275 puts_filtered ("\n");
754e5da2 1276 return 0;
284f4ee9 1277
754e5da2
SG
1278 default:
1279 if (bp < buf + PBUFSIZ - 1)
1280 {
1281 *bp++ = c;
1282 csum += c;
1283 continue;
1284 }
1285
1286 *bp = '\0';
1287 puts_filtered ("Remote packet too long: ");
1288 puts_filtered (buf);
1289 puts_filtered ("\n");
1290
1291 return 0;
1292 }
1293 }
1294}
1295
bd5635a1 1296/* Read a packet from the remote machine, with error checking,
7c622b41
JG
1297 and store it in BUF. BUF is expected to be of size PBUFSIZ.
1298 If FOREVER, wait forever rather than timing out; this is used
1299 while the target is executing user code. */
bd5635a1
RP
1300
1301static void
754e5da2
SG
1302getpkt (buf, forever)
1303 char *buf;
ebdb9ade 1304 int forever;
bd5635a1
RP
1305{
1306 char *bp;
754e5da2
SG
1307 int c;
1308 int tries;
1309 int timeout;
1310 int val;
94d4b713 1311
754e5da2
SG
1312 if (forever)
1313 timeout = -1;
1314 else
1315 timeout = remote_timeout;
bd5635a1 1316
754e5da2 1317#define MAX_TRIES 10
981a3309 1318
754e5da2
SG
1319 for (tries = 1; tries <= MAX_TRIES; tries++)
1320 {
7c622b41
JG
1321 /* This can loop forever if the remote side sends us characters
1322 continuously, but if it pauses, we'll get a zero from readchar
1323 because of timeout. Then we'll count that as a retry. */
6b27ebe8 1324
754e5da2
SG
1325 /* Note that we will only wait forever prior to the start of a packet.
1326 After that, we expect characters to arrive at a brisk pace. They
1327 should show up within remote_timeout intervals. */
6b27ebe8 1328
754e5da2 1329 do
6b27ebe8 1330 {
754e5da2 1331 c = readchar (timeout);
7c622b41 1332
ebdb9ade 1333 if (c == SERIAL_TIMEOUT)
7c622b41 1334 {
d0d8484a 1335 if (remote_debug)
754e5da2
SG
1336 puts_filtered ("Timed out.\n");
1337 goto retry;
7c622b41 1338 }
bd5635a1 1339 }
754e5da2 1340 while (c != '$');
bd5635a1 1341
754e5da2 1342 /* We've found the start of a packet, now collect the data. */
38094c60 1343
754e5da2
SG
1344 val = read_frame (buf);
1345
1346 if (val == 1)
38094c60 1347 {
754e5da2
SG
1348 if (remote_debug)
1349 fprintf_unfiltered (gdb_stderr, "Packet received: %s\n", buf);
1350 SERIAL_WRITE (remote_desc, "+", 1);
1351 return;
38094c60 1352 }
754e5da2
SG
1353
1354 /* Try the whole thing again. */
1355retry:
1356 SERIAL_WRITE (remote_desc, "-", 1);
bd5635a1
RP
1357 }
1358
754e5da2 1359 /* We have tried hard enough, and just can't receive the packet. Give up. */
7c622b41 1360
754e5da2 1361 printf_unfiltered ("Ignoring packet error, continuing...\n");
ebdb9ade 1362 SERIAL_WRITE (remote_desc, "+", 1);
bd5635a1
RP
1363}
1364\f
ebdb9ade
JK
1365static void
1366remote_kill ()
1367{
1368 putpkt ("k");
1369 /* Don't wait for it to die. I'm not really sure it matters whether
1370 we do or not. For the existing stubs, kill is a noop. */
1371 target_mourn_inferior ();
1372}
bd5635a1 1373
ebdb9ade
JK
1374static void
1375remote_mourn ()
1376{
1377 unpush_target (&remote_ops);
1378 generic_mourn_inferior ();
1379}
1380\f
5af4f5f6
JK
1381#ifdef REMOTE_BREAKPOINT
1382
1383/* On some machines, e.g. 68k, we may use a different breakpoint instruction
1384 than other targets. */
1385static unsigned char break_insn[] = REMOTE_BREAKPOINT;
1386
1387/* Check that it fits in BREAKPOINT_MAX bytes. */
1388static unsigned char check_break_insn_size[BREAKPOINT_MAX] = REMOTE_BREAKPOINT;
1389
1390#else /* No REMOTE_BREAKPOINT. */
1391
1392/* Same old breakpoint instruction. This code does nothing different
1393 than mem-break.c. */
1394static unsigned char break_insn[] = BREAKPOINT;
1395
1396#endif /* No REMOTE_BREAKPOINT. */
1397
1398/* Insert a breakpoint on targets that don't have any better breakpoint
1399 support. We read the contents of the target location and stash it,
1400 then overwrite it with a breakpoint instruction. ADDR is the target
1401 location in the target machine. CONTENTS_CACHE is a pointer to
1402 memory allocated for saving the target contents. It is guaranteed
1403 by the caller to be long enough to save sizeof BREAKPOINT bytes (this
1404 is accomplished via BREAKPOINT_MAX). */
1405
d538b510 1406static int
5af4f5f6
JK
1407remote_insert_breakpoint (addr, contents_cache)
1408 CORE_ADDR addr;
1409 char *contents_cache;
1410{
1411 int val;
1412
1413 val = target_read_memory (addr, contents_cache, sizeof break_insn);
1414
1415 if (val == 0)
1416 val = target_write_memory (addr, (char *)break_insn, sizeof break_insn);
1417
1418 return val;
1419}
1420
d538b510 1421static int
5af4f5f6
JK
1422remote_remove_breakpoint (addr, contents_cache)
1423 CORE_ADDR addr;
1424 char *contents_cache;
1425{
1426 return target_write_memory (addr, contents_cache, sizeof break_insn);
1427}
1428\f
bd5635a1
RP
1429/* Define the target subroutine names */
1430
1431struct target_ops remote_ops = {
b543979c
JG
1432 "remote", /* to_shortname */
1433 "Remote serial target in gdb-specific protocol", /* to_longname */
1434 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
1435Specify the serial device it is connected to (e.g. /dev/ttya).", /* to_doc */
1436 remote_open, /* to_open */
1437 remote_close, /* to_close */
1438 NULL, /* to_attach */
1439 remote_detach, /* to_detach */
1440 remote_resume, /* to_resume */
1441 remote_wait, /* to_wait */
1442 remote_fetch_registers, /* to_fetch_registers */
1443 remote_store_registers, /* to_store_registers */
1444 remote_prepare_to_store, /* to_prepare_to_store */
b543979c
JG
1445 remote_xfer_memory, /* to_xfer_memory */
1446 remote_files_info, /* to_files_info */
5af4f5f6
JK
1447
1448 remote_insert_breakpoint, /* to_insert_breakpoint */
1449 remote_remove_breakpoint, /* to_remove_breakpoint */
1450
b543979c
JG
1451 NULL, /* to_terminal_init */
1452 NULL, /* to_terminal_inferior */
1453 NULL, /* to_terminal_ours_for_output */
1454 NULL, /* to_terminal_ours */
1455 NULL, /* to_terminal_info */
ebdb9ade 1456 remote_kill, /* to_kill */
6b27ebe8 1457 generic_load, /* to_load */
b543979c
JG
1458 NULL, /* to_lookup_symbol */
1459 NULL, /* to_create_inferior */
ebdb9ade 1460 remote_mourn, /* to_mourn_inferior */
34517ebc 1461 0, /* to_can_run */
7c622b41 1462 0, /* to_notice_signals */
b543979c
JG
1463 process_stratum, /* to_stratum */
1464 NULL, /* to_next */
1465 1, /* to_has_all_memory */
1466 1, /* to_has_memory */
1467 1, /* to_has_stack */
1468 1, /* to_has_registers */
1469 1, /* to_has_execution */
1470 NULL, /* sections */
1471 NULL, /* sections_end */
1472 OPS_MAGIC /* to_magic */
bd5635a1
RP
1473};
1474
1475void
1476_initialize_remote ()
1477{
1478 add_target (&remote_ops);
976bb0be 1479}
This page took 0.264858 seconds and 4 git commands to generate.