Update texinfo.tex to version 2000-05-28.15.
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
d9fcf2fb 2 Copyright 1988, 1991-2000 Free Software Foundation, Inc.
c906108c 3
c5aa993b
JM
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
c5aa993b 20
96baa820 21/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 22
c906108c
SS
23#include "defs.h"
24#include "gdb_string.h"
25#include <ctype.h>
26#include <fcntl.h>
27#include "frame.h"
28#include "inferior.h"
29#include "bfd.h"
30#include "symfile.h"
31#include "target.h"
03f2053f 32#include "gdb_wait.h"
c5aa993b 33/*#include "terminal.h" */
c906108c
SS
34#include "gdbcmd.h"
35#include "objfiles.h"
36#include "gdb-stabs.h"
37#include "gdbthread.h"
c2c6d25f 38#include "remote.h"
c906108c
SS
39
40#include "dcache.h"
41
7a292a7a 42#include <ctype.h>
9846de1b 43#include <sys/time.h>
c906108c
SS
44#ifdef USG
45#include <sys/types.h>
46#endif
47
43ff13b4 48#include "event-loop.h"
c2c6d25f 49#include "event-top.h"
2acceee2 50#include "inf-loop.h"
43ff13b4 51
c906108c
SS
52#include <signal.h>
53#include "serial.h"
54
55/* Prototypes for local functions */
6426a772
JM
56static void cleanup_sigint_signal_handler (void *dummy);
57static void initialize_sigint_signal_handler (void);
d9fcf2fb 58static int getpkt_sane (char *buf, long sizeof_buf, int forever);
6426a772 59
a14ed312
KB
60static void handle_remote_sigint (int);
61static void handle_remote_sigint_twice (int);
62static void async_remote_interrupt (gdb_client_data);
63void async_remote_interrupt_twice (gdb_client_data);
43ff13b4 64
a14ed312 65static void build_remote_gdbarch_data (void);
0f71a2f6 66
917317f4 67static int remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len);
c906108c 68
a14ed312 69static int remote_read_bytes (CORE_ADDR memaddr, char *myaddr, int len);
c906108c 70
a14ed312 71static void remote_files_info (struct target_ops *ignore);
c906108c 72
a14ed312
KB
73static int remote_xfer_memory (CORE_ADDR memaddr, char *myaddr,
74 int len, int should_write,
75 struct target_ops *target);
c906108c 76
a14ed312 77static void remote_prepare_to_store (void);
c906108c 78
a14ed312 79static void remote_fetch_registers (int regno);
c906108c 80
a14ed312
KB
81static void remote_resume (int pid, int step, enum target_signal siggnal);
82static void remote_async_resume (int pid, int step,
83 enum target_signal siggnal);
84static int remote_start_remote (PTR);
c906108c 85
a14ed312
KB
86static void remote_open (char *name, int from_tty);
87static void remote_async_open (char *name, int from_tty);
c906108c 88
a14ed312
KB
89static void extended_remote_open (char *name, int from_tty);
90static void extended_remote_async_open (char *name, int from_tty);
c906108c 91
a14ed312
KB
92static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
93static void remote_async_open_1 (char *, int, struct target_ops *,
94 int extended_p);
c906108c 95
a14ed312 96static void remote_close (int quitting);
c906108c 97
a14ed312 98static void remote_store_registers (int regno);
c906108c 99
a14ed312
KB
100static void remote_mourn (void);
101static void remote_async_mourn (void);
c906108c 102
a14ed312 103static void extended_remote_restart (void);
c906108c 104
a14ed312 105static void extended_remote_mourn (void);
c906108c 106
a14ed312
KB
107static void extended_remote_create_inferior (char *, char *, char **);
108static void extended_remote_async_create_inferior (char *, char *, char **);
c906108c 109
a14ed312 110static void remote_mourn_1 (struct target_ops *);
c906108c 111
c2d11a7d 112static void remote_send (char *buf, long sizeof_buf);
c906108c 113
a14ed312 114static int readchar (int timeout);
c906108c 115
a14ed312
KB
116static int remote_wait (int pid, struct target_waitstatus *status);
117static int remote_async_wait (int pid, struct target_waitstatus *status);
c906108c 118
a14ed312
KB
119static void remote_kill (void);
120static void remote_async_kill (void);
c906108c 121
a14ed312 122static int tohex (int nib);
c906108c 123
a14ed312
KB
124static void remote_detach (char *args, int from_tty);
125static void remote_async_detach (char *args, int from_tty);
c906108c 126
a14ed312 127static void remote_interrupt (int signo);
c906108c 128
a14ed312 129static void remote_interrupt_twice (int signo);
7a292a7a 130
a14ed312 131static void interrupt_query (void);
c906108c 132
a14ed312 133static void set_thread (int, int);
c906108c 134
a14ed312 135static int remote_thread_alive (int);
c906108c 136
a14ed312 137static void get_offsets (void);
c906108c 138
c2d11a7d 139static long read_frame (char *buf, long sizeof_buf);
c906108c 140
a14ed312 141static int remote_insert_breakpoint (CORE_ADDR, char *);
c906108c 142
a14ed312 143static int remote_remove_breakpoint (CORE_ADDR, char *);
c906108c 144
a14ed312 145static int hexnumlen (ULONGEST num);
c906108c 146
a14ed312 147static void init_remote_ops (void);
c906108c 148
a14ed312 149static void init_extended_remote_ops (void);
c906108c 150
a14ed312 151static void init_remote_cisco_ops (void);
0f71a2f6
JM
152
153static struct target_ops remote_cisco_ops;
154
a14ed312 155static void remote_stop (void);
c906108c 156
a14ed312 157static int ishex (int ch, int *val);
c906108c 158
a14ed312 159static int stubhex (int ch);
c906108c 160
a14ed312 161static int remote_query (int /*char */ , char *, char *, int *);
c906108c 162
a14ed312 163static int hexnumstr (char *, ULONGEST);
c906108c 164
a14ed312 165static int hexnumnstr (char *, ULONGEST, int);
2df3850c 166
a14ed312 167static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 168
a14ed312 169static void print_packet (char *);
c906108c 170
a14ed312 171static unsigned long crc32 (unsigned char *, int, unsigned int);
c906108c 172
a14ed312 173static void compare_sections_command (char *, int);
c906108c 174
a14ed312 175static void packet_command (char *, int);
c906108c 176
a14ed312 177static int stub_unpack_int (char *buff, int fieldlength);
c906108c 178
a14ed312 179static int remote_current_thread (int oldpid);
c906108c 180
a14ed312 181static void remote_find_new_threads (void);
c906108c 182
a14ed312 183static void record_currthread (int currthread);
c906108c 184
c906108c
SS
185/* exported functions */
186
a14ed312 187extern int fromhex (int a);
c906108c 188
a14ed312 189static int putpkt_binary (char *buf, int cnt);
c906108c 190
a14ed312 191static void check_binary_download (CORE_ADDR addr);
c906108c 192
5a2468f5 193struct packet_config;
5a2468f5 194
a14ed312 195static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 196
a14ed312
KB
197static void set_packet_config_cmd (struct packet_config *config,
198 struct cmd_list_element *c);
5a2468f5 199
a14ed312
KB
200static void add_packet_config_cmd (struct packet_config *config,
201 char *name,
202 char *title,
203 void (*set_func) (char *args, int from_tty,
204 struct cmd_list_element *
205 c),
206 void (*show_func) (char *name,
207 int from_tty),
208 struct cmd_list_element **setlist,
209 struct cmd_list_element **showlist);
5a2468f5 210
a14ed312 211static void init_packet_config (struct packet_config *config);
5a2468f5 212
a14ed312
KB
213static void set_remote_protocol_P_packet_cmd (char *args,
214 int from_tty,
215 struct cmd_list_element *c);
5a2468f5 216
a14ed312 217static void show_remote_protocol_P_packet_cmd (char *args, int from_tty);
5a2468f5 218
a14ed312
KB
219static void set_remote_protocol_Z_packet_cmd (char *args,
220 int from_tty,
221 struct cmd_list_element *c);
96baa820 222
a14ed312 223static void show_remote_protocol_Z_packet_cmd (char *args, int from_tty);
96baa820 224
5a2468f5
JM
225
226
227
c906108c
SS
228/* Define the target subroutine names */
229
a14ed312 230void open_remote_target (char *, int, struct target_ops *, int);
c906108c 231
a14ed312 232void _initialize_remote (void);
c906108c
SS
233
234/* */
235
236static struct target_ops remote_ops;
237
238static struct target_ops extended_remote_ops;
239
43ff13b4
JM
240/* Temporary target ops. Just like the remote_ops and
241 extended_remote_ops, but with asynchronous support. */
242static struct target_ops remote_async_ops;
243
244static struct target_ops extended_async_remote_ops;
245
6426a772
JM
246/* FIXME: cagney/1999-09-23: Even though getpkt was called with
247 ``forever'' still use the normal timeout mechanism. This is
248 currently used by the ASYNC code to guarentee that target reads
249 during the initial connect always time-out. Once getpkt has been
250 modified to return a timeout indication and, in turn
251 remote_wait()/wait_for_inferior() have gained a timeout parameter
252 this can go away. */
253static int wait_forever_enabled_p = 1;
254
255
c906108c
SS
256/* This variable chooses whether to send a ^C or a break when the user
257 requests program interruption. Although ^C is usually what remote
258 systems expect, and that is the default here, sometimes a break is
259 preferable instead. */
260
261static int remote_break;
262
c906108c
SS
263/* Descriptor for I/O to remote machine. Initialize it to NULL so that
264 remote_open knows that we don't have a file open when the program
265 starts. */
266static serial_t remote_desc = NULL;
267
0f71a2f6
JM
268/* This is set by the target (thru the 'S' message)
269 to denote that the target is in kernel mode. */
270static int cisco_kernel_mode = 0;
271
c906108c
SS
272/* This variable sets the number of bits in an address that are to be
273 sent in a memory ("M" or "m") packet. Normally, after stripping
274 leading zeros, the entire address would be sent. This variable
275 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
276 initial implementation of remote.c restricted the address sent in
277 memory packets to ``host::sizeof long'' bytes - (typically 32
278 bits). Consequently, for 64 bit targets, the upper 32 bits of an
279 address was never sent. Since fixing this bug may cause a break in
280 some remote targets this variable is principly provided to
281 facilitate backward compatibility. */
282
283static int remote_address_size;
284
6426a772
JM
285/* Tempoary to track who currently owns the terminal. See
286 target_async_terminal_* for more details. */
287
288static int remote_async_terminal_ours_p;
289
11cf8741
JM
290\f
291/* This is the size (in chars) of the first response to the ``g''
292 packet. It is used as a heuristic when determining the maximum
293 size of memory-read and memory-write packets. A target will
294 typically only reserve a buffer large enough to hold the ``g''
295 packet. The size does not include packet overhead (headers and
296 trailers). */
297
298static long actual_register_packet_size;
299
300/* This is the maximum size (in chars) of a non read/write packet. It
301 is also used as a cap on the size of read/write packets. */
302
303static long remote_packet_size;
304/* compatibility. */
305#define PBUFSIZ (remote_packet_size)
306
307/* User configurable variables for the number of characters in a
308 memory read/write packet. MIN (PBUFSIZ, g-packet-size) is the
309 default. Some targets need smaller values (fifo overruns, et.al.)
310 and some users need larger values (speed up transfers). The
311 variables ``preferred_*'' (the user request), ``current_*'' (what
312 was actually set) and ``forced_*'' (Positive - a soft limit,
313 negative - a hard limit). */
314
315struct memory_packet_config
316{
317 char *name;
318 long size;
319 int fixed_p;
320};
321
322/* Compute the current size of a read/write packet. Since this makes
323 use of ``actual_register_packet_size'' the computation is dynamic. */
324
325static long
326get_memory_packet_size (struct memory_packet_config *config)
327{
328 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
329 law?) that some hosts don't cope very well with large alloca()
330 calls. Eventually the alloca() code will be replaced by calls to
331 xmalloc() and make_cleanups() allowing this restriction to either
332 be lifted or removed. */
333#ifndef MAX_REMOTE_PACKET_SIZE
334#define MAX_REMOTE_PACKET_SIZE 16384
335#endif
336 /* NOTE: 16 is just chosen at random. */
337#ifndef MIN_REMOTE_PACKET_SIZE
338#define MIN_REMOTE_PACKET_SIZE 16
339#endif
340 long what_they_get;
341 if (config->fixed_p)
342 {
343 if (config->size <= 0)
344 what_they_get = MAX_REMOTE_PACKET_SIZE;
345 else
346 what_they_get = config->size;
347 }
348 else
349 {
350 what_they_get = remote_packet_size;
351 /* Limit the packet to the size specified by the user. */
352 if (config->size > 0
353 && what_they_get > config->size)
354 what_they_get = config->size;
355 /* Limit it to the size of the targets ``g'' response. */
356 if (actual_register_packet_size > 0
357 && what_they_get > actual_register_packet_size)
358 what_they_get = actual_register_packet_size;
359 }
360 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
361 what_they_get = MAX_REMOTE_PACKET_SIZE;
362 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
363 what_they_get = MIN_REMOTE_PACKET_SIZE;
364 return what_they_get;
365}
366
367/* Update the size of a read/write packet. If they user wants
368 something really big then do a sanity check. */
369
370static void
371set_memory_packet_size (char *args, struct memory_packet_config *config)
372{
373 int fixed_p = config->fixed_p;
374 long size = config->size;
375 if (args == NULL)
376 error ("Argument required (integer, `fixed' or `limited').");
377 else if (strcmp (args, "hard") == 0
378 || strcmp (args, "fixed") == 0)
379 fixed_p = 1;
380 else if (strcmp (args, "soft") == 0
381 || strcmp (args, "limit") == 0)
382 fixed_p = 0;
383 else
384 {
385 char *end;
386 size = strtoul (args, &end, 0);
387 if (args == end)
388 error ("Invalid %s (bad syntax).", config->name);
389#if 0
390 /* Instead of explicitly capping the size of a packet to
391 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
392 instead allowed to set the size to something arbitrarily
393 large. */
394 if (size > MAX_REMOTE_PACKET_SIZE)
395 error ("Invalid %s (too large).", config->name);
396#endif
397 }
398 /* Extra checks? */
399 if (fixed_p && !config->fixed_p)
400 {
401 if (! query ("The target may not be able to correctly handle a %s\n"
402 "of %ld bytes. Change the packet size? ",
403 config->name, size))
404 error ("Packet size not changed.");
405 }
406 /* Update the config. */
407 config->fixed_p = fixed_p;
408 config->size = size;
409}
410
411static void
412show_memory_packet_size (struct memory_packet_config *config)
413{
414 printf_filtered ("The %s is %ld. ", config->name, config->size);
415 if (config->fixed_p)
416 printf_filtered ("Packets are fixed at %ld bytes.\n",
417 get_memory_packet_size (config));
418 else
419 printf_filtered ("Packets are limited to %ld bytes.\n",
420 get_memory_packet_size (config));
421}
422
423static struct memory_packet_config memory_write_packet_config =
424{
425 "memory-write-packet-size",
426};
427
428static void
429set_memory_write_packet_size (char *args, int from_tty)
430{
431 set_memory_packet_size (args, &memory_write_packet_config);
432}
433
434static void
435show_memory_write_packet_size (char *args, int from_tty)
436{
437 show_memory_packet_size (&memory_write_packet_config);
438}
439
440static long
441get_memory_write_packet_size (void)
442{
443 return get_memory_packet_size (&memory_write_packet_config);
444}
445
446static struct memory_packet_config memory_read_packet_config =
447{
448 "memory-read-packet-size",
449};
450
451static void
452set_memory_read_packet_size (char *args, int from_tty)
453{
454 set_memory_packet_size (args, &memory_read_packet_config);
455}
456
457static void
458show_memory_read_packet_size (char *args, int from_tty)
459{
460 show_memory_packet_size (&memory_read_packet_config);
461}
462
463static long
464get_memory_read_packet_size (void)
465{
466 long size = get_memory_packet_size (&memory_read_packet_config);
467 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
468 extra buffer size argument before the memory read size can be
469 increased beyond PBUFSIZ. */
470 if (size > PBUFSIZ)
471 size = PBUFSIZ;
472 return size;
473}
474
475/* Register packet size initialization. Since the bounds change when
476 the architecture changes (namely REGISTER_BYTES) this all needs to
477 be multi-arched. */
478
479static void
480register_remote_packet_sizes (void)
481{
482 REGISTER_GDBARCH_SWAP (remote_packet_size);
483 REGISTER_GDBARCH_SWAP (actual_register_packet_size);
484}
485
486static void
487build_remote_packet_sizes (void)
488{
c2d11a7d
JM
489 /* Default maximum number of characters in a packet body. Many
490 remote stubs have a hardwired buffer size of 400 bytes
491 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
492 as the maximum packet-size to ensure that the packet and an extra
493 NUL character can always fit in the buffer. This stops GDB
494 trashing stubs that try to squeeze an extra NUL into what is
495 already a full buffer (As of 1999-12-04 that was most stubs. */
496 remote_packet_size = 400 - 1;
11cf8741
JM
497 /* Should REGISTER_BYTES needs more space than the default, adjust
498 the size accordingly. Remember that each byte is encoded as two
499 characters. 32 is the overhead for the packet header /
500 footer. NOTE: cagney/1999-10-26: I suspect that 8
501 (``$NN:G...#NN'') is a better guess, the below has been padded a
502 little. */
503 if (REGISTER_BYTES > ((remote_packet_size - 32) / 2))
504 remote_packet_size = (REGISTER_BYTES * 2 + 32);
505
506 /* This one is filled in when a ``g'' packet is received. */
507 actual_register_packet_size = 0;
508}
509\f
5a2468f5
JM
510/* Generic configuration support for packets the stub optionally
511 supports. Allows the user to specify the use of the packet as well
512 as allowing GDB to auto-detect support in the remote stub. */
513
514enum packet_support
515 {
516 PACKET_SUPPORT_UNKNOWN = 0,
517 PACKET_ENABLE,
518 PACKET_DISABLE
519 };
520
521enum packet_detect
522 {
523 PACKET_AUTO_DETECT = 0,
524 PACKET_MANUAL_DETECT
525 };
526
527struct packet_config
528 {
53904c9e 529 const char *state;
5a2468f5
JM
530 char *name;
531 char *title;
532 enum packet_detect detect;
533 enum packet_support support;
534 };
535
53904c9e
AC
536static const char packet_support_auto[] = "auto";
537static const char packet_enable[] = "enable";
538static const char packet_disable[] = "disable";
539static const char *packet_support_enums[] =
5a2468f5
JM
540{
541 packet_support_auto,
542 packet_enable,
543 packet_disable,
544 0,
545};
546
547static void
548set_packet_config_cmd (config, c)
549 struct packet_config *config;
550 struct cmd_list_element *c;
551{
552 if (config->state == packet_enable)
553 {
554 config->detect = PACKET_MANUAL_DETECT;
555 config->support = PACKET_ENABLE;
556 }
557 else if (config->state == packet_disable)
558 {
559 config->detect = PACKET_MANUAL_DETECT;
560 config->support = PACKET_DISABLE;
561 }
562 else if (config->state == packet_support_auto)
563 {
564 config->detect = PACKET_AUTO_DETECT;
565 config->support = PACKET_SUPPORT_UNKNOWN;
566 }
567 else
96baa820 568 internal_error ("Bad enum value");
5a2468f5
JM
569}
570
571static void
572show_packet_config_cmd (config)
573 struct packet_config *config;
574{
575 char *support = "internal-error";
576 switch (config->support)
577 {
578 case PACKET_ENABLE:
579 support = "enabled";
580 break;
581 case PACKET_DISABLE:
582 support = "disabled";
583 break;
584 case PACKET_SUPPORT_UNKNOWN:
585 support = "unknown";
586 break;
587 }
588 switch (config->detect)
589 {
590 case PACKET_AUTO_DETECT:
591 printf_filtered ("Support for remote protocol `%s' (%s) packet is auto-detected, currently %s.\n",
592 config->name, config->title, support);
593 break;
594 case PACKET_MANUAL_DETECT:
595 printf_filtered ("Support for remote protocol `%s' (%s) is currently %s.\n",
596 config->name, config->title, support);
597 }
598}
599
600static void
601add_packet_config_cmd (config, name, title, set_func, show_func,
602 setlist, showlist)
603 struct packet_config *config;
604 char *name;
605 char *title;
507f3c78
KB
606 void (*set_func) (char *args, int from_tty, struct cmd_list_element * c);
607 void (*show_func) (char *name, int from_tty);
5a2468f5
JM
608 struct cmd_list_element **setlist;
609 struct cmd_list_element **showlist;
610{
611 struct cmd_list_element *c;
612 char *set_doc;
613 char *show_doc;
614 char *full_name;
615 config->name = name;
616 config->title = title;
617 asprintf (&set_doc, "Set use of remote protocol `%s' (%s) packet",
618 name, title);
619 asprintf (&show_doc, "Show current use of remote protocol `%s' (%s) packet",
620 name, title);
621 asprintf (&full_name, "%s-packet", name);
622 c = add_set_enum_cmd (full_name,
623 class_obscure, packet_support_enums,
1ed2a135 624 &config->state,
5a2468f5
JM
625 set_doc, setlist);
626 c->function.sfunc = set_func;
627 add_cmd (full_name, class_obscure, show_func, show_doc, showlist);
628}
629
630static void
631init_packet_config (config)
632 struct packet_config *config;
633{
634 switch (config->detect)
635 {
636 case PACKET_AUTO_DETECT:
637 config->support = PACKET_SUPPORT_UNKNOWN;
638 break;
639 case PACKET_MANUAL_DETECT:
640 /* let the user beware */
641 break;
642 }
643}
644
645/* Should we try the 'P' (set register) request? */
646
647static struct packet_config remote_protocol_P;
648
649static void
650set_remote_protocol_P_packet_cmd (args, from_tty, c)
651 char *args;
652 int from_tty;
653 struct cmd_list_element *c;
654{
655 set_packet_config_cmd (&remote_protocol_P, c);
656}
657
658static void
659show_remote_protocol_P_packet_cmd (args, from_tty)
660 char *args;
661 int from_tty;
662{
663 show_packet_config_cmd (&remote_protocol_P);
664}
665
96baa820
JM
666/* Should we try the 'Z' (set breakpoint) request? */
667
668static struct packet_config remote_protocol_Z;
669
670static void
671set_remote_protocol_Z_packet_cmd (args, from_tty, c)
672 char *args;
673 int from_tty;
674 struct cmd_list_element *c;
675{
676 set_packet_config_cmd (&remote_protocol_Z, c);
677}
678
679static void
680show_remote_protocol_Z_packet_cmd (args, from_tty)
681 char *args;
682 int from_tty;
683{
684 show_packet_config_cmd (&remote_protocol_Z);
685}
686
687/* Should we try the 'X' (remote binary download) packet?
688
689 This variable (available to the user via "set remote X-packet")
690 dictates whether downloads are sent in binary (via the 'X' packet).
691 We assume that the stub can, and attempt to do it. This will be
692 cleared if the stub does not understand it. This switch is still
693 needed, though in cases when the packet is supported in the stub,
694 but the connection does not allow it (i.e., 7-bit serial connection
695 only). */
696
697static struct packet_config remote_protocol_binary_download;
698
9d1f7ab2
MS
699/* Should we try the 'ThreadInfo' query packet?
700
701 This variable (NOT available to the user: auto-detect only!)
702 determines whether GDB will use the new, simpler "ThreadInfo"
703 query or the older, more complex syntax for thread queries.
704 This is an auto-detect variable (set to true at each connect,
705 and set to false when the target fails to recognize it). */
706
707static int use_threadinfo_query;
708static int use_threadextra_query;
709
96baa820
JM
710static void
711set_remote_protocol_binary_download_cmd (char *args,
712 int from_tty,
713 struct cmd_list_element *c)
714{
715 set_packet_config_cmd (&remote_protocol_binary_download, c);
716}
717
718static void
719show_remote_protocol_binary_download_cmd (char *args,
720 int from_tty)
721{
722 show_packet_config_cmd (&remote_protocol_binary_download);
723}
724
c906108c 725
43ff13b4
JM
726/* Tokens for use by the asynchronous signal handlers for SIGINT */
727PTR sigint_remote_twice_token;
728PTR sigint_remote_token;
729
c906108c
SS
730/* These are pointers to hook functions that may be set in order to
731 modify resume/wait behavior for a particular architecture. */
732
507f3c78
KB
733void (*target_resume_hook) (void);
734void (*target_wait_loop_hook) (void);
c906108c
SS
735\f
736
c5aa993b 737
c906108c
SS
738/* These are the threads which we last sent to the remote system.
739 -1 for all or -2 for not sent yet. */
740static int general_thread;
cce74817 741static int continue_thread;
c906108c
SS
742
743/* Call this function as a result of
744 1) A halt indication (T packet) containing a thread id
745 2) A direct query of currthread
746 3) Successful execution of set thread
747 */
748
749static void
750record_currthread (currthread)
751 int currthread;
752{
c906108c 753 general_thread = currthread;
cce74817 754
c906108c
SS
755 /* If this is a new thread, add it to GDB's thread list.
756 If we leave it up to WFI to do this, bad things will happen. */
757 if (!in_thread_list (currthread))
0f71a2f6
JM
758 {
759 add_thread (currthread);
8b93c638
JM
760#ifdef UI_OUT
761 ui_out_text (uiout, "[New ");
762 ui_out_text (uiout, target_pid_to_str (currthread));
763 ui_out_text (uiout, "]\n");
764#else
0f71a2f6 765 printf_filtered ("[New %s]\n", target_pid_to_str (currthread));
8b93c638 766#endif
0f71a2f6 767 }
c906108c
SS
768}
769
770#define MAGIC_NULL_PID 42000
771
772static void
773set_thread (th, gen)
774 int th;
775 int gen;
776{
085dd6e6 777 char *buf = alloca (PBUFSIZ);
cce74817 778 int state = gen ? general_thread : continue_thread;
c906108c
SS
779
780 if (state == th)
781 return;
782
783 buf[0] = 'H';
784 buf[1] = gen ? 'g' : 'c';
785 if (th == MAGIC_NULL_PID)
786 {
787 buf[2] = '0';
788 buf[3] = '\0';
789 }
790 else if (th < 0)
791 sprintf (&buf[2], "-%x", -th);
792 else
793 sprintf (&buf[2], "%x", th);
794 putpkt (buf);
c2d11a7d 795 getpkt (buf, PBUFSIZ, 0);
c906108c 796 if (gen)
c5aa993b 797 general_thread = th;
c906108c 798 else
cce74817 799 continue_thread = th;
c906108c
SS
800}
801\f
802/* Return nonzero if the thread TH is still alive on the remote system. */
803
804static int
cce74817
JM
805remote_thread_alive (tid)
806 int tid;
c906108c 807{
cce74817 808 char buf[16];
c906108c 809
cce74817
JM
810 if (tid < 0)
811 sprintf (buf, "T-%08x", -tid);
c906108c 812 else
cce74817 813 sprintf (buf, "T%08x", tid);
c906108c 814 putpkt (buf);
c2d11a7d 815 getpkt (buf, sizeof (buf), 0);
c906108c
SS
816 return (buf[0] == 'O' && buf[1] == 'K');
817}
818
819/* About these extended threadlist and threadinfo packets. They are
820 variable length packets but, the fields within them are often fixed
821 length. They are redundent enough to send over UDP as is the
822 remote protocol in general. There is a matching unit test module
823 in libstub. */
824
cce74817
JM
825#define OPAQUETHREADBYTES 8
826
827/* a 64 bit opaque identifier */
828typedef unsigned char threadref[OPAQUETHREADBYTES];
829
830/* WARNING: This threadref data structure comes from the remote O.S., libstub
831 protocol encoding, and remote.c. it is not particularly changable */
832
833/* Right now, the internal structure is int. We want it to be bigger.
834 Plan to fix this.
c5aa993b 835 */
cce74817 836
c5aa993b 837typedef int gdb_threadref; /* internal GDB thread reference */
cce74817 838
9d1f7ab2 839/* gdb_ext_thread_info is an internal GDB data structure which is
cce74817
JM
840 equivalint to the reply of the remote threadinfo packet */
841
842struct gdb_ext_thread_info
c5aa993b
JM
843 {
844 threadref threadid; /* External form of thread reference */
845 int active; /* Has state interesting to GDB? , regs, stack */
846 char display[256]; /* Brief state display, name, blocked/syspended */
847 char shortname[32]; /* To be used to name threads */
848 char more_display[256]; /* Long info, statistics, queue depth, whatever */
849 };
cce74817
JM
850
851/* The volume of remote transfers can be limited by submitting
852 a mask containing bits specifying the desired information.
853 Use a union of these values as the 'selection' parameter to
854 get_thread_info. FIXME: Make these TAG names more thread specific.
c5aa993b 855 */
cce74817
JM
856
857#define TAG_THREADID 1
858#define TAG_EXISTS 2
859#define TAG_DISPLAY 4
860#define TAG_THREADNAME 8
c5aa993b 861#define TAG_MOREDISPLAY 16
cce74817 862
c906108c
SS
863#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES*2)
864
a14ed312 865char *unpack_varlen_hex (char *buff, int *result);
cce74817 866
a14ed312 867static char *unpack_nibble (char *buf, int *val);
cce74817 868
a14ed312 869static char *pack_nibble (char *buf, int nibble);
cce74817 870
a14ed312 871static char *pack_hex_byte (char *pkt, int /*unsigned char */ byte);
cce74817 872
a14ed312 873static char *unpack_byte (char *buf, int *value);
cce74817 874
a14ed312 875static char *pack_int (char *buf, int value);
cce74817 876
a14ed312 877static char *unpack_int (char *buf, int *value);
cce74817 878
a14ed312 879static char *unpack_string (char *src, char *dest, int length);
cce74817 880
a14ed312 881static char *pack_threadid (char *pkt, threadref * id);
cce74817 882
a14ed312 883static char *unpack_threadid (char *inbuf, threadref * id);
cce74817 884
a14ed312 885void int_to_threadref (threadref * id, int value);
cce74817 886
a14ed312 887static int threadref_to_int (threadref * ref);
cce74817 888
a14ed312 889static void copy_threadref (threadref * dest, threadref * src);
cce74817 890
a14ed312 891static int threadmatch (threadref * dest, threadref * src);
cce74817 892
a14ed312 893static char *pack_threadinfo_request (char *pkt, int mode, threadref * id);
cce74817 894
a14ed312
KB
895static int remote_unpack_thread_info_response (char *pkt,
896 threadref * expectedref,
897 struct gdb_ext_thread_info
898 *info);
cce74817
JM
899
900
a14ed312
KB
901static int remote_get_threadinfo (threadref * threadid, int fieldset, /*TAG mask */
902 struct gdb_ext_thread_info *info);
cce74817 903
a14ed312
KB
904static int adapt_remote_get_threadinfo (gdb_threadref * ref,
905 int selection,
906 struct gdb_ext_thread_info *info);
cce74817 907
a14ed312
KB
908static char *pack_threadlist_request (char *pkt, int startflag,
909 int threadcount,
910 threadref * nextthread);
cce74817 911
a14ed312
KB
912static int parse_threadlist_response (char *pkt,
913 int result_limit,
914 threadref * original_echo,
915 threadref * resultlist, int *doneflag);
cce74817 916
a14ed312
KB
917static int remote_get_threadlist (int startflag,
918 threadref * nextthread,
919 int result_limit,
920 int *done,
921 int *result_count, threadref * threadlist);
cce74817 922
c5aa993b 923typedef int (*rmt_thread_action) (threadref * ref, void *context);
cce74817 924
a14ed312
KB
925static int remote_threadlist_iterator (rmt_thread_action stepfunction,
926 void *context, int looplimit);
cce74817 927
a14ed312 928static int remote_newthread_step (threadref * ref, void *context);
cce74817 929
c906108c
SS
930/* encode 64 bits in 16 chars of hex */
931
932static const char hexchars[] = "0123456789abcdef";
933
934static int
935ishex (ch, val)
936 int ch;
937 int *val;
938{
939 if ((ch >= 'a') && (ch <= 'f'))
940 {
941 *val = ch - 'a' + 10;
942 return 1;
943 }
944 if ((ch >= 'A') && (ch <= 'F'))
945 {
946 *val = ch - 'A' + 10;
947 return 1;
948 }
949 if ((ch >= '0') && (ch <= '9'))
950 {
951 *val = ch - '0';
952 return 1;
953 }
954 return 0;
955}
956
957static int
958stubhex (ch)
959 int ch;
960{
961 if (ch >= 'a' && ch <= 'f')
962 return ch - 'a' + 10;
963 if (ch >= '0' && ch <= '9')
964 return ch - '0';
965 if (ch >= 'A' && ch <= 'F')
966 return ch - 'A' + 10;
967 return -1;
968}
969
970static int
971stub_unpack_int (buff, fieldlength)
972 char *buff;
973 int fieldlength;
974{
975 int nibble;
976 int retval = 0;
977
978 while (fieldlength)
979 {
980 nibble = stubhex (*buff++);
981 retval |= nibble;
982 fieldlength--;
983 if (fieldlength)
984 retval = retval << 4;
985 }
986 return retval;
987}
988
989char *
990unpack_varlen_hex (buff, result)
991 char *buff; /* packet to parse */
992 int *result;
993{
994 int nibble;
995 int retval = 0;
996
997 while (ishex (*buff, &nibble))
998 {
999 buff++;
1000 retval = retval << 4;
1001 retval |= nibble & 0x0f;
1002 }
1003 *result = retval;
1004 return buff;
1005}
1006
1007static char *
1008unpack_nibble (buf, val)
1009 char *buf;
1010 int *val;
1011{
1012 ishex (*buf++, val);
1013 return buf;
1014}
1015
1016static char *
1017pack_nibble (buf, nibble)
1018 char *buf;
1019 int nibble;
1020{
1021 *buf++ = hexchars[(nibble & 0x0f)];
1022 return buf;
1023}
1024
1025static char *
1026pack_hex_byte (pkt, byte)
1027 char *pkt;
1028 int byte;
1029{
1030 *pkt++ = hexchars[(byte >> 4) & 0xf];
1031 *pkt++ = hexchars[(byte & 0xf)];
1032 return pkt;
1033}
1034
1035static char *
1036unpack_byte (buf, value)
1037 char *buf;
1038 int *value;
1039{
1040 *value = stub_unpack_int (buf, 2);
1041 return buf + 2;
1042}
1043
1044static char *
1045pack_int (buf, value)
1046 char *buf;
1047 int value;
1048{
1049 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
1050 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
1051 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
1052 buf = pack_hex_byte (buf, (value & 0xff));
1053 return buf;
1054}
1055
1056static char *
1057unpack_int (buf, value)
1058 char *buf;
1059 int *value;
1060{
1061 *value = stub_unpack_int (buf, 8);
1062 return buf + 8;
1063}
1064
c5aa993b 1065#if 0 /* currently unused, uncomment when needed */
a14ed312 1066static char *pack_string (char *pkt, char *string);
c906108c
SS
1067
1068static char *
1069pack_string (pkt, string)
1070 char *pkt;
1071 char *string;
1072{
1073 char ch;
1074 int len;
1075
1076 len = strlen (string);
1077 if (len > 200)
1078 len = 200; /* Bigger than most GDB packets, junk??? */
1079 pkt = pack_hex_byte (pkt, len);
1080 while (len-- > 0)
1081 {
1082 ch = *string++;
1083 if ((ch == '\0') || (ch == '#'))
1084 ch = '*'; /* Protect encapsulation */
1085 *pkt++ = ch;
1086 }
1087 return pkt;
1088}
1089#endif /* 0 (unused) */
1090
1091static char *
1092unpack_string (src, dest, length)
1093 char *src;
1094 char *dest;
1095 int length;
1096{
1097 while (length--)
1098 *dest++ = *src++;
1099 *dest = '\0';
1100 return src;
1101}
1102
1103static char *
1104pack_threadid (pkt, id)
1105 char *pkt;
1106 threadref *id;
1107{
1108 char *limit;
1109 unsigned char *altid;
1110
1111 altid = (unsigned char *) id;
1112 limit = pkt + BUF_THREAD_ID_SIZE;
1113 while (pkt < limit)
1114 pkt = pack_hex_byte (pkt, *altid++);
1115 return pkt;
1116}
1117
1118
1119static char *
1120unpack_threadid (inbuf, id)
1121 char *inbuf;
1122 threadref *id;
1123{
1124 char *altref;
1125 char *limit = inbuf + BUF_THREAD_ID_SIZE;
1126 int x, y;
1127
1128 altref = (char *) id;
1129
1130 while (inbuf < limit)
1131 {
1132 x = stubhex (*inbuf++);
1133 y = stubhex (*inbuf++);
1134 *altref++ = (x << 4) | y;
1135 }
1136 return inbuf;
1137}
1138
1139/* Externally, threadrefs are 64 bits but internally, they are still
1140 ints. This is due to a mismatch of specifications. We would like
1141 to use 64bit thread references internally. This is an adapter
1142 function. */
1143
1144void
1145int_to_threadref (id, value)
1146 threadref *id;
1147 int value;
1148{
1149 unsigned char *scan;
1150
1151 scan = (unsigned char *) id;
1152 {
1153 int i = 4;
1154 while (i--)
1155 *scan++ = 0;
1156 }
1157 *scan++ = (value >> 24) & 0xff;
1158 *scan++ = (value >> 16) & 0xff;
1159 *scan++ = (value >> 8) & 0xff;
1160 *scan++ = (value & 0xff);
1161}
1162
1163static int
1164threadref_to_int (ref)
1165 threadref *ref;
1166{
1167 int i, value = 0;
1168 unsigned char *scan;
1169
1170 scan = (char *) ref;
1171 scan += 4;
1172 i = 4;
1173 while (i-- > 0)
1174 value = (value << 8) | ((*scan++) & 0xff);
1175 return value;
1176}
1177
1178static void
1179copy_threadref (dest, src)
1180 threadref *dest;
1181 threadref *src;
1182{
1183 int i;
1184 unsigned char *csrc, *cdest;
1185
1186 csrc = (unsigned char *) src;
1187 cdest = (unsigned char *) dest;
1188 i = 8;
1189 while (i--)
1190 *cdest++ = *csrc++;
1191}
1192
1193static int
1194threadmatch (dest, src)
1195 threadref *dest;
1196 threadref *src;
1197{
1198 /* things are broken right now, so just assume we got a match */
1199#if 0
1200 unsigned char *srcp, *destp;
1201 int i, result;
1202 srcp = (char *) src;
1203 destp = (char *) dest;
1204
1205 result = 1;
1206 while (i-- > 0)
1207 result &= (*srcp++ == *destp++) ? 1 : 0;
1208 return result;
1209#endif
1210 return 1;
1211}
1212
1213/*
c5aa993b
JM
1214 threadid:1, # always request threadid
1215 context_exists:2,
1216 display:4,
1217 unique_name:8,
1218 more_display:16
1219 */
c906108c
SS
1220
1221/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
1222
1223static char *
1224pack_threadinfo_request (pkt, mode, id)
1225 char *pkt;
1226 int mode;
1227 threadref *id;
1228{
1229 *pkt++ = 'q'; /* Info Query */
1230 *pkt++ = 'P'; /* process or thread info */
1231 pkt = pack_int (pkt, mode); /* mode */
1232 pkt = pack_threadid (pkt, id); /* threadid */
1233 *pkt = '\0'; /* terminate */
1234 return pkt;
1235}
1236
1237/* These values tag the fields in a thread info response packet */
1238/* Tagging the fields allows us to request specific fields and to
1239 add more fields as time goes by */
1240
c5aa993b
JM
1241#define TAG_THREADID 1 /* Echo the thread identifier */
1242#define TAG_EXISTS 2 /* Is this process defined enough to
1243 fetch registers and its stack */
1244#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
1245#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is */
1246#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
1247 the process */
c906108c
SS
1248
1249static int
1250remote_unpack_thread_info_response (pkt, expectedref, info)
1251 char *pkt;
1252 threadref *expectedref;
1253 struct gdb_ext_thread_info *info;
1254{
1255 int mask, length;
1256 unsigned int tag;
1257 threadref ref;
c5aa993b 1258 char *limit = pkt + PBUFSIZ; /* plausable parsing limit */
c906108c
SS
1259 int retval = 1;
1260
1261 /* info->threadid = 0; FIXME: implement zero_threadref */
1262 info->active = 0;
1263 info->display[0] = '\0';
1264 info->shortname[0] = '\0';
1265 info->more_display[0] = '\0';
1266
1267 /* Assume the characters indicating the packet type have been stripped */
1268 pkt = unpack_int (pkt, &mask); /* arg mask */
1269 pkt = unpack_threadid (pkt, &ref);
1270
1271 if (mask == 0)
1272 warning ("Incomplete response to threadinfo request\n");
1273 if (!threadmatch (&ref, expectedref))
1274 { /* This is an answer to a different request */
1275 warning ("ERROR RMT Thread info mismatch\n");
1276 return 0;
1277 }
1278 copy_threadref (&info->threadid, &ref);
1279
1280 /* Loop on tagged fields , try to bail if somthing goes wrong */
1281
c5aa993b 1282 while ((pkt < limit) && mask && *pkt) /* packets are terminated with nulls */
c906108c
SS
1283 {
1284 pkt = unpack_int (pkt, &tag); /* tag */
1285 pkt = unpack_byte (pkt, &length); /* length */
1286 if (!(tag & mask)) /* tags out of synch with mask */
1287 {
1288 warning ("ERROR RMT: threadinfo tag mismatch\n");
1289 retval = 0;
1290 break;
1291 }
1292 if (tag == TAG_THREADID)
1293 {
1294 if (length != 16)
1295 {
1296 warning ("ERROR RMT: length of threadid is not 16\n");
1297 retval = 0;
1298 break;
1299 }
1300 pkt = unpack_threadid (pkt, &ref);
1301 mask = mask & ~TAG_THREADID;
1302 continue;
1303 }
1304 if (tag == TAG_EXISTS)
1305 {
1306 info->active = stub_unpack_int (pkt, length);
1307 pkt += length;
1308 mask = mask & ~(TAG_EXISTS);
1309 if (length > 8)
1310 {
1311 warning ("ERROR RMT: 'exists' length too long\n");
1312 retval = 0;
1313 break;
1314 }
1315 continue;
1316 }
1317 if (tag == TAG_THREADNAME)
1318 {
1319 pkt = unpack_string (pkt, &info->shortname[0], length);
1320 mask = mask & ~TAG_THREADNAME;
1321 continue;
1322 }
1323 if (tag == TAG_DISPLAY)
1324 {
1325 pkt = unpack_string (pkt, &info->display[0], length);
1326 mask = mask & ~TAG_DISPLAY;
1327 continue;
1328 }
1329 if (tag == TAG_MOREDISPLAY)
1330 {
1331 pkt = unpack_string (pkt, &info->more_display[0], length);
1332 mask = mask & ~TAG_MOREDISPLAY;
1333 continue;
1334 }
1335 warning ("ERROR RMT: unknown thread info tag\n");
1336 break; /* Not a tag we know about */
1337 }
1338 return retval;
1339}
1340
1341static int
1342remote_get_threadinfo (threadid, fieldset, info)
1343 threadref *threadid;
1344 int fieldset; /* TAG mask */
1345 struct gdb_ext_thread_info *info;
1346{
1347 int result;
085dd6e6 1348 char *threadinfo_pkt = alloca (PBUFSIZ);
c906108c
SS
1349
1350 pack_threadinfo_request (threadinfo_pkt, fieldset, threadid);
1351 putpkt (threadinfo_pkt);
c2d11a7d 1352 getpkt (threadinfo_pkt, PBUFSIZ, 0);
c906108c
SS
1353 result = remote_unpack_thread_info_response (threadinfo_pkt + 2, threadid,
1354 info);
1355 return result;
1356}
1357
1358/* Unfortunately, 61 bit thread-ids are bigger than the internal
1359 representation of a threadid. */
1360
1361static int
1362adapt_remote_get_threadinfo (ref, selection, info)
1363 gdb_threadref *ref;
1364 int selection;
1365 struct gdb_ext_thread_info *info;
1366{
1367 threadref lclref;
1368
1369 int_to_threadref (&lclref, *ref);
1370 return remote_get_threadinfo (&lclref, selection, info);
1371}
1372
1373/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
1374
1375static char *
1376pack_threadlist_request (pkt, startflag, threadcount, nextthread)
1377 char *pkt;
1378 int startflag;
1379 int threadcount;
1380 threadref *nextthread;
1381{
1382 *pkt++ = 'q'; /* info query packet */
1383 *pkt++ = 'L'; /* Process LIST or threadLIST request */
1384 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
1385 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
1386 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
1387 *pkt = '\0';
1388 return pkt;
1389}
1390
1391/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
1392
1393static int
1394parse_threadlist_response (pkt, result_limit, original_echo, resultlist,
1395 doneflag)
1396 char *pkt;
1397 int result_limit;
1398 threadref *original_echo;
1399 threadref *resultlist;
1400 int *doneflag;
1401{
1402 char *limit;
1403 int count, resultcount, done;
1404
1405 resultcount = 0;
1406 /* Assume the 'q' and 'M chars have been stripped. */
c5aa993b 1407 limit = pkt + (PBUFSIZ - BUF_THREAD_ID_SIZE); /* done parse past here */
c906108c
SS
1408 pkt = unpack_byte (pkt, &count); /* count field */
1409 pkt = unpack_nibble (pkt, &done);
1410 /* The first threadid is the argument threadid. */
1411 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
1412 while ((count-- > 0) && (pkt < limit))
1413 {
1414 pkt = unpack_threadid (pkt, resultlist++);
1415 if (resultcount++ >= result_limit)
1416 break;
1417 }
1418 if (doneflag)
1419 *doneflag = done;
1420 return resultcount;
1421}
1422
1423static int
1424remote_get_threadlist (startflag, nextthread, result_limit,
1425 done, result_count, threadlist)
1426 int startflag;
1427 threadref *nextthread;
1428 int result_limit;
1429 int *done;
1430 int *result_count;
1431 threadref *threadlist;
1432
1433{
1434 static threadref echo_nextthread;
085dd6e6
JM
1435 char *threadlist_packet = alloca (PBUFSIZ);
1436 char *t_response = alloca (PBUFSIZ);
c906108c
SS
1437 int result = 1;
1438
1439 /* Trancate result limit to be smaller than the packet size */
1440 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= PBUFSIZ)
1441 result_limit = (PBUFSIZ / BUF_THREAD_ID_SIZE) - 2;
1442
1443 pack_threadlist_request (threadlist_packet,
1444 startflag, result_limit, nextthread);
1445 putpkt (threadlist_packet);
c2d11a7d 1446 getpkt (t_response, PBUFSIZ, 0);
c906108c
SS
1447
1448 *result_count =
1449 parse_threadlist_response (t_response + 2, result_limit, &echo_nextthread,
1450 threadlist, done);
1451
1452 if (!threadmatch (&echo_nextthread, nextthread))
1453 {
1454 /* FIXME: This is a good reason to drop the packet */
1455 /* Possably, there is a duplicate response */
1456 /* Possabilities :
1457 retransmit immediatly - race conditions
1458 retransmit after timeout - yes
1459 exit
1460 wait for packet, then exit
1461 */
1462 warning ("HMM: threadlist did not echo arg thread, dropping it\n");
1463 return 0; /* I choose simply exiting */
1464 }
1465 if (*result_count <= 0)
1466 {
1467 if (*done != 1)
1468 {
1469 warning ("RMT ERROR : failed to get remote thread list\n");
1470 result = 0;
1471 }
1472 return result; /* break; */
1473 }
1474 if (*result_count > result_limit)
1475 {
1476 *result_count = 0;
1477 warning ("RMT ERROR: threadlist response longer than requested\n");
1478 return 0;
1479 }
1480 return result;
1481}
1482
1483/* This is the interface between remote and threads, remotes upper interface */
1484
1485/* remote_find_new_threads retrieves the thread list and for each
1486 thread in the list, looks up the thread in GDB's internal list,
1487 ading the thread if it does not already exist. This involves
1488 getting partial thread lists from the remote target so, polling the
1489 quit_flag is required. */
1490
1491
1492/* About this many threadisds fit in a packet. */
1493
1494#define MAXTHREADLISTRESULTS 32
1495
1496static int
1497remote_threadlist_iterator (stepfunction, context, looplimit)
1498 rmt_thread_action stepfunction;
1499 void *context;
1500 int looplimit;
1501{
1502 int done, i, result_count;
1503 int startflag = 1;
1504 int result = 1;
1505 int loopcount = 0;
1506 static threadref nextthread;
1507 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
1508
1509 done = 0;
1510 while (!done)
1511 {
1512 if (loopcount++ > looplimit)
1513 {
1514 result = 0;
1515 warning ("Remote fetch threadlist -infinite loop-\n");
1516 break;
1517 }
1518 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
1519 &done, &result_count, resultthreadlist))
1520 {
1521 result = 0;
1522 break;
1523 }
1524 /* clear for later iterations */
1525 startflag = 0;
1526 /* Setup to resume next batch of thread references, set nextthread. */
1527 if (result_count >= 1)
1528 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
1529 i = 0;
1530 while (result_count--)
1531 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
1532 break;
1533 }
1534 return result;
1535}
1536
1537static int
1538remote_newthread_step (ref, context)
1539 threadref *ref;
1540 void *context;
1541{
1542 int pid;
1543
1544 pid = threadref_to_int (ref);
1545 if (!in_thread_list (pid))
1546 add_thread (pid);
1547 return 1; /* continue iterator */
1548}
1549
1550#define CRAZY_MAX_THREADS 1000
1551
1552static int
1553remote_current_thread (oldpid)
1554 int oldpid;
1555{
085dd6e6 1556 char *buf = alloca (PBUFSIZ);
c906108c
SS
1557
1558 putpkt ("qC");
c2d11a7d 1559 getpkt (buf, PBUFSIZ, 0);
c906108c
SS
1560 if (buf[0] == 'Q' && buf[1] == 'C')
1561 return strtol (&buf[2], NULL, 16);
1562 else
1563 return oldpid;
1564}
1565
9d1f7ab2
MS
1566/* Find new threads for info threads command.
1567 * Original version, using John Metzler's thread protocol.
1568 */
cce74817
JM
1569
1570static void
c906108c
SS
1571remote_find_new_threads ()
1572{
c5aa993b
JM
1573 remote_threadlist_iterator (remote_newthread_step, 0,
1574 CRAZY_MAX_THREADS);
c906108c
SS
1575 if (inferior_pid == MAGIC_NULL_PID) /* ack ack ack */
1576 inferior_pid = remote_current_thread (inferior_pid);
c906108c
SS
1577}
1578
9d1f7ab2
MS
1579/*
1580 * Find all threads for info threads command.
1581 * Uses new thread protocol contributed by Cisco.
1582 * Falls back and attempts to use the older method (above)
1583 * if the target doesn't respond to the new method.
1584 */
1585
0f71a2f6
JM
1586static void
1587remote_threads_info (void)
1588{
085dd6e6
JM
1589 char *buf = alloca (PBUFSIZ);
1590 char *bufp;
0f71a2f6
JM
1591 int tid;
1592
1593 if (remote_desc == 0) /* paranoia */
1594 error ("Command can only be used when connected to the remote target.");
1595
9d1f7ab2
MS
1596 if (use_threadinfo_query)
1597 {
1598 putpkt ("qfThreadInfo");
1599 bufp = buf;
1600 getpkt (bufp, PBUFSIZ, 0);
1601 if (bufp[0] != '\0') /* q packet recognized */
1602 {
1603 while (*bufp++ == 'm') /* reply contains one or more TID */
1604 {
1605 do
1606 {
1607 tid = strtol (bufp, &bufp, 16);
1608 if (tid != 0 && !in_thread_list (tid))
1609 add_thread (tid);
1610 }
1611 while (*bufp++ == ','); /* comma-separated list */
1612 putpkt ("qsThreadInfo");
1613 bufp = buf;
1614 getpkt (bufp, PBUFSIZ, 0);
1615 }
1616 return; /* done */
1617 }
1618 }
1619
1620 /* Else fall back to old method based on jmetzler protocol. */
1621 use_threadinfo_query = 0;
1622 remote_find_new_threads ();
1623 return;
1624}
1625
1626/*
1627 * Collect a descriptive string about the given thread.
1628 * The target may say anything it wants to about the thread
1629 * (typically info about its blocked / runnable state, name, etc.).
1630 * This string will appear in the info threads display.
1631 *
1632 * Optional: targets are not required to implement this function.
1633 */
1634
1635static char *
1636remote_threads_extra_info (struct thread_info *tp)
1637{
1638 int result;
1639 int set;
1640 threadref id;
1641 struct gdb_ext_thread_info threadinfo;
1642 static char display_buf[100]; /* arbitrary... */
1643 char *bufp = alloca (PBUFSIZ);
1644 int n = 0; /* position in display_buf */
1645
1646 if (remote_desc == 0) /* paranoia */
1647 internal_error ("remote_threads_extra_info");
1648
1649 if (use_threadextra_query)
1650 {
480ff1fb 1651 sprintf (bufp, "qThreadExtraInfo,%x", tp->pid);
9d1f7ab2
MS
1652 putpkt (bufp);
1653 getpkt (bufp, PBUFSIZ, 0);
1654 if (bufp[0] != 0)
1655 {
1656 char *p;
1657
1658 for (p = display_buf;
1659 p < display_buf + sizeof(display_buf) - 1 &&
1660 bufp[0] != 0 &&
1661 bufp[1] != 0;
1662 p++, bufp+=2)
1663 {
1664 *p = fromhex (bufp[0]) * 16 + fromhex (bufp[1]);
1665 }
1666 *p = 0;
1667 return display_buf;
1668 }
0f71a2f6 1669 }
9d1f7ab2
MS
1670
1671 /* If the above query fails, fall back to the old method. */
1672 use_threadextra_query = 0;
1673 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
1674 | TAG_MOREDISPLAY | TAG_DISPLAY;
1675 int_to_threadref (&id, tp->pid);
1676 if (remote_get_threadinfo (&id, set, &threadinfo))
1677 if (threadinfo.active)
0f71a2f6 1678 {
9d1f7ab2
MS
1679 if (*threadinfo.shortname)
1680 n += sprintf(&display_buf[0], " Name: %s,", threadinfo.shortname);
1681 if (*threadinfo.display)
1682 n += sprintf(&display_buf[n], " State: %s,", threadinfo.display);
1683 if (*threadinfo.more_display)
1684 n += sprintf(&display_buf[n], " Priority: %s",
1685 threadinfo.more_display);
1686
1687 if (n > 0)
c5aa993b 1688 {
9d1f7ab2
MS
1689 /* for purely cosmetic reasons, clear up trailing commas */
1690 if (',' == display_buf[n-1])
1691 display_buf[n-1] = ' ';
1692 return display_buf;
c5aa993b 1693 }
0f71a2f6 1694 }
9d1f7ab2 1695 return NULL;
0f71a2f6 1696}
9d1f7ab2 1697
c906108c 1698\f
c5aa993b 1699
c906108c
SS
1700/* Restart the remote side; this is an extended protocol operation. */
1701
1702static void
1703extended_remote_restart ()
1704{
085dd6e6 1705 char *buf = alloca (PBUFSIZ);
c906108c
SS
1706
1707 /* Send the restart command; for reasons I don't understand the
1708 remote side really expects a number after the "R". */
1709 buf[0] = 'R';
1710 sprintf (&buf[1], "%x", 0);
1711 putpkt (buf);
1712
1713 /* Now query for status so this looks just like we restarted
1714 gdbserver from scratch. */
1715 putpkt ("?");
c2d11a7d 1716 getpkt (buf, PBUFSIZ, 0);
c906108c
SS
1717}
1718\f
1719/* Clean up connection to a remote debugger. */
1720
1721/* ARGSUSED */
1722static void
1723remote_close (quitting)
1724 int quitting;
1725{
1726 if (remote_desc)
1727 SERIAL_CLOSE (remote_desc);
1728 remote_desc = NULL;
1729}
1730
1731/* Query the remote side for the text, data and bss offsets. */
1732
1733static void
1734get_offsets ()
1735{
085dd6e6
JM
1736 char *buf = alloca (PBUFSIZ);
1737 char *ptr;
c906108c
SS
1738 int lose;
1739 CORE_ADDR text_addr, data_addr, bss_addr;
1740 struct section_offsets *offs;
1741
1742 putpkt ("qOffsets");
1743
c2d11a7d 1744 getpkt (buf, PBUFSIZ, 0);
c906108c
SS
1745
1746 if (buf[0] == '\000')
1747 return; /* Return silently. Stub doesn't support
1748 this command. */
1749 if (buf[0] == 'E')
1750 {
1751 warning ("Remote failure reply: %s", buf);
1752 return;
1753 }
1754
1755 /* Pick up each field in turn. This used to be done with scanf, but
1756 scanf will make trouble if CORE_ADDR size doesn't match
1757 conversion directives correctly. The following code will work
1758 with any size of CORE_ADDR. */
1759 text_addr = data_addr = bss_addr = 0;
1760 ptr = buf;
1761 lose = 0;
1762
1763 if (strncmp (ptr, "Text=", 5) == 0)
1764 {
1765 ptr += 5;
1766 /* Don't use strtol, could lose on big values. */
1767 while (*ptr && *ptr != ';')
1768 text_addr = (text_addr << 4) + fromhex (*ptr++);
1769 }
1770 else
1771 lose = 1;
1772
1773 if (!lose && strncmp (ptr, ";Data=", 6) == 0)
1774 {
1775 ptr += 6;
1776 while (*ptr && *ptr != ';')
1777 data_addr = (data_addr << 4) + fromhex (*ptr++);
1778 }
1779 else
1780 lose = 1;
1781
1782 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
1783 {
1784 ptr += 5;
1785 while (*ptr && *ptr != ';')
1786 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
1787 }
1788 else
1789 lose = 1;
1790
1791 if (lose)
1792 error ("Malformed response to offset query, %s", buf);
1793
1794 if (symfile_objfile == NULL)
1795 return;
1796
d4f3574e
SS
1797 offs = (struct section_offsets *) alloca (SIZEOF_SECTION_OFFSETS);
1798 memcpy (offs, symfile_objfile->section_offsets, SIZEOF_SECTION_OFFSETS);
c906108c 1799
b8fbeb18 1800 ANOFFSET (offs, SECT_OFF_TEXT (symfile_objfile)) = text_addr;
c906108c
SS
1801
1802 /* This is a temporary kludge to force data and bss to use the same offsets
1803 because that's what nlmconv does now. The real solution requires changes
1804 to the stub and remote.c that I don't have time to do right now. */
1805
b8fbeb18
EZ
1806 ANOFFSET (offs, SECT_OFF_DATA (symfile_objfile)) = data_addr;
1807 ANOFFSET (offs, SECT_OFF_BSS (symfile_objfile)) = data_addr;
c906108c
SS
1808
1809 objfile_relocate (symfile_objfile, offs);
1810}
1811
0f71a2f6
JM
1812/*
1813 * Cisco version of section offsets:
1814 *
1815 * Instead of having GDB query the target for the section offsets,
1816 * Cisco lets the target volunteer the information! It's also in
1817 * a different format, so here are the functions that will decode
1818 * a section offset packet from a Cisco target.
1819 */
1820
1821/*
1822 * Function: remote_cisco_section_offsets
1823 *
1824 * Returns: zero for success, non-zero for failure
1825 */
1826
c5aa993b 1827static int
c2d11a7d
JM
1828remote_cisco_section_offsets (bfd_vma text_addr,
1829 bfd_vma data_addr,
1830 bfd_vma bss_addr,
1831 bfd_signed_vma *text_offs,
1832 bfd_signed_vma *data_offs,
1833 bfd_signed_vma *bss_offs)
0f71a2f6
JM
1834{
1835 bfd_vma text_base, data_base, bss_base;
1836 struct minimal_symbol *start;
1837 asection *sect;
c5aa993b 1838 bfd *abfd;
0f71a2f6
JM
1839 int len;
1840 char *p;
1841
1842 if (symfile_objfile == NULL)
c5aa993b 1843 return -1; /* no can do nothin' */
0f71a2f6
JM
1844
1845 start = lookup_minimal_symbol ("_start", NULL, NULL);
1846 if (start == NULL)
c5aa993b 1847 return -1; /* Can't find "_start" symbol */
0f71a2f6
JM
1848
1849 data_base = bss_base = 0;
1850 text_base = SYMBOL_VALUE_ADDRESS (start);
1851
1852 abfd = symfile_objfile->obfd;
c5aa993b 1853 for (sect = abfd->sections;
0f71a2f6
JM
1854 sect != 0;
1855 sect = sect->next)
1856 {
c5aa993b 1857 p = (unsigned char *) bfd_get_section_name (abfd, sect);
0f71a2f6
JM
1858 len = strlen (p);
1859 if (strcmp (p + len - 4, "data") == 0) /* ends in "data" */
1860 if (data_base == 0 ||
1861 data_base > bfd_get_section_vma (abfd, sect))
1862 data_base = bfd_get_section_vma (abfd, sect);
1863 if (strcmp (p + len - 3, "bss") == 0) /* ends in "bss" */
c5aa993b 1864 if (bss_base == 0 ||
0f71a2f6
JM
1865 bss_base > bfd_get_section_vma (abfd, sect))
1866 bss_base = bfd_get_section_vma (abfd, sect);
1867 }
1868 *text_offs = text_addr - text_base;
1869 *data_offs = data_addr - data_base;
c5aa993b 1870 *bss_offs = bss_addr - bss_base;
0f71a2f6
JM
1871 if (remote_debug)
1872 {
1873 char tmp[128];
1874
1875 sprintf (tmp, "VMA: text = 0x");
1876 sprintf_vma (tmp + strlen (tmp), text_addr);
c5aa993b 1877 sprintf (tmp + strlen (tmp), " data = 0x");
0f71a2f6 1878 sprintf_vma (tmp + strlen (tmp), data_addr);
c5aa993b 1879 sprintf (tmp + strlen (tmp), " bss = 0x");
0f71a2f6
JM
1880 sprintf_vma (tmp + strlen (tmp), bss_addr);
1881 fprintf_filtered (gdb_stdlog, tmp);
1882 fprintf_filtered (gdb_stdlog,
d4f3574e
SS
1883 "Reloc offset: text = 0x%s data = 0x%s bss = 0x%s\n",
1884 paddr_nz (*text_offs),
1885 paddr_nz (*data_offs),
1886 paddr_nz (*bss_offs));
0f71a2f6
JM
1887 }
1888
1889 return 0;
1890}
1891
1892/*
1893 * Function: remote_cisco_objfile_relocate
1894 *
1895 * Relocate the symbol file for a remote target.
1896 */
1897
96baa820 1898void
0f71a2f6
JM
1899remote_cisco_objfile_relocate (text_off, data_off, bss_off)
1900 bfd_signed_vma text_off;
1901 bfd_signed_vma data_off;
1902 bfd_signed_vma bss_off;
1903{
1904 struct section_offsets *offs;
1905
c5aa993b 1906 if (text_off != 0 || data_off != 0 || bss_off != 0)
0f71a2f6
JM
1907 {
1908 /* FIXME: This code assumes gdb-stabs.h is being used; it's
c5aa993b
JM
1909 broken for xcoff, dwarf, sdb-coff, etc. But there is no
1910 simple canonical representation for this stuff. */
0f71a2f6 1911
d4f3574e
SS
1912 offs = (struct section_offsets *) alloca (SIZEOF_SECTION_OFFSETS);
1913 memcpy (offs, symfile_objfile->section_offsets, SIZEOF_SECTION_OFFSETS);
0f71a2f6 1914
b8fbeb18
EZ
1915 ANOFFSET (offs, SECT_OFF_TEXT (symfile_objfile)) = text_off;
1916 ANOFFSET (offs, SECT_OFF_DATA (symfile_objfile)) = data_off;
1917 ANOFFSET (offs, SECT_OFF_BSS (symfile_objfile)) = bss_off;
0f71a2f6
JM
1918
1919 /* First call the standard objfile_relocate. */
1920 objfile_relocate (symfile_objfile, offs);
1921
1922 /* Now we need to fix up the section entries already attached to
c5aa993b
JM
1923 the exec target. These entries will control memory transfers
1924 from the exec file. */
0f71a2f6
JM
1925
1926 exec_set_section_offsets (text_off, data_off, bss_off);
1927 }
1928}
1929
c906108c
SS
1930/* Stub for catch_errors. */
1931
0f71a2f6 1932static int
c2d11a7d 1933remote_start_remote_dummy (void *dummy)
0f71a2f6
JM
1934{
1935 start_remote (); /* Initialize gdb process mechanisms */
1936 return 1;
1937}
1938
c906108c
SS
1939static int
1940remote_start_remote (dummy)
1941 PTR dummy;
1942{
1943 immediate_quit = 1; /* Allow user to interrupt it */
1944
1945 /* Ack any packet which the remote side has already sent. */
1946 SERIAL_WRITE (remote_desc, "+", 1);
1947
1948 /* Let the stub know that we want it to return the thread. */
1949 set_thread (-1, 0);
1950
1951 inferior_pid = remote_current_thread (inferior_pid);
1952
1953 get_offsets (); /* Get text, data & bss offsets */
1954
1955 putpkt ("?"); /* initiate a query from remote machine */
1956 immediate_quit = 0;
1957
0f71a2f6 1958 return remote_start_remote_dummy (dummy);
c906108c
SS
1959}
1960
1961/* Open a connection to a remote debugger.
1962 NAME is the filename used for communication. */
1963
1964static void
1965remote_open (name, from_tty)
1966 char *name;
1967 int from_tty;
1968{
1969 remote_open_1 (name, from_tty, &remote_ops, 0);
1970}
1971
43ff13b4
JM
1972/* Just like remote_open, but with asynchronous support. */
1973static void
1974remote_async_open (name, from_tty)
1975 char *name;
1976 int from_tty;
1977{
1978 remote_async_open_1 (name, from_tty, &remote_async_ops, 0);
1979}
1980
c906108c
SS
1981/* Open a connection to a remote debugger using the extended
1982 remote gdb protocol. NAME is the filename used for communication. */
1983
1984static void
1985extended_remote_open (name, from_tty)
1986 char *name;
1987 int from_tty;
1988{
c5aa993b 1989 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */ );
c906108c
SS
1990}
1991
43ff13b4
JM
1992/* Just like extended_remote_open, but with asynchronous support. */
1993static void
1994extended_remote_async_open (name, from_tty)
1995 char *name;
1996 int from_tty;
1997{
c5aa993b 1998 remote_async_open_1 (name, from_tty, &extended_async_remote_ops, 1 /*extended_p */ );
43ff13b4
JM
1999}
2000
c906108c
SS
2001/* Generic code for opening a connection to a remote target. */
2002
2003static DCACHE *remote_dcache;
2004
2005static void
2006remote_open_1 (name, from_tty, target, extended_p)
2007 char *name;
2008 int from_tty;
2009 struct target_ops *target;
2010 int extended_p;
2011{
2012 if (name == 0)
2013 error ("To open a remote debug connection, you need to specify what\n\
0d06e24b
JM
2014serial device is attached to the remote system\n\
2015(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
c906108c 2016
6426a772
JM
2017 /* See FIXME above */
2018 wait_forever_enabled_p = 1;
2019
c906108c
SS
2020 target_preopen (from_tty);
2021
2022 unpush_target (target);
2023
2024 remote_dcache = dcache_init (remote_read_bytes, remote_write_bytes);
2025
2026 remote_desc = SERIAL_OPEN (name);
2027 if (!remote_desc)
2028 perror_with_name (name);
2029
2030 if (baud_rate != -1)
2031 {
2032 if (SERIAL_SETBAUDRATE (remote_desc, baud_rate))
2033 {
2034 SERIAL_CLOSE (remote_desc);
2035 perror_with_name (name);
2036 }
2037 }
2038
c906108c
SS
2039 SERIAL_RAW (remote_desc);
2040
2041 /* If there is something sitting in the buffer we might take it as a
2042 response to a command, which would be bad. */
2043 SERIAL_FLUSH_INPUT (remote_desc);
2044
2045 if (from_tty)
2046 {
2047 puts_filtered ("Remote debugging using ");
2048 puts_filtered (name);
2049 puts_filtered ("\n");
2050 }
c5aa993b 2051 push_target (target); /* Switch to using remote target now */
c906108c 2052
5a2468f5 2053 init_packet_config (&remote_protocol_P);
96baa820
JM
2054 init_packet_config (&remote_protocol_Z);
2055
c5aa993b 2056 general_thread = -2;
cce74817 2057 continue_thread = -2;
c906108c
SS
2058
2059 /* Force remote_write_bytes to check whether target supports
2060 binary downloading. */
96baa820 2061 init_packet_config (&remote_protocol_binary_download);
c906108c 2062
9d1f7ab2
MS
2063 /* Probe for ability to use "ThreadInfo" query, as required. */
2064 use_threadinfo_query = 1;
2065 use_threadextra_query = 1;
2066
c906108c
SS
2067 /* Without this, some commands which require an active target (such
2068 as kill) won't work. This variable serves (at least) double duty
2069 as both the pid of the target process (if it has such), and as a
2070 flag indicating that a target is active. These functions should
2071 be split out into seperate variables, especially since GDB will
2072 someday have a notion of debugging several processes. */
2073
2074 inferior_pid = MAGIC_NULL_PID;
2075 /* Start the remote connection; if error (0), discard this target.
2076 In particular, if the user quits, be sure to discard it
2077 (we'd be in an inconsistent state otherwise). */
c5aa993b
JM
2078 if (!catch_errors (remote_start_remote, NULL,
2079 "Couldn't establish connection to remote target\n",
c906108c
SS
2080 RETURN_MASK_ALL))
2081 {
2082 pop_target ();
2083 return;
2084 }
2085
2086 if (extended_p)
2087 {
2088 /* tell the remote that we're using the extended protocol. */
085dd6e6 2089 char *buf = alloca (PBUFSIZ);
c906108c 2090 putpkt ("!");
c2d11a7d 2091 getpkt (buf, PBUFSIZ, 0);
c906108c
SS
2092 }
2093}
2094
43ff13b4
JM
2095/* Just like remote_open but with asynchronous support. */
2096static void
2097remote_async_open_1 (name, from_tty, target, extended_p)
2098 char *name;
2099 int from_tty;
2100 struct target_ops *target;
2101 int extended_p;
2102{
2103 if (name == 0)
2104 error ("To open a remote debug connection, you need to specify what\n\
0d06e24b
JM
2105serial device is attached to the remote system\n\
2106(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
43ff13b4
JM
2107
2108 target_preopen (from_tty);
2109
2110 unpush_target (target);
2111
2112 remote_dcache = dcache_init (remote_read_bytes, remote_write_bytes);
2113
2114 remote_desc = SERIAL_OPEN (name);
2115 if (!remote_desc)
2116 perror_with_name (name);
2117
2118 if (baud_rate != -1)
2119 {
2120 if (SERIAL_SETBAUDRATE (remote_desc, baud_rate))
2121 {
2122 SERIAL_CLOSE (remote_desc);
2123 perror_with_name (name);
2124 }
2125 }
2126
2127 SERIAL_RAW (remote_desc);
2128
2129 /* If there is something sitting in the buffer we might take it as a
2130 response to a command, which would be bad. */
2131 SERIAL_FLUSH_INPUT (remote_desc);
2132
2133 if (from_tty)
2134 {
2135 puts_filtered ("Remote debugging using ");
2136 puts_filtered (name);
2137 puts_filtered ("\n");
2138 }
2139
c5aa993b 2140 push_target (target); /* Switch to using remote target now */
43ff13b4 2141
5a2468f5 2142 init_packet_config (&remote_protocol_P);
96baa820 2143 init_packet_config (&remote_protocol_Z);
43ff13b4 2144
c5aa993b 2145 general_thread = -2;
43ff13b4
JM
2146 continue_thread = -2;
2147
2148 /* Force remote_write_bytes to check whether target supports
2149 binary downloading. */
96baa820 2150 init_packet_config (&remote_protocol_binary_download);
43ff13b4 2151
9d1f7ab2
MS
2152 /* Probe for ability to use "ThreadInfo" query, as required. */
2153 use_threadinfo_query = 1;
2154 use_threadextra_query = 1;
2155
43ff13b4
JM
2156 /* Without this, some commands which require an active target (such
2157 as kill) won't work. This variable serves (at least) double duty
2158 as both the pid of the target process (if it has such), and as a
2159 flag indicating that a target is active. These functions should
2160 be split out into seperate variables, especially since GDB will
2161 someday have a notion of debugging several processes. */
43ff13b4 2162 inferior_pid = MAGIC_NULL_PID;
6426a772
JM
2163
2164 /* With this target we start out by owning the terminal. */
2165 remote_async_terminal_ours_p = 1;
2166
2167 /* FIXME: cagney/1999-09-23: During the initial connection it is
2168 assumed that the target is already ready and able to respond to
2169 requests. Unfortunatly remote_start_remote() eventually calls
2170 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
2171 around this. Eventually a mechanism that allows
2172 wait_for_inferior() to expect/get timeouts will be
2173 implemented. */
2174 wait_forever_enabled_p = 0;
2175
43ff13b4
JM
2176 /* Start the remote connection; if error (0), discard this target.
2177 In particular, if the user quits, be sure to discard it
2178 (we'd be in an inconsistent state otherwise). */
c5aa993b
JM
2179 if (!catch_errors (remote_start_remote, NULL,
2180 "Couldn't establish connection to remote target\n",
43ff13b4
JM
2181 RETURN_MASK_ALL))
2182 {
43ff13b4 2183 pop_target ();
6426a772 2184 wait_forever_enabled_p = 1;
43ff13b4
JM
2185 return;
2186 }
2187
6426a772
JM
2188 wait_forever_enabled_p = 1;
2189
2190 if (extended_p)
43ff13b4 2191 {
6426a772
JM
2192 /* tell the remote that we're using the extended protocol. */
2193 char *buf = alloca (PBUFSIZ);
2194 putpkt ("!");
c2d11a7d 2195 getpkt (buf, PBUFSIZ, 0);
43ff13b4 2196 }
43ff13b4
JM
2197}
2198
c906108c
SS
2199/* This takes a program previously attached to and detaches it. After
2200 this is done, GDB can be used to debug some other program. We
2201 better not have left any breakpoints in the target program or it'll
2202 die when it hits one. */
2203
2204static void
2205remote_detach (args, from_tty)
2206 char *args;
2207 int from_tty;
2208{
085dd6e6 2209 char *buf = alloca (PBUFSIZ);
c906108c
SS
2210
2211 if (args)
2212 error ("Argument given to \"detach\" when remotely debugging.");
2213
2214 /* Tell the remote target to detach. */
2215 strcpy (buf, "D");
c2d11a7d 2216 remote_send (buf, PBUFSIZ);
c906108c 2217
cca728d0 2218 target_mourn_inferior ();
c906108c
SS
2219 if (from_tty)
2220 puts_filtered ("Ending remote debugging.\n");
96baa820 2221
c906108c
SS
2222}
2223
43ff13b4
JM
2224/* Same as remote_detach, but with async support. */
2225static void
2226remote_async_detach (args, from_tty)
2227 char *args;
2228 int from_tty;
2229{
2230 char *buf = alloca (PBUFSIZ);
2231
2232 if (args)
2233 error ("Argument given to \"detach\" when remotely debugging.");
2234
2235 /* Tell the remote target to detach. */
2236 strcpy (buf, "D");
c2d11a7d 2237 remote_send (buf, PBUFSIZ);
43ff13b4
JM
2238
2239 /* Unregister the file descriptor from the event loop. */
ed9a39eb 2240 if (target_is_async_p ())
c2c6d25f 2241 SERIAL_ASYNC (remote_desc, NULL, 0);
43ff13b4 2242
cca728d0 2243 target_mourn_inferior ();
43ff13b4
JM
2244 if (from_tty)
2245 puts_filtered ("Ending remote debugging.\n");
2246}
2247
c906108c
SS
2248/* Convert hex digit A to a number. */
2249
2250int
2251fromhex (a)
2252 int a;
2253{
2254 if (a >= '0' && a <= '9')
2255 return a - '0';
2256 else if (a >= 'a' && a <= 'f')
2257 return a - 'a' + 10;
2258 else if (a >= 'A' && a <= 'F')
2259 return a - 'A' + 10;
c5aa993b 2260 else
c906108c
SS
2261 error ("Reply contains invalid hex digit %d", a);
2262}
2263
2264/* Convert number NIB to a hex digit. */
2265
2266static int
2267tohex (nib)
2268 int nib;
2269{
2270 if (nib < 10)
c5aa993b 2271 return '0' + nib;
c906108c 2272 else
c5aa993b 2273 return 'a' + nib - 10;
c906108c
SS
2274}
2275\f
2276/* Tell the remote machine to resume. */
2277
2278static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
2279
2280static int last_sent_step;
2281
2282static void
2283remote_resume (pid, step, siggnal)
2284 int pid, step;
2285 enum target_signal siggnal;
2286{
085dd6e6 2287 char *buf = alloca (PBUFSIZ);
c906108c
SS
2288
2289 if (pid == -1)
2290 set_thread (0, 0); /* run any thread */
2291 else
2292 set_thread (pid, 0); /* run this thread */
2293
2294 dcache_flush (remote_dcache);
2295
2296 last_sent_signal = siggnal;
2297 last_sent_step = step;
2298
2299 /* A hook for when we need to do something at the last moment before
2300 resumption. */
2301 if (target_resume_hook)
2302 (*target_resume_hook) ();
2303
2304 if (siggnal != TARGET_SIGNAL_0)
2305 {
2306 buf[0] = step ? 'S' : 'C';
c5aa993b
JM
2307 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
2308 buf[2] = tohex ((int) siggnal & 0xf);
c906108c
SS
2309 buf[3] = '\0';
2310 }
2311 else
c5aa993b 2312 strcpy (buf, step ? "s" : "c");
c906108c
SS
2313
2314 putpkt (buf);
2315}
43ff13b4
JM
2316
2317/* Same as remote_resume, but with async support. */
2318static void
2319remote_async_resume (pid, step, siggnal)
2320 int pid, step;
2321 enum target_signal siggnal;
2322{
2323 char *buf = alloca (PBUFSIZ);
2324
2325 if (pid == -1)
2326 set_thread (0, 0); /* run any thread */
2327 else
2328 set_thread (pid, 0); /* run this thread */
2329
2330 dcache_flush (remote_dcache);
2331
2332 last_sent_signal = siggnal;
2333 last_sent_step = step;
2334
2335 /* A hook for when we need to do something at the last moment before
2336 resumption. */
2337 if (target_resume_hook)
2338 (*target_resume_hook) ();
2339
43ff13b4
JM
2340 if (siggnal != TARGET_SIGNAL_0)
2341 {
2342 buf[0] = step ? 'S' : 'C';
c5aa993b
JM
2343 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
2344 buf[2] = tohex ((int) siggnal & 0xf);
43ff13b4
JM
2345 buf[3] = '\0';
2346 }
2347 else
c5aa993b 2348 strcpy (buf, step ? "s" : "c");
43ff13b4 2349
2acceee2
JM
2350 /* We are about to start executing the inferior, let's register it
2351 with the event loop. NOTE: this is the one place where all the
2352 execution commands end up. We could alternatively do this in each
2353 of the execution commands in infcmd.c.*/
2354 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
2355 into infcmd.c in order to allow inferior function calls to work
2356 NOT asynchronously. */
ed9a39eb 2357 if (event_loop_p && target_can_async_p ())
2acceee2
JM
2358 target_async (inferior_event_handler, 0);
2359 /* Tell the world that the target is now executing. */
2360 /* FIXME: cagney/1999-09-23: Is it the targets responsibility to set
2361 this? Instead, should the client of target just assume (for
2362 async targets) that the target is going to start executing? Is
2363 this information already found in the continuation block? */
ed9a39eb 2364 if (target_is_async_p ())
2acceee2 2365 target_executing = 1;
43ff13b4
JM
2366 putpkt (buf);
2367}
c906108c 2368\f
43ff13b4
JM
2369
2370/* Set up the signal handler for SIGINT, while the target is
2371 executing, ovewriting the 'regular' SIGINT signal handler. */
2372static void
2373initialize_sigint_signal_handler ()
2374{
c5aa993b 2375 sigint_remote_token =
43ff13b4
JM
2376 create_async_signal_handler (async_remote_interrupt, NULL);
2377 signal (SIGINT, handle_remote_sigint);
2378}
2379
2380/* Signal handler for SIGINT, while the target is executing. */
2381static void
2382handle_remote_sigint (sig)
2383 int sig;
2384{
2385 signal (sig, handle_remote_sigint_twice);
c5aa993b 2386 sigint_remote_twice_token =
43ff13b4
JM
2387 create_async_signal_handler (async_remote_interrupt_twice, NULL);
2388 mark_async_signal_handler_wrapper (sigint_remote_token);
2389}
2390
2391/* Signal handler for SIGINT, installed after SIGINT has already been
2392 sent once. It will take effect the second time that the user sends
2393 a ^C. */
2394static void
2395handle_remote_sigint_twice (sig)
2396 int sig;
2397{
2398 signal (sig, handle_sigint);
c5aa993b 2399 sigint_remote_twice_token =
2df3850c 2400 create_async_signal_handler (inferior_event_handler_wrapper, NULL);
43ff13b4
JM
2401 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
2402}
2403
6426a772 2404/* Perform the real interruption of the target execution, in response
43ff13b4 2405 to a ^C. */
c5aa993b 2406static void
43ff13b4
JM
2407async_remote_interrupt (arg)
2408 gdb_client_data arg;
2409{
2410 if (remote_debug)
2411 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
2412
2413 target_stop ();
2414}
2415
2416/* Perform interrupt, if the first attempt did not succeed. Just give
2417 up on the target alltogether. */
2df3850c 2418void
43ff13b4
JM
2419async_remote_interrupt_twice (arg)
2420 gdb_client_data arg;
2421{
2df3850c
JM
2422 if (remote_debug)
2423 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
6426a772
JM
2424 /* Do something only if the target was not killed by the previous
2425 cntl-C. */
2426 if (target_executing)
2427 {
2428 interrupt_query ();
2429 signal (SIGINT, handle_remote_sigint);
2430 }
43ff13b4
JM
2431}
2432
2433/* Reinstall the usual SIGINT handlers, after the target has
2434 stopped. */
6426a772
JM
2435static void
2436cleanup_sigint_signal_handler (void *dummy)
43ff13b4
JM
2437{
2438 signal (SIGINT, handle_sigint);
2439 if (sigint_remote_twice_token)
c2c6d25f 2440 delete_async_signal_handler ((struct async_signal_handler **) & sigint_remote_twice_token);
43ff13b4 2441 if (sigint_remote_token)
c2c6d25f 2442 delete_async_signal_handler ((struct async_signal_handler **) & sigint_remote_token);
43ff13b4
JM
2443}
2444
c906108c
SS
2445/* Send ^C to target to halt it. Target will respond, and send us a
2446 packet. */
507f3c78 2447static void (*ofunc) (int);
c906108c 2448
7a292a7a
SS
2449/* The command line interface's stop routine. This function is installed
2450 as a signal handler for SIGINT. The first time a user requests a
2451 stop, we call remote_stop to send a break or ^C. If there is no
2452 response from the target (it didn't stop when the user requested it),
2453 we ask the user if he'd like to detach from the target. */
c906108c
SS
2454static void
2455remote_interrupt (signo)
2456 int signo;
2457{
7a292a7a
SS
2458 /* If this doesn't work, try more severe steps. */
2459 signal (signo, remote_interrupt_twice);
2460
2461 if (remote_debug)
0f71a2f6 2462 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
7a292a7a
SS
2463
2464 target_stop ();
2465}
2466
2467/* The user typed ^C twice. */
2468
2469static void
2470remote_interrupt_twice (signo)
2471 int signo;
2472{
2473 signal (signo, ofunc);
2474 interrupt_query ();
c906108c
SS
2475 signal (signo, remote_interrupt);
2476}
7a292a7a
SS
2477
2478/* This is the generic stop called via the target vector. When a target
2479 interrupt is requested, either by the command line or the GUI, we
2480 will eventually end up here. */
c906108c
SS
2481static void
2482remote_stop ()
2483{
7a292a7a
SS
2484 /* Send a break or a ^C, depending on user preference. */
2485 if (remote_debug)
0f71a2f6 2486 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 2487
7a292a7a
SS
2488 if (remote_break)
2489 SERIAL_SEND_BREAK (remote_desc);
c906108c 2490 else
7a292a7a 2491 SERIAL_WRITE (remote_desc, "\003", 1);
c906108c
SS
2492}
2493
2494/* Ask the user what to do when an interrupt is received. */
2495
2496static void
2497interrupt_query ()
2498{
2499 target_terminal_ours ();
2500
2501 if (query ("Interrupted while waiting for the program.\n\
2502Give up (and stop debugging it)? "))
2503 {
2504 target_mourn_inferior ();
2505 return_to_top_level (RETURN_QUIT);
2506 }
2507
2508 target_terminal_inferior ();
2509}
2510
6426a772
JM
2511/* Enable/disable target terminal ownership. Most targets can use
2512 terminal groups to control terminal ownership. Remote targets are
2513 different in that explicit transfer of ownership to/from GDB/target
2514 is required. */
2515
2516static void
2517remote_async_terminal_inferior (void)
2518{
2519 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
2520 sync_execution here. This function should only be called when
2521 GDB is resuming the inferior in the forground. A background
2522 resume (``run&'') should leave GDB in control of the terminal and
2523 consequently should not call this code. */
2524 if (!sync_execution)
2525 return;
2526 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
2527 calls target_terminal_*() idenpotent. The event-loop GDB talking
2528 to an asynchronous target with a synchronous command calls this
2529 function from both event-top.c and infrun.c/infcmd.c. Once GDB
2530 stops trying to transfer the terminal to the target when it
2531 shouldn't this guard can go away. */
2532 if (!remote_async_terminal_ours_p)
2533 return;
2534 delete_file_handler (input_fd);
2535 remote_async_terminal_ours_p = 0;
2536 initialize_sigint_signal_handler ();
2537 /* NOTE: At this point we could also register our selves as the
2538 recipient of all input. Any characters typed could then be
2539 passed on down to the target. */
2540}
2541
2542static void
2543remote_async_terminal_ours (void)
2544{
2545 /* See FIXME in remote_async_terminal_inferior. */
2546 if (!sync_execution)
2547 return;
2548 /* See FIXME in remote_async_terminal_inferior. */
2549 if (remote_async_terminal_ours_p)
2550 return;
2551 cleanup_sigint_signal_handler (NULL);
2552 add_file_handler (input_fd, stdin_event_handler, 0);
2553 remote_async_terminal_ours_p = 1;
2554}
2555
c906108c
SS
2556/* If nonzero, ignore the next kill. */
2557
2558int kill_kludge;
2559
2560void
917317f4 2561remote_console_output (char *msg)
c906108c
SS
2562{
2563 char *p;
2564
c5aa993b 2565 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
2566 {
2567 char tb[2];
2568 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
2569 tb[0] = c;
2570 tb[1] = 0;
43ff13b4 2571 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 2572 }
917317f4 2573 gdb_flush (gdb_stdtarg);
c906108c
SS
2574}
2575
0f71a2f6
JM
2576/* Wait until the remote machine stops, then return,
2577 storing status in STATUS just as `wait' would.
2578 Returns "pid", which in the case of a multi-threaded
2579 remote OS, is the thread-id. */
c906108c
SS
2580
2581static int
2582remote_wait (pid, status)
2583 int pid;
2584 struct target_waitstatus *status;
2585{
085dd6e6 2586 unsigned char *buf = alloca (PBUFSIZ);
c906108c
SS
2587 int thread_num = -1;
2588
2589 status->kind = TARGET_WAITKIND_EXITED;
2590 status->value.integer = 0;
2591
2592 while (1)
2593 {
2594 unsigned char *p;
2595
c906108c 2596 ofunc = signal (SIGINT, remote_interrupt);
c2d11a7d 2597 getpkt (buf, PBUFSIZ, 1);
c906108c
SS
2598 signal (SIGINT, ofunc);
2599
2600 /* This is a hook for when we need to do something (perhaps the
c5aa993b 2601 collection of trace data) every time the target stops. */
c906108c
SS
2602 if (target_wait_loop_hook)
2603 (*target_wait_loop_hook) ();
2604
2605 switch (buf[0])
2606 {
2607 case 'E': /* Error of some sort */
2608 warning ("Remote failure reply: %s", buf);
2609 continue;
2610 case 'T': /* Status with PC, SP, FP, ... */
2611 {
2612 int i;
2613 long regno;
2614 char regs[MAX_REGISTER_RAW_SIZE];
2615
2616 /* Expedited reply, containing Signal, {regno, reg} repeat */
2617 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
c5aa993b
JM
2618 ss = signal number
2619 n... = register number
2620 r... = register contents
2621 */
c906108c
SS
2622 p = &buf[3]; /* after Txx */
2623
2624 while (*p)
2625 {
2626 unsigned char *p1;
2627 char *p_temp;
2628
2629 /* Read the register number */
2630 regno = strtol ((const char *) p, &p_temp, 16);
c5aa993b 2631 p1 = (unsigned char *) p_temp;
c906108c 2632
c5aa993b 2633 if (p1 == p) /* No register number present here */
c906108c
SS
2634 {
2635 p1 = (unsigned char *) strchr ((const char *) p, ':');
2636 if (p1 == NULL)
2637 warning ("Malformed packet(a) (missing colon): %s\n\
2638Packet: '%s'\n",
2639 p, buf);
2640 if (strncmp ((const char *) p, "thread", p1 - p) == 0)
2641 {
2642 p_temp = unpack_varlen_hex (++p1, &thread_num);
2643 record_currthread (thread_num);
2644 p = (unsigned char *) p_temp;
2645 }
2646 }
2647 else
2648 {
2649 p = p1;
2650
2651 if (*p++ != ':')
2652 warning ("Malformed packet(b) (missing colon): %s\n\
2653Packet: '%s'\n",
2654 p, buf);
2655
2656 if (regno >= NUM_REGS)
2657 warning ("Remote sent bad register number %ld: %s\n\
2658Packet: '%s'\n",
2659 regno, p, buf);
2660
2661 for (i = 0; i < REGISTER_RAW_SIZE (regno); i++)
2662 {
2663 if (p[0] == 0 || p[1] == 0)
2664 warning ("Remote reply is too short: %s", buf);
2665 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
2666 p += 2;
2667 }
2668 supply_register (regno, regs);
2669 }
2670
2671 if (*p++ != ';')
2672 {
2673 warning ("Remote register badly formatted: %s", buf);
c5aa993b 2674 warning (" here: %s", p);
c906108c
SS
2675 }
2676 }
2677 }
2678 /* fall through */
2679 case 'S': /* Old style status, just signal only */
2680 status->kind = TARGET_WAITKIND_STOPPED;
2681 status->value.sig = (enum target_signal)
2682 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2683
0f71a2f6
JM
2684 if (buf[3] == 'p')
2685 {
2686 /* Export Cisco kernel mode as a convenience variable
c5aa993b 2687 (so that it can be used in the GDB prompt if desired). */
0f71a2f6
JM
2688
2689 if (cisco_kernel_mode == 1)
c5aa993b 2690 set_internalvar (lookup_internalvar ("cisco_kernel_mode"),
0f71a2f6
JM
2691 value_from_string ("PDEBUG-"));
2692 cisco_kernel_mode = 0;
2693 thread_num = strtol ((const char *) &buf[4], NULL, 16);
2694 record_currthread (thread_num);
2695 }
2696 else if (buf[3] == 'k')
2697 {
2698 /* Export Cisco kernel mode as a convenience variable
c5aa993b 2699 (so that it can be used in the GDB prompt if desired). */
0f71a2f6
JM
2700
2701 if (cisco_kernel_mode == 1)
c5aa993b 2702 set_internalvar (lookup_internalvar ("cisco_kernel_mode"),
0f71a2f6
JM
2703 value_from_string ("KDEBUG-"));
2704 cisco_kernel_mode = 1;
2705 }
c906108c 2706 goto got_status;
0f71a2f6
JM
2707 case 'N': /* Cisco special: status and offsets */
2708 {
2709 bfd_vma text_addr, data_addr, bss_addr;
2710 bfd_signed_vma text_off, data_off, bss_off;
2711 unsigned char *p1;
2712
2713 status->kind = TARGET_WAITKIND_STOPPED;
2714 status->value.sig = (enum target_signal)
2715 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2716
c5aa993b 2717 if (symfile_objfile == NULL)
0f71a2f6 2718 {
d4f3574e 2719 warning ("Relocation packet received with no symbol file. \
0f71a2f6
JM
2720Packet Dropped");
2721 goto got_status;
2722 }
2723
2724 /* Relocate object file. Buffer format is NAATT;DD;BB
2725 * where AA is the signal number, TT is the new text
2726 * address, DD * is the new data address, and BB is the
2727 * new bss address. */
2728
2729 p = &buf[3];
2730 text_addr = strtoul (p, (char **) &p1, 16);
2731 if (p1 == p || *p1 != ';')
2732 warning ("Malformed relocation packet: Packet '%s'", buf);
2733 p = p1 + 1;
2734 data_addr = strtoul (p, (char **) &p1, 16);
2735 if (p1 == p || *p1 != ';')
2736 warning ("Malformed relocation packet: Packet '%s'", buf);
2737 p = p1 + 1;
2738 bss_addr = strtoul (p, (char **) &p1, 16);
c5aa993b 2739 if (p1 == p)
0f71a2f6
JM
2740 warning ("Malformed relocation packet: Packet '%s'", buf);
2741
2742 if (remote_cisco_section_offsets (text_addr, data_addr, bss_addr,
2743 &text_off, &data_off, &bss_off)
2744 == 0)
c5aa993b 2745 if (text_off != 0 || data_off != 0 || bss_off != 0)
0f71a2f6
JM
2746 remote_cisco_objfile_relocate (text_off, data_off, bss_off);
2747
2748 goto got_status;
2749 }
c906108c
SS
2750 case 'W': /* Target exited */
2751 {
2752 /* The remote process exited. */
2753 status->kind = TARGET_WAITKIND_EXITED;
2754 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
2755 goto got_status;
2756 }
2757 case 'X':
2758 status->kind = TARGET_WAITKIND_SIGNALLED;
2759 status->value.sig = (enum target_signal)
2760 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2761 kill_kludge = 1;
2762
2763 goto got_status;
2764 case 'O': /* Console output */
2765 remote_console_output (buf + 1);
2766 continue;
2767 case '\0':
2768 if (last_sent_signal != TARGET_SIGNAL_0)
2769 {
2770 /* Zero length reply means that we tried 'S' or 'C' and
c5aa993b 2771 the remote system doesn't support it. */
c906108c
SS
2772 target_terminal_ours_for_output ();
2773 printf_filtered
2774 ("Can't send signals to this remote system. %s not sent.\n",
2775 target_signal_to_name (last_sent_signal));
2776 last_sent_signal = TARGET_SIGNAL_0;
2777 target_terminal_inferior ();
2778
2779 strcpy ((char *) buf, last_sent_step ? "s" : "c");
2780 putpkt ((char *) buf);
2781 continue;
2782 }
2783 /* else fallthrough */
2784 default:
2785 warning ("Invalid remote reply: %s", buf);
2786 continue;
2787 }
2788 }
c5aa993b 2789got_status:
c906108c
SS
2790 if (thread_num != -1)
2791 {
c906108c
SS
2792 return thread_num;
2793 }
2794 return inferior_pid;
2795}
2796
43ff13b4
JM
2797/* Async version of remote_wait. */
2798static int
2799remote_async_wait (pid, status)
2800 int pid;
2801 struct target_waitstatus *status;
2802{
2803 unsigned char *buf = alloca (PBUFSIZ);
2804 int thread_num = -1;
2805
2806 status->kind = TARGET_WAITKIND_EXITED;
2807 status->value.integer = 0;
2808
2809 while (1)
2810 {
2811 unsigned char *p;
c5aa993b 2812
ed9a39eb 2813 if (!target_is_async_p ())
43ff13b4 2814 ofunc = signal (SIGINT, remote_interrupt);
6426a772
JM
2815 /* FIXME: cagney/1999-09-27: If we're in async mode we should
2816 _never_ wait for ever -> test on target_is_async_p().
2817 However, before we do that we need to ensure that the caller
2818 knows how to take the target into/out of async mode. */
c2d11a7d 2819 getpkt (buf, PBUFSIZ, wait_forever_enabled_p);
ed9a39eb 2820 if (!target_is_async_p ())
43ff13b4
JM
2821 signal (SIGINT, ofunc);
2822
2823 /* This is a hook for when we need to do something (perhaps the
c5aa993b 2824 collection of trace data) every time the target stops. */
43ff13b4
JM
2825 if (target_wait_loop_hook)
2826 (*target_wait_loop_hook) ();
2827
2828 switch (buf[0])
2829 {
2830 case 'E': /* Error of some sort */
2831 warning ("Remote failure reply: %s", buf);
2832 continue;
2833 case 'T': /* Status with PC, SP, FP, ... */
2834 {
2835 int i;
2836 long regno;
2837 char regs[MAX_REGISTER_RAW_SIZE];
2838
2839 /* Expedited reply, containing Signal, {regno, reg} repeat */
2840 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
c5aa993b
JM
2841 ss = signal number
2842 n... = register number
2843 r... = register contents
2844 */
43ff13b4
JM
2845 p = &buf[3]; /* after Txx */
2846
2847 while (*p)
2848 {
2849 unsigned char *p1;
2850 char *p_temp;
2851
2852 /* Read the register number */
2853 regno = strtol ((const char *) p, &p_temp, 16);
c5aa993b 2854 p1 = (unsigned char *) p_temp;
43ff13b4 2855
c5aa993b 2856 if (p1 == p) /* No register number present here */
43ff13b4
JM
2857 {
2858 p1 = (unsigned char *) strchr ((const char *) p, ':');
2859 if (p1 == NULL)
2860 warning ("Malformed packet(a) (missing colon): %s\n\
2861Packet: '%s'\n",
2862 p, buf);
2863 if (strncmp ((const char *) p, "thread", p1 - p) == 0)
2864 {
2865 p_temp = unpack_varlen_hex (++p1, &thread_num);
2866 record_currthread (thread_num);
2867 p = (unsigned char *) p_temp;
2868 }
2869 }
2870 else
2871 {
2872 p = p1;
2873
2874 if (*p++ != ':')
2875 warning ("Malformed packet(b) (missing colon): %s\n\
2876Packet: '%s'\n",
2877 p, buf);
2878
2879 if (regno >= NUM_REGS)
2880 warning ("Remote sent bad register number %ld: %s\n\
2881Packet: '%s'\n",
2882 regno, p, buf);
2883
2884 for (i = 0; i < REGISTER_RAW_SIZE (regno); i++)
2885 {
2886 if (p[0] == 0 || p[1] == 0)
2887 warning ("Remote reply is too short: %s", buf);
2888 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
2889 p += 2;
2890 }
2891 supply_register (regno, regs);
2892 }
2893
2894 if (*p++ != ';')
2895 {
2896 warning ("Remote register badly formatted: %s", buf);
c5aa993b 2897 warning (" here: %s", p);
43ff13b4
JM
2898 }
2899 }
2900 }
2901 /* fall through */
2902 case 'S': /* Old style status, just signal only */
2903 status->kind = TARGET_WAITKIND_STOPPED;
2904 status->value.sig = (enum target_signal)
2905 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2906
2907 if (buf[3] == 'p')
2908 {
2909 /* Export Cisco kernel mode as a convenience variable
c5aa993b 2910 (so that it can be used in the GDB prompt if desired). */
43ff13b4
JM
2911
2912 if (cisco_kernel_mode == 1)
c5aa993b 2913 set_internalvar (lookup_internalvar ("cisco_kernel_mode"),
43ff13b4
JM
2914 value_from_string ("PDEBUG-"));
2915 cisco_kernel_mode = 0;
2916 thread_num = strtol ((const char *) &buf[4], NULL, 16);
2917 record_currthread (thread_num);
2918 }
2919 else if (buf[3] == 'k')
2920 {
2921 /* Export Cisco kernel mode as a convenience variable
c5aa993b 2922 (so that it can be used in the GDB prompt if desired). */
43ff13b4
JM
2923
2924 if (cisco_kernel_mode == 1)
c5aa993b 2925 set_internalvar (lookup_internalvar ("cisco_kernel_mode"),
43ff13b4
JM
2926 value_from_string ("KDEBUG-"));
2927 cisco_kernel_mode = 1;
2928 }
2929 goto got_status;
2930 case 'N': /* Cisco special: status and offsets */
2931 {
2932 bfd_vma text_addr, data_addr, bss_addr;
2933 bfd_signed_vma text_off, data_off, bss_off;
2934 unsigned char *p1;
2935
2936 status->kind = TARGET_WAITKIND_STOPPED;
2937 status->value.sig = (enum target_signal)
2938 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2939
c5aa993b 2940 if (symfile_objfile == NULL)
43ff13b4
JM
2941 {
2942 warning ("Relocation packet recieved with no symbol file. \
2943Packet Dropped");
2944 goto got_status;
2945 }
2946
2947 /* Relocate object file. Buffer format is NAATT;DD;BB
2948 * where AA is the signal number, TT is the new text
2949 * address, DD * is the new data address, and BB is the
2950 * new bss address. */
2951
2952 p = &buf[3];
2953 text_addr = strtoul (p, (char **) &p1, 16);
2954 if (p1 == p || *p1 != ';')
2955 warning ("Malformed relocation packet: Packet '%s'", buf);
2956 p = p1 + 1;
2957 data_addr = strtoul (p, (char **) &p1, 16);
2958 if (p1 == p || *p1 != ';')
2959 warning ("Malformed relocation packet: Packet '%s'", buf);
2960 p = p1 + 1;
2961 bss_addr = strtoul (p, (char **) &p1, 16);
c5aa993b 2962 if (p1 == p)
43ff13b4
JM
2963 warning ("Malformed relocation packet: Packet '%s'", buf);
2964
2965 if (remote_cisco_section_offsets (text_addr, data_addr, bss_addr,
2966 &text_off, &data_off, &bss_off)
2967 == 0)
c5aa993b 2968 if (text_off != 0 || data_off != 0 || bss_off != 0)
43ff13b4
JM
2969 remote_cisco_objfile_relocate (text_off, data_off, bss_off);
2970
2971 goto got_status;
2972 }
2973 case 'W': /* Target exited */
2974 {
2975 /* The remote process exited. */
2976 status->kind = TARGET_WAITKIND_EXITED;
2977 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
2978 goto got_status;
2979 }
2980 case 'X':
2981 status->kind = TARGET_WAITKIND_SIGNALLED;
2982 status->value.sig = (enum target_signal)
2983 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2984 kill_kludge = 1;
2985
2986 goto got_status;
2987 case 'O': /* Console output */
2988 remote_console_output (buf + 1);
c4093a6a
JM
2989 /* Return immediately to the event loop. The event loop will
2990 still be waiting on the inferior afterwards. */
2991 status->kind = TARGET_WAITKIND_IGNORE;
2992 goto got_status;
43ff13b4
JM
2993 case '\0':
2994 if (last_sent_signal != TARGET_SIGNAL_0)
2995 {
2996 /* Zero length reply means that we tried 'S' or 'C' and
c5aa993b 2997 the remote system doesn't support it. */
43ff13b4
JM
2998 target_terminal_ours_for_output ();
2999 printf_filtered
3000 ("Can't send signals to this remote system. %s not sent.\n",
3001 target_signal_to_name (last_sent_signal));
3002 last_sent_signal = TARGET_SIGNAL_0;
3003 target_terminal_inferior ();
3004
3005 strcpy ((char *) buf, last_sent_step ? "s" : "c");
3006 putpkt ((char *) buf);
3007 continue;
3008 }
3009 /* else fallthrough */
3010 default:
3011 warning ("Invalid remote reply: %s", buf);
3012 continue;
3013 }
3014 }
c5aa993b 3015got_status:
43ff13b4
JM
3016 if (thread_num != -1)
3017 {
3018 return thread_num;
3019 }
3020 return inferior_pid;
3021}
3022
c906108c
SS
3023/* Number of bytes of registers this stub implements. */
3024
3025static int register_bytes_found;
3026
3027/* Read the remote registers into the block REGS. */
3028/* Currently we just read all the registers, so we don't use regno. */
3029
3030/* ARGSUSED */
3031static void
3032remote_fetch_registers (regno)
3033 int regno;
3034{
085dd6e6 3035 char *buf = alloca (PBUFSIZ);
c906108c
SS
3036 int i;
3037 char *p;
3038 char regs[REGISTER_BYTES];
3039
3040 set_thread (inferior_pid, 1);
3041
3042 sprintf (buf, "g");
c2d11a7d 3043 remote_send (buf, PBUFSIZ);
c906108c 3044
11cf8741
JM
3045 /* Save the size of the packet sent to us by the target. Its used
3046 as a heuristic when determining the max size of packets that the
3047 target can safely receive. */
3048 if (actual_register_packet_size == 0)
3049 actual_register_packet_size = strlen (buf);
c906108c
SS
3050
3051 /* Unimplemented registers read as all bits zero. */
3052 memset (regs, 0, REGISTER_BYTES);
3053
3054 /* We can get out of synch in various cases. If the first character
3055 in the buffer is not a hex character, assume that has happened
3056 and try to fetch another packet to read. */
3057 while ((buf[0] < '0' || buf[0] > '9')
3058 && (buf[0] < 'a' || buf[0] > 'f')
3059 && buf[0] != 'x') /* New: unavailable register value */
3060 {
3061 if (remote_debug)
0f71a2f6
JM
3062 fprintf_unfiltered (gdb_stdlog,
3063 "Bad register packet; fetching a new packet\n");
c2d11a7d 3064 getpkt (buf, PBUFSIZ, 0);
c906108c
SS
3065 }
3066
3067 /* Reply describes registers byte by byte, each byte encoded as two
3068 hex characters. Suck them all up, then supply them to the
3069 register cacheing/storage mechanism. */
3070
3071 p = buf;
3072 for (i = 0; i < REGISTER_BYTES; i++)
3073 {
3074 if (p[0] == 0)
3075 break;
3076 if (p[1] == 0)
3077 {
3078 warning ("Remote reply is of odd length: %s", buf);
3079 /* Don't change register_bytes_found in this case, and don't
3080 print a second warning. */
3081 goto supply_them;
3082 }
3083 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 3084 regs[i] = 0; /* 'x' */
c906108c
SS
3085 else
3086 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
3087 p += 2;
3088 }
3089
3090 if (i != register_bytes_found)
3091 {
3092 register_bytes_found = i;
3093#ifdef REGISTER_BYTES_OK
3094 if (!REGISTER_BYTES_OK (i))
3095 warning ("Remote reply is too short: %s", buf);
3096#endif
3097 }
c5aa993b
JM
3098
3099supply_them:
c906108c 3100 for (i = 0; i < NUM_REGS; i++)
c5aa993b
JM
3101 {
3102 supply_register (i, &regs[REGISTER_BYTE (i)]);
3103 if (buf[REGISTER_BYTE (i) * 2] == 'x')
3104 register_valid[i] = -1; /* register value not available */
3105 }
c906108c
SS
3106}
3107
3108/* Prepare to store registers. Since we may send them all (using a
3109 'G' request), we have to read out the ones we don't want to change
3110 first. */
3111
c5aa993b 3112static void
c906108c
SS
3113remote_prepare_to_store ()
3114{
3115 /* Make sure the entire registers array is valid. */
5a2468f5
JM
3116 switch (remote_protocol_P.support)
3117 {
3118 case PACKET_DISABLE:
3119 case PACKET_SUPPORT_UNKNOWN:
3120 read_register_bytes (0, (char *) NULL, REGISTER_BYTES);
3121 break;
3122 case PACKET_ENABLE:
3123 break;
3124 }
3125}
3126
3127/* Helper: Attempt to store REGNO using the P packet. Return fail IFF
3128 packet was not recognized. */
3129
3130static int
c2d11a7d 3131store_register_using_P (int regno)
5a2468f5
JM
3132{
3133 /* Try storing a single register. */
3134 char *buf = alloca (PBUFSIZ);
3135 char *regp;
3136 char *p;
3137 int i;
3138
3139 sprintf (buf, "P%x=", regno);
3140 p = buf + strlen (buf);
3141 regp = &registers[REGISTER_BYTE (regno)];
3142 for (i = 0; i < REGISTER_RAW_SIZE (regno); ++i)
3143 {
3144 *p++ = tohex ((regp[i] >> 4) & 0xf);
3145 *p++ = tohex (regp[i] & 0xf);
3146 }
3147 *p = '\0';
c2d11a7d 3148 remote_send (buf, PBUFSIZ);
5a2468f5
JM
3149
3150 return buf[0] != '\0';
c906108c
SS
3151}
3152
5a2468f5 3153
c906108c
SS
3154/* Store register REGNO, or all registers if REGNO == -1, from the contents
3155 of REGISTERS. FIXME: ignores errors. */
3156
3157static void
3158remote_store_registers (regno)
3159 int regno;
3160{
085dd6e6 3161 char *buf = alloca (PBUFSIZ);
c906108c
SS
3162 int i;
3163 char *p;
3164
3165 set_thread (inferior_pid, 1);
3166
5a2468f5 3167 if (regno >= 0)
c906108c 3168 {
5a2468f5 3169 switch (remote_protocol_P.support)
c906108c 3170 {
5a2468f5
JM
3171 case PACKET_DISABLE:
3172 break;
3173 case PACKET_ENABLE:
3174 if (store_register_using_P (regno))
3175 return;
3176 else
3177 error ("Protocol error: P packet not recognized by stub");
3178 case PACKET_SUPPORT_UNKNOWN:
3179 if (store_register_using_P (regno))
3180 {
3181 /* The stub recognized the 'P' packet. Remember this. */
3182 remote_protocol_P.support = PACKET_ENABLE;
3183 return;
3184 }
3185 else
3186 {
3187 /* The stub does not support the 'P' packet. Use 'G'
3188 instead, and don't try using 'P' in the future (it
3189 will just waste our time). */
3190 remote_protocol_P.support = PACKET_DISABLE;
3191 break;
3192 }
c906108c 3193 }
c906108c
SS
3194 }
3195
3196 buf[0] = 'G';
3197
3198 /* Command describes registers byte by byte,
3199 each byte encoded as two hex characters. */
3200
3201 p = buf + 1;
3202 /* remote_prepare_to_store insures that register_bytes_found gets set. */
3203 for (i = 0; i < register_bytes_found; i++)
3204 {
3205 *p++ = tohex ((registers[i] >> 4) & 0xf);
3206 *p++ = tohex (registers[i] & 0xf);
3207 }
3208 *p = '\0';
3209
c2d11a7d 3210 remote_send (buf, PBUFSIZ);
c906108c 3211}
c906108c
SS
3212\f
3213
3214/* Return the number of hex digits in num. */
3215
3216static int
3217hexnumlen (num)
3218 ULONGEST num;
3219{
3220 int i;
3221
3222 for (i = 0; num != 0; i++)
3223 num >>= 4;
3224
3225 return max (i, 1);
3226}
3227
2df3850c 3228/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
3229
3230static int
3231hexnumstr (buf, num)
3232 char *buf;
3233 ULONGEST num;
3234{
c906108c 3235 int len = hexnumlen (num);
2df3850c
JM
3236 return hexnumnstr (buf, num, len);
3237}
3238
c906108c 3239
2df3850c 3240/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 3241
2df3850c
JM
3242static int
3243hexnumnstr (buf, num, width)
3244 char *buf;
3245 ULONGEST num;
3246 int width;
3247{
3248 int i;
3249
3250 buf[width] = '\0';
3251
3252 for (i = width - 1; i >= 0; i--)
c906108c 3253 {
c5aa993b 3254 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
3255 num >>= 4;
3256 }
3257
2df3850c 3258 return width;
c906108c
SS
3259}
3260
3261/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
3262
3263static CORE_ADDR
3264remote_address_masked (addr)
3265 CORE_ADDR addr;
3266{
3267 if (remote_address_size > 0
3268 && remote_address_size < (sizeof (ULONGEST) * 8))
3269 {
3270 /* Only create a mask when that mask can safely be constructed
3271 in a ULONGEST variable. */
3272 ULONGEST mask = 1;
3273 mask = (mask << remote_address_size) - 1;
3274 addr &= mask;
3275 }
3276 return addr;
3277}
3278
3279/* Determine whether the remote target supports binary downloading.
3280 This is accomplished by sending a no-op memory write of zero length
3281 to the target at the specified address. It does not suffice to send
3282 the whole packet, since many stubs strip the eighth bit and subsequently
7a292a7a
SS
3283 compute a wrong checksum, which causes real havoc with remote_write_bytes.
3284
96baa820
JM
3285 NOTE: This can still lose if the serial line is not eight-bit
3286 clean. In cases like this, the user should clear "remote
3287 X-packet". */
3288
c906108c
SS
3289static void
3290check_binary_download (addr)
3291 CORE_ADDR addr;
3292{
96baa820 3293 switch (remote_protocol_binary_download.support)
c906108c 3294 {
96baa820
JM
3295 case PACKET_DISABLE:
3296 break;
3297 case PACKET_ENABLE:
3298 break;
3299 case PACKET_SUPPORT_UNKNOWN:
3300 {
3301 char *buf = alloca (PBUFSIZ);
3302 char *p;
3303
3304 p = buf;
3305 *p++ = 'X';
3306 p += hexnumstr (p, (ULONGEST) addr);
3307 *p++ = ',';
3308 p += hexnumstr (p, (ULONGEST) 0);
3309 *p++ = ':';
3310 *p = '\0';
3311
3312 putpkt_binary (buf, (int) (p - buf));
c2d11a7d 3313 getpkt (buf, PBUFSIZ, 0);
c906108c 3314
96baa820
JM
3315 if (buf[0] == '\0')
3316 {
3317 if (remote_debug)
3318 fprintf_unfiltered (gdb_stdlog,
3319 "binary downloading NOT suppported by target\n");
3320 remote_protocol_binary_download.support = PACKET_DISABLE;
3321 }
3322 else
3323 {
3324 if (remote_debug)
3325 fprintf_unfiltered (gdb_stdlog,
3326 "binary downloading suppported by target\n");
3327 remote_protocol_binary_download.support = PACKET_ENABLE;
3328 }
3329 break;
3330 }
c906108c
SS
3331 }
3332}
3333
3334/* Write memory data directly to the remote machine.
3335 This does not inform the data cache; the data cache uses this.
3336 MEMADDR is the address in the remote memory space.
3337 MYADDR is the address of the buffer in our space.
3338 LEN is the number of bytes.
3339
917317f4
JM
3340 Returns number of bytes transferred, or 0 (setting errno) for
3341 error. Only transfer a single packet. */
c906108c
SS
3342
3343static int
917317f4 3344remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len)
c906108c 3345{
917317f4 3346 unsigned char *buf;
c906108c 3347 int max_buf_size; /* Max size of packet output buffer */
917317f4
JM
3348 unsigned char *p;
3349 unsigned char *plen;
c2d11a7d 3350 long sizeof_buf;
917317f4
JM
3351 int plenlen;
3352 int todo;
3353 int nr_bytes;
c906108c
SS
3354
3355 /* Verify that the target can support a binary download */
3356 check_binary_download (memaddr);
3357
917317f4 3358 /* Determine the max packet size. */
11cf8741 3359 max_buf_size = get_memory_write_packet_size ();
c2d11a7d
JM
3360 sizeof_buf = max_buf_size + 1; /* Space for trailing NUL */
3361 buf = alloca (sizeof_buf);
c906108c 3362
7a292a7a 3363 /* Subtract header overhead from max payload size - $M<memaddr>,<len>:#nn */
c906108c
SS
3364 max_buf_size -= 2 + hexnumlen (memaddr + len - 1) + 1 + hexnumlen (len) + 4;
3365
917317f4
JM
3366 /* construct "M"<memaddr>","<len>":" */
3367 /* sprintf (buf, "M%lx,%x:", (unsigned long) memaddr, todo); */
3368 p = buf;
3369
3370 /* Append [XM]. Compute a best guess of the number of bytes
3371 actually transfered. */
3372 switch (remote_protocol_binary_download.support)
c906108c 3373 {
917317f4
JM
3374 case PACKET_ENABLE:
3375 *p++ = 'X';
3376 /* Best guess at number of bytes that will fit. */
3377 todo = min (len, max_buf_size);
3378 break;
3379 case PACKET_DISABLE:
3380 *p++ = 'M';
3381 /* num bytes that will fit */
3382 todo = min (len, max_buf_size / 2);
3383 break;
3384 case PACKET_SUPPORT_UNKNOWN:
3385 internal_error ("remote_write_bytes: bad switch");
3386 }
3387
3388 /* Append <memaddr> */
3389 memaddr = remote_address_masked (memaddr);
3390 p += hexnumstr (p, (ULONGEST) memaddr);
3391 *p++ = ',';
3392
3393 /* Append <len>. Retain the location/size of <len>. It may
3394 need to be adjusted once the packet body has been created. */
3395 plen = p;
3396 plenlen = hexnumstr (p, (ULONGEST) todo);
3397 p += plenlen;
3398 *p++ = ':';
3399 *p = '\0';
3400
3401 /* Append the packet body. */
3402 switch (remote_protocol_binary_download.support)
3403 {
3404 case PACKET_ENABLE:
3405 /* Binary mode. Send target system values byte by byte, in
3406 increasing byte addresses. Only escape certain critical
3407 characters. */
3408 for (nr_bytes = 0;
3409 (nr_bytes < todo) && (p - buf) < (max_buf_size - 2);
3410 nr_bytes++)
c906108c 3411 {
917317f4
JM
3412 switch (myaddr[nr_bytes] & 0xff)
3413 {
3414 case '$':
3415 case '#':
3416 case 0x7d:
3417 /* These must be escaped */
3418 *p++ = 0x7d;
3419 *p++ = (myaddr[nr_bytes] & 0xff) ^ 0x20;
3420 break;
3421 default:
3422 *p++ = myaddr[nr_bytes] & 0xff;
3423 break;
3424 }
c906108c 3425 }
917317f4 3426 if (nr_bytes < todo)
c906108c 3427 {
917317f4
JM
3428 /* Escape chars have filled up the buffer prematurely,
3429 and we have actually sent fewer bytes than planned.
3430 Fix-up the length field of the packet. Use the same
3431 number of characters as before. */
3432
3433 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
3434 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 3435 }
917317f4
JM
3436 break;
3437 case PACKET_DISABLE:
3438 /* Normal mode: Send target system values byte by byte, in
3439 increasing byte addresses. Each byte is encoded as a two hex
3440 value. */
3441 for (nr_bytes = 0; nr_bytes < todo; nr_bytes++)
c906108c 3442 {
917317f4
JM
3443 *p++ = tohex ((myaddr[nr_bytes] >> 4) & 0xf);
3444 *p++ = tohex (myaddr[nr_bytes] & 0xf);
c906108c 3445 }
917317f4
JM
3446 *p = '\0';
3447 break;
3448 case PACKET_SUPPORT_UNKNOWN:
3449 internal_error ("remote_write_bytes: bad switch");
c906108c 3450 }
917317f4
JM
3451
3452 putpkt_binary (buf, (int) (p - buf));
c2d11a7d 3453 getpkt (buf, sizeof_buf, 0);
917317f4
JM
3454
3455 if (buf[0] == 'E')
3456 {
3457 /* There is no correspondance between what the remote protocol
3458 uses for errors and errno codes. We would like a cleaner way
3459 of representing errors (big enough to include errno codes,
3460 bfd_error codes, and others). But for now just return EIO. */
3461 errno = EIO;
3462 return 0;
3463 }
3464
3465 /* Return NR_BYTES, not TODO, in case escape chars caused us to send fewer
3466 bytes than we'd planned. */
3467 return nr_bytes;
c906108c
SS
3468}
3469
3470/* Read memory data directly from the remote machine.
3471 This does not use the data cache; the data cache uses this.
3472 MEMADDR is the address in the remote memory space.
3473 MYADDR is the address of the buffer in our space.
3474 LEN is the number of bytes.
3475
3476 Returns number of bytes transferred, or 0 for error. */
3477
917317f4
JM
3478/* NOTE: cagney/1999-10-18: This function (and its siblings in other
3479 remote targets) shouldn't attempt to read the entire buffer.
3480 Instead it should read a single packet worth of data and then
3481 return the byte size of that packet to the caller. The caller (its
3482 caller and its callers caller ;-) already contains code for
3483 handling partial reads. */
3484
c906108c
SS
3485static int
3486remote_read_bytes (memaddr, myaddr, len)
3487 CORE_ADDR memaddr;
3488 char *myaddr;
3489 int len;
3490{
11cf8741 3491 char *buf;
c906108c 3492 int max_buf_size; /* Max size of packet output buffer */
c2d11a7d 3493 long sizeof_buf;
c906108c
SS
3494 int origlen;
3495
11cf8741
JM
3496 /* Create a buffer big enough for this packet. */
3497 max_buf_size = get_memory_read_packet_size ();
c2d11a7d
JM
3498 sizeof_buf = max_buf_size + 1; /* Space for trailing NUL */
3499 buf = alloca (sizeof_buf);
c906108c
SS
3500
3501 origlen = len;
3502 while (len > 0)
3503 {
c906108c
SS
3504 char *p;
3505 int todo;
3506 int i;
3507
c5aa993b 3508 todo = min (len, max_buf_size / 2); /* num bytes that will fit */
c906108c
SS
3509
3510 /* construct "m"<memaddr>","<len>" */
3511 /* sprintf (buf, "m%lx,%x", (unsigned long) memaddr, todo); */
3512 memaddr = remote_address_masked (memaddr);
3513 p = buf;
3514 *p++ = 'm';
3515 p += hexnumstr (p, (ULONGEST) memaddr);
3516 *p++ = ',';
3517 p += hexnumstr (p, (ULONGEST) todo);
3518 *p = '\0';
3519
3520 putpkt (buf);
c2d11a7d 3521 getpkt (buf, sizeof_buf, 0);
c906108c
SS
3522
3523 if (buf[0] == 'E')
3524 {
3525 /* There is no correspondance between what the remote protocol uses
3526 for errors and errno codes. We would like a cleaner way of
3527 representing errors (big enough to include errno codes, bfd_error
3528 codes, and others). But for now just return EIO. */
3529 errno = EIO;
3530 return 0;
3531 }
3532
c5aa993b
JM
3533 /* Reply describes memory byte by byte,
3534 each byte encoded as two hex characters. */
c906108c
SS
3535
3536 p = buf;
3537 for (i = 0; i < todo; i++)
3538 {
3539 if (p[0] == 0 || p[1] == 0)
3540 /* Reply is short. This means that we were able to read
3541 only part of what we wanted to. */
3542 return i + (origlen - len);
3543 myaddr[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
3544 p += 2;
3545 }
3546 myaddr += todo;
3547 memaddr += todo;
3548 len -= todo;
3549 }
3550 return origlen;
3551}
3552\f
3553/* Read or write LEN bytes from inferior memory at MEMADDR,
392a587b
JM
3554 transferring to or from debugger address BUFFER. Write to inferior if
3555 SHOULD_WRITE is nonzero. Returns length of data written or read; 0
3556 for error. */
3557
c906108c
SS
3558/* ARGSUSED */
3559static int
392a587b
JM
3560remote_xfer_memory (mem_addr, buffer, mem_len, should_write, target)
3561 CORE_ADDR mem_addr;
3562 char *buffer;
3563 int mem_len;
c906108c 3564 int should_write;
c5aa993b 3565 struct target_ops *target; /* ignored */
c906108c 3566{
392a587b
JM
3567 CORE_ADDR targ_addr;
3568 int targ_len;
3569 REMOTE_TRANSLATE_XFER_ADDRESS (mem_addr, mem_len, &targ_addr, &targ_len);
3570 if (targ_len <= 0)
c906108c 3571 return 0;
c906108c 3572
392a587b
JM
3573 return dcache_xfer_memory (remote_dcache, targ_addr, buffer,
3574 targ_len, should_write);
c906108c
SS
3575}
3576
c5aa993b 3577
c906108c
SS
3578#if 0
3579/* Enable after 4.12. */
3580
3581void
3582remote_search (len, data, mask, startaddr, increment, lorange, hirange
3583 addr_found, data_found)
3584 int len;
3585 char *data;
3586 char *mask;
3587 CORE_ADDR startaddr;
3588 int increment;
3589 CORE_ADDR lorange;
3590 CORE_ADDR hirange;
3591 CORE_ADDR *addr_found;
3592 char *data_found;
3593{
3594 if (increment == -4 && len == 4)
3595 {
3596 long mask_long, data_long;
3597 long data_found_long;
3598 CORE_ADDR addr_we_found;
085dd6e6 3599 char *buf = alloca (PBUFSIZ);
c906108c
SS
3600 long returned_long[2];
3601 char *p;
3602
3603 mask_long = extract_unsigned_integer (mask, len);
3604 data_long = extract_unsigned_integer (data, len);
3605 sprintf (buf, "t%x:%x,%x", startaddr, data_long, mask_long);
3606 putpkt (buf);
c2d11a7d 3607 getpkt (buf, PBUFSIZ, 0);
c906108c
SS
3608 if (buf[0] == '\0')
3609 {
3610 /* The stub doesn't support the 't' request. We might want to
3611 remember this fact, but on the other hand the stub could be
3612 switched on us. Maybe we should remember it only until
3613 the next "target remote". */
3614 generic_search (len, data, mask, startaddr, increment, lorange,
3615 hirange, addr_found, data_found);
3616 return;
3617 }
3618
3619 if (buf[0] == 'E')
3620 /* There is no correspondance between what the remote protocol uses
3621 for errors and errno codes. We would like a cleaner way of
3622 representing errors (big enough to include errno codes, bfd_error
3623 codes, and others). But for now just use EIO. */
3624 memory_error (EIO, startaddr);
3625 p = buf;
3626 addr_we_found = 0;
3627 while (*p != '\0' && *p != ',')
3628 addr_we_found = (addr_we_found << 4) + fromhex (*p++);
3629 if (*p == '\0')
3630 error ("Protocol error: short return for search");
3631
3632 data_found_long = 0;
3633 while (*p != '\0' && *p != ',')
3634 data_found_long = (data_found_long << 4) + fromhex (*p++);
3635 /* Ignore anything after this comma, for future extensions. */
3636
3637 if (addr_we_found < lorange || addr_we_found >= hirange)
3638 {
3639 *addr_found = 0;
3640 return;
3641 }
3642
3643 *addr_found = addr_we_found;
3644 *data_found = store_unsigned_integer (data_we_found, len);
3645 return;
3646 }
3647 generic_search (len, data, mask, startaddr, increment, lorange,
3648 hirange, addr_found, data_found);
3649}
3650#endif /* 0 */
3651\f
3652static void
3653remote_files_info (ignore)
3654 struct target_ops *ignore;
3655{
3656 puts_filtered ("Debugging a target over a serial line.\n");
3657}
3658\f
3659/* Stuff for dealing with the packets which are part of this protocol.
3660 See comment at top of file for details. */
3661
3662/* Read a single character from the remote end, masking it down to 7 bits. */
3663
3664static int
3665readchar (timeout)
3666 int timeout;
3667{
3668 int ch;
3669
3670 ch = SERIAL_READCHAR (remote_desc, timeout);
3671
2acceee2
JM
3672 if (ch >= 0)
3673 return (ch & 0x7f);
3674
3675 switch ((enum serial_rc) ch)
c906108c
SS
3676 {
3677 case SERIAL_EOF:
2acceee2 3678 target_mourn_inferior ();
c906108c 3679 error ("Remote connection closed");
2acceee2 3680 /* no return */
c906108c
SS
3681 case SERIAL_ERROR:
3682 perror_with_name ("Remote communication error");
2acceee2 3683 /* no return */
c906108c 3684 case SERIAL_TIMEOUT:
2acceee2 3685 break;
c906108c 3686 }
2acceee2 3687 return ch;
c906108c
SS
3688}
3689
3690/* Send the command in BUF to the remote machine, and read the reply
3691 into BUF. Report an error if we get an error reply. */
3692
3693static void
c2d11a7d
JM
3694remote_send (char *buf,
3695 long sizeof_buf)
c906108c
SS
3696{
3697 putpkt (buf);
c2d11a7d 3698 getpkt (buf, sizeof_buf, 0);
c906108c
SS
3699
3700 if (buf[0] == 'E')
3701 error ("Remote failure reply: %s", buf);
3702}
3703
3704/* Display a null-terminated packet on stdout, for debugging, using C
3705 string notation. */
3706
3707static void
3708print_packet (buf)
3709 char *buf;
3710{
3711 puts_filtered ("\"");
43e526b9 3712 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
3713 puts_filtered ("\"");
3714}
3715
3716int
3717putpkt (buf)
3718 char *buf;
3719{
3720 return putpkt_binary (buf, strlen (buf));
3721}
3722
3723/* Send a packet to the remote machine, with error checking. The data
3724 of the packet is in BUF. The string in BUF can be at most PBUFSIZ - 5
3725 to account for the $, # and checksum, and for a possible /0 if we are
3726 debugging (remote_debug) and want to print the sent packet as a string */
3727
3728static int
3729putpkt_binary (buf, cnt)
3730 char *buf;
3731 int cnt;
3732{
3733 int i;
3734 unsigned char csum = 0;
11cf8741 3735 char *buf2 = alloca (cnt + 6);
c2d11a7d
JM
3736 long sizeof_junkbuf = PBUFSIZ;
3737 char *junkbuf = alloca (sizeof_junkbuf);
085dd6e6 3738
c906108c
SS
3739 int ch;
3740 int tcount = 0;
3741 char *p;
3742
3743 /* Copy the packet into buffer BUF2, encapsulating it
3744 and giving it a checksum. */
3745
c906108c
SS
3746 p = buf2;
3747 *p++ = '$';
3748
3749 for (i = 0; i < cnt; i++)
3750 {
3751 csum += buf[i];
3752 *p++ = buf[i];
3753 }
3754 *p++ = '#';
3755 *p++ = tohex ((csum >> 4) & 0xf);
3756 *p++ = tohex (csum & 0xf);
3757
3758 /* Send it over and over until we get a positive ack. */
3759
3760 while (1)
3761 {
3762 int started_error_output = 0;
3763
3764 if (remote_debug)
3765 {
3766 *p = '\0';
43e526b9
JM
3767 fprintf_unfiltered (gdb_stdlog, "Sending packet: ");
3768 fputstrn_unfiltered (buf2, p - buf2, 0, gdb_stdlog);
d4f3574e 3769 fprintf_unfiltered (gdb_stdlog, "...");
0f71a2f6 3770 gdb_flush (gdb_stdlog);
c906108c
SS
3771 }
3772 if (SERIAL_WRITE (remote_desc, buf2, p - buf2))
3773 perror_with_name ("putpkt: write failed");
3774
3775 /* read until either a timeout occurs (-2) or '+' is read */
3776 while (1)
3777 {
3778 ch = readchar (remote_timeout);
3779
c5aa993b 3780 if (remote_debug)
c906108c
SS
3781 {
3782 switch (ch)
3783 {
3784 case '+':
1216fa2c 3785 case '-':
c906108c
SS
3786 case SERIAL_TIMEOUT:
3787 case '$':
3788 if (started_error_output)
3789 {
3790 putchar_unfiltered ('\n');
3791 started_error_output = 0;
3792 }
3793 }
3794 }
3795
3796 switch (ch)
3797 {
3798 case '+':
3799 if (remote_debug)
0f71a2f6 3800 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 3801 return 1;
1216fa2c
AC
3802 case '-':
3803 if (remote_debug)
3804 fprintf_unfiltered (gdb_stdlog, "Nak\n");
c906108c 3805 case SERIAL_TIMEOUT:
c5aa993b 3806 tcount++;
c906108c
SS
3807 if (tcount > 3)
3808 return 0;
3809 break; /* Retransmit buffer */
3810 case '$':
3811 {
c5aa993b
JM
3812 /* It's probably an old response, and we're out of sync.
3813 Just gobble up the packet and ignore it. */
c2d11a7d 3814 getpkt (junkbuf, sizeof_junkbuf, 0);
c5aa993b 3815 continue; /* Now, go look for + */
c906108c
SS
3816 }
3817 default:
3818 if (remote_debug)
3819 {
3820 if (!started_error_output)
3821 {
3822 started_error_output = 1;
0f71a2f6 3823 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 3824 }
0f71a2f6 3825 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
3826 }
3827 continue;
3828 }
3829 break; /* Here to retransmit */
3830 }
3831
3832#if 0
3833 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
3834 able to get out next time we call QUIT, without anything as
3835 violent as interrupt_query. If we want to provide a way out of
3836 here without getting to the next QUIT, it should be based on
3837 hitting ^C twice as in remote_wait. */
c906108c
SS
3838 if (quit_flag)
3839 {
3840 quit_flag = 0;
3841 interrupt_query ();
3842 }
3843#endif
3844 }
3845}
3846
0f71a2f6
JM
3847static int remote_cisco_mode;
3848
c906108c
SS
3849/* Come here after finding the start of the frame. Collect the rest
3850 into BUF, verifying the checksum, length, and handling run-length
c2d11a7d
JM
3851 compression. No more than sizeof_buf-1 characters are read so that
3852 the buffer can be NUL terminated.
c906108c 3853
c2d11a7d
JM
3854 Returns -1 on error, number of characters in buffer (ignoring the
3855 trailing NULL) on success. (could be extended to return one of the
3856 SERIAL status indications). */
3857
3858static long
3859read_frame (char *buf,
3860 long sizeof_buf)
c906108c
SS
3861{
3862 unsigned char csum;
c2d11a7d 3863 long bc;
c906108c
SS
3864 int c;
3865
3866 csum = 0;
c2d11a7d 3867 bc = 0;
c906108c
SS
3868
3869 while (1)
3870 {
c2d11a7d 3871 /* ASSERT (bc < sizeof_buf - 1) - space for trailing NUL */
c906108c 3872 c = readchar (remote_timeout);
c906108c
SS
3873 switch (c)
3874 {
3875 case SERIAL_TIMEOUT:
3876 if (remote_debug)
0f71a2f6 3877 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 3878 return -1;
c906108c
SS
3879 case '$':
3880 if (remote_debug)
0f71a2f6
JM
3881 fputs_filtered ("Saw new packet start in middle of old one\n",
3882 gdb_stdlog);
c2d11a7d 3883 return -1; /* Start a new packet, count retries */
c906108c
SS
3884 case '#':
3885 {
3886 unsigned char pktcsum;
3887
c2d11a7d 3888 buf[bc] = '\0';
c906108c
SS
3889
3890 pktcsum = fromhex (readchar (remote_timeout)) << 4;
3891 pktcsum |= fromhex (readchar (remote_timeout));
3892
3893 if (csum == pktcsum)
c2d11a7d 3894 return bc;
c906108c 3895
c5aa993b 3896 if (remote_debug)
c906108c 3897 {
0f71a2f6 3898 fprintf_filtered (gdb_stdlog,
c5aa993b 3899 "Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
0f71a2f6
JM
3900 pktcsum, csum);
3901 fputs_filtered (buf, gdb_stdlog);
3902 fputs_filtered ("\n", gdb_stdlog);
c906108c 3903 }
c2d11a7d
JM
3904 /* Number of characters in buffer ignoring trailing
3905 NUL. */
3906 return -1;
c906108c
SS
3907 }
3908 case '*': /* Run length encoding */
c2c6d25f
JM
3909 {
3910 int repeat;
3911 csum += c;
c906108c 3912
c2c6d25f
JM
3913 if (remote_cisco_mode == 0)
3914 {
3915 c = readchar (remote_timeout);
3916 csum += c;
3917 repeat = c - ' ' + 3; /* Compute repeat count */
3918 }
3919 else
3920 {
3921 /* Cisco's run-length encoding variant uses two
3922 hex chars to represent the repeat count. */
3923
3924 c = readchar (remote_timeout);
3925 csum += c;
3926 repeat = fromhex (c) << 4;
3927 c = readchar (remote_timeout);
3928 csum += c;
3929 repeat += fromhex (c);
3930 }
c906108c 3931
c2d11a7d
JM
3932 /* The character before ``*'' is repeated. */
3933
c2c6d25f 3934 if (repeat > 0 && repeat <= 255
c2d11a7d
JM
3935 && bc > 0
3936 && bc + repeat < sizeof_buf - 1)
c2c6d25f 3937 {
c2d11a7d
JM
3938 memset (&buf[bc], buf[bc - 1], repeat);
3939 bc += repeat;
c2c6d25f
JM
3940 continue;
3941 }
3942
c2d11a7d 3943 buf[bc] = '\0';
c2c6d25f
JM
3944 printf_filtered ("Repeat count %d too large for buffer: ", repeat);
3945 puts_filtered (buf);
3946 puts_filtered ("\n");
c2d11a7d 3947 return -1;
c2c6d25f 3948 }
c906108c 3949 default:
c2d11a7d 3950 if (bc < sizeof_buf - 1)
c906108c 3951 {
c2d11a7d 3952 buf[bc++] = c;
c906108c
SS
3953 csum += c;
3954 continue;
3955 }
3956
c2d11a7d 3957 buf[bc] = '\0';
c906108c
SS
3958 puts_filtered ("Remote packet too long: ");
3959 puts_filtered (buf);
3960 puts_filtered ("\n");
3961
c2d11a7d 3962 return -1;
c906108c
SS
3963 }
3964 }
3965}
3966
3967/* Read a packet from the remote machine, with error checking, and
c2d11a7d
JM
3968 store it in BUF. If FOREVER, wait forever rather than timing out;
3969 this is used (in synchronous mode) to wait for a target that is is
3970 executing user code to stop. */
d9fcf2fb
JM
3971/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
3972 don't have to change all the calls to getpkt to deal with the
3973 return value, because at the moment I don't know what the right
3974 thing to do it for those. */
c906108c 3975void
c2d11a7d
JM
3976getpkt (char *buf,
3977 long sizeof_buf,
3978 int forever)
d9fcf2fb
JM
3979{
3980 int timed_out;
3981
3982 timed_out = getpkt_sane (buf, sizeof_buf, forever);
3983}
3984
3985
3986/* Read a packet from the remote machine, with error checking, and
3987 store it in BUF. If FOREVER, wait forever rather than timing out;
3988 this is used (in synchronous mode) to wait for a target that is is
3989 executing user code to stop. If FOREVER == 0, this function is
3990 allowed to time out gracefully and return an indication of this to
3991 the caller. */
3992int
3993getpkt_sane (char *buf,
3994 long sizeof_buf,
3995 int forever)
c906108c
SS
3996{
3997 int c;
3998 int tries;
3999 int timeout;
4000 int val;
4001
c5aa993b 4002 strcpy (buf, "timeout");
c906108c
SS
4003
4004 if (forever)
4005 {
c906108c 4006 timeout = watchdog > 0 ? watchdog : -1;
c906108c
SS
4007 }
4008
4009 else
4010 timeout = remote_timeout;
4011
4012#define MAX_TRIES 3
4013
4014 for (tries = 1; tries <= MAX_TRIES; tries++)
4015 {
4016 /* This can loop forever if the remote side sends us characters
c5aa993b
JM
4017 continuously, but if it pauses, we'll get a zero from readchar
4018 because of timeout. Then we'll count that as a retry. */
c906108c
SS
4019
4020 /* Note that we will only wait forever prior to the start of a packet.
c5aa993b
JM
4021 After that, we expect characters to arrive at a brisk pace. They
4022 should show up within remote_timeout intervals. */
c906108c
SS
4023
4024 do
4025 {
4026 c = readchar (timeout);
4027
4028 if (c == SERIAL_TIMEOUT)
4029 {
2acceee2 4030 if (forever) /* Watchdog went off? Kill the target. */
c906108c 4031 {
2acceee2 4032 QUIT;
c906108c
SS
4033 target_mourn_inferior ();
4034 error ("Watchdog has expired. Target detached.\n");
4035 }
c906108c 4036 if (remote_debug)
0f71a2f6 4037 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c
SS
4038 goto retry;
4039 }
4040 }
4041 while (c != '$');
4042
4043 /* We've found the start of a packet, now collect the data. */
4044
c2d11a7d 4045 val = read_frame (buf, sizeof_buf);
c906108c 4046
c2d11a7d 4047 if (val >= 0)
c906108c
SS
4048 {
4049 if (remote_debug)
43e526b9
JM
4050 {
4051 fprintf_unfiltered (gdb_stdlog, "Packet received: ");
4052 fputstr_unfiltered (buf, 0, gdb_stdlog);
4053 fprintf_unfiltered (gdb_stdlog, "\n");
4054 }
c906108c 4055 SERIAL_WRITE (remote_desc, "+", 1);
d9fcf2fb 4056 return 0;
c906108c
SS
4057 }
4058
4059 /* Try the whole thing again. */
4060 retry:
4061 SERIAL_WRITE (remote_desc, "-", 1);
4062 }
4063
4064 /* We have tried hard enough, and just can't receive the packet. Give up. */
4065
4066 printf_unfiltered ("Ignoring packet error, continuing...\n");
4067 SERIAL_WRITE (remote_desc, "+", 1);
d9fcf2fb 4068 return 1;
c906108c
SS
4069}
4070\f
4071static void
4072remote_kill ()
4073{
4074 /* For some mysterious reason, wait_for_inferior calls kill instead of
4075 mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */
4076 if (kill_kludge)
4077 {
4078 kill_kludge = 0;
4079 target_mourn_inferior ();
4080 return;
4081 }
4082
4083 /* Use catch_errors so the user can quit from gdb even when we aren't on
4084 speaking terms with the remote system. */
c5aa993b 4085 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
c906108c
SS
4086
4087 /* Don't wait for it to die. I'm not really sure it matters whether
4088 we do or not. For the existing stubs, kill is a noop. */
4089 target_mourn_inferior ();
4090}
4091
43ff13b4
JM
4092/* Async version of remote_kill. */
4093static void
4094remote_async_kill ()
4095{
4096 /* Unregister the file descriptor from the event loop. */
ed9a39eb 4097 if (target_is_async_p ())
c2c6d25f 4098 SERIAL_ASYNC (remote_desc, NULL, 0);
43ff13b4
JM
4099
4100 /* For some mysterious reason, wait_for_inferior calls kill instead of
4101 mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */
4102 if (kill_kludge)
4103 {
4104 kill_kludge = 0;
4105 target_mourn_inferior ();
4106 return;
4107 }
4108
4109 /* Use catch_errors so the user can quit from gdb even when we aren't on
4110 speaking terms with the remote system. */
c5aa993b 4111 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
43ff13b4
JM
4112
4113 /* Don't wait for it to die. I'm not really sure it matters whether
4114 we do or not. For the existing stubs, kill is a noop. */
4115 target_mourn_inferior ();
4116}
4117
c906108c
SS
4118static void
4119remote_mourn ()
4120{
4121 remote_mourn_1 (&remote_ops);
4122}
4123
53a5351d
JM
4124static void
4125remote_async_mourn ()
4126{
4127 remote_mourn_1 (&remote_async_ops);
4128}
4129
c906108c
SS
4130static void
4131extended_remote_mourn ()
4132{
4133 /* We do _not_ want to mourn the target like this; this will
4134 remove the extended remote target from the target stack,
4135 and the next time the user says "run" it'll fail.
4136
4137 FIXME: What is the right thing to do here? */
4138#if 0
4139 remote_mourn_1 (&extended_remote_ops);
4140#endif
4141}
4142
4143/* Worker function for remote_mourn. */
4144static void
4145remote_mourn_1 (target)
4146 struct target_ops *target;
4147{
4148 unpush_target (target);
4149 generic_mourn_inferior ();
4150}
4151
4152/* In the extended protocol we want to be able to do things like
4153 "run" and have them basically work as expected. So we need
4154 a special create_inferior function.
4155
4156 FIXME: One day add support for changing the exec file
4157 we're debugging, arguments and an environment. */
4158
4159static void
4160extended_remote_create_inferior (exec_file, args, env)
4161 char *exec_file;
4162 char *args;
4163 char **env;
4164{
4165 /* Rip out the breakpoints; we'll reinsert them after restarting
4166 the remote server. */
4167 remove_breakpoints ();
4168
4169 /* Now restart the remote server. */
4170 extended_remote_restart ();
4171
4172 /* Now put the breakpoints back in. This way we're safe if the
4173 restart function works via a unix fork on the remote side. */
4174 insert_breakpoints ();
4175
4176 /* Clean up from the last time we were running. */
4177 clear_proceed_status ();
4178
4179 /* Let the remote process run. */
4180 proceed (-1, TARGET_SIGNAL_0, 0);
4181}
4182
43ff13b4
JM
4183/* Async version of extended_remote_create_inferior. */
4184static void
4185extended_remote_async_create_inferior (exec_file, args, env)
4186 char *exec_file;
4187 char *args;
4188 char **env;
4189{
4190 /* Rip out the breakpoints; we'll reinsert them after restarting
4191 the remote server. */
4192 remove_breakpoints ();
4193
4194 /* If running asynchronously, register the target file descriptor
4195 with the event loop. */
2acceee2
JM
4196 if (event_loop_p && target_can_async_p ())
4197 target_async (inferior_event_handler, 0);
43ff13b4
JM
4198
4199 /* Now restart the remote server. */
4200 extended_remote_restart ();
4201
4202 /* Now put the breakpoints back in. This way we're safe if the
4203 restart function works via a unix fork on the remote side. */
4204 insert_breakpoints ();
4205
4206 /* Clean up from the last time we were running. */
4207 clear_proceed_status ();
4208
4209 /* Let the remote process run. */
4210 proceed (-1, TARGET_SIGNAL_0, 0);
4211}
c906108c 4212\f
c5aa993b 4213
c906108c
SS
4214/* On some machines, e.g. 68k, we may use a different breakpoint instruction
4215 than other targets; in those use REMOTE_BREAKPOINT instead of just
4216 BREAKPOINT. Also, bi-endian targets may define LITTLE_REMOTE_BREAKPOINT
4217 and BIG_REMOTE_BREAKPOINT. If none of these are defined, we just call
4218 the standard routines that are in mem-break.c. */
4219
4220/* FIXME, these ought to be done in a more dynamic fashion. For instance,
4221 the choice of breakpoint instruction affects target program design and
4222 vice versa, and by making it user-tweakable, the special code here
4223 goes away and we need fewer special GDB configurations. */
4224
4225#if defined (LITTLE_REMOTE_BREAKPOINT) && defined (BIG_REMOTE_BREAKPOINT) && !defined(REMOTE_BREAKPOINT)
4226#define REMOTE_BREAKPOINT
4227#endif
4228
4229#ifdef REMOTE_BREAKPOINT
4230
4231/* If the target isn't bi-endian, just pretend it is. */
4232#if !defined (LITTLE_REMOTE_BREAKPOINT) && !defined (BIG_REMOTE_BREAKPOINT)
4233#define LITTLE_REMOTE_BREAKPOINT REMOTE_BREAKPOINT
4234#define BIG_REMOTE_BREAKPOINT REMOTE_BREAKPOINT
4235#endif
4236
4237static unsigned char big_break_insn[] = BIG_REMOTE_BREAKPOINT;
4238static unsigned char little_break_insn[] = LITTLE_REMOTE_BREAKPOINT;
4239
4240#endif /* REMOTE_BREAKPOINT */
4241
4242/* Insert a breakpoint on targets that don't have any better breakpoint
4243 support. We read the contents of the target location and stash it,
4244 then overwrite it with a breakpoint instruction. ADDR is the target
4245 location in the target machine. CONTENTS_CACHE is a pointer to
4246 memory allocated for saving the target contents. It is guaranteed
4247 by the caller to be long enough to save sizeof BREAKPOINT bytes (this
4248 is accomplished via BREAKPOINT_MAX). */
4249
4250static int
4251remote_insert_breakpoint (addr, contents_cache)
4252 CORE_ADDR addr;
4253 char *contents_cache;
4254{
4255#ifdef REMOTE_BREAKPOINT
4256 int val;
96baa820
JM
4257#endif
4258 int bp_size;
4259
4260 /* Try the "Z" packet if it is not already disabled.
4261 If it succeeds, then set the support to PACKET_ENABLE.
4262 If it fails, and the user has explicitly requested the Z support
4263 then report an error, otherwise, mark it disabled and go on. */
4264
4265 if ((remote_protocol_Z.support == PACKET_ENABLE)
4266 || (remote_protocol_Z.support == PACKET_SUPPORT_UNKNOWN))
4267 {
e514a9d6
JM
4268 char *buf = alloca (PBUFSIZ);
4269 char *p = buf;
96baa820
JM
4270
4271 addr = remote_address_masked (addr);
4272 *(p++) = 'Z';
4273 *(p++) = '0';
4274 *(p++) = ',';
4275 p += hexnumstr (p, (ULONGEST) addr);
4276 BREAKPOINT_FROM_PC (&addr, &bp_size);
4277 sprintf (p, ",%d", bp_size);
4278
4279 putpkt (buf);
c2d11a7d 4280 getpkt (buf, PBUFSIZ, 0);
96baa820
JM
4281
4282 if (buf[0] != '\0')
4283 {
4284 remote_protocol_Z.support = PACKET_ENABLE;
4285 return (buf[0] == 'E');
4286 }
4287
4288 /* The stub does not support the 'Z' request. If the user has
4289 explicitly requested the Z support, or if the stub previously
4290 said it supported the packet, this is an error,
4291 otherwise, mark it disabled. */
4292
4293 else if (remote_protocol_Z.support == PACKET_ENABLE)
4294 {
4295 error ("Protocol error: Z packet not recognized by stub");
4296 }
4297 else
4298 {
4299 remote_protocol_Z.support = PACKET_DISABLE;
4300 }
4301 }
c906108c 4302
96baa820 4303#ifdef REMOTE_BREAKPOINT
c906108c
SS
4304 val = target_read_memory (addr, contents_cache, sizeof big_break_insn);
4305
4306 if (val == 0)
4307 {
4308 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
4309 val = target_write_memory (addr, (char *) big_break_insn,
4310 sizeof big_break_insn);
4311 else
4312 val = target_write_memory (addr, (char *) little_break_insn,
4313 sizeof little_break_insn);
4314 }
4315
4316 return val;
4317#else
4318 return memory_insert_breakpoint (addr, contents_cache);
4319#endif /* REMOTE_BREAKPOINT */
4320}
4321
4322static int
4323remote_remove_breakpoint (addr, contents_cache)
4324 CORE_ADDR addr;
4325 char *contents_cache;
4326{
96baa820
JM
4327 int bp_size;
4328
4329 if ((remote_protocol_Z.support == PACKET_ENABLE)
4330 || (remote_protocol_Z.support == PACKET_SUPPORT_UNKNOWN))
4331 {
e514a9d6
JM
4332 char *buf = alloca (PBUFSIZ);
4333 char *p = buf;
96baa820
JM
4334
4335 *(p++) = 'z';
4336 *(p++) = '0';
4337 *(p++) = ',';
4338
4339 addr = remote_address_masked (addr);
4340 p += hexnumstr (p, (ULONGEST) addr);
4341 BREAKPOINT_FROM_PC (&addr, &bp_size);
4342 sprintf (p, ",%d", bp_size);
4343
4344 putpkt (buf);
c2d11a7d 4345 getpkt (buf, PBUFSIZ, 0);
96baa820
JM
4346
4347 return (buf[0] == 'E');
4348 }
4349
c906108c
SS
4350#ifdef REMOTE_BREAKPOINT
4351 return target_write_memory (addr, contents_cache, sizeof big_break_insn);
4352#else
4353 return memory_remove_breakpoint (addr, contents_cache);
4354#endif /* REMOTE_BREAKPOINT */
4355}
4356
96baa820
JM
4357#ifdef TARGET_HAS_HARDWARE_WATCHPOINTS
4358int
4359remote_insert_watchpoint (addr, len, type)
4360 CORE_ADDR addr;
4361 int len;
4362 int type;
4363{
e514a9d6
JM
4364 char *buf = alloca (PBUFSIZ);
4365 char *p;
96baa820
JM
4366
4367 if (remote_protocol_Z.support == PACKET_DISABLE)
4368 error ("Can't set hardware watchpoints without the 'Z' packet\n");
4369
4370 sprintf (buf, "Z%x,", type + 2 );
4371 p = strchr (buf, '\0');
4372 addr = remote_address_masked (addr);
4373 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 4374 sprintf (p, ",%x", len);
96baa820
JM
4375
4376 putpkt (buf);
c2d11a7d 4377 getpkt (buf, PBUFSIZ, 0);
96baa820
JM
4378
4379 if (buf[0] == '\0' || buf [0] == 'E')
4380 return -1;
4381
4382 return 0;
4383}
4384
4385int
4386remote_remove_watchpoint (addr, len, type)
4387 CORE_ADDR addr;
4388 int len;
4389 int type;
4390{
e514a9d6
JM
4391 char *buf = alloca (PBUFSIZ);
4392 char *p;
96baa820
JM
4393
4394 sprintf (buf, "z%x,", type + 2 );
4395 p = strchr (buf, '\0');
4396 addr = remote_address_masked (addr);
4397 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 4398 sprintf (p, ",%x", len);
96baa820 4399 putpkt (buf);
c2d11a7d 4400 getpkt (buf, PBUFSIZ, 0);
96baa820
JM
4401
4402 if (buf[0] == '\0' || buf [0] == 'E')
4403 return -1;
4404
4405 return 0;
4406}
4407
4408int
4409remote_insert_hw_breakpoint (addr, len)
4410 CORE_ADDR addr;
4411 int len;
4412{
e514a9d6
JM
4413 char *buf = alloca (PBUFSIZ);
4414 char *p = buf;
96baa820
JM
4415
4416 if (remote_protocol_Z.support == PACKET_DISABLE)
4417 error ("Can't set hardware breakpoints without the 'Z' packet\n");
4418
4419 *(p++) = 'Z';
4420 *(p++) = '1';
4421 *(p++) = ',';
4422
4423 addr = remote_address_masked (addr);
4424 p += hexnumstr (p, (ULONGEST) addr);
4425 *p = '\0';
4426
4427 putpkt (buf);
c2d11a7d 4428 getpkt (buf, PBUFSIZ, 0);
96baa820
JM
4429
4430 if (buf[0] == '\0' || buf [0] == 'E')
4431 return -1;
4432
4433 return 0;
4434}
4435
4436int
4437remote_remove_hw_breakpoint (addr, len)
4438 CORE_ADDR addr;
4439 int len;
4440{
e514a9d6
JM
4441 char *buf = alloca (PBUFSIZ);
4442 char *p = buf;
96baa820
JM
4443
4444 *(p++) = 'z';
4445 *(p++) = '1';
4446 *(p++) = ',';
4447
4448 addr = remote_address_masked (addr);
4449 p += hexnumstr (p, (ULONGEST) addr);
4450 *p = '\0';
4451
4452 putpkt(buf);
c2d11a7d 4453 getpkt (buf, PBUFSIZ, 0);
96baa820
JM
4454
4455 if (buf[0] == '\0' || buf [0] == 'E')
4456 return -1;
4457
4458 return 0;
4459}
4460#endif
4461
c906108c
SS
4462/* Some targets are only capable of doing downloads, and afterwards
4463 they switch to the remote serial protocol. This function provides
4464 a clean way to get from the download target to the remote target.
4465 It's basically just a wrapper so that we don't have to expose any
4466 of the internal workings of remote.c.
4467
4468 Prior to calling this routine, you should shutdown the current
4469 target code, else you will get the "A program is being debugged
4470 already..." message. Usually a call to pop_target() suffices. */
4471
4472void
4473push_remote_target (name, from_tty)
4474 char *name;
4475 int from_tty;
4476{
4477 printf_filtered ("Switching to remote protocol\n");
4478 remote_open (name, from_tty);
4479}
4480
4481/* Other targets want to use the entire remote serial module but with
4482 certain remote_ops overridden. */
4483
4484void
4485open_remote_target (name, from_tty, target, extended_p)
4486 char *name;
4487 int from_tty;
4488 struct target_ops *target;
4489 int extended_p;
4490{
4491 printf_filtered ("Selecting the %sremote protocol\n",
4492 (extended_p ? "extended-" : ""));
4493 remote_open_1 (name, from_tty, target, extended_p);
4494}
4495
4496/* Table used by the crc32 function to calcuate the checksum. */
4497
c5aa993b
JM
4498static unsigned long crc32_table[256] =
4499{0, 0};
c906108c
SS
4500
4501static unsigned long
4502crc32 (buf, len, crc)
4503 unsigned char *buf;
4504 int len;
4505 unsigned int crc;
4506{
c5aa993b 4507 if (!crc32_table[1])
c906108c
SS
4508 {
4509 /* Initialize the CRC table and the decoding table. */
4510 int i, j;
4511 unsigned int c;
4512
4513 for (i = 0; i < 256; i++)
c5aa993b
JM
4514 {
4515 for (c = i << 24, j = 8; j > 0; --j)
4516 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
4517 crc32_table[i] = c;
4518 }
c906108c
SS
4519 }
4520
4521 while (len--)
4522 {
4523 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
4524 buf++;
4525 }
4526 return crc;
4527}
4528
4529/* compare-sections command
4530
4531 With no arguments, compares each loadable section in the exec bfd
4532 with the same memory range on the target, and reports mismatches.
4533 Useful for verifying the image on the target against the exec file.
4534 Depends on the target understanding the new "qCRC:" request. */
4535
e514a9d6
JM
4536/* FIXME: cagney/1999-10-26: This command should be broken down into a
4537 target method (target verify memory) and generic version of the
4538 actual command. This will allow other high-level code (especially
4539 generic_load()) to make use of this target functionality. */
4540
c906108c
SS
4541static void
4542compare_sections_command (args, from_tty)
4543 char *args;
4544 int from_tty;
4545{
4546 asection *s;
4547 unsigned long host_crc, target_crc;
4548 extern bfd *exec_bfd;
4549 struct cleanup *old_chain;
085dd6e6
JM
4550 char *tmp;
4551 char *sectdata;
4552 char *sectname;
4553 char *buf = alloca (PBUFSIZ);
c906108c
SS
4554 bfd_size_type size;
4555 bfd_vma lma;
4556 int matched = 0;
4557 int mismatched = 0;
4558
4559 if (!exec_bfd)
4560 error ("command cannot be used without an exec file");
4561 if (!current_target.to_shortname ||
4562 strcmp (current_target.to_shortname, "remote") != 0)
4563 error ("command can only be used with remote target");
4564
c5aa993b 4565 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
4566 {
4567 if (!(s->flags & SEC_LOAD))
c5aa993b 4568 continue; /* skip non-loadable section */
c906108c
SS
4569
4570 size = bfd_get_section_size_before_reloc (s);
4571 if (size == 0)
c5aa993b 4572 continue; /* skip zero-length section */
c906108c
SS
4573
4574 sectname = (char *) bfd_get_section_name (exec_bfd, s);
4575 if (args && strcmp (args, sectname) != 0)
c5aa993b 4576 continue; /* not the section selected by user */
c906108c 4577
c5aa993b 4578 matched = 1; /* do this section */
c906108c
SS
4579 lma = s->lma;
4580 /* FIXME: assumes lma can fit into long */
4581 sprintf (buf, "qCRC:%lx,%lx", (long) lma, (long) size);
4582 putpkt (buf);
4583
4584 /* be clever; compute the host_crc before waiting for target reply */
4585 sectdata = xmalloc (size);
4586 old_chain = make_cleanup (free, sectdata);
4587 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
4588 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
4589
c2d11a7d 4590 getpkt (buf, PBUFSIZ, 0);
c906108c
SS
4591 if (buf[0] == 'E')
4592 error ("target memory fault, section %s, range 0x%08x -- 0x%08x",
4593 sectname, lma, lma + size);
4594 if (buf[0] != 'C')
4595 error ("remote target does not support this operation");
4596
4597 for (target_crc = 0, tmp = &buf[1]; *tmp; tmp++)
4598 target_crc = target_crc * 16 + fromhex (*tmp);
4599
d4f3574e
SS
4600 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
4601 sectname, paddr (lma), paddr (lma + size));
c906108c
SS
4602 if (host_crc == target_crc)
4603 printf_filtered ("matched.\n");
4604 else
c5aa993b
JM
4605 {
4606 printf_filtered ("MIS-MATCHED!\n");
4607 mismatched++;
4608 }
c906108c
SS
4609
4610 do_cleanups (old_chain);
4611 }
4612 if (mismatched > 0)
4613 warning ("One or more sections of the remote executable does not match\n\
4614the loaded file\n");
4615 if (args && !matched)
4616 printf_filtered ("No loaded section named '%s'.\n", args);
4617}
4618
4619static int
4620remote_query (query_type, buf, outbuf, bufsiz)
4621 int query_type;
4622 char *buf;
4623 char *outbuf;
4624 int *bufsiz;
4625{
4626 int i;
085dd6e6 4627 char *buf2 = alloca (PBUFSIZ);
c906108c 4628 char *p2 = &buf2[0];
c906108c 4629
c5aa993b 4630 if (!bufsiz)
c906108c
SS
4631 error ("null pointer to remote bufer size specified");
4632
cce74817 4633 /* minimum outbuf size is PBUFSIZ - if bufsiz is not large enough let
c906108c
SS
4634 the caller know and return what the minimum size is */
4635 /* Note: a zero bufsiz can be used to query the minimum buffer size */
c5aa993b 4636 if (*bufsiz < PBUFSIZ)
c906108c
SS
4637 {
4638 *bufsiz = PBUFSIZ;
4639 return -1;
4640 }
4641
4642 /* except for querying the minimum buffer size, target must be open */
c5aa993b 4643 if (!remote_desc)
c906108c
SS
4644 error ("remote query is only available after target open");
4645
4646 /* we only take uppercase letters as query types, at least for now */
c5aa993b 4647 if ((query_type < 'A') || (query_type > 'Z'))
c906108c
SS
4648 error ("invalid remote query type");
4649
c5aa993b 4650 if (!buf)
c906108c
SS
4651 error ("null remote query specified");
4652
c5aa993b 4653 if (!outbuf)
c906108c
SS
4654 error ("remote query requires a buffer to receive data");
4655
4656 outbuf[0] = '\0';
4657
4658 *p2++ = 'q';
4659 *p2++ = query_type;
4660
4661 /* we used one buffer char for the remote protocol q command and another
4662 for the query type. As the remote protocol encapsulation uses 4 chars
4663 plus one extra in case we are debugging (remote_debug),
4664 we have PBUFZIZ - 7 left to pack the query string */
4665 i = 0;
c5aa993b 4666 while (buf[i] && (i < (PBUFSIZ - 8)))
c906108c
SS
4667 {
4668 /* bad caller may have sent forbidden characters */
c5aa993b
JM
4669 if ((!isprint (buf[i])) || (buf[i] == '$') || (buf[i] == '#'))
4670 error ("illegal characters in query string");
c906108c
SS
4671
4672 *p2++ = buf[i];
4673 i++;
4674 }
4675 *p2 = buf[i];
4676
c5aa993b 4677 if (buf[i])
c906108c
SS
4678 error ("query larger than available buffer");
4679
4680 i = putpkt (buf2);
c5aa993b
JM
4681 if (i < 0)
4682 return i;
c906108c 4683
c2d11a7d 4684 getpkt (outbuf, *bufsiz, 0);
c906108c
SS
4685
4686 return 0;
4687}
4688
96baa820
JM
4689static void
4690remote_rcmd (char *command,
d9fcf2fb 4691 struct ui_file *outbuf)
96baa820
JM
4692{
4693 int i;
4694 char *buf = alloca (PBUFSIZ);
4695 char *p = buf;
4696
4697 if (!remote_desc)
4698 error ("remote rcmd is only available after target open");
4699
7be570e7
JM
4700 /* Send a NULL command across as an empty command */
4701 if (command == NULL)
4702 command = "";
4703
96baa820
JM
4704 /* The query prefix */
4705 strcpy (buf, "qRcmd,");
4706 p = strchr (buf, '\0');
4707
4708 if ((strlen (buf) + strlen (command) * 2 + 8/*misc*/) > PBUFSIZ)
4709 error ("\"monitor\" command ``%s'' is too long\n", command);
4710
4711 /* Encode the actual command */
4712 for (i = 0; command[i]; i++)
4713 {
4714 *p++ = tohex ((command[i] >> 4) & 0xf);
4715 *p++ = tohex (command[i] & 0xf);
4716 }
4717 *p = '\0';
4718
4719 if (putpkt (buf) < 0)
4720 error ("Communication problem with target\n");
4721
4722 /* get/display the response */
4723 while (1)
4724 {
4725 /* XXX - see also tracepoint.c:remote_get_noisy_reply() */
4726 buf[0] = '\0';
c2d11a7d 4727 getpkt (buf, PBUFSIZ, 0);
96baa820
JM
4728 if (buf[0] == '\0')
4729 error ("Target does not support this command\n");
4730 if (buf[0] == 'O' && buf[1] != 'K')
4731 {
4732 remote_console_output (buf + 1); /* 'O' message from stub */
4733 continue;
4734 }
4735 if (strcmp (buf, "OK") == 0)
4736 break;
7be570e7
JM
4737 if (strlen (buf) == 3 && buf[0] == 'E'
4738 && isdigit (buf[1]) && isdigit (buf[2]))
4739 {
4740 error ("Protocol error with Rcmd");
4741 }
96baa820
JM
4742 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
4743 {
4744 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
4745 fputc_unfiltered (c, outbuf);
4746 }
4747 break;
4748 }
4749}
4750
c906108c
SS
4751static void
4752packet_command (args, from_tty)
4753 char *args;
4754 int from_tty;
4755{
085dd6e6 4756 char *buf = alloca (PBUFSIZ);
c906108c 4757
c5aa993b 4758 if (!remote_desc)
c906108c
SS
4759 error ("command can only be used with remote target");
4760
c5aa993b 4761 if (!args)
c906108c
SS
4762 error ("remote-packet command requires packet text as argument");
4763
4764 puts_filtered ("sending: ");
4765 print_packet (args);
4766 puts_filtered ("\n");
4767 putpkt (args);
4768
c2d11a7d 4769 getpkt (buf, PBUFSIZ, 0);
c906108c
SS
4770 puts_filtered ("received: ");
4771 print_packet (buf);
4772 puts_filtered ("\n");
4773}
4774
4775#if 0
4776/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------------- */
4777
a14ed312 4778static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 4779
a14ed312 4780static void threadset_test_cmd (char *cmd, int tty);
c906108c 4781
a14ed312 4782static void threadalive_test (char *cmd, int tty);
c906108c 4783
a14ed312 4784static void threadlist_test_cmd (char *cmd, int tty);
c906108c 4785
a14ed312 4786int get_and_display_threadinfo (threadref * ref);
c906108c 4787
a14ed312 4788static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 4789
a14ed312 4790static int thread_display_step (threadref * ref, void *context);
c906108c 4791
a14ed312 4792static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 4793
a14ed312 4794static void init_remote_threadtests (void);
c906108c 4795
c5aa993b 4796#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid */
c906108c
SS
4797
4798static void
4799threadset_test_cmd (cmd, tty)
4800 char *cmd;
4801 int tty;
4802{
4803 int sample_thread = SAMPLE_THREAD;
4804
4805 printf_filtered ("Remote threadset test\n");
4806 set_thread (sample_thread, 1);
4807}
4808
4809
4810static void
4811threadalive_test (cmd, tty)
4812 char *cmd;
4813 int tty;
4814{
4815 int sample_thread = SAMPLE_THREAD;
4816
4817 if (remote_thread_alive (sample_thread))
4818 printf_filtered ("PASS: Thread alive test\n");
4819 else
4820 printf_filtered ("FAIL: Thread alive test\n");
4821}
4822
a14ed312 4823void output_threadid (char *title, threadref * ref);
c906108c
SS
4824
4825void
4826output_threadid (title, ref)
4827 char *title;
4828 threadref *ref;
4829{
4830 char hexid[20];
4831
4832 pack_threadid (&hexid[0], ref); /* Convert threead id into hex */
4833 hexid[16] = 0;
4834 printf_filtered ("%s %s\n", title, (&hexid[0]));
4835}
4836
4837static void
4838threadlist_test_cmd (cmd, tty)
4839 char *cmd;
4840 int tty;
4841{
4842 int startflag = 1;
4843 threadref nextthread;
4844 int done, result_count;
4845 threadref threadlist[3];
4846
4847 printf_filtered ("Remote Threadlist test\n");
4848 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
4849 &result_count, &threadlist[0]))
4850 printf_filtered ("FAIL: threadlist test\n");
4851 else
4852 {
4853 threadref *scan = threadlist;
4854 threadref *limit = scan + result_count;
4855
4856 while (scan < limit)
4857 output_threadid (" thread ", scan++);
4858 }
4859}
4860
4861void
4862display_thread_info (info)
4863 struct gdb_ext_thread_info *info;
4864{
4865 output_threadid ("Threadid: ", &info->threadid);
4866 printf_filtered ("Name: %s\n ", info->shortname);
4867 printf_filtered ("State: %s\n", info->display);
4868 printf_filtered ("other: %s\n\n", info->more_display);
4869}
4870
4871int
4872get_and_display_threadinfo (ref)
4873 threadref *ref;
4874{
4875 int result;
4876 int set;
4877 struct gdb_ext_thread_info threadinfo;
4878
4879 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
4880 | TAG_MOREDISPLAY | TAG_DISPLAY;
4881 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
4882 display_thread_info (&threadinfo);
4883 return result;
4884}
4885
4886static void
4887threadinfo_test_cmd (cmd, tty)
4888 char *cmd;
4889 int tty;
4890{
4891 int athread = SAMPLE_THREAD;
4892 threadref thread;
4893 int set;
4894
4895 int_to_threadref (&thread, athread);
4896 printf_filtered ("Remote Threadinfo test\n");
4897 if (!get_and_display_threadinfo (&thread))
4898 printf_filtered ("FAIL cannot get thread info\n");
4899}
4900
4901static int
4902thread_display_step (ref, context)
4903 threadref *ref;
4904 void *context;
4905{
4906 /* output_threadid(" threadstep ",ref); *//* simple test */
4907 return get_and_display_threadinfo (ref);
4908}
4909
4910static void
4911threadlist_update_test_cmd (cmd, tty)
4912 char *cmd;
4913 int tty;
4914{
4915 printf_filtered ("Remote Threadlist update test\n");
4916 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
4917}
4918
4919static void
4920init_remote_threadtests (void)
4921{
4922 add_com ("tlist", class_obscure, threadlist_test_cmd,
4923 "Fetch and print the remote list of thread identifiers, one pkt only");
4924 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
4925 "Fetch and display info about one thread");
4926 add_com ("tset", class_obscure, threadset_test_cmd,
4927 "Test setting to a different thread");
4928 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
4929 "Iterate through updating all remote thread info");
4930 add_com ("talive", class_obscure, threadalive_test,
4931 " Remote thread alive test ");
4932}
4933
4934#endif /* 0 */
4935
4936static void
4937init_remote_ops ()
4938{
c5aa993b 4939 remote_ops.to_shortname = "remote";
c906108c 4940 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 4941 remote_ops.to_doc =
c906108c 4942 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
4943Specify the serial device it is connected to\n\
4944(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
4945 remote_ops.to_open = remote_open;
4946 remote_ops.to_close = remote_close;
c906108c 4947 remote_ops.to_detach = remote_detach;
c5aa993b 4948 remote_ops.to_resume = remote_resume;
c906108c
SS
4949 remote_ops.to_wait = remote_wait;
4950 remote_ops.to_fetch_registers = remote_fetch_registers;
4951 remote_ops.to_store_registers = remote_store_registers;
4952 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c5aa993b
JM
4953 remote_ops.to_xfer_memory = remote_xfer_memory;
4954 remote_ops.to_files_info = remote_files_info;
c906108c
SS
4955 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
4956 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
c5aa993b
JM
4957 remote_ops.to_kill = remote_kill;
4958 remote_ops.to_load = generic_load;
c906108c
SS
4959 remote_ops.to_mourn_inferior = remote_mourn;
4960 remote_ops.to_thread_alive = remote_thread_alive;
0f71a2f6 4961 remote_ops.to_find_new_threads = remote_threads_info;
9d1f7ab2 4962 remote_ops.to_extra_thread_info = remote_threads_extra_info;
c906108c
SS
4963 remote_ops.to_stop = remote_stop;
4964 remote_ops.to_query = remote_query;
96baa820 4965 remote_ops.to_rcmd = remote_rcmd;
c906108c 4966 remote_ops.to_stratum = process_stratum;
c5aa993b
JM
4967 remote_ops.to_has_all_memory = 1;
4968 remote_ops.to_has_memory = 1;
4969 remote_ops.to_has_stack = 1;
4970 remote_ops.to_has_registers = 1;
4971 remote_ops.to_has_execution = 1;
4972 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
4973 remote_ops.to_magic = OPS_MAGIC;
c906108c
SS
4974}
4975
4976/* Set up the extended remote vector by making a copy of the standard
4977 remote vector and adding to it. */
4978
4979static void
4980init_extended_remote_ops ()
4981{
4982 extended_remote_ops = remote_ops;
4983
0f71a2f6 4984 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 4985 extended_remote_ops.to_longname =
c906108c 4986 "Extended remote serial target in gdb-specific protocol";
c5aa993b 4987 extended_remote_ops.to_doc =
c906108c
SS
4988 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
4989Specify the serial device it is connected to (e.g. /dev/ttya).",
c5aa993b 4990 extended_remote_ops.to_open = extended_remote_open;
c906108c
SS
4991 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
4992 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
0f71a2f6
JM
4993}
4994
4995/*
4996 * Command: info remote-process
4997 *
4998 * This implements Cisco's version of the "info proc" command.
4999 *
5000 * This query allows the target stub to return an arbitrary string
5001 * (or strings) giving arbitrary information about the target process.
5002 * This is optional; the target stub isn't required to implement it.
5003 *
5004 * Syntax: qfProcessInfo request first string
5005 * qsProcessInfo request subsequent string
5006 * reply: 'O'<hex-encoded-string>
5007 * 'l' last reply (empty)
5008 */
5009
5010static void
c2d11a7d 5011remote_info_process (char *args, int from_tty)
0f71a2f6 5012{
085dd6e6 5013 char *buf = alloca (PBUFSIZ);
0f71a2f6
JM
5014
5015 if (remote_desc == 0)
5016 error ("Command can only be used when connected to the remote target.");
5017
5018 putpkt ("qfProcessInfo");
c2d11a7d 5019 getpkt (buf, PBUFSIZ, 0);
0f71a2f6 5020 if (buf[0] == 0)
c5aa993b 5021 return; /* Silently: target does not support this feature. */
0f71a2f6
JM
5022
5023 if (buf[0] == 'E')
5024 error ("info proc: target error.");
5025
c5aa993b 5026 while (buf[0] == 'O') /* Capitol-O packet */
0f71a2f6
JM
5027 {
5028 remote_console_output (&buf[1]);
5029 putpkt ("qsProcessInfo");
c2d11a7d 5030 getpkt (buf, PBUFSIZ, 0);
0f71a2f6
JM
5031 }
5032}
5033
5034/*
5035 * Target Cisco
5036 */
5037
5038static void
c2d11a7d 5039remote_cisco_open (char *name, int from_tty)
0f71a2f6
JM
5040{
5041 if (name == 0)
5042 error (
c5aa993b 5043 "To open a remote debug connection, you need to specify what \n\
0f71a2f6
JM
5044device is attached to the remote system (e.g. host:port).");
5045
6426a772
JM
5046 /* See FIXME above */
5047 wait_forever_enabled_p = 1;
5048
0f71a2f6
JM
5049 target_preopen (from_tty);
5050
5051 unpush_target (&remote_cisco_ops);
5052
5053 remote_dcache = dcache_init (remote_read_bytes, remote_write_bytes);
5054
5055 remote_desc = SERIAL_OPEN (name);
5056 if (!remote_desc)
5057 perror_with_name (name);
5058
5059 /*
5060 * If a baud rate was specified on the gdb command line it will
5061 * be greater than the initial value of -1. If it is, use it otherwise
5062 * default to 9600
5063 */
5064
5065 baud_rate = (baud_rate > 0) ? baud_rate : 9600;
c5aa993b 5066 if (SERIAL_SETBAUDRATE (remote_desc, baud_rate))
0f71a2f6
JM
5067 {
5068 SERIAL_CLOSE (remote_desc);
5069 perror_with_name (name);
5070 }
5071
5072 SERIAL_RAW (remote_desc);
5073
5074 /* If there is something sitting in the buffer we might take it as a
5075 response to a command, which would be bad. */
5076 SERIAL_FLUSH_INPUT (remote_desc);
5077
5078 if (from_tty)
5079 {
5080 puts_filtered ("Remote debugging using ");
5081 puts_filtered (name);
5082 puts_filtered ("\n");
5083 }
5084
5085 remote_cisco_mode = 1;
5086
5087 push_target (&remote_cisco_ops); /* Switch to using cisco target now */
5088
5a2468f5 5089 init_packet_config (&remote_protocol_P);
96baa820 5090 init_packet_config (&remote_protocol_Z);
0f71a2f6 5091
c5aa993b 5092 general_thread = -2;
0f71a2f6
JM
5093 continue_thread = -2;
5094
5095 /* Force remote_write_bytes to check whether target supports
5096 binary downloading. */
96baa820 5097 init_packet_config (&remote_protocol_binary_download);
0f71a2f6 5098
9d1f7ab2
MS
5099 /* Probe for ability to use "ThreadInfo" query, as required. */
5100 use_threadinfo_query = 1;
5101 use_threadextra_query = 1;
5102
0f71a2f6
JM
5103 /* Without this, some commands which require an active target (such
5104 as kill) won't work. This variable serves (at least) double duty
5105 as both the pid of the target process (if it has such), and as a
5106 flag indicating that a target is active. These functions should
5107 be split out into seperate variables, especially since GDB will
5108 someday have a notion of debugging several processes. */
5109 inferior_pid = MAGIC_NULL_PID;
5110
5111 /* Start the remote connection; if error (0), discard this target. */
5112
c5aa993b
JM
5113 if (!catch_errors (remote_start_remote_dummy, (char *) 0,
5114 "Couldn't establish connection to remote target\n",
0f71a2f6
JM
5115 RETURN_MASK_ALL))
5116 {
5117 pop_target ();
5118 return;
5119 }
5120}
5121
5122static void
c2d11a7d 5123remote_cisco_close (int quitting)
0f71a2f6
JM
5124{
5125 remote_cisco_mode = 0;
5126 remote_close (quitting);
5127}
5128
c5aa993b 5129static void
8ab86381 5130remote_cisco_mourn (void)
0f71a2f6
JM
5131{
5132 remote_mourn_1 (&remote_cisco_ops);
5133}
5134
c5aa993b
JM
5135enum
5136{
5137 READ_MORE,
5138 FATAL_ERROR,
5139 ENTER_DEBUG,
0f71a2f6 5140 DISCONNECT_TELNET
c5aa993b
JM
5141}
5142minitelnet_return;
0f71a2f6
JM
5143
5144/* shared between readsocket() and readtty() */
5145static char *tty_input;
5146
5147static int escape_count;
5148static int echo_check;
5149extern int quit_flag;
5150
5151static int
c2d11a7d 5152readsocket (void)
0f71a2f6
JM
5153{
5154 int data;
5155
5156 /* Loop until the socket doesn't have any more data */
5157
c5aa993b 5158 while ((data = readchar (0)) >= 0)
0f71a2f6
JM
5159 {
5160 /* Check for the escape sequence */
c5aa993b 5161 if (data == '|')
0f71a2f6
JM
5162 {
5163 /* If this is the fourth escape, get out */
c5aa993b 5164 if (++escape_count == 4)
0f71a2f6
JM
5165 {
5166 return ENTER_DEBUG;
5167 }
c5aa993b
JM
5168 else
5169 { /* This is a '|', but not the fourth in a row.
5170 Continue without echoing it. If it isn't actually
5171 one of four in a row, it'll be echoed later. */
0f71a2f6
JM
5172 continue;
5173 }
5174 }
c5aa993b
JM
5175 else
5176 /* Not a '|' */
5177 {
0f71a2f6
JM
5178 /* Ensure any pending '|'s are flushed. */
5179
c5aa993b
JM
5180 for (; escape_count > 0; escape_count--)
5181 putchar ('|');
0f71a2f6 5182 }
0f71a2f6 5183
c5aa993b
JM
5184 if (data == '\r') /* If this is a return character, */
5185 continue; /* - just supress it. */
5186
5187 if (echo_check != -1) /* Check for echo of user input. */
0f71a2f6
JM
5188 {
5189 if (tty_input[echo_check] == data)
5190 {
c5aa993b
JM
5191 echo_check++; /* Character matched user input: */
5192 continue; /* Continue without echoing it. */
0f71a2f6 5193 }
c5aa993b
JM
5194 else if ((data == '\n') && (tty_input[echo_check] == '\r'))
5195 { /* End of the line (and of echo checking). */
5196 echo_check = -1; /* No more echo supression */
5197 continue; /* Continue without echoing. */
0f71a2f6
JM
5198 }
5199 else
c5aa993b
JM
5200 { /* Failed check for echo of user input.
5201 We now have some suppressed output to flush! */
0f71a2f6
JM
5202 int j;
5203
c5aa993b 5204 for (j = 0; j < echo_check; j++)
0f71a2f6
JM
5205 putchar (tty_input[j]);
5206 echo_check = -1;
5207 }
5208 }
c5aa993b 5209 putchar (data); /* Default case: output the char. */
0f71a2f6
JM
5210 }
5211
c5aa993b
JM
5212 if (data == SERIAL_TIMEOUT) /* Timeout returned from readchar. */
5213 return READ_MORE; /* Try to read some more */
5214 else
5215 return FATAL_ERROR; /* Trouble, bail out */
0f71a2f6
JM
5216}
5217
5218static int
c2d11a7d 5219readtty (void)
0f71a2f6 5220{
0f71a2f6
JM
5221 int tty_bytecount;
5222
5223 /* First, read a buffer full from the terminal */
5224 tty_bytecount = read (fileno (stdin), tty_input, sizeof (tty_input) - 1);
c5aa993b 5225 if (tty_bytecount == -1)
0f71a2f6
JM
5226 {
5227 perror ("readtty: read failed");
5228 return FATAL_ERROR;
5229 }
5230
5231 /* Remove a quoted newline. */
5232 if (tty_input[tty_bytecount - 1] == '\n' &&
5233 tty_input[tty_bytecount - 2] == '\\') /* line ending in backslash */
5234 {
c5aa993b
JM
5235 tty_input[--tty_bytecount] = 0; /* remove newline */
5236 tty_input[--tty_bytecount] = 0; /* remove backslash */
0f71a2f6
JM
5237 }
5238
5239 /* Turn trailing newlines into returns */
5240 if (tty_input[tty_bytecount - 1] == '\n')
c5aa993b 5241 tty_input[tty_bytecount - 1] = '\r';
0f71a2f6
JM
5242
5243 /* If the line consists of a ~, enter debugging mode. */
5244 if ((tty_input[0] == '~') && (tty_bytecount == 2))
5245 return ENTER_DEBUG;
5246
5247 /* Make this a zero terminated string and write it out */
5248 tty_input[tty_bytecount] = 0;
c5aa993b 5249 if (SERIAL_WRITE (remote_desc, tty_input, tty_bytecount))
0f71a2f6
JM
5250 {
5251 perror_with_name ("readtty: write failed");
5252 return FATAL_ERROR;
5253 }
5254
5255 return READ_MORE;
5256}
5257
5258static int
c2d11a7d 5259minitelnet (void)
0f71a2f6
JM
5260{
5261 fd_set input; /* file descriptors for select */
c5aa993b
JM
5262 int tablesize; /* max number of FDs for select */
5263 int status;
5264 int quit_count = 0;
0f71a2f6
JM
5265
5266 extern int escape_count; /* global shared by readsocket */
5267 extern int echo_check; /* ditto */
5268
5269 escape_count = 0;
c5aa993b 5270 echo_check = -1;
0f71a2f6
JM
5271
5272 tablesize = 8 * sizeof (input);
5273
c5aa993b 5274 for (;;)
0f71a2f6
JM
5275 {
5276 /* Check for anything from our socket - doesn't block. Note that
c5aa993b
JM
5277 this must be done *before* the select as there may be
5278 buffered I/O waiting to be processed. */
0f71a2f6 5279
c5aa993b 5280 if ((status = readsocket ()) == FATAL_ERROR)
0f71a2f6
JM
5281 {
5282 error ("Debugging terminated by communications error");
5283 }
c5aa993b 5284 else if (status != READ_MORE)
0f71a2f6
JM
5285 {
5286 return (status);
5287 }
5288
c5aa993b 5289 fflush (stdout); /* Flush output before blocking */
0f71a2f6
JM
5290
5291 /* Now block on more socket input or TTY input */
c5aa993b 5292
0f71a2f6 5293 FD_ZERO (&input);
c5aa993b 5294 FD_SET (fileno (stdin), &input);
c2c6d25f 5295 FD_SET (DEPRECATED_SERIAL_FD (remote_desc), &input);
0f71a2f6
JM
5296
5297 status = select (tablesize, &input, 0, 0, 0);
c5aa993b 5298 if ((status == -1) && (errno != EINTR))
0f71a2f6
JM
5299 {
5300 error ("Communications error on select %d", errno);
5301 }
5302
5303 /* Handle Control-C typed */
5304
c5aa993b 5305 if (quit_flag)
0f71a2f6
JM
5306 {
5307 if ((++quit_count) == 2)
5308 {
5309 if (query ("Interrupt GDB? "))
5310 {
5311 printf_filtered ("Interrupted by user.\n");
5312 return_to_top_level (RETURN_QUIT);
5313 }
5314 quit_count = 0;
5315 }
5316 quit_flag = 0;
5317
5318 if (remote_break)
5319 SERIAL_SEND_BREAK (remote_desc);
5320 else
5321 SERIAL_WRITE (remote_desc, "\003", 1);
5322
5323 continue;
5324 }
5325
5326 /* Handle console input */
5327
c5aa993b 5328 if (FD_ISSET (fileno (stdin), &input))
0f71a2f6
JM
5329 {
5330 quit_count = 0;
5331 echo_check = 0;
5332 status = readtty ();
5333 if (status == READ_MORE)
5334 continue;
5335
5336 return status; /* telnet session ended */
5337 }
5338 }
5339}
5340
5341static int
c2d11a7d 5342remote_cisco_wait (int pid, struct target_waitstatus *status)
0f71a2f6 5343{
c5aa993b 5344 if (minitelnet () != ENTER_DEBUG)
0f71a2f6
JM
5345 {
5346 error ("Debugging session terminated by protocol error");
5347 }
5348 putpkt ("?");
5349 return remote_wait (pid, status);
5350}
5351
5352static void
5353init_remote_cisco_ops ()
5354{
5355 remote_cisco_ops.to_shortname = "cisco";
c5aa993b
JM
5356 remote_cisco_ops.to_longname = "Remote serial target in cisco-specific protocol";
5357 remote_cisco_ops.to_doc =
0f71a2f6
JM
5358 "Use a remote machine via TCP, using a cisco-specific protocol.\n\
5359Specify the serial device it is connected to (e.g. host:2020).";
c5aa993b
JM
5360 remote_cisco_ops.to_open = remote_cisco_open;
5361 remote_cisco_ops.to_close = remote_cisco_close;
5362 remote_cisco_ops.to_detach = remote_detach;
5363 remote_cisco_ops.to_resume = remote_resume;
5364 remote_cisco_ops.to_wait = remote_cisco_wait;
5365 remote_cisco_ops.to_fetch_registers = remote_fetch_registers;
5366 remote_cisco_ops.to_store_registers = remote_store_registers;
5367 remote_cisco_ops.to_prepare_to_store = remote_prepare_to_store;
5368 remote_cisco_ops.to_xfer_memory = remote_xfer_memory;
5369 remote_cisco_ops.to_files_info = remote_files_info;
0f71a2f6
JM
5370 remote_cisco_ops.to_insert_breakpoint = remote_insert_breakpoint;
5371 remote_cisco_ops.to_remove_breakpoint = remote_remove_breakpoint;
c5aa993b
JM
5372 remote_cisco_ops.to_kill = remote_kill;
5373 remote_cisco_ops.to_load = generic_load;
5374 remote_cisco_ops.to_mourn_inferior = remote_cisco_mourn;
5375 remote_cisco_ops.to_thread_alive = remote_thread_alive;
5376 remote_cisco_ops.to_find_new_threads = remote_threads_info;
9d1f7ab2 5377 remote_ops.to_extra_thread_info = remote_threads_extra_info;
c5aa993b
JM
5378 remote_cisco_ops.to_stratum = process_stratum;
5379 remote_cisco_ops.to_has_all_memory = 1;
5380 remote_cisco_ops.to_has_memory = 1;
5381 remote_cisco_ops.to_has_stack = 1;
5382 remote_cisco_ops.to_has_registers = 1;
5383 remote_cisco_ops.to_has_execution = 1;
5384 remote_cisco_ops.to_magic = OPS_MAGIC;
0f71a2f6
JM
5385}
5386
6426a772
JM
5387static int
5388remote_can_async_p (void)
5389{
5390 /* We're async whenever the serial device is. */
ed9a39eb 5391 return (current_target.to_async_mask_value) && SERIAL_CAN_ASYNC_P (remote_desc);
6426a772
JM
5392}
5393
5394static int
5395remote_is_async_p (void)
5396{
5397 /* We're async whenever the serial device is. */
ed9a39eb 5398 return (current_target.to_async_mask_value) && SERIAL_IS_ASYNC_P (remote_desc);
6426a772
JM
5399}
5400
2acceee2
JM
5401/* Pass the SERIAL event on and up to the client. One day this code
5402 will be able to delay notifying the client of an event until the
5403 point where an entire packet has been received. */
5404
5405static void (*async_client_callback) (enum inferior_event_type event_type, void *context);
5406static void *async_client_context;
5407static serial_event_ftype remote_async_serial_handler;
5408
6426a772 5409static void
2acceee2 5410remote_async_serial_handler (serial_t scb, void *context)
6426a772 5411{
2acceee2
JM
5412 /* Don't propogate error information up to the client. Instead let
5413 the client find out about the error by querying the target. */
5414 async_client_callback (INF_REG_EVENT, async_client_context);
5415}
5416
5417static void
5418remote_async (void (*callback) (enum inferior_event_type event_type, void *context), void *context)
5419{
ed9a39eb
JM
5420 if (current_target.to_async_mask_value == 0)
5421 internal_error ("Calling remote_async when async is masked");
5422
2acceee2
JM
5423 if (callback != NULL)
5424 {
5425 SERIAL_ASYNC (remote_desc, remote_async_serial_handler, NULL);
5426 async_client_callback = callback;
5427 async_client_context = context;
5428 }
5429 else
5430 SERIAL_ASYNC (remote_desc, NULL, NULL);
6426a772
JM
5431}
5432
43ff13b4
JM
5433/* Target async and target extended-async.
5434
5435 This are temporary targets, until it is all tested. Eventually
5436 async support will be incorporated int the usual 'remote'
5437 target. */
5438
5439static void
c2d11a7d 5440init_remote_async_ops (void)
43ff13b4
JM
5441{
5442 remote_async_ops.to_shortname = "async";
c5aa993b
JM
5443 remote_async_ops.to_longname = "Remote serial target in async version of the gdb-specific protocol";
5444 remote_async_ops.to_doc =
43ff13b4
JM
5445 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
5446Specify the serial device it is connected to (e.g. /dev/ttya).";
c5aa993b
JM
5447 remote_async_ops.to_open = remote_async_open;
5448 remote_async_ops.to_close = remote_close;
5449 remote_async_ops.to_detach = remote_async_detach;
5450 remote_async_ops.to_resume = remote_async_resume;
5451 remote_async_ops.to_wait = remote_async_wait;
5452 remote_async_ops.to_fetch_registers = remote_fetch_registers;
5453 remote_async_ops.to_store_registers = remote_store_registers;
5454 remote_async_ops.to_prepare_to_store = remote_prepare_to_store;
5455 remote_async_ops.to_xfer_memory = remote_xfer_memory;
5456 remote_async_ops.to_files_info = remote_files_info;
43ff13b4
JM
5457 remote_async_ops.to_insert_breakpoint = remote_insert_breakpoint;
5458 remote_async_ops.to_remove_breakpoint = remote_remove_breakpoint;
6426a772
JM
5459 remote_async_ops.to_terminal_inferior = remote_async_terminal_inferior;
5460 remote_async_ops.to_terminal_ours = remote_async_terminal_ours;
c5aa993b
JM
5461 remote_async_ops.to_kill = remote_async_kill;
5462 remote_async_ops.to_load = generic_load;
53a5351d 5463 remote_async_ops.to_mourn_inferior = remote_async_mourn;
c5aa993b
JM
5464 remote_async_ops.to_thread_alive = remote_thread_alive;
5465 remote_async_ops.to_find_new_threads = remote_threads_info;
9d1f7ab2 5466 remote_ops.to_extra_thread_info = remote_threads_extra_info;
43ff13b4
JM
5467 remote_async_ops.to_stop = remote_stop;
5468 remote_async_ops.to_query = remote_query;
96baa820 5469 remote_async_ops.to_rcmd = remote_rcmd;
c5aa993b
JM
5470 remote_async_ops.to_stratum = process_stratum;
5471 remote_async_ops.to_has_all_memory = 1;
5472 remote_async_ops.to_has_memory = 1;
5473 remote_async_ops.to_has_stack = 1;
5474 remote_async_ops.to_has_registers = 1;
5475 remote_async_ops.to_has_execution = 1;
5476 remote_async_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
6426a772
JM
5477 remote_async_ops.to_can_async_p = remote_can_async_p;
5478 remote_async_ops.to_is_async_p = remote_is_async_p;
5479 remote_async_ops.to_async = remote_async;
ed9a39eb 5480 remote_async_ops.to_async_mask_value = 1;
c5aa993b 5481 remote_async_ops.to_magic = OPS_MAGIC;
43ff13b4
JM
5482}
5483
5484/* Set up the async extended remote vector by making a copy of the standard
5485 remote vector and adding to it. */
5486
5487static void
c2d11a7d 5488init_extended_async_remote_ops (void)
43ff13b4
JM
5489{
5490 extended_async_remote_ops = remote_async_ops;
5491
5492 extended_async_remote_ops.to_shortname = "extended-async";
c5aa993b 5493 extended_async_remote_ops.to_longname =
43ff13b4 5494 "Extended remote serial target in async gdb-specific protocol";
c5aa993b 5495 extended_async_remote_ops.to_doc =
43ff13b4
JM
5496 "Use a remote computer via a serial line, using an async gdb-specific protocol.\n\
5497Specify the serial device it is connected to (e.g. /dev/ttya).",
c5aa993b 5498 extended_async_remote_ops.to_open = extended_remote_async_open;
43ff13b4
JM
5499 extended_async_remote_ops.to_create_inferior = extended_remote_async_create_inferior;
5500 extended_async_remote_ops.to_mourn_inferior = extended_remote_mourn;
5501}
5502
5a2468f5 5503static void
c2d11a7d 5504set_remote_cmd (char *args, int from_tty)
5a2468f5
JM
5505{
5506
5507}
5508
5509
0f71a2f6
JM
5510static void
5511build_remote_gdbarch_data ()
5512{
11cf8741
JM
5513 build_remote_packet_sizes ();
5514
5515 /* Cisco stuff */
0f71a2f6 5516 tty_input = xmalloc (PBUFSIZ);
11cf8741 5517 remote_address_size = TARGET_PTR_BIT;
0f71a2f6
JM
5518}
5519
c906108c
SS
5520void
5521_initialize_remote ()
5522{
5a2468f5
JM
5523 static struct cmd_list_element *remote_set_cmdlist;
5524 static struct cmd_list_element *remote_show_cmdlist;
11cf8741 5525 struct cmd_list_element *tmpcmd;
5a2468f5 5526
0f71a2f6
JM
5527 /* architecture specific data */
5528 build_remote_gdbarch_data ();
5529 register_gdbarch_swap (&tty_input, sizeof (&tty_input), NULL);
11cf8741
JM
5530 register_remote_packet_sizes ();
5531 register_gdbarch_swap (&remote_address_size,
5532 sizeof (&remote_address_size), NULL);
0f71a2f6
JM
5533 register_gdbarch_swap (NULL, 0, build_remote_gdbarch_data);
5534
c906108c
SS
5535 init_remote_ops ();
5536 add_target (&remote_ops);
5537
5538 init_extended_remote_ops ();
5539 add_target (&extended_remote_ops);
cce74817 5540
43ff13b4
JM
5541 init_remote_async_ops ();
5542 add_target (&remote_async_ops);
5543
5544 init_extended_async_remote_ops ();
5545 add_target (&extended_async_remote_ops);
5546
0f71a2f6
JM
5547 init_remote_cisco_ops ();
5548 add_target (&remote_cisco_ops);
5549
c906108c
SS
5550#if 0
5551 init_remote_threadtests ();
5552#endif
5553
5a2468f5
JM
5554 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, "\
5555Remote protocol specific variables\n\
5556Configure various remote-protocol specific variables such as\n\
5557the packets being used",
cff3e48b 5558 &remote_set_cmdlist, "set remote ",
5a2468f5
JM
5559 0/*allow-unknown*/, &setlist);
5560 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, "\
5561Remote protocol specific variables\n\
5562Configure various remote-protocol specific variables such as\n\
5563the packets being used",
cff3e48b 5564 &remote_show_cmdlist, "show remote ",
5a2468f5
JM
5565 0/*allow-unknown*/, &showlist);
5566
c5aa993b 5567 add_cmd ("compare-sections", class_obscure, compare_sections_command,
c906108c 5568 "Compare section data on target to the exec file.\n\
c5aa993b 5569Argument is a single section name (default: all loaded sections).",
c906108c
SS
5570 &cmdlist);
5571
5572 add_cmd ("packet", class_maintenance, packet_command,
5573 "Send an arbitrary packet to a remote target.\n\
5574 maintenance packet TEXT\n\
5575If GDB is talking to an inferior via the GDB serial protocol, then\n\
5576this command sends the string TEXT to the inferior, and displays the\n\
5577response packet. GDB supplies the initial `$' character, and the\n\
5578terminating `#' character and checksum.",
5579 &maintenancelist);
5580
c5aa993b 5581 add_show_from_set
c906108c 5582 (add_set_cmd ("remotebreak", no_class,
adf40b2e 5583 var_boolean, (char *) &remote_break,
c906108c
SS
5584 "Set whether to send break if interrupted.\n",
5585 &setlist),
5586 &showlist);
5587
11cf8741
JM
5588 /* Install commands for configuring memory read/write packets. */
5589
5590 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size,
5591 "Set the maximum number of bytes per memory write packet (deprecated).\n",
5592 &setlist);
5593 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size,
5594 "Show the maximum number of bytes per memory write packet (deprecated).\n",
5595 &showlist);
5596 add_cmd ("memory-write-packet-size", no_class,
5597 set_memory_write_packet_size,
5598 "Set the maximum number of bytes per memory-write packet.\n"
5599 "Specify the number of bytes in a packet or 0 (zero) for the\n"
5600 "default packet size. The actual limit is further reduced\n"
5601 "dependent on the target. Specify ``fixed'' to disable the\n"
5602 "further restriction and ``limit'' to enable that restriction\n",
5603 &remote_set_cmdlist);
5604 add_cmd ("memory-read-packet-size", no_class,
5605 set_memory_read_packet_size,
5606 "Set the maximum number of bytes per memory-read packet.\n"
5607 "Specify the number of bytes in a packet or 0 (zero) for the\n"
5608 "default packet size. The actual limit is further reduced\n"
5609 "dependent on the target. Specify ``fixed'' to disable the\n"
5610 "further restriction and ``limit'' to enable that restriction\n",
5611 &remote_set_cmdlist);
5612 add_cmd ("memory-write-packet-size", no_class,
5613 show_memory_write_packet_size,
5614 "Show the maximum number of bytes per memory-write packet.\n",
5615 &remote_show_cmdlist);
5616 add_cmd ("memory-read-packet-size", no_class,
5617 show_memory_read_packet_size,
5618 "Show the maximum number of bytes per memory-read packet.\n",
5619 &remote_show_cmdlist);
c906108c 5620
c5aa993b 5621 add_show_from_set
c906108c 5622 (add_set_cmd ("remoteaddresssize", class_obscure,
c5aa993b 5623 var_integer, (char *) &remote_address_size,
c906108c
SS
5624 "Set the maximum size of the address (in bits) \
5625in a memory packet.\n",
5626 &setlist),
c5aa993b 5627 &showlist);
c906108c 5628
96baa820
JM
5629 add_packet_config_cmd (&remote_protocol_binary_download,
5630 "X", "binary-download",
5631 set_remote_protocol_binary_download_cmd,
5632 show_remote_protocol_binary_download_cmd,
5633 &remote_set_cmdlist, &remote_show_cmdlist);
5634#if 0
5635 /* XXXX - should ``set remotebinarydownload'' be retained for
5636 compatibility. */
c5aa993b 5637 add_show_from_set
b83266a0
SS
5638 (add_set_cmd ("remotebinarydownload", no_class,
5639 var_boolean, (char *) &remote_binary_download,
5640 "Set binary downloads.\n", &setlist),
5641 &showlist);
96baa820 5642#endif
0f71a2f6
JM
5643
5644 add_info ("remote-process", remote_info_process,
5645 "Query the remote system for process info.");
5646
5a2468f5
JM
5647 add_packet_config_cmd (&remote_protocol_P, "P", "set-register",
5648 set_remote_protocol_P_packet_cmd,
5649 show_remote_protocol_P_packet_cmd,
5650 &remote_set_cmdlist, &remote_show_cmdlist);
96baa820
JM
5651
5652 add_packet_config_cmd (&remote_protocol_Z, "Z", "breakpoint",
5653 set_remote_protocol_Z_packet_cmd,
5654 show_remote_protocol_Z_packet_cmd,
5655 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 5656}
This page took 0.327286 seconds and 4 git commands to generate.