0b36af1880fef11faf116d8732aed63a73f9d6e2
[deliverable/binutils-gdb.git] / gdb / remote-array.c
1 /* Remote debugging interface for Array Tech RAID controller..
2 Copyright 90, 91, 92, 93, 94, 1995 Free Software Foundation, Inc.
3 Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
4
5 This module talks to a debug monitor called 'MONITOR', which
6 We communicate with MONITOR via either a direct serial line, or a TCP
7 (or possibly TELNET) stream to a terminal multiplexor,
8 which in turn talks to the target board.
9
10 This file is part of GDB.
11
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
26
27 #include "defs.h"
28 #include "gdbcore.h"
29 #include "target.h"
30 #include "wait.h"
31 #ifdef ANSI_PROTOTYPES
32 #include <stdarg.h>
33 #else
34 #include <varargs.h>
35 #endif
36 #include <signal.h>
37 #include <sys/types.h>
38 #include "gdb_string.h"
39 #include "command.h"
40 #include "serial.h"
41 #include "monitor.h"
42 #include "remote-utils.h"
43
44 extern int baud_rate;
45
46 static const char hexchars[]="0123456789abcdef";
47 static char *hex2mem();
48
49 #define SREC_SIZE 160
50 #define ARRAY_PROMPT ">> "
51
52 #define SWAP_TARGET_AND_HOST(buffer,len) \
53 do \
54 { \
55 if (TARGET_BYTE_ORDER != HOST_BYTE_ORDER) \
56 { \
57 char tmp; \
58 char *p = (char *)(buffer); \
59 char *q = ((char *)(buffer)) + len - 1; \
60 for (; p < q; p++, q--) \
61 { \
62 tmp = *q; \
63 *q = *p; \
64 *p = tmp; \
65 } \
66 } \
67 } \
68 while (0)
69
70 static void debuglogs PARAMS((int, char *, ...));
71 static void array_open();
72 static void array_close();
73 static void array_detach();
74 static void array_attach();
75 static void array_resume();
76 static void array_fetch_register();
77 static void array_store_register();
78 static void array_fetch_registers();
79 static void array_store_registers();
80 static void array_prepare_to_store();
81 static void array_files_info();
82 static void array_kill();
83 static void array_create_inferior();
84 static void array_mourn_inferior();
85 static void make_gdb_packet();
86 static int array_xfer_memory();
87 static int array_wait();
88 static int array_insert_breakpoint();
89 static int array_remove_breakpoint();
90 static int tohex();
91 static int to_hex();
92 static int from_hex();
93 static int array_send_packet();
94 static int array_get_packet();
95 static unsigned long ascii2hexword();
96 static char *hexword2ascii();
97
98 extern char *version;
99
100 #define LOG_FILE "monitor.log"
101 #if defined (LOG_FILE)
102 FILE *log_file;
103 #endif
104
105 static int timeout = 30;
106 /* Having this larger than 400 causes us to be incompatible with m68k-stub.c
107 and i386-stub.c. Normally, no one would notice because it only matters
108 for writing large chunks of memory (e.g. in downloads). Also, this needs
109 to be more than 400 if required to hold the registers (see below, where
110 we round it up based on REGISTER_BYTES). */
111 #define PBUFSIZ 400
112
113 /*
114 * Descriptor for I/O to remote machine. Initialize it to NULL so that
115 * array_open knows that we don't have a file open when the program starts.
116 */
117 serial_t array_desc = NULL;
118
119 /*
120 * this array of registers need to match the indexes used by GDB. The
121 * whole reason this exists is cause the various ROM monitors use
122 * different strings than GDB does, and doesn't support all the
123 * registers either. So, typing "info reg sp" becomes a "r30".
124 */
125 extern char *tmp_mips_processor_type;
126 extern int mips_set_processor_type();
127
128 static struct target_ops array_ops = {
129 "array", /* to_shortname */
130 /* to_longname */
131 "Debug using the standard GDB remote protocol for the Array Tech target.",
132 /* to_doc */
133 "Debug using the standard GDB remote protocol for the Array Tech target.\n\
134 Specify the serial device it is connected to (e.g. /dev/ttya).",
135 array_open, /* to_open */
136 array_close, /* to_close */
137 NULL, /* to_attach */
138 array_detach, /* to_detach */
139 array_resume, /* to_resume */
140 array_wait, /* to_wait */
141 array_fetch_registers, /* to_fetch_registers */
142 array_store_registers, /* to_store_registers */
143 array_prepare_to_store, /* to_prepare_to_store */
144 array_xfer_memory, /* to_xfer_memory */
145 array_files_info, /* to_files_info */
146 array_insert_breakpoint, /* to_insert_breakpoint */
147 array_remove_breakpoint, /* to_remove_breakpoint */
148 0, /* to_terminal_init */
149 0, /* to_terminal_inferior */
150 0, /* to_terminal_ours_for_output */
151 0, /* to_terminal_ours */
152 0, /* to_terminal_info */
153 array_kill, /* to_kill */
154 0, /* to_load */
155 0, /* to_lookup_symbol */
156 array_create_inferior, /* to_create_inferior */
157 array_mourn_inferior, /* to_mourn_inferior */
158 0, /* to_can_run */
159 0, /* to_notice_signals */
160 0, /* to_thread_alive */
161 0, /* to_stop */
162 process_stratum, /* to_stratum */
163 0, /* to_next */
164 1, /* to_has_all_memory */
165 1, /* to_has_memory */
166 1, /* to_has_stack */
167 1, /* to_has_registers */
168 1, /* to_has_execution */
169 0, /* sections */
170 0, /* sections_end */
171 OPS_MAGIC /* to_magic */
172 };
173
174 /*
175 * printf_monitor -- send data to monitor. Works just like printf.
176 */
177 static void
178 #ifdef ANSI_PROTOTYPES
179 printf_monitor(char *pattern, ...)
180 #else
181 printf_monitor(va_alist)
182 va_dcl
183 #endif
184 {
185 va_list args;
186 char buf[PBUFSIZ];
187 int i;
188
189 #ifdef ANSI_PROTOTYPES
190 va_start(args, pattern);
191 #else
192 char *pattern;
193 va_start(args);
194 pattern = va_arg(args, char *);
195 #endif
196
197 vsprintf(buf, pattern, args);
198
199 debuglogs (1, "printf_monitor(), Sending: \"%s\".", buf);
200
201 if (strlen(buf) > PBUFSIZ)
202 error ("printf_monitor(): string too long");
203 if (SERIAL_WRITE(array_desc, buf, strlen(buf)))
204 fprintf(stderr, "SERIAL_WRITE failed: %s\n", safe_strerror(errno));
205 }
206 /*
207 * write_monitor -- send raw data to monitor.
208 */
209 static void
210 write_monitor(data, len)
211 char data[];
212 int len;
213 {
214 if (SERIAL_WRITE(array_desc, data, len))
215 fprintf(stderr, "SERIAL_WRITE failed: %s\n", safe_strerror(errno));
216
217 *(data + len+1) = '\0';
218 debuglogs (1, "write_monitor(), Sending: \"%s\".", data);
219
220 }
221
222 /*
223 * debuglogs -- deal with debugging info to multiple sources. This takes
224 * two real args, the first one is the level to be compared against
225 * the sr_get_debug() value, the second arg is a printf buffer and args
226 * to be formatted and printed. A CR is added after each string is printed.
227 */
228 static void
229 #ifdef ANSI_PROTOTYPES
230 debuglogs(int level, char *pattern, ...)
231 #else
232 debuglogs(va_alist)
233 va_dcl
234 #endif
235 {
236 va_list args;
237 char *p;
238 unsigned char buf[PBUFSIZ];
239 char newbuf[PBUFSIZ];
240 int i;
241
242 #ifdef ANSI_PROTOTYPES
243 va_start(args, pattern);
244 #else
245 char *pattern;
246 int level;
247 va_start(args);
248 level = va_arg(args, int); /* get the debug level */
249 pattern = va_arg(args, char *); /* get the printf style pattern */
250 #endif
251
252 if ((level <0) || (level > 100)) {
253 error ("Bad argument passed to debuglogs(), needs debug level");
254 return;
255 }
256
257 vsprintf(buf, pattern, args); /* format the string */
258
259 /* convert some characters so it'll look right in the log */
260 p = newbuf;
261 for (i = 0 ; buf[i] != '\0'; i++) {
262 if (i > PBUFSIZ)
263 error ("Debug message too long");
264 switch (buf[i]) {
265 case '\n': /* newlines */
266 *p++ = '\\';
267 *p++ = 'n';
268 continue;
269 case '\r': /* carriage returns */
270 *p++ = '\\';
271 *p++ = 'r';
272 continue;
273 case '\033': /* escape */
274 *p++ = '\\';
275 *p++ = 'e';
276 continue;
277 case '\t': /* tab */
278 *p++ = '\\';
279 *p++ = 't';
280 continue;
281 case '\b': /* backspace */
282 *p++ = '\\';
283 *p++ = 'b';
284 continue;
285 default: /* no change */
286 *p++ = buf[i];
287 }
288
289 if (buf[i] < 26) { /* modify control characters */
290 *p++ = '^';
291 *p++ = buf[i] + 'A';
292 continue;
293 }
294 if (buf[i] >= 128) { /* modify control characters */
295 *p++ = '!';
296 *p++ = buf[i] + 'A';
297 continue;
298 }
299 }
300 *p = '\0'; /* terminate the string */
301
302 if (sr_get_debug() > level)
303 printf_unfiltered ("%s\n", newbuf);
304
305 #ifdef LOG_FILE /* write to the monitor log */
306 if (log_file != 0x0) {
307 fputs (newbuf, log_file);
308 fputc ('\n', log_file);
309 fflush (log_file);
310 }
311 #endif
312 }
313
314 /* readchar -- read a character from the remote system, doing all the fancy
315 * timeout stuff.
316 */
317 static int
318 readchar(timeout)
319 int timeout;
320 {
321 int c;
322
323 c = SERIAL_READCHAR(array_desc, abs(timeout));
324
325 if (sr_get_debug() > 5) {
326 putchar(c & 0x7f);
327 debuglogs (5, "readchar: timeout = %d\n", timeout);
328 }
329
330 #ifdef LOG_FILE
331 if (isascii (c))
332 putc(c & 0x7f, log_file);
333 #endif
334
335 if (c >= 0)
336 return c & 0x7f;
337
338 if (c == SERIAL_TIMEOUT) {
339 if (timeout <= 0)
340 return c; /* Polls shouldn't generate timeout errors */
341 error("Timeout reading from remote system.");
342 #ifdef LOG_FILE
343 fputs ("ERROR: Timeout reading from remote system", log_file);
344 #endif
345 }
346 perror_with_name("readchar");
347 }
348
349 /*
350 * expect -- scan input from the remote system, until STRING is found.
351 * If DISCARD is non-zero, then discard non-matching input, else print
352 * it out. Let the user break out immediately.
353 */
354 static void
355 expect (string, discard)
356 char *string;
357 int discard;
358 {
359 char *p = string;
360 int c;
361
362
363 debuglogs (1, "Expecting \"%s\".", string);
364
365 immediate_quit = 1;
366 while (1) {
367 c = readchar(timeout);
368 if (!isascii (c))
369 continue;
370 if (c == *p++) {
371 if (*p == '\0') {
372 immediate_quit = 0;
373 debuglogs (4, "Matched");
374 return;
375 }
376 } else {
377 if (!discard) {
378 fputc_unfiltered (c, gdb_stdout);
379 }
380 p = string;
381 }
382 }
383 }
384
385 /* Keep discarding input until we see the MONITOR array_cmds->prompt.
386
387 The convention for dealing with the expect_prompt is that you
388 o give your command
389 o *then* wait for the expect_prompt.
390
391 Thus the last thing that a procedure does with the serial line
392 will be an expect_prompt(). Exception: array_resume does not
393 wait for the expect_prompt, because the terminal is being handed over
394 to the inferior. However, the next thing which happens after that
395 is a array_wait which does wait for the expect_prompt.
396 Note that this includes abnormal exit, e.g. error(). This is
397 necessary to prevent getting into states from which we can't
398 recover. */
399 static void
400 expect_prompt(discard)
401 int discard;
402 {
403 expect (ARRAY_PROMPT, discard);
404 }
405
406 /*
407 * junk -- ignore junk characters. Returns a 1 if junk, 0 otherwise
408 */
409 static int
410 junk(ch)
411 char ch;
412 {
413 switch (ch) {
414 case '\0':
415 case ' ':
416 case '-':
417 case '\t':
418 case '\r':
419 case '\n':
420 if (sr_get_debug() > 5)
421 debuglogs (5, "Ignoring \'%c\'.", ch);
422 return 1;
423 default:
424 if (sr_get_debug() > 5)
425 debuglogs (5, "Accepting \'%c\'.", ch);
426 return 0;
427 }
428 }
429
430 /*
431 * get_hex_digit -- Get a hex digit from the remote system & return its value.
432 * If ignore is nonzero, ignore spaces, newline & tabs.
433 */
434 static int
435 get_hex_digit(ignore)
436 int ignore;
437 {
438 static int ch;
439 while (1) {
440 ch = readchar(timeout);
441 if (junk(ch))
442 continue;
443 if (sr_get_debug() > 4) {
444 debuglogs (4, "get_hex_digit() got a 0x%x(%c)", ch, ch);
445 } else {
446 #ifdef LOG_FILE /* write to the monitor log */
447 if (log_file != 0x0) {
448 fputs ("get_hex_digit() got a 0x", log_file);
449 fputc (ch, log_file);
450 fputc ('\n', log_file);
451 fflush (log_file);
452 }
453 #endif
454 }
455
456 if (ch >= '0' && ch <= '9')
457 return ch - '0';
458 else if (ch >= 'A' && ch <= 'F')
459 return ch - 'A' + 10;
460 else if (ch >= 'a' && ch <= 'f')
461 return ch - 'a' + 10;
462 else if (ch == ' ' && ignore)
463 ;
464 else {
465 expect_prompt(1);
466 debuglogs (4, "Invalid hex digit from remote system. (0x%x)", ch);
467 error("Invalid hex digit from remote system. (0x%x)", ch);
468 }
469 }
470 }
471
472 /* get_hex_byte -- Get a byte from monitor and put it in *BYT.
473 * Accept any number leading spaces.
474 */
475 static void
476 get_hex_byte (byt)
477 char *byt;
478 {
479 int val;
480
481 val = get_hex_digit (1) << 4;
482 debuglogs (4, "get_hex_byte() -- Read first nibble 0x%x", val);
483
484 val |= get_hex_digit (0);
485 debuglogs (4, "get_hex_byte() -- Read second nibble 0x%x", val);
486 *byt = val;
487
488 debuglogs (4, "get_hex_byte() -- Read a 0x%x", val);
489 }
490
491 /*
492 * get_hex_word -- Get N 32-bit words from remote, each preceded by a space,
493 * and put them in registers starting at REGNO.
494 */
495 static int
496 get_hex_word ()
497 {
498 long val, newval;
499 int i;
500
501 val = 0;
502
503 #if 0
504 if (HOST_BYTE_ORDER == BIG_ENDIAN) {
505 #endif
506 for (i = 0; i < 8; i++)
507 val = (val << 4) + get_hex_digit (i == 0);
508 #if 0
509 } else {
510 for (i = 7; i >= 0; i--)
511 val = (val << 4) + get_hex_digit (i == 0);
512 }
513 #endif
514
515 debuglogs (4, "get_hex_word() got a 0x%x for a %s host.", val, (HOST_BYTE_ORDER == BIG_ENDIAN) ? "big endian" : "little endian");
516
517 return val;
518 }
519
520 /* This is called not only when we first attach, but also when the
521 user types "run" after having attached. */
522 static void
523 array_create_inferior (execfile, args, env)
524 char *execfile;
525 char *args;
526 char **env;
527 {
528 int entry_pt;
529
530 if (args && *args)
531 error("Can't pass arguments to remote MONITOR process");
532
533 if (execfile == 0 || exec_bfd == 0)
534 error("No exec file specified");
535
536 entry_pt = (int) bfd_get_start_address (exec_bfd);
537
538 /* The "process" (board) is already stopped awaiting our commands, and
539 the program is already downloaded. We just set its PC and go. */
540
541 clear_proceed_status ();
542
543 /* Tell wait_for_inferior that we've started a new process. */
544 init_wait_for_inferior ();
545
546 /* Set up the "saved terminal modes" of the inferior
547 based on what modes we are starting it with. */
548 target_terminal_init ();
549
550 /* Install inferior's terminal modes. */
551 target_terminal_inferior ();
552
553 /* insert_step_breakpoint (); FIXME, do we need this? */
554
555 /* Let 'er rip... */
556 proceed ((CORE_ADDR)entry_pt, TARGET_SIGNAL_DEFAULT, 0);
557 }
558
559 /*
560 * array_open -- open a connection to a remote debugger.
561 * NAME is the filename used for communication.
562 */
563 static int baudrate = 9600;
564 static char dev_name[100];
565
566 static void
567 array_open(args, name, from_tty)
568 char *args;
569 char *name;
570 int from_tty;
571 {
572 char packet[PBUFSIZ];
573
574 if (args == NULL)
575 error ("Use `target %s DEVICE-NAME' to use a serial port, or \n\
576 `target %s HOST-NAME:PORT-NUMBER' to use a network connection.", name, name);
577
578 /* if (is_open) */
579 array_close(0);
580
581 target_preopen (from_tty);
582 unpush_target (&array_ops);
583
584 tmp_mips_processor_type = "lsi33k"; /* change the default from r3051 */
585 mips_set_processor_type_command ("lsi33k", 0);
586
587 strcpy(dev_name, args);
588 array_desc = SERIAL_OPEN(dev_name);
589
590 if (array_desc == NULL)
591 perror_with_name(dev_name);
592
593 if (baud_rate != -1) {
594 if (SERIAL_SETBAUDRATE (array_desc, baud_rate)) {
595 SERIAL_CLOSE (array_desc);
596 perror_with_name (name);
597 }
598 }
599
600 SERIAL_RAW(array_desc);
601
602 #if defined (LOG_FILE)
603 log_file = fopen (LOG_FILE, "w");
604 if (log_file == NULL)
605 perror_with_name (LOG_FILE);
606 fprintf_filtered (log_file, "GDB %s (%s", version);
607 fprintf_filtered (log_file, " --target %s)\n", array_ops.to_shortname);
608 fprintf_filtered (log_file, "Remote target %s connected to %s\n\n", array_ops.to_shortname, dev_name);
609 #endif
610
611 /* see if the target is alive. For a ROM monitor, we can just try to force the
612 expect_prompt to print a few times. For the GDB remote protocol, the application
613 being debugged is sitting at a breakpoint and waiting for GDB to initialize
614 the connection. We force it to give us an empty packet to see if it's alive.
615 */
616 debuglogs (3, "Trying to ACK the target's debug stub");
617 /* unless your are on the new hardware, the old board won't initialize
618 because the '@' doesn't flush output like it does on the new ROMS.
619 */
620 printf_monitor ("@"); /* ask for the last signal */
621 expect_prompt(1); /* See if we get a expect_prompt */
622 #ifdef TEST_ARRAY /* skip packet for testing */
623 make_gdb_packet (packet, "?"); /* ask for a bogus packet */
624 if (array_send_packet (packet) == 0)
625 error ("Couldn't transmit packet\n");
626 printf_monitor ("@\n"); /* force it to flush stdout */
627 expect_prompt(1); /* See if we get a expect_prompt */
628 #endif
629 push_target (&array_ops);
630 if (from_tty)
631 printf("Remote target %s connected to %s\n", array_ops.to_shortname, dev_name);
632 }
633
634 /*
635 * array_close -- Close out all files and local state before this
636 * target loses control.
637 */
638
639 static void
640 array_close (quitting)
641 int quitting;
642 {
643 SERIAL_CLOSE(array_desc);
644 array_desc = NULL;
645
646 debuglogs (1, "array_close (quitting=%d)", quitting);
647
648 #if defined (LOG_FILE)
649 if (log_file) {
650 if (ferror(log_file))
651 printf_filtered ("Error writing log file.\n");
652 if (fclose(log_file) != 0)
653 printf_filtered ("Error closing log file.\n");
654 }
655 #endif
656 }
657
658 /*
659 * array_detach -- terminate the open connection to the remote
660 * debugger. Use this when you want to detach and do something
661 * else with your gdb.
662 */
663 static void
664 array_detach (from_tty)
665 int from_tty;
666 {
667
668 debuglogs (1, "array_detach ()");
669
670 pop_target(); /* calls array_close to do the real work */
671 if (from_tty)
672 printf ("Ending remote %s debugging\n", target_shortname);
673 }
674
675 /*
676 * array_attach -- attach GDB to the target.
677 */
678 static void
679 array_attach (args, from_tty)
680 char *args;
681 int from_tty;
682 {
683 if (from_tty)
684 printf ("Starting remote %s debugging\n", target_shortname);
685
686 debuglogs (1, "array_attach (args=%s)", args);
687
688 printf_monitor ("go %x\n");
689 /* swallow the echo. */
690 expect ("go %x\n", 1);
691 }
692
693 /*
694 * array_resume -- Tell the remote machine to resume.
695 */
696 static void
697 array_resume (pid, step, sig)
698 int pid, step;
699 enum target_signal sig;
700 {
701 debuglogs (1, "array_resume (step=%d, sig=%d)", step, sig);
702
703 if (step) {
704 printf_monitor ("s\n");
705 } else {
706 printf_monitor ("go\n");
707 }
708 }
709
710 #define TMPBUFSIZ 5
711
712 /*
713 * array_wait -- Wait until the remote machine stops, then return,
714 * storing status in status just as `wait' would.
715 */
716 static int
717 array_wait (pid, status)
718 int pid;
719 struct target_waitstatus *status;
720 {
721 int old_timeout = timeout;
722 int result, i;
723 char c;
724 serial_t tty_desc;
725 serial_ttystate ttystate;
726
727 debuglogs(1, "array_wait (), printing extraneous text.");
728
729 status->kind = TARGET_WAITKIND_EXITED;
730 status->value.integer = 0;
731
732 timeout = 0; /* Don't time out -- user program is running. */
733
734 #if !defined(__GO32__) && !defined(__MSDOS__) && !defined(__WIN32__)
735 tty_desc = SERIAL_FDOPEN (0);
736 ttystate = SERIAL_GET_TTY_STATE (tty_desc);
737 SERIAL_RAW (tty_desc);
738
739 i = 0;
740 /* poll on the serial port and the keyboard. */
741 while (1) {
742 c = readchar(timeout);
743 if (c > 0) {
744 if (c == *(ARRAY_PROMPT + i)) {
745 if (++i >= strlen (ARRAY_PROMPT)) { /* matched the prompt */
746 debuglogs (4, "array_wait(), got the expect_prompt.");
747 break;
748 }
749 } else { /* not the prompt */
750 i = 0;
751 }
752 fputc_unfiltered (c, gdb_stdout);
753 fflush (stdout);
754 }
755 c = SERIAL_READCHAR(tty_desc, timeout);
756 if (c > 0) {
757 SERIAL_WRITE(array_desc, &c, 1);
758 /* do this so it looks like there's keyboard echo */
759 if (c == 3) /* exit on Control-C */
760 break;
761 fputc_unfiltered (c, gdb_stdout);
762 fflush (stdout);
763 }
764 }
765 SERIAL_SET_TTY_STATE (tty_desc, ttystate);
766 #else
767 expect_prompt(1);
768 debuglogs (4, "array_wait(), got the expect_prompt.");
769 #endif
770
771 status->kind = TARGET_WAITKIND_STOPPED;
772 status->value.sig = TARGET_SIGNAL_TRAP;
773
774 timeout = old_timeout;
775
776 return 0;
777 }
778
779 /*
780 * array_fetch_registers -- read the remote registers into the
781 * block regs.
782 */
783 static void
784 array_fetch_registers (ignored)
785 int ignored;
786 {
787 int regno, i;
788 char *p;
789 unsigned char packet[PBUFSIZ];
790 char regs[REGISTER_BYTES];
791
792 debuglogs (1, "array_fetch_registers (ignored=%d)\n", ignored);
793
794 memset (packet, 0, PBUFSIZ);
795 /* Unimplemented registers read as all bits zero. */
796 memset (regs, 0, REGISTER_BYTES);
797 make_gdb_packet (packet, "g");
798 if (array_send_packet (packet) == 0)
799 error ("Couldn't transmit packet\n");
800 if (array_get_packet (packet) == 0)
801 error ("Couldn't receive packet\n");
802 /* FIXME: read bytes from packet */
803 debuglogs (4, "array_fetch_registers: Got a \"%s\" back\n", packet);
804 for (regno = 0; regno <= PC_REGNUM+4; regno++) {
805 /* supply register stores in target byte order, so swap here */
806 /* FIXME: convert from ASCII hex to raw bytes */
807 i = ascii2hexword (packet + (regno * 8));
808 debuglogs (5, "Adding register %d = %x\n", regno, i);
809 SWAP_TARGET_AND_HOST (&i, 4);
810 supply_register (regno, (char *)&i);
811 }
812 }
813
814 /*
815 * This is unused by targets like this one that use a
816 * protocol based on GDB's remote protocol.
817 */
818 static void
819 array_fetch_register (ignored)
820 int ignored;
821 {
822 array_fetch_registers ();
823 }
824
825 /*
826 * Get all the registers from the targets. They come back in a large array.
827 */
828 static void
829 array_store_registers (ignored)
830 int ignored;
831 {
832 int regno;
833 unsigned long i;
834 char packet[PBUFSIZ];
835 char buf[PBUFSIZ];
836 char num[9];
837
838 debuglogs (1, "array_store_registers()");
839
840 memset (packet, 0, PBUFSIZ);
841 memset (buf, 0, PBUFSIZ);
842 buf[0] = 'G';
843
844 /* Unimplemented registers read as all bits zero. */
845 /* FIXME: read bytes from packet */
846 for (regno = 0; regno < 41; regno++) { /* FIXME */
847 /* supply register stores in target byte order, so swap here */
848 /* FIXME: convert from ASCII hex to raw bytes */
849 i = (unsigned long)read_register (regno);
850 hexword2ascii (num, i);
851 strcpy (buf+(regno * 8)+1, num);
852 }
853 *(buf + (regno * 8) + 2) = 0;
854 make_gdb_packet (packet, buf);
855 if (array_send_packet (packet) == 0)
856 error ("Couldn't transmit packet\n");
857 if (array_get_packet (packet) == 0)
858 error ("Couldn't receive packet\n");
859
860 registers_changed ();
861 }
862
863 /*
864 * This is unused by targets like this one that use a
865 * protocol based on GDB's remote protocol.
866 */
867 static void
868 array_store_register (ignored)
869 int ignored;
870 {
871 array_store_registers ();
872 }
873
874 /* Get ready to modify the registers array. On machines which store
875 individual registers, this doesn't need to do anything. On machines
876 which store all the registers in one fell swoop, this makes sure
877 that registers contains all the registers from the program being
878 debugged. */
879
880 static void
881 array_prepare_to_store ()
882 {
883 /* Do nothing, since we can store individual regs */
884 }
885
886 static void
887 array_files_info ()
888 {
889 printf ("\tAttached to %s at %d baud.\n",
890 dev_name, baudrate);
891 }
892
893 /*
894 * array_write_inferior_memory -- Copy LEN bytes of data from debugger
895 * memory at MYADDR to inferior's memory at MEMADDR. Returns length moved.
896 */
897 static int
898 array_write_inferior_memory (memaddr, myaddr, len)
899 CORE_ADDR memaddr;
900 unsigned char *myaddr;
901 int len;
902 {
903 unsigned long i;
904 int j;
905 char packet[PBUFSIZ];
906 char buf[PBUFSIZ];
907 char num[9];
908 char *p;
909
910 debuglogs (1, "array_write_inferior_memory (memaddr=0x%x, myaddr=0x%x, len=%d)", memaddr, myaddr, len);
911 memset (buf, '\0', PBUFSIZ); /* this also sets the string terminator */
912 p = buf;
913
914 *p++ = 'M'; /* The command to write memory */
915 hexword2ascii (num, memaddr); /* convert the address */
916 strcpy (p, num); /* copy the address */
917 p += 8;
918 *p++ = ','; /* add comma delimeter */
919 hexword2ascii (num, len); /* Get the length as a 4 digit number */
920 *p++ = num[4];
921 *p++ = num[5];
922 *p++ = num[6];
923 *p++ = num[7];
924 *p++ = ':'; /* add the colon delimeter */
925 for (j = 0; j < len; j++) { /* copy the data in after converting it */
926 *p++ = tohex ((myaddr[j] >> 4) & 0xf);
927 *p++ = tohex (myaddr[j] & 0xf);
928 }
929
930 make_gdb_packet (packet, buf);
931 if (array_send_packet (packet) == 0)
932 error ("Couldn't transmit packet\n");
933 if (array_get_packet (packet) == 0)
934 error ("Couldn't receive packet\n");
935
936 return len;
937 }
938
939 /*
940 * array_read_inferior_memory -- read LEN bytes from inferior memory
941 * at MEMADDR. Put the result at debugger address MYADDR. Returns
942 * length moved.
943 */
944 static int
945 array_read_inferior_memory(memaddr, myaddr, len)
946 CORE_ADDR memaddr;
947 char *myaddr;
948 int len;
949 {
950 int i, j;
951 char buf[20];
952 char packet[PBUFSIZ];
953
954 /* Number of bytes read so far. */
955 int count;
956
957 /* Starting address of this pass. */
958 unsigned long startaddr;
959
960 /* Starting address of this pass. */
961 unsigned long endaddr;
962
963 /* Number of bytes to read in this pass. */
964 int len_this_pass;
965
966 debuglogs (1, "array_read_inferior_memory (memaddr=0x%x, myaddr=0x%x, len=%d)", memaddr, myaddr, len);
967
968 /* Note that this code works correctly if startaddr is just less
969 than UINT_MAX (well, really CORE_ADDR_MAX if there was such a
970 thing). That is, something like
971 array_read_bytes (CORE_ADDR_MAX - 4, foo, 4)
972 works--it never adds len To memaddr and gets 0. */
973 /* However, something like
974 array_read_bytes (CORE_ADDR_MAX - 3, foo, 4)
975 doesn't need to work. Detect it and give up if there's an attempt
976 to do that. */
977 if (((memaddr - 1) + len) < memaddr) {
978 errno = EIO;
979 return 0;
980 }
981
982 startaddr = memaddr;
983 count = 0;
984 while (count < len) {
985 len_this_pass = 16;
986 if ((startaddr % 16) != 0)
987 len_this_pass -= startaddr % 16;
988 if (len_this_pass > (len - count))
989 len_this_pass = (len - count);
990
991 debuglogs (3, "Display %d bytes at %x for Big Endian host", len_this_pass, startaddr);
992
993 for (i = 0; i < len_this_pass; i++) {
994 sprintf (buf, "m%08x,%04x", startaddr, len_this_pass);
995 make_gdb_packet (packet, buf);
996 if (array_send_packet (packet) == 0)
997 error ("Couldn't transmit packet\n");
998 if (array_get_packet (packet) == 0)
999 error ("Couldn't receive packet\n");
1000 if (*packet == 0)
1001 error ("Got no data in the GDB packet\n");
1002 debuglogs (4, "array_read_inferior: Got a \"%s\" back\n", packet);
1003 for (j = 0; j < len_this_pass ; j++) { /* extract the byte values */
1004 myaddr[count++] = from_hex (*(packet+(j*2))) * 16 + from_hex (*(packet+(j*2)+1));
1005 debuglogs (5, "myaddr set to %x\n", myaddr[count-1]);
1006 }
1007 startaddr += 1;
1008 }
1009
1010 }
1011 return len;
1012 }
1013
1014 /* FIXME-someday! merge these two. */
1015 static int
1016 array_xfer_memory (memaddr, myaddr, len, write, target)
1017 CORE_ADDR memaddr;
1018 char *myaddr;
1019 int len;
1020 int write;
1021 struct target_ops *target; /* ignored */
1022 {
1023 if (write)
1024 return array_write_inferior_memory (memaddr, myaddr, len);
1025 else
1026 return array_read_inferior_memory (memaddr, myaddr, len);
1027 }
1028
1029 static void
1030 array_kill (args, from_tty)
1031 char *args;
1032 int from_tty;
1033 {
1034 return; /* ignore attempts to kill target system */
1035 }
1036
1037 /* Clean up when a program exits.
1038 The program actually lives on in the remote processor's RAM, and may be
1039 run again without a download. Don't leave it full of breakpoint
1040 instructions. */
1041
1042 static void
1043 array_mourn_inferior ()
1044 {
1045 remove_breakpoints ();
1046 generic_mourn_inferior (); /* Do all the proper things now */
1047 }
1048
1049 #define MAX_ARRAY_BREAKPOINTS 16
1050
1051 extern int memory_breakpoint_size;
1052 static CORE_ADDR breakaddr[MAX_ARRAY_BREAKPOINTS] = {0};
1053
1054 /*
1055 * array_insert_breakpoint -- add a breakpoint
1056 */
1057 static int
1058 array_insert_breakpoint (addr, shadow)
1059 CORE_ADDR addr;
1060 char *shadow;
1061 {
1062 int i;
1063
1064 debuglogs (1, "array_insert_breakpoint() addr = 0x%x", addr);
1065
1066 for (i = 0; i <= MAX_ARRAY_BREAKPOINTS; i++) {
1067 if (breakaddr[i] == 0) {
1068 breakaddr[i] = addr;
1069 if (sr_get_debug() > 4)
1070 printf ("Breakpoint at %x\n", addr);
1071 array_read_inferior_memory(addr, shadow, memory_breakpoint_size);
1072 printf_monitor("b 0x%x\n", addr);
1073 expect_prompt(1);
1074 return 0;
1075 }
1076 }
1077
1078 fprintf(stderr, "Too many breakpoints (> 16) for monitor\n");
1079 return 1;
1080 }
1081
1082 /*
1083 * _remove_breakpoint -- Tell the monitor to remove a breakpoint
1084 */
1085 static int
1086 array_remove_breakpoint (addr, shadow)
1087 CORE_ADDR addr;
1088 char *shadow;
1089 {
1090 int i;
1091
1092 debuglogs (1, "array_remove_breakpoint() addr = 0x%x", addr);
1093
1094 for (i = 0; i < MAX_ARRAY_BREAKPOINTS; i++) {
1095 if (breakaddr[i] == addr) {
1096 breakaddr[i] = 0;
1097 /* some monitors remove breakpoints based on the address */
1098 printf_monitor("bd %x\n", i);
1099 expect_prompt(1);
1100 return 0;
1101 }
1102 }
1103 fprintf(stderr, "Can't find breakpoint associated with 0x%x\n", addr);
1104 return 1;
1105 }
1106
1107 static void
1108 array_stop ()
1109 {
1110 debuglogs (1, "array_stop()");
1111 printf_monitor("\003");
1112 expect_prompt(1);
1113 }
1114
1115 /*
1116 * array_command -- put a command string, in args, out to MONITOR.
1117 * Output from MONITOR is placed on the users terminal until the
1118 * expect_prompt is seen. FIXME
1119 */
1120 static void
1121 monitor_command (args, fromtty)
1122 char *args;
1123 int fromtty;
1124 {
1125 debuglogs (1, "monitor_command (args=%s)", args);
1126
1127 if (array_desc == NULL)
1128 error("monitor target not open.");
1129
1130 if (!args)
1131 error("Missing command.");
1132
1133 printf_monitor ("%s\n", args);
1134 expect_prompt(0);
1135 }
1136
1137 /*
1138 * make_gdb_packet -- make a GDB packet. The data is always ASCII.
1139 * A debug packet whose contents are <data>
1140 * is encapsulated for transmission in the form:
1141 *
1142 * $ <data> # CSUM1 CSUM2
1143 *
1144 * <data> must be ASCII alphanumeric and cannot include characters
1145 * '$' or '#'. If <data> starts with two characters followed by
1146 * ':', then the existing stubs interpret this as a sequence number.
1147 *
1148 * CSUM1 and CSUM2 are ascii hex representation of an 8-bit
1149 * checksum of <data>, the most significant nibble is sent first.
1150 * the hex digits 0-9,a-f are used.
1151 *
1152 */
1153 static void
1154 make_gdb_packet (buf, data)
1155 char *buf, *data;
1156 {
1157 int i;
1158 unsigned char csum = 0;
1159 int cnt;
1160 char *p;
1161
1162 debuglogs (3, "make_gdb_packet(%s)\n", data);
1163 cnt = strlen (data);
1164 if (cnt > PBUFSIZ)
1165 error ("make_gdb_packet(): to much data\n");
1166
1167 /* start with the packet header */
1168 p = buf;
1169 *p++ = '$';
1170
1171 /* calculate the checksum */
1172 for (i = 0; i < cnt; i++) {
1173 csum += data[i];
1174 *p++ = data[i];
1175 }
1176
1177 /* terminate the data with a '#' */
1178 *p++ = '#';
1179
1180 /* add the checksum as two ascii digits */
1181 *p++ = tohex ((csum >> 4) & 0xf);
1182 *p++ = tohex (csum & 0xf);
1183 *p = 0x0; /* Null terminator on string */
1184 }
1185
1186 /*
1187 * array_send_packet -- send a GDB packet to the target with error handling. We
1188 * get a '+' (ACK) back if the packet is received and the checksum
1189 * matches. Otherwise a '-' (NAK) is returned. It returns a 1 for a
1190 * successful transmition, or a 0 for a failure.
1191 */
1192 static int
1193 array_send_packet (packet)
1194 char *packet;
1195 {
1196 int c, retries, i;
1197 char junk[PBUFSIZ];
1198
1199 retries = 0;
1200
1201 #if 0
1202 /* scan the packet to make sure it only contains valid characters.
1203 this may sound silly, but sometimes a garbled packet will hang
1204 the target board. We scan the whole thing, then print the error
1205 message.
1206 */
1207 for (i = 0; i < strlen(packet); i++) {
1208 debuglogs (5, "array_send_packet(): Scanning \'%c\'\n", packet[i]);
1209 /* legit hex numbers or command */
1210 if ((isxdigit(packet[i])) || (isalpha(packet[i])))
1211 continue;
1212 switch (packet[i]) {
1213 case '+': /* ACK */
1214 case '-': /* NAK */
1215 case '#': /* end of packet */
1216 case '$': /* start of packet */
1217 continue;
1218 default: /* bogus character */
1219 retries++;
1220 debuglogs (4, "array_send_packet(): Found a non-ascii digit \'%c\' in the packet.\n", packet[i]);
1221 }
1222 }
1223 #endif
1224
1225 if (retries > 0)
1226 error ("Can't send packet, found %d non-ascii characters", retries);
1227
1228 /* ok, try to send the packet */
1229 retries = 0;
1230 while (retries++ <= 10) {
1231 printf_monitor ("%s", packet);
1232
1233 /* read until either a timeout occurs (-2) or '+' is read */
1234 while (retries <= 10) {
1235 c = readchar (-timeout);
1236 debuglogs (3, "Reading a GDB protocol packet... Got a '%c'\n", c);
1237 switch (c) {
1238 case '+':
1239 debuglogs (3, "Got Ack\n");
1240 return 1;
1241 case SERIAL_TIMEOUT:
1242 debuglogs (3, "Timed out reading serial port\n");
1243 printf_monitor("@"); /* resync with the monitor */
1244 expect_prompt(1); /* See if we get a expect_prompt */
1245 break; /* Retransmit buffer */
1246 case '-':
1247 debuglogs (3, "Got NAK\n");
1248 printf_monitor("@"); /* resync with the monitor */
1249 expect_prompt(1); /* See if we get a expect_prompt */
1250 break;
1251 case '$':
1252 /* it's probably an old response, or the echo of our command.
1253 * just gobble up the packet and ignore it.
1254 */
1255 debuglogs (3, "Got a junk packet\n");
1256 i = 0;
1257 do {
1258 c = readchar (timeout);
1259 junk[i++] = c;
1260 } while (c != '#');
1261 c = readchar (timeout);
1262 junk[i++] = c;
1263 c = readchar (timeout);
1264 junk[i++] = c;
1265 junk[i++] = '\0';
1266 debuglogs (3, "Reading a junk packet, got a \"%s\"\n", junk);
1267 continue; /* Now, go look for next packet */
1268 default:
1269 continue;
1270 }
1271 retries++;
1272 debuglogs (3, "Retransmitting packet \"%s\"\n", packet);
1273 break; /* Here to retransmit */
1274 }
1275 } /* outer while */
1276 return 0;
1277 }
1278
1279 /*
1280 * array_get_packet -- get a GDB packet from the target. Basically we read till we
1281 * see a '#', then check the checksum. It returns a 1 if it's gotten a
1282 * packet, or a 0 it the packet wasn't transmitted correctly.
1283 */
1284 static int
1285 array_get_packet (packet)
1286 char *packet;
1287 {
1288 int c;
1289 int retries;
1290 unsigned char csum;
1291 unsigned char pktcsum;
1292 char *bp;
1293
1294 csum = 0;
1295 bp = packet;
1296
1297 memset (packet, 1, PBUFSIZ);
1298 retries = 0;
1299 while (retries <= 10) {
1300 do {
1301 c = readchar (timeout);
1302 if (c == SERIAL_TIMEOUT) {
1303 debuglogs (3, "array_get_packet: got time out from serial port.\n");
1304 }
1305 debuglogs (3, "Waiting for a '$', got a %c\n", c);
1306 } while (c != '$');
1307
1308 retries = 0;
1309 while (retries <= 10) {
1310 c = readchar (timeout);
1311 debuglogs (3, "array_get_packet: got a '%c'\n", c);
1312 switch (c) {
1313 case SERIAL_TIMEOUT:
1314 debuglogs (3, "Timeout in mid-packet, retrying\n");
1315 return 0;
1316 case '$':
1317 debuglogs (3, "Saw new packet start in middle of old one\n");
1318 return 0; /* Start a new packet, count retries */
1319 case '#':
1320 *bp = '\0';
1321 pktcsum = from_hex (readchar (timeout)) << 4;
1322 pktcsum |= from_hex (readchar (timeout));
1323 if (csum == 0)
1324 debuglogs (3, "\nGDB packet checksum zero, must be a bogus packet\n");
1325 if (csum == pktcsum) {
1326 debuglogs (3, "\nGDB packet checksum correct, packet data is \"%s\",\n", packet);
1327 printf_monitor ("@");
1328 expect_prompt (1);
1329 return 1;
1330 }
1331 debuglogs (3, "Bad checksum, sentsum=0x%x, csum=0x%x\n", pktcsum, csum);
1332 return 0;
1333 case '*': /* Run length encoding */
1334 debuglogs (5, "Run length encoding in packet\n");
1335 csum += c;
1336 c = readchar (timeout);
1337 csum += c;
1338 c = c - ' ' + 3; /* Compute repeat count */
1339
1340 if (c > 0 && c < 255 && bp + c - 1 < packet + PBUFSIZ - 1) {
1341 memset (bp, *(bp - 1), c);
1342 bp += c;
1343 continue;
1344 }
1345 *bp = '\0';
1346 printf_filtered ("Repeat count %d too large for buffer.\n", c);
1347 return 0;
1348
1349 default:
1350 if ((!isxdigit(c)) && (!ispunct(c)))
1351 debuglogs (4, "Got a non-ascii digit \'%c\'.\\n", c);
1352 if (bp < packet + PBUFSIZ - 1) {
1353 *bp++ = c;
1354 csum += c;
1355 continue;
1356 }
1357
1358 *bp = '\0';
1359 puts_filtered ("Remote packet too long.\n");
1360 return 0;
1361 }
1362 }
1363 }
1364 }
1365
1366 /*
1367 * ascii2hexword -- convert an ascii number represented by 8 digits to a hex value.
1368 */
1369 static unsigned long
1370 ascii2hexword (mem)
1371 unsigned char *mem;
1372 {
1373 unsigned long val;
1374 int i;
1375 char buf[9];
1376
1377 val = 0;
1378 for (i = 0; i < 8; i++) {
1379 val <<= 4;
1380 if (mem[i] >= 'A' && mem[i] <= 'F')
1381 val = val + mem[i] - 'A' + 10;
1382 if (mem[i] >= 'a' && mem[i] <= 'f')
1383 val = val + mem[i] - 'a' + 10;
1384 if (mem[i] >= '0' && mem[i] <= '9')
1385 val = val + mem[i] - '0';
1386 buf[i] = mem[i];
1387 }
1388 buf[8] = '\0';
1389 debuglogs (4, "ascii2hexword() got a 0x%x from %s(%x).\n", val, buf, mem);
1390 return val;
1391 }
1392
1393 /*
1394 * ascii2hexword -- convert a hex value to an ascii number represented by 8
1395 * digits.
1396 */
1397 static char*
1398 hexword2ascii (mem, num)
1399 unsigned char *mem;
1400 unsigned long num;
1401 {
1402 int i;
1403 unsigned char ch;
1404
1405 debuglogs (4, "hexword2ascii() converting %x ", num);
1406 for (i = 7; i >= 0; i--) {
1407 mem[i] = tohex ((num >> 4) & 0xf);
1408 mem[i] = tohex (num & 0xf);
1409 num = num >> 4;
1410 }
1411 mem[8] = '\0';
1412 debuglogs (4, "\tto a %s", mem);
1413 }
1414
1415 /* Convert hex digit A to a number. */
1416 static int
1417 from_hex (a)
1418 int a;
1419 {
1420 if (a == 0)
1421 return 0;
1422
1423 debuglogs (4, "from_hex got a 0x%x(%c)\n",a,a);
1424 if (a >= '0' && a <= '9')
1425 return a - '0';
1426 if (a >= 'a' && a <= 'f')
1427 return a - 'a' + 10;
1428 if (a >= 'A' && a <= 'F')
1429 return a - 'A' + 10;
1430 else {
1431 error ("Reply contains invalid hex digit 0x%x", a);
1432 }
1433 }
1434
1435 /* Convert number NIB to a hex digit. */
1436 static int
1437 tohex (nib)
1438 int nib;
1439 {
1440 if (nib < 10)
1441 return '0'+nib;
1442 else
1443 return 'a'+nib-10;
1444 }
1445
1446 /*
1447 * _initialize_remote_monitors -- setup a few addtitional commands that
1448 * are usually only used by monitors.
1449 */
1450 void
1451 _initialize_remote_monitors ()
1452 {
1453 /* generic monitor command */
1454 add_com ("monitor", class_obscure, monitor_command,
1455 "Send a command to the debug monitor.");
1456
1457 }
1458
1459 /*
1460 * _initialize_array -- do any special init stuff for the target.
1461 */
1462 void
1463 _initialize_array ()
1464 {
1465 add_target (&array_ops);
1466 }
This page took 0.058469 seconds and 4 git commands to generate.