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