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