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