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