gdb/
[external/binutils.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
3    Copyright (C) 1988-2013 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 /* See the GDB User Guide for details of the GDB remote protocol.  */
21
22 #include "defs.h"
23 #include "gdb_string.h"
24 #include <ctype.h>
25 #include <fcntl.h>
26 #include "inferior.h"
27 #include "bfd.h"
28 #include "symfile.h"
29 #include "exceptions.h"
30 #include "target.h"
31 /*#include "terminal.h" */
32 #include "gdbcmd.h"
33 #include "objfiles.h"
34 #include "gdb-stabs.h"
35 #include "gdbthread.h"
36 #include "remote.h"
37 #include "remote-notif.h"
38 #include "regcache.h"
39 #include "value.h"
40 #include "gdb_assert.h"
41 #include "observer.h"
42 #include "solib.h"
43 #include "cli/cli-decode.h"
44 #include "cli/cli-setshow.h"
45 #include "target-descriptions.h"
46 #include "gdb_bfd.h"
47 #include "filestuff.h"
48
49 #include <ctype.h>
50 #include <sys/time.h>
51
52 #include "event-loop.h"
53 #include "event-top.h"
54 #include "inf-loop.h"
55
56 #include <signal.h>
57 #include "serial.h"
58
59 #include "gdbcore.h" /* for exec_bfd */
60
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
63 #include "gdb_stat.h"
64 #include "xml-support.h"
65
66 #include "memory-map.h"
67
68 #include "tracepoint.h"
69 #include "ax.h"
70 #include "ax-gdb.h"
71 #include "agent.h"
72 #include "btrace.h"
73
74 /* Temp hacks for tracepoint encoding migration.  */
75 static char *target_buf;
76 static long target_buf_size;
77
78 /* The size to align memory write packets, when practical.  The protocol
79    does not guarantee any alignment, and gdb will generate short
80    writes and unaligned writes, but even as a best-effort attempt this
81    can improve bulk transfers.  For instance, if a write is misaligned
82    relative to the target's data bus, the stub may need to make an extra
83    round trip fetching data from the target.  This doesn't make a
84    huge difference, but it's easy to do, so we try to be helpful.
85
86    The alignment chosen is arbitrary; usually data bus width is
87    important here, not the possibly larger cache line size.  */
88 enum { REMOTE_ALIGN_WRITES = 16 };
89
90 /* Prototypes for local functions.  */
91 static void async_cleanup_sigint_signal_handler (void *dummy);
92 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
93 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
94                                  int forever, int *is_notif);
95
96 static void async_handle_remote_sigint (int);
97 static void async_handle_remote_sigint_twice (int);
98
99 static void remote_files_info (struct target_ops *ignore);
100
101 static void remote_prepare_to_store (struct regcache *regcache);
102
103 static void remote_open (char *name, int from_tty);
104
105 static void extended_remote_open (char *name, int from_tty);
106
107 static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
108
109 static void remote_close (void);
110
111 static void remote_mourn (struct target_ops *ops);
112
113 static void extended_remote_restart (void);
114
115 static void extended_remote_mourn (struct target_ops *);
116
117 static void remote_mourn_1 (struct target_ops *);
118
119 static void remote_send (char **buf, long *sizeof_buf_p);
120
121 static int readchar (int timeout);
122
123 static void remote_serial_write (const char *str, int len);
124
125 static void remote_kill (struct target_ops *ops);
126
127 static int tohex (int nib);
128
129 static int remote_can_async_p (void);
130
131 static int remote_is_async_p (void);
132
133 static void remote_async (void (*callback) (enum inferior_event_type event_type,
134                                             void *context), void *context);
135
136 static void remote_detach (struct target_ops *ops, char *args, int from_tty);
137
138 static void sync_remote_interrupt_twice (int signo);
139
140 static void interrupt_query (void);
141
142 static void set_general_thread (struct ptid ptid);
143 static void set_continue_thread (struct ptid ptid);
144
145 static void get_offsets (void);
146
147 static void skip_frame (void);
148
149 static long read_frame (char **buf_p, long *sizeof_buf);
150
151 static int hexnumlen (ULONGEST num);
152
153 static void init_remote_ops (void);
154
155 static void init_extended_remote_ops (void);
156
157 static void remote_stop (ptid_t);
158
159 static int ishex (int ch, int *val);
160
161 static int stubhex (int ch);
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 void compare_sections_command (char *, int);
172
173 static void packet_command (char *, int);
174
175 static int stub_unpack_int (char *buff, int fieldlength);
176
177 static ptid_t remote_current_thread (ptid_t oldptid);
178
179 static void remote_find_new_threads (void);
180
181 static void record_currthread (ptid_t currthread);
182
183 static int fromhex (int a);
184
185 static int putpkt_binary (char *buf, int cnt);
186
187 static void check_binary_download (CORE_ADDR addr);
188
189 struct packet_config;
190
191 static void show_packet_config_cmd (struct packet_config *config);
192
193 static void update_packet_config (struct packet_config *config);
194
195 static void set_remote_protocol_packet_cmd (char *args, int from_tty,
196                                             struct cmd_list_element *c);
197
198 static void show_remote_protocol_packet_cmd (struct ui_file *file,
199                                              int from_tty,
200                                              struct cmd_list_element *c,
201                                              const char *value);
202
203 static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
204 static ptid_t read_ptid (char *buf, char **obuf);
205
206 static void remote_set_permissions (void);
207
208 struct remote_state;
209 static int remote_get_trace_status (struct trace_status *ts);
210
211 static int remote_upload_tracepoints (struct uploaded_tp **utpp);
212
213 static int remote_upload_trace_state_variables (struct uploaded_tsv **utsvp);
214   
215 static void remote_query_supported (void);
216
217 static void remote_check_symbols (void);
218
219 void _initialize_remote (void);
220
221 struct stop_reply;
222 static void stop_reply_xfree (struct stop_reply *);
223 static void remote_parse_stop_reply (char *, struct stop_reply *);
224 static void push_stop_reply (struct stop_reply *);
225 static void discard_pending_stop_replies (struct inferior *);
226 static int peek_stop_reply (ptid_t ptid);
227
228 static void remote_async_inferior_event_handler (gdb_client_data);
229
230 static void remote_terminal_ours (void);
231
232 static int remote_read_description_p (struct target_ops *target);
233
234 static void remote_console_output (char *msg);
235
236 static int remote_supports_cond_breakpoints (void);
237
238 static int remote_can_run_breakpoint_commands (void);
239
240 /* For "remote".  */
241
242 static struct cmd_list_element *remote_cmdlist;
243
244 /* For "set remote" and "show remote".  */
245
246 static struct cmd_list_element *remote_set_cmdlist;
247 static struct cmd_list_element *remote_show_cmdlist;
248
249 /* Stub vCont actions support.
250
251    Each field is a boolean flag indicating whether the stub reports
252    support for the corresponding action.  */
253
254 struct vCont_action_support
255 {
256   /* vCont;t */
257   int t;
258
259   /* vCont;r */
260   int r;
261 };
262
263 /* Controls whether GDB is willing to use range stepping.  */
264
265 static int use_range_stepping = 1;
266
267 /* Description of the remote protocol state for the currently
268    connected target.  This is per-target state, and independent of the
269    selected architecture.  */
270
271 struct remote_state
272 {
273   /* A buffer to use for incoming packets, and its current size.  The
274      buffer is grown dynamically for larger incoming packets.
275      Outgoing packets may also be constructed in this buffer.
276      BUF_SIZE is always at least REMOTE_PACKET_SIZE;
277      REMOTE_PACKET_SIZE should be used to limit the length of outgoing
278      packets.  */
279   char *buf;
280   long buf_size;
281
282   /* True if we're going through initial connection setup (finding out
283      about the remote side's threads, relocating symbols, etc.).  */
284   int starting_up;
285
286   /* If we negotiated packet size explicitly (and thus can bypass
287      heuristics for the largest packet size that will not overflow
288      a buffer in the stub), this will be set to that packet size.
289      Otherwise zero, meaning to use the guessed size.  */
290   long explicit_packet_size;
291
292   /* remote_wait is normally called when the target is running and
293      waits for a stop reply packet.  But sometimes we need to call it
294      when the target is already stopped.  We can send a "?" packet
295      and have remote_wait read the response.  Or, if we already have
296      the response, we can stash it in BUF and tell remote_wait to
297      skip calling getpkt.  This flag is set when BUF contains a
298      stop reply packet and the target is not waiting.  */
299   int cached_wait_status;
300
301   /* True, if in no ack mode.  That is, neither GDB nor the stub will
302      expect acks from each other.  The connection is assumed to be
303      reliable.  */
304   int noack_mode;
305
306   /* True if we're connected in extended remote mode.  */
307   int extended;
308
309   /* True if the stub reported support for multi-process
310      extensions.  */
311   int multi_process_aware;
312
313   /* True if we resumed the target and we're waiting for the target to
314      stop.  In the mean time, we can't start another command/query.
315      The remote server wouldn't be ready to process it, so we'd
316      timeout waiting for a reply that would never come and eventually
317      we'd close the connection.  This can happen in asynchronous mode
318      because we allow GDB commands while the target is running.  */
319   int waiting_for_stop_reply;
320
321   /* True if the stub reports support for non-stop mode.  */
322   int non_stop_aware;
323
324   /* The status of the stub support for the various vCont actions.  */
325   struct vCont_action_support supports_vCont;
326
327   /* True if the stub reports support for conditional tracepoints.  */
328   int cond_tracepoints;
329
330   /* True if the stub reports support for target-side breakpoint
331      conditions.  */
332   int cond_breakpoints;
333
334   /* True if the stub reports support for target-side breakpoint
335      commands.  */
336   int breakpoint_commands;
337
338   /* True if the stub reports support for fast tracepoints.  */
339   int fast_tracepoints;
340
341   /* True if the stub reports support for static tracepoints.  */
342   int static_tracepoints;
343
344   /* True if the stub reports support for installing tracepoint while
345      tracing.  */
346   int install_in_trace;
347
348   /* True if the stub can continue running a trace while GDB is
349      disconnected.  */
350   int disconnected_tracing;
351
352   /* True if the stub reports support for enabling and disabling
353      tracepoints while a trace experiment is running.  */
354   int enable_disable_tracepoints;
355
356   /* True if the stub can collect strings using tracenz bytecode.  */
357   int string_tracing;
358
359   /* True if the stub supports qXfer:libraries-svr4:read with a
360      non-empty annex.  */
361   int augmented_libraries_svr4_read;
362
363   /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
364      responded to that.  */
365   int ctrlc_pending_p;
366 };
367
368 /* Private data that we'll store in (struct thread_info)->private.  */
369 struct private_thread_info
370 {
371   char *extra;
372   int core;
373 };
374
375 static void
376 free_private_thread_info (struct private_thread_info *info)
377 {
378   xfree (info->extra);
379   xfree (info);
380 }
381
382 /* Returns true if the multi-process extensions are in effect.  */
383 static int
384 remote_multi_process_p (struct remote_state *rs)
385 {
386   return rs->multi_process_aware;
387 }
388
389 /* This data could be associated with a target, but we do not always
390    have access to the current target when we need it, so for now it is
391    static.  This will be fine for as long as only one target is in use
392    at a time.  */
393 static struct remote_state remote_state;
394
395 static struct remote_state *
396 get_remote_state_raw (void)
397 {
398   return &remote_state;
399 }
400
401 /* Description of the remote protocol for a given architecture.  */
402
403 struct packet_reg
404 {
405   long offset; /* Offset into G packet.  */
406   long regnum; /* GDB's internal register number.  */
407   LONGEST pnum; /* Remote protocol register number.  */
408   int in_g_packet; /* Always part of G packet.  */
409   /* long size in bytes;  == register_size (target_gdbarch (), regnum);
410      at present.  */
411   /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
412      at present.  */
413 };
414
415 struct remote_arch_state
416 {
417   /* Description of the remote protocol registers.  */
418   long sizeof_g_packet;
419
420   /* Description of the remote protocol registers indexed by REGNUM
421      (making an array gdbarch_num_regs in size).  */
422   struct packet_reg *regs;
423
424   /* This is the size (in chars) of the first response to the ``g''
425      packet.  It is used as a heuristic when determining the maximum
426      size of memory-read and memory-write packets.  A target will
427      typically only reserve a buffer large enough to hold the ``g''
428      packet.  The size does not include packet overhead (headers and
429      trailers).  */
430   long actual_register_packet_size;
431
432   /* This is the maximum size (in chars) of a non read/write packet.
433      It is also used as a cap on the size of read/write packets.  */
434   long remote_packet_size;
435 };
436
437 long sizeof_pkt = 2000;
438
439 /* Utility: generate error from an incoming stub packet.  */
440 static void
441 trace_error (char *buf)
442 {
443   if (*buf++ != 'E')
444     return;                     /* not an error msg */
445   switch (*buf)
446     {
447     case '1':                   /* malformed packet error */
448       if (*++buf == '0')        /*   general case: */
449         error (_("remote.c: error in outgoing packet."));
450       else
451         error (_("remote.c: error in outgoing packet at field #%ld."),
452                strtol (buf, NULL, 16));
453     default:
454       error (_("Target returns error code '%s'."), buf);
455     }
456 }
457
458 /* Utility: wait for reply from stub, while accepting "O" packets.  */
459 static char *
460 remote_get_noisy_reply (char **buf_p,
461                         long *sizeof_buf)
462 {
463   do                            /* Loop on reply from remote stub.  */
464     {
465       char *buf;
466
467       QUIT;                     /* Allow user to bail out with ^C.  */
468       getpkt (buf_p, sizeof_buf, 0);
469       buf = *buf_p;
470       if (buf[0] == 'E')
471         trace_error (buf);
472       else if (strncmp (buf, "qRelocInsn:", strlen ("qRelocInsn:")) == 0)
473         {
474           ULONGEST ul;
475           CORE_ADDR from, to, org_to;
476           char *p, *pp;
477           int adjusted_size = 0;
478           volatile struct gdb_exception ex;
479
480           p = buf + strlen ("qRelocInsn:");
481           pp = unpack_varlen_hex (p, &ul);
482           if (*pp != ';')
483             error (_("invalid qRelocInsn packet: %s"), buf);
484           from = ul;
485
486           p = pp + 1;
487           unpack_varlen_hex (p, &ul);
488           to = ul;
489
490           org_to = to;
491
492           TRY_CATCH (ex, RETURN_MASK_ALL)
493             {
494               gdbarch_relocate_instruction (target_gdbarch (), &to, from);
495             }
496           if (ex.reason >= 0)
497             {
498               adjusted_size = to - org_to;
499
500               xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size);
501               putpkt (buf);
502             }
503           else if (ex.reason < 0 && ex.error == MEMORY_ERROR)
504             {
505               /* Propagate memory errors silently back to the target.
506                  The stub may have limited the range of addresses we
507                  can write to, for example.  */
508               putpkt ("E01");
509             }
510           else
511             {
512               /* Something unexpectedly bad happened.  Be verbose so
513                  we can tell what, and propagate the error back to the
514                  stub, so it doesn't get stuck waiting for a
515                  response.  */
516               exception_fprintf (gdb_stderr, ex,
517                                  _("warning: relocating instruction: "));
518               putpkt ("E01");
519             }
520         }
521       else if (buf[0] == 'O' && buf[1] != 'K')
522         remote_console_output (buf + 1);        /* 'O' message from stub */
523       else
524         return buf;             /* Here's the actual reply.  */
525     }
526   while (1);
527 }
528
529 /* Handle for retreving the remote protocol data from gdbarch.  */
530 static struct gdbarch_data *remote_gdbarch_data_handle;
531
532 static struct remote_arch_state *
533 get_remote_arch_state (void)
534 {
535   return gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle);
536 }
537
538 /* Fetch the global remote target state.  */
539
540 static struct remote_state *
541 get_remote_state (void)
542 {
543   /* Make sure that the remote architecture state has been
544      initialized, because doing so might reallocate rs->buf.  Any
545      function which calls getpkt also needs to be mindful of changes
546      to rs->buf, but this call limits the number of places which run
547      into trouble.  */
548   get_remote_arch_state ();
549
550   return get_remote_state_raw ();
551 }
552
553 static int
554 compare_pnums (const void *lhs_, const void *rhs_)
555 {
556   const struct packet_reg * const *lhs = lhs_;
557   const struct packet_reg * const *rhs = rhs_;
558
559   if ((*lhs)->pnum < (*rhs)->pnum)
560     return -1;
561   else if ((*lhs)->pnum == (*rhs)->pnum)
562     return 0;
563   else
564     return 1;
565 }
566
567 static int
568 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
569 {
570   int regnum, num_remote_regs, offset;
571   struct packet_reg **remote_regs;
572
573   for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
574     {
575       struct packet_reg *r = &regs[regnum];
576
577       if (register_size (gdbarch, regnum) == 0)
578         /* Do not try to fetch zero-sized (placeholder) registers.  */
579         r->pnum = -1;
580       else
581         r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
582
583       r->regnum = regnum;
584     }
585
586   /* Define the g/G packet format as the contents of each register
587      with a remote protocol number, in order of ascending protocol
588      number.  */
589
590   remote_regs = alloca (gdbarch_num_regs (gdbarch)
591                         * sizeof (struct packet_reg *));
592   for (num_remote_regs = 0, regnum = 0;
593        regnum < gdbarch_num_regs (gdbarch);
594        regnum++)
595     if (regs[regnum].pnum != -1)
596       remote_regs[num_remote_regs++] = &regs[regnum];
597
598   qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
599          compare_pnums);
600
601   for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
602     {
603       remote_regs[regnum]->in_g_packet = 1;
604       remote_regs[regnum]->offset = offset;
605       offset += register_size (gdbarch, remote_regs[regnum]->regnum);
606     }
607
608   return offset;
609 }
610
611 /* Given the architecture described by GDBARCH, return the remote
612    protocol register's number and the register's offset in the g/G
613    packets of GDB register REGNUM, in PNUM and POFFSET respectively.
614    If the target does not have a mapping for REGNUM, return false,
615    otherwise, return true.  */
616
617 int
618 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
619                                    int *pnum, int *poffset)
620 {
621   int sizeof_g_packet;
622   struct packet_reg *regs;
623   struct cleanup *old_chain;
624
625   gdb_assert (regnum < gdbarch_num_regs (gdbarch));
626
627   regs = xcalloc (gdbarch_num_regs (gdbarch), sizeof (struct packet_reg));
628   old_chain = make_cleanup (xfree, regs);
629
630   sizeof_g_packet = map_regcache_remote_table (gdbarch, regs);
631
632   *pnum = regs[regnum].pnum;
633   *poffset = regs[regnum].offset;
634
635   do_cleanups (old_chain);
636
637   return *pnum != -1;
638 }
639
640 static void *
641 init_remote_state (struct gdbarch *gdbarch)
642 {
643   struct remote_state *rs = get_remote_state_raw ();
644   struct remote_arch_state *rsa;
645
646   rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
647
648   /* Use the architecture to build a regnum<->pnum table, which will be
649      1:1 unless a feature set specifies otherwise.  */
650   rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
651                                       gdbarch_num_regs (gdbarch),
652                                       struct packet_reg);
653
654   /* Record the maximum possible size of the g packet - it may turn out
655      to be smaller.  */
656   rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
657
658   /* Default maximum number of characters in a packet body.  Many
659      remote stubs have a hardwired buffer size of 400 bytes
660      (c.f. BUFMAX in m68k-stub.c and i386-stub.c).  BUFMAX-1 is used
661      as the maximum packet-size to ensure that the packet and an extra
662      NUL character can always fit in the buffer.  This stops GDB
663      trashing stubs that try to squeeze an extra NUL into what is
664      already a full buffer (As of 1999-12-04 that was most stubs).  */
665   rsa->remote_packet_size = 400 - 1;
666
667   /* This one is filled in when a ``g'' packet is received.  */
668   rsa->actual_register_packet_size = 0;
669
670   /* Should rsa->sizeof_g_packet needs more space than the
671      default, adjust the size accordingly.  Remember that each byte is
672      encoded as two characters.  32 is the overhead for the packet
673      header / footer.  NOTE: cagney/1999-10-26: I suspect that 8
674      (``$NN:G...#NN'') is a better guess, the below has been padded a
675      little.  */
676   if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
677     rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
678
679   /* Make sure that the packet buffer is plenty big enough for
680      this architecture.  */
681   if (rs->buf_size < rsa->remote_packet_size)
682     {
683       rs->buf_size = 2 * rsa->remote_packet_size;
684       rs->buf = xrealloc (rs->buf, rs->buf_size);
685     }
686
687   return rsa;
688 }
689
690 /* Return the current allowed size of a remote packet.  This is
691    inferred from the current architecture, and should be used to
692    limit the length of outgoing packets.  */
693 static long
694 get_remote_packet_size (void)
695 {
696   struct remote_state *rs = get_remote_state ();
697   struct remote_arch_state *rsa = get_remote_arch_state ();
698
699   if (rs->explicit_packet_size)
700     return rs->explicit_packet_size;
701
702   return rsa->remote_packet_size;
703 }
704
705 static struct packet_reg *
706 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
707 {
708   if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ()))
709     return NULL;
710   else
711     {
712       struct packet_reg *r = &rsa->regs[regnum];
713
714       gdb_assert (r->regnum == regnum);
715       return r;
716     }
717 }
718
719 static struct packet_reg *
720 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
721 {
722   int i;
723
724   for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
725     {
726       struct packet_reg *r = &rsa->regs[i];
727
728       if (r->pnum == pnum)
729         return r;
730     }
731   return NULL;
732 }
733
734 /* FIXME: graces/2002-08-08: These variables should eventually be
735    bound to an instance of the target object (as in gdbarch-tdep()),
736    when such a thing exists.  */
737
738 /* This is set to the data address of the access causing the target
739    to stop for a watchpoint.  */
740 static CORE_ADDR remote_watch_data_address;
741
742 /* This is non-zero if target stopped for a watchpoint.  */
743 static int remote_stopped_by_watchpoint_p;
744
745 static struct target_ops remote_ops;
746
747 static struct target_ops extended_remote_ops;
748
749 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
750    ``forever'' still use the normal timeout mechanism.  This is
751    currently used by the ASYNC code to guarentee that target reads
752    during the initial connect always time-out.  Once getpkt has been
753    modified to return a timeout indication and, in turn
754    remote_wait()/wait_for_inferior() have gained a timeout parameter
755    this can go away.  */
756 static int wait_forever_enabled_p = 1;
757
758 /* Allow the user to specify what sequence to send to the remote
759    when he requests a program interruption: Although ^C is usually
760    what remote systems expect (this is the default, here), it is
761    sometimes preferable to send a break.  On other systems such
762    as the Linux kernel, a break followed by g, which is Magic SysRq g
763    is required in order to interrupt the execution.  */
764 const char interrupt_sequence_control_c[] = "Ctrl-C";
765 const char interrupt_sequence_break[] = "BREAK";
766 const char interrupt_sequence_break_g[] = "BREAK-g";
767 static const char *const interrupt_sequence_modes[] =
768   {
769     interrupt_sequence_control_c,
770     interrupt_sequence_break,
771     interrupt_sequence_break_g,
772     NULL
773   };
774 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
775
776 static void
777 show_interrupt_sequence (struct ui_file *file, int from_tty,
778                          struct cmd_list_element *c,
779                          const char *value)
780 {
781   if (interrupt_sequence_mode == interrupt_sequence_control_c)
782     fprintf_filtered (file,
783                       _("Send the ASCII ETX character (Ctrl-c) "
784                         "to the remote target to interrupt the "
785                         "execution of the program.\n"));
786   else if (interrupt_sequence_mode == interrupt_sequence_break)
787     fprintf_filtered (file,
788                       _("send a break signal to the remote target "
789                         "to interrupt the execution of the program.\n"));
790   else if (interrupt_sequence_mode == interrupt_sequence_break_g)
791     fprintf_filtered (file,
792                       _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
793                         "the remote target to interrupt the execution "
794                         "of Linux kernel.\n"));
795   else
796     internal_error (__FILE__, __LINE__,
797                     _("Invalid value for interrupt_sequence_mode: %s."),
798                     interrupt_sequence_mode);
799 }
800
801 /* This boolean variable specifies whether interrupt_sequence is sent
802    to the remote target when gdb connects to it.
803    This is mostly needed when you debug the Linux kernel: The Linux kernel
804    expects BREAK g which is Magic SysRq g for connecting gdb.  */
805 static int interrupt_on_connect = 0;
806
807 /* This variable is used to implement the "set/show remotebreak" commands.
808    Since these commands are now deprecated in favor of "set/show remote
809    interrupt-sequence", it no longer has any effect on the code.  */
810 static int remote_break;
811
812 static void
813 set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
814 {
815   if (remote_break)
816     interrupt_sequence_mode = interrupt_sequence_break;
817   else
818     interrupt_sequence_mode = interrupt_sequence_control_c;
819 }
820
821 static void
822 show_remotebreak (struct ui_file *file, int from_tty,
823                   struct cmd_list_element *c,
824                   const char *value)
825 {
826 }
827
828 /* Descriptor for I/O to remote machine.  Initialize it to NULL so that
829    remote_open knows that we don't have a file open when the program
830    starts.  */
831 static struct serial *remote_desc = NULL;
832
833 /* This variable sets the number of bits in an address that are to be
834    sent in a memory ("M" or "m") packet.  Normally, after stripping
835    leading zeros, the entire address would be sent.  This variable
836    restricts the address to REMOTE_ADDRESS_SIZE bits.  HISTORY: The
837    initial implementation of remote.c restricted the address sent in
838    memory packets to ``host::sizeof long'' bytes - (typically 32
839    bits).  Consequently, for 64 bit targets, the upper 32 bits of an
840    address was never sent.  Since fixing this bug may cause a break in
841    some remote targets this variable is principly provided to
842    facilitate backward compatibility.  */
843
844 static unsigned int remote_address_size;
845
846 /* Temporary to track who currently owns the terminal.  See
847    remote_terminal_* for more details.  */
848
849 static int remote_async_terminal_ours_p;
850
851 /* The executable file to use for "run" on the remote side.  */
852
853 static char *remote_exec_file = "";
854
855 \f
856 /* User configurable variables for the number of characters in a
857    memory read/write packet.  MIN (rsa->remote_packet_size,
858    rsa->sizeof_g_packet) is the default.  Some targets need smaller
859    values (fifo overruns, et.al.) and some users need larger values
860    (speed up transfers).  The variables ``preferred_*'' (the user
861    request), ``current_*'' (what was actually set) and ``forced_*''
862    (Positive - a soft limit, negative - a hard limit).  */
863
864 struct memory_packet_config
865 {
866   char *name;
867   long size;
868   int fixed_p;
869 };
870
871 /* Compute the current size of a read/write packet.  Since this makes
872    use of ``actual_register_packet_size'' the computation is dynamic.  */
873
874 static long
875 get_memory_packet_size (struct memory_packet_config *config)
876 {
877   struct remote_state *rs = get_remote_state ();
878   struct remote_arch_state *rsa = get_remote_arch_state ();
879
880   /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
881      law?) that some hosts don't cope very well with large alloca()
882      calls.  Eventually the alloca() code will be replaced by calls to
883      xmalloc() and make_cleanups() allowing this restriction to either
884      be lifted or removed.  */
885 #ifndef MAX_REMOTE_PACKET_SIZE
886 #define MAX_REMOTE_PACKET_SIZE 16384
887 #endif
888   /* NOTE: 20 ensures we can write at least one byte.  */
889 #ifndef MIN_REMOTE_PACKET_SIZE
890 #define MIN_REMOTE_PACKET_SIZE 20
891 #endif
892   long what_they_get;
893   if (config->fixed_p)
894     {
895       if (config->size <= 0)
896         what_they_get = MAX_REMOTE_PACKET_SIZE;
897       else
898         what_they_get = config->size;
899     }
900   else
901     {
902       what_they_get = get_remote_packet_size ();
903       /* Limit the packet to the size specified by the user.  */
904       if (config->size > 0
905           && what_they_get > config->size)
906         what_they_get = config->size;
907
908       /* Limit it to the size of the targets ``g'' response unless we have
909          permission from the stub to use a larger packet size.  */
910       if (rs->explicit_packet_size == 0
911           && rsa->actual_register_packet_size > 0
912           && what_they_get > rsa->actual_register_packet_size)
913         what_they_get = rsa->actual_register_packet_size;
914     }
915   if (what_they_get > MAX_REMOTE_PACKET_SIZE)
916     what_they_get = MAX_REMOTE_PACKET_SIZE;
917   if (what_they_get < MIN_REMOTE_PACKET_SIZE)
918     what_they_get = MIN_REMOTE_PACKET_SIZE;
919
920   /* Make sure there is room in the global buffer for this packet
921      (including its trailing NUL byte).  */
922   if (rs->buf_size < what_they_get + 1)
923     {
924       rs->buf_size = 2 * what_they_get;
925       rs->buf = xrealloc (rs->buf, 2 * what_they_get);
926     }
927
928   return what_they_get;
929 }
930
931 /* Update the size of a read/write packet.  If they user wants
932    something really big then do a sanity check.  */
933
934 static void
935 set_memory_packet_size (char *args, struct memory_packet_config *config)
936 {
937   int fixed_p = config->fixed_p;
938   long size = config->size;
939
940   if (args == NULL)
941     error (_("Argument required (integer, `fixed' or `limited')."));
942   else if (strcmp (args, "hard") == 0
943       || strcmp (args, "fixed") == 0)
944     fixed_p = 1;
945   else if (strcmp (args, "soft") == 0
946            || strcmp (args, "limit") == 0)
947     fixed_p = 0;
948   else
949     {
950       char *end;
951
952       size = strtoul (args, &end, 0);
953       if (args == end)
954         error (_("Invalid %s (bad syntax)."), config->name);
955 #if 0
956       /* Instead of explicitly capping the size of a packet to
957          MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
958          instead allowed to set the size to something arbitrarily
959          large.  */
960       if (size > MAX_REMOTE_PACKET_SIZE)
961         error (_("Invalid %s (too large)."), config->name);
962 #endif
963     }
964   /* Extra checks?  */
965   if (fixed_p && !config->fixed_p)
966     {
967       if (! query (_("The target may not be able to correctly handle a %s\n"
968                    "of %ld bytes. Change the packet size? "),
969                    config->name, size))
970         error (_("Packet size not changed."));
971     }
972   /* Update the config.  */
973   config->fixed_p = fixed_p;
974   config->size = size;
975 }
976
977 static void
978 show_memory_packet_size (struct memory_packet_config *config)
979 {
980   printf_filtered (_("The %s is %ld. "), config->name, config->size);
981   if (config->fixed_p)
982     printf_filtered (_("Packets are fixed at %ld bytes.\n"),
983                      get_memory_packet_size (config));
984   else
985     printf_filtered (_("Packets are limited to %ld bytes.\n"),
986                      get_memory_packet_size (config));
987 }
988
989 static struct memory_packet_config memory_write_packet_config =
990 {
991   "memory-write-packet-size",
992 };
993
994 static void
995 set_memory_write_packet_size (char *args, int from_tty)
996 {
997   set_memory_packet_size (args, &memory_write_packet_config);
998 }
999
1000 static void
1001 show_memory_write_packet_size (char *args, int from_tty)
1002 {
1003   show_memory_packet_size (&memory_write_packet_config);
1004 }
1005
1006 static long
1007 get_memory_write_packet_size (void)
1008 {
1009   return get_memory_packet_size (&memory_write_packet_config);
1010 }
1011
1012 static struct memory_packet_config memory_read_packet_config =
1013 {
1014   "memory-read-packet-size",
1015 };
1016
1017 static void
1018 set_memory_read_packet_size (char *args, int from_tty)
1019 {
1020   set_memory_packet_size (args, &memory_read_packet_config);
1021 }
1022
1023 static void
1024 show_memory_read_packet_size (char *args, int from_tty)
1025 {
1026   show_memory_packet_size (&memory_read_packet_config);
1027 }
1028
1029 static long
1030 get_memory_read_packet_size (void)
1031 {
1032   long size = get_memory_packet_size (&memory_read_packet_config);
1033
1034   /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1035      extra buffer size argument before the memory read size can be
1036      increased beyond this.  */
1037   if (size > get_remote_packet_size ())
1038     size = get_remote_packet_size ();
1039   return size;
1040 }
1041
1042 \f
1043 /* Generic configuration support for packets the stub optionally
1044    supports.  Allows the user to specify the use of the packet as well
1045    as allowing GDB to auto-detect support in the remote stub.  */
1046
1047 enum packet_support
1048   {
1049     PACKET_SUPPORT_UNKNOWN = 0,
1050     PACKET_ENABLE,
1051     PACKET_DISABLE
1052   };
1053
1054 struct packet_config
1055   {
1056     const char *name;
1057     const char *title;
1058     enum auto_boolean detect;
1059     enum packet_support support;
1060   };
1061
1062 /* Analyze a packet's return value and update the packet config
1063    accordingly.  */
1064
1065 enum packet_result
1066 {
1067   PACKET_ERROR,
1068   PACKET_OK,
1069   PACKET_UNKNOWN
1070 };
1071
1072 static void
1073 update_packet_config (struct packet_config *config)
1074 {
1075   switch (config->detect)
1076     {
1077     case AUTO_BOOLEAN_TRUE:
1078       config->support = PACKET_ENABLE;
1079       break;
1080     case AUTO_BOOLEAN_FALSE:
1081       config->support = PACKET_DISABLE;
1082       break;
1083     case AUTO_BOOLEAN_AUTO:
1084       config->support = PACKET_SUPPORT_UNKNOWN;
1085       break;
1086     }
1087 }
1088
1089 static void
1090 show_packet_config_cmd (struct packet_config *config)
1091 {
1092   char *support = "internal-error";
1093
1094   switch (config->support)
1095     {
1096     case PACKET_ENABLE:
1097       support = "enabled";
1098       break;
1099     case PACKET_DISABLE:
1100       support = "disabled";
1101       break;
1102     case PACKET_SUPPORT_UNKNOWN:
1103       support = "unknown";
1104       break;
1105     }
1106   switch (config->detect)
1107     {
1108     case AUTO_BOOLEAN_AUTO:
1109       printf_filtered (_("Support for the `%s' packet "
1110                          "is auto-detected, currently %s.\n"),
1111                        config->name, support);
1112       break;
1113     case AUTO_BOOLEAN_TRUE:
1114     case AUTO_BOOLEAN_FALSE:
1115       printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1116                        config->name, support);
1117       break;
1118     }
1119 }
1120
1121 static void
1122 add_packet_config_cmd (struct packet_config *config, const char *name,
1123                        const char *title, int legacy)
1124 {
1125   char *set_doc;
1126   char *show_doc;
1127   char *cmd_name;
1128
1129   config->name = name;
1130   config->title = title;
1131   config->detect = AUTO_BOOLEAN_AUTO;
1132   config->support = PACKET_SUPPORT_UNKNOWN;
1133   set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1134                         name, title);
1135   show_doc = xstrprintf ("Show current use of remote "
1136                          "protocol `%s' (%s) packet",
1137                          name, title);
1138   /* set/show TITLE-packet {auto,on,off} */
1139   cmd_name = xstrprintf ("%s-packet", title);
1140   add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1141                                 &config->detect, set_doc,
1142                                 show_doc, NULL, /* help_doc */
1143                                 set_remote_protocol_packet_cmd,
1144                                 show_remote_protocol_packet_cmd,
1145                                 &remote_set_cmdlist, &remote_show_cmdlist);
1146   /* The command code copies the documentation strings.  */
1147   xfree (set_doc);
1148   xfree (show_doc);
1149   /* set/show remote NAME-packet {auto,on,off} -- legacy.  */
1150   if (legacy)
1151     {
1152       char *legacy_name;
1153
1154       legacy_name = xstrprintf ("%s-packet", name);
1155       add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1156                      &remote_set_cmdlist);
1157       add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1158                      &remote_show_cmdlist);
1159     }
1160 }
1161
1162 static enum packet_result
1163 packet_check_result (const char *buf)
1164 {
1165   if (buf[0] != '\0')
1166     {
1167       /* The stub recognized the packet request.  Check that the
1168          operation succeeded.  */
1169       if (buf[0] == 'E'
1170           && isxdigit (buf[1]) && isxdigit (buf[2])
1171           && buf[3] == '\0')
1172         /* "Enn"  - definitly an error.  */
1173         return PACKET_ERROR;
1174
1175       /* Always treat "E." as an error.  This will be used for
1176          more verbose error messages, such as E.memtypes.  */
1177       if (buf[0] == 'E' && buf[1] == '.')
1178         return PACKET_ERROR;
1179
1180       /* The packet may or may not be OK.  Just assume it is.  */
1181       return PACKET_OK;
1182     }
1183   else
1184     /* The stub does not support the packet.  */
1185     return PACKET_UNKNOWN;
1186 }
1187
1188 static enum packet_result
1189 packet_ok (const char *buf, struct packet_config *config)
1190 {
1191   enum packet_result result;
1192
1193   result = packet_check_result (buf);
1194   switch (result)
1195     {
1196     case PACKET_OK:
1197     case PACKET_ERROR:
1198       /* The stub recognized the packet request.  */
1199       switch (config->support)
1200         {
1201         case PACKET_SUPPORT_UNKNOWN:
1202           if (remote_debug)
1203             fprintf_unfiltered (gdb_stdlog,
1204                                     "Packet %s (%s) is supported\n",
1205                                     config->name, config->title);
1206           config->support = PACKET_ENABLE;
1207           break;
1208         case PACKET_DISABLE:
1209           internal_error (__FILE__, __LINE__,
1210                           _("packet_ok: attempt to use a disabled packet"));
1211           break;
1212         case PACKET_ENABLE:
1213           break;
1214         }
1215       break;
1216     case PACKET_UNKNOWN:
1217       /* The stub does not support the packet.  */
1218       switch (config->support)
1219         {
1220         case PACKET_ENABLE:
1221           if (config->detect == AUTO_BOOLEAN_AUTO)
1222             /* If the stub previously indicated that the packet was
1223                supported then there is a protocol error..  */
1224             error (_("Protocol error: %s (%s) conflicting enabled responses."),
1225                    config->name, config->title);
1226           else
1227             /* The user set it wrong.  */
1228             error (_("Enabled packet %s (%s) not recognized by stub"),
1229                    config->name, config->title);
1230           break;
1231         case PACKET_SUPPORT_UNKNOWN:
1232           if (remote_debug)
1233             fprintf_unfiltered (gdb_stdlog,
1234                                 "Packet %s (%s) is NOT supported\n",
1235                                 config->name, config->title);
1236           config->support = PACKET_DISABLE;
1237           break;
1238         case PACKET_DISABLE:
1239           break;
1240         }
1241       break;
1242     }
1243
1244   return result;
1245 }
1246
1247 enum {
1248   PACKET_vCont = 0,
1249   PACKET_X,
1250   PACKET_qSymbol,
1251   PACKET_P,
1252   PACKET_p,
1253   PACKET_Z0,
1254   PACKET_Z1,
1255   PACKET_Z2,
1256   PACKET_Z3,
1257   PACKET_Z4,
1258   PACKET_vFile_open,
1259   PACKET_vFile_pread,
1260   PACKET_vFile_pwrite,
1261   PACKET_vFile_close,
1262   PACKET_vFile_unlink,
1263   PACKET_vFile_readlink,
1264   PACKET_qXfer_auxv,
1265   PACKET_qXfer_features,
1266   PACKET_qXfer_libraries,
1267   PACKET_qXfer_libraries_svr4,
1268   PACKET_qXfer_memory_map,
1269   PACKET_qXfer_spu_read,
1270   PACKET_qXfer_spu_write,
1271   PACKET_qXfer_osdata,
1272   PACKET_qXfer_threads,
1273   PACKET_qXfer_statictrace_read,
1274   PACKET_qXfer_traceframe_info,
1275   PACKET_qXfer_uib,
1276   PACKET_qGetTIBAddr,
1277   PACKET_qGetTLSAddr,
1278   PACKET_qSupported,
1279   PACKET_qTStatus,
1280   PACKET_QPassSignals,
1281   PACKET_QProgramSignals,
1282   PACKET_qSearch_memory,
1283   PACKET_vAttach,
1284   PACKET_vRun,
1285   PACKET_QStartNoAckMode,
1286   PACKET_vKill,
1287   PACKET_qXfer_siginfo_read,
1288   PACKET_qXfer_siginfo_write,
1289   PACKET_qAttached,
1290   PACKET_ConditionalTracepoints,
1291   PACKET_ConditionalBreakpoints,
1292   PACKET_BreakpointCommands,
1293   PACKET_FastTracepoints,
1294   PACKET_StaticTracepoints,
1295   PACKET_InstallInTrace,
1296   PACKET_bc,
1297   PACKET_bs,
1298   PACKET_TracepointSource,
1299   PACKET_QAllow,
1300   PACKET_qXfer_fdpic,
1301   PACKET_QDisableRandomization,
1302   PACKET_QAgent,
1303   PACKET_QTBuffer_size,
1304   PACKET_Qbtrace_off,
1305   PACKET_Qbtrace_bts,
1306   PACKET_qXfer_btrace,
1307   PACKET_MAX
1308 };
1309
1310 static struct packet_config remote_protocol_packets[PACKET_MAX];
1311
1312 static void
1313 set_remote_protocol_packet_cmd (char *args, int from_tty,
1314                                 struct cmd_list_element *c)
1315 {
1316   struct packet_config *packet;
1317
1318   for (packet = remote_protocol_packets;
1319        packet < &remote_protocol_packets[PACKET_MAX];
1320        packet++)
1321     {
1322       if (&packet->detect == c->var)
1323         {
1324           update_packet_config (packet);
1325           return;
1326         }
1327     }
1328   internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1329                   c->name);
1330 }
1331
1332 static void
1333 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1334                                  struct cmd_list_element *c,
1335                                  const char *value)
1336 {
1337   struct packet_config *packet;
1338
1339   for (packet = remote_protocol_packets;
1340        packet < &remote_protocol_packets[PACKET_MAX];
1341        packet++)
1342     {
1343       if (&packet->detect == c->var)
1344         {
1345           show_packet_config_cmd (packet);
1346           return;
1347         }
1348     }
1349   internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1350                   c->name);
1351 }
1352
1353 /* Should we try one of the 'Z' requests?  */
1354
1355 enum Z_packet_type
1356 {
1357   Z_PACKET_SOFTWARE_BP,
1358   Z_PACKET_HARDWARE_BP,
1359   Z_PACKET_WRITE_WP,
1360   Z_PACKET_READ_WP,
1361   Z_PACKET_ACCESS_WP,
1362   NR_Z_PACKET_TYPES
1363 };
1364
1365 /* For compatibility with older distributions.  Provide a ``set remote
1366    Z-packet ...'' command that updates all the Z packet types.  */
1367
1368 static enum auto_boolean remote_Z_packet_detect;
1369
1370 static void
1371 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1372                                   struct cmd_list_element *c)
1373 {
1374   int i;
1375
1376   for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1377     {
1378       remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1379       update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
1380     }
1381 }
1382
1383 static void
1384 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1385                                    struct cmd_list_element *c,
1386                                    const char *value)
1387 {
1388   int i;
1389
1390   for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1391     {
1392       show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1393     }
1394 }
1395
1396 /* Should we try the 'ThreadInfo' query packet?
1397
1398    This variable (NOT available to the user: auto-detect only!)
1399    determines whether GDB will use the new, simpler "ThreadInfo"
1400    query or the older, more complex syntax for thread queries.
1401    This is an auto-detect variable (set to true at each connect,
1402    and set to false when the target fails to recognize it).  */
1403
1404 static int use_threadinfo_query;
1405 static int use_threadextra_query;
1406
1407 /* Tokens for use by the asynchronous signal handlers for SIGINT.  */
1408 static struct async_signal_handler *async_sigint_remote_twice_token;
1409 static struct async_signal_handler *async_sigint_remote_token;
1410
1411 \f
1412 /* Asynchronous signal handle registered as event loop source for
1413    when we have pending events ready to be passed to the core.  */
1414
1415 static struct async_event_handler *remote_async_inferior_event_token;
1416
1417 \f
1418
1419 static ptid_t magic_null_ptid;
1420 static ptid_t not_sent_ptid;
1421 static ptid_t any_thread_ptid;
1422
1423 /* These are the threads which we last sent to the remote system.  The
1424    TID member will be -1 for all or -2 for not sent yet.  */
1425
1426 static ptid_t general_thread;
1427 static ptid_t continue_thread;
1428
1429 /* This is the traceframe which we last selected on the remote system.
1430    It will be -1 if no traceframe is selected.  */
1431 static int remote_traceframe_number = -1;
1432
1433 /* Find out if the stub attached to PID (and hence GDB should offer to
1434    detach instead of killing it when bailing out).  */
1435
1436 static int
1437 remote_query_attached (int pid)
1438 {
1439   struct remote_state *rs = get_remote_state ();
1440   size_t size = get_remote_packet_size ();
1441
1442   if (remote_protocol_packets[PACKET_qAttached].support == PACKET_DISABLE)
1443     return 0;
1444
1445   if (remote_multi_process_p (rs))
1446     xsnprintf (rs->buf, size, "qAttached:%x", pid);
1447   else
1448     xsnprintf (rs->buf, size, "qAttached");
1449
1450   putpkt (rs->buf);
1451   getpkt (&rs->buf, &rs->buf_size, 0);
1452
1453   switch (packet_ok (rs->buf,
1454                      &remote_protocol_packets[PACKET_qAttached]))
1455     {
1456     case PACKET_OK:
1457       if (strcmp (rs->buf, "1") == 0)
1458         return 1;
1459       break;
1460     case PACKET_ERROR:
1461       warning (_("Remote failure reply: %s"), rs->buf);
1462       break;
1463     case PACKET_UNKNOWN:
1464       break;
1465     }
1466
1467   return 0;
1468 }
1469
1470 /* Add PID to GDB's inferior table.  If FAKE_PID_P is true, then PID
1471    has been invented by GDB, instead of reported by the target.  Since
1472    we can be connected to a remote system before before knowing about
1473    any inferior, mark the target with execution when we find the first
1474    inferior.  If ATTACHED is 1, then we had just attached to this
1475    inferior.  If it is 0, then we just created this inferior.  If it
1476    is -1, then try querying the remote stub to find out if it had
1477    attached to the inferior or not.  */
1478
1479 static struct inferior *
1480 remote_add_inferior (int fake_pid_p, int pid, int attached)
1481 {
1482   struct inferior *inf;
1483
1484   /* Check whether this process we're learning about is to be
1485      considered attached, or if is to be considered to have been
1486      spawned by the stub.  */
1487   if (attached == -1)
1488     attached = remote_query_attached (pid);
1489
1490   if (gdbarch_has_global_solist (target_gdbarch ()))
1491     {
1492       /* If the target shares code across all inferiors, then every
1493          attach adds a new inferior.  */
1494       inf = add_inferior (pid);
1495
1496       /* ... and every inferior is bound to the same program space.
1497          However, each inferior may still have its own address
1498          space.  */
1499       inf->aspace = maybe_new_address_space ();
1500       inf->pspace = current_program_space;
1501     }
1502   else
1503     {
1504       /* In the traditional debugging scenario, there's a 1-1 match
1505          between program/address spaces.  We simply bind the inferior
1506          to the program space's address space.  */
1507       inf = current_inferior ();
1508       inferior_appeared (inf, pid);
1509     }
1510
1511   inf->attach_flag = attached;
1512   inf->fake_pid_p = fake_pid_p;
1513
1514   return inf;
1515 }
1516
1517 /* Add thread PTID to GDB's thread list.  Tag it as executing/running
1518    according to RUNNING.  */
1519
1520 static void
1521 remote_add_thread (ptid_t ptid, int running)
1522 {
1523   add_thread (ptid);
1524
1525   set_executing (ptid, running);
1526   set_running (ptid, running);
1527 }
1528
1529 /* Come here when we learn about a thread id from the remote target.
1530    It may be the first time we hear about such thread, so take the
1531    opportunity to add it to GDB's thread list.  In case this is the
1532    first time we're noticing its corresponding inferior, add it to
1533    GDB's inferior list as well.  */
1534
1535 static void
1536 remote_notice_new_inferior (ptid_t currthread, int running)
1537 {
1538   /* If this is a new thread, add it to GDB's thread list.
1539      If we leave it up to WFI to do this, bad things will happen.  */
1540
1541   if (in_thread_list (currthread) && is_exited (currthread))
1542     {
1543       /* We're seeing an event on a thread id we knew had exited.
1544          This has to be a new thread reusing the old id.  Add it.  */
1545       remote_add_thread (currthread, running);
1546       return;
1547     }
1548
1549   if (!in_thread_list (currthread))
1550     {
1551       struct inferior *inf = NULL;
1552       int pid = ptid_get_pid (currthread);
1553
1554       if (ptid_is_pid (inferior_ptid)
1555           && pid == ptid_get_pid (inferior_ptid))
1556         {
1557           /* inferior_ptid has no thread member yet.  This can happen
1558              with the vAttach -> remote_wait,"TAAthread:" path if the
1559              stub doesn't support qC.  This is the first stop reported
1560              after an attach, so this is the main thread.  Update the
1561              ptid in the thread list.  */
1562           if (in_thread_list (pid_to_ptid (pid)))
1563             thread_change_ptid (inferior_ptid, currthread);
1564           else
1565             {
1566               remote_add_thread (currthread, running);
1567               inferior_ptid = currthread;
1568             }
1569           return;
1570         }
1571
1572       if (ptid_equal (magic_null_ptid, inferior_ptid))
1573         {
1574           /* inferior_ptid is not set yet.  This can happen with the
1575              vRun -> remote_wait,"TAAthread:" path if the stub
1576              doesn't support qC.  This is the first stop reported
1577              after an attach, so this is the main thread.  Update the
1578              ptid in the thread list.  */
1579           thread_change_ptid (inferior_ptid, currthread);
1580           return;
1581         }
1582
1583       /* When connecting to a target remote, or to a target
1584          extended-remote which already was debugging an inferior, we
1585          may not know about it yet.  Add it before adding its child
1586          thread, so notifications are emitted in a sensible order.  */
1587       if (!in_inferior_list (ptid_get_pid (currthread)))
1588         {
1589           struct remote_state *rs = get_remote_state ();
1590           int fake_pid_p = !remote_multi_process_p (rs);
1591
1592           inf = remote_add_inferior (fake_pid_p,
1593                                      ptid_get_pid (currthread), -1);
1594         }
1595
1596       /* This is really a new thread.  Add it.  */
1597       remote_add_thread (currthread, running);
1598
1599       /* If we found a new inferior, let the common code do whatever
1600          it needs to with it (e.g., read shared libraries, insert
1601          breakpoints).  */
1602       if (inf != NULL)
1603         notice_new_inferior (currthread, running, 0);
1604     }
1605 }
1606
1607 /* Return the private thread data, creating it if necessary.  */
1608
1609 static struct private_thread_info *
1610 demand_private_info (ptid_t ptid)
1611 {
1612   struct thread_info *info = find_thread_ptid (ptid);
1613
1614   gdb_assert (info);
1615
1616   if (!info->private)
1617     {
1618       info->private = xmalloc (sizeof (*(info->private)));
1619       info->private_dtor = free_private_thread_info;
1620       info->private->core = -1;
1621       info->private->extra = 0;
1622     }
1623
1624   return info->private;
1625 }
1626
1627 /* Call this function as a result of
1628    1) A halt indication (T packet) containing a thread id
1629    2) A direct query of currthread
1630    3) Successful execution of set thread */
1631
1632 static void
1633 record_currthread (ptid_t currthread)
1634 {
1635   general_thread = currthread;
1636 }
1637
1638 static char *last_pass_packet;
1639
1640 /* If 'QPassSignals' is supported, tell the remote stub what signals
1641    it can simply pass through to the inferior without reporting.  */
1642
1643 static void
1644 remote_pass_signals (int numsigs, unsigned char *pass_signals)
1645 {
1646   if (remote_protocol_packets[PACKET_QPassSignals].support != PACKET_DISABLE)
1647     {
1648       char *pass_packet, *p;
1649       int count = 0, i;
1650
1651       gdb_assert (numsigs < 256);
1652       for (i = 0; i < numsigs; i++)
1653         {
1654           if (pass_signals[i])
1655             count++;
1656         }
1657       pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1658       strcpy (pass_packet, "QPassSignals:");
1659       p = pass_packet + strlen (pass_packet);
1660       for (i = 0; i < numsigs; i++)
1661         {
1662           if (pass_signals[i])
1663             {
1664               if (i >= 16)
1665                 *p++ = tohex (i >> 4);
1666               *p++ = tohex (i & 15);
1667               if (count)
1668                 *p++ = ';';
1669               else
1670                 break;
1671               count--;
1672             }
1673         }
1674       *p = 0;
1675       if (!last_pass_packet || strcmp (last_pass_packet, pass_packet))
1676         {
1677           struct remote_state *rs = get_remote_state ();
1678           char *buf = rs->buf;
1679
1680           putpkt (pass_packet);
1681           getpkt (&rs->buf, &rs->buf_size, 0);
1682           packet_ok (buf, &remote_protocol_packets[PACKET_QPassSignals]);
1683           if (last_pass_packet)
1684             xfree (last_pass_packet);
1685           last_pass_packet = pass_packet;
1686         }
1687       else
1688         xfree (pass_packet);
1689     }
1690 }
1691
1692 /* The last QProgramSignals packet sent to the target.  We bypass
1693    sending a new program signals list down to the target if the new
1694    packet is exactly the same as the last we sent.  IOW, we only let
1695    the target know about program signals list changes.  */
1696
1697 static char *last_program_signals_packet;
1698
1699 /* If 'QProgramSignals' is supported, tell the remote stub what
1700    signals it should pass through to the inferior when detaching.  */
1701
1702 static void
1703 remote_program_signals (int numsigs, unsigned char *signals)
1704 {
1705   if (remote_protocol_packets[PACKET_QProgramSignals].support != PACKET_DISABLE)
1706     {
1707       char *packet, *p;
1708       int count = 0, i;
1709
1710       gdb_assert (numsigs < 256);
1711       for (i = 0; i < numsigs; i++)
1712         {
1713           if (signals[i])
1714             count++;
1715         }
1716       packet = xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
1717       strcpy (packet, "QProgramSignals:");
1718       p = packet + strlen (packet);
1719       for (i = 0; i < numsigs; i++)
1720         {
1721           if (signal_pass_state (i))
1722             {
1723               if (i >= 16)
1724                 *p++ = tohex (i >> 4);
1725               *p++ = tohex (i & 15);
1726               if (count)
1727                 *p++ = ';';
1728               else
1729                 break;
1730               count--;
1731             }
1732         }
1733       *p = 0;
1734       if (!last_program_signals_packet
1735           || strcmp (last_program_signals_packet, packet) != 0)
1736         {
1737           struct remote_state *rs = get_remote_state ();
1738           char *buf = rs->buf;
1739
1740           putpkt (packet);
1741           getpkt (&rs->buf, &rs->buf_size, 0);
1742           packet_ok (buf, &remote_protocol_packets[PACKET_QProgramSignals]);
1743           xfree (last_program_signals_packet);
1744           last_program_signals_packet = packet;
1745         }
1746       else
1747         xfree (packet);
1748     }
1749 }
1750
1751 /* If PTID is MAGIC_NULL_PTID, don't set any thread.  If PTID is
1752    MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1753    thread.  If GEN is set, set the general thread, if not, then set
1754    the step/continue thread.  */
1755 static void
1756 set_thread (struct ptid ptid, int gen)
1757 {
1758   struct remote_state *rs = get_remote_state ();
1759   ptid_t state = gen ? general_thread : continue_thread;
1760   char *buf = rs->buf;
1761   char *endbuf = rs->buf + get_remote_packet_size ();
1762
1763   if (ptid_equal (state, ptid))
1764     return;
1765
1766   *buf++ = 'H';
1767   *buf++ = gen ? 'g' : 'c';
1768   if (ptid_equal (ptid, magic_null_ptid))
1769     xsnprintf (buf, endbuf - buf, "0");
1770   else if (ptid_equal (ptid, any_thread_ptid))
1771     xsnprintf (buf, endbuf - buf, "0");
1772   else if (ptid_equal (ptid, minus_one_ptid))
1773     xsnprintf (buf, endbuf - buf, "-1");
1774   else
1775     write_ptid (buf, endbuf, ptid);
1776   putpkt (rs->buf);
1777   getpkt (&rs->buf, &rs->buf_size, 0);
1778   if (gen)
1779     general_thread = ptid;
1780   else
1781     continue_thread = ptid;
1782 }
1783
1784 static void
1785 set_general_thread (struct ptid ptid)
1786 {
1787   set_thread (ptid, 1);
1788 }
1789
1790 static void
1791 set_continue_thread (struct ptid ptid)
1792 {
1793   set_thread (ptid, 0);
1794 }
1795
1796 /* Change the remote current process.  Which thread within the process
1797    ends up selected isn't important, as long as it is the same process
1798    as what INFERIOR_PTID points to.
1799
1800    This comes from that fact that there is no explicit notion of
1801    "selected process" in the protocol.  The selected process for
1802    general operations is the process the selected general thread
1803    belongs to.  */
1804
1805 static void
1806 set_general_process (void)
1807 {
1808   struct remote_state *rs = get_remote_state ();
1809
1810   /* If the remote can't handle multiple processes, don't bother.  */
1811   if (!rs->extended || !remote_multi_process_p (rs))
1812     return;
1813
1814   /* We only need to change the remote current thread if it's pointing
1815      at some other process.  */
1816   if (ptid_get_pid (general_thread) != ptid_get_pid (inferior_ptid))
1817     set_general_thread (inferior_ptid);
1818 }
1819
1820 \f
1821 /*  Return nonzero if the thread PTID is still alive on the remote
1822     system.  */
1823
1824 static int
1825 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
1826 {
1827   struct remote_state *rs = get_remote_state ();
1828   char *p, *endp;
1829
1830   if (ptid_equal (ptid, magic_null_ptid))
1831     /* The main thread is always alive.  */
1832     return 1;
1833
1834   if (ptid_get_pid (ptid) != 0 && ptid_get_tid (ptid) == 0)
1835     /* The main thread is always alive.  This can happen after a
1836        vAttach, if the remote side doesn't support
1837        multi-threading.  */
1838     return 1;
1839
1840   p = rs->buf;
1841   endp = rs->buf + get_remote_packet_size ();
1842
1843   *p++ = 'T';
1844   write_ptid (p, endp, ptid);
1845
1846   putpkt (rs->buf);
1847   getpkt (&rs->buf, &rs->buf_size, 0);
1848   return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
1849 }
1850
1851 /* About these extended threadlist and threadinfo packets.  They are
1852    variable length packets but, the fields within them are often fixed
1853    length.  They are redundent enough to send over UDP as is the
1854    remote protocol in general.  There is a matching unit test module
1855    in libstub.  */
1856
1857 #define OPAQUETHREADBYTES 8
1858
1859 /* a 64 bit opaque identifier */
1860 typedef unsigned char threadref[OPAQUETHREADBYTES];
1861
1862 /* WARNING: This threadref data structure comes from the remote O.S.,
1863    libstub protocol encoding, and remote.c.  It is not particularly
1864    changable.  */
1865
1866 /* Right now, the internal structure is int. We want it to be bigger.
1867    Plan to fix this.  */
1868
1869 typedef int gdb_threadref;      /* Internal GDB thread reference.  */
1870
1871 /* gdb_ext_thread_info is an internal GDB data structure which is
1872    equivalent to the reply of the remote threadinfo packet.  */
1873
1874 struct gdb_ext_thread_info
1875   {
1876     threadref threadid;         /* External form of thread reference.  */
1877     int active;                 /* Has state interesting to GDB?
1878                                    regs, stack.  */
1879     char display[256];          /* Brief state display, name,
1880                                    blocked/suspended.  */
1881     char shortname[32];         /* To be used to name threads.  */
1882     char more_display[256];     /* Long info, statistics, queue depth,
1883                                    whatever.  */
1884   };
1885
1886 /* The volume of remote transfers can be limited by submitting
1887    a mask containing bits specifying the desired information.
1888    Use a union of these values as the 'selection' parameter to
1889    get_thread_info.  FIXME: Make these TAG names more thread specific.  */
1890
1891 #define TAG_THREADID 1
1892 #define TAG_EXISTS 2
1893 #define TAG_DISPLAY 4
1894 #define TAG_THREADNAME 8
1895 #define TAG_MOREDISPLAY 16
1896
1897 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1898
1899 char *unpack_varlen_hex (char *buff, ULONGEST *result);
1900
1901 static char *unpack_nibble (char *buf, int *val);
1902
1903 static char *pack_nibble (char *buf, int nibble);
1904
1905 static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
1906
1907 static char *unpack_byte (char *buf, int *value);
1908
1909 static char *pack_int (char *buf, int value);
1910
1911 static char *unpack_int (char *buf, int *value);
1912
1913 static char *unpack_string (char *src, char *dest, int length);
1914
1915 static char *pack_threadid (char *pkt, threadref *id);
1916
1917 static char *unpack_threadid (char *inbuf, threadref *id);
1918
1919 void int_to_threadref (threadref *id, int value);
1920
1921 static int threadref_to_int (threadref *ref);
1922
1923 static void copy_threadref (threadref *dest, threadref *src);
1924
1925 static int threadmatch (threadref *dest, threadref *src);
1926
1927 static char *pack_threadinfo_request (char *pkt, int mode,
1928                                       threadref *id);
1929
1930 static int remote_unpack_thread_info_response (char *pkt,
1931                                                threadref *expectedref,
1932                                                struct gdb_ext_thread_info
1933                                                *info);
1934
1935
1936 static int remote_get_threadinfo (threadref *threadid,
1937                                   int fieldset, /*TAG mask */
1938                                   struct gdb_ext_thread_info *info);
1939
1940 static char *pack_threadlist_request (char *pkt, int startflag,
1941                                       int threadcount,
1942                                       threadref *nextthread);
1943
1944 static int parse_threadlist_response (char *pkt,
1945                                       int result_limit,
1946                                       threadref *original_echo,
1947                                       threadref *resultlist,
1948                                       int *doneflag);
1949
1950 static int remote_get_threadlist (int startflag,
1951                                   threadref *nextthread,
1952                                   int result_limit,
1953                                   int *done,
1954                                   int *result_count,
1955                                   threadref *threadlist);
1956
1957 typedef int (*rmt_thread_action) (threadref *ref, void *context);
1958
1959 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1960                                        void *context, int looplimit);
1961
1962 static int remote_newthread_step (threadref *ref, void *context);
1963
1964
1965 /* Write a PTID to BUF.  ENDBUF points to one-passed-the-end of the
1966    buffer we're allowed to write to.  Returns
1967    BUF+CHARACTERS_WRITTEN.  */
1968
1969 static char *
1970 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
1971 {
1972   int pid, tid;
1973   struct remote_state *rs = get_remote_state ();
1974
1975   if (remote_multi_process_p (rs))
1976     {
1977       pid = ptid_get_pid (ptid);
1978       if (pid < 0)
1979         buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
1980       else
1981         buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
1982     }
1983   tid = ptid_get_tid (ptid);
1984   if (tid < 0)
1985     buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
1986   else
1987     buf += xsnprintf (buf, endbuf - buf, "%x", tid);
1988
1989   return buf;
1990 }
1991
1992 /* Extract a PTID from BUF.  If non-null, OBUF is set to the to one
1993    passed the last parsed char.  Returns null_ptid on error.  */
1994
1995 static ptid_t
1996 read_ptid (char *buf, char **obuf)
1997 {
1998   char *p = buf;
1999   char *pp;
2000   ULONGEST pid = 0, tid = 0;
2001
2002   if (*p == 'p')
2003     {
2004       /* Multi-process ptid.  */
2005       pp = unpack_varlen_hex (p + 1, &pid);
2006       if (*pp != '.')
2007         error (_("invalid remote ptid: %s"), p);
2008
2009       p = pp;
2010       pp = unpack_varlen_hex (p + 1, &tid);
2011       if (obuf)
2012         *obuf = pp;
2013       return ptid_build (pid, 0, tid);
2014     }
2015
2016   /* No multi-process.  Just a tid.  */
2017   pp = unpack_varlen_hex (p, &tid);
2018
2019   /* Since the stub is not sending a process id, then default to
2020      what's in inferior_ptid, unless it's null at this point.  If so,
2021      then since there's no way to know the pid of the reported
2022      threads, use the magic number.  */
2023   if (ptid_equal (inferior_ptid, null_ptid))
2024     pid = ptid_get_pid (magic_null_ptid);
2025   else
2026     pid = ptid_get_pid (inferior_ptid);
2027
2028   if (obuf)
2029     *obuf = pp;
2030   return ptid_build (pid, 0, tid);
2031 }
2032
2033 /* Encode 64 bits in 16 chars of hex.  */
2034
2035 static const char hexchars[] = "0123456789abcdef";
2036
2037 static int
2038 ishex (int ch, int *val)
2039 {
2040   if ((ch >= 'a') && (ch <= 'f'))
2041     {
2042       *val = ch - 'a' + 10;
2043       return 1;
2044     }
2045   if ((ch >= 'A') && (ch <= 'F'))
2046     {
2047       *val = ch - 'A' + 10;
2048       return 1;
2049     }
2050   if ((ch >= '0') && (ch <= '9'))
2051     {
2052       *val = ch - '0';
2053       return 1;
2054     }
2055   return 0;
2056 }
2057
2058 static int
2059 stubhex (int ch)
2060 {
2061   if (ch >= 'a' && ch <= 'f')
2062     return ch - 'a' + 10;
2063   if (ch >= '0' && ch <= '9')
2064     return ch - '0';
2065   if (ch >= 'A' && ch <= 'F')
2066     return ch - 'A' + 10;
2067   return -1;
2068 }
2069
2070 static int
2071 stub_unpack_int (char *buff, int fieldlength)
2072 {
2073   int nibble;
2074   int retval = 0;
2075
2076   while (fieldlength)
2077     {
2078       nibble = stubhex (*buff++);
2079       retval |= nibble;
2080       fieldlength--;
2081       if (fieldlength)
2082         retval = retval << 4;
2083     }
2084   return retval;
2085 }
2086
2087 char *
2088 unpack_varlen_hex (char *buff,  /* packet to parse */
2089                    ULONGEST *result)
2090 {
2091   int nibble;
2092   ULONGEST retval = 0;
2093
2094   while (ishex (*buff, &nibble))
2095     {
2096       buff++;
2097       retval = retval << 4;
2098       retval |= nibble & 0x0f;
2099     }
2100   *result = retval;
2101   return buff;
2102 }
2103
2104 static char *
2105 unpack_nibble (char *buf, int *val)
2106 {
2107   *val = fromhex (*buf++);
2108   return buf;
2109 }
2110
2111 static char *
2112 pack_nibble (char *buf, int nibble)
2113 {
2114   *buf++ = hexchars[(nibble & 0x0f)];
2115   return buf;
2116 }
2117
2118 static char *
2119 pack_hex_byte (char *pkt, int byte)
2120 {
2121   *pkt++ = hexchars[(byte >> 4) & 0xf];
2122   *pkt++ = hexchars[(byte & 0xf)];
2123   return pkt;
2124 }
2125
2126 static char *
2127 unpack_byte (char *buf, int *value)
2128 {
2129   *value = stub_unpack_int (buf, 2);
2130   return buf + 2;
2131 }
2132
2133 static char *
2134 pack_int (char *buf, int value)
2135 {
2136   buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2137   buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2138   buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2139   buf = pack_hex_byte (buf, (value & 0xff));
2140   return buf;
2141 }
2142
2143 static char *
2144 unpack_int (char *buf, int *value)
2145 {
2146   *value = stub_unpack_int (buf, 8);
2147   return buf + 8;
2148 }
2149
2150 #if 0                   /* Currently unused, uncomment when needed.  */
2151 static char *pack_string (char *pkt, char *string);
2152
2153 static char *
2154 pack_string (char *pkt, char *string)
2155 {
2156   char ch;
2157   int len;
2158
2159   len = strlen (string);
2160   if (len > 200)
2161     len = 200;          /* Bigger than most GDB packets, junk???  */
2162   pkt = pack_hex_byte (pkt, len);
2163   while (len-- > 0)
2164     {
2165       ch = *string++;
2166       if ((ch == '\0') || (ch == '#'))
2167         ch = '*';               /* Protect encapsulation.  */
2168       *pkt++ = ch;
2169     }
2170   return pkt;
2171 }
2172 #endif /* 0 (unused) */
2173
2174 static char *
2175 unpack_string (char *src, char *dest, int length)
2176 {
2177   while (length--)
2178     *dest++ = *src++;
2179   *dest = '\0';
2180   return src;
2181 }
2182
2183 static char *
2184 pack_threadid (char *pkt, threadref *id)
2185 {
2186   char *limit;
2187   unsigned char *altid;
2188
2189   altid = (unsigned char *) id;
2190   limit = pkt + BUF_THREAD_ID_SIZE;
2191   while (pkt < limit)
2192     pkt = pack_hex_byte (pkt, *altid++);
2193   return pkt;
2194 }
2195
2196
2197 static char *
2198 unpack_threadid (char *inbuf, threadref *id)
2199 {
2200   char *altref;
2201   char *limit = inbuf + BUF_THREAD_ID_SIZE;
2202   int x, y;
2203
2204   altref = (char *) id;
2205
2206   while (inbuf < limit)
2207     {
2208       x = stubhex (*inbuf++);
2209       y = stubhex (*inbuf++);
2210       *altref++ = (x << 4) | y;
2211     }
2212   return inbuf;
2213 }
2214
2215 /* Externally, threadrefs are 64 bits but internally, they are still
2216    ints.  This is due to a mismatch of specifications.  We would like
2217    to use 64bit thread references internally.  This is an adapter
2218    function.  */
2219
2220 void
2221 int_to_threadref (threadref *id, int value)
2222 {
2223   unsigned char *scan;
2224
2225   scan = (unsigned char *) id;
2226   {
2227     int i = 4;
2228     while (i--)
2229       *scan++ = 0;
2230   }
2231   *scan++ = (value >> 24) & 0xff;
2232   *scan++ = (value >> 16) & 0xff;
2233   *scan++ = (value >> 8) & 0xff;
2234   *scan++ = (value & 0xff);
2235 }
2236
2237 static int
2238 threadref_to_int (threadref *ref)
2239 {
2240   int i, value = 0;
2241   unsigned char *scan;
2242
2243   scan = *ref;
2244   scan += 4;
2245   i = 4;
2246   while (i-- > 0)
2247     value = (value << 8) | ((*scan++) & 0xff);
2248   return value;
2249 }
2250
2251 static void
2252 copy_threadref (threadref *dest, threadref *src)
2253 {
2254   int i;
2255   unsigned char *csrc, *cdest;
2256
2257   csrc = (unsigned char *) src;
2258   cdest = (unsigned char *) dest;
2259   i = 8;
2260   while (i--)
2261     *cdest++ = *csrc++;
2262 }
2263
2264 static int
2265 threadmatch (threadref *dest, threadref *src)
2266 {
2267   /* Things are broken right now, so just assume we got a match.  */
2268 #if 0
2269   unsigned char *srcp, *destp;
2270   int i, result;
2271   srcp = (char *) src;
2272   destp = (char *) dest;
2273
2274   result = 1;
2275   while (i-- > 0)
2276     result &= (*srcp++ == *destp++) ? 1 : 0;
2277   return result;
2278 #endif
2279   return 1;
2280 }
2281
2282 /*
2283    threadid:1,        # always request threadid
2284    context_exists:2,
2285    display:4,
2286    unique_name:8,
2287    more_display:16
2288  */
2289
2290 /* Encoding:  'Q':8,'P':8,mask:32,threadid:64 */
2291
2292 static char *
2293 pack_threadinfo_request (char *pkt, int mode, threadref *id)
2294 {
2295   *pkt++ = 'q';                         /* Info Query */
2296   *pkt++ = 'P';                         /* process or thread info */
2297   pkt = pack_int (pkt, mode);           /* mode */
2298   pkt = pack_threadid (pkt, id);        /* threadid */
2299   *pkt = '\0';                          /* terminate */
2300   return pkt;
2301 }
2302
2303 /* These values tag the fields in a thread info response packet.  */
2304 /* Tagging the fields allows us to request specific fields and to
2305    add more fields as time goes by.  */
2306
2307 #define TAG_THREADID 1          /* Echo the thread identifier.  */
2308 #define TAG_EXISTS 2            /* Is this process defined enough to
2309                                    fetch registers and its stack?  */
2310 #define TAG_DISPLAY 4           /* A short thing maybe to put on a window */
2311 #define TAG_THREADNAME 8        /* string, maps 1-to-1 with a thread is.  */
2312 #define TAG_MOREDISPLAY 16      /* Whatever the kernel wants to say about
2313                                    the process.  */
2314
2315 static int
2316 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2317                                     struct gdb_ext_thread_info *info)
2318 {
2319   struct remote_state *rs = get_remote_state ();
2320   int mask, length;
2321   int tag;
2322   threadref ref;
2323   char *limit = pkt + rs->buf_size; /* Plausible parsing limit.  */
2324   int retval = 1;
2325
2326   /* info->threadid = 0; FIXME: implement zero_threadref.  */
2327   info->active = 0;
2328   info->display[0] = '\0';
2329   info->shortname[0] = '\0';
2330   info->more_display[0] = '\0';
2331
2332   /* Assume the characters indicating the packet type have been
2333      stripped.  */
2334   pkt = unpack_int (pkt, &mask);        /* arg mask */
2335   pkt = unpack_threadid (pkt, &ref);
2336
2337   if (mask == 0)
2338     warning (_("Incomplete response to threadinfo request."));
2339   if (!threadmatch (&ref, expectedref))
2340     {                   /* This is an answer to a different request.  */
2341       warning (_("ERROR RMT Thread info mismatch."));
2342       return 0;
2343     }
2344   copy_threadref (&info->threadid, &ref);
2345
2346   /* Loop on tagged fields , try to bail if somthing goes wrong.  */
2347
2348   /* Packets are terminated with nulls.  */
2349   while ((pkt < limit) && mask && *pkt)
2350     {
2351       pkt = unpack_int (pkt, &tag);     /* tag */
2352       pkt = unpack_byte (pkt, &length); /* length */
2353       if (!(tag & mask))                /* Tags out of synch with mask.  */
2354         {
2355           warning (_("ERROR RMT: threadinfo tag mismatch."));
2356           retval = 0;
2357           break;
2358         }
2359       if (tag == TAG_THREADID)
2360         {
2361           if (length != 16)
2362             {
2363               warning (_("ERROR RMT: length of threadid is not 16."));
2364               retval = 0;
2365               break;
2366             }
2367           pkt = unpack_threadid (pkt, &ref);
2368           mask = mask & ~TAG_THREADID;
2369           continue;
2370         }
2371       if (tag == TAG_EXISTS)
2372         {
2373           info->active = stub_unpack_int (pkt, length);
2374           pkt += length;
2375           mask = mask & ~(TAG_EXISTS);
2376           if (length > 8)
2377             {
2378               warning (_("ERROR RMT: 'exists' length too long."));
2379               retval = 0;
2380               break;
2381             }
2382           continue;
2383         }
2384       if (tag == TAG_THREADNAME)
2385         {
2386           pkt = unpack_string (pkt, &info->shortname[0], length);
2387           mask = mask & ~TAG_THREADNAME;
2388           continue;
2389         }
2390       if (tag == TAG_DISPLAY)
2391         {
2392           pkt = unpack_string (pkt, &info->display[0], length);
2393           mask = mask & ~TAG_DISPLAY;
2394           continue;
2395         }
2396       if (tag == TAG_MOREDISPLAY)
2397         {
2398           pkt = unpack_string (pkt, &info->more_display[0], length);
2399           mask = mask & ~TAG_MOREDISPLAY;
2400           continue;
2401         }
2402       warning (_("ERROR RMT: unknown thread info tag."));
2403       break;                    /* Not a tag we know about.  */
2404     }
2405   return retval;
2406 }
2407
2408 static int
2409 remote_get_threadinfo (threadref *threadid, int fieldset,       /* TAG mask */
2410                        struct gdb_ext_thread_info *info)
2411 {
2412   struct remote_state *rs = get_remote_state ();
2413   int result;
2414
2415   pack_threadinfo_request (rs->buf, fieldset, threadid);
2416   putpkt (rs->buf);
2417   getpkt (&rs->buf, &rs->buf_size, 0);
2418
2419   if (rs->buf[0] == '\0')
2420     return 0;
2421
2422   result = remote_unpack_thread_info_response (rs->buf + 2,
2423                                                threadid, info);
2424   return result;
2425 }
2426
2427 /*    Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32   */
2428
2429 static char *
2430 pack_threadlist_request (char *pkt, int startflag, int threadcount,
2431                          threadref *nextthread)
2432 {
2433   *pkt++ = 'q';                 /* info query packet */
2434   *pkt++ = 'L';                 /* Process LIST or threadLIST request */
2435   pkt = pack_nibble (pkt, startflag);           /* initflag 1 bytes */
2436   pkt = pack_hex_byte (pkt, threadcount);       /* threadcount 2 bytes */
2437   pkt = pack_threadid (pkt, nextthread);        /* 64 bit thread identifier */
2438   *pkt = '\0';
2439   return pkt;
2440 }
2441
2442 /* Encoding:   'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2443
2444 static int
2445 parse_threadlist_response (char *pkt, int result_limit,
2446                            threadref *original_echo, threadref *resultlist,
2447                            int *doneflag)
2448 {
2449   struct remote_state *rs = get_remote_state ();
2450   char *limit;
2451   int count, resultcount, done;
2452
2453   resultcount = 0;
2454   /* Assume the 'q' and 'M chars have been stripped.  */
2455   limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2456   /* done parse past here */
2457   pkt = unpack_byte (pkt, &count);      /* count field */
2458   pkt = unpack_nibble (pkt, &done);
2459   /* The first threadid is the argument threadid.  */
2460   pkt = unpack_threadid (pkt, original_echo);   /* should match query packet */
2461   while ((count-- > 0) && (pkt < limit))
2462     {
2463       pkt = unpack_threadid (pkt, resultlist++);
2464       if (resultcount++ >= result_limit)
2465         break;
2466     }
2467   if (doneflag)
2468     *doneflag = done;
2469   return resultcount;
2470 }
2471
2472 static int
2473 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2474                        int *done, int *result_count, threadref *threadlist)
2475 {
2476   struct remote_state *rs = get_remote_state ();
2477   static threadref echo_nextthread;
2478   int result = 1;
2479
2480   /* Trancate result limit to be smaller than the packet size.  */
2481   if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2482       >= get_remote_packet_size ())
2483     result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2484
2485   pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2486   putpkt (rs->buf);
2487   getpkt (&rs->buf, &rs->buf_size, 0);
2488
2489   if (*rs->buf == '\0')
2490     return 0;
2491   else
2492     *result_count =
2493       parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
2494                                  threadlist, done);
2495
2496   if (!threadmatch (&echo_nextthread, nextthread))
2497     {
2498       /* FIXME: This is a good reason to drop the packet.  */
2499       /* Possably, there is a duplicate response.  */
2500       /* Possabilities :
2501          retransmit immediatly - race conditions
2502          retransmit after timeout - yes
2503          exit
2504          wait for packet, then exit
2505        */
2506       warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2507       return 0;                 /* I choose simply exiting.  */
2508     }
2509   if (*result_count <= 0)
2510     {
2511       if (*done != 1)
2512         {
2513           warning (_("RMT ERROR : failed to get remote thread list."));
2514           result = 0;
2515         }
2516       return result;            /* break; */
2517     }
2518   if (*result_count > result_limit)
2519     {
2520       *result_count = 0;
2521       warning (_("RMT ERROR: threadlist response longer than requested."));
2522       return 0;
2523     }
2524   return result;
2525 }
2526
2527 /* This is the interface between remote and threads, remotes upper
2528    interface.  */
2529
2530 /* remote_find_new_threads retrieves the thread list and for each
2531    thread in the list, looks up the thread in GDB's internal list,
2532    adding the thread if it does not already exist.  This involves
2533    getting partial thread lists from the remote target so, polling the
2534    quit_flag is required.  */
2535
2536
2537 /* About this many threadisds fit in a packet.  */
2538
2539 #define MAXTHREADLISTRESULTS 32
2540
2541 static int
2542 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2543                             int looplimit)
2544 {
2545   int done, i, result_count;
2546   int startflag = 1;
2547   int result = 1;
2548   int loopcount = 0;
2549   static threadref nextthread;
2550   static threadref resultthreadlist[MAXTHREADLISTRESULTS];
2551
2552   done = 0;
2553   while (!done)
2554     {
2555       if (loopcount++ > looplimit)
2556         {
2557           result = 0;
2558           warning (_("Remote fetch threadlist -infinite loop-."));
2559           break;
2560         }
2561       if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
2562                                   &done, &result_count, resultthreadlist))
2563         {
2564           result = 0;
2565           break;
2566         }
2567       /* Clear for later iterations.  */
2568       startflag = 0;
2569       /* Setup to resume next batch of thread references, set nextthread.  */
2570       if (result_count >= 1)
2571         copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
2572       i = 0;
2573       while (result_count--)
2574         if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
2575           break;
2576     }
2577   return result;
2578 }
2579
2580 static int
2581 remote_newthread_step (threadref *ref, void *context)
2582 {
2583   int pid = ptid_get_pid (inferior_ptid);
2584   ptid_t ptid = ptid_build (pid, 0, threadref_to_int (ref));
2585
2586   if (!in_thread_list (ptid))
2587     add_thread (ptid);
2588   return 1;                     /* continue iterator */
2589 }
2590
2591 #define CRAZY_MAX_THREADS 1000
2592
2593 static ptid_t
2594 remote_current_thread (ptid_t oldpid)
2595 {
2596   struct remote_state *rs = get_remote_state ();
2597
2598   putpkt ("qC");
2599   getpkt (&rs->buf, &rs->buf_size, 0);
2600   if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
2601     return read_ptid (&rs->buf[2], NULL);
2602   else
2603     return oldpid;
2604 }
2605
2606 /* Find new threads for info threads command.
2607  * Original version, using John Metzler's thread protocol.
2608  */
2609
2610 static void
2611 remote_find_new_threads (void)
2612 {
2613   remote_threadlist_iterator (remote_newthread_step, 0,
2614                               CRAZY_MAX_THREADS);
2615 }
2616
2617 #if defined(HAVE_LIBEXPAT)
2618
2619 typedef struct thread_item
2620 {
2621   ptid_t ptid;
2622   char *extra;
2623   int core;
2624 } thread_item_t;
2625 DEF_VEC_O(thread_item_t);
2626
2627 struct threads_parsing_context
2628 {
2629   VEC (thread_item_t) *items;
2630 };
2631
2632 static void
2633 start_thread (struct gdb_xml_parser *parser,
2634               const struct gdb_xml_element *element,
2635               void *user_data, VEC(gdb_xml_value_s) *attributes)
2636 {
2637   struct threads_parsing_context *data = user_data;
2638
2639   struct thread_item item;
2640   char *id;
2641   struct gdb_xml_value *attr;
2642
2643   id = xml_find_attribute (attributes, "id")->value;
2644   item.ptid = read_ptid (id, NULL);
2645
2646   attr = xml_find_attribute (attributes, "core");
2647   if (attr != NULL)
2648     item.core = *(ULONGEST *) attr->value;
2649   else
2650     item.core = -1;
2651
2652   item.extra = 0;
2653
2654   VEC_safe_push (thread_item_t, data->items, &item);
2655 }
2656
2657 static void
2658 end_thread (struct gdb_xml_parser *parser,
2659             const struct gdb_xml_element *element,
2660             void *user_data, const char *body_text)
2661 {
2662   struct threads_parsing_context *data = user_data;
2663
2664   if (body_text && *body_text)
2665     VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
2666 }
2667
2668 const struct gdb_xml_attribute thread_attributes[] = {
2669   { "id", GDB_XML_AF_NONE, NULL, NULL },
2670   { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
2671   { NULL, GDB_XML_AF_NONE, NULL, NULL }
2672 };
2673
2674 const struct gdb_xml_element thread_children[] = {
2675   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2676 };
2677
2678 const struct gdb_xml_element threads_children[] = {
2679   { "thread", thread_attributes, thread_children,
2680     GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
2681     start_thread, end_thread },
2682   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2683 };
2684
2685 const struct gdb_xml_element threads_elements[] = {
2686   { "threads", NULL, threads_children,
2687     GDB_XML_EF_NONE, NULL, NULL },
2688   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2689 };
2690
2691 /* Discard the contents of the constructed thread info context.  */
2692
2693 static void
2694 clear_threads_parsing_context (void *p)
2695 {
2696   struct threads_parsing_context *context = p;
2697   int i;
2698   struct thread_item *item;
2699
2700   for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2701     xfree (item->extra);
2702
2703   VEC_free (thread_item_t, context->items);
2704 }
2705
2706 #endif
2707
2708 /*
2709  * Find all threads for info threads command.
2710  * Uses new thread protocol contributed by Cisco.
2711  * Falls back and attempts to use the older method (above)
2712  * if the target doesn't respond to the new method.
2713  */
2714
2715 static void
2716 remote_threads_info (struct target_ops *ops)
2717 {
2718   struct remote_state *rs = get_remote_state ();
2719   char *bufp;
2720   ptid_t new_thread;
2721
2722   if (remote_desc == 0)         /* paranoia */
2723     error (_("Command can only be used when connected to the remote target."));
2724
2725 #if defined(HAVE_LIBEXPAT)
2726   if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2727     {
2728       char *xml = target_read_stralloc (&current_target,
2729                                          TARGET_OBJECT_THREADS, NULL);
2730
2731       struct cleanup *back_to = make_cleanup (xfree, xml);
2732
2733       if (xml && *xml)
2734         {
2735           struct threads_parsing_context context;
2736
2737           context.items = NULL;
2738           make_cleanup (clear_threads_parsing_context, &context);
2739
2740           if (gdb_xml_parse_quick (_("threads"), "threads.dtd",
2741                                    threads_elements, xml, &context) == 0)
2742             {
2743               int i;
2744               struct thread_item *item;
2745
2746               for (i = 0;
2747                    VEC_iterate (thread_item_t, context.items, i, item);
2748                    ++i)
2749                 {
2750                   if (!ptid_equal (item->ptid, null_ptid))
2751                     {
2752                       struct private_thread_info *info;
2753                       /* In non-stop mode, we assume new found threads
2754                          are running until proven otherwise with a
2755                          stop reply.  In all-stop, we can only get
2756                          here if all threads are stopped.  */
2757                       int running = non_stop ? 1 : 0;
2758
2759                       remote_notice_new_inferior (item->ptid, running);
2760
2761                       info = demand_private_info (item->ptid);
2762                       info->core = item->core;
2763                       info->extra = item->extra;
2764                       item->extra = NULL;
2765                     }
2766                 }
2767             }
2768         }
2769
2770       do_cleanups (back_to);
2771       return;
2772     }
2773 #endif
2774
2775   if (use_threadinfo_query)
2776     {
2777       putpkt ("qfThreadInfo");
2778       getpkt (&rs->buf, &rs->buf_size, 0);
2779       bufp = rs->buf;
2780       if (bufp[0] != '\0')              /* q packet recognized */
2781         {
2782           struct cleanup *old_chain;
2783           char *saved_reply;
2784
2785           /* remote_notice_new_inferior (in the loop below) may make
2786              new RSP calls, which clobber rs->buf.  Work with a
2787              copy.  */
2788           bufp = saved_reply = xstrdup (rs->buf);
2789           old_chain = make_cleanup (free_current_contents, &saved_reply);
2790
2791           while (*bufp++ == 'm')        /* reply contains one or more TID */
2792             {
2793               do
2794                 {
2795                   new_thread = read_ptid (bufp, &bufp);
2796                   if (!ptid_equal (new_thread, null_ptid))
2797                     {
2798                       /* In non-stop mode, we assume new found threads
2799                          are running until proven otherwise with a
2800                          stop reply.  In all-stop, we can only get
2801                          here if all threads are stopped.  */
2802                       int running = non_stop ? 1 : 0;
2803
2804                       remote_notice_new_inferior (new_thread, running);
2805                     }
2806                 }
2807               while (*bufp++ == ',');   /* comma-separated list */
2808               free_current_contents (&saved_reply);
2809               putpkt ("qsThreadInfo");
2810               getpkt (&rs->buf, &rs->buf_size, 0);
2811               bufp = saved_reply = xstrdup (rs->buf);
2812             }
2813           do_cleanups (old_chain);
2814           return;       /* done */
2815         }
2816     }
2817
2818   /* Only qfThreadInfo is supported in non-stop mode.  */
2819   if (non_stop)
2820     return;
2821
2822   /* Else fall back to old method based on jmetzler protocol.  */
2823   use_threadinfo_query = 0;
2824   remote_find_new_threads ();
2825   return;
2826 }
2827
2828 /*
2829  * Collect a descriptive string about the given thread.
2830  * The target may say anything it wants to about the thread
2831  * (typically info about its blocked / runnable state, name, etc.).
2832  * This string will appear in the info threads display.
2833  *
2834  * Optional: targets are not required to implement this function.
2835  */
2836
2837 static char *
2838 remote_threads_extra_info (struct thread_info *tp)
2839 {
2840   struct remote_state *rs = get_remote_state ();
2841   int result;
2842   int set;
2843   threadref id;
2844   struct gdb_ext_thread_info threadinfo;
2845   static char display_buf[100]; /* arbitrary...  */
2846   int n = 0;                    /* position in display_buf */
2847
2848   if (remote_desc == 0)         /* paranoia */
2849     internal_error (__FILE__, __LINE__,
2850                     _("remote_threads_extra_info"));
2851
2852   if (ptid_equal (tp->ptid, magic_null_ptid)
2853       || (ptid_get_pid (tp->ptid) != 0 && ptid_get_tid (tp->ptid) == 0))
2854     /* This is the main thread which was added by GDB.  The remote
2855        server doesn't know about it.  */
2856     return NULL;
2857
2858   if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2859     {
2860       struct thread_info *info = find_thread_ptid (tp->ptid);
2861
2862       if (info && info->private)
2863         return info->private->extra;
2864       else
2865         return NULL;
2866     }
2867
2868   if (use_threadextra_query)
2869     {
2870       char *b = rs->buf;
2871       char *endb = rs->buf + get_remote_packet_size ();
2872
2873       xsnprintf (b, endb - b, "qThreadExtraInfo,");
2874       b += strlen (b);
2875       write_ptid (b, endb, tp->ptid);
2876
2877       putpkt (rs->buf);
2878       getpkt (&rs->buf, &rs->buf_size, 0);
2879       if (rs->buf[0] != 0)
2880         {
2881           n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2882           result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
2883           display_buf [result] = '\0';
2884           return display_buf;
2885         }
2886     }
2887
2888   /* If the above query fails, fall back to the old method.  */
2889   use_threadextra_query = 0;
2890   set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2891     | TAG_MOREDISPLAY | TAG_DISPLAY;
2892   int_to_threadref (&id, ptid_get_tid (tp->ptid));
2893   if (remote_get_threadinfo (&id, set, &threadinfo))
2894     if (threadinfo.active)
2895       {
2896         if (*threadinfo.shortname)
2897           n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
2898                           " Name: %s,", threadinfo.shortname);
2899         if (*threadinfo.display)
2900           n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2901                           " State: %s,", threadinfo.display);
2902         if (*threadinfo.more_display)
2903           n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2904                           " Priority: %s", threadinfo.more_display);
2905
2906         if (n > 0)
2907           {
2908             /* For purely cosmetic reasons, clear up trailing commas.  */
2909             if (',' == display_buf[n-1])
2910               display_buf[n-1] = ' ';
2911             return display_buf;
2912           }
2913       }
2914   return NULL;
2915 }
2916 \f
2917
2918 static int
2919 remote_static_tracepoint_marker_at (CORE_ADDR addr,
2920                                     struct static_tracepoint_marker *marker)
2921 {
2922   struct remote_state *rs = get_remote_state ();
2923   char *p = rs->buf;
2924
2925   xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
2926   p += strlen (p);
2927   p += hexnumstr (p, addr);
2928   putpkt (rs->buf);
2929   getpkt (&rs->buf, &rs->buf_size, 0);
2930   p = rs->buf;
2931
2932   if (*p == 'E')
2933     error (_("Remote failure reply: %s"), p);
2934
2935   if (*p++ == 'm')
2936     {
2937       parse_static_tracepoint_marker_definition (p, &p, marker);
2938       return 1;
2939     }
2940
2941   return 0;
2942 }
2943
2944 static VEC(static_tracepoint_marker_p) *
2945 remote_static_tracepoint_markers_by_strid (const char *strid)
2946 {
2947   struct remote_state *rs = get_remote_state ();
2948   VEC(static_tracepoint_marker_p) *markers = NULL;
2949   struct static_tracepoint_marker *marker = NULL;
2950   struct cleanup *old_chain;
2951   char *p;
2952
2953   /* Ask for a first packet of static tracepoint marker
2954      definition.  */
2955   putpkt ("qTfSTM");
2956   getpkt (&rs->buf, &rs->buf_size, 0);
2957   p = rs->buf;
2958   if (*p == 'E')
2959     error (_("Remote failure reply: %s"), p);
2960
2961   old_chain = make_cleanup (free_current_marker, &marker);
2962
2963   while (*p++ == 'm')
2964     {
2965       if (marker == NULL)
2966         marker = XCNEW (struct static_tracepoint_marker);
2967
2968       do
2969         {
2970           parse_static_tracepoint_marker_definition (p, &p, marker);
2971
2972           if (strid == NULL || strcmp (strid, marker->str_id) == 0)
2973             {
2974               VEC_safe_push (static_tracepoint_marker_p,
2975                              markers, marker);
2976               marker = NULL;
2977             }
2978           else
2979             {
2980               release_static_tracepoint_marker (marker);
2981               memset (marker, 0, sizeof (*marker));
2982             }
2983         }
2984       while (*p++ == ',');      /* comma-separated list */
2985       /* Ask for another packet of static tracepoint definition.  */
2986       putpkt ("qTsSTM");
2987       getpkt (&rs->buf, &rs->buf_size, 0);
2988       p = rs->buf;
2989     }
2990
2991   do_cleanups (old_chain);
2992   return markers;
2993 }
2994
2995 \f
2996 /* Implement the to_get_ada_task_ptid function for the remote targets.  */
2997
2998 static ptid_t
2999 remote_get_ada_task_ptid (long lwp, long thread)
3000 {
3001   return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
3002 }
3003 \f
3004
3005 /* Restart the remote side; this is an extended protocol operation.  */
3006
3007 static void
3008 extended_remote_restart (void)
3009 {
3010   struct remote_state *rs = get_remote_state ();
3011
3012   /* Send the restart command; for reasons I don't understand the
3013      remote side really expects a number after the "R".  */
3014   xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
3015   putpkt (rs->buf);
3016
3017   remote_fileio_reset ();
3018 }
3019 \f
3020 /* Clean up connection to a remote debugger.  */
3021
3022 static void
3023 remote_close (void)
3024 {
3025   if (remote_desc == NULL)
3026     return; /* already closed */
3027
3028   /* Make sure we leave stdin registered in the event loop, and we
3029      don't leave the async SIGINT signal handler installed.  */
3030   remote_terminal_ours ();
3031
3032   serial_close (remote_desc);
3033   remote_desc = NULL;
3034
3035   /* We don't have a connection to the remote stub anymore.  Get rid
3036      of all the inferiors and their threads we were controlling.
3037      Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3038      will be unable to find the thread corresponding to (pid, 0, 0).  */
3039   inferior_ptid = null_ptid;
3040   discard_all_inferiors ();
3041
3042   /* Stop replies may from inferiors which are still unknown to GDB.
3043      We are closing the remote target, so we should discard
3044      everything, including the stop replies from GDB-unknown
3045      inferiors.  */
3046   discard_pending_stop_replies (NULL);
3047
3048   if (remote_async_inferior_event_token)
3049     delete_async_event_handler (&remote_async_inferior_event_token);
3050
3051   remote_notif_unregister_async_event_handler ();
3052
3053   trace_reset_local_state ();
3054 }
3055
3056 /* Query the remote side for the text, data and bss offsets.  */
3057
3058 static void
3059 get_offsets (void)
3060 {
3061   struct remote_state *rs = get_remote_state ();
3062   char *buf;
3063   char *ptr;
3064   int lose, num_segments = 0, do_sections, do_segments;
3065   CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
3066   struct section_offsets *offs;
3067   struct symfile_segment_data *data;
3068
3069   if (symfile_objfile == NULL)
3070     return;
3071
3072   putpkt ("qOffsets");
3073   getpkt (&rs->buf, &rs->buf_size, 0);
3074   buf = rs->buf;
3075
3076   if (buf[0] == '\000')
3077     return;                     /* Return silently.  Stub doesn't support
3078                                    this command.  */
3079   if (buf[0] == 'E')
3080     {
3081       warning (_("Remote failure reply: %s"), buf);
3082       return;
3083     }
3084
3085   /* Pick up each field in turn.  This used to be done with scanf, but
3086      scanf will make trouble if CORE_ADDR size doesn't match
3087      conversion directives correctly.  The following code will work
3088      with any size of CORE_ADDR.  */
3089   text_addr = data_addr = bss_addr = 0;
3090   ptr = buf;
3091   lose = 0;
3092
3093   if (strncmp (ptr, "Text=", 5) == 0)
3094     {
3095       ptr += 5;
3096       /* Don't use strtol, could lose on big values.  */
3097       while (*ptr && *ptr != ';')
3098         text_addr = (text_addr << 4) + fromhex (*ptr++);
3099
3100       if (strncmp (ptr, ";Data=", 6) == 0)
3101         {
3102           ptr += 6;
3103           while (*ptr && *ptr != ';')
3104             data_addr = (data_addr << 4) + fromhex (*ptr++);
3105         }
3106       else
3107         lose = 1;
3108
3109       if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
3110         {
3111           ptr += 5;
3112           while (*ptr && *ptr != ';')
3113             bss_addr = (bss_addr << 4) + fromhex (*ptr++);
3114
3115           if (bss_addr != data_addr)
3116             warning (_("Target reported unsupported offsets: %s"), buf);
3117         }
3118       else
3119         lose = 1;
3120     }
3121   else if (strncmp (ptr, "TextSeg=", 8) == 0)
3122     {
3123       ptr += 8;
3124       /* Don't use strtol, could lose on big values.  */
3125       while (*ptr && *ptr != ';')
3126         text_addr = (text_addr << 4) + fromhex (*ptr++);
3127       num_segments = 1;
3128
3129       if (strncmp (ptr, ";DataSeg=", 9) == 0)
3130         {
3131           ptr += 9;
3132           while (*ptr && *ptr != ';')
3133             data_addr = (data_addr << 4) + fromhex (*ptr++);
3134           num_segments++;
3135         }
3136     }
3137   else
3138     lose = 1;
3139
3140   if (lose)
3141     error (_("Malformed response to offset query, %s"), buf);
3142   else if (*ptr != '\0')
3143     warning (_("Target reported unsupported offsets: %s"), buf);
3144
3145   offs = ((struct section_offsets *)
3146           alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
3147   memcpy (offs, symfile_objfile->section_offsets,
3148           SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
3149
3150   data = get_symfile_segment_data (symfile_objfile->obfd);
3151   do_segments = (data != NULL);
3152   do_sections = num_segments == 0;
3153
3154   if (num_segments > 0)
3155     {
3156       segments[0] = text_addr;
3157       segments[1] = data_addr;
3158     }
3159   /* If we have two segments, we can still try to relocate everything
3160      by assuming that the .text and .data offsets apply to the whole
3161      text and data segments.  Convert the offsets given in the packet
3162      to base addresses for symfile_map_offsets_to_segments.  */
3163   else if (data && data->num_segments == 2)
3164     {
3165       segments[0] = data->segment_bases[0] + text_addr;
3166       segments[1] = data->segment_bases[1] + data_addr;
3167       num_segments = 2;
3168     }
3169   /* If the object file has only one segment, assume that it is text
3170      rather than data; main programs with no writable data are rare,
3171      but programs with no code are useless.  Of course the code might
3172      have ended up in the data segment... to detect that we would need
3173      the permissions here.  */
3174   else if (data && data->num_segments == 1)
3175     {
3176       segments[0] = data->segment_bases[0] + text_addr;
3177       num_segments = 1;
3178     }
3179   /* There's no way to relocate by segment.  */
3180   else
3181     do_segments = 0;
3182
3183   if (do_segments)
3184     {
3185       int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3186                                                  offs, num_segments, segments);
3187
3188       if (ret == 0 && !do_sections)
3189         error (_("Can not handle qOffsets TextSeg "
3190                  "response with this symbol file"));
3191
3192       if (ret > 0)
3193         do_sections = 0;
3194     }
3195
3196   if (data)
3197     free_symfile_segment_data (data);
3198
3199   if (do_sections)
3200     {
3201       offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3202
3203       /* This is a temporary kludge to force data and bss to use the
3204          same offsets because that's what nlmconv does now.  The real
3205          solution requires changes to the stub and remote.c that I
3206          don't have time to do right now.  */
3207
3208       offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3209       offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3210     }
3211
3212   objfile_relocate (symfile_objfile, offs);
3213 }
3214
3215 /* Callback for iterate_over_threads.  Set the STOP_REQUESTED flags in
3216    threads we know are stopped already.  This is used during the
3217    initial remote connection in non-stop mode --- threads that are
3218    reported as already being stopped are left stopped.  */
3219
3220 static int
3221 set_stop_requested_callback (struct thread_info *thread, void *data)
3222 {
3223   /* If we have a stop reply for this thread, it must be stopped.  */
3224   if (peek_stop_reply (thread->ptid))
3225     set_stop_requested (thread->ptid, 1);
3226
3227   return 0;
3228 }
3229
3230 /* Send interrupt_sequence to remote target.  */
3231 static void
3232 send_interrupt_sequence (void)
3233 {
3234   if (interrupt_sequence_mode == interrupt_sequence_control_c)
3235     remote_serial_write ("\x03", 1);
3236   else if (interrupt_sequence_mode == interrupt_sequence_break)
3237     serial_send_break (remote_desc);
3238   else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3239     {
3240       serial_send_break (remote_desc);
3241       remote_serial_write ("g", 1);
3242     }
3243   else
3244     internal_error (__FILE__, __LINE__,
3245                     _("Invalid value for interrupt_sequence_mode: %s."),
3246                     interrupt_sequence_mode);
3247 }
3248
3249
3250 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
3251    and extract the PTID.  Returns NULL_PTID if not found.  */
3252
3253 static ptid_t
3254 stop_reply_extract_thread (char *stop_reply)
3255 {
3256   if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3257     {
3258       char *p;
3259
3260       /* Txx r:val ; r:val (...)  */
3261       p = &stop_reply[3];
3262
3263       /* Look for "register" named "thread".  */
3264       while (*p != '\0')
3265         {
3266           char *p1;
3267
3268           p1 = strchr (p, ':');
3269           if (p1 == NULL)
3270             return null_ptid;
3271
3272           if (strncmp (p, "thread", p1 - p) == 0)
3273             return read_ptid (++p1, &p);
3274
3275           p1 = strchr (p, ';');
3276           if (p1 == NULL)
3277             return null_ptid;
3278           p1++;
3279
3280           p = p1;
3281         }
3282     }
3283
3284   return null_ptid;
3285 }
3286
3287 /* Query the remote target for which is the current thread/process,
3288    add it to our tables, and update INFERIOR_PTID.  The caller is
3289    responsible for setting the state such that the remote end is ready
3290    to return the current thread.
3291
3292    This function is called after handling the '?' or 'vRun' packets,
3293    whose response is a stop reply from which we can also try
3294    extracting the thread.  If the target doesn't support the explicit
3295    qC query, we infer the current thread from that stop reply, passed
3296    in in WAIT_STATUS, which may be NULL.  */
3297
3298 static void
3299 add_current_inferior_and_thread (char *wait_status)
3300 {
3301   struct remote_state *rs = get_remote_state ();
3302   int fake_pid_p = 0;
3303   ptid_t ptid = null_ptid;
3304
3305   inferior_ptid = null_ptid;
3306
3307   /* Now, if we have thread information, update inferior_ptid.  First
3308      if we have a stop reply handy, maybe it's a T stop reply with a
3309      "thread" register we can extract the current thread from.  If
3310      not, ask the remote which is the current thread, with qC.  The
3311      former method avoids a roundtrip.  Note we don't use
3312      remote_parse_stop_reply as that makes use of the target
3313      architecture, which we haven't yet fully determined at this
3314      point.  */
3315   if (wait_status != NULL)
3316     ptid = stop_reply_extract_thread (wait_status);
3317   if (ptid_equal (ptid, null_ptid))
3318     ptid = remote_current_thread (inferior_ptid);
3319
3320   if (!ptid_equal (ptid, null_ptid))
3321     {
3322       if (!remote_multi_process_p (rs))
3323         fake_pid_p = 1;
3324
3325       inferior_ptid = ptid;
3326     }
3327   else
3328     {
3329       /* Without this, some commands which require an active target
3330          (such as kill) won't work.  This variable serves (at least)
3331          double duty as both the pid of the target process (if it has
3332          such), and as a flag indicating that a target is active.  */
3333       inferior_ptid = magic_null_ptid;
3334       fake_pid_p = 1;
3335     }
3336
3337   remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1);
3338
3339   /* Add the main thread.  */
3340   add_thread_silent (inferior_ptid);
3341 }
3342
3343 static void
3344 remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
3345 {
3346   struct remote_state *rs = get_remote_state ();
3347   struct packet_config *noack_config;
3348   char *wait_status = NULL;
3349
3350   immediate_quit++;             /* Allow user to interrupt it.  */
3351   QUIT;
3352
3353   if (interrupt_on_connect)
3354     send_interrupt_sequence ();
3355
3356   /* Ack any packet which the remote side has already sent.  */
3357   serial_write (remote_desc, "+", 1);
3358
3359   /* Signal other parts that we're going through the initial setup,
3360      and so things may not be stable yet.  */
3361   rs->starting_up = 1;
3362
3363   /* The first packet we send to the target is the optional "supported
3364      packets" request.  If the target can answer this, it will tell us
3365      which later probes to skip.  */
3366   remote_query_supported ();
3367
3368   /* If the stub wants to get a QAllow, compose one and send it.  */
3369   if (remote_protocol_packets[PACKET_QAllow].support != PACKET_DISABLE)
3370     remote_set_permissions ();
3371
3372   /* Next, we possibly activate noack mode.
3373
3374      If the QStartNoAckMode packet configuration is set to AUTO,
3375      enable noack mode if the stub reported a wish for it with
3376      qSupported.
3377
3378      If set to TRUE, then enable noack mode even if the stub didn't
3379      report it in qSupported.  If the stub doesn't reply OK, the
3380      session ends with an error.
3381
3382      If FALSE, then don't activate noack mode, regardless of what the
3383      stub claimed should be the default with qSupported.  */
3384
3385   noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
3386
3387   if (noack_config->detect == AUTO_BOOLEAN_TRUE
3388       || (noack_config->detect == AUTO_BOOLEAN_AUTO
3389           && noack_config->support == PACKET_ENABLE))
3390     {
3391       putpkt ("QStartNoAckMode");
3392       getpkt (&rs->buf, &rs->buf_size, 0);
3393       if (packet_ok (rs->buf, noack_config) == PACKET_OK)
3394         rs->noack_mode = 1;
3395     }
3396
3397   if (extended_p)
3398     {
3399       /* Tell the remote that we are using the extended protocol.  */
3400       putpkt ("!");
3401       getpkt (&rs->buf, &rs->buf_size, 0);
3402     }
3403
3404   /* Let the target know which signals it is allowed to pass down to
3405      the program.  */
3406   update_signals_program_target ();
3407
3408   /* Next, if the target can specify a description, read it.  We do
3409      this before anything involving memory or registers.  */
3410   target_find_description ();
3411
3412   /* Next, now that we know something about the target, update the
3413      address spaces in the program spaces.  */
3414   update_address_spaces ();
3415
3416   /* On OSs where the list of libraries is global to all
3417      processes, we fetch them early.  */
3418   if (gdbarch_has_global_solist (target_gdbarch ()))
3419     solib_add (NULL, from_tty, target, auto_solib_add);
3420
3421   if (non_stop)
3422     {
3423       if (!rs->non_stop_aware)
3424         error (_("Non-stop mode requested, but remote "
3425                  "does not support non-stop"));
3426
3427       putpkt ("QNonStop:1");
3428       getpkt (&rs->buf, &rs->buf_size, 0);
3429
3430       if (strcmp (rs->buf, "OK") != 0)
3431         error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
3432
3433       /* Find about threads and processes the stub is already
3434          controlling.  We default to adding them in the running state.
3435          The '?' query below will then tell us about which threads are
3436          stopped.  */
3437       remote_threads_info (target);
3438     }
3439   else if (rs->non_stop_aware)
3440     {
3441       /* Don't assume that the stub can operate in all-stop mode.
3442          Request it explicitly.  */
3443       putpkt ("QNonStop:0");
3444       getpkt (&rs->buf, &rs->buf_size, 0);
3445
3446       if (strcmp (rs->buf, "OK") != 0)
3447         error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
3448     }
3449
3450   /* Upload TSVs regardless of whether the target is running or not.  The
3451      remote stub, such as GDBserver, may have some predefined or builtin
3452      TSVs, even if the target is not running.  */
3453   if (remote_get_trace_status (current_trace_status ()) != -1)
3454     {
3455       struct uploaded_tsv *uploaded_tsvs = NULL;
3456
3457       remote_upload_trace_state_variables (&uploaded_tsvs);
3458       merge_uploaded_trace_state_variables (&uploaded_tsvs);
3459     }
3460
3461   /* Check whether the target is running now.  */
3462   putpkt ("?");
3463   getpkt (&rs->buf, &rs->buf_size, 0);
3464
3465   if (!non_stop)
3466     {
3467       ptid_t ptid;
3468       int fake_pid_p = 0;
3469       struct inferior *inf;
3470
3471       if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
3472         {
3473           if (!extended_p)
3474             error (_("The target is not running (try extended-remote?)"));
3475
3476           /* We're connected, but not running.  Drop out before we
3477              call start_remote.  */
3478           rs->starting_up = 0;
3479           return;
3480         }
3481       else
3482         {
3483           /* Save the reply for later.  */
3484           wait_status = alloca (strlen (rs->buf) + 1);
3485           strcpy (wait_status, rs->buf);
3486         }
3487
3488       /* Let the stub know that we want it to return the thread.  */
3489       set_continue_thread (minus_one_ptid);
3490
3491       add_current_inferior_and_thread (wait_status);
3492
3493       /* init_wait_for_inferior should be called before get_offsets in order
3494          to manage `inserted' flag in bp loc in a correct state.
3495          breakpoint_init_inferior, called from init_wait_for_inferior, set
3496          `inserted' flag to 0, while before breakpoint_re_set, called from
3497          start_remote, set `inserted' flag to 1.  In the initialization of
3498          inferior, breakpoint_init_inferior should be called first, and then
3499          breakpoint_re_set can be called.  If this order is broken, state of
3500          `inserted' flag is wrong, and cause some problems on breakpoint
3501          manipulation.  */
3502       init_wait_for_inferior ();
3503
3504       get_offsets ();           /* Get text, data & bss offsets.  */
3505
3506       /* If we could not find a description using qXfer, and we know
3507          how to do it some other way, try again.  This is not
3508          supported for non-stop; it could be, but it is tricky if
3509          there are no stopped threads when we connect.  */
3510       if (remote_read_description_p (target)
3511           && gdbarch_target_desc (target_gdbarch ()) == NULL)
3512         {
3513           target_clear_description ();
3514           target_find_description ();
3515         }
3516
3517       /* Use the previously fetched status.  */
3518       gdb_assert (wait_status != NULL);
3519       strcpy (rs->buf, wait_status);
3520       rs->cached_wait_status = 1;
3521
3522       immediate_quit--;
3523       start_remote (from_tty); /* Initialize gdb process mechanisms.  */
3524     }
3525   else
3526     {
3527       /* Clear WFI global state.  Do this before finding about new
3528          threads and inferiors, and setting the current inferior.
3529          Otherwise we would clear the proceed status of the current
3530          inferior when we want its stop_soon state to be preserved
3531          (see notice_new_inferior).  */
3532       init_wait_for_inferior ();
3533
3534       /* In non-stop, we will either get an "OK", meaning that there
3535          are no stopped threads at this time; or, a regular stop
3536          reply.  In the latter case, there may be more than one thread
3537          stopped --- we pull them all out using the vStopped
3538          mechanism.  */
3539       if (strcmp (rs->buf, "OK") != 0)
3540         {
3541           struct notif_client *notif = &notif_client_stop;
3542
3543           /* remote_notif_get_pending_replies acks this one, and gets
3544              the rest out.  */
3545           notif_client_stop.pending_event
3546             = remote_notif_parse (notif, rs->buf);
3547           remote_notif_get_pending_events (notif);
3548
3549           /* Make sure that threads that were stopped remain
3550              stopped.  */
3551           iterate_over_threads (set_stop_requested_callback, NULL);
3552         }
3553
3554       if (target_can_async_p ())
3555         target_async (inferior_event_handler, 0);
3556
3557       if (thread_count () == 0)
3558         {
3559           if (!extended_p)
3560             error (_("The target is not running (try extended-remote?)"));
3561
3562           /* We're connected, but not running.  Drop out before we
3563              call start_remote.  */
3564           rs->starting_up = 0;
3565           return;
3566         }
3567
3568       /* Let the stub know that we want it to return the thread.  */
3569
3570       /* Force the stub to choose a thread.  */
3571       set_general_thread (null_ptid);
3572
3573       /* Query it.  */
3574       inferior_ptid = remote_current_thread (minus_one_ptid);
3575       if (ptid_equal (inferior_ptid, minus_one_ptid))
3576         error (_("remote didn't report the current thread in non-stop mode"));
3577
3578       get_offsets ();           /* Get text, data & bss offsets.  */
3579
3580       /* In non-stop mode, any cached wait status will be stored in
3581          the stop reply queue.  */
3582       gdb_assert (wait_status == NULL);
3583
3584       /* Report all signals during attach/startup.  */
3585       remote_pass_signals (0, NULL);
3586     }
3587
3588   /* If we connected to a live target, do some additional setup.  */
3589   if (target_has_execution)
3590     {
3591       if (exec_bfd)     /* No use without an exec file.  */
3592         remote_check_symbols ();
3593     }
3594
3595   /* Possibly the target has been engaged in a trace run started
3596      previously; find out where things are at.  */
3597   if (remote_get_trace_status (current_trace_status ()) != -1)
3598     {
3599       struct uploaded_tp *uploaded_tps = NULL;
3600
3601       if (current_trace_status ()->running)
3602         printf_filtered (_("Trace is already running on the target.\n"));
3603
3604       remote_upload_tracepoints (&uploaded_tps);
3605
3606       merge_uploaded_tracepoints (&uploaded_tps);
3607     }
3608
3609   /* The thread and inferior lists are now synchronized with the
3610      target, our symbols have been relocated, and we're merged the
3611      target's tracepoints with ours.  We're done with basic start
3612      up.  */
3613   rs->starting_up = 0;
3614
3615   /* If breakpoints are global, insert them now.  */
3616   if (gdbarch_has_global_breakpoints (target_gdbarch ())
3617       && breakpoints_always_inserted_mode ())
3618     insert_breakpoints ();
3619 }
3620
3621 /* Open a connection to a remote debugger.
3622    NAME is the filename used for communication.  */
3623
3624 static void
3625 remote_open (char *name, int from_tty)
3626 {
3627   remote_open_1 (name, from_tty, &remote_ops, 0);
3628 }
3629
3630 /* Open a connection to a remote debugger using the extended
3631    remote gdb protocol.  NAME is the filename used for communication.  */
3632
3633 static void
3634 extended_remote_open (char *name, int from_tty)
3635 {
3636   remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
3637 }
3638
3639 /* Generic code for opening a connection to a remote target.  */
3640
3641 static void
3642 init_all_packet_configs (void)
3643 {
3644   int i;
3645
3646   for (i = 0; i < PACKET_MAX; i++)
3647     update_packet_config (&remote_protocol_packets[i]);
3648 }
3649
3650 /* Symbol look-up.  */
3651
3652 static void
3653 remote_check_symbols (void)
3654 {
3655   struct remote_state *rs = get_remote_state ();
3656   char *msg, *reply, *tmp;
3657   struct minimal_symbol *sym;
3658   int end;
3659
3660   /* The remote side has no concept of inferiors that aren't running
3661      yet, it only knows about running processes.  If we're connected
3662      but our current inferior is not running, we should not invite the
3663      remote target to request symbol lookups related to its
3664      (unrelated) current process.  */
3665   if (!target_has_execution)
3666     return;
3667
3668   if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
3669     return;
3670
3671   /* Make sure the remote is pointing at the right process.  Note
3672      there's no way to select "no process".  */
3673   set_general_process ();
3674
3675   /* Allocate a message buffer.  We can't reuse the input buffer in RS,
3676      because we need both at the same time.  */
3677   msg = alloca (get_remote_packet_size ());
3678
3679   /* Invite target to request symbol lookups.  */
3680
3681   putpkt ("qSymbol::");
3682   getpkt (&rs->buf, &rs->buf_size, 0);
3683   packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
3684   reply = rs->buf;
3685
3686   while (strncmp (reply, "qSymbol:", 8) == 0)
3687     {
3688       tmp = &reply[8];
3689       end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
3690       msg[end] = '\0';
3691       sym = lookup_minimal_symbol (msg, NULL, NULL);
3692       if (sym == NULL)
3693         xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
3694       else
3695         {
3696           int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
3697           CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
3698
3699           /* If this is a function address, return the start of code
3700              instead of any data function descriptor.  */
3701           sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
3702                                                          sym_addr,
3703                                                          &current_target);
3704
3705           xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
3706                      phex_nz (sym_addr, addr_size), &reply[8]);
3707         }
3708   
3709       putpkt (msg);
3710       getpkt (&rs->buf, &rs->buf_size, 0);
3711       reply = rs->buf;
3712     }
3713 }
3714
3715 static struct serial *
3716 remote_serial_open (char *name)
3717 {
3718   static int udp_warning = 0;
3719
3720   /* FIXME: Parsing NAME here is a hack.  But we want to warn here instead
3721      of in ser-tcp.c, because it is the remote protocol assuming that the
3722      serial connection is reliable and not the serial connection promising
3723      to be.  */
3724   if (!udp_warning && strncmp (name, "udp:", 4) == 0)
3725     {
3726       warning (_("The remote protocol may be unreliable over UDP.\n"
3727                  "Some events may be lost, rendering further debugging "
3728                  "impossible."));
3729       udp_warning = 1;
3730     }
3731
3732   return serial_open (name);
3733 }
3734
3735 /* Inform the target of our permission settings.  The permission flags
3736    work without this, but if the target knows the settings, it can do
3737    a couple things.  First, it can add its own check, to catch cases
3738    that somehow manage to get by the permissions checks in target
3739    methods.  Second, if the target is wired to disallow particular
3740    settings (for instance, a system in the field that is not set up to
3741    be able to stop at a breakpoint), it can object to any unavailable
3742    permissions.  */
3743
3744 void
3745 remote_set_permissions (void)
3746 {
3747   struct remote_state *rs = get_remote_state ();
3748
3749   xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
3750              "WriteReg:%x;WriteMem:%x;"
3751              "InsertBreak:%x;InsertTrace:%x;"
3752              "InsertFastTrace:%x;Stop:%x",
3753              may_write_registers, may_write_memory,
3754              may_insert_breakpoints, may_insert_tracepoints,
3755              may_insert_fast_tracepoints, may_stop);
3756   putpkt (rs->buf);
3757   getpkt (&rs->buf, &rs->buf_size, 0);
3758
3759   /* If the target didn't like the packet, warn the user.  Do not try
3760      to undo the user's settings, that would just be maddening.  */
3761   if (strcmp (rs->buf, "OK") != 0)
3762     warning (_("Remote refused setting permissions with: %s"), rs->buf);
3763 }
3764
3765 /* This type describes each known response to the qSupported
3766    packet.  */
3767 struct protocol_feature
3768 {
3769   /* The name of this protocol feature.  */
3770   const char *name;
3771
3772   /* The default for this protocol feature.  */
3773   enum packet_support default_support;
3774
3775   /* The function to call when this feature is reported, or after
3776      qSupported processing if the feature is not supported.
3777      The first argument points to this structure.  The second
3778      argument indicates whether the packet requested support be
3779      enabled, disabled, or probed (or the default, if this function
3780      is being called at the end of processing and this feature was
3781      not reported).  The third argument may be NULL; if not NULL, it
3782      is a NUL-terminated string taken from the packet following
3783      this feature's name and an equals sign.  */
3784   void (*func) (const struct protocol_feature *, enum packet_support,
3785                 const char *);
3786
3787   /* The corresponding packet for this feature.  Only used if
3788      FUNC is remote_supported_packet.  */
3789   int packet;
3790 };
3791
3792 static void
3793 remote_supported_packet (const struct protocol_feature *feature,
3794                          enum packet_support support,
3795                          const char *argument)
3796 {
3797   if (argument)
3798     {
3799       warning (_("Remote qSupported response supplied an unexpected value for"
3800                  " \"%s\"."), feature->name);
3801       return;
3802     }
3803
3804   if (remote_protocol_packets[feature->packet].support
3805       == PACKET_SUPPORT_UNKNOWN)
3806     remote_protocol_packets[feature->packet].support = support;
3807 }
3808
3809 static void
3810 remote_packet_size (const struct protocol_feature *feature,
3811                     enum packet_support support, const char *value)
3812 {
3813   struct remote_state *rs = get_remote_state ();
3814
3815   int packet_size;
3816   char *value_end;
3817
3818   if (support != PACKET_ENABLE)
3819     return;
3820
3821   if (value == NULL || *value == '\0')
3822     {
3823       warning (_("Remote target reported \"%s\" without a size."),
3824                feature->name);
3825       return;
3826     }
3827
3828   errno = 0;
3829   packet_size = strtol (value, &value_end, 16);
3830   if (errno != 0 || *value_end != '\0' || packet_size < 0)
3831     {
3832       warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
3833                feature->name, value);
3834       return;
3835     }
3836
3837   if (packet_size > MAX_REMOTE_PACKET_SIZE)
3838     {
3839       warning (_("limiting remote suggested packet size (%d bytes) to %d"),
3840                packet_size, MAX_REMOTE_PACKET_SIZE);
3841       packet_size = MAX_REMOTE_PACKET_SIZE;
3842     }
3843
3844   /* Record the new maximum packet size.  */
3845   rs->explicit_packet_size = packet_size;
3846 }
3847
3848 static void
3849 remote_multi_process_feature (const struct protocol_feature *feature,
3850                               enum packet_support support, const char *value)
3851 {
3852   struct remote_state *rs = get_remote_state ();
3853
3854   rs->multi_process_aware = (support == PACKET_ENABLE);
3855 }
3856
3857 static void
3858 remote_non_stop_feature (const struct protocol_feature *feature,
3859                               enum packet_support support, const char *value)
3860 {
3861   struct remote_state *rs = get_remote_state ();
3862
3863   rs->non_stop_aware = (support == PACKET_ENABLE);
3864 }
3865
3866 static void
3867 remote_cond_tracepoint_feature (const struct protocol_feature *feature,
3868                                        enum packet_support support,
3869                                        const char *value)
3870 {
3871   struct remote_state *rs = get_remote_state ();
3872
3873   rs->cond_tracepoints = (support == PACKET_ENABLE);
3874 }
3875
3876 static void
3877 remote_cond_breakpoint_feature (const struct protocol_feature *feature,
3878                                 enum packet_support support,
3879                                 const char *value)
3880 {
3881   struct remote_state *rs = get_remote_state ();
3882
3883   rs->cond_breakpoints = (support == PACKET_ENABLE);
3884 }
3885
3886 static void
3887 remote_breakpoint_commands_feature (const struct protocol_feature *feature,
3888                                     enum packet_support support,
3889                                     const char *value)
3890 {
3891   struct remote_state *rs = get_remote_state ();
3892
3893   rs->breakpoint_commands = (support == PACKET_ENABLE);
3894 }
3895
3896 static void
3897 remote_fast_tracepoint_feature (const struct protocol_feature *feature,
3898                                 enum packet_support support,
3899                                 const char *value)
3900 {
3901   struct remote_state *rs = get_remote_state ();
3902
3903   rs->fast_tracepoints = (support == PACKET_ENABLE);
3904 }
3905
3906 static void
3907 remote_static_tracepoint_feature (const struct protocol_feature *feature,
3908                                   enum packet_support support,
3909                                   const char *value)
3910 {
3911   struct remote_state *rs = get_remote_state ();
3912
3913   rs->static_tracepoints = (support == PACKET_ENABLE);
3914 }
3915
3916 static void
3917 remote_install_in_trace_feature (const struct protocol_feature *feature,
3918                                  enum packet_support support,
3919                                  const char *value)
3920 {
3921   struct remote_state *rs = get_remote_state ();
3922
3923   rs->install_in_trace = (support == PACKET_ENABLE);
3924 }
3925
3926 static void
3927 remote_disconnected_tracing_feature (const struct protocol_feature *feature,
3928                                      enum packet_support support,
3929                                      const char *value)
3930 {
3931   struct remote_state *rs = get_remote_state ();
3932
3933   rs->disconnected_tracing = (support == PACKET_ENABLE);
3934 }
3935
3936 static void
3937 remote_enable_disable_tracepoint_feature (const struct protocol_feature *feature,
3938                                           enum packet_support support,
3939                                           const char *value)
3940 {
3941   struct remote_state *rs = get_remote_state ();
3942
3943   rs->enable_disable_tracepoints = (support == PACKET_ENABLE);
3944 }
3945
3946 static void
3947 remote_string_tracing_feature (const struct protocol_feature *feature,
3948                                enum packet_support support,
3949                                const char *value)
3950 {
3951   struct remote_state *rs = get_remote_state ();
3952
3953   rs->string_tracing = (support == PACKET_ENABLE);
3954 }
3955
3956 static void
3957 remote_augmented_libraries_svr4_read_feature
3958   (const struct protocol_feature *feature,
3959    enum packet_support support, const char *value)
3960 {
3961   struct remote_state *rs = get_remote_state ();
3962
3963   rs->augmented_libraries_svr4_read = (support == PACKET_ENABLE);
3964 }
3965
3966 static struct protocol_feature remote_protocol_features[] = {
3967   { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
3968   { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
3969     PACKET_qXfer_auxv },
3970   { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
3971     PACKET_qXfer_features },
3972   { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
3973     PACKET_qXfer_libraries },
3974   { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
3975     PACKET_qXfer_libraries_svr4 },
3976   { "augmented-libraries-svr4-read", PACKET_DISABLE,
3977     remote_augmented_libraries_svr4_read_feature, -1 },
3978   { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
3979     PACKET_qXfer_memory_map },
3980   { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
3981     PACKET_qXfer_spu_read },
3982   { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
3983     PACKET_qXfer_spu_write },
3984   { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
3985     PACKET_qXfer_osdata },
3986   { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
3987     PACKET_qXfer_threads },
3988   { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
3989     PACKET_qXfer_traceframe_info },
3990   { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
3991     PACKET_QPassSignals },
3992   { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
3993     PACKET_QProgramSignals },
3994   { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
3995     PACKET_QStartNoAckMode },
3996   { "multiprocess", PACKET_DISABLE, remote_multi_process_feature, -1 },
3997   { "QNonStop", PACKET_DISABLE, remote_non_stop_feature, -1 },
3998   { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
3999     PACKET_qXfer_siginfo_read },
4000   { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4001     PACKET_qXfer_siginfo_write },
4002   { "ConditionalTracepoints", PACKET_DISABLE, remote_cond_tracepoint_feature,
4003     PACKET_ConditionalTracepoints },
4004   { "ConditionalBreakpoints", PACKET_DISABLE, remote_cond_breakpoint_feature,
4005     PACKET_ConditionalBreakpoints },
4006   { "BreakpointCommands", PACKET_DISABLE, remote_breakpoint_commands_feature,
4007     PACKET_BreakpointCommands },
4008   { "FastTracepoints", PACKET_DISABLE, remote_fast_tracepoint_feature,
4009     PACKET_FastTracepoints },
4010   { "StaticTracepoints", PACKET_DISABLE, remote_static_tracepoint_feature,
4011     PACKET_StaticTracepoints },
4012   {"InstallInTrace", PACKET_DISABLE, remote_install_in_trace_feature,
4013    PACKET_InstallInTrace},
4014   { "DisconnectedTracing", PACKET_DISABLE, remote_disconnected_tracing_feature,
4015     -1 },
4016   { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4017     PACKET_bc },
4018   { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4019     PACKET_bs },
4020   { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4021     PACKET_TracepointSource },
4022   { "QAllow", PACKET_DISABLE, remote_supported_packet,
4023     PACKET_QAllow },
4024   { "EnableDisableTracepoints", PACKET_DISABLE,
4025     remote_enable_disable_tracepoint_feature, -1 },
4026   { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4027     PACKET_qXfer_fdpic },
4028   { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4029     PACKET_qXfer_uib },
4030   { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4031     PACKET_QDisableRandomization },
4032   { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
4033   { "QTBuffer:size", PACKET_DISABLE,
4034     remote_supported_packet, PACKET_QTBuffer_size},
4035   { "tracenz", PACKET_DISABLE,
4036     remote_string_tracing_feature, -1 },
4037   { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4038   { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
4039   { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
4040     PACKET_qXfer_btrace }
4041 };
4042
4043 static char *remote_support_xml;
4044
4045 /* Register string appended to "xmlRegisters=" in qSupported query.  */
4046
4047 void
4048 register_remote_support_xml (const char *xml)
4049 {
4050 #if defined(HAVE_LIBEXPAT)
4051   if (remote_support_xml == NULL)
4052     remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
4053   else
4054     {
4055       char *copy = xstrdup (remote_support_xml + 13);
4056       char *p = strtok (copy, ",");
4057
4058       do
4059         {
4060           if (strcmp (p, xml) == 0)
4061             {
4062               /* already there */
4063               xfree (copy);
4064               return;
4065             }
4066         }
4067       while ((p = strtok (NULL, ",")) != NULL);
4068       xfree (copy);
4069
4070       remote_support_xml = reconcat (remote_support_xml,
4071                                      remote_support_xml, ",", xml,
4072                                      (char *) NULL);
4073     }
4074 #endif
4075 }
4076
4077 static char *
4078 remote_query_supported_append (char *msg, const char *append)
4079 {
4080   if (msg)
4081     return reconcat (msg, msg, ";", append, (char *) NULL);
4082   else
4083     return xstrdup (append);
4084 }
4085
4086 static void
4087 remote_query_supported (void)
4088 {
4089   struct remote_state *rs = get_remote_state ();
4090   char *next;
4091   int i;
4092   unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4093
4094   /* The packet support flags are handled differently for this packet
4095      than for most others.  We treat an error, a disabled packet, and
4096      an empty response identically: any features which must be reported
4097      to be used will be automatically disabled.  An empty buffer
4098      accomplishes this, since that is also the representation for a list
4099      containing no features.  */
4100
4101   rs->buf[0] = 0;
4102   if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
4103     {
4104       char *q = NULL;
4105       struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
4106
4107       q = remote_query_supported_append (q, "multiprocess+");
4108
4109       if (remote_support_xml)
4110         q = remote_query_supported_append (q, remote_support_xml);
4111
4112       q = remote_query_supported_append (q, "qRelocInsn+");
4113
4114       q = reconcat (q, "qSupported:", q, (char *) NULL);
4115       putpkt (q);
4116
4117       do_cleanups (old_chain);
4118
4119       getpkt (&rs->buf, &rs->buf_size, 0);
4120
4121       /* If an error occured, warn, but do not return - just reset the
4122          buffer to empty and go on to disable features.  */
4123       if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4124           == PACKET_ERROR)
4125         {
4126           warning (_("Remote failure reply: %s"), rs->buf);
4127           rs->buf[0] = 0;
4128         }
4129     }
4130
4131   memset (seen, 0, sizeof (seen));
4132
4133   next = rs->buf;
4134   while (*next)
4135     {
4136       enum packet_support is_supported;
4137       char *p, *end, *name_end, *value;
4138
4139       /* First separate out this item from the rest of the packet.  If
4140          there's another item after this, we overwrite the separator
4141          (terminated strings are much easier to work with).  */
4142       p = next;
4143       end = strchr (p, ';');
4144       if (end == NULL)
4145         {
4146           end = p + strlen (p);
4147           next = end;
4148         }
4149       else
4150         {
4151           *end = '\0';
4152           next = end + 1;
4153
4154           if (end == p)
4155             {
4156               warning (_("empty item in \"qSupported\" response"));
4157               continue;
4158             }
4159         }
4160
4161       name_end = strchr (p, '=');
4162       if (name_end)
4163         {
4164           /* This is a name=value entry.  */
4165           is_supported = PACKET_ENABLE;
4166           value = name_end + 1;
4167           *name_end = '\0';
4168         }
4169       else
4170         {
4171           value = NULL;
4172           switch (end[-1])
4173             {
4174             case '+':
4175               is_supported = PACKET_ENABLE;
4176               break;
4177
4178             case '-':
4179               is_supported = PACKET_DISABLE;
4180               break;
4181
4182             case '?':
4183               is_supported = PACKET_SUPPORT_UNKNOWN;
4184               break;
4185
4186             default:
4187               warning (_("unrecognized item \"%s\" "
4188                          "in \"qSupported\" response"), p);
4189               continue;
4190             }
4191           end[-1] = '\0';
4192         }
4193
4194       for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4195         if (strcmp (remote_protocol_features[i].name, p) == 0)
4196           {
4197             const struct protocol_feature *feature;
4198
4199             seen[i] = 1;
4200             feature = &remote_protocol_features[i];
4201             feature->func (feature, is_supported, value);
4202             break;
4203           }
4204     }
4205
4206   /* If we increased the packet size, make sure to increase the global
4207      buffer size also.  We delay this until after parsing the entire
4208      qSupported packet, because this is the same buffer we were
4209      parsing.  */
4210   if (rs->buf_size < rs->explicit_packet_size)
4211     {
4212       rs->buf_size = rs->explicit_packet_size;
4213       rs->buf = xrealloc (rs->buf, rs->buf_size);
4214     }
4215
4216   /* Handle the defaults for unmentioned features.  */
4217   for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4218     if (!seen[i])
4219       {
4220         const struct protocol_feature *feature;
4221
4222         feature = &remote_protocol_features[i];
4223         feature->func (feature, feature->default_support, NULL);
4224       }
4225 }
4226
4227 /* Remove any of the remote.c targets from target stack.  Upper targets depend
4228    on it so remove them first.  */
4229
4230 static void
4231 remote_unpush_target (void)
4232 {
4233   pop_all_targets_above (process_stratum - 1);
4234 }
4235
4236 static void
4237 remote_open_1 (char *name, int from_tty,
4238                struct target_ops *target, int extended_p)
4239 {
4240   struct remote_state *rs = get_remote_state ();
4241
4242   if (name == 0)
4243     error (_("To open a remote debug connection, you need to specify what\n"
4244            "serial device is attached to the remote system\n"
4245            "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
4246
4247   /* See FIXME above.  */
4248   if (!target_async_permitted)
4249     wait_forever_enabled_p = 1;
4250
4251   /* If we're connected to a running target, target_preopen will kill it.
4252      Ask this question first, before target_preopen has a chance to kill
4253      anything.  */
4254   if (remote_desc != NULL && !have_inferiors ())
4255     {
4256       if (from_tty
4257           && !query (_("Already connected to a remote target.  Disconnect? ")))
4258         error (_("Still connected."));
4259     }
4260
4261   /* Here the possibly existing remote target gets unpushed.  */
4262   target_preopen (from_tty);
4263
4264   /* Make sure we send the passed signals list the next time we resume.  */
4265   xfree (last_pass_packet);
4266   last_pass_packet = NULL;
4267
4268   /* Make sure we send the program signals list the next time we
4269      resume.  */
4270   xfree (last_program_signals_packet);
4271   last_program_signals_packet = NULL;
4272
4273   remote_fileio_reset ();
4274   reopen_exec_file ();
4275   reread_symbols ();
4276
4277   remote_desc = remote_serial_open (name);
4278   if (!remote_desc)
4279     perror_with_name (name);
4280
4281   if (baud_rate != -1)
4282     {
4283       if (serial_setbaudrate (remote_desc, baud_rate))
4284         {
4285           /* The requested speed could not be set.  Error out to
4286              top level after closing remote_desc.  Take care to
4287              set remote_desc to NULL to avoid closing remote_desc
4288              more than once.  */
4289           serial_close (remote_desc);
4290           remote_desc = NULL;
4291           perror_with_name (name);
4292         }
4293     }
4294
4295   serial_raw (remote_desc);
4296
4297   /* If there is something sitting in the buffer we might take it as a
4298      response to a command, which would be bad.  */
4299   serial_flush_input (remote_desc);
4300
4301   if (from_tty)
4302     {
4303       puts_filtered ("Remote debugging using ");
4304       puts_filtered (name);
4305       puts_filtered ("\n");
4306     }
4307   push_target (target);         /* Switch to using remote target now.  */
4308
4309   /* Register extra event sources in the event loop.  */
4310   remote_async_inferior_event_token
4311     = create_async_event_handler (remote_async_inferior_event_handler,
4312                                   NULL);
4313   remote_notif_register_async_event_handler ();
4314
4315   /* Reset the target state; these things will be queried either by
4316      remote_query_supported or as they are needed.  */
4317   init_all_packet_configs ();
4318   rs->cached_wait_status = 0;
4319   rs->explicit_packet_size = 0;
4320   rs->noack_mode = 0;
4321   rs->multi_process_aware = 0;
4322   rs->extended = extended_p;
4323   rs->non_stop_aware = 0;
4324   rs->waiting_for_stop_reply = 0;
4325   rs->ctrlc_pending_p = 0;
4326
4327   general_thread = not_sent_ptid;
4328   continue_thread = not_sent_ptid;
4329   remote_traceframe_number = -1;
4330
4331   /* Probe for ability to use "ThreadInfo" query, as required.  */
4332   use_threadinfo_query = 1;
4333   use_threadextra_query = 1;
4334
4335   if (target_async_permitted)
4336     {
4337       /* With this target we start out by owning the terminal.  */
4338       remote_async_terminal_ours_p = 1;
4339
4340       /* FIXME: cagney/1999-09-23: During the initial connection it is
4341          assumed that the target is already ready and able to respond to
4342          requests.  Unfortunately remote_start_remote() eventually calls
4343          wait_for_inferior() with no timeout.  wait_forever_enabled_p gets
4344          around this.  Eventually a mechanism that allows
4345          wait_for_inferior() to expect/get timeouts will be
4346          implemented.  */
4347       wait_forever_enabled_p = 0;
4348     }
4349
4350   /* First delete any symbols previously loaded from shared libraries.  */
4351   no_shared_libraries (NULL, 0);
4352
4353   /* Start afresh.  */
4354   init_thread_list ();
4355
4356   /* Start the remote connection.  If error() or QUIT, discard this
4357      target (we'd otherwise be in an inconsistent state) and then
4358      propogate the error on up the exception chain.  This ensures that
4359      the caller doesn't stumble along blindly assuming that the
4360      function succeeded.  The CLI doesn't have this problem but other
4361      UI's, such as MI do.
4362
4363      FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
4364      this function should return an error indication letting the
4365      caller restore the previous state.  Unfortunately the command
4366      ``target remote'' is directly wired to this function making that
4367      impossible.  On a positive note, the CLI side of this problem has
4368      been fixed - the function set_cmd_context() makes it possible for
4369      all the ``target ....'' commands to share a common callback
4370      function.  See cli-dump.c.  */
4371   {
4372     volatile struct gdb_exception ex;
4373
4374     TRY_CATCH (ex, RETURN_MASK_ALL)
4375       {
4376         remote_start_remote (from_tty, target, extended_p);
4377       }
4378     if (ex.reason < 0)
4379       {
4380         /* Pop the partially set up target - unless something else did
4381            already before throwing the exception.  */
4382         if (remote_desc != NULL)
4383           remote_unpush_target ();
4384         if (target_async_permitted)
4385           wait_forever_enabled_p = 1;
4386         throw_exception (ex);
4387       }
4388   }
4389
4390   if (target_async_permitted)
4391     wait_forever_enabled_p = 1;
4392 }
4393
4394 /* This takes a program previously attached to and detaches it.  After
4395    this is done, GDB can be used to debug some other program.  We
4396    better not have left any breakpoints in the target program or it'll
4397    die when it hits one.  */
4398
4399 static void
4400 remote_detach_1 (char *args, int from_tty, int extended)
4401 {
4402   int pid = ptid_get_pid (inferior_ptid);
4403   struct remote_state *rs = get_remote_state ();
4404
4405   if (args)
4406     error (_("Argument given to \"detach\" when remotely debugging."));
4407
4408   if (!target_has_execution)
4409     error (_("No process to detach from."));
4410
4411   if (from_tty)
4412     {
4413       char *exec_file = get_exec_file (0);
4414       if (exec_file == NULL)
4415         exec_file = "";
4416       printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
4417                          target_pid_to_str (pid_to_ptid (pid)));
4418       gdb_flush (gdb_stdout);
4419     }
4420
4421   /* Tell the remote target to detach.  */
4422   if (remote_multi_process_p (rs))
4423     xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
4424   else
4425     strcpy (rs->buf, "D");
4426
4427   putpkt (rs->buf);
4428   getpkt (&rs->buf, &rs->buf_size, 0);
4429
4430   if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
4431     ;
4432   else if (rs->buf[0] == '\0')
4433     error (_("Remote doesn't know how to detach"));
4434   else
4435     error (_("Can't detach process."));
4436
4437   if (from_tty && !extended)
4438     puts_filtered (_("Ending remote debugging.\n"));
4439
4440   target_mourn_inferior ();
4441 }
4442
4443 static void
4444 remote_detach (struct target_ops *ops, char *args, int from_tty)
4445 {
4446   remote_detach_1 (args, from_tty, 0);
4447 }
4448
4449 static void
4450 extended_remote_detach (struct target_ops *ops, char *args, int from_tty)
4451 {
4452   remote_detach_1 (args, from_tty, 1);
4453 }
4454
4455 /* Same as remote_detach, but don't send the "D" packet; just disconnect.  */
4456
4457 static void
4458 remote_disconnect (struct target_ops *target, char *args, int from_tty)
4459 {
4460   if (args)
4461     error (_("Argument given to \"disconnect\" when remotely debugging."));
4462
4463   /* Make sure we unpush even the extended remote targets; mourn
4464      won't do it.  So call remote_mourn_1 directly instead of
4465      target_mourn_inferior.  */
4466   remote_mourn_1 (target);
4467
4468   if (from_tty)
4469     puts_filtered ("Ending remote debugging.\n");
4470 }
4471
4472 /* Attach to the process specified by ARGS.  If FROM_TTY is non-zero,
4473    be chatty about it.  */
4474
4475 static void
4476 extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
4477 {
4478   struct remote_state *rs = get_remote_state ();
4479   int pid;
4480   char *wait_status = NULL;
4481
4482   pid = parse_pid_to_attach (args);
4483
4484   /* Remote PID can be freely equal to getpid, do not check it here the same
4485      way as in other targets.  */
4486
4487   if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4488     error (_("This target does not support attaching to a process"));
4489
4490   if (from_tty)
4491     {
4492       char *exec_file = get_exec_file (0);
4493
4494       if (exec_file)
4495         printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
4496                            target_pid_to_str (pid_to_ptid (pid)));
4497       else
4498         printf_unfiltered (_("Attaching to %s\n"),
4499                            target_pid_to_str (pid_to_ptid (pid)));
4500
4501       gdb_flush (gdb_stdout);
4502     }
4503
4504   xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
4505   putpkt (rs->buf);
4506   getpkt (&rs->buf, &rs->buf_size, 0);
4507
4508   if (packet_ok (rs->buf,
4509                  &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
4510     {
4511       if (!non_stop)
4512         {
4513           /* Save the reply for later.  */
4514           wait_status = alloca (strlen (rs->buf) + 1);
4515           strcpy (wait_status, rs->buf);
4516         }
4517       else if (strcmp (rs->buf, "OK") != 0)
4518         error (_("Attaching to %s failed with: %s"),
4519                target_pid_to_str (pid_to_ptid (pid)),
4520                rs->buf);
4521     }
4522   else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4523     error (_("This target does not support attaching to a process"));
4524   else
4525     error (_("Attaching to %s failed"),
4526            target_pid_to_str (pid_to_ptid (pid)));
4527
4528   set_current_inferior (remote_add_inferior (0, pid, 1));
4529
4530   inferior_ptid = pid_to_ptid (pid);
4531
4532   if (non_stop)
4533     {
4534       struct thread_info *thread;
4535
4536       /* Get list of threads.  */
4537       remote_threads_info (target);
4538
4539       thread = first_thread_of_process (pid);
4540       if (thread)
4541         inferior_ptid = thread->ptid;
4542       else
4543         inferior_ptid = pid_to_ptid (pid);
4544
4545       /* Invalidate our notion of the remote current thread.  */
4546       record_currthread (minus_one_ptid);
4547     }
4548   else
4549     {
4550       /* Now, if we have thread information, update inferior_ptid.  */
4551       inferior_ptid = remote_current_thread (inferior_ptid);
4552
4553       /* Add the main thread to the thread list.  */
4554       add_thread_silent (inferior_ptid);
4555     }
4556
4557   /* Next, if the target can specify a description, read it.  We do
4558      this before anything involving memory or registers.  */
4559   target_find_description ();
4560
4561   if (!non_stop)
4562     {
4563       /* Use the previously fetched status.  */
4564       gdb_assert (wait_status != NULL);
4565
4566       if (target_can_async_p ())
4567         {
4568           struct notif_event *reply
4569             =  remote_notif_parse (&notif_client_stop, wait_status);
4570
4571           push_stop_reply ((struct stop_reply *) reply);
4572
4573           target_async (inferior_event_handler, 0);
4574         }
4575       else
4576         {
4577           gdb_assert (wait_status != NULL);
4578           strcpy (rs->buf, wait_status);
4579           rs->cached_wait_status = 1;
4580         }
4581     }
4582   else
4583     gdb_assert (wait_status == NULL);
4584 }
4585
4586 static void
4587 extended_remote_attach (struct target_ops *ops, char *args, int from_tty)
4588 {
4589   extended_remote_attach_1 (ops, args, from_tty);
4590 }
4591
4592 /* Convert hex digit A to a number.  */
4593
4594 static int
4595 fromhex (int a)
4596 {
4597   if (a >= '0' && a <= '9')
4598     return a - '0';
4599   else if (a >= 'a' && a <= 'f')
4600     return a - 'a' + 10;
4601   else if (a >= 'A' && a <= 'F')
4602     return a - 'A' + 10;
4603   else
4604     error (_("Reply contains invalid hex digit %d"), a);
4605 }
4606
4607 int
4608 hex2bin (const char *hex, gdb_byte *bin, int count)
4609 {
4610   int i;
4611
4612   for (i = 0; i < count; i++)
4613     {
4614       if (hex[0] == 0 || hex[1] == 0)
4615         {
4616           /* Hex string is short, or of uneven length.
4617              Return the count that has been converted so far.  */
4618           return i;
4619         }
4620       *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
4621       hex += 2;
4622     }
4623   return i;
4624 }
4625
4626 /* Convert number NIB to a hex digit.  */
4627
4628 static int
4629 tohex (int nib)
4630 {
4631   if (nib < 10)
4632     return '0' + nib;
4633   else
4634     return 'a' + nib - 10;
4635 }
4636
4637 int
4638 bin2hex (const gdb_byte *bin, char *hex, int count)
4639 {
4640   int i;
4641
4642   /* May use a length, or a nul-terminated string as input.  */
4643   if (count == 0)
4644     count = strlen ((char *) bin);
4645
4646   for (i = 0; i < count; i++)
4647     {
4648       *hex++ = tohex ((*bin >> 4) & 0xf);
4649       *hex++ = tohex (*bin++ & 0xf);
4650     }
4651   *hex = 0;
4652   return i;
4653 }
4654 \f
4655 /* Check for the availability of vCont.  This function should also check
4656    the response.  */
4657
4658 static void
4659 remote_vcont_probe (struct remote_state *rs)
4660 {
4661   char *buf;
4662
4663   strcpy (rs->buf, "vCont?");
4664   putpkt (rs->buf);
4665   getpkt (&rs->buf, &rs->buf_size, 0);
4666   buf = rs->buf;
4667
4668   /* Make sure that the features we assume are supported.  */
4669   if (strncmp (buf, "vCont", 5) == 0)
4670     {
4671       char *p = &buf[5];
4672       int support_s, support_S, support_c, support_C;
4673
4674       support_s = 0;
4675       support_S = 0;
4676       support_c = 0;
4677       support_C = 0;
4678       rs->supports_vCont.t = 0;
4679       rs->supports_vCont.r = 0;
4680       while (p && *p == ';')
4681         {
4682           p++;
4683           if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
4684             support_s = 1;
4685           else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
4686             support_S = 1;
4687           else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
4688             support_c = 1;
4689           else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
4690             support_C = 1;
4691           else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
4692             rs->supports_vCont.t = 1;
4693           else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
4694             rs->supports_vCont.r = 1;
4695
4696           p = strchr (p, ';');
4697         }
4698
4699       /* If s, S, c, and C are not all supported, we can't use vCont.  Clearing
4700          BUF will make packet_ok disable the packet.  */
4701       if (!support_s || !support_S || !support_c || !support_C)
4702         buf[0] = 0;
4703     }
4704
4705   packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
4706 }
4707
4708 /* Helper function for building "vCont" resumptions.  Write a
4709    resumption to P.  ENDP points to one-passed-the-end of the buffer
4710    we're allowed to write to.  Returns BUF+CHARACTERS_WRITTEN.  The
4711    thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
4712    resumed thread should be single-stepped and/or signalled.  If PTID
4713    equals minus_one_ptid, then all threads are resumed; if PTID
4714    represents a process, then all threads of the process are resumed;
4715    the thread to be stepped and/or signalled is given in the global
4716    INFERIOR_PTID.  */
4717
4718 static char *
4719 append_resumption (char *p, char *endp,
4720                    ptid_t ptid, int step, enum gdb_signal siggnal)
4721 {
4722   struct remote_state *rs = get_remote_state ();
4723
4724   if (step && siggnal != GDB_SIGNAL_0)
4725     p += xsnprintf (p, endp - p, ";S%02x", siggnal);
4726   else if (step
4727            /* GDB is willing to range step.  */
4728            && use_range_stepping
4729            /* Target supports range stepping.  */
4730            && rs->supports_vCont.r
4731            /* We don't currently support range stepping multiple
4732               threads with a wildcard (though the protocol allows it,
4733               so stubs shouldn't make an active effort to forbid
4734               it).  */
4735            && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
4736     {
4737       struct thread_info *tp;
4738
4739       if (ptid_equal (ptid, minus_one_ptid))
4740         {
4741           /* If we don't know about the target thread's tid, then
4742              we're resuming magic_null_ptid (see caller).  */
4743           tp = find_thread_ptid (magic_null_ptid);
4744         }
4745       else
4746         tp = find_thread_ptid (ptid);
4747       gdb_assert (tp != NULL);
4748
4749       if (tp->control.may_range_step)
4750         {
4751           int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4752
4753           p += xsnprintf (p, endp - p, ";r%s,%s",
4754                           phex_nz (tp->control.step_range_start,
4755                                    addr_size),
4756                           phex_nz (tp->control.step_range_end,
4757                                    addr_size));
4758         }
4759       else
4760         p += xsnprintf (p, endp - p, ";s");
4761     }
4762   else if (step)
4763     p += xsnprintf (p, endp - p, ";s");
4764   else if (siggnal != GDB_SIGNAL_0)
4765     p += xsnprintf (p, endp - p, ";C%02x", siggnal);
4766   else
4767     p += xsnprintf (p, endp - p, ";c");
4768
4769   if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
4770     {
4771       ptid_t nptid;
4772
4773       /* All (-1) threads of process.  */
4774       nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
4775
4776       p += xsnprintf (p, endp - p, ":");
4777       p = write_ptid (p, endp, nptid);
4778     }
4779   else if (!ptid_equal (ptid, minus_one_ptid))
4780     {
4781       p += xsnprintf (p, endp - p, ":");
4782       p = write_ptid (p, endp, ptid);
4783     }
4784
4785   return p;
4786 }
4787
4788 /* Append a vCont continue-with-signal action for threads that have a
4789    non-zero stop signal.  */
4790
4791 static char *
4792 append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
4793 {
4794   struct thread_info *thread;
4795
4796   ALL_THREADS (thread)
4797     if (ptid_match (thread->ptid, ptid)
4798         && !ptid_equal (inferior_ptid, thread->ptid)
4799         && thread->suspend.stop_signal != GDB_SIGNAL_0
4800         && signal_pass_state (thread->suspend.stop_signal))
4801       {
4802         p = append_resumption (p, endp, thread->ptid,
4803                                0, thread->suspend.stop_signal);
4804         thread->suspend.stop_signal = GDB_SIGNAL_0;
4805       }
4806
4807   return p;
4808 }
4809
4810 /* Resume the remote inferior by using a "vCont" packet.  The thread
4811    to be resumed is PTID; STEP and SIGGNAL indicate whether the
4812    resumed thread should be single-stepped and/or signalled.  If PTID
4813    equals minus_one_ptid, then all threads are resumed; the thread to
4814    be stepped and/or signalled is given in the global INFERIOR_PTID.
4815    This function returns non-zero iff it resumes the inferior.
4816
4817    This function issues a strict subset of all possible vCont commands at the
4818    moment.  */
4819
4820 static int
4821 remote_vcont_resume (ptid_t ptid, int step, enum gdb_signal siggnal)
4822 {
4823   struct remote_state *rs = get_remote_state ();
4824   char *p;
4825   char *endp;
4826
4827   if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
4828     remote_vcont_probe (rs);
4829
4830   if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
4831     return 0;
4832
4833   p = rs->buf;
4834   endp = rs->buf + get_remote_packet_size ();
4835
4836   /* If we could generate a wider range of packets, we'd have to worry
4837      about overflowing BUF.  Should there be a generic
4838      "multi-part-packet" packet?  */
4839
4840   p += xsnprintf (p, endp - p, "vCont");
4841
4842   if (ptid_equal (ptid, magic_null_ptid))
4843     {
4844       /* MAGIC_NULL_PTID means that we don't have any active threads,
4845          so we don't have any TID numbers the inferior will
4846          understand.  Make sure to only send forms that do not specify
4847          a TID.  */
4848       append_resumption (p, endp, minus_one_ptid, step, siggnal);
4849     }
4850   else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
4851     {
4852       /* Resume all threads (of all processes, or of a single
4853          process), with preference for INFERIOR_PTID.  This assumes
4854          inferior_ptid belongs to the set of all threads we are about
4855          to resume.  */
4856       if (step || siggnal != GDB_SIGNAL_0)
4857         {
4858           /* Step inferior_ptid, with or without signal.  */
4859           p = append_resumption (p, endp, inferior_ptid, step, siggnal);
4860         }
4861
4862       /* Also pass down any pending signaled resumption for other
4863          threads not the current.  */
4864       p = append_pending_thread_resumptions (p, endp, ptid);
4865
4866       /* And continue others without a signal.  */
4867       append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
4868     }
4869   else
4870     {
4871       /* Scheduler locking; resume only PTID.  */
4872       append_resumption (p, endp, ptid, step, siggnal);
4873     }
4874
4875   gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
4876   putpkt (rs->buf);
4877
4878   if (non_stop)
4879     {
4880       /* In non-stop, the stub replies to vCont with "OK".  The stop
4881          reply will be reported asynchronously by means of a `%Stop'
4882          notification.  */
4883       getpkt (&rs->buf, &rs->buf_size, 0);
4884       if (strcmp (rs->buf, "OK") != 0)
4885         error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
4886     }
4887
4888   return 1;
4889 }
4890
4891 /* Tell the remote machine to resume.  */
4892
4893 static enum gdb_signal last_sent_signal = GDB_SIGNAL_0;
4894
4895 static int last_sent_step;
4896
4897 static void
4898 remote_resume (struct target_ops *ops,
4899                ptid_t ptid, int step, enum gdb_signal siggnal)
4900 {
4901   struct remote_state *rs = get_remote_state ();
4902   char *buf;
4903
4904   /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
4905      (explained in remote-notif.c:handle_notification) so
4906      remote_notif_process is not called.  We need find a place where
4907      it is safe to start a 'vNotif' sequence.  It is good to do it
4908      before resuming inferior, because inferior was stopped and no RSP
4909      traffic at that moment.  */
4910   if (!non_stop)
4911     remote_notif_process (&notif_client_stop);
4912
4913   last_sent_signal = siggnal;
4914   last_sent_step = step;
4915
4916   /* The vCont packet doesn't need to specify threads via Hc.  */
4917   /* No reverse support (yet) for vCont.  */
4918   if (execution_direction != EXEC_REVERSE)
4919     if (remote_vcont_resume (ptid, step, siggnal))
4920       goto done;
4921
4922   /* All other supported resume packets do use Hc, so set the continue
4923      thread.  */
4924   if (ptid_equal (ptid, minus_one_ptid))
4925     set_continue_thread (any_thread_ptid);
4926   else
4927     set_continue_thread (ptid);
4928
4929   buf = rs->buf;
4930   if (execution_direction == EXEC_REVERSE)
4931     {
4932       /* We don't pass signals to the target in reverse exec mode.  */
4933       if (info_verbose && siggnal != GDB_SIGNAL_0)
4934         warning (_(" - Can't pass signal %d to target in reverse: ignored."),
4935                  siggnal);
4936
4937       if (step 
4938           && remote_protocol_packets[PACKET_bs].support == PACKET_DISABLE)
4939         error (_("Remote reverse-step not supported."));
4940       if (!step
4941           && remote_protocol_packets[PACKET_bc].support == PACKET_DISABLE)
4942         error (_("Remote reverse-continue not supported."));
4943
4944       strcpy (buf, step ? "bs" : "bc");
4945     }
4946   else if (siggnal != GDB_SIGNAL_0)
4947     {
4948       buf[0] = step ? 'S' : 'C';
4949       buf[1] = tohex (((int) siggnal >> 4) & 0xf);
4950       buf[2] = tohex (((int) siggnal) & 0xf);
4951       buf[3] = '\0';
4952     }
4953   else
4954     strcpy (buf, step ? "s" : "c");
4955
4956   putpkt (buf);
4957
4958  done:
4959   /* We are about to start executing the inferior, let's register it
4960      with the event loop.  NOTE: this is the one place where all the
4961      execution commands end up.  We could alternatively do this in each
4962      of the execution commands in infcmd.c.  */
4963   /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
4964      into infcmd.c in order to allow inferior function calls to work
4965      NOT asynchronously.  */
4966   if (target_can_async_p ())
4967     target_async (inferior_event_handler, 0);
4968
4969   /* We've just told the target to resume.  The remote server will
4970      wait for the inferior to stop, and then send a stop reply.  In
4971      the mean time, we can't start another command/query ourselves
4972      because the stub wouldn't be ready to process it.  This applies
4973      only to the base all-stop protocol, however.  In non-stop (which
4974      only supports vCont), the stub replies with an "OK", and is
4975      immediate able to process further serial input.  */
4976   if (!non_stop)
4977     rs->waiting_for_stop_reply = 1;
4978 }
4979 \f
4980
4981 /* Set up the signal handler for SIGINT, while the target is
4982    executing, ovewriting the 'regular' SIGINT signal handler.  */
4983 static void
4984 async_initialize_sigint_signal_handler (void)
4985 {
4986   signal (SIGINT, async_handle_remote_sigint);
4987 }
4988
4989 /* Signal handler for SIGINT, while the target is executing.  */
4990 static void
4991 async_handle_remote_sigint (int sig)
4992 {
4993   signal (sig, async_handle_remote_sigint_twice);
4994   mark_async_signal_handler (async_sigint_remote_token);
4995 }
4996
4997 /* Signal handler for SIGINT, installed after SIGINT has already been
4998    sent once.  It will take effect the second time that the user sends
4999    a ^C.  */
5000 static void
5001 async_handle_remote_sigint_twice (int sig)
5002 {
5003   signal (sig, async_handle_remote_sigint);
5004   mark_async_signal_handler (async_sigint_remote_twice_token);
5005 }
5006
5007 /* Perform the real interruption of the target execution, in response
5008    to a ^C.  */
5009 static void
5010 async_remote_interrupt (gdb_client_data arg)
5011 {
5012   if (remote_debug)
5013     fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt called\n");
5014
5015   target_stop (inferior_ptid);
5016 }
5017
5018 /* Perform interrupt, if the first attempt did not succeed.  Just give
5019    up on the target alltogether.  */
5020 static void
5021 async_remote_interrupt_twice (gdb_client_data arg)
5022 {
5023   if (remote_debug)
5024     fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt_twice called\n");
5025
5026   interrupt_query ();
5027 }
5028
5029 /* Reinstall the usual SIGINT handlers, after the target has
5030    stopped.  */
5031 static void
5032 async_cleanup_sigint_signal_handler (void *dummy)
5033 {
5034   signal (SIGINT, handle_sigint);
5035 }
5036
5037 /* Send ^C to target to halt it.  Target will respond, and send us a
5038    packet.  */
5039 static void (*ofunc) (int);
5040
5041 /* The command line interface's stop routine.  This function is installed
5042    as a signal handler for SIGINT.  The first time a user requests a
5043    stop, we call remote_stop to send a break or ^C.  If there is no
5044    response from the target (it didn't stop when the user requested it),
5045    we ask the user if he'd like to detach from the target.  */
5046 static void
5047 sync_remote_interrupt (int signo)
5048 {
5049   /* If this doesn't work, try more severe steps.  */
5050   signal (signo, sync_remote_interrupt_twice);
5051
5052   gdb_call_async_signal_handler (async_sigint_remote_token, 1);
5053 }
5054
5055 /* The user typed ^C twice.  */
5056
5057 static void
5058 sync_remote_interrupt_twice (int signo)
5059 {
5060   signal (signo, ofunc);
5061   gdb_call_async_signal_handler (async_sigint_remote_twice_token, 1);
5062   signal (signo, sync_remote_interrupt);
5063 }
5064
5065 /* Non-stop version of target_stop.  Uses `vCont;t' to stop a remote
5066    thread, all threads of a remote process, or all threads of all
5067    processes.  */
5068
5069 static void
5070 remote_stop_ns (ptid_t ptid)
5071 {
5072   struct remote_state *rs = get_remote_state ();
5073   char *p = rs->buf;
5074   char *endp = rs->buf + get_remote_packet_size ();
5075
5076   if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
5077     remote_vcont_probe (rs);
5078
5079   if (!rs->supports_vCont.t)
5080     error (_("Remote server does not support stopping threads"));
5081
5082   if (ptid_equal (ptid, minus_one_ptid)
5083       || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5084     p += xsnprintf (p, endp - p, "vCont;t");
5085   else
5086     {
5087       ptid_t nptid;
5088
5089       p += xsnprintf (p, endp - p, "vCont;t:");
5090
5091       if (ptid_is_pid (ptid))
5092           /* All (-1) threads of process.  */
5093         nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
5094       else
5095         {
5096           /* Small optimization: if we already have a stop reply for
5097              this thread, no use in telling the stub we want this
5098              stopped.  */
5099           if (peek_stop_reply (ptid))
5100             return;
5101
5102           nptid = ptid;
5103         }
5104
5105       write_ptid (p, endp, nptid);
5106     }
5107
5108   /* In non-stop, we get an immediate OK reply.  The stop reply will
5109      come in asynchronously by notification.  */
5110   putpkt (rs->buf);
5111   getpkt (&rs->buf, &rs->buf_size, 0);
5112   if (strcmp (rs->buf, "OK") != 0)
5113     error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
5114 }
5115
5116 /* All-stop version of target_stop.  Sends a break or a ^C to stop the
5117    remote target.  It is undefined which thread of which process
5118    reports the stop.  */
5119
5120 static void
5121 remote_stop_as (ptid_t ptid)
5122 {
5123   struct remote_state *rs = get_remote_state ();
5124
5125   rs->ctrlc_pending_p = 1;
5126
5127   /* If the inferior is stopped already, but the core didn't know
5128      about it yet, just ignore the request.  The cached wait status
5129      will be collected in remote_wait.  */
5130   if (rs->cached_wait_status)
5131     return;
5132
5133   /* Send interrupt_sequence to remote target.  */
5134   send_interrupt_sequence ();
5135 }
5136
5137 /* This is the generic stop called via the target vector.  When a target
5138    interrupt is requested, either by the command line or the GUI, we
5139    will eventually end up here.  */
5140
5141 static void
5142 remote_stop (ptid_t ptid)
5143 {
5144   if (remote_debug)
5145     fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
5146
5147   if (non_stop)
5148     remote_stop_ns (ptid);
5149   else
5150     remote_stop_as (ptid);
5151 }
5152
5153 /* Ask the user what to do when an interrupt is received.  */
5154
5155 static void
5156 interrupt_query (void)
5157 {
5158   target_terminal_ours ();
5159
5160   if (target_can_async_p ())
5161     {
5162       signal (SIGINT, handle_sigint);
5163       quit ();
5164     }
5165   else
5166     {
5167       if (query (_("Interrupted while waiting for the program.\n\
5168 Give up (and stop debugging it)? ")))
5169         {
5170           remote_unpush_target ();
5171           quit ();
5172         }
5173     }
5174
5175   target_terminal_inferior ();
5176 }
5177
5178 /* Enable/disable target terminal ownership.  Most targets can use
5179    terminal groups to control terminal ownership.  Remote targets are
5180    different in that explicit transfer of ownership to/from GDB/target
5181    is required.  */
5182
5183 static void
5184 remote_terminal_inferior (void)
5185 {
5186   if (!target_async_permitted)
5187     /* Nothing to do.  */
5188     return;
5189
5190   /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
5191      idempotent.  The event-loop GDB talking to an asynchronous target
5192      with a synchronous command calls this function from both
5193      event-top.c and infrun.c/infcmd.c.  Once GDB stops trying to
5194      transfer the terminal to the target when it shouldn't this guard
5195      can go away.  */
5196   if (!remote_async_terminal_ours_p)
5197     return;
5198   delete_file_handler (input_fd);
5199   remote_async_terminal_ours_p = 0;
5200   async_initialize_sigint_signal_handler ();
5201   /* NOTE: At this point we could also register our selves as the
5202      recipient of all input.  Any characters typed could then be
5203      passed on down to the target.  */
5204 }
5205
5206 static void
5207 remote_terminal_ours (void)
5208 {
5209   if (!target_async_permitted)
5210     /* Nothing to do.  */
5211     return;
5212
5213   /* See FIXME in remote_terminal_inferior.  */
5214   if (remote_async_terminal_ours_p)
5215     return;
5216   async_cleanup_sigint_signal_handler (NULL);
5217   add_file_handler (input_fd, stdin_event_handler, 0);
5218   remote_async_terminal_ours_p = 1;
5219 }
5220
5221 static void
5222 remote_console_output (char *msg)
5223 {
5224   char *p;
5225
5226   for (p = msg; p[0] && p[1]; p += 2)
5227     {
5228       char tb[2];
5229       char c = fromhex (p[0]) * 16 + fromhex (p[1]);
5230
5231       tb[0] = c;
5232       tb[1] = 0;
5233       fputs_unfiltered (tb, gdb_stdtarg);
5234     }
5235   gdb_flush (gdb_stdtarg);
5236 }
5237
5238 typedef struct cached_reg
5239 {
5240   int num;
5241   gdb_byte data[MAX_REGISTER_SIZE];
5242 } cached_reg_t;
5243
5244 DEF_VEC_O(cached_reg_t);
5245
5246 typedef struct stop_reply
5247 {
5248   struct notif_event base;
5249
5250   /* The identifier of the thread about this event  */
5251   ptid_t ptid;
5252
5253   struct target_waitstatus ws;
5254
5255   /* Expedited registers.  This makes remote debugging a bit more
5256      efficient for those targets that provide critical registers as
5257      part of their normal status mechanism (as another roundtrip to
5258      fetch them is avoided).  */
5259   VEC(cached_reg_t) *regcache;
5260
5261   int stopped_by_watchpoint_p;
5262   CORE_ADDR watch_data_address;
5263
5264   int solibs_changed;
5265   int replay_event;
5266
5267   int core;
5268 } *stop_reply_p;
5269
5270 DECLARE_QUEUE_P (stop_reply_p);
5271 DEFINE_QUEUE_P (stop_reply_p);
5272 /* The list of already fetched and acknowledged stop events.  This
5273    queue is used for notification Stop, and other notifications
5274    don't need queue for their events, because the notification events
5275    of Stop can't be consumed immediately, so that events should be
5276    queued first, and be consumed by remote_wait_{ns,as} one per
5277    time.  Other notifications can consume their events immediately,
5278    so queue is not needed for them.  */
5279 static QUEUE (stop_reply_p) *stop_reply_queue;
5280
5281 static void
5282 stop_reply_xfree (struct stop_reply *r)
5283 {
5284   if (r != NULL)
5285     {
5286       VEC_free (cached_reg_t, r->regcache);
5287       xfree (r);
5288     }
5289 }
5290
5291 static void
5292 remote_notif_stop_parse (struct notif_client *self, char *buf,
5293                          struct notif_event *event)
5294 {
5295   remote_parse_stop_reply (buf, (struct stop_reply *) event);
5296 }
5297
5298 static void
5299 remote_notif_stop_ack (struct notif_client *self, char *buf,
5300                        struct notif_event *event)
5301 {
5302   struct stop_reply *stop_reply = (struct stop_reply *) event;
5303
5304   /* acknowledge */
5305   putpkt ((char *) self->ack_command);
5306
5307   if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
5308       /* We got an unknown stop reply.  */
5309       error (_("Unknown stop reply"));
5310
5311   push_stop_reply (stop_reply);
5312 }
5313
5314 static int
5315 remote_notif_stop_can_get_pending_events (struct notif_client *self)
5316 {
5317   /* We can't get pending events in remote_notif_process for
5318      notification stop, and we have to do this in remote_wait_ns
5319      instead.  If we fetch all queued events from stub, remote stub
5320      may exit and we have no chance to process them back in
5321      remote_wait_ns.  */
5322   mark_async_event_handler (remote_async_inferior_event_token);
5323   return 0;
5324 }
5325
5326 static void
5327 stop_reply_dtr (struct notif_event *event)
5328 {
5329   struct stop_reply *r = (struct stop_reply *) event;
5330
5331   VEC_free (cached_reg_t, r->regcache);
5332 }
5333
5334 static struct notif_event *
5335 remote_notif_stop_alloc_reply (void)
5336 {
5337   struct notif_event *r
5338     = (struct notif_event *) XMALLOC (struct stop_reply);
5339
5340   r->dtr = stop_reply_dtr;
5341
5342   return r;
5343 }
5344
5345 /* A client of notification Stop.  */
5346
5347 struct notif_client notif_client_stop =
5348 {
5349   "Stop",
5350   "vStopped",
5351   remote_notif_stop_parse,
5352   remote_notif_stop_ack,
5353   remote_notif_stop_can_get_pending_events,
5354   remote_notif_stop_alloc_reply,
5355   NULL,
5356 };
5357
5358 /* A parameter to pass data in and out.  */
5359
5360 struct queue_iter_param
5361 {
5362   void *input;
5363   struct stop_reply *output;
5364 };
5365
5366 /* Remove all queue elements meet the condition it checks.  */
5367
5368 static int
5369 remote_notif_remove_all (QUEUE (stop_reply_p) *q,
5370                          QUEUE_ITER (stop_reply_p) *iter,
5371                          stop_reply_p event,
5372                          void *data)
5373 {
5374   struct queue_iter_param *param = data;
5375   struct inferior *inf = param->input;
5376
5377   if (inf == NULL || ptid_get_pid (event->ptid) == inf->pid)
5378     {
5379       stop_reply_xfree (event);
5380       QUEUE_remove_elem (stop_reply_p, q, iter);
5381     }
5382
5383   return 1;
5384 }
5385
5386 /* Discard all pending stop replies of inferior INF.  If INF is NULL,
5387    discard everything.  */
5388
5389 static void
5390 discard_pending_stop_replies (struct inferior *inf)
5391 {
5392   int i;
5393   struct queue_iter_param param;
5394   struct stop_reply *reply
5395     = (struct stop_reply *) notif_client_stop.pending_event;
5396
5397   /* Discard the in-flight notification.  */
5398   if (reply != NULL
5399       && (inf == NULL
5400           || ptid_get_pid (reply->ptid) == inf->pid))
5401     {
5402       stop_reply_xfree (reply);
5403       notif_client_stop.pending_event = NULL;
5404     }
5405
5406   param.input = inf;
5407   param.output = NULL;
5408   /* Discard the stop replies we have already pulled with
5409      vStopped.  */
5410   QUEUE_iterate (stop_reply_p, stop_reply_queue,
5411                  remote_notif_remove_all, &param);
5412 }
5413
5414 /* A parameter to pass data in and out.  */
5415
5416 static int
5417 remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
5418                                    QUEUE_ITER (stop_reply_p) *iter,
5419                                    stop_reply_p event,
5420                                    void *data)
5421 {
5422   struct queue_iter_param *param = data;
5423   ptid_t *ptid = param->input;
5424
5425   if (ptid_match (event->ptid, *ptid))
5426     {
5427       param->output = event;
5428       QUEUE_remove_elem (stop_reply_p, q, iter);
5429       return 0;
5430     }
5431
5432   return 1;
5433 }
5434
5435 /* Remove the first reply in 'stop_reply_queue' which matches
5436    PTID.  */
5437
5438 static struct stop_reply *
5439 remote_notif_remove_queued_reply (ptid_t ptid)
5440 {
5441   struct queue_iter_param param;
5442
5443   param.input = &ptid;
5444   param.output = NULL;
5445
5446   QUEUE_iterate (stop_reply_p, stop_reply_queue,
5447                  remote_notif_remove_once_on_match, &param);
5448   if (notif_debug)
5449     fprintf_unfiltered (gdb_stdlog,
5450                         "notif: discard queued event: 'Stop' in %s\n",
5451                         target_pid_to_str (ptid));
5452
5453   return param.output;
5454 }
5455
5456 /* Look for a queued stop reply belonging to PTID.  If one is found,
5457    remove it from the queue, and return it.  Returns NULL if none is
5458    found.  If there are still queued events left to process, tell the
5459    event loop to get back to target_wait soon.  */
5460
5461 static struct stop_reply *
5462 queued_stop_reply (ptid_t ptid)
5463 {
5464   struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
5465
5466   if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
5467     /* There's still at least an event left.  */
5468     mark_async_event_handler (remote_async_inferior_event_token);
5469
5470   return r;
5471 }
5472
5473 /* Push a fully parsed stop reply in the stop reply queue.  Since we
5474    know that we now have at least one queued event left to pass to the
5475    core side, tell the event loop to get back to target_wait soon.  */
5476
5477 static void
5478 push_stop_reply (struct stop_reply *new_event)
5479 {
5480   QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
5481
5482   if (notif_debug)
5483     fprintf_unfiltered (gdb_stdlog,
5484                         "notif: push 'Stop' %s to queue %d\n",
5485                         target_pid_to_str (new_event->ptid),
5486                         QUEUE_length (stop_reply_p,
5487                                       stop_reply_queue));
5488
5489   mark_async_event_handler (remote_async_inferior_event_token);
5490 }
5491
5492 static int
5493 stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
5494                               QUEUE_ITER (stop_reply_p) *iter,
5495                               struct stop_reply *event,
5496                               void *data)
5497 {
5498   ptid_t *ptid = data;
5499
5500   return !(ptid_equal (*ptid, event->ptid)
5501            && event->ws.kind == TARGET_WAITKIND_STOPPED);
5502 }
5503
5504 /* Returns true if we have a stop reply for PTID.  */
5505
5506 static int
5507 peek_stop_reply (ptid_t ptid)
5508 {
5509   return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
5510                          stop_reply_match_ptid_and_ws, &ptid);
5511 }
5512
5513 /* Parse the stop reply in BUF.  Either the function succeeds, and the
5514    result is stored in EVENT, or throws an error.  */
5515
5516 static void
5517 remote_parse_stop_reply (char *buf, struct stop_reply *event)
5518 {
5519   struct remote_arch_state *rsa = get_remote_arch_state ();
5520   ULONGEST addr;
5521   char *p;
5522
5523   event->ptid = null_ptid;
5524   event->ws.kind = TARGET_WAITKIND_IGNORE;
5525   event->ws.value.integer = 0;
5526   event->solibs_changed = 0;
5527   event->replay_event = 0;
5528   event->stopped_by_watchpoint_p = 0;
5529   event->regcache = NULL;
5530   event->core = -1;
5531
5532   switch (buf[0])
5533     {
5534     case 'T':           /* Status with PC, SP, FP, ...  */
5535       /* Expedited reply, containing Signal, {regno, reg} repeat.  */
5536       /*  format is:  'Tssn...:r...;n...:r...;n...:r...;#cc', where
5537             ss = signal number
5538             n... = register number
5539             r... = register contents
5540       */
5541
5542       p = &buf[3];      /* after Txx */
5543       while (*p)
5544         {
5545           char *p1;
5546           char *p_temp;
5547           int fieldsize;
5548           LONGEST pnum = 0;
5549
5550           /* If the packet contains a register number, save it in
5551              pnum and set p1 to point to the character following it.
5552              Otherwise p1 points to p.  */
5553
5554           /* If this packet is an awatch packet, don't parse the 'a'
5555              as a register number.  */
5556
5557           if (strncmp (p, "awatch", strlen("awatch")) != 0
5558               && strncmp (p, "core", strlen ("core") != 0))
5559             {
5560               /* Read the ``P'' register number.  */
5561               pnum = strtol (p, &p_temp, 16);
5562               p1 = p_temp;
5563             }
5564           else
5565             p1 = p;
5566
5567           if (p1 == p)  /* No register number present here.  */
5568             {
5569               p1 = strchr (p, ':');
5570               if (p1 == NULL)
5571                 error (_("Malformed packet(a) (missing colon): %s\n\
5572 Packet: '%s'\n"),
5573                        p, buf);
5574               if (strncmp (p, "thread", p1 - p) == 0)
5575                 event->ptid = read_ptid (++p1, &p);
5576               else if ((strncmp (p, "watch", p1 - p) == 0)
5577                        || (strncmp (p, "rwatch", p1 - p) == 0)
5578                        || (strncmp (p, "awatch", p1 - p) == 0))
5579                 {
5580                   event->stopped_by_watchpoint_p = 1;
5581                   p = unpack_varlen_hex (++p1, &addr);
5582                   event->watch_data_address = (CORE_ADDR) addr;
5583                 }
5584               else if (strncmp (p, "library", p1 - p) == 0)
5585                 {
5586                   p1++;
5587                   p_temp = p1;
5588                   while (*p_temp && *p_temp != ';')
5589                     p_temp++;
5590
5591                   event->solibs_changed = 1;
5592                   p = p_temp;
5593                 }
5594               else if (strncmp (p, "replaylog", p1 - p) == 0)
5595                 {
5596                   /* NO_HISTORY event.
5597                      p1 will indicate "begin" or "end", but
5598                      it makes no difference for now, so ignore it.  */
5599                   event->replay_event = 1;
5600                   p_temp = strchr (p1 + 1, ';');
5601                   if (p_temp)
5602                     p = p_temp;
5603                 }
5604               else if (strncmp (p, "core", p1 - p) == 0)
5605                 {
5606                   ULONGEST c;
5607
5608                   p = unpack_varlen_hex (++p1, &c);
5609                   event->core = c;
5610                 }
5611               else
5612                 {
5613                   /* Silently skip unknown optional info.  */
5614                   p_temp = strchr (p1 + 1, ';');
5615                   if (p_temp)
5616                     p = p_temp;
5617                 }
5618             }
5619           else
5620             {
5621               struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
5622               cached_reg_t cached_reg;
5623
5624               p = p1;
5625
5626               if (*p != ':')
5627                 error (_("Malformed packet(b) (missing colon): %s\n\
5628 Packet: '%s'\n"),
5629                        p, buf);
5630               ++p;
5631
5632               if (reg == NULL)
5633                 error (_("Remote sent bad register number %s: %s\n\
5634 Packet: '%s'\n"),
5635                        hex_string (pnum), p, buf);
5636
5637               cached_reg.num = reg->regnum;
5638
5639               fieldsize = hex2bin (p, cached_reg.data,
5640                                    register_size (target_gdbarch (),
5641                                                   reg->regnum));
5642               p += 2 * fieldsize;
5643               if (fieldsize < register_size (target_gdbarch (),
5644                                              reg->regnum))
5645                 warning (_("Remote reply is too short: %s"), buf);
5646
5647               VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
5648             }
5649
5650           if (*p != ';')
5651             error (_("Remote register badly formatted: %s\nhere: %s"),
5652                    buf, p);
5653           ++p;
5654         }
5655       /* fall through */
5656     case 'S':           /* Old style status, just signal only.  */
5657       if (event->solibs_changed)
5658         event->ws.kind = TARGET_WAITKIND_LOADED;
5659       else if (event->replay_event)
5660         event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
5661       else
5662         {
5663           event->ws.kind = TARGET_WAITKIND_STOPPED;
5664           event->ws.value.sig = (enum gdb_signal)
5665             (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
5666         }
5667       break;
5668     case 'W':           /* Target exited.  */
5669     case 'X':
5670       {
5671         char *p;
5672         int pid;
5673         ULONGEST value;
5674
5675         /* GDB used to accept only 2 hex chars here.  Stubs should
5676            only send more if they detect GDB supports multi-process
5677            support.  */
5678         p = unpack_varlen_hex (&buf[1], &value);
5679
5680         if (buf[0] == 'W')
5681           {
5682             /* The remote process exited.  */
5683             event->ws.kind = TARGET_WAITKIND_EXITED;
5684             event->ws.value.integer = value;
5685           }
5686         else
5687           {
5688             /* The remote process exited with a signal.  */
5689             event->ws.kind = TARGET_WAITKIND_SIGNALLED;
5690             event->ws.value.sig = (enum gdb_signal) value;
5691           }
5692
5693         /* If no process is specified, assume inferior_ptid.  */
5694         pid = ptid_get_pid (inferior_ptid);
5695         if (*p == '\0')
5696           ;
5697         else if (*p == ';')
5698           {
5699             p++;
5700
5701             if (p == '\0')
5702               ;
5703             else if (strncmp (p,
5704                               "process:", sizeof ("process:") - 1) == 0)
5705               {
5706                 ULONGEST upid;
5707
5708                 p += sizeof ("process:") - 1;
5709                 unpack_varlen_hex (p, &upid);
5710                 pid = upid;
5711               }
5712             else
5713               error (_("unknown stop reply packet: %s"), buf);
5714           }
5715         else
5716           error (_("unknown stop reply packet: %s"), buf);
5717         event->ptid = pid_to_ptid (pid);
5718       }
5719       break;
5720     }
5721
5722   if (non_stop && ptid_equal (event->ptid, null_ptid))
5723     error (_("No process or thread specified in stop reply: %s"), buf);
5724 }
5725
5726 /* When the stub wants to tell GDB about a new notification reply, it
5727    sends a notification (%Stop, for example).  Those can come it at
5728    any time, hence, we have to make sure that any pending
5729    putpkt/getpkt sequence we're making is finished, before querying
5730    the stub for more events with the corresponding ack command
5731    (vStopped, for example).  E.g., if we started a vStopped sequence
5732    immediately upon receiving the notification, something like this
5733    could happen:
5734
5735     1.1) --> Hg 1
5736     1.2) <-- OK
5737     1.3) --> g
5738     1.4) <-- %Stop
5739     1.5) --> vStopped
5740     1.6) <-- (registers reply to step #1.3)
5741
5742    Obviously, the reply in step #1.6 would be unexpected to a vStopped
5743    query.
5744
5745    To solve this, whenever we parse a %Stop notification successfully,
5746    we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
5747    doing whatever we were doing:
5748
5749     2.1) --> Hg 1
5750     2.2) <-- OK
5751     2.3) --> g
5752     2.4) <-- %Stop
5753       <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
5754     2.5) <-- (registers reply to step #2.3)
5755
5756    Eventualy after step #2.5, we return to the event loop, which
5757    notices there's an event on the
5758    REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
5759    associated callback --- the function below.  At this point, we're
5760    always safe to start a vStopped sequence. :
5761
5762     2.6) --> vStopped
5763     2.7) <-- T05 thread:2
5764     2.8) --> vStopped
5765     2.9) --> OK
5766 */
5767
5768 void
5769 remote_notif_get_pending_events (struct notif_client *nc)
5770 {
5771   struct remote_state *rs = get_remote_state ();
5772
5773   if (nc->pending_event)
5774     {
5775       if (notif_debug)
5776         fprintf_unfiltered (gdb_stdlog,
5777                             "notif: process: '%s' ack pending event\n",
5778                             nc->name);
5779
5780       /* acknowledge */
5781       nc->ack (nc, rs->buf, nc->pending_event);
5782       nc->pending_event = NULL;
5783
5784       while (1)
5785         {
5786           getpkt (&rs->buf, &rs->buf_size, 0);
5787           if (strcmp (rs->buf, "OK") == 0)
5788             break;
5789           else
5790             remote_notif_ack (nc, rs->buf);
5791         }
5792     }
5793   else
5794     {
5795       if (notif_debug)
5796         fprintf_unfiltered (gdb_stdlog,
5797                             "notif: process: '%s' no pending reply\n",
5798                             nc->name);
5799     }
5800 }
5801
5802 /* Called when it is decided that STOP_REPLY holds the info of the
5803    event that is to be returned to the core.  This function always
5804    destroys STOP_REPLY.  */
5805
5806 static ptid_t
5807 process_stop_reply (struct stop_reply *stop_reply,
5808                     struct target_waitstatus *status)
5809 {
5810   ptid_t ptid;
5811
5812   *status = stop_reply->ws;
5813   ptid = stop_reply->ptid;
5814
5815   /* If no thread/process was reported by the stub, assume the current
5816      inferior.  */
5817   if (ptid_equal (ptid, null_ptid))
5818     ptid = inferior_ptid;
5819
5820   if (status->kind != TARGET_WAITKIND_EXITED
5821       && status->kind != TARGET_WAITKIND_SIGNALLED)
5822     {
5823       /* Expedited registers.  */
5824       if (stop_reply->regcache)
5825         {
5826           struct regcache *regcache
5827             = get_thread_arch_regcache (ptid, target_gdbarch ());
5828           cached_reg_t *reg;
5829           int ix;
5830
5831           for (ix = 0;
5832                VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
5833                ix++)
5834             regcache_raw_supply (regcache, reg->num, reg->data);
5835           VEC_free (cached_reg_t, stop_reply->regcache);
5836         }
5837
5838       remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p;
5839       remote_watch_data_address = stop_reply->watch_data_address;
5840
5841       remote_notice_new_inferior (ptid, 0);
5842       demand_private_info (ptid)->core = stop_reply->core;
5843     }
5844
5845   stop_reply_xfree (stop_reply);
5846   return ptid;
5847 }
5848
5849 /* The non-stop mode version of target_wait.  */
5850
5851 static ptid_t
5852 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
5853 {
5854   struct remote_state *rs = get_remote_state ();
5855   struct stop_reply *stop_reply;
5856   int ret;
5857   int is_notif = 0;
5858
5859   /* If in non-stop mode, get out of getpkt even if a
5860      notification is received.  */
5861
5862   ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5863                               0 /* forever */, &is_notif);
5864   while (1)
5865     {
5866       if (ret != -1 && !is_notif)
5867         switch (rs->buf[0])
5868           {
5869           case 'E':             /* Error of some sort.  */
5870             /* We're out of sync with the target now.  Did it continue
5871                or not?  We can't tell which thread it was in non-stop,
5872                so just ignore this.  */
5873             warning (_("Remote failure reply: %s"), rs->buf);
5874             break;
5875           case 'O':             /* Console output.  */
5876             remote_console_output (rs->buf + 1);
5877             break;
5878           default:
5879             warning (_("Invalid remote reply: %s"), rs->buf);
5880             break;
5881           }
5882
5883       /* Acknowledge a pending stop reply that may have arrived in the
5884          mean time.  */
5885       if (notif_client_stop.pending_event != NULL)
5886         remote_notif_get_pending_events (&notif_client_stop);
5887
5888       /* If indeed we noticed a stop reply, we're done.  */
5889       stop_reply = queued_stop_reply (ptid);
5890       if (stop_reply != NULL)
5891         return process_stop_reply (stop_reply, status);
5892
5893       /* Still no event.  If we're just polling for an event, then
5894          return to the event loop.  */
5895       if (options & TARGET_WNOHANG)
5896         {
5897           status->kind = TARGET_WAITKIND_IGNORE;
5898           return minus_one_ptid;
5899         }
5900
5901       /* Otherwise do a blocking wait.  */
5902       ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5903                                   1 /* forever */, &is_notif);
5904     }
5905 }
5906
5907 /* Wait until the remote machine stops, then return, storing status in
5908    STATUS just as `wait' would.  */
5909
5910 static ptid_t
5911 remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
5912 {
5913   struct remote_state *rs = get_remote_state ();
5914   ptid_t event_ptid = null_ptid;
5915   char *buf;
5916   struct stop_reply *stop_reply;
5917
5918  again:
5919
5920   status->kind = TARGET_WAITKIND_IGNORE;
5921   status->value.integer = 0;
5922
5923   stop_reply = queued_stop_reply (ptid);
5924   if (stop_reply != NULL)
5925     return process_stop_reply (stop_reply, status);
5926
5927   if (rs->cached_wait_status)
5928     /* Use the cached wait status, but only once.  */
5929     rs->cached_wait_status = 0;
5930   else
5931     {
5932       int ret;
5933       int is_notif;
5934
5935       if (!target_is_async_p ())
5936         {
5937           ofunc = signal (SIGINT, sync_remote_interrupt);
5938           /* If the user hit C-c before this packet, or between packets,
5939              pretend that it was hit right here.  */
5940           if (check_quit_flag ())
5941             {
5942               clear_quit_flag ();
5943               sync_remote_interrupt (SIGINT);
5944             }
5945         }
5946
5947       /* FIXME: cagney/1999-09-27: If we're in async mode we should
5948          _never_ wait for ever -> test on target_is_async_p().
5949          However, before we do that we need to ensure that the caller
5950          knows how to take the target into/out of async mode.  */
5951       ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5952                                   wait_forever_enabled_p, &is_notif);
5953
5954       if (!target_is_async_p ())
5955         signal (SIGINT, ofunc);
5956
5957       /* GDB gets a notification.  Return to core as this event is
5958          not interesting.  */
5959       if (ret != -1 && is_notif)
5960         return minus_one_ptid;
5961     }
5962
5963   buf = rs->buf;
5964
5965   remote_stopped_by_watchpoint_p = 0;
5966
5967   /* We got something.  */
5968   rs->waiting_for_stop_reply = 0;
5969
5970   /* Assume that the target has acknowledged Ctrl-C unless we receive
5971      an 'F' or 'O' packet.  */
5972   if (buf[0] != 'F' && buf[0] != 'O')
5973     rs->ctrlc_pending_p = 0;
5974
5975   switch (buf[0])
5976     {
5977     case 'E':           /* Error of some sort.  */
5978       /* We're out of sync with the target now.  Did it continue or
5979          not?  Not is more likely, so report a stop.  */
5980       warning (_("Remote failure reply: %s"), buf);
5981       status->kind = TARGET_WAITKIND_STOPPED;
5982       status->value.sig = GDB_SIGNAL_0;
5983       break;
5984     case 'F':           /* File-I/O request.  */
5985       remote_fileio_request (buf, rs->ctrlc_pending_p);
5986       rs->ctrlc_pending_p = 0;
5987       break;
5988     case 'T': case 'S': case 'X': case 'W':
5989       {
5990         struct stop_reply *stop_reply
5991           = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
5992                                                       rs->buf);
5993
5994         event_ptid = process_stop_reply (stop_reply, status);
5995         break;
5996       }
5997     case 'O':           /* Console output.  */
5998       remote_console_output (buf + 1);
5999
6000       /* The target didn't really stop; keep waiting.  */
6001       rs->waiting_for_stop_reply = 1;
6002
6003       break;
6004     case '\0':
6005       if (last_sent_signal != GDB_SIGNAL_0)
6006         {
6007           /* Zero length reply means that we tried 'S' or 'C' and the
6008              remote system doesn't support it.  */
6009           target_terminal_ours_for_output ();
6010           printf_filtered
6011             ("Can't send signals to this remote system.  %s not sent.\n",
6012              gdb_signal_to_name (last_sent_signal));
6013           last_sent_signal = GDB_SIGNAL_0;
6014           target_terminal_inferior ();
6015
6016           strcpy ((char *) buf, last_sent_step ? "s" : "c");
6017           putpkt ((char *) buf);
6018
6019           /* We just told the target to resume, so a stop reply is in
6020              order.  */
6021           rs->waiting_for_stop_reply = 1;
6022           break;
6023         }
6024       /* else fallthrough */
6025     default:
6026       warning (_("Invalid remote reply: %s"), buf);
6027       /* Keep waiting.  */
6028       rs->waiting_for_stop_reply = 1;
6029       break;
6030     }
6031
6032   if (status->kind == TARGET_WAITKIND_IGNORE)
6033     {
6034       /* Nothing interesting happened.  If we're doing a non-blocking
6035          poll, we're done.  Otherwise, go back to waiting.  */
6036       if (options & TARGET_WNOHANG)
6037         return minus_one_ptid;
6038       else
6039         goto again;
6040     }
6041   else if (status->kind != TARGET_WAITKIND_EXITED
6042            && status->kind != TARGET_WAITKIND_SIGNALLED)
6043     {
6044       if (!ptid_equal (event_ptid, null_ptid))
6045         record_currthread (event_ptid);
6046       else
6047         event_ptid = inferior_ptid;
6048     }
6049   else
6050     /* A process exit.  Invalidate our notion of current thread.  */
6051     record_currthread (minus_one_ptid);
6052
6053   return event_ptid;
6054 }
6055
6056 /* Wait until the remote machine stops, then return, storing status in
6057    STATUS just as `wait' would.  */
6058
6059 static ptid_t
6060 remote_wait (struct target_ops *ops,
6061              ptid_t ptid, struct target_waitstatus *status, int options)
6062 {
6063   ptid_t event_ptid;
6064
6065   if (non_stop)
6066     event_ptid = remote_wait_ns (ptid, status, options);
6067   else
6068     event_ptid = remote_wait_as (ptid, status, options);
6069
6070   if (target_can_async_p ())
6071     {
6072       /* If there are are events left in the queue tell the event loop
6073          to return here.  */
6074       if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
6075         mark_async_event_handler (remote_async_inferior_event_token);
6076     }
6077
6078   return event_ptid;
6079 }
6080
6081 /* Fetch a single register using a 'p' packet.  */
6082
6083 static int
6084 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
6085 {
6086   struct remote_state *rs = get_remote_state ();
6087   char *buf, *p;
6088   char regp[MAX_REGISTER_SIZE];
6089   int i;
6090
6091   if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
6092     return 0;
6093
6094   if (reg->pnum == -1)
6095     return 0;
6096
6097   p = rs->buf;
6098   *p++ = 'p';
6099   p += hexnumstr (p, reg->pnum);
6100   *p++ = '\0';
6101   putpkt (rs->buf);
6102   getpkt (&rs->buf, &rs->buf_size, 0);
6103
6104   buf = rs->buf;
6105
6106   switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
6107     {
6108     case PACKET_OK:
6109       break;
6110     case PACKET_UNKNOWN:
6111       return 0;
6112     case PACKET_ERROR:
6113       error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
6114              gdbarch_register_name (get_regcache_arch (regcache), 
6115                                     reg->regnum), 
6116              buf);
6117     }
6118
6119   /* If this register is unfetchable, tell the regcache.  */
6120   if (buf[0] == 'x')
6121     {
6122       regcache_raw_supply (regcache, reg->regnum, NULL);
6123       return 1;
6124     }
6125
6126   /* Otherwise, parse and supply the value.  */
6127   p = buf;
6128   i = 0;
6129   while (p[0] != 0)
6130     {
6131       if (p[1] == 0)
6132         error (_("fetch_register_using_p: early buf termination"));
6133
6134       regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
6135       p += 2;
6136     }
6137   regcache_raw_supply (regcache, reg->regnum, regp);
6138   return 1;
6139 }
6140
6141 /* Fetch the registers included in the target's 'g' packet.  */
6142
6143 static int
6144 send_g_packet (void)
6145 {
6146   struct remote_state *rs = get_remote_state ();
6147   int buf_len;
6148
6149   xsnprintf (rs->buf, get_remote_packet_size (), "g");
6150   remote_send (&rs->buf, &rs->buf_size);
6151
6152   /* We can get out of synch in various cases.  If the first character
6153      in the buffer is not a hex character, assume that has happened
6154      and try to fetch another packet to read.  */
6155   while ((rs->buf[0] < '0' || rs->buf[0] > '9')
6156          && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
6157          && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
6158          && rs->buf[0] != 'x')  /* New: unavailable register value.  */
6159     {
6160       if (remote_debug)
6161         fprintf_unfiltered (gdb_stdlog,
6162                             "Bad register packet; fetching a new packet\n");
6163       getpkt (&rs->buf, &rs->buf_size, 0);
6164     }
6165
6166   buf_len = strlen (rs->buf);
6167
6168   /* Sanity check the received packet.  */
6169   if (buf_len % 2 != 0)
6170     error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
6171
6172   return buf_len / 2;
6173 }
6174
6175 static void
6176 process_g_packet (struct regcache *regcache)
6177 {
6178   struct gdbarch *gdbarch = get_regcache_arch (regcache);
6179   struct remote_state *rs = get_remote_state ();
6180   struct remote_arch_state *rsa = get_remote_arch_state ();
6181   int i, buf_len;
6182   char *p;
6183   char *regs;
6184
6185   buf_len = strlen (rs->buf);
6186
6187   /* Further sanity checks, with knowledge of the architecture.  */
6188   if (buf_len > 2 * rsa->sizeof_g_packet)
6189     error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
6190
6191   /* Save the size of the packet sent to us by the target.  It is used
6192      as a heuristic when determining the max size of packets that the
6193      target can safely receive.  */
6194   if (rsa->actual_register_packet_size == 0)
6195     rsa->actual_register_packet_size = buf_len;
6196
6197   /* If this is smaller than we guessed the 'g' packet would be,
6198      update our records.  A 'g' reply that doesn't include a register's
6199      value implies either that the register is not available, or that
6200      the 'p' packet must be used.  */
6201   if (buf_len < 2 * rsa->sizeof_g_packet)
6202     {
6203       rsa->sizeof_g_packet = buf_len / 2;
6204
6205       for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
6206         {
6207           if (rsa->regs[i].pnum == -1)
6208             continue;
6209
6210           if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
6211             rsa->regs[i].in_g_packet = 0;
6212           else
6213             rsa->regs[i].in_g_packet = 1;
6214         }
6215     }
6216
6217   regs = alloca (rsa->sizeof_g_packet);
6218
6219   /* Unimplemented registers read as all bits zero.  */
6220   memset (regs, 0, rsa->sizeof_g_packet);
6221
6222   /* Reply describes registers byte by byte, each byte encoded as two
6223      hex characters.  Suck them all up, then supply them to the
6224      register cacheing/storage mechanism.  */
6225
6226   p = rs->buf;
6227   for (i = 0; i < rsa->sizeof_g_packet; i++)
6228     {
6229       if (p[0] == 0 || p[1] == 0)
6230         /* This shouldn't happen - we adjusted sizeof_g_packet above.  */
6231         internal_error (__FILE__, __LINE__,
6232                         _("unexpected end of 'g' packet reply"));
6233
6234       if (p[0] == 'x' && p[1] == 'x')
6235         regs[i] = 0;            /* 'x' */
6236       else
6237         regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
6238       p += 2;
6239     }
6240
6241   for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
6242     {
6243       struct packet_reg *r = &rsa->regs[i];
6244
6245       if (r->in_g_packet)
6246         {
6247           if (r->offset * 2 >= strlen (rs->buf))
6248             /* This shouldn't happen - we adjusted in_g_packet above.  */
6249             internal_error (__FILE__, __LINE__,
6250                             _("unexpected end of 'g' packet reply"));
6251           else if (rs->buf[r->offset * 2] == 'x')
6252             {
6253               gdb_assert (r->offset * 2 < strlen (rs->buf));
6254               /* The register isn't available, mark it as such (at
6255                  the same time setting the value to zero).  */
6256               regcache_raw_supply (regcache, r->regnum, NULL);
6257             }
6258           else
6259             regcache_raw_supply (regcache, r->regnum,
6260                                  regs + r->offset);
6261         }
6262     }
6263 }
6264
6265 static void
6266 fetch_registers_using_g (struct regcache *regcache)
6267 {
6268   send_g_packet ();
6269   process_g_packet (regcache);
6270 }
6271
6272 /* Make the remote selected traceframe match GDB's selected
6273    traceframe.  */
6274
6275 static void
6276 set_remote_traceframe (void)
6277 {
6278   int newnum;
6279
6280   if (remote_traceframe_number == get_traceframe_number ())
6281     return;
6282
6283   /* Avoid recursion, remote_trace_find calls us again.  */
6284   remote_traceframe_number = get_traceframe_number ();
6285
6286   newnum = target_trace_find (tfind_number,
6287                               get_traceframe_number (), 0, 0, NULL);
6288
6289   /* Should not happen.  If it does, all bets are off.  */
6290   if (newnum != get_traceframe_number ())
6291     warning (_("could not set remote traceframe"));
6292 }
6293
6294 static void
6295 remote_fetch_registers (struct target_ops *ops,
6296                         struct regcache *regcache, int regnum)
6297 {
6298   struct remote_arch_state *rsa = get_remote_arch_state ();
6299   int i;
6300
6301   set_remote_traceframe ();
6302   set_general_thread (inferior_ptid);
6303
6304   if (regnum >= 0)
6305     {
6306       struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
6307
6308       gdb_assert (reg != NULL);
6309
6310       /* If this register might be in the 'g' packet, try that first -
6311          we are likely to read more than one register.  If this is the
6312          first 'g' packet, we might be overly optimistic about its
6313          contents, so fall back to 'p'.  */
6314       if (reg->in_g_packet)
6315         {
6316           fetch_registers_using_g (regcache);
6317           if (reg->in_g_packet)
6318             return;
6319         }
6320
6321       if (fetch_register_using_p (regcache, reg))
6322         return;
6323
6324       /* This register is not available.  */
6325       regcache_raw_supply (regcache, reg->regnum, NULL);
6326
6327       return;
6328     }
6329
6330   fetch_registers_using_g (regcache);
6331
6332   for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6333     if (!rsa->regs[i].in_g_packet)
6334       if (!fetch_register_using_p (regcache, &rsa->regs[i]))
6335         {
6336           /* This register is not available.  */
6337           regcache_raw_supply (regcache, i, NULL);
6338         }
6339 }
6340
6341 /* Prepare to store registers.  Since we may send them all (using a
6342    'G' request), we have to read out the ones we don't want to change
6343    first.  */
6344
6345 static void
6346 remote_prepare_to_store (struct regcache *regcache)
6347 {
6348   struct remote_arch_state *rsa = get_remote_arch_state ();
6349   int i;
6350   gdb_byte buf[MAX_REGISTER_SIZE];
6351
6352   /* Make sure the entire registers array is valid.  */
6353   switch (remote_protocol_packets[PACKET_P].support)
6354     {
6355     case PACKET_DISABLE:
6356     case PACKET_SUPPORT_UNKNOWN:
6357       /* Make sure all the necessary registers are cached.  */
6358       for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6359         if (rsa->regs[i].in_g_packet)
6360           regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
6361       break;
6362     case PACKET_ENABLE:
6363       break;
6364     }
6365 }
6366
6367 /* Helper: Attempt to store REGNUM using the P packet.  Return fail IFF
6368    packet was not recognized.  */
6369
6370 static int
6371 store_register_using_P (const struct regcache *regcache, 
6372                         struct packet_reg *reg)
6373 {
6374   struct gdbarch *gdbarch = get_regcache_arch (regcache);
6375   struct remote_state *rs = get_remote_state ();
6376   /* Try storing a single register.  */
6377   char *buf = rs->buf;
6378   gdb_byte regp[MAX_REGISTER_SIZE];
6379   char *p;
6380
6381   if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
6382     return 0;
6383
6384   if (reg->pnum == -1)
6385     return 0;
6386
6387   xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
6388   p = buf + strlen (buf);
6389   regcache_raw_collect (regcache, reg->regnum, regp);
6390   bin2hex (regp, p, register_size (gdbarch, reg->regnum));
6391   putpkt (rs->buf);
6392   getpkt (&rs->buf, &rs->buf_size, 0);
6393
6394   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
6395     {
6396     case PACKET_OK:
6397       return 1;
6398     case PACKET_ERROR:
6399       error (_("Could not write register \"%s\"; remote failure reply '%s'"),
6400              gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
6401     case PACKET_UNKNOWN:
6402       return 0;
6403     default:
6404       internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
6405     }
6406 }
6407
6408 /* Store register REGNUM, or all registers if REGNUM == -1, from the
6409    contents of the register cache buffer.  FIXME: ignores errors.  */
6410
6411 static void
6412 store_registers_using_G (const struct regcache *regcache)
6413 {
6414   struct remote_state *rs = get_remote_state ();
6415   struct remote_arch_state *rsa = get_remote_arch_state ();
6416   gdb_byte *regs;
6417   char *p;
6418
6419   /* Extract all the registers in the regcache copying them into a
6420      local buffer.  */
6421   {
6422     int i;
6423
6424     regs = alloca (rsa->sizeof_g_packet);
6425     memset (regs, 0, rsa->sizeof_g_packet);
6426     for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6427       {
6428         struct packet_reg *r = &rsa->regs[i];
6429
6430         if (r->in_g_packet)
6431           regcache_raw_collect (regcache, r->regnum, regs + r->offset);
6432       }
6433   }
6434
6435   /* Command describes registers byte by byte,
6436      each byte encoded as two hex characters.  */
6437   p = rs->buf;
6438   *p++ = 'G';
6439   /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
6440      updated.  */
6441   bin2hex (regs, p, rsa->sizeof_g_packet);
6442   putpkt (rs->buf);
6443   getpkt (&rs->buf, &rs->buf_size, 0);
6444   if (packet_check_result (rs->buf) == PACKET_ERROR)
6445     error (_("Could not write registers; remote failure reply '%s'"), 
6446            rs->buf);
6447 }
6448
6449 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
6450    of the register cache buffer.  FIXME: ignores errors.  */
6451
6452 static void
6453 remote_store_registers (struct target_ops *ops,
6454                         struct regcache *regcache, int regnum)
6455 {
6456   struct remote_arch_state *rsa = get_remote_arch_state ();
6457   int i;
6458
6459   set_remote_traceframe ();
6460   set_general_thread (inferior_ptid);
6461
6462   if (regnum >= 0)
6463     {
6464       struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
6465
6466       gdb_assert (reg != NULL);
6467
6468       /* Always prefer to store registers using the 'P' packet if
6469          possible; we often change only a small number of registers.
6470          Sometimes we change a larger number; we'd need help from a
6471          higher layer to know to use 'G'.  */
6472       if (store_register_using_P (regcache, reg))
6473         return;
6474
6475       /* For now, don't complain if we have no way to write the
6476          register.  GDB loses track of unavailable registers too
6477          easily.  Some day, this may be an error.  We don't have
6478          any way to read the register, either...  */
6479       if (!reg->in_g_packet)
6480         return;
6481
6482       store_registers_using_G (regcache);
6483       return;
6484     }
6485
6486   store_registers_using_G (regcache);
6487
6488   for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6489     if (!rsa->regs[i].in_g_packet)
6490       if (!store_register_using_P (regcache, &rsa->regs[i]))
6491         /* See above for why we do not issue an error here.  */
6492         continue;
6493 }
6494 \f
6495
6496 /* Return the number of hex digits in num.  */
6497
6498 static int
6499 hexnumlen (ULONGEST num)
6500 {
6501   int i;
6502
6503   for (i = 0; num != 0; i++)
6504     num >>= 4;
6505
6506   return max (i, 1);
6507 }
6508
6509 /* Set BUF to the minimum number of hex digits representing NUM.  */
6510
6511 static int
6512 hexnumstr (char *buf, ULONGEST num)
6513 {
6514   int len = hexnumlen (num);
6515
6516   return hexnumnstr (buf, num, len);
6517 }
6518
6519
6520 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters.  */
6521
6522 static int
6523 hexnumnstr (char *buf, ULONGEST num, int width)
6524 {
6525   int i;
6526
6527   buf[width] = '\0';
6528
6529   for (i = width - 1; i >= 0; i--)
6530     {
6531       buf[i] = "0123456789abcdef"[(num & 0xf)];
6532       num >>= 4;
6533     }
6534
6535   return width;
6536 }
6537
6538 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits.  */
6539
6540 static CORE_ADDR
6541 remote_address_masked (CORE_ADDR addr)
6542 {
6543   unsigned int address_size = remote_address_size;
6544
6545   /* If "remoteaddresssize" was not set, default to target address size.  */
6546   if (!address_size)
6547     address_size = gdbarch_addr_bit (target_gdbarch ());
6548
6549   if (address_size > 0
6550       && address_size < (sizeof (ULONGEST) * 8))
6551     {
6552       /* Only create a mask when that mask can safely be constructed
6553          in a ULONGEST variable.  */
6554       ULONGEST mask = 1;
6555
6556       mask = (mask << address_size) - 1;
6557       addr &= mask;
6558     }
6559   return addr;
6560 }
6561
6562 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
6563    binary data in OUT_BUF.  Set *OUT_LEN to the length of the data
6564    encoded in OUT_BUF, and return the number of bytes in OUT_BUF
6565    (which may be more than *OUT_LEN due to escape characters).  The
6566    total number of bytes in the output buffer will be at most
6567    OUT_MAXLEN.  */
6568
6569 static int
6570 remote_escape_output (const gdb_byte *buffer, int len,
6571                       gdb_byte *out_buf, int *out_len,
6572                       int out_maxlen)
6573 {
6574   int input_index, output_index;
6575
6576   output_index = 0;
6577   for (input_index = 0; input_index < len; input_index++)
6578     {
6579       gdb_byte b = buffer[input_index];
6580
6581       if (b == '$' || b == '#' || b == '}')
6582         {
6583           /* These must be escaped.  */
6584           if (output_index + 2 > out_maxlen)
6585             break;
6586           out_buf[output_index++] = '}';
6587           out_buf[output_index++] = b ^ 0x20;
6588         }
6589       else
6590         {
6591           if (output_index + 1 > out_maxlen)
6592             break;
6593           out_buf[output_index++] = b;
6594         }
6595     }
6596
6597   *out_len = input_index;
6598   return output_index;
6599 }
6600
6601 /* Convert BUFFER, escaped data LEN bytes long, into binary data
6602    in OUT_BUF.  Return the number of bytes written to OUT_BUF.
6603    Raise an error if the total number of bytes exceeds OUT_MAXLEN.
6604
6605    This function reverses remote_escape_output.  It allows more
6606    escaped characters than that function does, in particular because
6607    '*' must be escaped to avoid the run-length encoding processing
6608    in reading packets.  */
6609
6610 static int
6611 remote_unescape_input (const gdb_byte *buffer, int len,
6612                        gdb_byte *out_buf, int out_maxlen)
6613 {
6614   int input_index, output_index;
6615   int escaped;
6616
6617   output_index = 0;
6618   escaped = 0;
6619   for (input_index = 0; input_index < len; input_index++)
6620     {
6621       gdb_byte b = buffer[input_index];
6622
6623       if (output_index + 1 > out_maxlen)
6624         {
6625           warning (_("Received too much data from remote target;"
6626                      " ignoring overflow."));
6627           return output_index;
6628         }
6629
6630       if (escaped)
6631         {
6632           out_buf[output_index++] = b ^ 0x20;
6633           escaped = 0;
6634         }
6635       else if (b == '}')
6636         escaped = 1;
6637       else
6638         out_buf[output_index++] = b;
6639     }
6640
6641   if (escaped)
6642     error (_("Unmatched escape character in target response."));
6643
6644   return output_index;
6645 }
6646
6647 /* Determine whether the remote target supports binary downloading.
6648    This is accomplished by sending a no-op memory write of zero length
6649    to the target at the specified address. It does not suffice to send
6650    the whole packet, since many stubs strip the eighth bit and
6651    subsequently compute a wrong checksum, which causes real havoc with
6652    remote_write_bytes.
6653
6654    NOTE: This can still lose if the serial line is not eight-bit
6655    clean.  In cases like this, the user should clear "remote
6656    X-packet".  */
6657
6658 static void
6659 check_binary_download (CORE_ADDR addr)
6660 {
6661   struct remote_state *rs = get_remote_state ();
6662
6663   switch (remote_protocol_packets[PACKET_X].support)
6664     {
6665     case PACKET_DISABLE:
6666       break;
6667     case PACKET_ENABLE:
6668       break;
6669     case PACKET_SUPPORT_UNKNOWN:
6670       {
6671         char *p;
6672
6673         p = rs->buf;
6674         *p++ = 'X';
6675         p += hexnumstr (p, (ULONGEST) addr);
6676         *p++ = ',';
6677         p += hexnumstr (p, (ULONGEST) 0);
6678         *p++ = ':';
6679         *p = '\0';
6680
6681         putpkt_binary (rs->buf, (int) (p - rs->buf));
6682         getpkt (&rs->buf, &rs->buf_size, 0);
6683
6684         if (rs->buf[0] == '\0')
6685           {
6686             if (remote_debug)
6687               fprintf_unfiltered (gdb_stdlog,
6688                                   "binary downloading NOT "
6689                                   "supported by target\n");
6690             remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
6691           }
6692         else
6693           {
6694             if (remote_debug)
6695               fprintf_unfiltered (gdb_stdlog,
6696                                   "binary downloading supported by target\n");
6697             remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
6698           }
6699         break;
6700       }
6701     }
6702 }
6703
6704 /* Write memory data directly to the remote machine.
6705    This does not inform the data cache; the data cache uses this.
6706    HEADER is the starting part of the packet.
6707    MEMADDR is the address in the remote memory space.
6708    MYADDR is the address of the buffer in our space.
6709    LEN is the number of bytes.
6710    PACKET_FORMAT should be either 'X' or 'M', and indicates if we
6711    should send data as binary ('X'), or hex-encoded ('M').
6712
6713    The function creates packet of the form
6714        <HEADER><ADDRESS>,<LENGTH>:<DATA>
6715
6716    where encoding of <DATA> is termined by PACKET_FORMAT.
6717
6718    If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
6719    are omitted.
6720
6721    Returns the number of bytes transferred, or 0 (setting errno) for
6722    error.  Only transfer a single packet.  */
6723
6724 static int
6725 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
6726                         const gdb_byte *myaddr, ssize_t len,
6727                         char packet_format, int use_length)
6728 {
6729   struct remote_state *rs = get_remote_state ();
6730   char *p;
6731   char *plen = NULL;
6732   int plenlen = 0;
6733   int todo;
6734   int nr_bytes;
6735   int payload_size;
6736   int payload_length;
6737   int header_length;
6738
6739   if (packet_format != 'X' && packet_format != 'M')
6740     internal_error (__FILE__, __LINE__,
6741                     _("remote_write_bytes_aux: bad packet format"));
6742
6743   if (len <= 0)
6744     return 0;
6745
6746   payload_size = get_memory_write_packet_size ();
6747
6748   /* The packet buffer will be large enough for the payload;
6749      get_memory_packet_size ensures this.  */
6750   rs->buf[0] = '\0';
6751
6752   /* Compute the size of the actual payload by subtracting out the
6753      packet header and footer overhead: "$M<memaddr>,<len>:...#nn".  */
6754
6755   payload_size -= strlen ("$,:#NN");
6756   if (!use_length)
6757     /* The comma won't be used.  */
6758     payload_size += 1;
6759   header_length = strlen (header);
6760   payload_size -= header_length;
6761   payload_size -= hexnumlen (memaddr);
6762
6763   /* Construct the packet excluding the data: "<header><memaddr>,<len>:".  */
6764
6765   strcat (rs->buf, header);
6766   p = rs->buf + strlen (header);
6767
6768   /* Compute a best guess of the number of bytes actually transfered.  */
6769   if (packet_format == 'X')
6770     {
6771       /* Best guess at number of bytes that will fit.  */
6772       todo = min (len, payload_size);
6773       if (use_length)
6774         payload_size -= hexnumlen (todo);
6775       todo = min (todo, payload_size);
6776     }
6777   else
6778     {
6779       /* Num bytes that will fit.  */
6780       todo = min (len, payload_size / 2);
6781       if (use_length)
6782         payload_size -= hexnumlen (todo);
6783       todo = min (todo, payload_size / 2);
6784     }
6785
6786   if (todo <= 0)
6787     internal_error (__FILE__, __LINE__,
6788                     _("minimum packet size too small to write data"));
6789
6790   /* If we already need another packet, then try to align the end
6791      of this packet to a useful boundary.  */
6792   if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
6793     todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
6794
6795   /* Append "<memaddr>".  */
6796   memaddr = remote_address_masked (memaddr);
6797   p += hexnumstr (p, (ULONGEST) memaddr);
6798
6799   if (use_length)
6800     {
6801       /* Append ",".  */
6802       *p++ = ',';
6803
6804       /* Append <len>.  Retain the location/size of <len>.  It may need to
6805          be adjusted once the packet body has been created.  */
6806       plen = p;
6807       plenlen = hexnumstr (p, (ULONGEST) todo);
6808       p += plenlen;
6809     }
6810
6811   /* Append ":".  */
6812   *p++ = ':';
6813   *p = '\0';
6814
6815   /* Append the packet body.  */
6816   if (packet_format == 'X')
6817     {
6818       /* Binary mode.  Send target system values byte by byte, in
6819          increasing byte addresses.  Only escape certain critical
6820          characters.  */
6821       payload_length = remote_escape_output (myaddr, todo, (gdb_byte *) p,
6822                                              &nr_bytes, payload_size);
6823
6824       /* If not all TODO bytes fit, then we'll need another packet.  Make
6825          a second try to keep the end of the packet aligned.  Don't do
6826          this if the packet is tiny.  */
6827       if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
6828         {
6829           int new_nr_bytes;
6830
6831           new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
6832                           - memaddr);
6833           if (new_nr_bytes != nr_bytes)
6834             payload_length = remote_escape_output (myaddr, new_nr_bytes,
6835                                                    (gdb_byte *) p, &nr_bytes,
6836                                                    payload_size);
6837         }
6838
6839       p += payload_length;
6840       if (use_length && nr_bytes < todo)
6841         {
6842           /* Escape chars have filled up the buffer prematurely,
6843              and we have actually sent fewer bytes than planned.
6844              Fix-up the length field of the packet.  Use the same
6845              number of characters as before.  */
6846           plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
6847           *plen = ':';  /* overwrite \0 from hexnumnstr() */
6848         }
6849     }
6850   else
6851     {
6852       /* Normal mode: Send target system values byte by byte, in
6853          increasing byte addresses.  Each byte is encoded as a two hex
6854          value.  */
6855       nr_bytes = bin2hex (myaddr, p, todo);
6856       p += 2 * nr_bytes;
6857     }
6858
6859   putpkt_binary (rs->buf, (int) (p - rs->buf));
6860   getpkt (&rs->buf, &rs->buf_size, 0);
6861
6862   if (rs->buf[0] == 'E')
6863     {
6864       /* There is no correspondance between what the remote protocol
6865          uses for errors and errno codes.  We would like a cleaner way
6866          of representing errors (big enough to include errno codes,
6867          bfd_error codes, and others).  But for now just return EIO.  */
6868       errno = EIO;
6869       return 0;
6870     }
6871
6872   /* Return NR_BYTES, not TODO, in case escape chars caused us to send
6873      fewer bytes than we'd planned.  */
6874   return nr_bytes;
6875 }
6876
6877 /* Write memory data directly to the remote machine.
6878    This does not inform the data cache; the data cache uses this.
6879    MEMADDR is the address in the remote memory space.
6880    MYADDR is the address of the buffer in our space.
6881    LEN is the number of bytes.
6882
6883    Returns number of bytes transferred, or 0 (setting errno) for
6884    error.  Only transfer a single packet.  */
6885
6886 static int
6887 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
6888 {
6889   char *packet_format = 0;
6890
6891   /* Check whether the target supports binary download.  */
6892   check_binary_download (memaddr);
6893
6894   switch (remote_protocol_packets[PACKET_X].support)
6895     {
6896     case PACKET_ENABLE:
6897       packet_format = "X";
6898       break;
6899     case PACKET_DISABLE:
6900       packet_format = "M";
6901       break;
6902     case PACKET_SUPPORT_UNKNOWN:
6903       internal_error (__FILE__, __LINE__,
6904                       _("remote_write_bytes: bad internal state"));
6905     default:
6906       internal_error (__FILE__, __LINE__, _("bad switch"));
6907     }
6908
6909   return remote_write_bytes_aux (packet_format,
6910                                  memaddr, myaddr, len, packet_format[0], 1);
6911 }
6912
6913 /* Read memory data directly from the remote machine.
6914    This does not use the data cache; the data cache uses this.
6915    MEMADDR is the address in the remote memory space.
6916    MYADDR is the address of the buffer in our space.
6917    LEN is the number of bytes.
6918
6919    Returns number of bytes transferred, or 0 for error.  */
6920
6921 static int
6922 remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
6923 {
6924   struct remote_state *rs = get_remote_state ();
6925   int max_buf_size;             /* Max size of packet output buffer.  */
6926   char *p;
6927   int todo;
6928   int i;
6929
6930   if (len <= 0)
6931     return 0;
6932
6933   max_buf_size = get_memory_read_packet_size ();
6934   /* The packet buffer will be large enough for the payload;
6935      get_memory_packet_size ensures this.  */
6936
6937   /* Number if bytes that will fit.  */
6938   todo = min (len, max_buf_size / 2);
6939
6940   /* Construct "m"<memaddr>","<len>".  */
6941   memaddr = remote_address_masked (memaddr);
6942   p = rs->buf;
6943   *p++ = 'm';
6944   p += hexnumstr (p, (ULONGEST) memaddr);
6945   *p++ = ',';
6946   p += hexnumstr (p, (ULONGEST) todo);
6947   *p = '\0';
6948   putpkt (rs->buf);
6949   getpkt (&rs->buf, &rs->buf_size, 0);
6950   if (rs->buf[0] == 'E'
6951       && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
6952       && rs->buf[3] == '\0')
6953     {
6954       /* There is no correspondance between what the remote protocol
6955          uses for errors and errno codes.  We would like a cleaner way
6956          of representing errors (big enough to include errno codes,
6957          bfd_error codes, and others).  But for now just return
6958          EIO.  */
6959       errno = EIO;
6960       return 0;
6961     }
6962   /* Reply describes memory byte by byte, each byte encoded as two hex
6963      characters.  */
6964   p = rs->buf;
6965   i = hex2bin (p, myaddr, todo);
6966   /* Return what we have.  Let higher layers handle partial reads.  */
6967   return i;
6968 }
6969
6970 \f
6971 /* Read or write LEN bytes from inferior memory at MEMADDR,
6972    transferring to or from debugger address BUFFER.  Write to inferior
6973    if SHOULD_WRITE is nonzero.  Returns length of data written or
6974    read; 0 for error.  TARGET is unused.  */
6975
6976 static int
6977 remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
6978                     int should_write, struct mem_attrib *attrib,
6979                     struct target_ops *target)
6980 {
6981   int res;
6982
6983   set_remote_traceframe ();
6984   set_general_thread (inferior_ptid);
6985
6986   if (should_write)
6987     res = remote_write_bytes (mem_addr, buffer, mem_len);
6988   else
6989     res = remote_read_bytes (mem_addr, buffer, mem_len);
6990
6991   return res;
6992 }
6993
6994 /* Sends a packet with content determined by the printf format string
6995    FORMAT and the remaining arguments, then gets the reply.  Returns
6996    whether the packet was a success, a failure, or unknown.  */
6997
6998 static enum packet_result
6999 remote_send_printf (const char *format, ...)
7000 {
7001   struct remote_state *rs = get_remote_state ();
7002   int max_size = get_remote_packet_size ();
7003   va_list ap;
7004
7005   va_start (ap, format);
7006
7007   rs->buf[0] = '\0';
7008   if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
7009     internal_error (__FILE__, __LINE__, _("Too long remote packet."));
7010
7011   if (putpkt (rs->buf) < 0)
7012     error (_("Communication problem with target."));
7013
7014   rs->buf[0] = '\0';
7015   getpkt (&rs->buf, &rs->buf_size, 0);
7016
7017   return packet_check_result (rs->buf);
7018 }
7019
7020 static void
7021 restore_remote_timeout (void *p)
7022 {
7023   int value = *(int *)p;
7024
7025   remote_timeout = value;
7026 }
7027
7028 /* Flash writing can take quite some time.  We'll set
7029    effectively infinite timeout for flash operations.
7030    In future, we'll need to decide on a better approach.  */
7031 static const int remote_flash_timeout = 1000;
7032
7033 static void
7034 remote_flash_erase (struct target_ops *ops,
7035                     ULONGEST address, LONGEST length)
7036 {
7037   int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
7038   int saved_remote_timeout = remote_timeout;
7039   enum packet_result ret;
7040   struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7041                                           &saved_remote_timeout);
7042
7043   remote_timeout = remote_flash_timeout;
7044
7045   ret = remote_send_printf ("vFlashErase:%s,%s",
7046                             phex (address, addr_size),
7047                             phex (length, 4));
7048   switch (ret)
7049     {
7050     case PACKET_UNKNOWN:
7051       error (_("Remote target does not support flash erase"));
7052     case PACKET_ERROR:
7053       error (_("Error erasing flash with vFlashErase packet"));
7054     default:
7055       break;
7056     }
7057
7058   do_cleanups (back_to);
7059 }
7060
7061 static LONGEST
7062 remote_flash_write (struct target_ops *ops,
7063                     ULONGEST address, LONGEST length,
7064                     const gdb_byte *data)
7065 {
7066   int saved_remote_timeout = remote_timeout;
7067   int ret;
7068   struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7069                                           &saved_remote_timeout);
7070
7071   remote_timeout = remote_flash_timeout;
7072   ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
7073   do_cleanups (back_to);
7074
7075   return ret;
7076 }
7077
7078 static void
7079 remote_flash_done (struct target_ops *ops)
7080 {
7081   int saved_remote_timeout = remote_timeout;
7082   int ret;
7083   struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7084                                           &saved_remote_timeout);
7085
7086   remote_timeout = remote_flash_timeout;
7087   ret = remote_send_printf ("vFlashDone");
7088   do_cleanups (back_to);
7089
7090   switch (ret)
7091     {
7092     case PACKET_UNKNOWN:
7093       error (_("Remote target does not support vFlashDone"));
7094     case PACKET_ERROR:
7095       error (_("Error finishing flash operation"));
7096     default:
7097       break;
7098     }
7099 }
7100
7101 static void
7102 remote_files_info (struct target_ops *ignore)
7103 {
7104   puts_filtered ("Debugging a target over a serial line.\n");
7105 }
7106 \f
7107 /* Stuff for dealing with the packets which are part of this protocol.
7108    See comment at top of file for details.  */
7109
7110 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
7111    error to higher layers.  Called when a serial error is detected.
7112    The exception message is STRING, followed by a colon and a blank,
7113    the system error message for errno at function entry and final dot
7114    for output compatibility with throw_perror_with_name.  */
7115
7116 static void
7117 unpush_and_perror (const char *string)
7118 {
7119   int saved_errno = errno;
7120
7121   remote_unpush_target ();
7122   throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
7123                safe_strerror (saved_errno));
7124 }
7125
7126 /* Read a single character from the remote end.  */
7127
7128 static int
7129 readchar (int timeout)
7130 {
7131   int ch;
7132
7133   ch = serial_readchar (remote_desc, timeout);
7134
7135   if (ch >= 0)
7136     return ch;
7137
7138   switch ((enum serial_rc) ch)
7139     {
7140     case SERIAL_EOF:
7141       remote_unpush_target ();
7142       throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
7143       /* no return */
7144     case SERIAL_ERROR:
7145       unpush_and_perror (_("Remote communication error.  "
7146                            "Target disconnected."));
7147       /* no return */
7148     case SERIAL_TIMEOUT:
7149       break;
7150     }
7151   return ch;
7152 }
7153
7154 /* Wrapper for serial_write that closes the target and throws if
7155    writing fails.  */
7156
7157 static void
7158 remote_serial_write (const char *str, int len)
7159 {
7160   if (serial_write (remote_desc, str, len))
7161     {
7162       unpush_and_perror (_("Remote communication error.  "
7163                            "Target disconnected."));
7164     }
7165 }
7166
7167 /* Send the command in *BUF to the remote machine, and read the reply
7168    into *BUF.  Report an error if we get an error reply.  Resize
7169    *BUF using xrealloc if necessary to hold the result, and update
7170    *SIZEOF_BUF.  */
7171
7172 static void
7173 remote_send (char **buf,
7174              long *sizeof_buf)
7175 {
7176   putpkt (*buf);
7177   getpkt (buf, sizeof_buf, 0);
7178
7179   if ((*buf)[0] == 'E')
7180     error (_("Remote failure reply: %s"), *buf);
7181 }
7182
7183 /* Return a pointer to an xmalloc'ed string representing an escaped
7184    version of BUF, of len N.  E.g. \n is converted to \\n, \t to \\t,
7185    etc.  The caller is responsible for releasing the returned
7186    memory.  */
7187
7188 static char *
7189 escape_buffer (const char *buf, int n)
7190 {
7191   struct cleanup *old_chain;
7192   struct ui_file *stb;
7193   char *str;
7194
7195   stb = mem_fileopen ();
7196   old_chain = make_cleanup_ui_file_delete (stb);
7197
7198   fputstrn_unfiltered (buf, n, 0, stb);
7199   str = ui_file_xstrdup (stb, NULL);
7200   do_cleanups (old_chain);
7201   return str;
7202 }
7203
7204 /* Display a null-terminated packet on stdout, for debugging, using C
7205    string notation.  */
7206
7207 static void
7208 print_packet (char *buf)
7209 {
7210   puts_filtered ("\"");
7211   fputstr_filtered (buf, '"', gdb_stdout);
7212   puts_filtered ("\"");
7213 }
7214
7215 int
7216 putpkt (char *buf)
7217 {
7218   return putpkt_binary (buf, strlen (buf));
7219 }
7220
7221 /* Send a packet to the remote machine, with error checking.  The data
7222    of the packet is in BUF.  The string in BUF can be at most
7223    get_remote_packet_size () - 5 to account for the $, # and checksum,
7224    and for a possible /0 if we are debugging (remote_debug) and want
7225    to print the sent packet as a string.  */
7226
7227 static int
7228 putpkt_binary (char *buf, int cnt)
7229 {
7230   struct remote_state *rs = get_remote_state ();
7231   int i;
7232   unsigned char csum = 0;
7233   char *buf2 = alloca (cnt + 6);
7234
7235   int ch;
7236   int tcount = 0;
7237   char *p;
7238   char *message;
7239
7240   /* Catch cases like trying to read memory or listing threads while
7241      we're waiting for a stop reply.  The remote server wouldn't be
7242      ready to handle this request, so we'd hang and timeout.  We don't
7243      have to worry about this in synchronous mode, because in that
7244      case it's not possible to issue a command while the target is
7245      running.  This is not a problem in non-stop mode, because in that
7246      case, the stub is always ready to process serial input.  */
7247   if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply)
7248     error (_("Cannot execute this command while the target is running."));
7249
7250   /* We're sending out a new packet.  Make sure we don't look at a
7251      stale cached response.  */
7252   rs->cached_wait_status = 0;
7253
7254   /* Copy the packet into buffer BUF2, encapsulating it
7255      and giving it a checksum.  */
7256
7257   p = buf2;
7258   *p++ = '$';
7259
7260   for (i = 0; i < cnt; i++)
7261     {
7262       csum += buf[i];
7263       *p++ = buf[i];
7264     }
7265   *p++ = '#';
7266   *p++ = tohex ((csum >> 4) & 0xf);
7267   *p++ = tohex (csum & 0xf);
7268
7269   /* Send it over and over until we get a positive ack.  */
7270
7271   while (1)
7272     {
7273       int started_error_output = 0;
7274
7275       if (remote_debug)
7276         {
7277           struct cleanup *old_chain;
7278           char *str;
7279
7280           *p = '\0';
7281           str = escape_buffer (buf2, p - buf2);
7282           old_chain = make_cleanup (xfree, str);
7283           fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
7284           gdb_flush (gdb_stdlog);
7285           do_cleanups (old_chain);
7286         }
7287       remote_serial_write (buf2, p - buf2);
7288
7289       /* If this is a no acks version of the remote protocol, send the
7290          packet and move on.  */
7291       if (rs->noack_mode)
7292         break;
7293
7294       /* Read until either a timeout occurs (-2) or '+' is read.
7295          Handle any notification that arrives in the mean time.  */
7296       while (1)
7297         {
7298           ch = readchar (remote_timeout);
7299
7300           if (remote_debug)
7301             {
7302               switch (ch)
7303                 {
7304                 case '+':
7305                 case '-':
7306                 case SERIAL_TIMEOUT:
7307                 case '$':
7308                 case '%':
7309                   if (started_error_output)
7310                     {
7311                       putchar_unfiltered ('\n');
7312                       started_error_output = 0;
7313                     }
7314                 }
7315             }
7316
7317           switch (ch)
7318             {
7319             case '+':
7320               if (remote_debug)
7321                 fprintf_unfiltered (gdb_stdlog, "Ack\n");
7322               return 1;
7323             case '-':
7324               if (remote_debug)
7325                 fprintf_unfiltered (gdb_stdlog, "Nak\n");
7326               /* FALLTHROUGH */
7327             case SERIAL_TIMEOUT:
7328               tcount++;
7329               if (tcount > 3)
7330                 return 0;
7331               break;            /* Retransmit buffer.  */
7332             case '$':
7333               {
7334                 if (remote_debug)
7335                   fprintf_unfiltered (gdb_stdlog,
7336                                       "Packet instead of Ack, ignoring it\n");
7337                 /* It's probably an old response sent because an ACK
7338                    was lost.  Gobble up the packet and ack it so it
7339                    doesn't get retransmitted when we resend this
7340                    packet.  */
7341                 skip_frame ();
7342                 remote_serial_write ("+", 1);
7343                 continue;       /* Now, go look for +.  */
7344               }
7345
7346             case '%':
7347               {
7348                 int val;
7349
7350                 /* If we got a notification, handle it, and go back to looking
7351                    for an ack.  */
7352                 /* We've found the start of a notification.  Now
7353                    collect the data.  */
7354                 val = read_frame (&rs->buf, &rs->buf_size);
7355                 if (val >= 0)
7356                   {
7357                     if (remote_debug)
7358                       {
7359                         struct cleanup *old_chain;
7360                         char *str;
7361
7362                         str = escape_buffer (rs->buf, val);
7363                         old_chain = make_cleanup (xfree, str);
7364                         fprintf_unfiltered (gdb_stdlog,
7365                                             "  Notification received: %s\n",
7366                                             str);
7367                         do_cleanups (old_chain);
7368                       }
7369                     handle_notification (rs->buf);
7370                     /* We're in sync now, rewait for the ack.  */
7371                     tcount = 0;
7372                   }
7373                 else
7374                   {
7375                     if (remote_debug)
7376                       {
7377                         if (!started_error_output)
7378                           {
7379                             started_error_output = 1;
7380                             fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
7381                           }
7382                         fputc_unfiltered (ch & 0177, gdb_stdlog);
7383                         fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
7384                       }
7385                   }
7386                 continue;
7387               }
7388               /* fall-through */
7389             default:
7390               if (remote_debug)
7391                 {
7392                   if (!started_error_output)
7393                     {
7394                       started_error_output = 1;
7395                       fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
7396                     }
7397                   fputc_unfiltered (ch & 0177, gdb_stdlog);
7398                 }
7399               continue;
7400             }
7401           break;                /* Here to retransmit.  */
7402         }
7403
7404 #if 0
7405       /* This is wrong.  If doing a long backtrace, the user should be
7406          able to get out next time we call QUIT, without anything as
7407          violent as interrupt_query.  If we want to provide a way out of
7408          here without getting to the next QUIT, it should be based on
7409          hitting ^C twice as in remote_wait.  */
7410       if (quit_flag)
7411         {
7412           quit_flag = 0;
7413           interrupt_query ();
7414         }
7415 #endif
7416     }
7417   return 0;
7418 }
7419
7420 /* Come here after finding the start of a frame when we expected an
7421    ack.  Do our best to discard the rest of this packet.  */
7422
7423 static void
7424 skip_frame (void)
7425 {
7426   int c;
7427
7428   while (1)
7429     {
7430       c = readchar (remote_timeout);
7431       switch (c)
7432         {
7433         case SERIAL_TIMEOUT:
7434           /* Nothing we can do.  */
7435           return;
7436         case '#':
7437           /* Discard the two bytes of checksum and stop.  */
7438           c = readchar (remote_timeout);
7439           if (c >= 0)
7440             c = readchar (remote_timeout);
7441
7442           return;
7443         case '*':               /* Run length encoding.  */
7444           /* Discard the repeat count.  */
7445           c = readchar (remote_timeout);
7446           if (c < 0)
7447             return;
7448           break;
7449         default:
7450           /* A regular character.  */
7451           break;
7452         }
7453     }
7454 }
7455
7456 /* Come here after finding the start of the frame.  Collect the rest
7457    into *BUF, verifying the checksum, length, and handling run-length
7458    compression.  NUL terminate the buffer.  If there is not enough room,
7459    expand *BUF using xrealloc.
7460
7461    Returns -1 on error, number of characters in buffer (ignoring the
7462    trailing NULL) on success. (could be extended to return one of the
7463    SERIAL status indications).  */
7464
7465 static long
7466 read_frame (char **buf_p,
7467             long *sizeof_buf)
7468 {
7469   unsigned char csum;
7470   long bc;
7471   int c;
7472   char *buf = *buf_p;
7473   struct remote_state *rs = get_remote_state ();
7474
7475   csum = 0;
7476   bc = 0;
7477
7478   while (1)
7479     {
7480       c = readchar (remote_timeout);
7481       switch (c)
7482         {
7483         case SERIAL_TIMEOUT:
7484           if (remote_debug)
7485             fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
7486           return -1;
7487         case '$':
7488           if (remote_debug)
7489             fputs_filtered ("Saw new packet start in middle of old one\n",
7490                             gdb_stdlog);
7491           return -1;            /* Start a new packet, count retries.  */
7492         case '#':
7493           {
7494             unsigned char pktcsum;
7495             int check_0 = 0;
7496             int check_1 = 0;
7497
7498             buf[bc] = '\0';
7499
7500             check_0 = readchar (remote_timeout);
7501             if (check_0 >= 0)
7502               check_1 = readchar (remote_timeout);
7503
7504             if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
7505               {
7506                 if (remote_debug)
7507                   fputs_filtered ("Timeout in checksum, retrying\n",
7508                                   gdb_stdlog);
7509                 return -1;
7510               }
7511             else if (check_0 < 0 || check_1 < 0)
7512               {
7513                 if (remote_debug)
7514                   fputs_filtered ("Communication error in checksum\n",
7515                                   gdb_stdlog);
7516                 return -1;
7517               }
7518
7519             /* Don't recompute the checksum; with no ack packets we
7520                don't have any way to indicate a packet retransmission
7521                is necessary.  */
7522             if (rs->noack_mode)
7523               return bc;
7524
7525             pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
7526             if (csum == pktcsum)
7527               return bc;
7528
7529             if (remote_debug)
7530               {
7531                 struct cleanup *old_chain;
7532                 char *str;
7533
7534                 str = escape_buffer (buf, bc);
7535                 old_chain = make_cleanup (xfree, str);
7536                 fprintf_unfiltered (gdb_stdlog,
7537                                     "Bad checksum, sentsum=0x%x, "
7538                                     "csum=0x%x, buf=%s\n",
7539                                     pktcsum, csum, str);
7540                 do_cleanups (old_chain);
7541               }
7542             /* Number of characters in buffer ignoring trailing
7543                NULL.  */
7544             return -1;
7545           }
7546         case '*':               /* Run length encoding.  */
7547           {
7548             int repeat;
7549
7550             csum += c;
7551             c = readchar (remote_timeout);
7552             csum += c;
7553             repeat = c - ' ' + 3;       /* Compute repeat count.  */
7554
7555             /* The character before ``*'' is repeated.  */
7556
7557             if (repeat > 0 && repeat <= 255 && bc > 0)
7558               {
7559                 if (bc + repeat - 1 >= *sizeof_buf - 1)
7560                   {
7561                     /* Make some more room in the buffer.  */
7562                     *sizeof_buf += repeat;
7563                     *buf_p = xrealloc (*buf_p, *sizeof_buf);
7564                     buf = *buf_p;
7565                   }
7566
7567                 memset (&buf[bc], buf[bc - 1], repeat);
7568                 bc += repeat;
7569                 continue;
7570               }
7571
7572             buf[bc] = '\0';
7573             printf_filtered (_("Invalid run length encoding: %s\n"), buf);
7574             return -1;
7575           }
7576         default:
7577           if (bc >= *sizeof_buf - 1)
7578             {
7579               /* Make some more room in the buffer.  */
7580               *sizeof_buf *= 2;
7581               *buf_p = xrealloc (*buf_p, *sizeof_buf);
7582               buf = *buf_p;
7583             }
7584
7585           buf[bc++] = c;
7586           csum += c;
7587           continue;
7588         }
7589     }
7590 }
7591
7592 /* Read a packet from the remote machine, with error checking, and
7593    store it in *BUF.  Resize *BUF using xrealloc if necessary to hold
7594    the result, and update *SIZEOF_BUF.  If FOREVER, wait forever
7595    rather than timing out; this is used (in synchronous mode) to wait
7596    for a target that is is executing user code to stop.  */
7597 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
7598    don't have to change all the calls to getpkt to deal with the
7599    return value, because at the moment I don't know what the right
7600    thing to do it for those.  */
7601 void
7602 getpkt (char **buf,
7603         long *sizeof_buf,
7604         int forever)
7605 {
7606   int timed_out;
7607
7608   timed_out = getpkt_sane (buf, sizeof_buf, forever);
7609 }
7610
7611
7612 /* Read a packet from the remote machine, with error checking, and
7613    store it in *BUF.  Resize *BUF using xrealloc if necessary to hold
7614    the result, and update *SIZEOF_BUF.  If FOREVER, wait forever
7615    rather than timing out; this is used (in synchronous mode) to wait
7616    for a target that is is executing user code to stop.  If FOREVER ==
7617    0, this function is allowed to time out gracefully and return an
7618    indication of this to the caller.  Otherwise return the number of
7619    bytes read.  If EXPECTING_NOTIF, consider receiving a notification
7620    enough reason to return to the caller.  *IS_NOTIF is an output
7621    boolean that indicates whether *BUF holds a notification or not
7622    (a regular packet).  */
7623
7624 static int
7625 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
7626                         int expecting_notif, int *is_notif)
7627 {
7628   struct remote_state *rs = get_remote_state ();
7629   int c;
7630   int tries;
7631   int timeout;
7632   int val = -1;
7633
7634   /* We're reading a new response.  Make sure we don't look at a
7635      previously cached response.  */
7636   rs->cached_wait_status = 0;
7637
7638   strcpy (*buf, "timeout");
7639
7640   if (forever)
7641     timeout = watchdog > 0 ? watchdog : -1;
7642   else if (expecting_notif)
7643     timeout = 0; /* There should already be a char in the buffer.  If
7644                     not, bail out.  */
7645   else
7646     timeout = remote_timeout;
7647
7648 #define MAX_TRIES 3
7649
7650   /* Process any number of notifications, and then return when
7651      we get a packet.  */
7652   for (;;)
7653     {
7654       /* If we get a timeout or bad checksm, retry up to MAX_TRIES
7655          times.  */
7656       for (tries = 1; tries <= MAX_TRIES; tries++)
7657         {
7658           /* This can loop forever if the remote side sends us
7659              characters continuously, but if it pauses, we'll get
7660              SERIAL_TIMEOUT from readchar because of timeout.  Then
7661              we'll count that as a retry.
7662
7663              Note that even when forever is set, we will only wait
7664              forever prior to the start of a packet.  After that, we
7665              expect characters to arrive at a brisk pace.  They should
7666              show up within remote_timeout intervals.  */
7667           do
7668             c = readchar (timeout);
7669           while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
7670
7671           if (c == SERIAL_TIMEOUT)
7672             {
7673               if (expecting_notif)
7674                 return -1; /* Don't complain, it's normal to not get
7675                               anything in this case.  */
7676
7677               if (forever)      /* Watchdog went off?  Kill the target.  */
7678                 {
7679                   QUIT;
7680                   remote_unpush_target ();
7681                   throw_error (TARGET_CLOSE_ERROR,
7682                                _("Watchdog timeout has expired.  "
7683                                  "Target detached."));
7684                 }
7685               if (remote_debug)
7686                 fputs_filtered ("Timed out.\n", gdb_stdlog);
7687             }
7688           else
7689             {
7690               /* We've found the start of a packet or notification.
7691                  Now collect the data.  */
7692               val = read_frame (buf, sizeof_buf);
7693               if (val >= 0)
7694                 break;
7695             }
7696
7697           remote_serial_write ("-", 1);
7698         }
7699
7700       if (tries > MAX_TRIES)
7701         {
7702           /* We have tried hard enough, and just can't receive the
7703              packet/notification.  Give up.  */
7704           printf_unfiltered (_("Ignoring packet error, continuing...\n"));
7705
7706           /* Skip the ack char if we're in no-ack mode.  */
7707           if (!rs->noack_mode)
7708             remote_serial_write ("+", 1);
7709           return -1;
7710         }
7711
7712       /* If we got an ordinary packet, return that to our caller.  */
7713       if (c == '$')
7714         {
7715           if (remote_debug)
7716             {
7717              struct cleanup *old_chain;
7718              char *str;
7719
7720              str = escape_buffer (*buf, val);
7721              old_chain = make_cleanup (xfree, str);
7722              fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
7723              do_cleanups (old_chain);
7724             }
7725
7726           /* Skip the ack char if we're in no-ack mode.  */
7727           if (!rs->noack_mode)
7728             remote_serial_write ("+", 1);
7729           if (is_notif != NULL)
7730             *is_notif = 0;
7731           return val;
7732         }
7733
7734        /* If we got a notification, handle it, and go back to looking
7735          for a packet.  */
7736       else
7737         {
7738           gdb_assert (c == '%');
7739
7740           if (remote_debug)
7741             {
7742               struct cleanup *old_chain;
7743               char *str;
7744
7745               str = escape_buffer (*buf, val);
7746               old_chain = make_cleanup (xfree, str);
7747               fprintf_unfiltered (gdb_stdlog,
7748                                   "  Notification received: %s\n",
7749                                   str);
7750               do_cleanups (old_chain);
7751             }
7752           if (is_notif != NULL)
7753             *is_notif = 1;
7754
7755           handle_notification (*buf);
7756
7757           /* Notifications require no acknowledgement.  */
7758
7759           if (expecting_notif)
7760             return val;
7761         }
7762     }
7763 }
7764
7765 static int
7766 getpkt_sane (char **buf, long *sizeof_buf, int forever)
7767 {
7768   return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
7769 }
7770
7771 static int
7772 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
7773                       int *is_notif)
7774 {
7775   return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
7776                                  is_notif);
7777 }
7778
7779 \f
7780 /* A helper function that just calls putpkt; for type correctness.  */
7781
7782 static int
7783 putpkt_for_catch_errors (void *arg)
7784 {
7785   return putpkt (arg);
7786 }
7787
7788 static void
7789 remote_kill (struct target_ops *ops)
7790 {
7791   /* Use catch_errors so the user can quit from gdb even when we
7792      aren't on speaking terms with the remote system.  */
7793   catch_errors (putpkt_for_catch_errors, "k", "", RETURN_MASK_ERROR);
7794
7795   /* Don't wait for it to die.  I'm not really sure it matters whether
7796      we do or not.  For the existing stubs, kill is a noop.  */
7797   target_mourn_inferior ();
7798 }
7799
7800 static int
7801 remote_vkill (int pid, struct remote_state *rs)
7802 {
7803   if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7804     return -1;
7805
7806   /* Tell the remote target to detach.  */
7807   xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
7808   putpkt (rs->buf);
7809   getpkt (&rs->buf, &rs->buf_size, 0);
7810
7811   if (packet_ok (rs->buf,
7812                  &remote_protocol_packets[PACKET_vKill]) == PACKET_OK)
7813     return 0;
7814   else if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7815     return -1;
7816   else
7817     return 1;
7818 }
7819
7820 static void
7821 extended_remote_kill (struct target_ops *ops)
7822 {
7823   int res;
7824   int pid = ptid_get_pid (inferior_ptid);
7825   struct remote_state *rs = get_remote_state ();
7826
7827   res = remote_vkill (pid, rs);
7828   if (res == -1 && !(rs->extended && remote_multi_process_p (rs)))
7829     {
7830       /* Don't try 'k' on a multi-process aware stub -- it has no way
7831          to specify the pid.  */
7832
7833       putpkt ("k");
7834 #if 0
7835       getpkt (&rs->buf, &rs->buf_size, 0);
7836       if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
7837         res = 1;
7838 #else
7839       /* Don't wait for it to die.  I'm not really sure it matters whether
7840          we do or not.  For the existing stubs, kill is a noop.  */
7841       res = 0;
7842 #endif
7843     }
7844
7845   if (res != 0)
7846     error (_("Can't kill process"));
7847
7848   target_mourn_inferior ();
7849 }
7850
7851 static void
7852 remote_mourn (struct target_ops *ops)
7853 {
7854   remote_mourn_1 (ops);
7855 }
7856
7857 /* Worker function for remote_mourn.  */
7858 static void
7859 remote_mourn_1 (struct target_ops *target)
7860 {
7861   unpush_target (target);
7862
7863   /* remote_close takes care of doing most of the clean up.  */
7864   generic_mourn_inferior ();
7865 }
7866
7867 static void
7868 extended_remote_mourn_1 (struct target_ops *target)
7869 {
7870   struct remote_state *rs = get_remote_state ();
7871
7872   /* In case we got here due to an error, but we're going to stay
7873      connected.  */
7874   rs->waiting_for_stop_reply = 0;
7875
7876   /* If the current general thread belonged to the process we just
7877      detached from or has exited, the remote side current general
7878      thread becomes undefined.  Considering a case like this:
7879
7880      - We just got here due to a detach.
7881      - The process that we're detaching from happens to immediately
7882        report a global breakpoint being hit in non-stop mode, in the
7883        same thread we had selected before.
7884      - GDB attaches to this process again.
7885      - This event happens to be the next event we handle.
7886
7887      GDB would consider that the current general thread didn't need to
7888      be set on the stub side (with Hg), since for all it knew,
7889      GENERAL_THREAD hadn't changed.
7890
7891      Notice that although in all-stop mode, the remote server always
7892      sets the current thread to the thread reporting the stop event,
7893      that doesn't happen in non-stop mode; in non-stop, the stub *must
7894      not* change the current thread when reporting a breakpoint hit,
7895      due to the decoupling of event reporting and event handling.
7896
7897      To keep things simple, we always invalidate our notion of the
7898      current thread.  */
7899   record_currthread (minus_one_ptid);
7900
7901   /* Unlike "target remote", we do not want to unpush the target; then
7902      the next time the user says "run", we won't be connected.  */
7903
7904   /* Call common code to mark the inferior as not running.      */
7905   generic_mourn_inferior ();
7906
7907   if (!have_inferiors ())
7908     {
7909       if (!remote_multi_process_p (rs))
7910         {
7911           /* Check whether the target is running now - some remote stubs
7912              automatically restart after kill.  */
7913           putpkt ("?");
7914           getpkt (&rs->buf, &rs->buf_size, 0);
7915
7916           if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
7917             {
7918               /* Assume that the target has been restarted.  Set
7919                  inferior_ptid so that bits of core GDB realizes
7920                  there's something here, e.g., so that the user can
7921                  say "kill" again.  */
7922               inferior_ptid = magic_null_ptid;
7923             }
7924         }
7925     }
7926 }
7927
7928 static void
7929 extended_remote_mourn (struct target_ops *ops)
7930 {
7931   extended_remote_mourn_1 (ops);
7932 }
7933
7934 static int
7935 extended_remote_supports_disable_randomization (void)
7936 {
7937   return (remote_protocol_packets[PACKET_QDisableRandomization].support
7938           == PACKET_ENABLE);
7939 }
7940
7941 static void
7942 extended_remote_disable_randomization (int val)
7943 {
7944   struct remote_state *rs = get_remote_state ();
7945   char *reply;
7946
7947   xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
7948              val);
7949   putpkt (rs->buf);
7950   reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
7951   if (*reply == '\0')
7952     error (_("Target does not support QDisableRandomization."));
7953   if (strcmp (reply, "OK") != 0)
7954     error (_("Bogus QDisableRandomization reply from target: %s"), reply);
7955 }
7956
7957 static int
7958 extended_remote_run (char *args)
7959 {
7960   struct remote_state *rs = get_remote_state ();
7961   int len;
7962
7963   /* If the user has disabled vRun support, or we have detected that
7964      support is not available, do not try it.  */
7965   if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
7966     return -1;
7967
7968   strcpy (rs->buf, "vRun;");
7969   len = strlen (rs->buf);
7970
7971   if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
7972     error (_("Remote file name too long for run packet"));
7973   len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
7974
7975   gdb_assert (args != NULL);
7976   if (*args)
7977     {
7978       struct cleanup *back_to;
7979       int i;
7980       char **argv;
7981
7982       argv = gdb_buildargv (args);
7983       back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
7984       for (i = 0; argv[i] != NULL; i++)
7985         {
7986           if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
7987             error (_("Argument list too long for run packet"));
7988           rs->buf[len++] = ';';
7989           len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
7990         }
7991       do_cleanups (back_to);
7992     }
7993
7994   rs->buf[len++] = '\0';
7995
7996   putpkt (rs->buf);
7997   getpkt (&rs->buf, &rs->buf_size, 0);
7998
7999   if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
8000     {
8001       /* We have a wait response.  All is well.  */
8002       return 0;
8003     }
8004   else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
8005     /* It wasn't disabled before, but it is now.  */
8006     return -1;
8007   else
8008     {
8009       if (remote_exec_file[0] == '\0')
8010         error (_("Running the default executable on the remote target failed; "
8011                  "try \"set remote exec-file\"?"));
8012       else
8013         error (_("Running \"%s\" on the remote target failed"),
8014                remote_exec_file);
8015     }
8016 }
8017
8018 /* In the extended protocol we want to be able to do things like
8019    "run" and have them basically work as expected.  So we need
8020    a special create_inferior function.  We support changing the
8021    executable file and the command line arguments, but not the
8022    environment.  */
8023
8024 static void
8025 extended_remote_create_inferior_1 (char *exec_file, char *args,
8026                                    char **env, int from_tty)
8027 {
8028   int run_worked;
8029   char *stop_reply;
8030   struct remote_state *rs = get_remote_state ();
8031
8032   /* If running asynchronously, register the target file descriptor
8033      with the event loop.  */
8034   if (target_can_async_p ())
8035     target_async (inferior_event_handler, 0);
8036
8037   /* Disable address space randomization if requested (and supported).  */
8038   if (extended_remote_supports_disable_randomization ())
8039     extended_remote_disable_randomization (disable_randomization);
8040
8041   /* Now restart the remote server.  */
8042   run_worked = extended_remote_run (args) != -1;
8043   if (!run_worked)
8044     {
8045       /* vRun was not supported.  Fail if we need it to do what the
8046          user requested.  */
8047       if (remote_exec_file[0])
8048         error (_("Remote target does not support \"set remote exec-file\""));
8049       if (args[0])
8050         error (_("Remote target does not support \"set args\" or run <ARGS>"));
8051
8052       /* Fall back to "R".  */
8053       extended_remote_restart ();
8054     }
8055
8056   if (!have_inferiors ())
8057     {
8058       /* Clean up from the last time we ran, before we mark the target
8059          running again.  This will mark breakpoints uninserted, and
8060          get_offsets may insert breakpoints.  */
8061       init_thread_list ();
8062       init_wait_for_inferior ();
8063     }
8064
8065   /* vRun's success return is a stop reply.  */
8066   stop_reply = run_worked ? rs->buf : NULL;
8067   add_current_inferior_and_thread (stop_reply);
8068
8069   /* Get updated offsets, if the stub uses qOffsets.  */
8070   get_offsets ();
8071 }
8072
8073 static void
8074 extended_remote_create_inferior (struct target_ops *ops, 
8075                                  char *exec_file, char *args,
8076                                  char **env, int from_tty)
8077 {
8078   extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
8079 }
8080 \f
8081
8082 /* Given a location's target info BP_TGT and the packet buffer BUF,  output
8083    the list of conditions (in agent expression bytecode format), if any, the
8084    target needs to evaluate.  The output is placed into the packet buffer
8085    started from BUF and ended at BUF_END.  */
8086
8087 static int
8088 remote_add_target_side_condition (struct gdbarch *gdbarch,
8089                                   struct bp_target_info *bp_tgt, char *buf,
8090                                   char *buf_end)
8091 {
8092   struct agent_expr *aexpr = NULL;
8093   int i, ix;
8094   char *pkt;
8095   char *buf_start = buf;
8096
8097   if (VEC_empty (agent_expr_p, bp_tgt->conditions))
8098     return 0;
8099
8100   buf += strlen (buf);
8101   xsnprintf (buf, buf_end - buf, "%s", ";");
8102   buf++;
8103
8104   /* Send conditions to the target and free the vector.  */
8105   for (ix = 0;
8106        VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr);
8107        ix++)
8108     {
8109       xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
8110       buf += strlen (buf);
8111       for (i = 0; i < aexpr->len; ++i)
8112         buf = pack_hex_byte (buf, aexpr->buf[i]);
8113       *buf = '\0';
8114     }
8115
8116   VEC_free (agent_expr_p, bp_tgt->conditions);
8117   return 0;
8118 }
8119
8120 static void
8121 remote_add_target_side_commands (struct gdbarch *gdbarch,
8122                                  struct bp_target_info *bp_tgt, char *buf)
8123 {
8124   struct agent_expr *aexpr = NULL;
8125   int i, ix;
8126
8127   if (VEC_empty (agent_expr_p, bp_tgt->tcommands))
8128     return;
8129
8130   buf += strlen (buf);
8131
8132   sprintf (buf, ";cmds:%x,", bp_tgt->persist);
8133   buf += strlen (buf);
8134
8135   /* Concatenate all the agent expressions that are commands into the
8136      cmds parameter.  */
8137   for (ix = 0;
8138        VEC_iterate (agent_expr_p, bp_tgt->tcommands, ix, aexpr);
8139        ix++)
8140     {
8141       sprintf (buf, "X%x,", aexpr->len);
8142       buf += strlen (buf);
8143       for (i = 0; i < aexpr->len; ++i)
8144         buf = pack_hex_byte (buf, aexpr->buf[i]);
8145       *buf = '\0';
8146     }
8147
8148   VEC_free (agent_expr_p, bp_tgt->tcommands);
8149 }
8150
8151 /* Insert a breakpoint.  On targets that have software breakpoint
8152    support, we ask the remote target to do the work; on targets
8153    which don't, we insert a traditional memory breakpoint.  */
8154
8155 static int
8156 remote_insert_breakpoint (struct gdbarch *gdbarch,
8157                           struct bp_target_info *bp_tgt)
8158 {
8159   /* Try the "Z" s/w breakpoint packet if it is not already disabled.
8160      If it succeeds, then set the support to PACKET_ENABLE.  If it
8161      fails, and the user has explicitly requested the Z support then
8162      report an error, otherwise, mark it disabled and go on.  */
8163
8164   if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
8165     {
8166       CORE_ADDR addr = bp_tgt->placed_address;
8167       struct remote_state *rs;
8168       char *p, *endbuf;
8169       int bpsize;
8170       struct condition_list *cond = NULL;
8171
8172       /* Make sure the remote is pointing at the right process, if
8173          necessary.  */
8174       if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8175         set_general_process ();
8176
8177       gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
8178
8179       rs = get_remote_state ();
8180       p = rs->buf;
8181       endbuf = rs->buf + get_remote_packet_size ();
8182
8183       *(p++) = 'Z';
8184       *(p++) = '0';
8185       *(p++) = ',';
8186       addr = (ULONGEST) remote_address_masked (addr);
8187       p += hexnumstr (p, addr);
8188       xsnprintf (p, endbuf - p, ",%d", bpsize);
8189
8190       if (remote_supports_cond_breakpoints ())
8191         remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
8192
8193       if (remote_can_run_breakpoint_commands ())
8194         remote_add_target_side_commands (gdbarch, bp_tgt, p);
8195
8196       putpkt (rs->buf);
8197       getpkt (&rs->buf, &rs->buf_size, 0);
8198
8199       switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
8200         {
8201         case PACKET_ERROR:
8202           return -1;
8203         case PACKET_OK:
8204           bp_tgt->placed_address = addr;
8205           bp_tgt->placed_size = bpsize;
8206           return 0;
8207         case PACKET_UNKNOWN:
8208           break;
8209         }
8210     }
8211
8212   return memory_insert_breakpoint (gdbarch, bp_tgt);
8213 }
8214
8215 static int
8216 remote_remove_breakpoint (struct gdbarch *gdbarch,
8217                           struct bp_target_info *bp_tgt)
8218 {
8219   CORE_ADDR addr = bp_tgt->placed_address;
8220   struct remote_state *rs = get_remote_state ();
8221
8222   if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
8223     {
8224       char *p = rs->buf;
8225       char *endbuf = rs->buf + get_remote_packet_size ();
8226
8227       /* Make sure the remote is pointing at the right process, if
8228          necessary.  */
8229       if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8230         set_general_process ();
8231
8232       *(p++) = 'z';
8233       *(p++) = '0';
8234       *(p++) = ',';
8235
8236       addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
8237       p += hexnumstr (p, addr);
8238       xsnprintf (p, endbuf - p, ",%d", bp_tgt->placed_size);
8239
8240       putpkt (rs->buf);
8241       getpkt (&rs->buf, &rs->buf_size, 0);
8242
8243       return (rs->buf[0] == 'E');
8244     }
8245
8246   return memory_remove_breakpoint (gdbarch, bp_tgt);
8247 }
8248
8249 static int
8250 watchpoint_to_Z_packet (int type)
8251 {
8252   switch (type)
8253     {
8254     case hw_write:
8255       return Z_PACKET_WRITE_WP;
8256       break;
8257     case hw_read:
8258       return Z_PACKET_READ_WP;
8259       break;
8260     case hw_access:
8261       return Z_PACKET_ACCESS_WP;
8262       break;
8263     default:
8264       internal_error (__FILE__, __LINE__,
8265                       _("hw_bp_to_z: bad watchpoint type %d"), type);
8266     }
8267 }
8268
8269 static int
8270 remote_insert_watchpoint (CORE_ADDR addr, int len, int type,
8271                           struct expression *cond)
8272 {
8273   struct remote_state *rs = get_remote_state ();
8274   char *endbuf = rs->buf + get_remote_packet_size ();
8275   char *p;
8276   enum Z_packet_type packet = watchpoint_to_Z_packet (type);
8277
8278   if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
8279     return 1;
8280
8281   /* Make sure the remote is pointing at the right process, if
8282      necessary.  */
8283   if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8284     set_general_process ();
8285
8286   xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
8287   p = strchr (rs->buf, '\0');
8288   addr = remote_address_masked (addr);
8289   p += hexnumstr (p, (ULONGEST) addr);
8290   xsnprintf (p, endbuf - p, ",%x", len);
8291
8292   putpkt (rs->buf);
8293   getpkt (&rs->buf, &rs->buf_size, 0);
8294
8295   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
8296     {
8297     case PACKET_ERROR:
8298       return -1;
8299     case PACKET_UNKNOWN:
8300       return 1;
8301     case PACKET_OK:
8302       return 0;
8303     }
8304   internal_error (__FILE__, __LINE__,
8305                   _("remote_insert_watchpoint: reached end of function"));
8306 }
8307
8308 static int
8309 remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
8310                                      CORE_ADDR start, int length)
8311 {
8312   CORE_ADDR diff = remote_address_masked (addr - start);
8313
8314   return diff < length;
8315 }
8316
8317
8318 static int
8319 remote_remove_watchpoint (CORE_ADDR addr, int len, int type,
8320                           struct expression *cond)
8321 {
8322   struct remote_state *rs = get_remote_state ();
8323   char *endbuf = rs->buf + get_remote_packet_size ();
8324   char *p;
8325   enum Z_packet_type packet = watchpoint_to_Z_packet (type);
8326
8327   if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
8328     return -1;
8329
8330   /* Make sure the remote is pointing at the right process, if
8331      necessary.  */
8332   if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8333     set_general_process ();
8334
8335   xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
8336   p = strchr (rs->buf, '\0');
8337   addr = remote_address_masked (addr);
8338   p += hexnumstr (p, (ULONGEST) addr);
8339   xsnprintf (p, endbuf - p, ",%x", len);
8340   putpkt (rs->buf);
8341   getpkt (&rs->buf, &rs->buf_size, 0);
8342
8343   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
8344     {
8345     case PACKET_ERROR:
8346     case PACKET_UNKNOWN:
8347       return -1;
8348     case PACKET_OK:
8349       return 0;
8350     }
8351   internal_error (__FILE__, __LINE__,
8352                   _("remote_remove_watchpoint: reached end of function"));
8353 }
8354
8355
8356 int remote_hw_watchpoint_limit = -1;
8357 int remote_hw_watchpoint_length_limit = -1;
8358 int remote_hw_breakpoint_limit = -1;
8359
8360 static int
8361 remote_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
8362 {
8363   if (remote_hw_watchpoint_length_limit == 0)
8364     return 0;
8365   else if (remote_hw_watchpoint_length_limit < 0)
8366     return 1;
8367   else if (len <= remote_hw_watchpoint_length_limit)
8368     return 1;
8369   else
8370     return 0;
8371 }
8372
8373 static int
8374 remote_check_watch_resources (int type, int cnt, int ot)
8375 {
8376   if (type == bp_hardware_breakpoint)
8377     {
8378       if (remote_hw_breakpoint_limit == 0)
8379         return 0;
8380       else if (remote_hw_breakpoint_limit < 0)
8381         return 1;
8382       else if (cnt <= remote_hw_breakpoint_limit)
8383         return 1;
8384     }
8385   else
8386     {
8387       if (remote_hw_watchpoint_limit == 0)
8388         return 0;
8389       else if (remote_hw_watchpoint_limit < 0)
8390         return 1;
8391       else if (ot)
8392         return -1;
8393       else if (cnt <= remote_hw_watchpoint_limit)
8394         return 1;
8395     }
8396   return -1;
8397 }
8398
8399 static int
8400 remote_stopped_by_watchpoint (void)
8401 {
8402   return remote_stopped_by_watchpoint_p;
8403 }
8404
8405 static int
8406 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
8407 {
8408   int rc = 0;
8409
8410   if (remote_stopped_by_watchpoint ())
8411     {
8412       *addr_p = remote_watch_data_address;
8413       rc = 1;
8414     }
8415
8416   return rc;
8417 }
8418
8419
8420 static int
8421 remote_insert_hw_breakpoint (struct gdbarch *gdbarch,
8422                              struct bp_target_info *bp_tgt)
8423 {
8424   CORE_ADDR addr;
8425   struct remote_state *rs;
8426   char *p, *endbuf;
8427   char *message;
8428
8429   /* The length field should be set to the size of a breakpoint
8430      instruction, even though we aren't inserting one ourselves.  */
8431
8432   gdbarch_remote_breakpoint_from_pc
8433     (gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
8434
8435   if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
8436     return -1;
8437
8438   /* Make sure the remote is pointing at the right process, if
8439      necessary.  */
8440   if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8441     set_general_process ();
8442
8443   rs = get_remote_state ();
8444   p = rs->buf;
8445   endbuf = rs->buf + get_remote_packet_size ();
8446
8447   *(p++) = 'Z';
8448   *(p++) = '1';
8449   *(p++) = ',';
8450
8451   addr = remote_address_masked (bp_tgt->placed_address);
8452   p += hexnumstr (p, (ULONGEST) addr);
8453   xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size);
8454
8455   if (remote_supports_cond_breakpoints ())
8456     remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
8457
8458   if (remote_can_run_breakpoint_commands ())
8459     remote_add_target_side_commands (gdbarch, bp_tgt, p);
8460
8461   putpkt (rs->buf);
8462   getpkt (&rs->buf, &rs->buf_size, 0);
8463
8464   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
8465     {
8466     case PACKET_ERROR:
8467       if (rs->buf[1] == '.')
8468         {
8469           message = strchr (rs->buf + 2, '.');
8470           if (message)
8471             error (_("Remote failure reply: %s"), message + 1);
8472         }
8473       return -1;
8474     case PACKET_UNKNOWN:
8475       return -1;
8476     case PACKET_OK:
8477       return 0;
8478     }
8479   internal_error (__FILE__, __LINE__,
8480                   _("remote_insert_hw_breakpoint: reached end of function"));
8481 }
8482
8483
8484 static int
8485 remote_remove_hw_breakpoint (struct gdbarch *gdbarch,
8486                              struct bp_target_info *bp_tgt)
8487 {
8488   CORE_ADDR addr;
8489   struct remote_state *rs = get_remote_state ();
8490   char *p = rs->buf;
8491   char *endbuf = rs->buf + get_remote_packet_size ();
8492
8493   if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
8494     return -1;
8495
8496   /* Make sure the remote is pointing at the right process, if
8497      necessary.  */
8498   if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8499     set_general_process ();
8500
8501   *(p++) = 'z';
8502   *(p++) = '1';
8503   *(p++) = ',';
8504
8505   addr = remote_address_masked (bp_tgt->placed_address);
8506   p += hexnumstr (p, (ULONGEST) addr);
8507   xsnprintf (p, endbuf  - p, ",%x", bp_tgt->placed_size);
8508
8509   putpkt (rs->buf);
8510   getpkt (&rs->buf, &rs->buf_size, 0);
8511
8512   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
8513     {
8514     case PACKET_ERROR:
8515     case PACKET_UNKNOWN:
8516       return -1;
8517     case PACKET_OK:
8518       return 0;
8519     }
8520   internal_error (__FILE__, __LINE__,
8521                   _("remote_remove_hw_breakpoint: reached end of function"));
8522 }
8523
8524 /* Table used by the crc32 function to calcuate the checksum.  */
8525
8526 static unsigned long crc32_table[256] =
8527 {0, 0};
8528
8529 static unsigned long
8530 crc32 (const unsigned char *buf, int len, unsigned int crc)
8531 {
8532   if (!crc32_table[1])
8533     {
8534       /* Initialize the CRC table and the decoding table.  */
8535       int i, j;
8536       unsigned int c;
8537
8538       for (i = 0; i < 256; i++)
8539         {
8540           for (c = i << 24, j = 8; j > 0; --j)
8541             c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
8542           crc32_table[i] = c;
8543         }
8544     }
8545
8546   while (len--)
8547     {
8548       crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
8549       buf++;
8550     }
8551   return crc;
8552 }
8553
8554 /* Verify memory using the "qCRC:" request.  */
8555
8556 static int
8557 remote_verify_memory (struct target_ops *ops,
8558                       const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
8559 {
8560   struct remote_state *rs = get_remote_state ();
8561   unsigned long host_crc, target_crc;
8562   char *tmp;
8563
8564   /* Make sure the remote is pointing at the right process.  */
8565   set_general_process ();
8566
8567   /* FIXME: assumes lma can fit into long.  */
8568   xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
8569              (long) lma, (long) size);
8570   putpkt (rs->buf);
8571
8572   /* Be clever; compute the host_crc before waiting for target
8573      reply.  */
8574   host_crc = crc32 (data, size, 0xffffffff);
8575
8576   getpkt (&rs->buf, &rs->buf_size, 0);
8577   if (rs->buf[0] == 'E')
8578     return -1;
8579
8580   if (rs->buf[0] != 'C')
8581     error (_("remote target does not support this operation"));
8582
8583   for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
8584     target_crc = target_crc * 16 + fromhex (*tmp);
8585
8586   return (host_crc == target_crc);
8587 }
8588
8589 /* compare-sections command
8590
8591    With no arguments, compares each loadable section in the exec bfd
8592    with the same memory range on the target, and reports mismatches.
8593    Useful for verifying the image on the target against the exec file.  */
8594
8595 static void
8596 compare_sections_command (char *args, int from_tty)
8597 {
8598   asection *s;
8599   struct cleanup *old_chain;
8600   gdb_byte *sectdata;
8601   const char *sectname;
8602   bfd_size_type size;
8603   bfd_vma lma;
8604   int matched = 0;
8605   int mismatched = 0;
8606   int res;
8607
8608   if (!exec_bfd)
8609     error (_("command cannot be used without an exec file"));
8610
8611   /* Make sure the remote is pointing at the right process.  */
8612   set_general_process ();
8613
8614   for (s = exec_bfd->sections; s; s = s->next)
8615     {
8616       if (!(s->flags & SEC_LOAD))
8617         continue;               /* Skip non-loadable section.  */
8618
8619       size = bfd_get_section_size (s);
8620       if (size == 0)
8621         continue;               /* Skip zero-length section.  */
8622
8623       sectname = bfd_get_section_name (exec_bfd, s);
8624       if (args && strcmp (args, sectname) != 0)
8625         continue;               /* Not the section selected by user.  */
8626
8627       matched = 1;              /* Do this section.  */
8628       lma = s->lma;
8629
8630       sectdata = xmalloc (size);
8631       old_chain = make_cleanup (xfree, sectdata);
8632       bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
8633
8634       res = target_verify_memory (sectdata, lma, size);
8635
8636       if (res == -1)
8637         error (_("target memory fault, section %s, range %s -- %s"), sectname,
8638                paddress (target_gdbarch (), lma),
8639                paddress (target_gdbarch (), lma + size));
8640
8641       printf_filtered ("Section %s, range %s -- %s: ", sectname,
8642                        paddress (target_gdbarch (), lma),
8643                        paddress (target_gdbarch (), lma + size));
8644       if (res)
8645         printf_filtered ("matched.\n");
8646       else
8647         {
8648           printf_filtered ("MIS-MATCHED!\n");
8649           mismatched++;
8650         }
8651
8652       do_cleanups (old_chain);
8653     }
8654   if (mismatched > 0)
8655     warning (_("One or more sections of the remote executable does not match\n\
8656 the loaded file\n"));
8657   if (args && !matched)
8658     printf_filtered (_("No loaded section named '%s'.\n"), args);
8659 }
8660
8661 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
8662    into remote target.  The number of bytes written to the remote
8663    target is returned, or -1 for error.  */
8664
8665 static LONGEST
8666 remote_write_qxfer (struct target_ops *ops, const char *object_name,
8667                     const char *annex, const gdb_byte *writebuf, 
8668                     ULONGEST offset, LONGEST len, 
8669                     struct packet_config *packet)
8670 {
8671   int i, buf_len;
8672   ULONGEST n;
8673   struct remote_state *rs = get_remote_state ();
8674   int max_size = get_memory_write_packet_size (); 
8675
8676   if (packet->support == PACKET_DISABLE)
8677     return -1;
8678
8679   /* Insert header.  */
8680   i = snprintf (rs->buf, max_size, 
8681                 "qXfer:%s:write:%s:%s:",
8682                 object_name, annex ? annex : "",
8683                 phex_nz (offset, sizeof offset));
8684   max_size -= (i + 1);
8685
8686   /* Escape as much data as fits into rs->buf.  */
8687   buf_len = remote_escape_output 
8688     (writebuf, len, (gdb_byte *) rs->buf + i, &max_size, max_size);
8689
8690   if (putpkt_binary (rs->buf, i + buf_len) < 0
8691       || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
8692       || packet_ok (rs->buf, packet) != PACKET_OK)
8693     return -1;
8694
8695   unpack_varlen_hex (rs->buf, &n);
8696   return n;
8697 }
8698
8699 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
8700    Data at OFFSET, of up to LEN bytes, is read into READBUF; the
8701    number of bytes read is returned, or 0 for EOF, or -1 for error.
8702    The number of bytes read may be less than LEN without indicating an
8703    EOF.  PACKET is checked and updated to indicate whether the remote
8704    target supports this object.  */
8705
8706 static LONGEST
8707 remote_read_qxfer (struct target_ops *ops, const char *object_name,
8708                    const char *annex,
8709                    gdb_byte *readbuf, ULONGEST offset, LONGEST len,
8710                    struct packet_config *packet)
8711 {
8712   static char *finished_object;
8713   static char *finished_annex;
8714   static ULONGEST finished_offset;
8715
8716   struct remote_state *rs = get_remote_state ();
8717   LONGEST i, n, packet_len;
8718
8719   if (packet->support == PACKET_DISABLE)
8720     return -1;
8721
8722   /* Check whether we've cached an end-of-object packet that matches
8723      this request.  */
8724   if (finished_object)
8725     {
8726       if (strcmp (object_name, finished_object) == 0
8727           && strcmp (annex ? annex : "", finished_annex) == 0
8728           && offset == finished_offset)
8729         return 0;
8730
8731       /* Otherwise, we're now reading something different.  Discard
8732          the cache.  */
8733       xfree (finished_object);
8734       xfree (finished_annex);
8735       finished_object = NULL;
8736       finished_annex = NULL;
8737     }
8738
8739   /* Request only enough to fit in a single packet.  The actual data
8740      may not, since we don't know how much of it will need to be escaped;
8741      the target is free to respond with slightly less data.  We subtract
8742      five to account for the response type and the protocol frame.  */
8743   n = min (get_remote_packet_size () - 5, len);
8744   snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
8745             object_name, annex ? annex : "",
8746             phex_nz (offset, sizeof offset),
8747             phex_nz (n, sizeof n));
8748   i = putpkt (rs->buf);
8749   if (i < 0)
8750     return -1;
8751
8752   rs->buf[0] = '\0';
8753   packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
8754   if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
8755     return -1;
8756
8757   if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8758     error (_("Unknown remote qXfer reply: %s"), rs->buf);
8759
8760   /* 'm' means there is (or at least might be) more data after this
8761      batch.  That does not make sense unless there's at least one byte
8762      of data in this reply.  */
8763   if (rs->buf[0] == 'm' && packet_len == 1)
8764     error (_("Remote qXfer reply contained no data."));
8765
8766   /* Got some data.  */
8767   i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
8768                              packet_len - 1, readbuf, n);
8769
8770   /* 'l' is an EOF marker, possibly including a final block of data,
8771      or possibly empty.  If we have the final block of a non-empty
8772      object, record this fact to bypass a subsequent partial read.  */
8773   if (rs->buf[0] == 'l' && offset + i > 0)
8774     {
8775       finished_object = xstrdup (object_name);
8776       finished_annex = xstrdup (annex ? annex : "");
8777       finished_offset = offset + i;
8778     }
8779
8780   return i;
8781 }
8782
8783 static LONGEST
8784 remote_xfer_partial (struct target_ops *ops, enum target_object object,
8785                      const char *annex, gdb_byte *readbuf,
8786                      const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
8787 {
8788   struct remote_state *rs;
8789   int i;
8790   char *p2;
8791   char query_type;
8792
8793   set_remote_traceframe ();
8794   set_general_thread (inferior_ptid);
8795
8796   rs = get_remote_state ();
8797
8798   /* Handle memory using the standard memory routines.  */
8799   if (object == TARGET_OBJECT_MEMORY)
8800     {
8801       int xfered;
8802
8803       errno = 0;
8804
8805       /* If the remote target is connected but not running, we should
8806          pass this request down to a lower stratum (e.g. the executable
8807          file).  */
8808       if (!target_has_execution)
8809         return 0;
8810
8811       if (writebuf != NULL)
8812         xfered = remote_write_bytes (offset, writebuf, len);
8813       else
8814         xfered = remote_read_bytes (offset, readbuf, len);
8815
8816       if (xfered > 0)
8817         return xfered;
8818       else if (xfered == 0 && errno == 0)
8819         return 0;
8820       else
8821         return -1;
8822     }
8823
8824   /* Handle SPU memory using qxfer packets.  */
8825   if (object == TARGET_OBJECT_SPU)
8826     {
8827       if (readbuf)
8828         return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
8829                                   &remote_protocol_packets
8830                                     [PACKET_qXfer_spu_read]);
8831       else
8832         return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
8833                                    &remote_protocol_packets
8834                                      [PACKET_qXfer_spu_write]);
8835     }
8836
8837   /* Handle extra signal info using qxfer packets.  */
8838   if (object == TARGET_OBJECT_SIGNAL_INFO)
8839     {
8840       if (readbuf)
8841         return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
8842                                   &remote_protocol_packets
8843                                   [PACKET_qXfer_siginfo_read]);
8844       else
8845         return remote_write_qxfer (ops, "siginfo", annex,
8846                                    writebuf, offset, len,
8847                                    &remote_protocol_packets
8848                                    [PACKET_qXfer_siginfo_write]);
8849     }
8850
8851   if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
8852     {
8853       if (readbuf)
8854         return remote_read_qxfer (ops, "statictrace", annex,
8855                                   readbuf, offset, len,
8856                                   &remote_protocol_packets
8857                                   [PACKET_qXfer_statictrace_read]);
8858       else
8859         return -1;
8860     }
8861
8862   /* Only handle flash writes.  */
8863   if (writebuf != NULL)
8864     {
8865       LONGEST xfered;
8866
8867       switch (object)
8868         {
8869         case TARGET_OBJECT_FLASH:
8870           xfered = remote_flash_write (ops, offset, len, writebuf);
8871
8872           if (xfered > 0)
8873             return xfered;
8874           else if (xfered == 0 && errno == 0)
8875             return 0;
8876           else
8877             return -1;
8878
8879         default:
8880           return -1;
8881         }
8882     }
8883
8884   /* Map pre-existing objects onto letters.  DO NOT do this for new
8885      objects!!!  Instead specify new query packets.  */
8886   switch (object)
8887     {
8888     case TARGET_OBJECT_AVR:
8889       query_type = 'R';
8890       break;
8891
8892     case TARGET_OBJECT_AUXV:
8893       gdb_assert (annex == NULL);
8894       return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
8895                                 &remote_protocol_packets[PACKET_qXfer_auxv]);
8896
8897     case TARGET_OBJECT_AVAILABLE_FEATURES:
8898       return remote_read_qxfer
8899         (ops, "features", annex, readbuf, offset, len,
8900          &remote_protocol_packets[PACKET_qXfer_features]);
8901
8902     case TARGET_OBJECT_LIBRARIES:
8903       return remote_read_qxfer
8904         (ops, "libraries", annex, readbuf, offset, len,
8905          &remote_protocol_packets[PACKET_qXfer_libraries]);
8906
8907     case TARGET_OBJECT_LIBRARIES_SVR4:
8908       return remote_read_qxfer
8909         (ops, "libraries-svr4", annex, readbuf, offset, len,
8910          &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
8911
8912     case TARGET_OBJECT_MEMORY_MAP:
8913       gdb_assert (annex == NULL);
8914       return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
8915                                 &remote_protocol_packets[PACKET_qXfer_memory_map]);
8916
8917     case TARGET_OBJECT_OSDATA:
8918       /* Should only get here if we're connected.  */
8919       gdb_assert (remote_desc);
8920       return remote_read_qxfer
8921        (ops, "osdata", annex, readbuf, offset, len,
8922         &remote_protocol_packets[PACKET_qXfer_osdata]);
8923
8924     case TARGET_OBJECT_THREADS:
8925       gdb_assert (annex == NULL);
8926       return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
8927                                 &remote_protocol_packets[PACKET_qXfer_threads]);
8928
8929     case TARGET_OBJECT_TRACEFRAME_INFO:
8930       gdb_assert (annex == NULL);
8931       return remote_read_qxfer
8932         (ops, "traceframe-info", annex, readbuf, offset, len,
8933          &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
8934
8935     case TARGET_OBJECT_FDPIC:
8936       return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
8937                                 &remote_protocol_packets[PACKET_qXfer_fdpic]);
8938
8939     case TARGET_OBJECT_OPENVMS_UIB:
8940       return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
8941                                 &remote_protocol_packets[PACKET_qXfer_uib]);
8942
8943     case TARGET_OBJECT_BTRACE:
8944       return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
8945         &remote_protocol_packets[PACKET_qXfer_btrace]);
8946
8947     default:
8948       return -1;
8949     }
8950
8951   /* Note: a zero OFFSET and LEN can be used to query the minimum
8952      buffer size.  */
8953   if (offset == 0 && len == 0)
8954     return (get_remote_packet_size ());
8955   /* Minimum outbuf size is get_remote_packet_size ().  If LEN is not
8956      large enough let the caller deal with it.  */
8957   if (len < get_remote_packet_size ())
8958     return -1;
8959   len = get_remote_packet_size ();
8960
8961   /* Except for querying the minimum buffer size, target must be open.  */
8962   if (!remote_desc)
8963     error (_("remote query is only available after target open"));
8964
8965   gdb_assert (annex != NULL);
8966   gdb_assert (readbuf != NULL);
8967
8968   p2 = rs->buf;
8969   *p2++ = 'q';
8970   *p2++ = query_type;
8971
8972   /* We used one buffer char for the remote protocol q command and
8973      another for the query type.  As the remote protocol encapsulation
8974      uses 4 chars plus one extra in case we are debugging
8975      (remote_debug), we have PBUFZIZ - 7 left to pack the query
8976      string.  */
8977   i = 0;
8978   while (annex[i] && (i < (get_remote_packet_size () - 8)))
8979     {
8980       /* Bad caller may have sent forbidden characters.  */
8981       gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
8982       *p2++ = annex[i];
8983       i++;
8984     }
8985   *p2 = '\0';
8986   gdb_assert (annex[i] == '\0');
8987
8988   i = putpkt (rs->buf);
8989   if (i < 0)
8990     return i;
8991
8992   getpkt (&rs->buf, &rs->buf_size, 0);
8993   strcpy ((char *) readbuf, rs->buf);
8994
8995   return strlen ((char *) readbuf);
8996 }
8997
8998 static int
8999 remote_search_memory (struct target_ops* ops,
9000                       CORE_ADDR start_addr, ULONGEST search_space_len,
9001                       const gdb_byte *pattern, ULONGEST pattern_len,
9002                       CORE_ADDR *found_addrp)
9003 {
9004   int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
9005   struct remote_state *rs = get_remote_state ();
9006   int max_size = get_memory_write_packet_size ();
9007   struct packet_config *packet =
9008     &remote_protocol_packets[PACKET_qSearch_memory];
9009   /* Number of packet bytes used to encode the pattern;
9010      this could be more than PATTERN_LEN due to escape characters.  */
9011   int escaped_pattern_len;
9012   /* Amount of pattern that was encodable in the packet.  */
9013   int used_pattern_len;
9014   int i;
9015   int found;
9016   ULONGEST found_addr;
9017
9018   /* Don't go to the target if we don't have to.
9019      This is done before checking packet->support to avoid the possibility that
9020      a success for this edge case means the facility works in general.  */
9021   if (pattern_len > search_space_len)
9022     return 0;
9023   if (pattern_len == 0)
9024     {
9025       *found_addrp = start_addr;
9026       return 1;
9027     }
9028
9029   /* If we already know the packet isn't supported, fall back to the simple
9030      way of searching memory.  */
9031
9032   if (packet->support == PACKET_DISABLE)
9033     {
9034       /* Target doesn't provided special support, fall back and use the
9035          standard support (copy memory and do the search here).  */
9036       return simple_search_memory (ops, start_addr, search_space_len,
9037                                    pattern, pattern_len, found_addrp);
9038     }
9039
9040   /* Make sure the remote is pointing at the right process.  */
9041   set_general_process ();
9042
9043   /* Insert header.  */
9044   i = snprintf (rs->buf, max_size, 
9045                 "qSearch:memory:%s;%s;",
9046                 phex_nz (start_addr, addr_size),
9047                 phex_nz (search_space_len, sizeof (search_space_len)));
9048   max_size -= (i + 1);
9049
9050   /* Escape as much data as fits into rs->buf.  */
9051   escaped_pattern_len =
9052     remote_escape_output (pattern, pattern_len, (gdb_byte *) rs->buf + i,
9053                           &used_pattern_len, max_size);
9054
9055   /* Bail if the pattern is too large.  */
9056   if (used_pattern_len != pattern_len)
9057     error (_("Pattern is too large to transmit to remote target."));
9058
9059   if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
9060       || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
9061       || packet_ok (rs->buf, packet) != PACKET_OK)
9062     {
9063       /* The request may not have worked because the command is not
9064          supported.  If so, fall back to the simple way.  */
9065       if (packet->support == PACKET_DISABLE)
9066         {
9067           return simple_search_memory (ops, start_addr, search_space_len,
9068                                        pattern, pattern_len, found_addrp);
9069         }
9070       return -1;
9071     }
9072
9073   if (rs->buf[0] == '0')
9074     found = 0;
9075   else if (rs->buf[0] == '1')
9076     {
9077       found = 1;
9078       if (rs->buf[1] != ',')
9079         error (_("Unknown qSearch:memory reply: %s"), rs->buf);
9080       unpack_varlen_hex (rs->buf + 2, &found_addr);
9081       *found_addrp = found_addr;
9082     }
9083   else
9084     error (_("Unknown qSearch:memory reply: %s"), rs->buf);
9085
9086   return found;
9087 }
9088
9089 static void
9090 remote_rcmd (char *command,
9091              struct ui_file *outbuf)
9092 {
9093   struct remote_state *rs = get_remote_state ();
9094   char *p = rs->buf;
9095
9096   if (!remote_desc)
9097     error (_("remote rcmd is only available after target open"));
9098
9099   /* Send a NULL command across as an empty command.  */
9100   if (command == NULL)
9101     command = "";
9102
9103   /* The query prefix.  */
9104   strcpy (rs->buf, "qRcmd,");
9105   p = strchr (rs->buf, '\0');
9106
9107   if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
9108       > get_remote_packet_size ())
9109     error (_("\"monitor\" command ``%s'' is too long."), command);
9110
9111   /* Encode the actual command.  */
9112   bin2hex ((gdb_byte *) command, p, 0);
9113
9114   if (putpkt (rs->buf) < 0)
9115     error (_("Communication problem with target."));
9116
9117   /* get/display the response */
9118   while (1)
9119     {
9120       char *buf;
9121
9122       /* XXX - see also remote_get_noisy_reply().  */
9123       QUIT;                     /* Allow user to bail out with ^C.  */
9124       rs->buf[0] = '\0';
9125       if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
9126         { 
9127           /* Timeout.  Continue to (try to) read responses.
9128              This is better than stopping with an error, assuming the stub
9129              is still executing the (long) monitor command.
9130              If needed, the user can interrupt gdb using C-c, obtaining
9131              an effect similar to stop on timeout.  */
9132           continue;
9133         }
9134       buf = rs->buf;
9135       if (buf[0] == '\0')
9136         error (_("Target does not support this command."));
9137       if (buf[0] == 'O' && buf[1] != 'K')
9138         {
9139           remote_console_output (buf + 1); /* 'O' message from stub.  */
9140           continue;
9141         }
9142       if (strcmp (buf, "OK") == 0)
9143         break;
9144       if (strlen (buf) == 3 && buf[0] == 'E'
9145           && isdigit (buf[1]) && isdigit (buf[2]))
9146         {
9147           error (_("Protocol error with Rcmd"));
9148         }
9149       for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
9150         {
9151           char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
9152
9153           fputc_unfiltered (c, outbuf);
9154         }
9155       break;
9156     }
9157 }
9158
9159 static VEC(mem_region_s) *
9160 remote_memory_map (struct target_ops *ops)
9161 {
9162   VEC(mem_region_s) *result = NULL;
9163   char *text = target_read_stralloc (&current_target,
9164                                      TARGET_OBJECT_MEMORY_MAP, NULL);
9165
9166   if (text)
9167     {
9168       struct cleanup *back_to = make_cleanup (xfree, text);
9169
9170       result = parse_memory_map (text);
9171       do_cleanups (back_to);
9172     }
9173
9174   return result;
9175 }
9176
9177 static void
9178 packet_command (char *args, int from_tty)
9179 {
9180   struct remote_state *rs = get_remote_state ();
9181
9182   if (!remote_desc)
9183     error (_("command can only be used with remote target"));
9184
9185   if (!args)
9186     error (_("remote-packet command requires packet text as argument"));
9187
9188   puts_filtered ("sending: ");
9189   print_packet (args);
9190   puts_filtered ("\n");
9191   putpkt (args);
9192
9193   getpkt (&rs->buf, &rs->buf_size, 0);
9194   puts_filtered ("received: ");
9195   print_packet (rs->buf);
9196   puts_filtered ("\n");
9197 }
9198
9199 #if 0
9200 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
9201
9202 static void display_thread_info (struct gdb_ext_thread_info *info);
9203
9204 static void threadset_test_cmd (char *cmd, int tty);
9205
9206 static void threadalive_test (char *cmd, int tty);
9207
9208 static void threadlist_test_cmd (char *cmd, int tty);
9209
9210 int get_and_display_threadinfo (threadref *ref);
9211
9212 static void threadinfo_test_cmd (char *cmd, int tty);
9213
9214 static int thread_display_step (threadref *ref, void *context);
9215
9216 static void threadlist_update_test_cmd (char *cmd, int tty);
9217
9218 static void init_remote_threadtests (void);
9219
9220 #define SAMPLE_THREAD  0x05060708       /* Truncated 64 bit threadid.  */
9221
9222 static void
9223 threadset_test_cmd (char *cmd, int tty)
9224 {
9225   int sample_thread = SAMPLE_THREAD;
9226
9227   printf_filtered (_("Remote threadset test\n"));
9228   set_general_thread (sample_thread);
9229 }
9230
9231
9232 static void
9233 threadalive_test (char *cmd, int tty)
9234 {
9235   int sample_thread = SAMPLE_THREAD;
9236   int pid = ptid_get_pid (inferior_ptid);
9237   ptid_t ptid = ptid_build (pid, 0, sample_thread);
9238
9239   if (remote_thread_alive (ptid))
9240     printf_filtered ("PASS: Thread alive test\n");
9241   else
9242     printf_filtered ("FAIL: Thread alive test\n");
9243 }
9244
9245 void output_threadid (char *title, threadref *ref);
9246
9247 void
9248 output_threadid (char *title, threadref *ref)
9249 {
9250   char hexid[20];
9251
9252   pack_threadid (&hexid[0], ref);       /* Convert threead id into hex.  */
9253   hexid[16] = 0;
9254   printf_filtered ("%s  %s\n", title, (&hexid[0]));
9255 }
9256
9257 static void
9258 threadlist_test_cmd (char *cmd, int tty)
9259 {
9260   int startflag = 1;
9261   threadref nextthread;
9262   int done, result_count;
9263   threadref threadlist[3];
9264
9265   printf_filtered ("Remote Threadlist test\n");
9266   if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
9267                               &result_count, &threadlist[0]))
9268     printf_filtered ("FAIL: threadlist test\n");
9269   else
9270     {
9271       threadref *scan = threadlist;
9272       threadref *limit = scan + result_count;
9273
9274       while (scan < limit)
9275         output_threadid (" thread ", scan++);
9276     }
9277 }
9278
9279 void
9280 display_thread_info (struct gdb_ext_thread_info *info)
9281 {
9282   output_threadid ("Threadid: ", &info->threadid);
9283   printf_filtered ("Name: %s\n ", info->shortname);
9284   printf_filtered ("State: %s\n", info->display);
9285   printf_filtered ("other: %s\n\n", info->more_display);
9286 }
9287
9288 int
9289 get_and_display_threadinfo (threadref *ref)
9290 {
9291   int result;
9292   int set;
9293   struct gdb_ext_thread_info threadinfo;
9294
9295   set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
9296     | TAG_MOREDISPLAY | TAG_DISPLAY;
9297   if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
9298     display_thread_info (&threadinfo);
9299   return result;
9300 }
9301
9302 static void
9303 threadinfo_test_cmd (char *cmd, int tty)
9304 {
9305   int athread = SAMPLE_THREAD;
9306   threadref thread;
9307   int set;
9308
9309   int_to_threadref (&thread, athread);
9310   printf_filtered ("Remote Threadinfo test\n");
9311   if (!get_and_display_threadinfo (&thread))
9312     printf_filtered ("FAIL cannot get thread info\n");
9313 }
9314
9315 static int
9316 thread_display_step (threadref *ref, void *context)
9317 {
9318   /* output_threadid(" threadstep ",ref); *//* simple test */
9319   return get_and_display_threadinfo (ref);
9320 }
9321
9322 static void
9323 threadlist_update_test_cmd (char *cmd, int tty)
9324 {
9325   printf_filtered ("Remote Threadlist update test\n");
9326   remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
9327 }
9328
9329 static void
9330 init_remote_threadtests (void)
9331 {
9332   add_com ("tlist", class_obscure, threadlist_test_cmd,
9333            _("Fetch and print the remote list of "
9334              "thread identifiers, one pkt only"));
9335   add_com ("tinfo", class_obscure, threadinfo_test_cmd,
9336            _("Fetch and display info about one thread"));
9337   add_com ("tset", class_obscure, threadset_test_cmd,
9338            _("Test setting to a different thread"));
9339   add_com ("tupd", class_obscure, threadlist_update_test_cmd,
9340            _("Iterate through updating all remote thread info"));
9341   add_com ("talive", class_obscure, threadalive_test,
9342            _(" Remote thread alive test "));
9343 }
9344
9345 #endif /* 0 */
9346
9347 /* Convert a thread ID to a string.  Returns the string in a static
9348    buffer.  */
9349
9350 static char *
9351 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
9352 {
9353   static char buf[64];
9354   struct remote_state *rs = get_remote_state ();
9355
9356   if (ptid_equal (ptid, null_ptid))
9357     return normal_pid_to_str (ptid);
9358   else if (ptid_is_pid (ptid))
9359     {
9360       /* Printing an inferior target id.  */
9361
9362       /* When multi-process extensions are off, there's no way in the
9363          remote protocol to know the remote process id, if there's any
9364          at all.  There's one exception --- when we're connected with
9365          target extended-remote, and we manually attached to a process
9366          with "attach PID".  We don't record anywhere a flag that
9367          allows us to distinguish that case from the case of
9368          connecting with extended-remote and the stub already being
9369          attached to a process, and reporting yes to qAttached, hence
9370          no smart special casing here.  */
9371       if (!remote_multi_process_p (rs))
9372         {
9373           xsnprintf (buf, sizeof buf, "Remote target");
9374           return buf;
9375         }
9376
9377       return normal_pid_to_str (ptid);
9378     }
9379   else
9380     {
9381       if (ptid_equal (magic_null_ptid, ptid))
9382         xsnprintf (buf, sizeof buf, "Thread <main>");
9383       else if (rs->extended && remote_multi_process_p (rs))
9384         xsnprintf (buf, sizeof buf, "Thread %d.%ld",
9385                    ptid_get_pid (ptid), ptid_get_tid (ptid));
9386       else
9387         xsnprintf (buf, sizeof buf, "Thread %ld",
9388                    ptid_get_tid (ptid));
9389       return buf;
9390     }
9391 }
9392
9393 /* Get the address of the thread local variable in OBJFILE which is
9394    stored at OFFSET within the thread local storage for thread PTID.  */
9395
9396 static CORE_ADDR
9397 remote_get_thread_local_address (struct target_ops *ops,
9398                                  ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
9399 {
9400   if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
9401     {
9402       struct remote_state *rs = get_remote_state ();
9403       char *p = rs->buf;
9404       char *endp = rs->buf + get_remote_packet_size ();
9405       enum packet_result result;
9406
9407       strcpy (p, "qGetTLSAddr:");
9408       p += strlen (p);
9409       p = write_ptid (p, endp, ptid);
9410       *p++ = ',';
9411       p += hexnumstr (p, offset);
9412       *p++ = ',';
9413       p += hexnumstr (p, lm);
9414       *p++ = '\0';
9415
9416       putpkt (rs->buf);
9417       getpkt (&rs->buf, &rs->buf_size, 0);
9418       result = packet_ok (rs->buf,
9419                           &remote_protocol_packets[PACKET_qGetTLSAddr]);
9420       if (result == PACKET_OK)
9421         {
9422           ULONGEST result;
9423
9424           unpack_varlen_hex (rs->buf, &result);
9425           return result;
9426         }
9427       else if (result == PACKET_UNKNOWN)
9428         throw_error (TLS_GENERIC_ERROR,
9429                      _("Remote target doesn't support qGetTLSAddr packet"));
9430       else
9431         throw_error (TLS_GENERIC_ERROR,
9432                      _("Remote target failed to process qGetTLSAddr request"));
9433     }
9434   else
9435     throw_error (TLS_GENERIC_ERROR,
9436                  _("TLS not supported or disabled on this target"));
9437   /* Not reached.  */
9438   return 0;
9439 }
9440
9441 /* Provide thread local base, i.e. Thread Information Block address.
9442    Returns 1 if ptid is found and thread_local_base is non zero.  */
9443
9444 static int
9445 remote_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
9446 {
9447   if (remote_protocol_packets[PACKET_qGetTIBAddr].support != PACKET_DISABLE)
9448     {
9449       struct remote_state *rs = get_remote_state ();
9450       char *p = rs->buf;
9451       char *endp = rs->buf + get_remote_packet_size ();
9452       enum packet_result result;
9453
9454       strcpy (p, "qGetTIBAddr:");
9455       p += strlen (p);
9456       p = write_ptid (p, endp, ptid);
9457       *p++ = '\0';
9458
9459       putpkt (rs->buf);
9460       getpkt (&rs->buf, &rs->buf_size, 0);
9461       result = packet_ok (rs->buf,
9462                           &remote_protocol_packets[PACKET_qGetTIBAddr]);
9463       if (result == PACKET_OK)
9464         {
9465           ULONGEST result;
9466
9467           unpack_varlen_hex (rs->buf, &result);
9468           if (addr)
9469             *addr = (CORE_ADDR) result;
9470           return 1;
9471         }
9472       else if (result == PACKET_UNKNOWN)
9473         error (_("Remote target doesn't support qGetTIBAddr packet"));
9474       else
9475         error (_("Remote target failed to process qGetTIBAddr request"));
9476     }
9477   else
9478     error (_("qGetTIBAddr not supported or disabled on this target"));
9479   /* Not reached.  */
9480   return 0;
9481 }
9482
9483 /* Support for inferring a target description based on the current
9484    architecture and the size of a 'g' packet.  While the 'g' packet
9485    can have any size (since optional registers can be left off the
9486    end), some sizes are easily recognizable given knowledge of the
9487    approximate architecture.  */
9488
9489 struct remote_g_packet_guess
9490 {
9491   int bytes;
9492   const struct target_desc *tdesc;
9493 };
9494 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
9495 DEF_VEC_O(remote_g_packet_guess_s);
9496
9497 struct remote_g_packet_data
9498 {
9499   VEC(remote_g_packet_guess_s) *guesses;
9500 };
9501
9502 static struct gdbarch_data *remote_g_packet_data_handle;
9503
9504 static void *
9505 remote_g_packet_data_init (struct obstack *obstack)
9506 {
9507   return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
9508 }
9509
9510 void
9511 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
9512                                 const struct target_desc *tdesc)
9513 {
9514   struct remote_g_packet_data *data
9515     = gdbarch_data (gdbarch, remote_g_packet_data_handle);
9516   struct remote_g_packet_guess new_guess, *guess;
9517   int ix;
9518
9519   gdb_assert (tdesc != NULL);
9520
9521   for (ix = 0;
9522        VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
9523        ix++)
9524     if (guess->bytes == bytes)
9525       internal_error (__FILE__, __LINE__,
9526                       _("Duplicate g packet description added for size %d"),
9527                       bytes);
9528
9529   new_guess.bytes = bytes;
9530   new_guess.tdesc = tdesc;
9531   VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
9532 }
9533
9534 /* Return 1 if remote_read_description would do anything on this target
9535    and architecture, 0 otherwise.  */
9536
9537 static int
9538 remote_read_description_p (struct target_ops *target)
9539 {
9540   struct remote_g_packet_data *data
9541     = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle);
9542
9543   if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
9544     return 1;
9545
9546   return 0;
9547 }
9548
9549 static const struct target_desc *
9550 remote_read_description (struct target_ops *target)
9551 {
9552   struct remote_g_packet_data *data
9553     = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle);
9554
9555   /* Do not try this during initial connection, when we do not know
9556      whether there is a running but stopped thread.  */
9557   if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
9558     return NULL;
9559
9560   if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
9561     {
9562       struct remote_g_packet_guess *guess;
9563       int ix;
9564       int bytes = send_g_packet ();
9565
9566       for (ix = 0;
9567            VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
9568            ix++)
9569         if (guess->bytes == bytes)
9570           return guess->tdesc;
9571
9572       /* We discard the g packet.  A minor optimization would be to
9573          hold on to it, and fill the register cache once we have selected
9574          an architecture, but it's too tricky to do safely.  */
9575     }
9576
9577   return NULL;
9578 }
9579
9580 /* Remote file transfer support.  This is host-initiated I/O, not
9581    target-initiated; for target-initiated, see remote-fileio.c.  */
9582
9583 /* If *LEFT is at least the length of STRING, copy STRING to
9584    *BUFFER, update *BUFFER to point to the new end of the buffer, and
9585    decrease *LEFT.  Otherwise raise an error.  */
9586
9587 static void
9588 remote_buffer_add_string (char **buffer, int *left, char *string)
9589 {
9590   int len = strlen (string);
9591
9592   if (len > *left)
9593     error (_("Packet too long for target."));
9594
9595   memcpy (*buffer, string, len);
9596   *buffer += len;
9597   *left -= len;
9598
9599   /* NUL-terminate the buffer as a convenience, if there is
9600      room.  */
9601   if (*left)
9602     **buffer = '\0';
9603 }
9604
9605 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
9606    *BUFFER, update *BUFFER to point to the new end of the buffer, and
9607    decrease *LEFT.  Otherwise raise an error.  */
9608
9609 static void
9610 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
9611                          int len)
9612 {
9613   if (2 * len > *left)
9614     error (_("Packet too long for target."));
9615
9616   bin2hex (bytes, *buffer, len);
9617   *buffer += 2 * len;
9618   *left -= 2 * len;
9619
9620   /* NUL-terminate the buffer as a convenience, if there is
9621      room.  */
9622   if (*left)
9623     **buffer = '\0';
9624 }
9625
9626 /* If *LEFT is large enough, convert VALUE to hex and add it to
9627    *BUFFER, update *BUFFER to point to the new end of the buffer, and
9628    decrease *LEFT.  Otherwise raise an error.  */
9629
9630 static void
9631 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
9632 {
9633   int len = hexnumlen (value);
9634
9635   if (len > *left)
9636     error (_("Packet too long for target."));
9637
9638   hexnumstr (*buffer, value);
9639   *buffer += len;
9640   *left -= len;
9641
9642   /* NUL-terminate the buffer as a convenience, if there is
9643      room.  */
9644   if (*left)
9645     **buffer = '\0';
9646 }
9647
9648 /* Parse an I/O result packet from BUFFER.  Set RETCODE to the return
9649    value, *REMOTE_ERRNO to the remote error number or zero if none
9650    was included, and *ATTACHMENT to point to the start of the annex
9651    if any.  The length of the packet isn't needed here; there may
9652    be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
9653
9654    Return 0 if the packet could be parsed, -1 if it could not.  If
9655    -1 is returned, the other variables may not be initialized.  */
9656
9657 static int
9658 remote_hostio_parse_result (char *buffer, int *retcode,
9659                             int *remote_errno, char **attachment)
9660 {
9661   char *p, *p2;
9662
9663   *remote_errno = 0;
9664   *attachment = NULL;
9665
9666   if (buffer[0] != 'F')
9667     return -1;
9668
9669   errno = 0;
9670   *retcode = strtol (&buffer[1], &p, 16);
9671   if (errno != 0 || p == &buffer[1])
9672     return -1;
9673
9674   /* Check for ",errno".  */
9675   if (*p == ',')
9676     {
9677       errno = 0;
9678       *remote_errno = strtol (p + 1, &p2, 16);
9679       if (errno != 0 || p + 1 == p2)
9680         return -1;
9681       p = p2;
9682     }
9683
9684   /* Check for ";attachment".  If there is no attachment, the
9685      packet should end here.  */
9686   if (*p == ';')
9687     {
9688       *attachment = p + 1;
9689       return 0;
9690     }
9691   else if (*p == '\0')
9692     return 0;
9693   else
9694     return -1;
9695 }
9696
9697 /* Send a prepared I/O packet to the target and read its response.
9698    The prepared packet is in the global RS->BUF before this function
9699    is called, and the answer is there when we return.
9700
9701    COMMAND_BYTES is the length of the request to send, which may include
9702    binary data.  WHICH_PACKET is the packet configuration to check
9703    before attempting a packet.  If an error occurs, *REMOTE_ERRNO
9704    is set to the error number and -1 is returned.  Otherwise the value
9705    returned by the function is returned.
9706
9707    ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
9708    attachment is expected; an error will be reported if there's a
9709    mismatch.  If one is found, *ATTACHMENT will be set to point into
9710    the packet buffer and *ATTACHMENT_LEN will be set to the
9711    attachment's length.  */
9712
9713 static int
9714 remote_hostio_send_command (int command_bytes, int which_packet,
9715                             int *remote_errno, char **attachment,
9716                             int *attachment_len)
9717 {
9718   struct remote_state *rs = get_remote_state ();
9719   int ret, bytes_read;
9720   char *attachment_tmp;
9721
9722   if (!remote_desc
9723       || remote_protocol_packets[which_packet].support == PACKET_DISABLE)
9724     {
9725       *remote_errno = FILEIO_ENOSYS;
9726       return -1;
9727     }
9728
9729   putpkt_binary (rs->buf, command_bytes);
9730   bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
9731
9732   /* If it timed out, something is wrong.  Don't try to parse the
9733      buffer.  */
9734   if (bytes_read < 0)
9735     {
9736       *remote_errno = FILEIO_EINVAL;
9737       return -1;
9738     }
9739
9740   switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
9741     {
9742     case PACKET_ERROR:
9743       *remote_errno = FILEIO_EINVAL;
9744       return -1;
9745     case PACKET_UNKNOWN:
9746       *remote_errno = FILEIO_ENOSYS;
9747       return -1;
9748     case PACKET_OK:
9749       break;
9750     }
9751
9752   if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
9753                                   &attachment_tmp))
9754     {
9755       *remote_errno = FILEIO_EINVAL;
9756       return -1;
9757     }
9758
9759   /* Make sure we saw an attachment if and only if we expected one.  */
9760   if ((attachment_tmp == NULL && attachment != NULL)
9761       || (attachment_tmp != NULL && attachment == NULL))
9762     {
9763       *remote_errno = FILEIO_EINVAL;
9764       return -1;
9765     }
9766
9767   /* If an attachment was found, it must point into the packet buffer;
9768      work out how many bytes there were.  */
9769   if (attachment_tmp != NULL)
9770     {
9771       *attachment = attachment_tmp;
9772       *attachment_len = bytes_read - (*attachment - rs->buf);
9773     }
9774
9775   return ret;
9776 }
9777
9778 /* Open FILENAME on the remote target, using FLAGS and MODE.  Return a
9779    remote file descriptor, or -1 if an error occurs (and set
9780    *REMOTE_ERRNO).  */
9781
9782 static int
9783 remote_hostio_open (const char *filename, int flags, int mode,
9784                     int *remote_errno)
9785 {
9786   struct remote_state *rs = get_remote_state ();
9787   char *p = rs->buf;
9788   int left = get_remote_packet_size () - 1;
9789
9790   remote_buffer_add_string (&p, &left, "vFile:open:");
9791
9792   remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9793                            strlen (filename));
9794   remote_buffer_add_string (&p, &left, ",");
9795
9796   remote_buffer_add_int (&p, &left, flags);
9797   remote_buffer_add_string (&p, &left, ",");
9798
9799   remote_buffer_add_int (&p, &left, mode);
9800
9801   return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
9802                                      remote_errno, NULL, NULL);
9803 }
9804
9805 /* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
9806    Return the number of bytes written, or -1 if an error occurs (and
9807    set *REMOTE_ERRNO).  */
9808
9809 static int
9810 remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
9811                       ULONGEST offset, int *remote_errno)
9812 {
9813   struct remote_state *rs = get_remote_state ();
9814   char *p = rs->buf;
9815   int left = get_remote_packet_size ();
9816   int out_len;
9817
9818   remote_buffer_add_string (&p, &left, "vFile:pwrite:");
9819
9820   remote_buffer_add_int (&p, &left, fd);
9821   remote_buffer_add_string (&p, &left, ",");
9822
9823   remote_buffer_add_int (&p, &left, offset);
9824   remote_buffer_add_string (&p, &left, ",");
9825
9826   p += remote_escape_output (write_buf, len, (gdb_byte *) p, &out_len,
9827                              get_remote_packet_size () - (p - rs->buf));
9828
9829   return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
9830                                      remote_errno, NULL, NULL);
9831 }
9832
9833 /* Read up to LEN bytes FD on the remote target into READ_BUF
9834    Return the number of bytes read, or -1 if an error occurs (and
9835    set *REMOTE_ERRNO).  */
9836
9837 static int
9838 remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
9839                      ULONGEST offset, int *remote_errno)
9840 {
9841   struct remote_state *rs = get_remote_state ();
9842   char *p = rs->buf;
9843   char *attachment;
9844   int left = get_remote_packet_size ();
9845   int ret, attachment_len;
9846   int read_len;
9847
9848   remote_buffer_add_string (&p, &left, "vFile:pread:");
9849
9850   remote_buffer_add_int (&p, &left, fd);
9851   remote_buffer_add_string (&p, &left, ",");
9852
9853   remote_buffer_add_int (&p, &left, len);
9854   remote_buffer_add_string (&p, &left, ",");
9855
9856   remote_buffer_add_int (&p, &left, offset);
9857
9858   ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
9859                                     remote_errno, &attachment,
9860                                     &attachment_len);
9861
9862   if (ret < 0)
9863     return ret;
9864
9865   read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
9866                                     read_buf, len);
9867   if (read_len != ret)
9868     error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
9869
9870   return ret;
9871 }
9872
9873 /* Close FD on the remote target.  Return 0, or -1 if an error occurs
9874    (and set *REMOTE_ERRNO).  */
9875
9876 static int
9877 remote_hostio_close (int fd, int *remote_errno)
9878 {
9879   struct remote_state *rs = get_remote_state ();
9880   char *p = rs->buf;
9881   int left = get_remote_packet_size () - 1;
9882
9883   remote_buffer_add_string (&p, &left, "vFile:close:");
9884
9885   remote_buffer_add_int (&p, &left, fd);
9886
9887   return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
9888                                      remote_errno, NULL, NULL);
9889 }
9890
9891 /* Unlink FILENAME on the remote target.  Return 0, or -1 if an error
9892    occurs (and set *REMOTE_ERRNO).  */
9893
9894 static int
9895 remote_hostio_unlink (const char *filename, int *remote_errno)
9896 {
9897   struct remote_state *rs = get_remote_state ();
9898   char *p = rs->buf;
9899   int left = get_remote_packet_size () - 1;
9900
9901   remote_buffer_add_string (&p, &left, "vFile:unlink:");
9902
9903   remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9904                            strlen (filename));
9905
9906   return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
9907                                      remote_errno, NULL, NULL);
9908 }
9909
9910 /* Read value of symbolic link FILENAME on the remote target.  Return
9911    a null-terminated string allocated via xmalloc, or NULL if an error
9912    occurs (and set *REMOTE_ERRNO).  */
9913
9914 static char *
9915 remote_hostio_readlink (const char *filename, int *remote_errno)
9916 {
9917   struct remote_state *rs = get_remote_state ();
9918   char *p = rs->buf;
9919   char *attachment;
9920   int left = get_remote_packet_size ();
9921   int len, attachment_len;
9922   int read_len;
9923   char *ret;
9924
9925   remote_buffer_add_string (&p, &left, "vFile:readlink:");
9926
9927   remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9928                            strlen (filename));
9929
9930   len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
9931                                     remote_errno, &attachment,
9932                                     &attachment_len);
9933
9934   if (len < 0)
9935     return NULL;
9936
9937   ret = xmalloc (len + 1);
9938
9939   read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
9940                                     (gdb_byte *) ret, len);
9941   if (read_len != len)
9942     error (_("Readlink returned %d, but %d bytes."), len, read_len);
9943
9944   ret[len] = '\0';
9945   return ret;
9946 }
9947
9948 static int
9949 remote_fileio_errno_to_host (int errnum)
9950 {
9951   switch (errnum)
9952     {
9953       case FILEIO_EPERM:
9954         return EPERM;
9955       case FILEIO_ENOENT:
9956         return ENOENT;
9957       case FILEIO_EINTR:
9958         return EINTR;
9959       case FILEIO_EIO:
9960         return EIO;
9961       case FILEIO_EBADF:
9962         return EBADF;
9963       case FILEIO_EACCES:
9964         return EACCES;
9965       case FILEIO_EFAULT:
9966         return EFAULT;
9967       case FILEIO_EBUSY:
9968         return EBUSY;
9969       case FILEIO_EEXIST:
9970         return EEXIST;
9971       case FILEIO_ENODEV:
9972         return ENODEV;
9973       case FILEIO_ENOTDIR:
9974         return ENOTDIR;
9975       case FILEIO_EISDIR:
9976         return EISDIR;
9977       case FILEIO_EINVAL:
9978         return EINVAL;
9979       case FILEIO_ENFILE:
9980         return ENFILE;
9981       case FILEIO_EMFILE:
9982         return EMFILE;
9983       case FILEIO_EFBIG:
9984         return EFBIG;
9985       case FILEIO_ENOSPC:
9986         return ENOSPC;
9987       case FILEIO_ESPIPE:
9988         return ESPIPE;
9989       case FILEIO_EROFS:
9990         return EROFS;
9991       case FILEIO_ENOSYS:
9992         return ENOSYS;
9993       case FILEIO_ENAMETOOLONG:
9994         return ENAMETOOLONG;
9995     }
9996   return -1;
9997 }
9998
9999 static char *
10000 remote_hostio_error (int errnum)
10001 {
10002   int host_error = remote_fileio_errno_to_host (errnum);
10003
10004   if (host_error == -1)
10005     error (_("Unknown remote I/O error %d"), errnum);
10006   else
10007     error (_("Remote I/O error: %s"), safe_strerror (host_error));
10008 }
10009
10010 static void
10011 remote_hostio_close_cleanup (void *opaque)
10012 {
10013   int fd = *(int *) opaque;
10014   int remote_errno;
10015
10016   remote_hostio_close (fd, &remote_errno);
10017 }
10018
10019
10020 static void *
10021 remote_bfd_iovec_open (struct bfd *abfd, void *open_closure)
10022 {
10023   const char *filename = bfd_get_filename (abfd);
10024   int fd, remote_errno;
10025   int *stream;
10026
10027   gdb_assert (remote_filename_p (filename));
10028
10029   fd = remote_hostio_open (filename + 7, FILEIO_O_RDONLY, 0, &remote_errno);
10030   if (fd == -1)
10031     {
10032       errno = remote_fileio_errno_to_host (remote_errno);
10033       bfd_set_error (bfd_error_system_call);
10034       return NULL;
10035     }
10036
10037   stream = xmalloc (sizeof (int));
10038   *stream = fd;
10039   return stream;
10040 }
10041
10042 static int
10043 remote_bfd_iovec_close (struct bfd *abfd, void *stream)
10044 {
10045   int fd = *(int *)stream;
10046   int remote_errno;
10047
10048   xfree (stream);
10049
10050   /* Ignore errors on close; these may happen if the remote
10051      connection was already torn down.  */
10052   remote_hostio_close (fd, &remote_errno);
10053
10054   /* Zero means success.  */
10055   return 0;
10056 }
10057
10058 static file_ptr
10059 remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
10060                         file_ptr nbytes, file_ptr offset)
10061 {
10062   int fd = *(int *)stream;
10063   int remote_errno;
10064   file_ptr pos, bytes;
10065
10066   pos = 0;
10067   while (nbytes > pos)
10068     {
10069       bytes = remote_hostio_pread (fd, (gdb_byte *) buf + pos, nbytes - pos,
10070                                    offset + pos, &remote_errno);
10071       if (bytes == 0)
10072         /* Success, but no bytes, means end-of-file.  */
10073         break;
10074       if (bytes == -1)
10075         {
10076           errno = remote_fileio_errno_to_host (remote_errno);
10077           bfd_set_error (bfd_error_system_call);
10078           return -1;
10079         }
10080
10081       pos += bytes;
10082     }
10083
10084   return pos;
10085 }
10086
10087 static int
10088 remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
10089 {
10090   /* FIXME: We should probably implement remote_hostio_stat.  */
10091   sb->st_size = INT_MAX;
10092   return 0;
10093 }
10094
10095 int
10096 remote_filename_p (const char *filename)
10097 {
10098   return strncmp (filename, "remote:", 7) == 0;
10099 }
10100
10101 bfd *
10102 remote_bfd_open (const char *remote_file, const char *target)
10103 {
10104   bfd *abfd = gdb_bfd_openr_iovec (remote_file, target,
10105                                    remote_bfd_iovec_open, NULL,
10106                                    remote_bfd_iovec_pread,
10107                                    remote_bfd_iovec_close,
10108                                    remote_bfd_iovec_stat);
10109
10110   return abfd;
10111 }
10112
10113 void
10114 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
10115 {
10116   struct cleanup *back_to, *close_cleanup;
10117   int retcode, fd, remote_errno, bytes, io_size;
10118   FILE *file;
10119   gdb_byte *buffer;
10120   int bytes_in_buffer;
10121   int saw_eof;
10122   ULONGEST offset;
10123
10124   if (!remote_desc)
10125     error (_("command can only be used with remote target"));
10126
10127   file = gdb_fopen_cloexec (local_file, "rb");
10128   if (file == NULL)
10129     perror_with_name (local_file);
10130   back_to = make_cleanup_fclose (file);
10131
10132   fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
10133                                          | FILEIO_O_TRUNC),
10134                            0700, &remote_errno);
10135   if (fd == -1)
10136     remote_hostio_error (remote_errno);
10137
10138   /* Send up to this many bytes at once.  They won't all fit in the
10139      remote packet limit, so we'll transfer slightly fewer.  */
10140   io_size = get_remote_packet_size ();
10141   buffer = xmalloc (io_size);
10142   make_cleanup (xfree, buffer);
10143
10144   close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
10145
10146   bytes_in_buffer = 0;
10147   saw_eof = 0;
10148   offset = 0;
10149   while (bytes_in_buffer || !saw_eof)
10150     {
10151       if (!saw_eof)
10152         {
10153           bytes = fread (buffer + bytes_in_buffer, 1,
10154                          io_size - bytes_in_buffer,
10155                          file);
10156           if (bytes == 0)
10157             {
10158               if (ferror (file))
10159                 error (_("Error reading %s."), local_file);
10160               else
10161                 {
10162                   /* EOF.  Unless there is something still in the
10163                      buffer from the last iteration, we are done.  */
10164                   saw_eof = 1;
10165                   if (bytes_in_buffer == 0)
10166                     break;
10167                 }
10168             }
10169         }
10170       else
10171         bytes = 0;
10172
10173       bytes += bytes_in_buffer;
10174       bytes_in_buffer = 0;
10175
10176       retcode = remote_hostio_pwrite (fd, buffer, bytes,
10177                                       offset, &remote_errno);
10178
10179       if (retcode < 0)
10180         remote_hostio_error (remote_errno);
10181       else if (retcode == 0)
10182         error (_("Remote write of %d bytes returned 0!"), bytes);
10183       else if (retcode < bytes)
10184         {
10185           /* Short write.  Save the rest of the read data for the next
10186              write.  */
10187           bytes_in_buffer = bytes - retcode;
10188           memmove (buffer, buffer + retcode, bytes_in_buffer);
10189         }
10190
10191       offset += retcode;
10192     }
10193
10194   discard_cleanups (close_cleanup);
10195   if (remote_hostio_close (fd, &remote_errno))
10196     remote_hostio_error (remote_errno);
10197
10198   if (from_tty)
10199     printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
10200   do_cleanups (back_to);
10201 }
10202
10203 void
10204 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
10205 {
10206   struct cleanup *back_to, *close_cleanup;
10207   int fd, remote_errno, bytes, io_size;
10208   FILE *file;
10209   gdb_byte *buffer;
10210   ULONGEST offset;
10211
10212   if (!remote_desc)
10213     error (_("command can only be used with remote target"));
10214
10215   fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
10216   if (fd == -1)
10217     remote_hostio_error (remote_errno);
10218
10219   file = gdb_fopen_cloexec (local_file, "wb");
10220   if (file == NULL)
10221     perror_with_name (local_file);
10222   back_to = make_cleanup_fclose (file);
10223
10224   /* Send up to this many bytes at once.  They won't all fit in the
10225      remote packet limit, so we'll transfer slightly fewer.  */
10226   io_size = get_remote_packet_size ();
10227   buffer = xmalloc (io_size);
10228   make_cleanup (xfree, buffer);
10229
10230   close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
10231
10232   offset = 0;
10233   while (1)
10234     {
10235       bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
10236       if (bytes == 0)
10237         /* Success, but no bytes, means end-of-file.  */
10238         break;
10239       if (bytes == -1)
10240         remote_hostio_error (remote_errno);
10241
10242       offset += bytes;
10243
10244       bytes = fwrite (buffer, 1, bytes, file);
10245       if (bytes == 0)
10246         perror_with_name (local_file);
10247     }
10248
10249   discard_cleanups (close_cleanup);
10250   if (remote_hostio_close (fd, &remote_errno))
10251     remote_hostio_error (remote_errno);
10252
10253   if (from_tty)
10254     printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
10255   do_cleanups (back_to);
10256 }
10257
10258 void
10259 remote_file_delete (const char *remote_file, int from_tty)
10260 {
10261   int retcode, remote_errno;
10262
10263   if (!remote_desc)
10264     error (_("command can only be used with remote target"));
10265
10266   retcode = remote_hostio_unlink (remote_file, &remote_errno);
10267   if (retcode == -1)
10268     remote_hostio_error (remote_errno);
10269
10270   if (from_tty)
10271     printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
10272 }
10273
10274 static void
10275 remote_put_command (char *args, int from_tty)
10276 {
10277   struct cleanup *back_to;
10278   char **argv;
10279
10280   if (args == NULL)
10281     error_no_arg (_("file to put"));
10282
10283   argv = gdb_buildargv (args);
10284   back_to = make_cleanup_freeargv (argv);
10285   if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
10286     error (_("Invalid parameters to remote put"));
10287
10288   remote_file_put (argv[0], argv[1], from_tty);
10289
10290   do_cleanups (back_to);
10291 }
10292
10293 static void
10294 remote_get_command (char *args, int from_tty)
10295 {
10296   struct cleanup *back_to;
10297   char **argv;
10298
10299   if (args == NULL)
10300     error_no_arg (_("file to get"));
10301
10302   argv = gdb_buildargv (args);
10303   back_to = make_cleanup_freeargv (argv);
10304   if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
10305     error (_("Invalid parameters to remote get"));
10306
10307   remote_file_get (argv[0], argv[1], from_tty);
10308
10309   do_cleanups (back_to);
10310 }
10311
10312 static void
10313 remote_delete_command (char *args, int from_tty)
10314 {
10315   struct cleanup *back_to;
10316   char **argv;
10317
10318   if (args == NULL)
10319     error_no_arg (_("file to delete"));
10320
10321   argv = gdb_buildargv (args);
10322   back_to = make_cleanup_freeargv (argv);
10323   if (argv[0] == NULL || argv[1] != NULL)
10324     error (_("Invalid parameters to remote delete"));
10325
10326   remote_file_delete (argv[0], from_tty);
10327
10328   do_cleanups (back_to);
10329 }
10330
10331 static void
10332 remote_command (char *args, int from_tty)
10333 {
10334   help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
10335 }
10336
10337 static int
10338 remote_can_execute_reverse (void)
10339 {
10340   if (remote_protocol_packets[PACKET_bs].support == PACKET_ENABLE
10341       || remote_protocol_packets[PACKET_bc].support == PACKET_ENABLE)
10342     return 1;
10343   else
10344     return 0;
10345 }
10346
10347 static int
10348 remote_supports_non_stop (void)
10349 {
10350   return 1;
10351 }
10352
10353 static int
10354 remote_supports_disable_randomization (void)
10355 {
10356   /* Only supported in extended mode.  */
10357   return 0;
10358 }
10359
10360 static int
10361 remote_supports_multi_process (void)
10362 {
10363   struct remote_state *rs = get_remote_state ();
10364
10365   /* Only extended-remote handles being attached to multiple
10366      processes, even though plain remote can use the multi-process
10367      thread id extensions, so that GDB knows the target process's
10368      PID.  */
10369   return rs->extended && remote_multi_process_p (rs);
10370 }
10371
10372 static int
10373 remote_supports_cond_tracepoints (void)
10374 {
10375   struct remote_state *rs = get_remote_state ();
10376
10377   return rs->cond_tracepoints;
10378 }
10379
10380 static int
10381 remote_supports_cond_breakpoints (void)
10382 {
10383   struct remote_state *rs = get_remote_state ();
10384
10385   return rs->cond_breakpoints;
10386 }
10387
10388 static int
10389 remote_supports_fast_tracepoints (void)
10390 {
10391   struct remote_state *rs = get_remote_state ();
10392
10393   return rs->fast_tracepoints;
10394 }
10395
10396 static int
10397 remote_supports_static_tracepoints (void)
10398 {
10399   struct remote_state *rs = get_remote_state ();
10400
10401   return rs->static_tracepoints;
10402 }
10403
10404 static int
10405 remote_supports_install_in_trace (void)
10406 {
10407   struct remote_state *rs = get_remote_state ();
10408
10409   return rs->install_in_trace;
10410 }
10411
10412 static int
10413 remote_supports_enable_disable_tracepoint (void)
10414 {
10415   struct remote_state *rs = get_remote_state ();
10416
10417   return rs->enable_disable_tracepoints;
10418 }
10419
10420 static int
10421 remote_supports_string_tracing (void)
10422 {
10423   struct remote_state *rs = get_remote_state ();
10424
10425   return rs->string_tracing;
10426 }
10427
10428 static int
10429 remote_can_run_breakpoint_commands (void)
10430 {
10431   struct remote_state *rs = get_remote_state ();
10432
10433   return rs->breakpoint_commands;
10434 }
10435
10436 static void
10437 remote_trace_init (void)
10438 {
10439   putpkt ("QTinit");
10440   remote_get_noisy_reply (&target_buf, &target_buf_size);
10441   if (strcmp (target_buf, "OK") != 0)
10442     error (_("Target does not support this command."));
10443 }
10444
10445 static void free_actions_list (char **actions_list);
10446 static void free_actions_list_cleanup_wrapper (void *);
10447 static void
10448 free_actions_list_cleanup_wrapper (void *al)
10449 {
10450   free_actions_list (al);
10451 }
10452
10453 static void
10454 free_actions_list (char **actions_list)
10455 {
10456   int ndx;
10457
10458   if (actions_list == 0)
10459     return;
10460
10461   for (ndx = 0; actions_list[ndx]; ndx++)
10462     xfree (actions_list[ndx]);
10463
10464   xfree (actions_list);
10465 }
10466
10467 /* Recursive routine to walk through command list including loops, and
10468    download packets for each command.  */
10469
10470 static void
10471 remote_download_command_source (int num, ULONGEST addr,
10472                                 struct command_line *cmds)
10473 {
10474   struct remote_state *rs = get_remote_state ();
10475   struct command_line *cmd;
10476
10477   for (cmd = cmds; cmd; cmd = cmd->next)
10478     {
10479       QUIT;     /* Allow user to bail out with ^C.  */
10480       strcpy (rs->buf, "QTDPsrc:");
10481       encode_source_string (num, addr, "cmd", cmd->line,
10482                             rs->buf + strlen (rs->buf),
10483                             rs->buf_size - strlen (rs->buf));
10484       putpkt (rs->buf);
10485       remote_get_noisy_reply (&target_buf, &target_buf_size);
10486       if (strcmp (target_buf, "OK"))
10487         warning (_("Target does not support source download."));
10488
10489       if (cmd->control_type == while_control
10490           || cmd->control_type == while_stepping_control)
10491         {
10492           remote_download_command_source (num, addr, *cmd->body_list);
10493
10494           QUIT; /* Allow user to bail out with ^C.  */
10495           strcpy (rs->buf, "QTDPsrc:");
10496           encode_source_string (num, addr, "cmd", "end",
10497                                 rs->buf + strlen (rs->buf),
10498                                 rs->buf_size - strlen (rs->buf));
10499           putpkt (rs->buf);
10500           remote_get_noisy_reply (&target_buf, &target_buf_size);
10501           if (strcmp (target_buf, "OK"))
10502             warning (_("Target does not support source download."));
10503         }
10504     }
10505 }
10506
10507 static void
10508 remote_download_tracepoint (struct bp_location *loc)
10509 {
10510 #define BUF_SIZE 2048
10511
10512   CORE_ADDR tpaddr;
10513   char addrbuf[40];
10514   char buf[BUF_SIZE];
10515   char **tdp_actions;
10516   char **stepping_actions;
10517   int ndx;
10518   struct cleanup *old_chain = NULL;
10519   struct agent_expr *aexpr;
10520   struct cleanup *aexpr_chain = NULL;
10521   char *pkt;
10522   struct breakpoint *b = loc->owner;
10523   struct tracepoint *t = (struct tracepoint *) b;
10524
10525   encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
10526   old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
10527                             tdp_actions);
10528   (void) make_cleanup (free_actions_list_cleanup_wrapper,
10529                        stepping_actions);
10530
10531   tpaddr = loc->address;
10532   sprintf_vma (addrbuf, tpaddr);
10533   xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
10534              addrbuf, /* address */
10535              (b->enable_state == bp_enabled ? 'E' : 'D'),
10536              t->step_count, t->pass_count);
10537   /* Fast tracepoints are mostly handled by the target, but we can
10538      tell the target how big of an instruction block should be moved
10539      around.  */
10540   if (b->type == bp_fast_tracepoint)
10541     {
10542       /* Only test for support at download time; we may not know
10543          target capabilities at definition time.  */
10544       if (remote_supports_fast_tracepoints ())
10545         {
10546           int isize;
10547
10548           if (gdbarch_fast_tracepoint_valid_at (target_gdbarch (),
10549                                                 tpaddr, &isize, NULL))
10550             xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
10551                        isize);
10552           else
10553             /* If it passed validation at definition but fails now,
10554                something is very wrong.  */
10555             internal_error (__FILE__, __LINE__,
10556                             _("Fast tracepoint not "
10557                               "valid during download"));
10558         }
10559       else
10560         /* Fast tracepoints are functionally identical to regular
10561            tracepoints, so don't take lack of support as a reason to
10562            give up on the trace run.  */
10563         warning (_("Target does not support fast tracepoints, "
10564                    "downloading %d as regular tracepoint"), b->number);
10565     }
10566   else if (b->type == bp_static_tracepoint)
10567     {
10568       /* Only test for support at download time; we may not know
10569          target capabilities at definition time.  */
10570       if (remote_supports_static_tracepoints ())
10571         {
10572           struct static_tracepoint_marker marker;
10573
10574           if (target_static_tracepoint_marker_at (tpaddr, &marker))
10575             strcat (buf, ":S");
10576           else
10577             error (_("Static tracepoint not valid during download"));
10578         }
10579       else
10580         /* Fast tracepoints are functionally identical to regular
10581            tracepoints, so don't take lack of support as a reason
10582            to give up on the trace run.  */
10583         error (_("Target does not support static tracepoints"));
10584     }
10585   /* If the tracepoint has a conditional, make it into an agent
10586      expression and append to the definition.  */
10587   if (loc->cond)
10588     {
10589       /* Only test support at download time, we may not know target
10590          capabilities at definition time.  */
10591       if (remote_supports_cond_tracepoints ())
10592         {
10593           aexpr = gen_eval_for_expr (tpaddr, loc->cond);
10594           aexpr_chain = make_cleanup_free_agent_expr (aexpr);
10595           xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
10596                      aexpr->len);
10597           pkt = buf + strlen (buf);
10598           for (ndx = 0; ndx < aexpr->len; ++ndx)
10599             pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
10600           *pkt = '\0';
10601           do_cleanups (aexpr_chain);
10602         }
10603       else
10604         warning (_("Target does not support conditional tracepoints, "
10605                    "ignoring tp %d cond"), b->number);
10606     }
10607
10608   if (b->commands || *default_collect)
10609     strcat (buf, "-");
10610   putpkt (buf);
10611   remote_get_noisy_reply (&target_buf, &target_buf_size);
10612   if (strcmp (target_buf, "OK"))
10613     error (_("Target does not support tracepoints."));
10614
10615   /* do_single_steps (t); */
10616   if (tdp_actions)
10617     {
10618       for (ndx = 0; tdp_actions[ndx]; ndx++)
10619         {
10620           QUIT; /* Allow user to bail out with ^C.  */
10621           xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
10622                      b->number, addrbuf, /* address */
10623                      tdp_actions[ndx],
10624                      ((tdp_actions[ndx + 1] || stepping_actions)
10625                       ? '-' : 0));
10626           putpkt (buf);
10627           remote_get_noisy_reply (&target_buf,
10628                                   &target_buf_size);
10629           if (strcmp (target_buf, "OK"))
10630             error (_("Error on target while setting tracepoints."));
10631         }
10632     }
10633   if (stepping_actions)
10634     {
10635       for (ndx = 0; stepping_actions[ndx]; ndx++)
10636         {
10637           QUIT; /* Allow user to bail out with ^C.  */
10638           xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
10639                      b->number, addrbuf, /* address */
10640                      ((ndx == 0) ? "S" : ""),
10641                      stepping_actions[ndx],
10642                      (stepping_actions[ndx + 1] ? "-" : ""));
10643           putpkt (buf);
10644           remote_get_noisy_reply (&target_buf,
10645                                   &target_buf_size);
10646           if (strcmp (target_buf, "OK"))
10647             error (_("Error on target while setting tracepoints."));
10648         }
10649     }
10650
10651   if (remote_protocol_packets[PACKET_TracepointSource].support
10652       == PACKET_ENABLE)
10653     {
10654       if (b->addr_string)
10655         {
10656           strcpy (buf, "QTDPsrc:");
10657           encode_source_string (b->number, loc->address,
10658                                 "at", b->addr_string, buf + strlen (buf),
10659                                 2048 - strlen (buf));
10660
10661           putpkt (buf);
10662           remote_get_noisy_reply (&target_buf, &target_buf_size);
10663           if (strcmp (target_buf, "OK"))
10664             warning (_("Target does not support source download."));
10665         }
10666       if (b->cond_string)
10667         {
10668           strcpy (buf, "QTDPsrc:");
10669           encode_source_string (b->number, loc->address,
10670                                 "cond", b->cond_string, buf + strlen (buf),
10671                                 2048 - strlen (buf));
10672           putpkt (buf);
10673           remote_get_noisy_reply (&target_buf, &target_buf_size);
10674           if (strcmp (target_buf, "OK"))
10675             warning (_("Target does not support source download."));
10676         }
10677       remote_download_command_source (b->number, loc->address,
10678                                       breakpoint_commands (b));
10679     }
10680
10681   do_cleanups (old_chain);
10682 }
10683
10684 static int
10685 remote_can_download_tracepoint (void)
10686 {
10687   struct remote_state *rs = get_remote_state ();
10688   struct trace_status *ts;
10689   int status;
10690
10691   /* Don't try to install tracepoints until we've relocated our
10692      symbols, and fetched and merged the target's tracepoint list with
10693      ours.  */
10694   if (rs->starting_up)
10695     return 0;
10696
10697   ts = current_trace_status ();
10698   status = remote_get_trace_status (ts);
10699
10700   if (status == -1 || !ts->running_known || !ts->running)
10701     return 0;
10702
10703   /* If we are in a tracing experiment, but remote stub doesn't support
10704      installing tracepoint in trace, we have to return.  */
10705   if (!remote_supports_install_in_trace ())
10706     return 0;
10707
10708   return 1;
10709 }
10710
10711
10712 static void
10713 remote_download_trace_state_variable (struct trace_state_variable *tsv)
10714 {
10715   struct remote_state *rs = get_remote_state ();
10716   char *p;
10717
10718   xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
10719              tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
10720              tsv->builtin);
10721   p = rs->buf + strlen (rs->buf);
10722   if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
10723     error (_("Trace state variable name too long for tsv definition packet"));
10724   p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, 0);
10725   *p++ = '\0';
10726   putpkt (rs->buf);
10727   remote_get_noisy_reply (&target_buf, &target_buf_size);
10728   if (*target_buf == '\0')
10729     error (_("Target does not support this command."));
10730   if (strcmp (target_buf, "OK") != 0)
10731     error (_("Error on target while downloading trace state variable."));
10732 }
10733
10734 static void
10735 remote_enable_tracepoint (struct bp_location *location)
10736 {
10737   struct remote_state *rs = get_remote_state ();
10738   char addr_buf[40];
10739
10740   sprintf_vma (addr_buf, location->address);
10741   xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
10742              location->owner->number, addr_buf);
10743   putpkt (rs->buf);
10744   remote_get_noisy_reply (&rs->buf, &rs->buf_size);
10745   if (*rs->buf == '\0')
10746     error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
10747   if (strcmp (rs->buf, "OK") != 0)
10748     error (_("Error on target while enabling tracepoint."));
10749 }
10750
10751 static void
10752 remote_disable_tracepoint (struct bp_location *location)
10753 {
10754   struct remote_state *rs = get_remote_state ();
10755   char addr_buf[40];
10756
10757   sprintf_vma (addr_buf, location->address);
10758   xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
10759              location->owner->number, addr_buf);
10760   putpkt (rs->buf);
10761   remote_get_noisy_reply (&rs->buf, &rs->buf_size);
10762   if (*rs->buf == '\0')
10763     error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
10764   if (strcmp (rs->buf, "OK") != 0)
10765     error (_("Error on target while disabling tracepoint."));
10766 }
10767
10768 static void
10769 remote_trace_set_readonly_regions (void)
10770 {
10771   asection *s;
10772   bfd *abfd = NULL;
10773   bfd_size_type size;
10774   bfd_vma vma;
10775   int anysecs = 0;
10776   int offset = 0;
10777
10778   if (!exec_bfd)
10779     return;                     /* No information to give.  */
10780
10781   strcpy (target_buf, "QTro");
10782   offset = strlen (target_buf);
10783   for (s = exec_bfd->sections; s; s = s->next)
10784     {
10785       char tmp1[40], tmp2[40];
10786       int sec_length;
10787
10788       if ((s->flags & SEC_LOAD) == 0 ||
10789       /*  (s->flags & SEC_CODE) == 0 || */
10790           (s->flags & SEC_READONLY) == 0)
10791         continue;
10792
10793       anysecs = 1;
10794       vma = bfd_get_section_vma (abfd, s);
10795       size = bfd_get_section_size (s);
10796       sprintf_vma (tmp1, vma);
10797       sprintf_vma (tmp2, vma + size);
10798       sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
10799       if (offset + sec_length + 1 > target_buf_size)
10800         {
10801           if (remote_protocol_packets[PACKET_qXfer_traceframe_info].support
10802               != PACKET_ENABLE)
10803             warning (_("\
10804 Too many sections for read-only sections definition packet."));
10805           break;
10806         }
10807       xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s",
10808                  tmp1, tmp2);
10809       offset += sec_length;
10810     }
10811   if (anysecs)
10812     {
10813       putpkt (target_buf);
10814       getpkt (&target_buf, &target_buf_size, 0);
10815     }
10816 }
10817
10818 static void
10819 remote_trace_start (void)
10820 {
10821   putpkt ("QTStart");
10822   remote_get_noisy_reply (&target_buf, &target_buf_size);
10823   if (*target_buf == '\0')
10824     error (_("Target does not support this command."));
10825   if (strcmp (target_buf, "OK") != 0)
10826     error (_("Bogus reply from target: %s"), target_buf);
10827 }
10828
10829 static int
10830 remote_get_trace_status (struct trace_status *ts)
10831 {
10832   /* Initialize it just to avoid a GCC false warning.  */
10833   char *p = NULL;
10834   /* FIXME we need to get register block size some other way.  */
10835   extern int trace_regblock_size;
10836   volatile struct gdb_exception ex;
10837   enum packet_result result;
10838
10839   if (remote_protocol_packets[PACKET_qTStatus].support == PACKET_DISABLE)
10840     return -1;
10841
10842   trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
10843
10844   putpkt ("qTStatus");
10845
10846   TRY_CATCH (ex, RETURN_MASK_ERROR)
10847     {
10848       p = remote_get_noisy_reply (&target_buf, &target_buf_size);
10849     }
10850   if (ex.reason < 0)
10851     {
10852       if (ex.error != TARGET_CLOSE_ERROR)
10853         {
10854           exception_fprintf (gdb_stderr, ex, "qTStatus: ");
10855           return -1;
10856         }
10857       throw_exception (ex);
10858     }
10859
10860   result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
10861
10862   /* If the remote target doesn't do tracing, flag it.  */
10863   if (result == PACKET_UNKNOWN)
10864     return -1;
10865
10866   /* We're working with a live target.  */
10867   ts->filename = NULL;
10868
10869   if (*p++ != 'T')
10870     error (_("Bogus trace status reply from target: %s"), target_buf);
10871
10872   /* Function 'parse_trace_status' sets default value of each field of
10873      'ts' at first, so we don't have to do it here.  */
10874   parse_trace_status (p, ts);
10875
10876   return ts->running;
10877 }
10878
10879 static void
10880 remote_get_tracepoint_status (struct breakpoint *bp,
10881                               struct uploaded_tp *utp)
10882 {
10883   struct remote_state *rs = get_remote_state ();
10884   char *reply;
10885   struct bp_location *loc;
10886   struct tracepoint *tp = (struct tracepoint *) bp;
10887   size_t size = get_remote_packet_size ();
10888
10889   if (tp)
10890     {
10891       tp->base.hit_count = 0;
10892       tp->traceframe_usage = 0;
10893       for (loc = tp->base.loc; loc; loc = loc->next)
10894         {
10895           /* If the tracepoint was never downloaded, don't go asking for
10896              any status.  */
10897           if (tp->number_on_target == 0)
10898             continue;
10899           xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
10900                      phex_nz (loc->address, 0));
10901           putpkt (rs->buf);
10902           reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10903           if (reply && *reply)
10904             {
10905               if (*reply == 'V')
10906                 parse_tracepoint_status (reply + 1, bp, utp);
10907             }
10908         }
10909     }
10910   else if (utp)
10911     {
10912       utp->hit_count = 0;
10913       utp->traceframe_usage = 0;
10914       xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
10915                  phex_nz (utp->addr, 0));
10916       putpkt (rs->buf);
10917       reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10918       if (reply && *reply)
10919         {
10920           if (*reply == 'V')
10921             parse_tracepoint_status (reply + 1, bp, utp);
10922         }
10923     }
10924 }
10925
10926 static void
10927 remote_trace_stop (void)
10928 {
10929   putpkt ("QTStop");
10930   remote_get_noisy_reply (&target_buf, &target_buf_size);
10931   if (*target_buf == '\0')
10932     error (_("Target does not support this command."));
10933   if (strcmp (target_buf, "OK") != 0)
10934     error (_("Bogus reply from target: %s"), target_buf);
10935 }
10936
10937 static int
10938 remote_trace_find (enum trace_find_type type, int num,
10939                    CORE_ADDR addr1, CORE_ADDR addr2,
10940                    int *tpp)
10941 {
10942   struct remote_state *rs = get_remote_state ();
10943   char *endbuf = rs->buf + get_remote_packet_size ();
10944   char *p, *reply;
10945   int target_frameno = -1, target_tracept = -1;
10946
10947   /* Lookups other than by absolute frame number depend on the current
10948      trace selected, so make sure it is correct on the remote end
10949      first.  */
10950   if (type != tfind_number)
10951     set_remote_traceframe ();
10952
10953   p = rs->buf;
10954   strcpy (p, "QTFrame:");
10955   p = strchr (p, '\0');
10956   switch (type)
10957     {
10958     case tfind_number:
10959       xsnprintf (p, endbuf - p, "%x", num);
10960       break;
10961     case tfind_pc:
10962       xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
10963       break;
10964     case tfind_tp:
10965       xsnprintf (p, endbuf - p, "tdp:%x", num);
10966       break;
10967     case tfind_range:
10968       xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
10969                  phex_nz (addr2, 0));
10970       break;
10971     case tfind_outside:
10972       xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
10973                  phex_nz (addr2, 0));
10974       break;
10975     default:
10976       error (_("Unknown trace find type %d"), type);
10977     }
10978
10979   putpkt (rs->buf);
10980   reply = remote_get_noisy_reply (&(rs->buf), &sizeof_pkt);
10981   if (*reply == '\0')
10982     error (_("Target does not support this command."));
10983
10984   while (reply && *reply)
10985     switch (*reply)
10986       {
10987       case 'F':
10988         p = ++reply;
10989         target_frameno = (int) strtol (p, &reply, 16);
10990         if (reply == p)
10991           error (_("Unable to parse trace frame number"));
10992         /* Don't update our remote traceframe number cache on failure
10993            to select a remote traceframe.  */
10994         if (target_frameno == -1)
10995           return -1;
10996         break;
10997       case 'T':
10998         p = ++reply;
10999         target_tracept = (int) strtol (p, &reply, 16);
11000         if (reply == p)
11001           error (_("Unable to parse tracepoint number"));
11002         break;
11003       case 'O':         /* "OK"? */
11004         if (reply[1] == 'K' && reply[2] == '\0')
11005           reply += 2;
11006         else
11007           error (_("Bogus reply from target: %s"), reply);
11008         break;
11009       default:
11010         error (_("Bogus reply from target: %s"), reply);
11011       }
11012   if (tpp)
11013     *tpp = target_tracept;
11014
11015   remote_traceframe_number = target_frameno;
11016   return target_frameno;
11017 }
11018
11019 static int
11020 remote_get_trace_state_variable_value (int tsvnum, LONGEST *val)
11021 {
11022   struct remote_state *rs = get_remote_state ();
11023   char *reply;
11024   ULONGEST uval;
11025
11026   set_remote_traceframe ();
11027
11028   xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
11029   putpkt (rs->buf);
11030   reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11031   if (reply && *reply)
11032     {
11033       if (*reply == 'V')
11034         {
11035           unpack_varlen_hex (reply + 1, &uval);
11036           *val = (LONGEST) uval;
11037           return 1;
11038         }
11039     }
11040   return 0;
11041 }
11042
11043 static int
11044 remote_save_trace_data (const char *filename)
11045 {
11046   struct remote_state *rs = get_remote_state ();
11047   char *p, *reply;
11048
11049   p = rs->buf;
11050   strcpy (p, "QTSave:");
11051   p += strlen (p);
11052   if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
11053     error (_("Remote file name too long for trace save packet"));
11054   p += 2 * bin2hex ((gdb_byte *) filename, p, 0);
11055   *p++ = '\0';
11056   putpkt (rs->buf);
11057   reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11058   if (*reply == '\0')
11059     error (_("Target does not support this command."));
11060   if (strcmp (reply, "OK") != 0)
11061     error (_("Bogus reply from target: %s"), reply);
11062   return 0;
11063 }
11064
11065 /* This is basically a memory transfer, but needs to be its own packet
11066    because we don't know how the target actually organizes its trace
11067    memory, plus we want to be able to ask for as much as possible, but
11068    not be unhappy if we don't get as much as we ask for.  */
11069
11070 static LONGEST
11071 remote_get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
11072 {
11073   struct remote_state *rs = get_remote_state ();
11074   char *reply;
11075   char *p;
11076   int rslt;
11077
11078   p = rs->buf;
11079   strcpy (p, "qTBuffer:");
11080   p += strlen (p);
11081   p += hexnumstr (p, offset);
11082   *p++ = ',';
11083   p += hexnumstr (p, len);
11084   *p++ = '\0';
11085
11086   putpkt (rs->buf);
11087   reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11088   if (reply && *reply)
11089     {
11090       /* 'l' by itself means we're at the end of the buffer and
11091          there is nothing more to get.  */
11092       if (*reply == 'l')
11093         return 0;
11094
11095       /* Convert the reply into binary.  Limit the number of bytes to
11096          convert according to our passed-in buffer size, rather than
11097          what was returned in the packet; if the target is
11098          unexpectedly generous and gives us a bigger reply than we
11099          asked for, we don't want to crash.  */
11100       rslt = hex2bin (target_buf, buf, len);
11101       return rslt;
11102     }
11103
11104   /* Something went wrong, flag as an error.  */
11105   return -1;
11106 }
11107
11108 static void
11109 remote_set_disconnected_tracing (int val)
11110 {
11111   struct remote_state *rs = get_remote_state ();
11112
11113   if (rs->disconnected_tracing)
11114     {
11115       char *reply;
11116
11117       xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
11118       putpkt (rs->buf);
11119       reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11120       if (*reply == '\0')
11121         error (_("Target does not support this command."));
11122       if (strcmp (reply, "OK") != 0)
11123         error (_("Bogus reply from target: %s"), reply);
11124     }
11125   else if (val)
11126     warning (_("Target does not support disconnected tracing."));
11127 }
11128
11129 static int
11130 remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
11131 {
11132   struct thread_info *info = find_thread_ptid (ptid);
11133
11134   if (info && info->private)
11135     return info->private->core;
11136   return -1;
11137 }
11138
11139 static void
11140 remote_set_circular_trace_buffer (int val)
11141 {
11142   struct remote_state *rs = get_remote_state ();
11143   char *reply;
11144
11145   xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
11146   putpkt (rs->buf);
11147   reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11148   if (*reply == '\0')
11149     error (_("Target does not support this command."));
11150   if (strcmp (reply, "OK") != 0)
11151     error (_("Bogus reply from target: %s"), reply);
11152 }
11153
11154 static struct traceframe_info *
11155 remote_traceframe_info (void)
11156 {
11157   char *text;
11158
11159   text = target_read_stralloc (&current_target,
11160                                TARGET_OBJECT_TRACEFRAME_INFO, NULL);
11161   if (text != NULL)
11162     {
11163       struct traceframe_info *info;
11164       struct cleanup *back_to = make_cleanup (xfree, text);
11165
11166       info = parse_traceframe_info (text);
11167       do_cleanups (back_to);
11168       return info;
11169     }
11170
11171   return NULL;
11172 }
11173
11174 /* Handle the qTMinFTPILen packet.  Returns the minimum length of
11175    instruction on which a fast tracepoint may be placed.  Returns -1
11176    if the packet is not supported, and 0 if the minimum instruction
11177    length is unknown.  */
11178
11179 static int
11180 remote_get_min_fast_tracepoint_insn_len (void)
11181 {
11182   struct remote_state *rs = get_remote_state ();
11183   char *reply;
11184
11185   /* If we're not debugging a process yet, the IPA can't be
11186      loaded.  */
11187   if (!target_has_execution)
11188     return 0;
11189
11190   /* Make sure the remote is pointing at the right process.  */
11191   set_general_process ();
11192
11193   xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
11194   putpkt (rs->buf);
11195   reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11196   if (*reply == '\0')
11197     return -1;
11198   else
11199     {
11200       ULONGEST min_insn_len;
11201
11202       unpack_varlen_hex (reply, &min_insn_len);
11203
11204       return (int) min_insn_len;
11205     }
11206 }
11207
11208 static void
11209 remote_set_trace_buffer_size (LONGEST val)
11210 {
11211   if (remote_protocol_packets[PACKET_QTBuffer_size].support
11212       != PACKET_DISABLE)
11213     {
11214       struct remote_state *rs = get_remote_state ();
11215       char *buf = rs->buf;
11216       char *endbuf = rs->buf + get_remote_packet_size ();
11217       enum packet_result result;
11218
11219       gdb_assert (val >= 0 || val == -1);
11220       buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
11221       /* Send -1 as literal "-1" to avoid host size dependency.  */
11222       if (val < 0)
11223         {
11224           *buf++ = '-';
11225           buf += hexnumstr (buf, (ULONGEST) -val);
11226         }
11227       else
11228         buf += hexnumstr (buf, (ULONGEST) val);
11229
11230       putpkt (rs->buf);
11231       remote_get_noisy_reply (&rs->buf, &rs->buf_size);
11232       result = packet_ok (rs->buf,
11233                   &remote_protocol_packets[PACKET_QTBuffer_size]);
11234
11235       if (result != PACKET_OK)
11236         warning (_("Bogus reply from target: %s"), rs->buf);
11237     }
11238 }
11239
11240 static int
11241 remote_set_trace_notes (const char *user, const char *notes,
11242                         const char *stop_notes)
11243 {
11244   struct remote_state *rs = get_remote_state ();
11245   char *reply;
11246   char *buf = rs->buf;
11247   char *endbuf = rs->buf + get_remote_packet_size ();
11248   int nbytes;
11249
11250   buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
11251   if (user)
11252     {
11253       buf += xsnprintf (buf, endbuf - buf, "user:");
11254       nbytes = bin2hex ((gdb_byte *) user, buf, 0);
11255       buf += 2 * nbytes;
11256       *buf++ = ';';
11257     }
11258   if (notes)
11259     {
11260       buf += xsnprintf (buf, endbuf - buf, "notes:");
11261       nbytes = bin2hex ((gdb_byte *) notes, buf, 0);
11262       buf += 2 * nbytes;
11263       *buf++ = ';';
11264     }
11265   if (stop_notes)
11266     {
11267       buf += xsnprintf (buf, endbuf - buf, "tstop:");
11268       nbytes = bin2hex ((gdb_byte *) stop_notes, buf, 0);
11269       buf += 2 * nbytes;
11270       *buf++ = ';';
11271     }
11272   /* Ensure the buffer is terminated.  */
11273   *buf = '\0';
11274
11275   putpkt (rs->buf);
11276   reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11277   if (*reply == '\0')
11278     return 0;
11279
11280   if (strcmp (reply, "OK") != 0)
11281     error (_("Bogus reply from target: %s"), reply);
11282
11283   return 1;
11284 }
11285
11286 static int
11287 remote_use_agent (int use)
11288 {
11289   if (remote_protocol_packets[PACKET_QAgent].support != PACKET_DISABLE)
11290     {
11291       struct remote_state *rs = get_remote_state ();
11292
11293       /* If the stub supports QAgent.  */
11294       xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
11295       putpkt (rs->buf);
11296       getpkt (&rs->buf, &rs->buf_size, 0);
11297
11298       if (strcmp (rs->buf, "OK") == 0)
11299         {
11300           use_agent = use;
11301           return 1;
11302         }
11303     }
11304
11305   return 0;
11306 }
11307
11308 static int
11309 remote_can_use_agent (void)
11310 {
11311   return (remote_protocol_packets[PACKET_QAgent].support != PACKET_DISABLE);
11312 }
11313
11314 struct btrace_target_info
11315 {
11316   /* The ptid of the traced thread.  */
11317   ptid_t ptid;
11318 };
11319
11320 /* Check whether the target supports branch tracing.  */
11321
11322 static int
11323 remote_supports_btrace (void)
11324 {
11325   if (remote_protocol_packets[PACKET_Qbtrace_off].support != PACKET_ENABLE)
11326     return 0;
11327   if (remote_protocol_packets[PACKET_Qbtrace_bts].support != PACKET_ENABLE)
11328     return 0;
11329   if (remote_protocol_packets[PACKET_qXfer_btrace].support != PACKET_ENABLE)
11330     return 0;
11331
11332   return 1;
11333 }
11334
11335 /* Enable branch tracing.  */
11336
11337 static struct btrace_target_info *
11338 remote_enable_btrace (ptid_t ptid)
11339 {
11340   struct btrace_target_info *tinfo = NULL;
11341   struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
11342   struct remote_state *rs = get_remote_state ();
11343   char *buf = rs->buf;
11344   char *endbuf = rs->buf + get_remote_packet_size ();
11345
11346   if (packet->support != PACKET_ENABLE)
11347     error (_("Target does not support branch tracing."));
11348
11349   set_general_thread (ptid);
11350
11351   buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
11352   putpkt (rs->buf);
11353   getpkt (&rs->buf, &rs->buf_size, 0);
11354
11355   if (packet_ok (rs->buf, packet) == PACKET_ERROR)
11356     {
11357       if (rs->buf[0] == 'E' && rs->buf[1] == '.')
11358         error (_("Could not enable branch tracing for %s: %s"),
11359                target_pid_to_str (ptid), rs->buf + 2);
11360       else
11361         error (_("Could not enable branch tracing for %s."),
11362                target_pid_to_str (ptid));
11363     }
11364
11365   tinfo = xzalloc (sizeof (*tinfo));
11366   tinfo->ptid = ptid;
11367
11368   return tinfo;
11369 }
11370
11371 /* Disable branch tracing.  */
11372
11373 static void
11374 remote_disable_btrace (struct btrace_target_info *tinfo)
11375 {
11376   struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
11377   struct remote_state *rs = get_remote_state ();
11378   char *buf = rs->buf;
11379   char *endbuf = rs->buf + get_remote_packet_size ();
11380
11381   if (packet->support != PACKET_ENABLE)
11382     error (_("Target does not support branch tracing."));
11383
11384   set_general_thread (tinfo->ptid);
11385
11386   buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
11387   putpkt (rs->buf);
11388   getpkt (&rs->buf, &rs->buf_size, 0);
11389
11390   if (packet_ok (rs->buf, packet) == PACKET_ERROR)
11391     {
11392       if (rs->buf[0] == 'E' && rs->buf[1] == '.')
11393         error (_("Could not disable branch tracing for %s: %s"),
11394                target_pid_to_str (tinfo->ptid), rs->buf + 2);
11395       else
11396         error (_("Could not disable branch tracing for %s."),
11397                target_pid_to_str (tinfo->ptid));
11398     }
11399
11400   xfree (tinfo);
11401 }
11402
11403 /* Teardown branch tracing.  */
11404
11405 static void
11406 remote_teardown_btrace (struct btrace_target_info *tinfo)
11407 {
11408   /* We must not talk to the target during teardown.  */
11409   xfree (tinfo);
11410 }
11411
11412 /* Read the branch trace.  */
11413
11414 static VEC (btrace_block_s) *
11415 remote_read_btrace (struct btrace_target_info *tinfo,
11416                     enum btrace_read_type type)
11417 {
11418   struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
11419   struct remote_state *rs = get_remote_state ();
11420   VEC (btrace_block_s) *btrace = NULL;
11421   const char *annex;
11422   char *xml;
11423
11424   if (packet->support != PACKET_ENABLE)
11425     error (_("Target does not support branch tracing."));
11426
11427 #if !defined(HAVE_LIBEXPAT)
11428   error (_("Cannot process branch tracing result. XML parsing not supported."));
11429 #endif
11430
11431   switch (type)
11432     {
11433     case btrace_read_all:
11434       annex = "all";
11435       break;
11436     case btrace_read_new:
11437       annex = "new";
11438       break;
11439     default:
11440       internal_error (__FILE__, __LINE__,
11441                       _("Bad branch tracing read type: %u."),
11442                       (unsigned int) type);
11443     }
11444
11445   xml = target_read_stralloc (&current_target,
11446                               TARGET_OBJECT_BTRACE, annex);
11447   if (xml != NULL)
11448     {
11449       struct cleanup *cleanup = make_cleanup (xfree, xml);
11450
11451       btrace = parse_xml_btrace (xml);
11452       do_cleanups (cleanup);
11453     }
11454
11455   return btrace;
11456 }
11457
11458 static int
11459 remote_augmented_libraries_svr4_read (void)
11460 {
11461   struct remote_state *rs = get_remote_state ();
11462
11463   return rs->augmented_libraries_svr4_read;
11464 }
11465
11466 static void
11467 init_remote_ops (void)
11468 {
11469   remote_ops.to_shortname = "remote";
11470   remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
11471   remote_ops.to_doc =
11472     "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
11473 Specify the serial device it is connected to\n\
11474 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
11475   remote_ops.to_open = remote_open;
11476   remote_ops.to_close = remote_close;
11477   remote_ops.to_detach = remote_detach;
11478   remote_ops.to_disconnect = remote_disconnect;
11479   remote_ops.to_resume = remote_resume;
11480   remote_ops.to_wait = remote_wait;
11481   remote_ops.to_fetch_registers = remote_fetch_registers;
11482   remote_ops.to_store_registers = remote_store_registers;
11483   remote_ops.to_prepare_to_store = remote_prepare_to_store;
11484   remote_ops.deprecated_xfer_memory = remote_xfer_memory;
11485   remote_ops.to_files_info = remote_files_info;
11486   remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
11487   remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
11488   remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
11489   remote_ops.to_stopped_data_address = remote_stopped_data_address;
11490   remote_ops.to_watchpoint_addr_within_range =
11491     remote_watchpoint_addr_within_range;
11492   remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
11493   remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
11494   remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
11495   remote_ops.to_region_ok_for_hw_watchpoint
11496      = remote_region_ok_for_hw_watchpoint;
11497   remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
11498   remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
11499   remote_ops.to_kill = remote_kill;
11500   remote_ops.to_load = generic_load;
11501   remote_ops.to_mourn_inferior = remote_mourn;
11502   remote_ops.to_pass_signals = remote_pass_signals;
11503   remote_ops.to_program_signals = remote_program_signals;
11504   remote_ops.to_thread_alive = remote_thread_alive;
11505   remote_ops.to_find_new_threads = remote_threads_info;
11506   remote_ops.to_pid_to_str = remote_pid_to_str;
11507   remote_ops.to_extra_thread_info = remote_threads_extra_info;
11508   remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
11509   remote_ops.to_stop = remote_stop;
11510   remote_ops.to_xfer_partial = remote_xfer_partial;
11511   remote_ops.to_rcmd = remote_rcmd;
11512   remote_ops.to_log_command = serial_log_command;
11513   remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
11514   remote_ops.to_stratum = process_stratum;
11515   remote_ops.to_has_all_memory = default_child_has_all_memory;
11516   remote_ops.to_has_memory = default_child_has_memory;
11517   remote_ops.to_has_stack = default_child_has_stack;
11518   remote_ops.to_has_registers = default_child_has_registers;
11519   remote_ops.to_has_execution = default_child_has_execution;
11520   remote_ops.to_has_thread_control = tc_schedlock;    /* can lock scheduler */
11521   remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
11522   remote_ops.to_magic = OPS_MAGIC;
11523   remote_ops.to_memory_map = remote_memory_map;
11524   remote_ops.to_flash_erase = remote_flash_erase;
11525   remote_ops.to_flash_done = remote_flash_done;
11526   remote_ops.to_read_description = remote_read_description;
11527   remote_ops.to_search_memory = remote_search_memory;
11528   remote_ops.to_can_async_p = remote_can_async_p;
11529   remote_ops.to_is_async_p = remote_is_async_p;
11530   remote_ops.to_async = remote_async;
11531   remote_ops.to_terminal_inferior = remote_terminal_inferior;
11532   remote_ops.to_terminal_ours = remote_terminal_ours;
11533   remote_ops.to_supports_non_stop = remote_supports_non_stop;
11534   remote_ops.to_supports_multi_process = remote_supports_multi_process;
11535   remote_ops.to_supports_disable_randomization
11536     = remote_supports_disable_randomization;
11537   remote_ops.to_fileio_open = remote_hostio_open;
11538   remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
11539   remote_ops.to_fileio_pread = remote_hostio_pread;
11540   remote_ops.to_fileio_close = remote_hostio_close;
11541   remote_ops.to_fileio_unlink = remote_hostio_unlink;
11542   remote_ops.to_fileio_readlink = remote_hostio_readlink;
11543   remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
11544   remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
11545   remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
11546   remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
11547   remote_ops.to_trace_init = remote_trace_init;
11548   remote_ops.to_download_tracepoint = remote_download_tracepoint;
11549   remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
11550   remote_ops.to_download_trace_state_variable
11551     = remote_download_trace_state_variable;
11552   remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
11553   remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
11554   remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
11555   remote_ops.to_trace_start = remote_trace_start;
11556   remote_ops.to_get_trace_status = remote_get_trace_status;
11557   remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
11558   remote_ops.to_trace_stop = remote_trace_stop;
11559   remote_ops.to_trace_find = remote_trace_find;
11560   remote_ops.to_get_trace_state_variable_value
11561     = remote_get_trace_state_variable_value;
11562   remote_ops.to_save_trace_data = remote_save_trace_data;
11563   remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
11564   remote_ops.to_upload_trace_state_variables
11565     = remote_upload_trace_state_variables;
11566   remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
11567   remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
11568   remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
11569   remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
11570   remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
11571   remote_ops.to_set_trace_notes = remote_set_trace_notes;
11572   remote_ops.to_core_of_thread = remote_core_of_thread;
11573   remote_ops.to_verify_memory = remote_verify_memory;
11574   remote_ops.to_get_tib_address = remote_get_tib_address;
11575   remote_ops.to_set_permissions = remote_set_permissions;
11576   remote_ops.to_static_tracepoint_marker_at
11577     = remote_static_tracepoint_marker_at;
11578   remote_ops.to_static_tracepoint_markers_by_strid
11579     = remote_static_tracepoint_markers_by_strid;
11580   remote_ops.to_traceframe_info = remote_traceframe_info;
11581   remote_ops.to_use_agent = remote_use_agent;
11582   remote_ops.to_can_use_agent = remote_can_use_agent;
11583   remote_ops.to_supports_btrace = remote_supports_btrace;
11584   remote_ops.to_enable_btrace = remote_enable_btrace;
11585   remote_ops.to_disable_btrace = remote_disable_btrace;
11586   remote_ops.to_teardown_btrace = remote_teardown_btrace;
11587   remote_ops.to_read_btrace = remote_read_btrace;
11588   remote_ops.to_augmented_libraries_svr4_read =
11589     remote_augmented_libraries_svr4_read;
11590 }
11591
11592 /* Set up the extended remote vector by making a copy of the standard
11593    remote vector and adding to it.  */
11594
11595 static void
11596 init_extended_remote_ops (void)
11597 {
11598   extended_remote_ops = remote_ops;
11599
11600   extended_remote_ops.to_shortname = "extended-remote";
11601   extended_remote_ops.to_longname =
11602     "Extended remote serial target in gdb-specific protocol";
11603   extended_remote_ops.to_doc =
11604     "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
11605 Specify the serial device it is connected to (e.g. /dev/ttya).";
11606   extended_remote_ops.to_open = extended_remote_open;
11607   extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
11608   extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
11609   extended_remote_ops.to_detach = extended_remote_detach;
11610   extended_remote_ops.to_attach = extended_remote_attach;
11611   extended_remote_ops.to_kill = extended_remote_kill;
11612   extended_remote_ops.to_supports_disable_randomization
11613     = extended_remote_supports_disable_randomization;
11614 }
11615
11616 static int
11617 remote_can_async_p (void)
11618 {
11619   if (!target_async_permitted)
11620     /* We only enable async when the user specifically asks for it.  */
11621     return 0;
11622
11623   /* We're async whenever the serial device is.  */
11624   return serial_can_async_p (remote_desc);
11625 }
11626
11627 static int
11628 remote_is_async_p (void)
11629 {
11630   if (!target_async_permitted)
11631     /* We only enable async when the user specifically asks for it.  */
11632     return 0;
11633
11634   /* We're async whenever the serial device is.  */
11635   return serial_is_async_p (remote_desc);
11636 }
11637
11638 /* Pass the SERIAL event on and up to the client.  One day this code
11639    will be able to delay notifying the client of an event until the
11640    point where an entire packet has been received.  */
11641
11642 static void (*async_client_callback) (enum inferior_event_type event_type,
11643                                       void *context);
11644 static void *async_client_context;
11645 static serial_event_ftype remote_async_serial_handler;
11646
11647 static void
11648 remote_async_serial_handler (struct serial *scb, void *context)
11649 {
11650   /* Don't propogate error information up to the client.  Instead let
11651      the client find out about the error by querying the target.  */
11652   async_client_callback (INF_REG_EVENT, async_client_context);
11653 }
11654
11655 static void
11656 remote_async_inferior_event_handler (gdb_client_data data)
11657 {
11658   inferior_event_handler (INF_REG_EVENT, NULL);
11659 }
11660
11661 static void
11662 remote_async (void (*callback) (enum inferior_event_type event_type,
11663                                 void *context), void *context)
11664 {
11665   if (callback != NULL)
11666     {
11667       serial_async (remote_desc, remote_async_serial_handler, NULL);
11668       async_client_callback = callback;
11669       async_client_context = context;
11670     }
11671   else
11672     serial_async (remote_desc, NULL, NULL);
11673 }
11674
11675 static void
11676 set_remote_cmd (char *args, int from_tty)
11677 {
11678   help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
11679 }
11680
11681 static void
11682 show_remote_cmd (char *args, int from_tty)
11683 {
11684   /* We can't just use cmd_show_list here, because we want to skip
11685      the redundant "show remote Z-packet" and the legacy aliases.  */
11686   struct cleanup *showlist_chain;
11687   struct cmd_list_element *list = remote_show_cmdlist;
11688   struct ui_out *uiout = current_uiout;
11689
11690   showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
11691   for (; list != NULL; list = list->next)
11692     if (strcmp (list->name, "Z-packet") == 0)
11693       continue;
11694     else if (list->type == not_set_cmd)
11695       /* Alias commands are exactly like the original, except they
11696          don't have the normal type.  */
11697       continue;
11698     else
11699       {
11700         struct cleanup *option_chain
11701           = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
11702
11703         ui_out_field_string (uiout, "name", list->name);
11704         ui_out_text (uiout, ":  ");
11705         if (list->type == show_cmd)
11706           do_show_command ((char *) NULL, from_tty, list);
11707         else
11708           cmd_func (list, NULL, from_tty);
11709         /* Close the tuple.  */
11710         do_cleanups (option_chain);
11711       }
11712
11713   /* Close the tuple.  */
11714   do_cleanups (showlist_chain);
11715 }
11716
11717
11718 /* Function to be called whenever a new objfile (shlib) is detected.  */
11719 static void
11720 remote_new_objfile (struct objfile *objfile)
11721 {
11722   if (remote_desc != 0)         /* Have a remote connection.  */
11723     remote_check_symbols ();
11724 }
11725
11726 /* Pull all the tracepoints defined on the target and create local
11727    data structures representing them.  We don't want to create real
11728    tracepoints yet, we don't want to mess up the user's existing
11729    collection.  */
11730   
11731 static int
11732 remote_upload_tracepoints (struct uploaded_tp **utpp)
11733 {
11734   struct remote_state *rs = get_remote_state ();
11735   char *p;
11736
11737   /* Ask for a first packet of tracepoint definition.  */
11738   putpkt ("qTfP");
11739   getpkt (&rs->buf, &rs->buf_size, 0);
11740   p = rs->buf;
11741   while (*p && *p != 'l')
11742     {
11743       parse_tracepoint_definition (p, utpp);
11744       /* Ask for another packet of tracepoint definition.  */
11745       putpkt ("qTsP");
11746       getpkt (&rs->buf, &rs->buf_size, 0);
11747       p = rs->buf;
11748     }
11749   return 0;
11750 }
11751
11752 static int
11753 remote_upload_trace_state_variables (struct uploaded_tsv **utsvp)
11754 {
11755   struct remote_state *rs = get_remote_state ();
11756   char *p;
11757
11758   /* Ask for a first packet of variable definition.  */
11759   putpkt ("qTfV");
11760   getpkt (&rs->buf, &rs->buf_size, 0);
11761   p = rs->buf;
11762   while (*p && *p != 'l')
11763     {
11764       parse_tsv_definition (p, utsvp);
11765       /* Ask for another packet of variable definition.  */
11766       putpkt ("qTsV");
11767       getpkt (&rs->buf, &rs->buf_size, 0);
11768       p = rs->buf;
11769     }
11770   return 0;
11771 }
11772
11773 /* The "set/show range-stepping" show hook.  */
11774
11775 static void
11776 show_range_stepping (struct ui_file *file, int from_tty,
11777                      struct cmd_list_element *c,
11778                      const char *value)
11779 {
11780   fprintf_filtered (file,
11781                     _("Debugger's willingness to use range stepping "
11782                       "is %s.\n"), value);
11783 }
11784
11785 /* The "set/show range-stepping" set hook.  */
11786
11787 static void
11788 set_range_stepping (char *ignore_args, int from_tty,
11789                     struct cmd_list_element *c)
11790 {
11791   /* Whene enabling, check whether range stepping is actually
11792      supported by the target, and warn if not.  */
11793   if (use_range_stepping)
11794     {
11795       if (remote_desc != NULL)
11796         {
11797           struct remote_state *rs = get_remote_state ();
11798
11799           if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
11800             remote_vcont_probe (rs);
11801
11802           if (remote_protocol_packets[PACKET_vCont].support == PACKET_ENABLE
11803               && rs->supports_vCont.r)
11804             return;
11805         }
11806
11807       warning (_("Range stepping is not supported by the current target"));
11808     }
11809 }
11810
11811 void
11812 _initialize_remote (void)
11813 {
11814   struct remote_state *rs;
11815   struct cmd_list_element *cmd;
11816   const char *cmd_name;
11817
11818   /* architecture specific data */
11819   remote_gdbarch_data_handle =
11820     gdbarch_data_register_post_init (init_remote_state);
11821   remote_g_packet_data_handle =
11822     gdbarch_data_register_pre_init (remote_g_packet_data_init);
11823
11824   /* Initialize the per-target state.  At the moment there is only one
11825      of these, not one per target.  Only one target is active at a
11826      time.  The default buffer size is unimportant; it will be expanded
11827      whenever a larger buffer is needed.  */
11828   rs = get_remote_state_raw ();
11829   rs->buf_size = 400;
11830   rs->buf = xmalloc (rs->buf_size);
11831
11832   init_remote_ops ();
11833   add_target (&remote_ops);
11834
11835   init_extended_remote_ops ();
11836   add_target (&extended_remote_ops);
11837
11838   /* Hook into new objfile notification.  */
11839   observer_attach_new_objfile (remote_new_objfile);
11840   /* We're no longer interested in notification events of an inferior
11841      when it exits.  */
11842   observer_attach_inferior_exit (discard_pending_stop_replies);
11843
11844   /* Set up signal handlers.  */
11845   async_sigint_remote_token =
11846     create_async_signal_handler (async_remote_interrupt, NULL);
11847   async_sigint_remote_twice_token =
11848     create_async_signal_handler (async_remote_interrupt_twice, NULL);
11849
11850 #if 0
11851   init_remote_threadtests ();
11852 #endif
11853
11854   stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
11855   /* set/show remote ...  */
11856
11857   add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
11858 Remote protocol specific variables\n\
11859 Configure various remote-protocol specific variables such as\n\
11860 the packets being used"),
11861                   &remote_set_cmdlist, "set remote ",
11862                   0 /* allow-unknown */, &setlist);
11863   add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
11864 Remote protocol specific variables\n\
11865 Configure various remote-protocol specific variables such as\n\
11866 the packets being used"),
11867                   &remote_show_cmdlist, "show remote ",
11868                   0 /* allow-unknown */, &showlist);
11869
11870   add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
11871 Compare section data on target to the exec file.\n\
11872 Argument is a single section name (default: all loaded sections)."),
11873            &cmdlist);
11874
11875   add_cmd ("packet", class_maintenance, packet_command, _("\
11876 Send an arbitrary packet to a remote target.\n\
11877    maintenance packet TEXT\n\
11878 If GDB is talking to an inferior via the GDB serial protocol, then\n\
11879 this command sends the string TEXT to the inferior, and displays the\n\
11880 response packet.  GDB supplies the initial `$' character, and the\n\
11881 terminating `#' character and checksum."),
11882            &maintenancelist);
11883
11884   add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
11885 Set whether to send break if interrupted."), _("\
11886 Show whether to send break if interrupted."), _("\
11887 If set, a break, instead of a cntrl-c, is sent to the remote target."),
11888                            set_remotebreak, show_remotebreak,
11889                            &setlist, &showlist);
11890   cmd_name = "remotebreak";
11891   cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
11892   deprecate_cmd (cmd, "set remote interrupt-sequence");
11893   cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
11894   cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
11895   deprecate_cmd (cmd, "show remote interrupt-sequence");
11896
11897   add_setshow_enum_cmd ("interrupt-sequence", class_support,
11898                         interrupt_sequence_modes, &interrupt_sequence_mode,
11899                         _("\
11900 Set interrupt sequence to remote target."), _("\
11901 Show interrupt sequence to remote target."), _("\
11902 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
11903                         NULL, show_interrupt_sequence,
11904                         &remote_set_cmdlist,
11905                         &remote_show_cmdlist);
11906
11907   add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
11908                            &interrupt_on_connect, _("\
11909 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("            \
11910 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("           \
11911 If set, interrupt sequence is sent to remote target."),
11912                            NULL, NULL,
11913                            &remote_set_cmdlist, &remote_show_cmdlist);
11914
11915   /* Install commands for configuring memory read/write packets.  */
11916
11917   add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
11918 Set the maximum number of bytes per memory write packet (deprecated)."),
11919            &setlist);
11920   add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
11921 Show the maximum number of bytes per memory write packet (deprecated)."),
11922            &showlist);
11923   add_cmd ("memory-write-packet-size", no_class,
11924            set_memory_write_packet_size, _("\
11925 Set the maximum number of bytes per memory-write packet.\n\
11926 Specify the number of bytes in a packet or 0 (zero) for the\n\
11927 default packet size.  The actual limit is further reduced\n\
11928 dependent on the target.  Specify ``fixed'' to disable the\n\
11929 further restriction and ``limit'' to enable that restriction."),
11930            &remote_set_cmdlist);
11931   add_cmd ("memory-read-packet-size", no_class,
11932            set_memory_read_packet_size, _("\
11933 Set the maximum number of bytes per memory-read packet.\n\
11934 Specify the number of bytes in a packet or 0 (zero) for the\n\
11935 default packet size.  The actual limit is further reduced\n\
11936 dependent on the target.  Specify ``fixed'' to disable the\n\
11937 further restriction and ``limit'' to enable that restriction."),
11938            &remote_set_cmdlist);
11939   add_cmd ("memory-write-packet-size", no_class,
11940            show_memory_write_packet_size,
11941            _("Show the maximum number of bytes per memory-write packet."),
11942            &remote_show_cmdlist);
11943   add_cmd ("memory-read-packet-size", no_class,
11944            show_memory_read_packet_size,
11945            _("Show the maximum number of bytes per memory-read packet."),
11946            &remote_show_cmdlist);
11947
11948   add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
11949                             &remote_hw_watchpoint_limit, _("\
11950 Set the maximum number of target hardware watchpoints."), _("\
11951 Show the maximum number of target hardware watchpoints."), _("\
11952 Specify a negative limit for unlimited."),
11953                             NULL, NULL, /* FIXME: i18n: The maximum
11954                                            number of target hardware
11955                                            watchpoints is %s.  */
11956                             &remote_set_cmdlist, &remote_show_cmdlist);
11957   add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
11958                             &remote_hw_watchpoint_length_limit, _("\
11959 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
11960 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
11961 Specify a negative limit for unlimited."),
11962                             NULL, NULL, /* FIXME: i18n: The maximum
11963                                            length (in bytes) of a target
11964                                            hardware watchpoint is %s.  */
11965                             &remote_set_cmdlist, &remote_show_cmdlist);
11966   add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
11967                             &remote_hw_breakpoint_limit, _("\
11968 Set the maximum number of target hardware breakpoints."), _("\
11969 Show the maximum number of target hardware breakpoints."), _("\
11970 Specify a negative limit for unlimited."),
11971                             NULL, NULL, /* FIXME: i18n: The maximum
11972                                            number of target hardware
11973                                            breakpoints is %s.  */
11974                             &remote_set_cmdlist, &remote_show_cmdlist);
11975
11976   add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
11977                              &remote_address_size, _("\
11978 Set the maximum size of the address (in bits) in a memory packet."), _("\
11979 Show the maximum size of the address (in bits) in a memory packet."), NULL,
11980                              NULL,
11981                              NULL, /* FIXME: i18n: */
11982                              &setlist, &showlist);
11983
11984   add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
11985                          "X", "binary-download", 1);
11986
11987   add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
11988                          "vCont", "verbose-resume", 0);
11989
11990   add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
11991                          "QPassSignals", "pass-signals", 0);
11992
11993   add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
11994                          "QProgramSignals", "program-signals", 0);
11995
11996   add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
11997                          "qSymbol", "symbol-lookup", 0);
11998
11999   add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
12000                          "P", "set-register", 1);
12001
12002   add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
12003                          "p", "fetch-register", 1);
12004
12005   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
12006                          "Z0", "software-breakpoint", 0);
12007
12008   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
12009                          "Z1", "hardware-breakpoint", 0);
12010
12011   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
12012                          "Z2", "write-watchpoint", 0);
12013
12014   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
12015                          "Z3", "read-watchpoint", 0);
12016
12017   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
12018                          "Z4", "access-watchpoint", 0);
12019
12020   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
12021                          "qXfer:auxv:read", "read-aux-vector", 0);
12022
12023   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
12024                          "qXfer:features:read", "target-features", 0);
12025
12026   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
12027                          "qXfer:libraries:read", "library-info", 0);
12028
12029   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
12030                          "qXfer:libraries-svr4:read", "library-info-svr4", 0);
12031
12032   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
12033                          "qXfer:memory-map:read", "memory-map", 0);
12034
12035   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
12036                          "qXfer:spu:read", "read-spu-object", 0);
12037
12038   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
12039                          "qXfer:spu:write", "write-spu-object", 0);
12040
12041   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
12042                         "qXfer:osdata:read", "osdata", 0);
12043
12044   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
12045                          "qXfer:threads:read", "threads", 0);
12046
12047   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
12048                          "qXfer:siginfo:read", "read-siginfo-object", 0);
12049
12050   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
12051                          "qXfer:siginfo:write", "write-siginfo-object", 0);
12052
12053   add_packet_config_cmd
12054     (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
12055      "qXfer:traceframe-info:read", "traceframe-info", 0);
12056
12057   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
12058                          "qXfer:uib:read", "unwind-info-block", 0);
12059
12060   add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
12061                          "qGetTLSAddr", "get-thread-local-storage-address",
12062                          0);
12063
12064   add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
12065                          "qGetTIBAddr", "get-thread-information-block-address",
12066                          0);
12067
12068   add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
12069                          "bc", "reverse-continue", 0);
12070
12071   add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
12072                          "bs", "reverse-step", 0);
12073
12074   add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
12075                          "qSupported", "supported-packets", 0);
12076
12077   add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
12078                          "qSearch:memory", "search-memory", 0);
12079
12080   add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
12081                          "qTStatus", "trace-status", 0);
12082
12083   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
12084                          "vFile:open", "hostio-open", 0);
12085
12086   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
12087                          "vFile:pread", "hostio-pread", 0);
12088
12089   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
12090                          "vFile:pwrite", "hostio-pwrite", 0);
12091
12092   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
12093                          "vFile:close", "hostio-close", 0);
12094
12095   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
12096                          "vFile:unlink", "hostio-unlink", 0);
12097
12098   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
12099                          "vFile:readlink", "hostio-readlink", 0);
12100
12101   add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
12102                          "vAttach", "attach", 0);
12103
12104   add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
12105                          "vRun", "run", 0);
12106
12107   add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
12108                          "QStartNoAckMode", "noack", 0);
12109
12110   add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
12111                          "vKill", "kill", 0);
12112
12113   add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
12114                          "qAttached", "query-attached", 0);
12115
12116   add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
12117                          "ConditionalTracepoints",
12118                          "conditional-tracepoints", 0);
12119
12120   add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
12121                          "ConditionalBreakpoints",
12122                          "conditional-breakpoints", 0);
12123
12124   add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
12125                          "BreakpointCommands",
12126                          "breakpoint-commands", 0);
12127
12128   add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
12129                          "FastTracepoints", "fast-tracepoints", 0);
12130
12131   add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
12132                          "TracepointSource", "TracepointSource", 0);
12133
12134   add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
12135                          "QAllow", "allow", 0);
12136
12137   add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
12138                          "StaticTracepoints", "static-tracepoints", 0);
12139
12140   add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
12141                          "InstallInTrace", "install-in-trace", 0);
12142
12143   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
12144                          "qXfer:statictrace:read", "read-sdata-object", 0);
12145
12146   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
12147                          "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
12148
12149   add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
12150                          "QDisableRandomization", "disable-randomization", 0);
12151
12152   add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
12153                          "QAgent", "agent", 0);
12154
12155   add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
12156                          "QTBuffer:size", "trace-buffer-size", 0);
12157
12158   add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
12159        "Qbtrace:off", "disable-btrace", 0);
12160
12161   add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
12162        "Qbtrace:bts", "enable-btrace", 0);
12163
12164   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
12165        "qXfer:btrace", "read-btrace", 0);
12166
12167   /* Keep the old ``set remote Z-packet ...'' working.  Each individual
12168      Z sub-packet has its own set and show commands, but users may
12169      have sets to this variable in their .gdbinit files (or in their
12170      documentation).  */
12171   add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
12172                                 &remote_Z_packet_detect, _("\
12173 Set use of remote protocol `Z' packets"), _("\
12174 Show use of remote protocol `Z' packets "), _("\
12175 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
12176 packets."),
12177                                 set_remote_protocol_Z_packet_cmd,
12178                                 show_remote_protocol_Z_packet_cmd,
12179                                 /* FIXME: i18n: Use of remote protocol
12180                                    `Z' packets is %s.  */
12181                                 &remote_set_cmdlist, &remote_show_cmdlist);
12182
12183   add_prefix_cmd ("remote", class_files, remote_command, _("\
12184 Manipulate files on the remote system\n\
12185 Transfer files to and from the remote target system."),
12186                   &remote_cmdlist, "remote ",
12187                   0 /* allow-unknown */, &cmdlist);
12188
12189   add_cmd ("put", class_files, remote_put_command,
12190            _("Copy a local file to the remote system."),
12191            &remote_cmdlist);
12192
12193   add_cmd ("get", class_files, remote_get_command,
12194            _("Copy a remote file to the local system."),
12195            &remote_cmdlist);
12196
12197   add_cmd ("delete", class_files, remote_delete_command,
12198            _("Delete a remote file."),
12199            &remote_cmdlist);
12200
12201   remote_exec_file = xstrdup ("");
12202   add_setshow_string_noescape_cmd ("exec-file", class_files,
12203                                    &remote_exec_file, _("\
12204 Set the remote pathname for \"run\""), _("\
12205 Show the remote pathname for \"run\""), NULL, NULL, NULL,
12206                                    &remote_set_cmdlist, &remote_show_cmdlist);
12207
12208   add_setshow_boolean_cmd ("range-stepping", class_run,
12209                            &use_range_stepping, _("\
12210 Enable or disable range stepping."), _("\
12211 Show whether target-assisted range stepping is enabled."), _("\
12212 If on, and the target supports it, when stepping a source line, GDB\n\
12213 tells the target to step the corresponding range of addresses itself instead\n\
12214 of issuing multiple single-steps.  This speeds up source level\n\
12215 stepping.  If off, GDB always issues single-steps, even if range\n\
12216 stepping is supported by the target.  The default is on."),
12217                            set_range_stepping,
12218                            show_range_stepping,
12219                            &setlist,
12220                            &showlist);
12221
12222   /* Eventually initialize fileio.  See fileio.c */
12223   initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
12224
12225   /* Take advantage of the fact that the LWP field is not used, to tag
12226      special ptids with it set to != 0.  */
12227   magic_null_ptid = ptid_build (42000, 1, -1);
12228   not_sent_ptid = ptid_build (42000, 1, -2);
12229   any_thread_ptid = ptid_build (42000, 1, 0);
12230
12231   target_buf_size = 2048;
12232   target_buf = xmalloc (target_buf_size);
12233 }
12234