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