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