OSDN Git Service

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