Remove cleanup from remote.c
[external/binutils.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
3    Copyright (C) 1988-2019 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 "process-stratum-target.h"
31 /*#include "terminal.h" */
32 #include "gdbcmd.h"
33 #include "objfiles.h"
34 #include "gdb-stabs.h"
35 #include "gdbthread.h"
36 #include "remote.h"
37 #include "remote-notif.h"
38 #include "regcache.h"
39 #include "value.h"
40 #include "observable.h"
41 #include "solib.h"
42 #include "cli/cli-decode.h"
43 #include "cli/cli-setshow.h"
44 #include "target-descriptions.h"
45 #include "gdb_bfd.h"
46 #include "filestuff.h"
47 #include "rsp-low.h"
48 #include "disasm.h"
49 #include "location.h"
50
51 #include "gdb_sys_time.h"
52
53 #include "event-loop.h"
54 #include "event-top.h"
55 #include "inf-loop.h"
56
57 #include <signal.h>
58 #include "serial.h"
59
60 #include "gdbcore.h" /* for exec_bfd */
61
62 #include "remote-fileio.h"
63 #include "gdb/fileio.h"
64 #include <sys/stat.h>
65 #include "xml-support.h"
66
67 #include "memory-map.h"
68
69 #include "tracepoint.h"
70 #include "ax.h"
71 #include "ax-gdb.h"
72 #include "agent.h"
73 #include "btrace.h"
74 #include "record-btrace.h"
75 #include <algorithm>
76 #include "common/scoped_restore.h"
77 #include "environ.h"
78 #include "common/byte-vector.h"
79 #include <unordered_map>
80
81 /* The remote target.  */
82
83 static const char remote_doc[] = N_("\
84 Use a remote computer via a serial line, using a gdb-specific protocol.\n\
85 Specify the serial device it is connected to\n\
86 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
87
88 #define OPAQUETHREADBYTES 8
89
90 /* a 64 bit opaque identifier */
91 typedef unsigned char threadref[OPAQUETHREADBYTES];
92
93 struct gdb_ext_thread_info;
94 struct threads_listing_context;
95 typedef int (*rmt_thread_action) (threadref *ref, void *context);
96 struct protocol_feature;
97 struct packet_reg;
98
99 struct stop_reply;
100 static void stop_reply_xfree (struct stop_reply *);
101
102 struct stop_reply_deleter
103 {
104   void operator() (stop_reply *r) const
105   {
106     stop_reply_xfree (r);
107   }
108 };
109
110 typedef std::unique_ptr<stop_reply, stop_reply_deleter> stop_reply_up;
111
112 /* Generic configuration support for packets the stub optionally
113    supports.  Allows the user to specify the use of the packet as well
114    as allowing GDB to auto-detect support in the remote stub.  */
115
116 enum packet_support
117   {
118     PACKET_SUPPORT_UNKNOWN = 0,
119     PACKET_ENABLE,
120     PACKET_DISABLE
121   };
122
123 /* Analyze a packet's return value and update the packet config
124    accordingly.  */
125
126 enum packet_result
127 {
128   PACKET_ERROR,
129   PACKET_OK,
130   PACKET_UNKNOWN
131 };
132
133 struct threads_listing_context;
134
135 /* Stub vCont actions support.
136
137    Each field is a boolean flag indicating whether the stub reports
138    support for the corresponding action.  */
139
140 struct vCont_action_support
141 {
142   /* vCont;t */
143   bool t = false;
144
145   /* vCont;r */
146   bool r = false;
147
148   /* vCont;s */
149   bool s = false;
150
151   /* vCont;S */
152   bool S = false;
153 };
154
155 /* About this many threadisds fit in a packet.  */
156
157 #define MAXTHREADLISTRESULTS 32
158
159 /* Data for the vFile:pread readahead cache.  */
160
161 struct readahead_cache
162 {
163   /* Invalidate the readahead cache.  */
164   void invalidate ();
165
166   /* Invalidate the readahead cache if it is holding data for FD.  */
167   void invalidate_fd (int fd);
168
169   /* Serve pread from the readahead cache.  Returns number of bytes
170      read, or 0 if the request can't be served from the cache.  */
171   int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
172
173   /* The file descriptor for the file that is being cached.  -1 if the
174      cache is invalid.  */
175   int fd = -1;
176
177   /* The offset into the file that the cache buffer corresponds
178      to.  */
179   ULONGEST offset = 0;
180
181   /* The buffer holding the cache contents.  */
182   gdb_byte *buf = nullptr;
183   /* The buffer's size.  We try to read as much as fits into a packet
184      at a time.  */
185   size_t bufsize = 0;
186
187   /* Cache hit and miss counters.  */
188   ULONGEST hit_count = 0;
189   ULONGEST miss_count = 0;
190 };
191
192 /* Description of the remote protocol for a given architecture.  */
193
194 struct packet_reg
195 {
196   long offset; /* Offset into G packet.  */
197   long regnum; /* GDB's internal register number.  */
198   LONGEST pnum; /* Remote protocol register number.  */
199   int in_g_packet; /* Always part of G packet.  */
200   /* long size in bytes;  == register_size (target_gdbarch (), regnum);
201      at present.  */
202   /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
203      at present.  */
204 };
205
206 struct remote_arch_state
207 {
208   explicit remote_arch_state (struct gdbarch *gdbarch);
209
210   /* Description of the remote protocol registers.  */
211   long sizeof_g_packet;
212
213   /* Description of the remote protocol registers indexed by REGNUM
214      (making an array gdbarch_num_regs in size).  */
215   std::unique_ptr<packet_reg[]> regs;
216
217   /* This is the size (in chars) of the first response to the ``g''
218      packet.  It is used as a heuristic when determining the maximum
219      size of memory-read and memory-write packets.  A target will
220      typically only reserve a buffer large enough to hold the ``g''
221      packet.  The size does not include packet overhead (headers and
222      trailers).  */
223   long actual_register_packet_size;
224
225   /* This is the maximum size (in chars) of a non read/write packet.
226      It is also used as a cap on the size of read/write packets.  */
227   long remote_packet_size;
228 };
229
230 /* Description of the remote protocol state for the currently
231    connected target.  This is per-target state, and independent of the
232    selected architecture.  */
233
234 class remote_state
235 {
236 public:
237
238   remote_state ();
239   ~remote_state ();
240
241   /* Get the remote arch state for GDBARCH.  */
242   struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
243
244 public: /* data */
245
246   /* A buffer to use for incoming packets, and its current size.  The
247      buffer is grown dynamically for larger incoming packets.
248      Outgoing packets may also be constructed in this buffer.
249      The size of the buffer is always at least REMOTE_PACKET_SIZE;
250      REMOTE_PACKET_SIZE should be used to limit the length of outgoing
251      packets.  */
252   gdb::char_vector buf;
253
254   /* True if we're going through initial connection setup (finding out
255      about the remote side's threads, relocating symbols, etc.).  */
256   bool starting_up = false;
257
258   /* If we negotiated packet size explicitly (and thus can bypass
259      heuristics for the largest packet size that will not overflow
260      a buffer in the stub), this will be set to that packet size.
261      Otherwise zero, meaning to use the guessed size.  */
262   long explicit_packet_size = 0;
263
264   /* remote_wait is normally called when the target is running and
265      waits for a stop reply packet.  But sometimes we need to call it
266      when the target is already stopped.  We can send a "?" packet
267      and have remote_wait read the response.  Or, if we already have
268      the response, we can stash it in BUF and tell remote_wait to
269      skip calling getpkt.  This flag is set when BUF contains a
270      stop reply packet and the target is not waiting.  */
271   int cached_wait_status = 0;
272
273   /* True, if in no ack mode.  That is, neither GDB nor the stub will
274      expect acks from each other.  The connection is assumed to be
275      reliable.  */
276   bool noack_mode = false;
277
278   /* True if we're connected in extended remote mode.  */
279   bool extended = false;
280
281   /* True if we resumed the target and we're waiting for the target to
282      stop.  In the mean time, we can't start another command/query.
283      The remote server wouldn't be ready to process it, so we'd
284      timeout waiting for a reply that would never come and eventually
285      we'd close the connection.  This can happen in asynchronous mode
286      because we allow GDB commands while the target is running.  */
287   bool waiting_for_stop_reply = false;
288
289   /* The status of the stub support for the various vCont actions.  */
290   vCont_action_support supports_vCont;
291
292   /* True if the user has pressed Ctrl-C, but the target hasn't
293      responded to that.  */
294   bool ctrlc_pending_p = false;
295
296   /* True if we saw a Ctrl-C while reading or writing from/to the
297      remote descriptor.  At that point it is not safe to send a remote
298      interrupt packet, so we instead remember we saw the Ctrl-C and
299      process it once we're done with sending/receiving the current
300      packet, which should be shortly.  If however that takes too long,
301      and the user presses Ctrl-C again, we offer to disconnect.  */
302   bool got_ctrlc_during_io = false;
303
304   /* Descriptor for I/O to remote machine.  Initialize it to NULL so that
305      remote_open knows that we don't have a file open when the program
306      starts.  */
307   struct serial *remote_desc = nullptr;
308
309   /* These are the threads which we last sent to the remote system.  The
310      TID member will be -1 for all or -2 for not sent yet.  */
311   ptid_t general_thread = null_ptid;
312   ptid_t continue_thread = null_ptid;
313
314   /* This is the traceframe which we last selected on the remote system.
315      It will be -1 if no traceframe is selected.  */
316   int remote_traceframe_number = -1;
317
318   char *last_pass_packet = nullptr;
319
320   /* The last QProgramSignals packet sent to the target.  We bypass
321      sending a new program signals list down to the target if the new
322      packet is exactly the same as the last we sent.  IOW, we only let
323      the target know about program signals list changes.  */
324   char *last_program_signals_packet = nullptr;
325
326   gdb_signal last_sent_signal = GDB_SIGNAL_0;
327
328   bool last_sent_step = false;
329
330   /* The execution direction of the last resume we got.  */
331   exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
332
333   char *finished_object = nullptr;
334   char *finished_annex = nullptr;
335   ULONGEST finished_offset = 0;
336
337   /* Should we try the 'ThreadInfo' query packet?
338
339      This variable (NOT available to the user: auto-detect only!)
340      determines whether GDB will use the new, simpler "ThreadInfo"
341      query or the older, more complex syntax for thread queries.
342      This is an auto-detect variable (set to true at each connect,
343      and set to false when the target fails to recognize it).  */
344   bool use_threadinfo_query = false;
345   bool use_threadextra_query = false;
346
347   threadref echo_nextthread {};
348   threadref nextthread {};
349   threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
350
351   /* The state of remote notification.  */
352   struct remote_notif_state *notif_state = nullptr;
353
354   /* The branch trace configuration.  */
355   struct btrace_config btrace_config {};
356
357   /* The argument to the last "vFile:setfs:" packet we sent, used
358      to avoid sending repeated unnecessary "vFile:setfs:" packets.
359      Initialized to -1 to indicate that no "vFile:setfs:" packet
360      has yet been sent.  */
361   int fs_pid = -1;
362
363   /* A readahead cache for vFile:pread.  Often, reading a binary
364      involves a sequence of small reads.  E.g., when parsing an ELF
365      file.  A readahead cache helps mostly the case of remote
366      debugging on a connection with higher latency, due to the
367      request/reply nature of the RSP.  We only cache data for a single
368      file descriptor at a time.  */
369   struct readahead_cache readahead_cache;
370
371   /* The list of already fetched and acknowledged stop events.  This
372      queue is used for notification Stop, and other notifications
373      don't need queue for their events, because the notification
374      events of Stop can't be consumed immediately, so that events
375      should be queued first, and be consumed by remote_wait_{ns,as}
376      one per time.  Other notifications can consume their events
377      immediately, so queue is not needed for them.  */
378   std::vector<stop_reply_up> stop_reply_queue;
379
380   /* Asynchronous signal handle registered as event loop source for
381      when we have pending events ready to be passed to the core.  */
382   struct async_event_handler *remote_async_inferior_event_token = nullptr;
383
384   /* FIXME: cagney/1999-09-23: Even though getpkt was called with
385      ``forever'' still use the normal timeout mechanism.  This is
386      currently used by the ASYNC code to guarentee that target reads
387      during the initial connect always time-out.  Once getpkt has been
388      modified to return a timeout indication and, in turn
389      remote_wait()/wait_for_inferior() have gained a timeout parameter
390      this can go away.  */
391   int wait_forever_enabled_p = 1;
392
393 private:
394   /* Mapping of remote protocol data for each gdbarch.  Usually there
395      is only one entry here, though we may see more with stubs that
396      support multi-process.  */
397   std::unordered_map<struct gdbarch *, remote_arch_state>
398     m_arch_states;
399 };
400
401 static const target_info remote_target_info = {
402   "remote",
403   N_("Remote serial target in gdb-specific protocol"),
404   remote_doc
405 };
406
407 class remote_target : public process_stratum_target
408 {
409 public:
410   remote_target () = default;
411   ~remote_target () override;
412
413   const target_info &info () const override
414   { return remote_target_info; }
415
416   thread_control_capabilities get_thread_control_capabilities () override
417   { return tc_schedlock; }
418
419   /* Open a remote connection.  */
420   static void open (const char *, int);
421
422   void close () override;
423
424   void detach (inferior *, int) override;
425   void disconnect (const char *, int) override;
426
427   void commit_resume () override;
428   void resume (ptid_t, int, enum gdb_signal) override;
429   ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
430
431   void fetch_registers (struct regcache *, int) override;
432   void store_registers (struct regcache *, int) override;
433   void prepare_to_store (struct regcache *) override;
434
435   void files_info () override;
436
437   int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
438
439   int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
440                          enum remove_bp_reason) override;
441
442
443   bool stopped_by_sw_breakpoint () override;
444   bool supports_stopped_by_sw_breakpoint () override;
445
446   bool stopped_by_hw_breakpoint () override;
447
448   bool supports_stopped_by_hw_breakpoint () override;
449
450   bool stopped_by_watchpoint () override;
451
452   bool stopped_data_address (CORE_ADDR *) override;
453
454   bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
455
456   int can_use_hw_breakpoint (enum bptype, int, int) override;
457
458   int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
459
460   int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
461
462   int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
463
464   int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
465                          struct expression *) override;
466
467   int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
468                          struct expression *) override;
469
470   void kill () override;
471
472   void load (const char *, int) override;
473
474   void mourn_inferior () override;
475
476   void pass_signals (int, const unsigned char *) override;
477
478   int set_syscall_catchpoint (int, bool, int,
479                               gdb::array_view<const int>) override;
480
481   void program_signals (int, const unsigned char *) override;
482
483   bool thread_alive (ptid_t ptid) override;
484
485   const char *thread_name (struct thread_info *) override;
486
487   void update_thread_list () override;
488
489   const char *pid_to_str (ptid_t) override;
490
491   const char *extra_thread_info (struct thread_info *) override;
492
493   ptid_t get_ada_task_ptid (long lwp, long thread) override;
494
495   thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
496                                              int handle_len,
497                                              inferior *inf) override;
498
499   void stop (ptid_t) override;
500
501   void interrupt () override;
502
503   void pass_ctrlc () override;
504
505   enum target_xfer_status xfer_partial (enum target_object object,
506                                         const char *annex,
507                                         gdb_byte *readbuf,
508                                         const gdb_byte *writebuf,
509                                         ULONGEST offset, ULONGEST len,
510                                         ULONGEST *xfered_len) override;
511
512   ULONGEST get_memory_xfer_limit () override;
513
514   void rcmd (const char *command, struct ui_file *output) override;
515
516   char *pid_to_exec_file (int pid) override;
517
518   void log_command (const char *cmd) override
519   {
520     serial_log_command (this, cmd);
521   }
522
523   CORE_ADDR get_thread_local_address (ptid_t ptid,
524                                       CORE_ADDR load_module_addr,
525                                       CORE_ADDR offset) override;
526
527   bool can_execute_reverse () override;
528
529   std::vector<mem_region> memory_map () override;
530
531   void flash_erase (ULONGEST address, LONGEST length) override;
532
533   void flash_done () override;
534
535   const struct target_desc *read_description () override;
536
537   int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
538                      const gdb_byte *pattern, ULONGEST pattern_len,
539                      CORE_ADDR *found_addrp) override;
540
541   bool can_async_p () override;
542
543   bool is_async_p () override;
544
545   void async (int) override;
546
547   void thread_events (int) override;
548
549   int can_do_single_step () override;
550
551   void terminal_inferior () override;
552
553   void terminal_ours () override;
554
555   bool supports_non_stop () override;
556
557   bool supports_multi_process () override;
558
559   bool supports_disable_randomization () override;
560
561   bool filesystem_is_local () override;
562
563
564   int fileio_open (struct inferior *inf, const char *filename,
565                    int flags, int mode, int warn_if_slow,
566                    int *target_errno) override;
567
568   int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
569                      ULONGEST offset, int *target_errno) override;
570
571   int fileio_pread (int fd, gdb_byte *read_buf, int len,
572                     ULONGEST offset, int *target_errno) override;
573
574   int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
575
576   int fileio_close (int fd, int *target_errno) override;
577
578   int fileio_unlink (struct inferior *inf,
579                      const char *filename,
580                      int *target_errno) override;
581
582   gdb::optional<std::string>
583     fileio_readlink (struct inferior *inf,
584                      const char *filename,
585                      int *target_errno) override;
586
587   bool supports_enable_disable_tracepoint () override;
588
589   bool supports_string_tracing () override;
590
591   bool supports_evaluation_of_breakpoint_conditions () override;
592
593   bool can_run_breakpoint_commands () override;
594
595   void trace_init () override;
596
597   void download_tracepoint (struct bp_location *location) override;
598
599   bool can_download_tracepoint () override;
600
601   void download_trace_state_variable (const trace_state_variable &tsv) override;
602
603   void enable_tracepoint (struct bp_location *location) override;
604
605   void disable_tracepoint (struct bp_location *location) override;
606
607   void trace_set_readonly_regions () override;
608
609   void trace_start () override;
610
611   int get_trace_status (struct trace_status *ts) override;
612
613   void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
614     override;
615
616   void trace_stop () override;
617
618   int trace_find (enum trace_find_type type, int num,
619                   CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
620
621   bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
622
623   int save_trace_data (const char *filename) override;
624
625   int upload_tracepoints (struct uploaded_tp **utpp) override;
626
627   int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
628
629   LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
630
631   int get_min_fast_tracepoint_insn_len () override;
632
633   void set_disconnected_tracing (int val) override;
634
635   void set_circular_trace_buffer (int val) override;
636
637   void set_trace_buffer_size (LONGEST val) override;
638
639   bool set_trace_notes (const char *user, const char *notes,
640                         const char *stopnotes) override;
641
642   int core_of_thread (ptid_t ptid) override;
643
644   int verify_memory (const gdb_byte *data,
645                      CORE_ADDR memaddr, ULONGEST size) override;
646
647
648   bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
649
650   void set_permissions () override;
651
652   bool static_tracepoint_marker_at (CORE_ADDR,
653                                     struct static_tracepoint_marker *marker)
654     override;
655
656   std::vector<static_tracepoint_marker>
657     static_tracepoint_markers_by_strid (const char *id) override;
658
659   traceframe_info_up traceframe_info () override;
660
661   bool use_agent (bool use) override;
662   bool can_use_agent () override;
663
664   struct btrace_target_info *enable_btrace (ptid_t ptid,
665                                             const struct btrace_config *conf) override;
666
667   void disable_btrace (struct btrace_target_info *tinfo) override;
668
669   void teardown_btrace (struct btrace_target_info *tinfo) override;
670
671   enum btrace_error read_btrace (struct btrace_data *data,
672                                  struct btrace_target_info *btinfo,
673                                  enum btrace_read_type type) override;
674
675   const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
676   bool augmented_libraries_svr4_read () override;
677   int follow_fork (int, int) override;
678   void follow_exec (struct inferior *, char *) override;
679   int insert_fork_catchpoint (int) override;
680   int remove_fork_catchpoint (int) override;
681   int insert_vfork_catchpoint (int) override;
682   int remove_vfork_catchpoint (int) override;
683   int insert_exec_catchpoint (int) override;
684   int remove_exec_catchpoint (int) override;
685   enum exec_direction_kind execution_direction () override;
686
687 public: /* Remote specific methods.  */
688
689   void remote_download_command_source (int num, ULONGEST addr,
690                                        struct command_line *cmds);
691
692   void remote_file_put (const char *local_file, const char *remote_file,
693                         int from_tty);
694   void remote_file_get (const char *remote_file, const char *local_file,
695                         int from_tty);
696   void remote_file_delete (const char *remote_file, int from_tty);
697
698   int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
699                            ULONGEST offset, int *remote_errno);
700   int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
701                             ULONGEST offset, int *remote_errno);
702   int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
703                                  ULONGEST offset, int *remote_errno);
704
705   int remote_hostio_send_command (int command_bytes, int which_packet,
706                                   int *remote_errno, char **attachment,
707                                   int *attachment_len);
708   int remote_hostio_set_filesystem (struct inferior *inf,
709                                     int *remote_errno);
710   /* We should get rid of this and use fileio_open directly.  */
711   int remote_hostio_open (struct inferior *inf, const char *filename,
712                           int flags, int mode, int warn_if_slow,
713                           int *remote_errno);
714   int remote_hostio_close (int fd, int *remote_errno);
715
716   int remote_hostio_unlink (inferior *inf, const char *filename,
717                             int *remote_errno);
718
719   struct remote_state *get_remote_state ();
720
721   long get_remote_packet_size (void);
722   long get_memory_packet_size (struct memory_packet_config *config);
723
724   long get_memory_write_packet_size ();
725   long get_memory_read_packet_size ();
726
727   char *append_pending_thread_resumptions (char *p, char *endp,
728                                            ptid_t ptid);
729   static void open_1 (const char *name, int from_tty, int extended_p);
730   void start_remote (int from_tty, int extended_p);
731   void remote_detach_1 (struct inferior *inf, int from_tty);
732
733   char *append_resumption (char *p, char *endp,
734                            ptid_t ptid, int step, gdb_signal siggnal);
735   int remote_resume_with_vcont (ptid_t ptid, int step,
736                                 gdb_signal siggnal);
737
738   void add_current_inferior_and_thread (char *wait_status);
739
740   ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
741                   int options);
742   ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
743                   int options);
744
745   ptid_t process_stop_reply (struct stop_reply *stop_reply,
746                              target_waitstatus *status);
747
748   void remote_notice_new_inferior (ptid_t currthread, int executing);
749
750   void process_initial_stop_replies (int from_tty);
751
752   thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
753
754   void btrace_sync_conf (const btrace_config *conf);
755
756   void remote_btrace_maybe_reopen ();
757
758   void remove_new_fork_children (threads_listing_context *context);
759   void kill_new_fork_children (int pid);
760   void discard_pending_stop_replies (struct inferior *inf);
761   int stop_reply_queue_length ();
762
763   void check_pending_events_prevent_wildcard_vcont
764     (int *may_global_wildcard_vcont);
765
766   void discard_pending_stop_replies_in_queue ();
767   struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
768   struct stop_reply *queued_stop_reply (ptid_t ptid);
769   int peek_stop_reply (ptid_t ptid);
770   void remote_parse_stop_reply (const char *buf, stop_reply *event);
771
772   void remote_stop_ns (ptid_t ptid);
773   void remote_interrupt_as ();
774   void remote_interrupt_ns ();
775
776   char *remote_get_noisy_reply ();
777   int remote_query_attached (int pid);
778   inferior *remote_add_inferior (int fake_pid_p, int pid, int attached,
779                                  int try_open_exec);
780
781   ptid_t remote_current_thread (ptid_t oldpid);
782   ptid_t get_current_thread (char *wait_status);
783
784   void set_thread (ptid_t ptid, int gen);
785   void set_general_thread (ptid_t ptid);
786   void set_continue_thread (ptid_t ptid);
787   void set_general_process ();
788
789   char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
790
791   int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
792                                           gdb_ext_thread_info *info);
793   int remote_get_threadinfo (threadref *threadid, int fieldset,
794                              gdb_ext_thread_info *info);
795
796   int parse_threadlist_response (char *pkt, int result_limit,
797                                  threadref *original_echo,
798                                  threadref *resultlist,
799                                  int *doneflag);
800   int remote_get_threadlist (int startflag, threadref *nextthread,
801                              int result_limit, int *done, int *result_count,
802                              threadref *threadlist);
803
804   int remote_threadlist_iterator (rmt_thread_action stepfunction,
805                                   void *context, int looplimit);
806
807   int remote_get_threads_with_ql (threads_listing_context *context);
808   int remote_get_threads_with_qxfer (threads_listing_context *context);
809   int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
810
811   void extended_remote_restart ();
812
813   void get_offsets ();
814
815   void remote_check_symbols ();
816
817   void remote_supported_packet (const struct protocol_feature *feature,
818                                 enum packet_support support,
819                                 const char *argument);
820
821   void remote_query_supported ();
822
823   void remote_packet_size (const protocol_feature *feature,
824                            packet_support support, const char *value);
825
826   void remote_serial_quit_handler ();
827
828   void remote_detach_pid (int pid);
829
830   void remote_vcont_probe ();
831
832   void remote_resume_with_hc (ptid_t ptid, int step,
833                               gdb_signal siggnal);
834
835   void send_interrupt_sequence ();
836   void interrupt_query ();
837
838   void remote_notif_get_pending_events (notif_client *nc);
839
840   int fetch_register_using_p (struct regcache *regcache,
841                               packet_reg *reg);
842   int send_g_packet ();
843   void process_g_packet (struct regcache *regcache);
844   void fetch_registers_using_g (struct regcache *regcache);
845   int store_register_using_P (const struct regcache *regcache,
846                               packet_reg *reg);
847   void store_registers_using_G (const struct regcache *regcache);
848
849   void set_remote_traceframe ();
850
851   void check_binary_download (CORE_ADDR addr);
852
853   target_xfer_status remote_write_bytes_aux (const char *header,
854                                              CORE_ADDR memaddr,
855                                              const gdb_byte *myaddr,
856                                              ULONGEST len_units,
857                                              int unit_size,
858                                              ULONGEST *xfered_len_units,
859                                              char packet_format,
860                                              int use_length);
861
862   target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
863                                          const gdb_byte *myaddr, ULONGEST len,
864                                          int unit_size, ULONGEST *xfered_len);
865
866   target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
867                                           ULONGEST len_units,
868                                           int unit_size, ULONGEST *xfered_len_units);
869
870   target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
871                                                         ULONGEST memaddr,
872                                                         ULONGEST len,
873                                                         int unit_size,
874                                                         ULONGEST *xfered_len);
875
876   target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
877                                         gdb_byte *myaddr, ULONGEST len,
878                                         int unit_size,
879                                         ULONGEST *xfered_len);
880
881   packet_result remote_send_printf (const char *format, ...)
882     ATTRIBUTE_PRINTF (2, 3);
883
884   target_xfer_status remote_flash_write (ULONGEST address,
885                                          ULONGEST length, ULONGEST *xfered_len,
886                                          const gdb_byte *data);
887
888   int readchar (int timeout);
889
890   void remote_serial_write (const char *str, int len);
891
892   int putpkt (const char *buf);
893   int putpkt_binary (const char *buf, int cnt);
894
895   int putpkt (const gdb::char_vector &buf)
896   {
897     return putpkt (buf.data ());
898   }
899
900   void skip_frame ();
901   long read_frame (gdb::char_vector *buf_p);
902   void getpkt (gdb::char_vector *buf, int forever);
903   int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
904                               int expecting_notif, int *is_notif);
905   int getpkt_sane (gdb::char_vector *buf, int forever);
906   int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
907                             int *is_notif);
908   int remote_vkill (int pid);
909   void remote_kill_k ();
910
911   void extended_remote_disable_randomization (int val);
912   int extended_remote_run (const std::string &args);
913
914   void send_environment_packet (const char *action,
915                                 const char *packet,
916                                 const char *value);
917
918   void extended_remote_environment_support ();
919   void extended_remote_set_inferior_cwd ();
920
921   target_xfer_status remote_write_qxfer (const char *object_name,
922                                          const char *annex,
923                                          const gdb_byte *writebuf,
924                                          ULONGEST offset, LONGEST len,
925                                          ULONGEST *xfered_len,
926                                          struct packet_config *packet);
927
928   target_xfer_status remote_read_qxfer (const char *object_name,
929                                         const char *annex,
930                                         gdb_byte *readbuf, ULONGEST offset,
931                                         LONGEST len,
932                                         ULONGEST *xfered_len,
933                                         struct packet_config *packet);
934
935   void push_stop_reply (struct stop_reply *new_event);
936
937   bool vcont_r_supported ();
938
939   void packet_command (const char *args, int from_tty);
940
941 private: /* data fields */
942
943   /* The remote state.  Don't reference this directly.  Use the
944      get_remote_state method instead.  */
945   remote_state m_remote_state;
946 };
947
948 static const target_info extended_remote_target_info = {
949   "extended-remote",
950   N_("Extended remote serial target in gdb-specific protocol"),
951   remote_doc
952 };
953
954 /* Set up the extended remote target by extending the standard remote
955    target and adding to it.  */
956
957 class extended_remote_target final : public remote_target
958 {
959 public:
960   const target_info &info () const override
961   { return extended_remote_target_info; }
962
963   /* Open an extended-remote connection.  */
964   static void open (const char *, int);
965
966   bool can_create_inferior () override { return true; }
967   void create_inferior (const char *, const std::string &,
968                         char **, int) override;
969
970   void detach (inferior *, int) override;
971
972   bool can_attach () override { return true; }
973   void attach (const char *, int) override;
974
975   void post_attach (int) override;
976   bool supports_disable_randomization () override;
977 };
978
979 /* Per-program-space data key.  */
980 static const struct program_space_data *remote_pspace_data;
981
982 /* The variable registered as the control variable used by the
983    remote exec-file commands.  While the remote exec-file setting is
984    per-program-space, the set/show machinery uses this as the 
985    location of the remote exec-file value.  */
986 static char *remote_exec_file_var;
987
988 /* The size to align memory write packets, when practical.  The protocol
989    does not guarantee any alignment, and gdb will generate short
990    writes and unaligned writes, but even as a best-effort attempt this
991    can improve bulk transfers.  For instance, if a write is misaligned
992    relative to the target's data bus, the stub may need to make an extra
993    round trip fetching data from the target.  This doesn't make a
994    huge difference, but it's easy to do, so we try to be helpful.
995
996    The alignment chosen is arbitrary; usually data bus width is
997    important here, not the possibly larger cache line size.  */
998 enum { REMOTE_ALIGN_WRITES = 16 };
999
1000 /* Prototypes for local functions.  */
1001
1002 static int hexnumlen (ULONGEST num);
1003
1004 static int stubhex (int ch);
1005
1006 static int hexnumstr (char *, ULONGEST);
1007
1008 static int hexnumnstr (char *, ULONGEST, int);
1009
1010 static CORE_ADDR remote_address_masked (CORE_ADDR);
1011
1012 static void print_packet (const char *);
1013
1014 static int stub_unpack_int (char *buff, int fieldlength);
1015
1016 struct packet_config;
1017
1018 static void show_packet_config_cmd (struct packet_config *config);
1019
1020 static void show_remote_protocol_packet_cmd (struct ui_file *file,
1021                                              int from_tty,
1022                                              struct cmd_list_element *c,
1023                                              const char *value);
1024
1025 static ptid_t read_ptid (const char *buf, const char **obuf);
1026
1027 static void remote_async_inferior_event_handler (gdb_client_data);
1028
1029 static bool remote_read_description_p (struct target_ops *target);
1030
1031 static void remote_console_output (const char *msg);
1032
1033 static void remote_btrace_reset (remote_state *rs);
1034
1035 static void remote_unpush_and_throw (void);
1036
1037 /* For "remote".  */
1038
1039 static struct cmd_list_element *remote_cmdlist;
1040
1041 /* For "set remote" and "show remote".  */
1042
1043 static struct cmd_list_element *remote_set_cmdlist;
1044 static struct cmd_list_element *remote_show_cmdlist;
1045
1046 /* Controls whether GDB is willing to use range stepping.  */
1047
1048 static int use_range_stepping = 1;
1049
1050 /* The max number of chars in debug output.  The rest of chars are
1051    omitted.  */
1052
1053 #define REMOTE_DEBUG_MAX_CHAR 512
1054
1055 /* Private data that we'll store in (struct thread_info)->priv.  */
1056 struct remote_thread_info : public private_thread_info
1057 {
1058   std::string extra;
1059   std::string name;
1060   int core = -1;
1061
1062   /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1063      sequence of bytes.  */
1064   gdb::byte_vector thread_handle;
1065
1066   /* Whether the target stopped for a breakpoint/watchpoint.  */
1067   enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
1068
1069   /* This is set to the data address of the access causing the target
1070      to stop for a watchpoint.  */
1071   CORE_ADDR watch_data_address = 0;
1072
1073   /* Fields used by the vCont action coalescing implemented in
1074      remote_resume / remote_commit_resume.  remote_resume stores each
1075      thread's last resume request in these fields, so that a later
1076      remote_commit_resume knows which is the proper action for this
1077      thread to include in the vCont packet.  */
1078
1079   /* True if the last target_resume call for this thread was a step
1080      request, false if a continue request.  */
1081   int last_resume_step = 0;
1082
1083   /* The signal specified in the last target_resume call for this
1084      thread.  */
1085   gdb_signal last_resume_sig = GDB_SIGNAL_0;
1086
1087   /* Whether this thread was already vCont-resumed on the remote
1088      side.  */
1089   int vcont_resumed = 0;
1090 };
1091
1092 remote_state::remote_state ()
1093   : buf (400)
1094 {
1095 }
1096
1097 remote_state::~remote_state ()
1098 {
1099   xfree (this->last_pass_packet);
1100   xfree (this->last_program_signals_packet);
1101   xfree (this->finished_object);
1102   xfree (this->finished_annex);
1103 }
1104
1105 /* Utility: generate error from an incoming stub packet.  */
1106 static void
1107 trace_error (char *buf)
1108 {
1109   if (*buf++ != 'E')
1110     return;                     /* not an error msg */
1111   switch (*buf)
1112     {
1113     case '1':                   /* malformed packet error */
1114       if (*++buf == '0')        /*   general case: */
1115         error (_("remote.c: error in outgoing packet."));
1116       else
1117         error (_("remote.c: error in outgoing packet at field #%ld."),
1118                strtol (buf, NULL, 16));
1119     default:
1120       error (_("Target returns error code '%s'."), buf);
1121     }
1122 }
1123
1124 /* Utility: wait for reply from stub, while accepting "O" packets.  */
1125
1126 char *
1127 remote_target::remote_get_noisy_reply ()
1128 {
1129   struct remote_state *rs = get_remote_state ();
1130
1131   do                            /* Loop on reply from remote stub.  */
1132     {
1133       char *buf;
1134
1135       QUIT;                     /* Allow user to bail out with ^C.  */
1136       getpkt (&rs->buf, 0);
1137       buf = rs->buf.data ();
1138       if (buf[0] == 'E')
1139         trace_error (buf);
1140       else if (startswith (buf, "qRelocInsn:"))
1141         {
1142           ULONGEST ul;
1143           CORE_ADDR from, to, org_to;
1144           const char *p, *pp;
1145           int adjusted_size = 0;
1146           int relocated = 0;
1147
1148           p = buf + strlen ("qRelocInsn:");
1149           pp = unpack_varlen_hex (p, &ul);
1150           if (*pp != ';')
1151             error (_("invalid qRelocInsn packet: %s"), buf);
1152           from = ul;
1153
1154           p = pp + 1;
1155           unpack_varlen_hex (p, &ul);
1156           to = ul;
1157
1158           org_to = to;
1159
1160           TRY
1161             {
1162               gdbarch_relocate_instruction (target_gdbarch (), &to, from);
1163               relocated = 1;
1164             }
1165           CATCH (ex, RETURN_MASK_ALL)
1166             {
1167               if (ex.error == MEMORY_ERROR)
1168                 {
1169                   /* Propagate memory errors silently back to the
1170                      target.  The stub may have limited the range of
1171                      addresses we can write to, for example.  */
1172                 }
1173               else
1174                 {
1175                   /* Something unexpectedly bad happened.  Be verbose
1176                      so we can tell what, and propagate the error back
1177                      to the stub, so it doesn't get stuck waiting for
1178                      a response.  */
1179                   exception_fprintf (gdb_stderr, ex,
1180                                      _("warning: relocating instruction: "));
1181                 }
1182               putpkt ("E01");
1183             }
1184           END_CATCH
1185
1186           if (relocated)
1187             {
1188               adjusted_size = to - org_to;
1189
1190               xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
1191               putpkt (buf);
1192             }
1193         }
1194       else if (buf[0] == 'O' && buf[1] != 'K')
1195         remote_console_output (buf + 1);        /* 'O' message from stub */
1196       else
1197         return buf;             /* Here's the actual reply.  */
1198     }
1199   while (1);
1200 }
1201
1202 struct remote_arch_state *
1203 remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
1204 {
1205   remote_arch_state *rsa;
1206
1207   auto it = this->m_arch_states.find (gdbarch);
1208   if (it == this->m_arch_states.end ())
1209     {
1210       auto p = this->m_arch_states.emplace (std::piecewise_construct,
1211                                             std::forward_as_tuple (gdbarch),
1212                                             std::forward_as_tuple (gdbarch));
1213       rsa = &p.first->second;
1214
1215       /* Make sure that the packet buffer is plenty big enough for
1216          this architecture.  */
1217       if (this->buf.size () < rsa->remote_packet_size)
1218         this->buf.resize (2 * rsa->remote_packet_size);
1219     }
1220   else
1221     rsa = &it->second;
1222
1223   return rsa;
1224 }
1225
1226 /* Fetch the global remote target state.  */
1227
1228 remote_state *
1229 remote_target::get_remote_state ()
1230 {
1231   /* Make sure that the remote architecture state has been
1232      initialized, because doing so might reallocate rs->buf.  Any
1233      function which calls getpkt also needs to be mindful of changes
1234      to rs->buf, but this call limits the number of places which run
1235      into trouble.  */
1236   m_remote_state.get_remote_arch_state (target_gdbarch ());
1237
1238   return &m_remote_state;
1239 }
1240
1241 /* Cleanup routine for the remote module's pspace data.  */
1242
1243 static void
1244 remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
1245 {
1246   char *remote_exec_file = (char *) arg;
1247
1248   xfree (remote_exec_file);
1249 }
1250
1251 /* Fetch the remote exec-file from the current program space.  */
1252
1253 static const char *
1254 get_remote_exec_file (void)
1255 {
1256   char *remote_exec_file;
1257
1258   remote_exec_file
1259     = (char *) program_space_data (current_program_space,
1260                                    remote_pspace_data);
1261   if (remote_exec_file == NULL)
1262     return "";
1263
1264   return remote_exec_file;
1265 }
1266
1267 /* Set the remote exec file for PSPACE.  */
1268
1269 static void
1270 set_pspace_remote_exec_file (struct program_space *pspace,
1271                         char *remote_exec_file)
1272 {
1273   char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
1274
1275   xfree (old_file);
1276   set_program_space_data (pspace, remote_pspace_data,
1277                           xstrdup (remote_exec_file));
1278 }
1279
1280 /* The "set/show remote exec-file" set command hook.  */
1281
1282 static void
1283 set_remote_exec_file (const char *ignored, int from_tty,
1284                       struct cmd_list_element *c)
1285 {
1286   gdb_assert (remote_exec_file_var != NULL);
1287   set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1288 }
1289
1290 /* The "set/show remote exec-file" show command hook.  */
1291
1292 static void
1293 show_remote_exec_file (struct ui_file *file, int from_tty,
1294                        struct cmd_list_element *cmd, const char *value)
1295 {
1296   fprintf_filtered (file, "%s\n", remote_exec_file_var);
1297 }
1298
1299 static int
1300 compare_pnums (const void *lhs_, const void *rhs_)
1301 {
1302   const struct packet_reg * const *lhs
1303     = (const struct packet_reg * const *) lhs_;
1304   const struct packet_reg * const *rhs
1305     = (const struct packet_reg * const *) rhs_;
1306
1307   if ((*lhs)->pnum < (*rhs)->pnum)
1308     return -1;
1309   else if ((*lhs)->pnum == (*rhs)->pnum)
1310     return 0;
1311   else
1312     return 1;
1313 }
1314
1315 static int
1316 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
1317 {
1318   int regnum, num_remote_regs, offset;
1319   struct packet_reg **remote_regs;
1320
1321   for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
1322     {
1323       struct packet_reg *r = &regs[regnum];
1324
1325       if (register_size (gdbarch, regnum) == 0)
1326         /* Do not try to fetch zero-sized (placeholder) registers.  */
1327         r->pnum = -1;
1328       else
1329         r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1330
1331       r->regnum = regnum;
1332     }
1333
1334   /* Define the g/G packet format as the contents of each register
1335      with a remote protocol number, in order of ascending protocol
1336      number.  */
1337
1338   remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
1339   for (num_remote_regs = 0, regnum = 0;
1340        regnum < gdbarch_num_regs (gdbarch);
1341        regnum++)
1342     if (regs[regnum].pnum != -1)
1343       remote_regs[num_remote_regs++] = &regs[regnum];
1344
1345   qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
1346          compare_pnums);
1347
1348   for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1349     {
1350       remote_regs[regnum]->in_g_packet = 1;
1351       remote_regs[regnum]->offset = offset;
1352       offset += register_size (gdbarch, remote_regs[regnum]->regnum);
1353     }
1354
1355   return offset;
1356 }
1357
1358 /* Given the architecture described by GDBARCH, return the remote
1359    protocol register's number and the register's offset in the g/G
1360    packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1361    If the target does not have a mapping for REGNUM, return false,
1362    otherwise, return true.  */
1363
1364 int
1365 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1366                                    int *pnum, int *poffset)
1367 {
1368   gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1369
1370   std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
1371
1372   map_regcache_remote_table (gdbarch, regs.data ());
1373
1374   *pnum = regs[regnum].pnum;
1375   *poffset = regs[regnum].offset;
1376
1377   return *pnum != -1;
1378 }
1379
1380 remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
1381 {
1382   /* Use the architecture to build a regnum<->pnum table, which will be
1383      1:1 unless a feature set specifies otherwise.  */
1384   this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
1385
1386   /* Record the maximum possible size of the g packet - it may turn out
1387      to be smaller.  */
1388   this->sizeof_g_packet
1389     = map_regcache_remote_table (gdbarch, this->regs.get ());
1390
1391   /* Default maximum number of characters in a packet body.  Many
1392      remote stubs have a hardwired buffer size of 400 bytes
1393      (c.f. BUFMAX in m68k-stub.c and i386-stub.c).  BUFMAX-1 is used
1394      as the maximum packet-size to ensure that the packet and an extra
1395      NUL character can always fit in the buffer.  This stops GDB
1396      trashing stubs that try to squeeze an extra NUL into what is
1397      already a full buffer (As of 1999-12-04 that was most stubs).  */
1398   this->remote_packet_size = 400 - 1;
1399
1400   /* This one is filled in when a ``g'' packet is received.  */
1401   this->actual_register_packet_size = 0;
1402
1403   /* Should rsa->sizeof_g_packet needs more space than the
1404      default, adjust the size accordingly.  Remember that each byte is
1405      encoded as two characters.  32 is the overhead for the packet
1406      header / footer.  NOTE: cagney/1999-10-26: I suspect that 8
1407      (``$NN:G...#NN'') is a better guess, the below has been padded a
1408      little.  */
1409   if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1410     this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
1411 }
1412
1413 /* Get a pointer to the current remote target.  If not connected to a
1414    remote target, return NULL.  */
1415
1416 static remote_target *
1417 get_current_remote_target ()
1418 {
1419   target_ops *proc_target = find_target_at (process_stratum);
1420   return dynamic_cast<remote_target *> (proc_target);
1421 }
1422
1423 /* Return the current allowed size of a remote packet.  This is
1424    inferred from the current architecture, and should be used to
1425    limit the length of outgoing packets.  */
1426 long
1427 remote_target::get_remote_packet_size ()
1428 {
1429   struct remote_state *rs = get_remote_state ();
1430   remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1431
1432   if (rs->explicit_packet_size)
1433     return rs->explicit_packet_size;
1434
1435   return rsa->remote_packet_size;
1436 }
1437
1438 static struct packet_reg *
1439 packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1440                         long regnum)
1441 {
1442   if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
1443     return NULL;
1444   else
1445     {
1446       struct packet_reg *r = &rsa->regs[regnum];
1447
1448       gdb_assert (r->regnum == regnum);
1449       return r;
1450     }
1451 }
1452
1453 static struct packet_reg *
1454 packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1455                       LONGEST pnum)
1456 {
1457   int i;
1458
1459   for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
1460     {
1461       struct packet_reg *r = &rsa->regs[i];
1462
1463       if (r->pnum == pnum)
1464         return r;
1465     }
1466   return NULL;
1467 }
1468
1469 /* Allow the user to specify what sequence to send to the remote
1470    when he requests a program interruption: Although ^C is usually
1471    what remote systems expect (this is the default, here), it is
1472    sometimes preferable to send a break.  On other systems such
1473    as the Linux kernel, a break followed by g, which is Magic SysRq g
1474    is required in order to interrupt the execution.  */
1475 const char interrupt_sequence_control_c[] = "Ctrl-C";
1476 const char interrupt_sequence_break[] = "BREAK";
1477 const char interrupt_sequence_break_g[] = "BREAK-g";
1478 static const char *const interrupt_sequence_modes[] =
1479   {
1480     interrupt_sequence_control_c,
1481     interrupt_sequence_break,
1482     interrupt_sequence_break_g,
1483     NULL
1484   };
1485 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1486
1487 static void
1488 show_interrupt_sequence (struct ui_file *file, int from_tty,
1489                          struct cmd_list_element *c,
1490                          const char *value)
1491 {
1492   if (interrupt_sequence_mode == interrupt_sequence_control_c)
1493     fprintf_filtered (file,
1494                       _("Send the ASCII ETX character (Ctrl-c) "
1495                         "to the remote target to interrupt the "
1496                         "execution of the program.\n"));
1497   else if (interrupt_sequence_mode == interrupt_sequence_break)
1498     fprintf_filtered (file,
1499                       _("send a break signal to the remote target "
1500                         "to interrupt the execution of the program.\n"));
1501   else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1502     fprintf_filtered (file,
1503                       _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1504                         "the remote target to interrupt the execution "
1505                         "of Linux kernel.\n"));
1506   else
1507     internal_error (__FILE__, __LINE__,
1508                     _("Invalid value for interrupt_sequence_mode: %s."),
1509                     interrupt_sequence_mode);
1510 }
1511
1512 /* This boolean variable specifies whether interrupt_sequence is sent
1513    to the remote target when gdb connects to it.
1514    This is mostly needed when you debug the Linux kernel: The Linux kernel
1515    expects BREAK g which is Magic SysRq g for connecting gdb.  */
1516 static int interrupt_on_connect = 0;
1517
1518 /* This variable is used to implement the "set/show remotebreak" commands.
1519    Since these commands are now deprecated in favor of "set/show remote
1520    interrupt-sequence", it no longer has any effect on the code.  */
1521 static int remote_break;
1522
1523 static void
1524 set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
1525 {
1526   if (remote_break)
1527     interrupt_sequence_mode = interrupt_sequence_break;
1528   else
1529     interrupt_sequence_mode = interrupt_sequence_control_c;
1530 }
1531
1532 static void
1533 show_remotebreak (struct ui_file *file, int from_tty,
1534                   struct cmd_list_element *c,
1535                   const char *value)
1536 {
1537 }
1538
1539 /* This variable sets the number of bits in an address that are to be
1540    sent in a memory ("M" or "m") packet.  Normally, after stripping
1541    leading zeros, the entire address would be sent.  This variable
1542    restricts the address to REMOTE_ADDRESS_SIZE bits.  HISTORY: The
1543    initial implementation of remote.c restricted the address sent in
1544    memory packets to ``host::sizeof long'' bytes - (typically 32
1545    bits).  Consequently, for 64 bit targets, the upper 32 bits of an
1546    address was never sent.  Since fixing this bug may cause a break in
1547    some remote targets this variable is principly provided to
1548    facilitate backward compatibility.  */
1549
1550 static unsigned int remote_address_size;
1551
1552 \f
1553 /* User configurable variables for the number of characters in a
1554    memory read/write packet.  MIN (rsa->remote_packet_size,
1555    rsa->sizeof_g_packet) is the default.  Some targets need smaller
1556    values (fifo overruns, et.al.) and some users need larger values
1557    (speed up transfers).  The variables ``preferred_*'' (the user
1558    request), ``current_*'' (what was actually set) and ``forced_*''
1559    (Positive - a soft limit, negative - a hard limit).  */
1560
1561 struct memory_packet_config
1562 {
1563   const char *name;
1564   long size;
1565   int fixed_p;
1566 };
1567
1568 /* The default max memory-write-packet-size, when the setting is
1569    "fixed".  The 16k is historical.  (It came from older GDB's using
1570    alloca for buffers and the knowledge (folklore?) that some hosts
1571    don't cope very well with large alloca calls.)  */
1572 #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
1573
1574 /* The minimum remote packet size for memory transfers.  Ensures we
1575    can write at least one byte.  */
1576 #define MIN_MEMORY_PACKET_SIZE 20
1577
1578 /* Get the memory packet size, assuming it is fixed.  */
1579
1580 static long
1581 get_fixed_memory_packet_size (struct memory_packet_config *config)
1582 {
1583   gdb_assert (config->fixed_p);
1584
1585   if (config->size <= 0)
1586     return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1587   else
1588     return config->size;
1589 }
1590
1591 /* Compute the current size of a read/write packet.  Since this makes
1592    use of ``actual_register_packet_size'' the computation is dynamic.  */
1593
1594 long
1595 remote_target::get_memory_packet_size (struct memory_packet_config *config)
1596 {
1597   struct remote_state *rs = get_remote_state ();
1598   remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1599
1600   long what_they_get;
1601   if (config->fixed_p)
1602     what_they_get = get_fixed_memory_packet_size (config);
1603   else
1604     {
1605       what_they_get = get_remote_packet_size ();
1606       /* Limit the packet to the size specified by the user.  */
1607       if (config->size > 0
1608           && what_they_get > config->size)
1609         what_they_get = config->size;
1610
1611       /* Limit it to the size of the targets ``g'' response unless we have
1612          permission from the stub to use a larger packet size.  */
1613       if (rs->explicit_packet_size == 0
1614           && rsa->actual_register_packet_size > 0
1615           && what_they_get > rsa->actual_register_packet_size)
1616         what_they_get = rsa->actual_register_packet_size;
1617     }
1618   if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1619     what_they_get = MIN_MEMORY_PACKET_SIZE;
1620
1621   /* Make sure there is room in the global buffer for this packet
1622      (including its trailing NUL byte).  */
1623   if (rs->buf.size () < what_they_get + 1)
1624     rs->buf.resize (2 * what_they_get);
1625
1626   return what_they_get;
1627 }
1628
1629 /* Update the size of a read/write packet.  If they user wants
1630    something really big then do a sanity check.  */
1631
1632 static void
1633 set_memory_packet_size (const char *args, struct memory_packet_config *config)
1634 {
1635   int fixed_p = config->fixed_p;
1636   long size = config->size;
1637
1638   if (args == NULL)
1639     error (_("Argument required (integer, `fixed' or `limited')."));
1640   else if (strcmp (args, "hard") == 0
1641       || strcmp (args, "fixed") == 0)
1642     fixed_p = 1;
1643   else if (strcmp (args, "soft") == 0
1644            || strcmp (args, "limit") == 0)
1645     fixed_p = 0;
1646   else
1647     {
1648       char *end;
1649
1650       size = strtoul (args, &end, 0);
1651       if (args == end)
1652         error (_("Invalid %s (bad syntax)."), config->name);
1653
1654       /* Instead of explicitly capping the size of a packet to or
1655          disallowing it, the user is allowed to set the size to
1656          something arbitrarily large.  */
1657     }
1658
1659   /* Extra checks?  */
1660   if (fixed_p && !config->fixed_p)
1661     {
1662       /* So that the query shows the correct value.  */
1663       long query_size = (size <= 0
1664                          ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1665                          : size);
1666
1667       if (! query (_("The target may not be able to correctly handle a %s\n"
1668                    "of %ld bytes. Change the packet size? "),
1669                    config->name, query_size))
1670         error (_("Packet size not changed."));
1671     }
1672   /* Update the config.  */
1673   config->fixed_p = fixed_p;
1674   config->size = size;
1675 }
1676
1677 static void
1678 show_memory_packet_size (struct memory_packet_config *config)
1679 {
1680   if (config->size == 0)
1681     printf_filtered (_("The %s is 0 (default). "), config->name);
1682   else
1683     printf_filtered (_("The %s is %ld. "), config->name, config->size);
1684   if (config->fixed_p)
1685     printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1686                      get_fixed_memory_packet_size (config));
1687   else
1688     {
1689       remote_target *remote = get_current_remote_target ();
1690
1691       if (remote != NULL)
1692         printf_filtered (_("Packets are limited to %ld bytes.\n"),
1693                          remote->get_memory_packet_size (config));
1694       else
1695         puts_filtered ("The actual limit will be further reduced "
1696                        "dependent on the target.\n");
1697     }
1698 }
1699
1700 static struct memory_packet_config memory_write_packet_config =
1701 {
1702   "memory-write-packet-size",
1703 };
1704
1705 static void
1706 set_memory_write_packet_size (const char *args, int from_tty)
1707 {
1708   set_memory_packet_size (args, &memory_write_packet_config);
1709 }
1710
1711 static void
1712 show_memory_write_packet_size (const char *args, int from_tty)
1713 {
1714   show_memory_packet_size (&memory_write_packet_config);
1715 }
1716
1717 /* Show the number of hardware watchpoints that can be used.  */
1718
1719 static void
1720 show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1721                                 struct cmd_list_element *c,
1722                                 const char *value)
1723 {
1724   fprintf_filtered (file, _("The maximum number of target hardware "
1725                             "watchpoints is %s.\n"), value);
1726 }
1727
1728 /* Show the length limit (in bytes) for hardware watchpoints.  */
1729
1730 static void
1731 show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1732                                        struct cmd_list_element *c,
1733                                        const char *value)
1734 {
1735   fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1736                             "hardware watchpoint is %s.\n"), value);
1737 }
1738
1739 /* Show the number of hardware breakpoints that can be used.  */
1740
1741 static void
1742 show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1743                                 struct cmd_list_element *c,
1744                                 const char *value)
1745 {
1746   fprintf_filtered (file, _("The maximum number of target hardware "
1747                             "breakpoints is %s.\n"), value);
1748 }
1749
1750 long
1751 remote_target::get_memory_write_packet_size ()
1752 {
1753   return get_memory_packet_size (&memory_write_packet_config);
1754 }
1755
1756 static struct memory_packet_config memory_read_packet_config =
1757 {
1758   "memory-read-packet-size",
1759 };
1760
1761 static void
1762 set_memory_read_packet_size (const char *args, int from_tty)
1763 {
1764   set_memory_packet_size (args, &memory_read_packet_config);
1765 }
1766
1767 static void
1768 show_memory_read_packet_size (const char *args, int from_tty)
1769 {
1770   show_memory_packet_size (&memory_read_packet_config);
1771 }
1772
1773 long
1774 remote_target::get_memory_read_packet_size ()
1775 {
1776   long size = get_memory_packet_size (&memory_read_packet_config);
1777
1778   /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1779      extra buffer size argument before the memory read size can be
1780      increased beyond this.  */
1781   if (size > get_remote_packet_size ())
1782     size = get_remote_packet_size ();
1783   return size;
1784 }
1785
1786 \f
1787
1788 struct packet_config
1789   {
1790     const char *name;
1791     const char *title;
1792
1793     /* If auto, GDB auto-detects support for this packet or feature,
1794        either through qSupported, or by trying the packet and looking
1795        at the response.  If true, GDB assumes the target supports this
1796        packet.  If false, the packet is disabled.  Configs that don't
1797        have an associated command always have this set to auto.  */
1798     enum auto_boolean detect;
1799
1800     /* Does the target support this packet?  */
1801     enum packet_support support;
1802   };
1803
1804 static enum packet_support packet_config_support (struct packet_config *config);
1805 static enum packet_support packet_support (int packet);
1806
1807 static void
1808 show_packet_config_cmd (struct packet_config *config)
1809 {
1810   const char *support = "internal-error";
1811
1812   switch (packet_config_support (config))
1813     {
1814     case PACKET_ENABLE:
1815       support = "enabled";
1816       break;
1817     case PACKET_DISABLE:
1818       support = "disabled";
1819       break;
1820     case PACKET_SUPPORT_UNKNOWN:
1821       support = "unknown";
1822       break;
1823     }
1824   switch (config->detect)
1825     {
1826     case AUTO_BOOLEAN_AUTO:
1827       printf_filtered (_("Support for the `%s' packet "
1828                          "is auto-detected, currently %s.\n"),
1829                        config->name, support);
1830       break;
1831     case AUTO_BOOLEAN_TRUE:
1832     case AUTO_BOOLEAN_FALSE:
1833       printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1834                        config->name, support);
1835       break;
1836     }
1837 }
1838
1839 static void
1840 add_packet_config_cmd (struct packet_config *config, const char *name,
1841                        const char *title, int legacy)
1842 {
1843   char *set_doc;
1844   char *show_doc;
1845   char *cmd_name;
1846
1847   config->name = name;
1848   config->title = title;
1849   set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1850                         name, title);
1851   show_doc = xstrprintf ("Show current use of remote "
1852                          "protocol `%s' (%s) packet",
1853                          name, title);
1854   /* set/show TITLE-packet {auto,on,off} */
1855   cmd_name = xstrprintf ("%s-packet", title);
1856   add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1857                                 &config->detect, set_doc,
1858                                 show_doc, NULL, /* help_doc */
1859                                 NULL,
1860                                 show_remote_protocol_packet_cmd,
1861                                 &remote_set_cmdlist, &remote_show_cmdlist);
1862   /* The command code copies the documentation strings.  */
1863   xfree (set_doc);
1864   xfree (show_doc);
1865   /* set/show remote NAME-packet {auto,on,off} -- legacy.  */
1866   if (legacy)
1867     {
1868       char *legacy_name;
1869
1870       legacy_name = xstrprintf ("%s-packet", name);
1871       add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1872                      &remote_set_cmdlist);
1873       add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1874                      &remote_show_cmdlist);
1875     }
1876 }
1877
1878 static enum packet_result
1879 packet_check_result (const char *buf)
1880 {
1881   if (buf[0] != '\0')
1882     {
1883       /* The stub recognized the packet request.  Check that the
1884          operation succeeded.  */
1885       if (buf[0] == 'E'
1886           && isxdigit (buf[1]) && isxdigit (buf[2])
1887           && buf[3] == '\0')
1888         /* "Enn"  - definitly an error.  */
1889         return PACKET_ERROR;
1890
1891       /* Always treat "E." as an error.  This will be used for
1892          more verbose error messages, such as E.memtypes.  */
1893       if (buf[0] == 'E' && buf[1] == '.')
1894         return PACKET_ERROR;
1895
1896       /* The packet may or may not be OK.  Just assume it is.  */
1897       return PACKET_OK;
1898     }
1899   else
1900     /* The stub does not support the packet.  */
1901     return PACKET_UNKNOWN;
1902 }
1903
1904 static enum packet_result
1905 packet_check_result (const gdb::char_vector &buf)
1906 {
1907   return packet_check_result (buf.data ());
1908 }
1909
1910 static enum packet_result
1911 packet_ok (const char *buf, struct packet_config *config)
1912 {
1913   enum packet_result result;
1914
1915   if (config->detect != AUTO_BOOLEAN_TRUE
1916       && config->support == PACKET_DISABLE)
1917     internal_error (__FILE__, __LINE__,
1918                     _("packet_ok: attempt to use a disabled packet"));
1919
1920   result = packet_check_result (buf);
1921   switch (result)
1922     {
1923     case PACKET_OK:
1924     case PACKET_ERROR:
1925       /* The stub recognized the packet request.  */
1926       if (config->support == PACKET_SUPPORT_UNKNOWN)
1927         {
1928           if (remote_debug)
1929             fprintf_unfiltered (gdb_stdlog,
1930                                 "Packet %s (%s) is supported\n",
1931                                 config->name, config->title);
1932           config->support = PACKET_ENABLE;
1933         }
1934       break;
1935     case PACKET_UNKNOWN:
1936       /* The stub does not support the packet.  */
1937       if (config->detect == AUTO_BOOLEAN_AUTO
1938           && config->support == PACKET_ENABLE)
1939         {
1940           /* If the stub previously indicated that the packet was
1941              supported then there is a protocol error.  */
1942           error (_("Protocol error: %s (%s) conflicting enabled responses."),
1943                  config->name, config->title);
1944         }
1945       else if (config->detect == AUTO_BOOLEAN_TRUE)
1946         {
1947           /* The user set it wrong.  */
1948           error (_("Enabled packet %s (%s) not recognized by stub"),
1949                  config->name, config->title);
1950         }
1951
1952       if (remote_debug)
1953         fprintf_unfiltered (gdb_stdlog,
1954                             "Packet %s (%s) is NOT supported\n",
1955                             config->name, config->title);
1956       config->support = PACKET_DISABLE;
1957       break;
1958     }
1959
1960   return result;
1961 }
1962
1963 static enum packet_result
1964 packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1965 {
1966   return packet_ok (buf.data (), config);
1967 }
1968
1969 enum {
1970   PACKET_vCont = 0,
1971   PACKET_X,
1972   PACKET_qSymbol,
1973   PACKET_P,
1974   PACKET_p,
1975   PACKET_Z0,
1976   PACKET_Z1,
1977   PACKET_Z2,
1978   PACKET_Z3,
1979   PACKET_Z4,
1980   PACKET_vFile_setfs,
1981   PACKET_vFile_open,
1982   PACKET_vFile_pread,
1983   PACKET_vFile_pwrite,
1984   PACKET_vFile_close,
1985   PACKET_vFile_unlink,
1986   PACKET_vFile_readlink,
1987   PACKET_vFile_fstat,
1988   PACKET_qXfer_auxv,
1989   PACKET_qXfer_features,
1990   PACKET_qXfer_exec_file,
1991   PACKET_qXfer_libraries,
1992   PACKET_qXfer_libraries_svr4,
1993   PACKET_qXfer_memory_map,
1994   PACKET_qXfer_spu_read,
1995   PACKET_qXfer_spu_write,
1996   PACKET_qXfer_osdata,
1997   PACKET_qXfer_threads,
1998   PACKET_qXfer_statictrace_read,
1999   PACKET_qXfer_traceframe_info,
2000   PACKET_qXfer_uib,
2001   PACKET_qGetTIBAddr,
2002   PACKET_qGetTLSAddr,
2003   PACKET_qSupported,
2004   PACKET_qTStatus,
2005   PACKET_QPassSignals,
2006   PACKET_QCatchSyscalls,
2007   PACKET_QProgramSignals,
2008   PACKET_QSetWorkingDir,
2009   PACKET_QStartupWithShell,
2010   PACKET_QEnvironmentHexEncoded,
2011   PACKET_QEnvironmentReset,
2012   PACKET_QEnvironmentUnset,
2013   PACKET_qCRC,
2014   PACKET_qSearch_memory,
2015   PACKET_vAttach,
2016   PACKET_vRun,
2017   PACKET_QStartNoAckMode,
2018   PACKET_vKill,
2019   PACKET_qXfer_siginfo_read,
2020   PACKET_qXfer_siginfo_write,
2021   PACKET_qAttached,
2022
2023   /* Support for conditional tracepoints.  */
2024   PACKET_ConditionalTracepoints,
2025
2026   /* Support for target-side breakpoint conditions.  */
2027   PACKET_ConditionalBreakpoints,
2028
2029   /* Support for target-side breakpoint commands.  */
2030   PACKET_BreakpointCommands,
2031
2032   /* Support for fast tracepoints.  */
2033   PACKET_FastTracepoints,
2034
2035   /* Support for static tracepoints.  */
2036   PACKET_StaticTracepoints,
2037
2038   /* Support for installing tracepoints while a trace experiment is
2039      running.  */
2040   PACKET_InstallInTrace,
2041
2042   PACKET_bc,
2043   PACKET_bs,
2044   PACKET_TracepointSource,
2045   PACKET_QAllow,
2046   PACKET_qXfer_fdpic,
2047   PACKET_QDisableRandomization,
2048   PACKET_QAgent,
2049   PACKET_QTBuffer_size,
2050   PACKET_Qbtrace_off,
2051   PACKET_Qbtrace_bts,
2052   PACKET_Qbtrace_pt,
2053   PACKET_qXfer_btrace,
2054
2055   /* Support for the QNonStop packet.  */
2056   PACKET_QNonStop,
2057
2058   /* Support for the QThreadEvents packet.  */
2059   PACKET_QThreadEvents,
2060
2061   /* Support for multi-process extensions.  */
2062   PACKET_multiprocess_feature,
2063
2064   /* Support for enabling and disabling tracepoints while a trace
2065      experiment is running.  */
2066   PACKET_EnableDisableTracepoints_feature,
2067
2068   /* Support for collecting strings using the tracenz bytecode.  */
2069   PACKET_tracenz_feature,
2070
2071   /* Support for continuing to run a trace experiment while GDB is
2072      disconnected.  */
2073   PACKET_DisconnectedTracing_feature,
2074
2075   /* Support for qXfer:libraries-svr4:read with a non-empty annex.  */
2076   PACKET_augmented_libraries_svr4_read_feature,
2077
2078   /* Support for the qXfer:btrace-conf:read packet.  */
2079   PACKET_qXfer_btrace_conf,
2080
2081   /* Support for the Qbtrace-conf:bts:size packet.  */
2082   PACKET_Qbtrace_conf_bts_size,
2083
2084   /* Support for swbreak+ feature.  */
2085   PACKET_swbreak_feature,
2086
2087   /* Support for hwbreak+ feature.  */
2088   PACKET_hwbreak_feature,
2089
2090   /* Support for fork events.  */
2091   PACKET_fork_event_feature,
2092
2093   /* Support for vfork events.  */
2094   PACKET_vfork_event_feature,
2095
2096   /* Support for the Qbtrace-conf:pt:size packet.  */
2097   PACKET_Qbtrace_conf_pt_size,
2098
2099   /* Support for exec events.  */
2100   PACKET_exec_event_feature,
2101
2102   /* Support for query supported vCont actions.  */
2103   PACKET_vContSupported,
2104
2105   /* Support remote CTRL-C.  */
2106   PACKET_vCtrlC,
2107
2108   /* Support TARGET_WAITKIND_NO_RESUMED.  */
2109   PACKET_no_resumed,
2110
2111   PACKET_MAX
2112 };
2113
2114 static struct packet_config remote_protocol_packets[PACKET_MAX];
2115
2116 /* Returns the packet's corresponding "set remote foo-packet" command
2117    state.  See struct packet_config for more details.  */
2118
2119 static enum auto_boolean
2120 packet_set_cmd_state (int packet)
2121 {
2122   return remote_protocol_packets[packet].detect;
2123 }
2124
2125 /* Returns whether a given packet or feature is supported.  This takes
2126    into account the state of the corresponding "set remote foo-packet"
2127    command, which may be used to bypass auto-detection.  */
2128
2129 static enum packet_support
2130 packet_config_support (struct packet_config *config)
2131 {
2132   switch (config->detect)
2133     {
2134     case AUTO_BOOLEAN_TRUE:
2135       return PACKET_ENABLE;
2136     case AUTO_BOOLEAN_FALSE:
2137       return PACKET_DISABLE;
2138     case AUTO_BOOLEAN_AUTO:
2139       return config->support;
2140     default:
2141       gdb_assert_not_reached (_("bad switch"));
2142     }
2143 }
2144
2145 /* Same as packet_config_support, but takes the packet's enum value as
2146    argument.  */
2147
2148 static enum packet_support
2149 packet_support (int packet)
2150 {
2151   struct packet_config *config = &remote_protocol_packets[packet];
2152
2153   return packet_config_support (config);
2154 }
2155
2156 static void
2157 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2158                                  struct cmd_list_element *c,
2159                                  const char *value)
2160 {
2161   struct packet_config *packet;
2162
2163   for (packet = remote_protocol_packets;
2164        packet < &remote_protocol_packets[PACKET_MAX];
2165        packet++)
2166     {
2167       if (&packet->detect == c->var)
2168         {
2169           show_packet_config_cmd (packet);
2170           return;
2171         }
2172     }
2173   internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
2174                   c->name);
2175 }
2176
2177 /* Should we try one of the 'Z' requests?  */
2178
2179 enum Z_packet_type
2180 {
2181   Z_PACKET_SOFTWARE_BP,
2182   Z_PACKET_HARDWARE_BP,
2183   Z_PACKET_WRITE_WP,
2184   Z_PACKET_READ_WP,
2185   Z_PACKET_ACCESS_WP,
2186   NR_Z_PACKET_TYPES
2187 };
2188
2189 /* For compatibility with older distributions.  Provide a ``set remote
2190    Z-packet ...'' command that updates all the Z packet types.  */
2191
2192 static enum auto_boolean remote_Z_packet_detect;
2193
2194 static void
2195 set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
2196                                   struct cmd_list_element *c)
2197 {
2198   int i;
2199
2200   for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2201     remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
2202 }
2203
2204 static void
2205 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2206                                    struct cmd_list_element *c,
2207                                    const char *value)
2208 {
2209   int i;
2210
2211   for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2212     {
2213       show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
2214     }
2215 }
2216
2217 /* Returns true if the multi-process extensions are in effect.  */
2218
2219 static int
2220 remote_multi_process_p (struct remote_state *rs)
2221 {
2222   return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2223 }
2224
2225 /* Returns true if fork events are supported.  */
2226
2227 static int
2228 remote_fork_event_p (struct remote_state *rs)
2229 {
2230   return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2231 }
2232
2233 /* Returns true if vfork events are supported.  */
2234
2235 static int
2236 remote_vfork_event_p (struct remote_state *rs)
2237 {
2238   return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2239 }
2240
2241 /* Returns true if exec events are supported.  */
2242
2243 static int
2244 remote_exec_event_p (struct remote_state *rs)
2245 {
2246   return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2247 }
2248
2249 /* Insert fork catchpoint target routine.  If fork events are enabled
2250    then return success, nothing more to do.  */
2251
2252 int
2253 remote_target::insert_fork_catchpoint (int pid)
2254 {
2255   struct remote_state *rs = get_remote_state ();
2256
2257   return !remote_fork_event_p (rs);
2258 }
2259
2260 /* Remove fork catchpoint target routine.  Nothing to do, just
2261    return success.  */
2262
2263 int
2264 remote_target::remove_fork_catchpoint (int pid)
2265 {
2266   return 0;
2267 }
2268
2269 /* Insert vfork catchpoint target routine.  If vfork events are enabled
2270    then return success, nothing more to do.  */
2271
2272 int
2273 remote_target::insert_vfork_catchpoint (int pid)
2274 {
2275   struct remote_state *rs = get_remote_state ();
2276
2277   return !remote_vfork_event_p (rs);
2278 }
2279
2280 /* Remove vfork catchpoint target routine.  Nothing to do, just
2281    return success.  */
2282
2283 int
2284 remote_target::remove_vfork_catchpoint (int pid)
2285 {
2286   return 0;
2287 }
2288
2289 /* Insert exec catchpoint target routine.  If exec events are
2290    enabled, just return success.  */
2291
2292 int
2293 remote_target::insert_exec_catchpoint (int pid)
2294 {
2295   struct remote_state *rs = get_remote_state ();
2296
2297   return !remote_exec_event_p (rs);
2298 }
2299
2300 /* Remove exec catchpoint target routine.  Nothing to do, just
2301    return success.  */
2302
2303 int
2304 remote_target::remove_exec_catchpoint (int pid)
2305 {
2306   return 0;
2307 }
2308
2309 \f
2310
2311 static ptid_t magic_null_ptid;
2312 static ptid_t not_sent_ptid;
2313 static ptid_t any_thread_ptid;
2314
2315 /* Find out if the stub attached to PID (and hence GDB should offer to
2316    detach instead of killing it when bailing out).  */
2317
2318 int
2319 remote_target::remote_query_attached (int pid)
2320 {
2321   struct remote_state *rs = get_remote_state ();
2322   size_t size = get_remote_packet_size ();
2323
2324   if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
2325     return 0;
2326
2327   if (remote_multi_process_p (rs))
2328     xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
2329   else
2330     xsnprintf (rs->buf.data (), size, "qAttached");
2331
2332   putpkt (rs->buf);
2333   getpkt (&rs->buf, 0);
2334
2335   switch (packet_ok (rs->buf,
2336                      &remote_protocol_packets[PACKET_qAttached]))
2337     {
2338     case PACKET_OK:
2339       if (strcmp (rs->buf.data (), "1") == 0)
2340         return 1;
2341       break;
2342     case PACKET_ERROR:
2343       warning (_("Remote failure reply: %s"), rs->buf.data ());
2344       break;
2345     case PACKET_UNKNOWN:
2346       break;
2347     }
2348
2349   return 0;
2350 }
2351
2352 /* Add PID to GDB's inferior table.  If FAKE_PID_P is true, then PID
2353    has been invented by GDB, instead of reported by the target.  Since
2354    we can be connected to a remote system before before knowing about
2355    any inferior, mark the target with execution when we find the first
2356    inferior.  If ATTACHED is 1, then we had just attached to this
2357    inferior.  If it is 0, then we just created this inferior.  If it
2358    is -1, then try querying the remote stub to find out if it had
2359    attached to the inferior or not.  If TRY_OPEN_EXEC is true then
2360    attempt to open this inferior's executable as the main executable
2361    if no main executable is open already.  */
2362
2363 inferior *
2364 remote_target::remote_add_inferior (int fake_pid_p, int pid, int attached,
2365                                     int try_open_exec)
2366 {
2367   struct inferior *inf;
2368
2369   /* Check whether this process we're learning about is to be
2370      considered attached, or if is to be considered to have been
2371      spawned by the stub.  */
2372   if (attached == -1)
2373     attached = remote_query_attached (pid);
2374
2375   if (gdbarch_has_global_solist (target_gdbarch ()))
2376     {
2377       /* If the target shares code across all inferiors, then every
2378          attach adds a new inferior.  */
2379       inf = add_inferior (pid);
2380
2381       /* ... and every inferior is bound to the same program space.
2382          However, each inferior may still have its own address
2383          space.  */
2384       inf->aspace = maybe_new_address_space ();
2385       inf->pspace = current_program_space;
2386     }
2387   else
2388     {
2389       /* In the traditional debugging scenario, there's a 1-1 match
2390          between program/address spaces.  We simply bind the inferior
2391          to the program space's address space.  */
2392       inf = current_inferior ();
2393       inferior_appeared (inf, pid);
2394     }
2395
2396   inf->attach_flag = attached;
2397   inf->fake_pid_p = fake_pid_p;
2398
2399   /* If no main executable is currently open then attempt to
2400      open the file that was executed to create this inferior.  */
2401   if (try_open_exec && get_exec_file (0) == NULL)
2402     exec_file_locate_attach (pid, 0, 1);
2403
2404   return inf;
2405 }
2406
2407 static remote_thread_info *get_remote_thread_info (thread_info *thread);
2408 static remote_thread_info *get_remote_thread_info (ptid_t ptid);
2409
2410 /* Add thread PTID to GDB's thread list.  Tag it as executing/running
2411    according to RUNNING.  */
2412
2413 thread_info *
2414 remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
2415 {
2416   struct remote_state *rs = get_remote_state ();
2417   struct thread_info *thread;
2418
2419   /* GDB historically didn't pull threads in the initial connection
2420      setup.  If the remote target doesn't even have a concept of
2421      threads (e.g., a bare-metal target), even if internally we
2422      consider that a single-threaded target, mentioning a new thread
2423      might be confusing to the user.  Be silent then, preserving the
2424      age old behavior.  */
2425   if (rs->starting_up)
2426     thread = add_thread_silent (ptid);
2427   else
2428     thread = add_thread (ptid);
2429
2430   get_remote_thread_info (thread)->vcont_resumed = executing;
2431   set_executing (ptid, executing);
2432   set_running (ptid, running);
2433
2434   return thread;
2435 }
2436
2437 /* Come here when we learn about a thread id from the remote target.
2438    It may be the first time we hear about such thread, so take the
2439    opportunity to add it to GDB's thread list.  In case this is the
2440    first time we're noticing its corresponding inferior, add it to
2441    GDB's inferior list as well.  EXECUTING indicates whether the
2442    thread is (internally) executing or stopped.  */
2443
2444 void
2445 remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
2446 {
2447   /* In non-stop mode, we assume new found threads are (externally)
2448      running until proven otherwise with a stop reply.  In all-stop,
2449      we can only get here if all threads are stopped.  */
2450   int running = target_is_non_stop_p () ? 1 : 0;
2451
2452   /* If this is a new thread, add it to GDB's thread list.
2453      If we leave it up to WFI to do this, bad things will happen.  */
2454
2455   thread_info *tp = find_thread_ptid (currthread);
2456   if (tp != NULL && tp->state == THREAD_EXITED)
2457     {
2458       /* We're seeing an event on a thread id we knew had exited.
2459          This has to be a new thread reusing the old id.  Add it.  */
2460       remote_add_thread (currthread, running, executing);
2461       return;
2462     }
2463
2464   if (!in_thread_list (currthread))
2465     {
2466       struct inferior *inf = NULL;
2467       int pid = currthread.pid ();
2468
2469       if (inferior_ptid.is_pid ()
2470           && pid == inferior_ptid.pid ())
2471         {
2472           /* inferior_ptid has no thread member yet.  This can happen
2473              with the vAttach -> remote_wait,"TAAthread:" path if the
2474              stub doesn't support qC.  This is the first stop reported
2475              after an attach, so this is the main thread.  Update the
2476              ptid in the thread list.  */
2477           if (in_thread_list (ptid_t (pid)))
2478             thread_change_ptid (inferior_ptid, currthread);
2479           else
2480             {
2481               remote_add_thread (currthread, running, executing);
2482               inferior_ptid = currthread;
2483             }
2484           return;
2485         }
2486
2487       if (magic_null_ptid == inferior_ptid)
2488         {
2489           /* inferior_ptid is not set yet.  This can happen with the
2490              vRun -> remote_wait,"TAAthread:" path if the stub
2491              doesn't support qC.  This is the first stop reported
2492              after an attach, so this is the main thread.  Update the
2493              ptid in the thread list.  */
2494           thread_change_ptid (inferior_ptid, currthread);
2495           return;
2496         }
2497
2498       /* When connecting to a target remote, or to a target
2499          extended-remote which already was debugging an inferior, we
2500          may not know about it yet.  Add it before adding its child
2501          thread, so notifications are emitted in a sensible order.  */
2502       if (find_inferior_pid (currthread.pid ()) == NULL)
2503         {
2504           struct remote_state *rs = get_remote_state ();
2505           int fake_pid_p = !remote_multi_process_p (rs);
2506
2507           inf = remote_add_inferior (fake_pid_p,
2508                                      currthread.pid (), -1, 1);
2509         }
2510
2511       /* This is really a new thread.  Add it.  */
2512       thread_info *new_thr
2513         = remote_add_thread (currthread, running, executing);
2514
2515       /* If we found a new inferior, let the common code do whatever
2516          it needs to with it (e.g., read shared libraries, insert
2517          breakpoints), unless we're just setting up an all-stop
2518          connection.  */
2519       if (inf != NULL)
2520         {
2521           struct remote_state *rs = get_remote_state ();
2522
2523           if (!rs->starting_up)
2524             notice_new_inferior (new_thr, executing, 0);
2525         }
2526     }
2527 }
2528
2529 /* Return THREAD's private thread data, creating it if necessary.  */
2530
2531 static remote_thread_info *
2532 get_remote_thread_info (thread_info *thread)
2533 {
2534   gdb_assert (thread != NULL);
2535
2536   if (thread->priv == NULL)
2537     thread->priv.reset (new remote_thread_info);
2538
2539   return static_cast<remote_thread_info *> (thread->priv.get ());
2540 }
2541
2542 static remote_thread_info *
2543 get_remote_thread_info (ptid_t ptid)
2544 {
2545   thread_info *thr = find_thread_ptid (ptid);
2546   return get_remote_thread_info (thr);
2547 }
2548
2549 /* Call this function as a result of
2550    1) A halt indication (T packet) containing a thread id
2551    2) A direct query of currthread
2552    3) Successful execution of set thread */
2553
2554 static void
2555 record_currthread (struct remote_state *rs, ptid_t currthread)
2556 {
2557   rs->general_thread = currthread;
2558 }
2559
2560 /* If 'QPassSignals' is supported, tell the remote stub what signals
2561    it can simply pass through to the inferior without reporting.  */
2562
2563 void
2564 remote_target::pass_signals (int numsigs, const unsigned char *pass_signals)
2565 {
2566   if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
2567     {
2568       char *pass_packet, *p;
2569       int count = 0, i;
2570       struct remote_state *rs = get_remote_state ();
2571
2572       gdb_assert (numsigs < 256);
2573       for (i = 0; i < numsigs; i++)
2574         {
2575           if (pass_signals[i])
2576             count++;
2577         }
2578       pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
2579       strcpy (pass_packet, "QPassSignals:");
2580       p = pass_packet + strlen (pass_packet);
2581       for (i = 0; i < numsigs; i++)
2582         {
2583           if (pass_signals[i])
2584             {
2585               if (i >= 16)
2586                 *p++ = tohex (i >> 4);
2587               *p++ = tohex (i & 15);
2588               if (count)
2589                 *p++ = ';';
2590               else
2591                 break;
2592               count--;
2593             }
2594         }
2595       *p = 0;
2596       if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
2597         {
2598           putpkt (pass_packet);
2599           getpkt (&rs->buf, 0);
2600           packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
2601           if (rs->last_pass_packet)
2602             xfree (rs->last_pass_packet);
2603           rs->last_pass_packet = pass_packet;
2604         }
2605       else
2606         xfree (pass_packet);
2607     }
2608 }
2609
2610 /* If 'QCatchSyscalls' is supported, tell the remote stub
2611    to report syscalls to GDB.  */
2612
2613 int
2614 remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2615                                        gdb::array_view<const int> syscall_counts)
2616 {
2617   const char *catch_packet;
2618   enum packet_result result;
2619   int n_sysno = 0;
2620
2621   if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2622     {
2623       /* Not supported.  */
2624       return 1;
2625     }
2626
2627   if (needed && any_count == 0)
2628     {
2629       /* Count how many syscalls are to be caught.  */
2630       for (size_t i = 0; i < syscall_counts.size (); i++)
2631         {
2632           if (syscall_counts[i] != 0)
2633             n_sysno++;
2634         }
2635     }
2636
2637   if (remote_debug)
2638     {
2639       fprintf_unfiltered (gdb_stdlog,
2640                           "remote_set_syscall_catchpoint "
2641                           "pid %d needed %d any_count %d n_sysno %d\n",
2642                           pid, needed, any_count, n_sysno);
2643     }
2644
2645   std::string built_packet;
2646   if (needed)
2647     {
2648       /* Prepare a packet with the sysno list, assuming max 8+1
2649          characters for a sysno.  If the resulting packet size is too
2650          big, fallback on the non-selective packet.  */
2651       const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2652       built_packet.reserve (maxpktsz);
2653       built_packet = "QCatchSyscalls:1";
2654       if (any_count == 0)
2655         {
2656           /* Add in each syscall to be caught.  */
2657           for (size_t i = 0; i < syscall_counts.size (); i++)
2658             {
2659               if (syscall_counts[i] != 0)
2660                 string_appendf (built_packet, ";%zx", i);
2661             }
2662         }
2663       if (built_packet.size () > get_remote_packet_size ())
2664         {
2665           /* catch_packet too big.  Fallback to less efficient
2666              non selective mode, with GDB doing the filtering.  */
2667           catch_packet = "QCatchSyscalls:1";
2668         }
2669       else
2670         catch_packet = built_packet.c_str ();
2671     }
2672   else
2673     catch_packet = "QCatchSyscalls:0";
2674
2675   struct remote_state *rs = get_remote_state ();
2676
2677   putpkt (catch_packet);
2678   getpkt (&rs->buf, 0);
2679   result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2680   if (result == PACKET_OK)
2681     return 0;
2682   else
2683     return -1;
2684 }
2685
2686 /* If 'QProgramSignals' is supported, tell the remote stub what
2687    signals it should pass through to the inferior when detaching.  */
2688
2689 void
2690 remote_target::program_signals (int numsigs, const unsigned char *signals)
2691 {
2692   if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
2693     {
2694       char *packet, *p;
2695       int count = 0, i;
2696       struct remote_state *rs = get_remote_state ();
2697
2698       gdb_assert (numsigs < 256);
2699       for (i = 0; i < numsigs; i++)
2700         {
2701           if (signals[i])
2702             count++;
2703         }
2704       packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
2705       strcpy (packet, "QProgramSignals:");
2706       p = packet + strlen (packet);
2707       for (i = 0; i < numsigs; i++)
2708         {
2709           if (signal_pass_state (i))
2710             {
2711               if (i >= 16)
2712                 *p++ = tohex (i >> 4);
2713               *p++ = tohex (i & 15);
2714               if (count)
2715                 *p++ = ';';
2716               else
2717                 break;
2718               count--;
2719             }
2720         }
2721       *p = 0;
2722       if (!rs->last_program_signals_packet
2723           || strcmp (rs->last_program_signals_packet, packet) != 0)
2724         {
2725           putpkt (packet);
2726           getpkt (&rs->buf, 0);
2727           packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
2728           xfree (rs->last_program_signals_packet);
2729           rs->last_program_signals_packet = packet;
2730         }
2731       else
2732         xfree (packet);
2733     }
2734 }
2735
2736 /* If PTID is MAGIC_NULL_PTID, don't set any thread.  If PTID is
2737    MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2738    thread.  If GEN is set, set the general thread, if not, then set
2739    the step/continue thread.  */
2740 void
2741 remote_target::set_thread (ptid_t ptid, int gen)
2742 {
2743   struct remote_state *rs = get_remote_state ();
2744   ptid_t state = gen ? rs->general_thread : rs->continue_thread;
2745   char *buf = rs->buf.data ();
2746   char *endbuf = buf + get_remote_packet_size ();
2747
2748   if (state == ptid)
2749     return;
2750
2751   *buf++ = 'H';
2752   *buf++ = gen ? 'g' : 'c';
2753   if (ptid == magic_null_ptid)
2754     xsnprintf (buf, endbuf - buf, "0");
2755   else if (ptid == any_thread_ptid)
2756     xsnprintf (buf, endbuf - buf, "0");
2757   else if (ptid == minus_one_ptid)
2758     xsnprintf (buf, endbuf - buf, "-1");
2759   else
2760     write_ptid (buf, endbuf, ptid);
2761   putpkt (rs->buf);
2762   getpkt (&rs->buf, 0);
2763   if (gen)
2764     rs->general_thread = ptid;
2765   else
2766     rs->continue_thread = ptid;
2767 }
2768
2769 void
2770 remote_target::set_general_thread (ptid_t ptid)
2771 {
2772   set_thread (ptid, 1);
2773 }
2774
2775 void
2776 remote_target::set_continue_thread (ptid_t ptid)
2777 {
2778   set_thread (ptid, 0);
2779 }
2780
2781 /* Change the remote current process.  Which thread within the process
2782    ends up selected isn't important, as long as it is the same process
2783    as what INFERIOR_PTID points to.
2784
2785    This comes from that fact that there is no explicit notion of
2786    "selected process" in the protocol.  The selected process for
2787    general operations is the process the selected general thread
2788    belongs to.  */
2789
2790 void
2791 remote_target::set_general_process ()
2792 {
2793   struct remote_state *rs = get_remote_state ();
2794
2795   /* If the remote can't handle multiple processes, don't bother.  */
2796   if (!remote_multi_process_p (rs))
2797     return;
2798
2799   /* We only need to change the remote current thread if it's pointing
2800      at some other process.  */
2801   if (rs->general_thread.pid () != inferior_ptid.pid ())
2802     set_general_thread (inferior_ptid);
2803 }
2804
2805 \f
2806 /* Return nonzero if this is the main thread that we made up ourselves
2807    to model non-threaded targets as single-threaded.  */
2808
2809 static int
2810 remote_thread_always_alive (ptid_t ptid)
2811 {
2812   if (ptid == magic_null_ptid)
2813     /* The main thread is always alive.  */
2814     return 1;
2815
2816   if (ptid.pid () != 0 && ptid.lwp () == 0)
2817     /* The main thread is always alive.  This can happen after a
2818        vAttach, if the remote side doesn't support
2819        multi-threading.  */
2820     return 1;
2821
2822   return 0;
2823 }
2824
2825 /* Return nonzero if the thread PTID is still alive on the remote
2826    system.  */
2827
2828 bool
2829 remote_target::thread_alive (ptid_t ptid)
2830 {
2831   struct remote_state *rs = get_remote_state ();
2832   char *p, *endp;
2833
2834   /* Check if this is a thread that we made up ourselves to model
2835      non-threaded targets as single-threaded.  */
2836   if (remote_thread_always_alive (ptid))
2837     return 1;
2838
2839   p = rs->buf.data ();
2840   endp = p + get_remote_packet_size ();
2841
2842   *p++ = 'T';
2843   write_ptid (p, endp, ptid);
2844
2845   putpkt (rs->buf);
2846   getpkt (&rs->buf, 0);
2847   return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2848 }
2849
2850 /* Return a pointer to a thread name if we know it and NULL otherwise.
2851    The thread_info object owns the memory for the name.  */
2852
2853 const char *
2854 remote_target::thread_name (struct thread_info *info)
2855 {
2856   if (info->priv != NULL)
2857     {
2858       const std::string &name = get_remote_thread_info (info)->name;
2859       return !name.empty () ? name.c_str () : NULL;
2860     }
2861
2862   return NULL;
2863 }
2864
2865 /* About these extended threadlist and threadinfo packets.  They are
2866    variable length packets but, the fields within them are often fixed
2867    length.  They are redundent enough to send over UDP as is the
2868    remote protocol in general.  There is a matching unit test module
2869    in libstub.  */
2870
2871 /* WARNING: This threadref data structure comes from the remote O.S.,
2872    libstub protocol encoding, and remote.c.  It is not particularly
2873    changable.  */
2874
2875 /* Right now, the internal structure is int. We want it to be bigger.
2876    Plan to fix this.  */
2877
2878 typedef int gdb_threadref;      /* Internal GDB thread reference.  */
2879
2880 /* gdb_ext_thread_info is an internal GDB data structure which is
2881    equivalent to the reply of the remote threadinfo packet.  */
2882
2883 struct gdb_ext_thread_info
2884   {
2885     threadref threadid;         /* External form of thread reference.  */
2886     int active;                 /* Has state interesting to GDB?
2887                                    regs, stack.  */
2888     char display[256];          /* Brief state display, name,
2889                                    blocked/suspended.  */
2890     char shortname[32];         /* To be used to name threads.  */
2891     char more_display[256];     /* Long info, statistics, queue depth,
2892                                    whatever.  */
2893   };
2894
2895 /* The volume of remote transfers can be limited by submitting
2896    a mask containing bits specifying the desired information.
2897    Use a union of these values as the 'selection' parameter to
2898    get_thread_info.  FIXME: Make these TAG names more thread specific.  */
2899
2900 #define TAG_THREADID 1
2901 #define TAG_EXISTS 2
2902 #define TAG_DISPLAY 4
2903 #define TAG_THREADNAME 8
2904 #define TAG_MOREDISPLAY 16
2905
2906 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2907
2908 static char *unpack_nibble (char *buf, int *val);
2909
2910 static char *unpack_byte (char *buf, int *value);
2911
2912 static char *pack_int (char *buf, int value);
2913
2914 static char *unpack_int (char *buf, int *value);
2915
2916 static char *unpack_string (char *src, char *dest, int length);
2917
2918 static char *pack_threadid (char *pkt, threadref *id);
2919
2920 static char *unpack_threadid (char *inbuf, threadref *id);
2921
2922 void int_to_threadref (threadref *id, int value);
2923
2924 static int threadref_to_int (threadref *ref);
2925
2926 static void copy_threadref (threadref *dest, threadref *src);
2927
2928 static int threadmatch (threadref *dest, threadref *src);
2929
2930 static char *pack_threadinfo_request (char *pkt, int mode,
2931                                       threadref *id);
2932
2933 static char *pack_threadlist_request (char *pkt, int startflag,
2934                                       int threadcount,
2935                                       threadref *nextthread);
2936
2937 static int remote_newthread_step (threadref *ref, void *context);
2938
2939
2940 /* Write a PTID to BUF.  ENDBUF points to one-passed-the-end of the
2941    buffer we're allowed to write to.  Returns
2942    BUF+CHARACTERS_WRITTEN.  */
2943
2944 char *
2945 remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2946 {
2947   int pid, tid;
2948   struct remote_state *rs = get_remote_state ();
2949
2950   if (remote_multi_process_p (rs))
2951     {
2952       pid = ptid.pid ();
2953       if (pid < 0)
2954         buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2955       else
2956         buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2957     }
2958   tid = ptid.lwp ();
2959   if (tid < 0)
2960     buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2961   else
2962     buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2963
2964   return buf;
2965 }
2966
2967 /* Extract a PTID from BUF.  If non-null, OBUF is set to one past the
2968    last parsed char.  Returns null_ptid if no thread id is found, and
2969    throws an error if the thread id has an invalid format.  */
2970
2971 static ptid_t
2972 read_ptid (const char *buf, const char **obuf)
2973 {
2974   const char *p = buf;
2975   const char *pp;
2976   ULONGEST pid = 0, tid = 0;
2977
2978   if (*p == 'p')
2979     {
2980       /* Multi-process ptid.  */
2981       pp = unpack_varlen_hex (p + 1, &pid);
2982       if (*pp != '.')
2983         error (_("invalid remote ptid: %s"), p);
2984
2985       p = pp;
2986       pp = unpack_varlen_hex (p + 1, &tid);
2987       if (obuf)
2988         *obuf = pp;
2989       return ptid_t (pid, tid, 0);
2990     }
2991
2992   /* No multi-process.  Just a tid.  */
2993   pp = unpack_varlen_hex (p, &tid);
2994
2995   /* Return null_ptid when no thread id is found.  */
2996   if (p == pp)
2997     {
2998       if (obuf)
2999         *obuf = pp;
3000       return null_ptid;
3001     }
3002
3003   /* Since the stub is not sending a process id, then default to
3004      what's in inferior_ptid, unless it's null at this point.  If so,
3005      then since there's no way to know the pid of the reported
3006      threads, use the magic number.  */
3007   if (inferior_ptid == null_ptid)
3008     pid = magic_null_ptid.pid ();
3009   else
3010     pid = inferior_ptid.pid ();
3011
3012   if (obuf)
3013     *obuf = pp;
3014   return ptid_t (pid, tid, 0);
3015 }
3016
3017 static int
3018 stubhex (int ch)
3019 {
3020   if (ch >= 'a' && ch <= 'f')
3021     return ch - 'a' + 10;
3022   if (ch >= '0' && ch <= '9')
3023     return ch - '0';
3024   if (ch >= 'A' && ch <= 'F')
3025     return ch - 'A' + 10;
3026   return -1;
3027 }
3028
3029 static int
3030 stub_unpack_int (char *buff, int fieldlength)
3031 {
3032   int nibble;
3033   int retval = 0;
3034
3035   while (fieldlength)
3036     {
3037       nibble = stubhex (*buff++);
3038       retval |= nibble;
3039       fieldlength--;
3040       if (fieldlength)
3041         retval = retval << 4;
3042     }
3043   return retval;
3044 }
3045
3046 static char *
3047 unpack_nibble (char *buf, int *val)
3048 {
3049   *val = fromhex (*buf++);
3050   return buf;
3051 }
3052
3053 static char *
3054 unpack_byte (char *buf, int *value)
3055 {
3056   *value = stub_unpack_int (buf, 2);
3057   return buf + 2;
3058 }
3059
3060 static char *
3061 pack_int (char *buf, int value)
3062 {
3063   buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3064   buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3065   buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3066   buf = pack_hex_byte (buf, (value & 0xff));
3067   return buf;
3068 }
3069
3070 static char *
3071 unpack_int (char *buf, int *value)
3072 {
3073   *value = stub_unpack_int (buf, 8);
3074   return buf + 8;
3075 }
3076
3077 #if 0                   /* Currently unused, uncomment when needed.  */
3078 static char *pack_string (char *pkt, char *string);
3079
3080 static char *
3081 pack_string (char *pkt, char *string)
3082 {
3083   char ch;
3084   int len;
3085
3086   len = strlen (string);
3087   if (len > 200)
3088     len = 200;          /* Bigger than most GDB packets, junk???  */
3089   pkt = pack_hex_byte (pkt, len);
3090   while (len-- > 0)
3091     {
3092       ch = *string++;
3093       if ((ch == '\0') || (ch == '#'))
3094         ch = '*';               /* Protect encapsulation.  */
3095       *pkt++ = ch;
3096     }
3097   return pkt;
3098 }
3099 #endif /* 0 (unused) */
3100
3101 static char *
3102 unpack_string (char *src, char *dest, int length)
3103 {
3104   while (length--)
3105     *dest++ = *src++;
3106   *dest = '\0';
3107   return src;
3108 }
3109
3110 static char *
3111 pack_threadid (char *pkt, threadref *id)
3112 {
3113   char *limit;
3114   unsigned char *altid;
3115
3116   altid = (unsigned char *) id;
3117   limit = pkt + BUF_THREAD_ID_SIZE;
3118   while (pkt < limit)
3119     pkt = pack_hex_byte (pkt, *altid++);
3120   return pkt;
3121 }
3122
3123
3124 static char *
3125 unpack_threadid (char *inbuf, threadref *id)
3126 {
3127   char *altref;
3128   char *limit = inbuf + BUF_THREAD_ID_SIZE;
3129   int x, y;
3130
3131   altref = (char *) id;
3132
3133   while (inbuf < limit)
3134     {
3135       x = stubhex (*inbuf++);
3136       y = stubhex (*inbuf++);
3137       *altref++ = (x << 4) | y;
3138     }
3139   return inbuf;
3140 }
3141
3142 /* Externally, threadrefs are 64 bits but internally, they are still
3143    ints.  This is due to a mismatch of specifications.  We would like
3144    to use 64bit thread references internally.  This is an adapter
3145    function.  */
3146
3147 void
3148 int_to_threadref (threadref *id, int value)
3149 {
3150   unsigned char *scan;
3151
3152   scan = (unsigned char *) id;
3153   {
3154     int i = 4;
3155     while (i--)
3156       *scan++ = 0;
3157   }
3158   *scan++ = (value >> 24) & 0xff;
3159   *scan++ = (value >> 16) & 0xff;
3160   *scan++ = (value >> 8) & 0xff;
3161   *scan++ = (value & 0xff);
3162 }
3163
3164 static int
3165 threadref_to_int (threadref *ref)
3166 {
3167   int i, value = 0;
3168   unsigned char *scan;
3169
3170   scan = *ref;
3171   scan += 4;
3172   i = 4;
3173   while (i-- > 0)
3174     value = (value << 8) | ((*scan++) & 0xff);
3175   return value;
3176 }
3177
3178 static void
3179 copy_threadref (threadref *dest, threadref *src)
3180 {
3181   int i;
3182   unsigned char *csrc, *cdest;
3183
3184   csrc = (unsigned char *) src;
3185   cdest = (unsigned char *) dest;
3186   i = 8;
3187   while (i--)
3188     *cdest++ = *csrc++;
3189 }
3190
3191 static int
3192 threadmatch (threadref *dest, threadref *src)
3193 {
3194   /* Things are broken right now, so just assume we got a match.  */
3195 #if 0
3196   unsigned char *srcp, *destp;
3197   int i, result;
3198   srcp = (char *) src;
3199   destp = (char *) dest;
3200
3201   result = 1;
3202   while (i-- > 0)
3203     result &= (*srcp++ == *destp++) ? 1 : 0;
3204   return result;
3205 #endif
3206   return 1;
3207 }
3208
3209 /*
3210    threadid:1,        # always request threadid
3211    context_exists:2,
3212    display:4,
3213    unique_name:8,
3214    more_display:16
3215  */
3216
3217 /* Encoding:  'Q':8,'P':8,mask:32,threadid:64 */
3218
3219 static char *
3220 pack_threadinfo_request (char *pkt, int mode, threadref *id)
3221 {
3222   *pkt++ = 'q';                         /* Info Query */
3223   *pkt++ = 'P';                         /* process or thread info */
3224   pkt = pack_int (pkt, mode);           /* mode */
3225   pkt = pack_threadid (pkt, id);        /* threadid */
3226   *pkt = '\0';                          /* terminate */
3227   return pkt;
3228 }
3229
3230 /* These values tag the fields in a thread info response packet.  */
3231 /* Tagging the fields allows us to request specific fields and to
3232    add more fields as time goes by.  */
3233
3234 #define TAG_THREADID 1          /* Echo the thread identifier.  */
3235 #define TAG_EXISTS 2            /* Is this process defined enough to
3236                                    fetch registers and its stack?  */
3237 #define TAG_DISPLAY 4           /* A short thing maybe to put on a window */
3238 #define TAG_THREADNAME 8        /* string, maps 1-to-1 with a thread is.  */
3239 #define TAG_MOREDISPLAY 16      /* Whatever the kernel wants to say about
3240                                    the process.  */
3241
3242 int
3243 remote_target::remote_unpack_thread_info_response (char *pkt,
3244                                                    threadref *expectedref,
3245                                                    gdb_ext_thread_info *info)
3246 {
3247   struct remote_state *rs = get_remote_state ();
3248   int mask, length;
3249   int tag;
3250   threadref ref;
3251   char *limit = pkt + rs->buf.size (); /* Plausible parsing limit.  */
3252   int retval = 1;
3253
3254   /* info->threadid = 0; FIXME: implement zero_threadref.  */
3255   info->active = 0;
3256   info->display[0] = '\0';
3257   info->shortname[0] = '\0';
3258   info->more_display[0] = '\0';
3259
3260   /* Assume the characters indicating the packet type have been
3261      stripped.  */
3262   pkt = unpack_int (pkt, &mask);        /* arg mask */
3263   pkt = unpack_threadid (pkt, &ref);
3264
3265   if (mask == 0)
3266     warning (_("Incomplete response to threadinfo request."));
3267   if (!threadmatch (&ref, expectedref))
3268     {                   /* This is an answer to a different request.  */
3269       warning (_("ERROR RMT Thread info mismatch."));
3270       return 0;
3271     }
3272   copy_threadref (&info->threadid, &ref);
3273
3274   /* Loop on tagged fields , try to bail if somthing goes wrong.  */
3275
3276   /* Packets are terminated with nulls.  */
3277   while ((pkt < limit) && mask && *pkt)
3278     {
3279       pkt = unpack_int (pkt, &tag);     /* tag */
3280       pkt = unpack_byte (pkt, &length); /* length */
3281       if (!(tag & mask))                /* Tags out of synch with mask.  */
3282         {
3283           warning (_("ERROR RMT: threadinfo tag mismatch."));
3284           retval = 0;
3285           break;
3286         }
3287       if (tag == TAG_THREADID)
3288         {
3289           if (length != 16)
3290             {
3291               warning (_("ERROR RMT: length of threadid is not 16."));
3292               retval = 0;
3293               break;
3294             }
3295           pkt = unpack_threadid (pkt, &ref);
3296           mask = mask & ~TAG_THREADID;
3297           continue;
3298         }
3299       if (tag == TAG_EXISTS)
3300         {
3301           info->active = stub_unpack_int (pkt, length);
3302           pkt += length;
3303           mask = mask & ~(TAG_EXISTS);
3304           if (length > 8)
3305             {
3306               warning (_("ERROR RMT: 'exists' length too long."));
3307               retval = 0;
3308               break;
3309             }
3310           continue;
3311         }
3312       if (tag == TAG_THREADNAME)
3313         {
3314           pkt = unpack_string (pkt, &info->shortname[0], length);
3315           mask = mask & ~TAG_THREADNAME;
3316           continue;
3317         }
3318       if (tag == TAG_DISPLAY)
3319         {
3320           pkt = unpack_string (pkt, &info->display[0], length);
3321           mask = mask & ~TAG_DISPLAY;
3322           continue;
3323         }
3324       if (tag == TAG_MOREDISPLAY)
3325         {
3326           pkt = unpack_string (pkt, &info->more_display[0], length);
3327           mask = mask & ~TAG_MOREDISPLAY;
3328           continue;
3329         }
3330       warning (_("ERROR RMT: unknown thread info tag."));
3331       break;                    /* Not a tag we know about.  */
3332     }
3333   return retval;
3334 }
3335
3336 int
3337 remote_target::remote_get_threadinfo (threadref *threadid,
3338                                       int fieldset,
3339                                       gdb_ext_thread_info *info)
3340 {
3341   struct remote_state *rs = get_remote_state ();
3342   int result;
3343
3344   pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
3345   putpkt (rs->buf);
3346   getpkt (&rs->buf, 0);
3347
3348   if (rs->buf[0] == '\0')
3349     return 0;
3350
3351   result = remote_unpack_thread_info_response (&rs->buf[2],
3352                                                threadid, info);
3353   return result;
3354 }
3355
3356 /*    Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32   */
3357
3358 static char *
3359 pack_threadlist_request (char *pkt, int startflag, int threadcount,
3360                          threadref *nextthread)
3361 {
3362   *pkt++ = 'q';                 /* info query packet */
3363   *pkt++ = 'L';                 /* Process LIST or threadLIST request */
3364   pkt = pack_nibble (pkt, startflag);           /* initflag 1 bytes */
3365   pkt = pack_hex_byte (pkt, threadcount);       /* threadcount 2 bytes */
3366   pkt = pack_threadid (pkt, nextthread);        /* 64 bit thread identifier */
3367   *pkt = '\0';
3368   return pkt;
3369 }
3370
3371 /* Encoding:   'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3372
3373 int
3374 remote_target::parse_threadlist_response (char *pkt, int result_limit,
3375                                           threadref *original_echo,
3376                                           threadref *resultlist,
3377                                           int *doneflag)
3378 {
3379   struct remote_state *rs = get_remote_state ();
3380   char *limit;
3381   int count, resultcount, done;
3382
3383   resultcount = 0;
3384   /* Assume the 'q' and 'M chars have been stripped.  */
3385   limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
3386   /* done parse past here */
3387   pkt = unpack_byte (pkt, &count);      /* count field */
3388   pkt = unpack_nibble (pkt, &done);
3389   /* The first threadid is the argument threadid.  */
3390   pkt = unpack_threadid (pkt, original_echo);   /* should match query packet */
3391   while ((count-- > 0) && (pkt < limit))
3392     {
3393       pkt = unpack_threadid (pkt, resultlist++);
3394       if (resultcount++ >= result_limit)
3395         break;
3396     }
3397   if (doneflag)
3398     *doneflag = done;
3399   return resultcount;
3400 }
3401
3402 /* Fetch the next batch of threads from the remote.  Returns -1 if the
3403    qL packet is not supported, 0 on error and 1 on success.  */
3404
3405 int
3406 remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3407                                       int result_limit, int *done, int *result_count,
3408                                       threadref *threadlist)
3409 {
3410   struct remote_state *rs = get_remote_state ();
3411   int result = 1;
3412
3413   /* Trancate result limit to be smaller than the packet size.  */
3414   if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3415       >= get_remote_packet_size ())
3416     result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
3417
3418   pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3419                            nextthread);
3420   putpkt (rs->buf);
3421   getpkt (&rs->buf, 0);
3422   if (rs->buf[0] == '\0')
3423     {
3424       /* Packet not supported.  */
3425       return -1;
3426     }
3427
3428   *result_count =
3429     parse_threadlist_response (&rs->buf[2], result_limit,
3430                                &rs->echo_nextthread, threadlist, done);
3431
3432   if (!threadmatch (&rs->echo_nextthread, nextthread))
3433     {
3434       /* FIXME: This is a good reason to drop the packet.  */
3435       /* Possably, there is a duplicate response.  */
3436       /* Possabilities :
3437          retransmit immediatly - race conditions
3438          retransmit after timeout - yes
3439          exit
3440          wait for packet, then exit
3441        */
3442       warning (_("HMM: threadlist did not echo arg thread, dropping it."));
3443       return 0;                 /* I choose simply exiting.  */
3444     }
3445   if (*result_count <= 0)
3446     {
3447       if (*done != 1)
3448         {
3449           warning (_("RMT ERROR : failed to get remote thread list."));
3450           result = 0;
3451         }
3452       return result;            /* break; */
3453     }
3454   if (*result_count > result_limit)
3455     {
3456       *result_count = 0;
3457       warning (_("RMT ERROR: threadlist response longer than requested."));
3458       return 0;
3459     }
3460   return result;
3461 }
3462
3463 /* Fetch the list of remote threads, with the qL packet, and call
3464    STEPFUNCTION for each thread found.  Stops iterating and returns 1
3465    if STEPFUNCTION returns true.  Stops iterating and returns 0 if the
3466    STEPFUNCTION returns false.  If the packet is not supported,
3467    returns -1.  */
3468
3469 int
3470 remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3471                                            void *context, int looplimit)
3472 {
3473   struct remote_state *rs = get_remote_state ();
3474   int done, i, result_count;
3475   int startflag = 1;
3476   int result = 1;
3477   int loopcount = 0;
3478
3479   done = 0;
3480   while (!done)
3481     {
3482       if (loopcount++ > looplimit)
3483         {
3484           result = 0;
3485           warning (_("Remote fetch threadlist -infinite loop-."));
3486           break;
3487         }
3488       result = remote_get_threadlist (startflag, &rs->nextthread,
3489                                       MAXTHREADLISTRESULTS,
3490                                       &done, &result_count,
3491                                       rs->resultthreadlist);
3492       if (result <= 0)
3493         break;
3494       /* Clear for later iterations.  */
3495       startflag = 0;
3496       /* Setup to resume next batch of thread references, set nextthread.  */
3497       if (result_count >= 1)
3498         copy_threadref (&rs->nextthread,
3499                         &rs->resultthreadlist[result_count - 1]);
3500       i = 0;
3501       while (result_count--)
3502         {
3503           if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3504             {
3505               result = 0;
3506               break;
3507             }
3508         }
3509     }
3510   return result;
3511 }
3512
3513 /* A thread found on the remote target.  */
3514
3515 struct thread_item
3516 {
3517   explicit thread_item (ptid_t ptid_)
3518   : ptid (ptid_)
3519   {}
3520
3521   thread_item (thread_item &&other) = default;
3522   thread_item &operator= (thread_item &&other) = default;
3523
3524   DISABLE_COPY_AND_ASSIGN (thread_item);
3525
3526   /* The thread's PTID.  */
3527   ptid_t ptid;
3528
3529   /* The thread's extra info.  */
3530   std::string extra;
3531
3532   /* The thread's name.  */
3533   std::string name;
3534
3535   /* The core the thread was running on.  -1 if not known.  */
3536   int core = -1;
3537
3538   /* The thread handle associated with the thread.  */
3539   gdb::byte_vector thread_handle;
3540 };
3541
3542 /* Context passed around to the various methods listing remote
3543    threads.  As new threads are found, they're added to the ITEMS
3544    vector.  */
3545
3546 struct threads_listing_context
3547 {
3548   /* Return true if this object contains an entry for a thread with ptid
3549      PTID.  */
3550
3551   bool contains_thread (ptid_t ptid) const
3552   {
3553     auto match_ptid = [&] (const thread_item &item)
3554       {
3555         return item.ptid == ptid;
3556       };
3557
3558     auto it = std::find_if (this->items.begin (),
3559                             this->items.end (),
3560                             match_ptid);
3561
3562     return it != this->items.end ();
3563   }
3564
3565   /* Remove the thread with ptid PTID.  */
3566
3567   void remove_thread (ptid_t ptid)
3568   {
3569     auto match_ptid = [&] (const thread_item &item)
3570       {
3571         return item.ptid == ptid;
3572       };
3573
3574     auto it = std::remove_if (this->items.begin (),
3575                               this->items.end (),
3576                               match_ptid);
3577
3578     if (it != this->items.end ())
3579       this->items.erase (it);
3580   }
3581
3582   /* The threads found on the remote target.  */
3583   std::vector<thread_item> items;
3584 };
3585
3586 static int
3587 remote_newthread_step (threadref *ref, void *data)
3588 {
3589   struct threads_listing_context *context
3590     = (struct threads_listing_context *) data;
3591   int pid = inferior_ptid.pid ();
3592   int lwp = threadref_to_int (ref);
3593   ptid_t ptid (pid, lwp);
3594
3595   context->items.emplace_back (ptid);
3596
3597   return 1;                     /* continue iterator */
3598 }
3599
3600 #define CRAZY_MAX_THREADS 1000
3601
3602 ptid_t
3603 remote_target::remote_current_thread (ptid_t oldpid)
3604 {
3605   struct remote_state *rs = get_remote_state ();
3606
3607   putpkt ("qC");
3608   getpkt (&rs->buf, 0);
3609   if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
3610     {
3611       const char *obuf;
3612       ptid_t result;
3613
3614       result = read_ptid (&rs->buf[2], &obuf);
3615       if (*obuf != '\0' && remote_debug)
3616         fprintf_unfiltered (gdb_stdlog,
3617                             "warning: garbage in qC reply\n");
3618
3619       return result;
3620     }
3621   else
3622     return oldpid;
3623 }
3624
3625 /* List remote threads using the deprecated qL packet.  */
3626
3627 int
3628 remote_target::remote_get_threads_with_ql (threads_listing_context *context)
3629 {
3630   if (remote_threadlist_iterator (remote_newthread_step, context,
3631                                   CRAZY_MAX_THREADS) >= 0)
3632     return 1;
3633
3634   return 0;
3635 }
3636
3637 #if defined(HAVE_LIBEXPAT)
3638
3639 static void
3640 start_thread (struct gdb_xml_parser *parser,
3641               const struct gdb_xml_element *element,
3642               void *user_data,
3643               std::vector<gdb_xml_value> &attributes)
3644 {
3645   struct threads_listing_context *data
3646     = (struct threads_listing_context *) user_data;
3647   struct gdb_xml_value *attr;
3648
3649   char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
3650   ptid_t ptid = read_ptid (id, NULL);
3651
3652   data->items.emplace_back (ptid);
3653   thread_item &item = data->items.back ();
3654
3655   attr = xml_find_attribute (attributes, "core");
3656   if (attr != NULL)
3657     item.core = *(ULONGEST *) attr->value.get ();
3658
3659   attr = xml_find_attribute (attributes, "name");
3660   if (attr != NULL)
3661     item.name = (const char *) attr->value.get ();
3662
3663   attr = xml_find_attribute (attributes, "handle");
3664   if (attr != NULL)
3665     item.thread_handle = hex2bin ((const char *) attr->value.get ());
3666 }
3667
3668 static void
3669 end_thread (struct gdb_xml_parser *parser,
3670             const struct gdb_xml_element *element,
3671             void *user_data, const char *body_text)
3672 {
3673   struct threads_listing_context *data
3674     = (struct threads_listing_context *) user_data;
3675
3676   if (body_text != NULL && *body_text != '\0')
3677     data->items.back ().extra = body_text;
3678 }
3679
3680 const struct gdb_xml_attribute thread_attributes[] = {
3681   { "id", GDB_XML_AF_NONE, NULL, NULL },
3682   { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
3683   { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
3684   { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
3685   { NULL, GDB_XML_AF_NONE, NULL, NULL }
3686 };
3687
3688 const struct gdb_xml_element thread_children[] = {
3689   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3690 };
3691
3692 const struct gdb_xml_element threads_children[] = {
3693   { "thread", thread_attributes, thread_children,
3694     GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3695     start_thread, end_thread },
3696   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3697 };
3698
3699 const struct gdb_xml_element threads_elements[] = {
3700   { "threads", NULL, threads_children,
3701     GDB_XML_EF_NONE, NULL, NULL },
3702   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3703 };
3704
3705 #endif
3706
3707 /* List remote threads using qXfer:threads:read.  */
3708
3709 int
3710 remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
3711 {
3712 #if defined(HAVE_LIBEXPAT)
3713   if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3714     {
3715       gdb::optional<gdb::char_vector> xml
3716         = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
3717
3718       if (xml && (*xml)[0] != '\0')
3719         {
3720           gdb_xml_parse_quick (_("threads"), "threads.dtd",
3721                                threads_elements, xml->data (), context);
3722         }
3723
3724       return 1;
3725     }
3726 #endif
3727
3728   return 0;
3729 }
3730
3731 /* List remote threads using qfThreadInfo/qsThreadInfo.  */
3732
3733 int
3734 remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
3735 {
3736   struct remote_state *rs = get_remote_state ();
3737
3738   if (rs->use_threadinfo_query)
3739     {
3740       const char *bufp;
3741
3742       putpkt ("qfThreadInfo");
3743       getpkt (&rs->buf, 0);
3744       bufp = rs->buf.data ();
3745       if (bufp[0] != '\0')              /* q packet recognized */
3746         {
3747           while (*bufp++ == 'm')        /* reply contains one or more TID */
3748             {
3749               do
3750                 {
3751                   ptid_t ptid = read_ptid (bufp, &bufp);
3752                   context->items.emplace_back (ptid);
3753                 }
3754               while (*bufp++ == ',');   /* comma-separated list */
3755               putpkt ("qsThreadInfo");
3756               getpkt (&rs->buf, 0);
3757               bufp = rs->buf.data ();
3758             }
3759           return 1;
3760         }
3761       else
3762         {
3763           /* Packet not recognized.  */
3764           rs->use_threadinfo_query = 0;
3765         }
3766     }
3767
3768   return 0;
3769 }
3770
3771 /* Implement the to_update_thread_list function for the remote
3772    targets.  */
3773
3774 void
3775 remote_target::update_thread_list ()
3776 {
3777   struct threads_listing_context context;
3778   int got_list = 0;
3779
3780   /* We have a few different mechanisms to fetch the thread list.  Try
3781      them all, starting with the most preferred one first, falling
3782      back to older methods.  */
3783   if (remote_get_threads_with_qxfer (&context)
3784       || remote_get_threads_with_qthreadinfo (&context)
3785       || remote_get_threads_with_ql (&context))
3786     {
3787       got_list = 1;
3788
3789       if (context.items.empty ()
3790           && remote_thread_always_alive (inferior_ptid))
3791         {
3792           /* Some targets don't really support threads, but still
3793              reply an (empty) thread list in response to the thread
3794              listing packets, instead of replying "packet not
3795              supported".  Exit early so we don't delete the main
3796              thread.  */
3797           return;
3798         }
3799
3800       /* CONTEXT now holds the current thread list on the remote
3801          target end.  Delete GDB-side threads no longer found on the
3802          target.  */
3803       for (thread_info *tp : all_threads_safe ())
3804         {
3805           if (!context.contains_thread (tp->ptid))
3806             {
3807               /* Not found.  */
3808               delete_thread (tp);
3809             }
3810         }
3811
3812       /* Remove any unreported fork child threads from CONTEXT so
3813          that we don't interfere with follow fork, which is where
3814          creation of such threads is handled.  */
3815       remove_new_fork_children (&context);
3816
3817       /* And now add threads we don't know about yet to our list.  */
3818       for (thread_item &item : context.items)
3819         {
3820           if (item.ptid != null_ptid)
3821             {
3822               /* In non-stop mode, we assume new found threads are
3823                  executing until proven otherwise with a stop reply.
3824                  In all-stop, we can only get here if all threads are
3825                  stopped.  */
3826               int executing = target_is_non_stop_p () ? 1 : 0;
3827
3828               remote_notice_new_inferior (item.ptid, executing);
3829
3830               thread_info *tp = find_thread_ptid (item.ptid);
3831               remote_thread_info *info = get_remote_thread_info (tp);
3832               info->core = item.core;
3833               info->extra = std::move (item.extra);
3834               info->name = std::move (item.name);
3835               info->thread_handle = std::move (item.thread_handle);
3836             }
3837         }
3838     }
3839
3840   if (!got_list)
3841     {
3842       /* If no thread listing method is supported, then query whether
3843          each known thread is alive, one by one, with the T packet.
3844          If the target doesn't support threads at all, then this is a
3845          no-op.  See remote_thread_alive.  */
3846       prune_threads ();
3847     }
3848 }
3849
3850 /*
3851  * Collect a descriptive string about the given thread.
3852  * The target may say anything it wants to about the thread
3853  * (typically info about its blocked / runnable state, name, etc.).
3854  * This string will appear in the info threads display.
3855  *
3856  * Optional: targets are not required to implement this function.
3857  */
3858
3859 const char *
3860 remote_target::extra_thread_info (thread_info *tp)
3861 {
3862   struct remote_state *rs = get_remote_state ();
3863   int set;
3864   threadref id;
3865   struct gdb_ext_thread_info threadinfo;
3866
3867   if (rs->remote_desc == 0)             /* paranoia */
3868     internal_error (__FILE__, __LINE__,
3869                     _("remote_threads_extra_info"));
3870
3871   if (tp->ptid == magic_null_ptid
3872       || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
3873     /* This is the main thread which was added by GDB.  The remote
3874        server doesn't know about it.  */
3875     return NULL;
3876
3877   std::string &extra = get_remote_thread_info (tp)->extra;
3878
3879   /* If already have cached info, use it.  */
3880   if (!extra.empty ())
3881     return extra.c_str ();
3882
3883   if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3884     {
3885       /* If we're using qXfer:threads:read, then the extra info is
3886          included in the XML.  So if we didn't have anything cached,
3887          it's because there's really no extra info.  */
3888       return NULL;
3889     }
3890
3891   if (rs->use_threadextra_query)
3892     {
3893       char *b = rs->buf.data ();
3894       char *endb = b + get_remote_packet_size ();
3895
3896       xsnprintf (b, endb - b, "qThreadExtraInfo,");
3897       b += strlen (b);
3898       write_ptid (b, endb, tp->ptid);
3899
3900       putpkt (rs->buf);
3901       getpkt (&rs->buf, 0);
3902       if (rs->buf[0] != 0)
3903         {
3904           extra.resize (strlen (rs->buf.data ()) / 2);
3905           hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
3906           return extra.c_str ();
3907         }
3908     }
3909
3910   /* If the above query fails, fall back to the old method.  */
3911   rs->use_threadextra_query = 0;
3912   set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3913     | TAG_MOREDISPLAY | TAG_DISPLAY;
3914   int_to_threadref (&id, tp->ptid.lwp ());
3915   if (remote_get_threadinfo (&id, set, &threadinfo))
3916     if (threadinfo.active)
3917       {
3918         if (*threadinfo.shortname)
3919           string_appendf (extra, " Name: %s", threadinfo.shortname);
3920         if (*threadinfo.display)
3921           {
3922             if (!extra.empty ())
3923               extra += ',';
3924             string_appendf (extra, " State: %s", threadinfo.display);
3925           }
3926         if (*threadinfo.more_display)
3927           {
3928             if (!extra.empty ())
3929               extra += ',';
3930             string_appendf (extra, " Priority: %s", threadinfo.more_display);
3931           }
3932         return extra.c_str ();
3933       }
3934   return NULL;
3935 }
3936 \f
3937
3938 bool
3939 remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3940                                             struct static_tracepoint_marker *marker)
3941 {
3942   struct remote_state *rs = get_remote_state ();
3943   char *p = rs->buf.data ();
3944
3945   xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
3946   p += strlen (p);
3947   p += hexnumstr (p, addr);
3948   putpkt (rs->buf);
3949   getpkt (&rs->buf, 0);
3950   p = rs->buf.data ();
3951
3952   if (*p == 'E')
3953     error (_("Remote failure reply: %s"), p);
3954
3955   if (*p++ == 'm')
3956     {
3957       parse_static_tracepoint_marker_definition (p, NULL, marker);
3958       return true;
3959     }
3960
3961   return false;
3962 }
3963
3964 std::vector<static_tracepoint_marker>
3965 remote_target::static_tracepoint_markers_by_strid (const char *strid)
3966 {
3967   struct remote_state *rs = get_remote_state ();
3968   std::vector<static_tracepoint_marker> markers;
3969   const char *p;
3970   static_tracepoint_marker marker;
3971
3972   /* Ask for a first packet of static tracepoint marker
3973      definition.  */
3974   putpkt ("qTfSTM");
3975   getpkt (&rs->buf, 0);
3976   p = rs->buf.data ();
3977   if (*p == 'E')
3978     error (_("Remote failure reply: %s"), p);
3979
3980   while (*p++ == 'm')
3981     {
3982       do
3983         {
3984           parse_static_tracepoint_marker_definition (p, &p, &marker);
3985
3986           if (strid == NULL || marker.str_id == strid)
3987             markers.push_back (std::move (marker));
3988         }
3989       while (*p++ == ',');      /* comma-separated list */
3990       /* Ask for another packet of static tracepoint definition.  */
3991       putpkt ("qTsSTM");
3992       getpkt (&rs->buf, 0);
3993       p = rs->buf.data ();
3994     }
3995
3996   return markers;
3997 }
3998
3999 \f
4000 /* Implement the to_get_ada_task_ptid function for the remote targets.  */
4001
4002 ptid_t
4003 remote_target::get_ada_task_ptid (long lwp, long thread)
4004 {
4005   return ptid_t (inferior_ptid.pid (), lwp, 0);
4006 }
4007 \f
4008
4009 /* Restart the remote side; this is an extended protocol operation.  */
4010
4011 void
4012 remote_target::extended_remote_restart ()
4013 {
4014   struct remote_state *rs = get_remote_state ();
4015
4016   /* Send the restart command; for reasons I don't understand the
4017      remote side really expects a number after the "R".  */
4018   xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
4019   putpkt (rs->buf);
4020
4021   remote_fileio_reset ();
4022 }
4023 \f
4024 /* Clean up connection to a remote debugger.  */
4025
4026 void
4027 remote_target::close ()
4028 {
4029   /* Make sure we leave stdin registered in the event loop.  */
4030   terminal_ours ();
4031
4032   /* We don't have a connection to the remote stub anymore.  Get rid
4033      of all the inferiors and their threads we were controlling.
4034      Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4035      will be unable to find the thread corresponding to (pid, 0, 0).  */
4036   inferior_ptid = null_ptid;
4037   discard_all_inferiors ();
4038
4039   trace_reset_local_state ();
4040
4041   delete this;
4042 }
4043
4044 remote_target::~remote_target ()
4045 {
4046   struct remote_state *rs = get_remote_state ();
4047
4048   /* Check for NULL because we may get here with a partially
4049      constructed target/connection.  */
4050   if (rs->remote_desc == nullptr)
4051     return;
4052
4053   serial_close (rs->remote_desc);
4054
4055   /* We are destroying the remote target, so we should discard
4056      everything of this target.  */
4057   discard_pending_stop_replies_in_queue ();
4058
4059   if (rs->remote_async_inferior_event_token)
4060     delete_async_event_handler (&rs->remote_async_inferior_event_token);
4061
4062   remote_notif_state_xfree (rs->notif_state);
4063 }
4064
4065 /* Query the remote side for the text, data and bss offsets.  */
4066
4067 void
4068 remote_target::get_offsets ()
4069 {
4070   struct remote_state *rs = get_remote_state ();
4071   char *buf;
4072   char *ptr;
4073   int lose, num_segments = 0, do_sections, do_segments;
4074   CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
4075   struct section_offsets *offs;
4076   struct symfile_segment_data *data;
4077
4078   if (symfile_objfile == NULL)
4079     return;
4080
4081   putpkt ("qOffsets");
4082   getpkt (&rs->buf, 0);
4083   buf = rs->buf.data ();
4084
4085   if (buf[0] == '\000')
4086     return;                     /* Return silently.  Stub doesn't support
4087                                    this command.  */
4088   if (buf[0] == 'E')
4089     {
4090       warning (_("Remote failure reply: %s"), buf);
4091       return;
4092     }
4093
4094   /* Pick up each field in turn.  This used to be done with scanf, but
4095      scanf will make trouble if CORE_ADDR size doesn't match
4096      conversion directives correctly.  The following code will work
4097      with any size of CORE_ADDR.  */
4098   text_addr = data_addr = bss_addr = 0;
4099   ptr = buf;
4100   lose = 0;
4101
4102   if (startswith (ptr, "Text="))
4103     {
4104       ptr += 5;
4105       /* Don't use strtol, could lose on big values.  */
4106       while (*ptr && *ptr != ';')
4107         text_addr = (text_addr << 4) + fromhex (*ptr++);
4108
4109       if (startswith (ptr, ";Data="))
4110         {
4111           ptr += 6;
4112           while (*ptr && *ptr != ';')
4113             data_addr = (data_addr << 4) + fromhex (*ptr++);
4114         }
4115       else
4116         lose = 1;
4117
4118       if (!lose && startswith (ptr, ";Bss="))
4119         {
4120           ptr += 5;
4121           while (*ptr && *ptr != ';')
4122             bss_addr = (bss_addr << 4) + fromhex (*ptr++);
4123
4124           if (bss_addr != data_addr)
4125             warning (_("Target reported unsupported offsets: %s"), buf);
4126         }
4127       else
4128         lose = 1;
4129     }
4130   else if (startswith (ptr, "TextSeg="))
4131     {
4132       ptr += 8;
4133       /* Don't use strtol, could lose on big values.  */
4134       while (*ptr && *ptr != ';')
4135         text_addr = (text_addr << 4) + fromhex (*ptr++);
4136       num_segments = 1;
4137
4138       if (startswith (ptr, ";DataSeg="))
4139         {
4140           ptr += 9;
4141           while (*ptr && *ptr != ';')
4142             data_addr = (data_addr << 4) + fromhex (*ptr++);
4143           num_segments++;
4144         }
4145     }
4146   else
4147     lose = 1;
4148
4149   if (lose)
4150     error (_("Malformed response to offset query, %s"), buf);
4151   else if (*ptr != '\0')
4152     warning (_("Target reported unsupported offsets: %s"), buf);
4153
4154   offs = ((struct section_offsets *)
4155           alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
4156   memcpy (offs, symfile_objfile->section_offsets,
4157           SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
4158
4159   data = get_symfile_segment_data (symfile_objfile->obfd);
4160   do_segments = (data != NULL);
4161   do_sections = num_segments == 0;
4162
4163   if (num_segments > 0)
4164     {
4165       segments[0] = text_addr;
4166       segments[1] = data_addr;
4167     }
4168   /* If we have two segments, we can still try to relocate everything
4169      by assuming that the .text and .data offsets apply to the whole
4170      text and data segments.  Convert the offsets given in the packet
4171      to base addresses for symfile_map_offsets_to_segments.  */
4172   else if (data && data->num_segments == 2)
4173     {
4174       segments[0] = data->segment_bases[0] + text_addr;
4175       segments[1] = data->segment_bases[1] + data_addr;
4176       num_segments = 2;
4177     }
4178   /* If the object file has only one segment, assume that it is text
4179      rather than data; main programs with no writable data are rare,
4180      but programs with no code are useless.  Of course the code might
4181      have ended up in the data segment... to detect that we would need
4182      the permissions here.  */
4183   else if (data && data->num_segments == 1)
4184     {
4185       segments[0] = data->segment_bases[0] + text_addr;
4186       num_segments = 1;
4187     }
4188   /* There's no way to relocate by segment.  */
4189   else
4190     do_segments = 0;
4191
4192   if (do_segments)
4193     {
4194       int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4195                                                  offs, num_segments, segments);
4196
4197       if (ret == 0 && !do_sections)
4198         error (_("Can not handle qOffsets TextSeg "
4199                  "response with this symbol file"));
4200
4201       if (ret > 0)
4202         do_sections = 0;
4203     }
4204
4205   if (data)
4206     free_symfile_segment_data (data);
4207
4208   if (do_sections)
4209     {
4210       offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4211
4212       /* This is a temporary kludge to force data and bss to use the
4213          same offsets because that's what nlmconv does now.  The real
4214          solution requires changes to the stub and remote.c that I
4215          don't have time to do right now.  */
4216
4217       offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4218       offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4219     }
4220
4221   objfile_relocate (symfile_objfile, offs);
4222 }
4223
4224 /* Send interrupt_sequence to remote target.  */
4225
4226 void
4227 remote_target::send_interrupt_sequence ()
4228 {
4229   struct remote_state *rs = get_remote_state ();
4230
4231   if (interrupt_sequence_mode == interrupt_sequence_control_c)
4232     remote_serial_write ("\x03", 1);
4233   else if (interrupt_sequence_mode == interrupt_sequence_break)
4234     serial_send_break (rs->remote_desc);
4235   else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4236     {
4237       serial_send_break (rs->remote_desc);
4238       remote_serial_write ("g", 1);
4239     }
4240   else
4241     internal_error (__FILE__, __LINE__,
4242                     _("Invalid value for interrupt_sequence_mode: %s."),
4243                     interrupt_sequence_mode);
4244 }
4245
4246
4247 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
4248    and extract the PTID.  Returns NULL_PTID if not found.  */
4249
4250 static ptid_t
4251 stop_reply_extract_thread (char *stop_reply)
4252 {
4253   if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4254     {
4255       const char *p;
4256
4257       /* Txx r:val ; r:val (...)  */
4258       p = &stop_reply[3];
4259
4260       /* Look for "register" named "thread".  */
4261       while (*p != '\0')
4262         {
4263           const char *p1;
4264
4265           p1 = strchr (p, ':');
4266           if (p1 == NULL)
4267             return null_ptid;
4268
4269           if (strncmp (p, "thread", p1 - p) == 0)
4270             return read_ptid (++p1, &p);
4271
4272           p1 = strchr (p, ';');
4273           if (p1 == NULL)
4274             return null_ptid;
4275           p1++;
4276
4277           p = p1;
4278         }
4279     }
4280
4281   return null_ptid;
4282 }
4283
4284 /* Determine the remote side's current thread.  If we have a stop
4285    reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4286    "thread" register we can extract the current thread from.  If not,
4287    ask the remote which is the current thread with qC.  The former
4288    method avoids a roundtrip.  */
4289
4290 ptid_t
4291 remote_target::get_current_thread (char *wait_status)
4292 {
4293   ptid_t ptid = null_ptid;
4294
4295   /* Note we don't use remote_parse_stop_reply as that makes use of
4296      the target architecture, which we haven't yet fully determined at
4297      this point.  */
4298   if (wait_status != NULL)
4299     ptid = stop_reply_extract_thread (wait_status);
4300   if (ptid == null_ptid)
4301     ptid = remote_current_thread (inferior_ptid);
4302
4303   return ptid;
4304 }
4305
4306 /* Query the remote target for which is the current thread/process,
4307    add it to our tables, and update INFERIOR_PTID.  The caller is
4308    responsible for setting the state such that the remote end is ready
4309    to return the current thread.
4310
4311    This function is called after handling the '?' or 'vRun' packets,
4312    whose response is a stop reply from which we can also try
4313    extracting the thread.  If the target doesn't support the explicit
4314    qC query, we infer the current thread from that stop reply, passed
4315    in in WAIT_STATUS, which may be NULL.  */
4316
4317 void
4318 remote_target::add_current_inferior_and_thread (char *wait_status)
4319 {
4320   struct remote_state *rs = get_remote_state ();
4321   int fake_pid_p = 0;
4322
4323   inferior_ptid = null_ptid;
4324
4325   /* Now, if we have thread information, update inferior_ptid.  */
4326   ptid_t curr_ptid = get_current_thread (wait_status);
4327
4328   if (curr_ptid != null_ptid)
4329     {
4330       if (!remote_multi_process_p (rs))
4331         fake_pid_p = 1;
4332     }
4333   else
4334     {
4335       /* Without this, some commands which require an active target
4336          (such as kill) won't work.  This variable serves (at least)
4337          double duty as both the pid of the target process (if it has
4338          such), and as a flag indicating that a target is active.  */
4339       curr_ptid = magic_null_ptid;
4340       fake_pid_p = 1;
4341     }
4342
4343   remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
4344
4345   /* Add the main thread and switch to it.  Don't try reading
4346      registers yet, since we haven't fetched the target description
4347      yet.  */
4348   thread_info *tp = add_thread_silent (curr_ptid);
4349   switch_to_thread_no_regs (tp);
4350 }
4351
4352 /* Print info about a thread that was found already stopped on
4353    connection.  */
4354
4355 static void
4356 print_one_stopped_thread (struct thread_info *thread)
4357 {
4358   struct target_waitstatus *ws = &thread->suspend.waitstatus;
4359
4360   switch_to_thread (thread);
4361   thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
4362   set_current_sal_from_frame (get_current_frame ());
4363
4364   thread->suspend.waitstatus_pending_p = 0;
4365
4366   if (ws->kind == TARGET_WAITKIND_STOPPED)
4367     {
4368       enum gdb_signal sig = ws->value.sig;
4369
4370       if (signal_print_state (sig))
4371         gdb::observers::signal_received.notify (sig);
4372     }
4373   gdb::observers::normal_stop.notify (NULL, 1);
4374 }
4375
4376 /* Process all initial stop replies the remote side sent in response
4377    to the ? packet.  These indicate threads that were already stopped
4378    on initial connection.  We mark these threads as stopped and print
4379    their current frame before giving the user the prompt.  */
4380
4381 void
4382 remote_target::process_initial_stop_replies (int from_tty)
4383 {
4384   int pending_stop_replies = stop_reply_queue_length ();
4385   struct thread_info *selected = NULL;
4386   struct thread_info *lowest_stopped = NULL;
4387   struct thread_info *first = NULL;
4388
4389   /* Consume the initial pending events.  */
4390   while (pending_stop_replies-- > 0)
4391     {
4392       ptid_t waiton_ptid = minus_one_ptid;
4393       ptid_t event_ptid;
4394       struct target_waitstatus ws;
4395       int ignore_event = 0;
4396
4397       memset (&ws, 0, sizeof (ws));
4398       event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4399       if (remote_debug)
4400         print_target_wait_results (waiton_ptid, event_ptid, &ws);
4401
4402       switch (ws.kind)
4403         {
4404         case TARGET_WAITKIND_IGNORE:
4405         case TARGET_WAITKIND_NO_RESUMED:
4406         case TARGET_WAITKIND_SIGNALLED:
4407         case TARGET_WAITKIND_EXITED:
4408           /* We shouldn't see these, but if we do, just ignore.  */
4409           if (remote_debug)
4410             fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4411           ignore_event = 1;
4412           break;
4413
4414         case TARGET_WAITKIND_EXECD:
4415           xfree (ws.value.execd_pathname);
4416           break;
4417         default:
4418           break;
4419         }
4420
4421       if (ignore_event)
4422         continue;
4423
4424       struct thread_info *evthread = find_thread_ptid (event_ptid);
4425
4426       if (ws.kind == TARGET_WAITKIND_STOPPED)
4427         {
4428           enum gdb_signal sig = ws.value.sig;
4429
4430           /* Stubs traditionally report SIGTRAP as initial signal,
4431              instead of signal 0.  Suppress it.  */
4432           if (sig == GDB_SIGNAL_TRAP)
4433             sig = GDB_SIGNAL_0;
4434           evthread->suspend.stop_signal = sig;
4435           ws.value.sig = sig;
4436         }
4437
4438       evthread->suspend.waitstatus = ws;
4439
4440       if (ws.kind != TARGET_WAITKIND_STOPPED
4441           || ws.value.sig != GDB_SIGNAL_0)
4442         evthread->suspend.waitstatus_pending_p = 1;
4443
4444       set_executing (event_ptid, 0);
4445       set_running (event_ptid, 0);
4446       get_remote_thread_info (evthread)->vcont_resumed = 0;
4447     }
4448
4449   /* "Notice" the new inferiors before anything related to
4450      registers/memory.  */
4451   for (inferior *inf : all_non_exited_inferiors ())
4452     {
4453       inf->needs_setup = 1;
4454
4455       if (non_stop)
4456         {
4457           thread_info *thread = any_live_thread_of_inferior (inf);
4458           notice_new_inferior (thread, thread->state == THREAD_RUNNING,
4459                                from_tty);
4460         }
4461     }
4462
4463   /* If all-stop on top of non-stop, pause all threads.  Note this
4464      records the threads' stop pc, so must be done after "noticing"
4465      the inferiors.  */
4466   if (!non_stop)
4467     {
4468       stop_all_threads ();
4469
4470       /* If all threads of an inferior were already stopped, we
4471          haven't setup the inferior yet.  */
4472       for (inferior *inf : all_non_exited_inferiors ())
4473         {
4474           if (inf->needs_setup)
4475             {
4476               thread_info *thread = any_live_thread_of_inferior (inf);
4477               switch_to_thread_no_regs (thread);
4478               setup_inferior (0);
4479             }
4480         }
4481     }
4482
4483   /* Now go over all threads that are stopped, and print their current
4484      frame.  If all-stop, then if there's a signalled thread, pick
4485      that as current.  */
4486   for (thread_info *thread : all_non_exited_threads ())
4487     {
4488       if (first == NULL)
4489         first = thread;
4490
4491       if (!non_stop)
4492         thread->set_running (false);
4493       else if (thread->state != THREAD_STOPPED)
4494         continue;
4495
4496       if (selected == NULL
4497           && thread->suspend.waitstatus_pending_p)
4498         selected = thread;
4499
4500       if (lowest_stopped == NULL
4501           || thread->inf->num < lowest_stopped->inf->num
4502           || thread->per_inf_num < lowest_stopped->per_inf_num)
4503         lowest_stopped = thread;
4504
4505       if (non_stop)
4506         print_one_stopped_thread (thread);
4507     }
4508
4509   /* In all-stop, we only print the status of one thread, and leave
4510      others with their status pending.  */
4511   if (!non_stop)
4512     {
4513       thread_info *thread = selected;
4514       if (thread == NULL)
4515         thread = lowest_stopped;
4516       if (thread == NULL)
4517         thread = first;
4518
4519       print_one_stopped_thread (thread);
4520     }
4521
4522   /* For "info program".  */
4523   thread_info *thread = inferior_thread ();
4524   if (thread->state == THREAD_STOPPED)
4525     set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
4526 }
4527
4528 /* Start the remote connection and sync state.  */
4529
4530 void
4531 remote_target::start_remote (int from_tty, int extended_p)
4532 {
4533   struct remote_state *rs = get_remote_state ();
4534   struct packet_config *noack_config;
4535   char *wait_status = NULL;
4536
4537   /* Signal other parts that we're going through the initial setup,
4538      and so things may not be stable yet.  E.g., we don't try to
4539      install tracepoints until we've relocated symbols.  Also, a
4540      Ctrl-C before we're connected and synced up can't interrupt the
4541      target.  Instead, it offers to drop the (potentially wedged)
4542      connection.  */
4543   rs->starting_up = 1;
4544
4545   QUIT;
4546
4547   if (interrupt_on_connect)
4548     send_interrupt_sequence ();
4549
4550   /* Ack any packet which the remote side has already sent.  */
4551   remote_serial_write ("+", 1);
4552
4553   /* The first packet we send to the target is the optional "supported
4554      packets" request.  If the target can answer this, it will tell us
4555      which later probes to skip.  */
4556   remote_query_supported ();
4557
4558   /* If the stub wants to get a QAllow, compose one and send it.  */
4559   if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
4560     set_permissions ();
4561
4562   /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4563      unknown 'v' packet with string "OK".  "OK" gets interpreted by GDB
4564      as a reply to known packet.  For packet "vFile:setfs:" it is an
4565      invalid reply and GDB would return error in
4566      remote_hostio_set_filesystem, making remote files access impossible.
4567      Disable "vFile:setfs:" in such case.  Do not disable other 'v' packets as
4568      other "vFile" packets get correctly detected even on gdbserver < 7.7.  */
4569   {
4570     const char v_mustreplyempty[] = "vMustReplyEmpty";
4571
4572     putpkt (v_mustreplyempty);
4573     getpkt (&rs->buf, 0);
4574     if (strcmp (rs->buf.data (), "OK") == 0)
4575       remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4576     else if (strcmp (rs->buf.data (), "") != 0)
4577       error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4578              rs->buf.data ());
4579   }
4580
4581   /* Next, we possibly activate noack mode.
4582
4583      If the QStartNoAckMode packet configuration is set to AUTO,
4584      enable noack mode if the stub reported a wish for it with
4585      qSupported.
4586
4587      If set to TRUE, then enable noack mode even if the stub didn't
4588      report it in qSupported.  If the stub doesn't reply OK, the
4589      session ends with an error.
4590
4591      If FALSE, then don't activate noack mode, regardless of what the
4592      stub claimed should be the default with qSupported.  */
4593
4594   noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4595   if (packet_config_support (noack_config) != PACKET_DISABLE)
4596     {
4597       putpkt ("QStartNoAckMode");
4598       getpkt (&rs->buf, 0);
4599       if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4600         rs->noack_mode = 1;
4601     }
4602
4603   if (extended_p)
4604     {
4605       /* Tell the remote that we are using the extended protocol.  */
4606       putpkt ("!");
4607       getpkt (&rs->buf, 0);
4608     }
4609
4610   /* Let the target know which signals it is allowed to pass down to
4611      the program.  */
4612   update_signals_program_target ();
4613
4614   /* Next, if the target can specify a description, read it.  We do
4615      this before anything involving memory or registers.  */
4616   target_find_description ();
4617
4618   /* Next, now that we know something about the target, update the
4619      address spaces in the program spaces.  */
4620   update_address_spaces ();
4621
4622   /* On OSs where the list of libraries is global to all
4623      processes, we fetch them early.  */
4624   if (gdbarch_has_global_solist (target_gdbarch ()))
4625     solib_add (NULL, from_tty, auto_solib_add);
4626
4627   if (target_is_non_stop_p ())
4628     {
4629       if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
4630         error (_("Non-stop mode requested, but remote "
4631                  "does not support non-stop"));
4632
4633       putpkt ("QNonStop:1");
4634       getpkt (&rs->buf, 0);
4635
4636       if (strcmp (rs->buf.data (), "OK") != 0)
4637         error (_("Remote refused setting non-stop mode with: %s"),
4638                rs->buf.data ());
4639
4640       /* Find about threads and processes the stub is already
4641          controlling.  We default to adding them in the running state.
4642          The '?' query below will then tell us about which threads are
4643          stopped.  */
4644       this->update_thread_list ();
4645     }
4646   else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
4647     {
4648       /* Don't assume that the stub can operate in all-stop mode.
4649          Request it explicitly.  */
4650       putpkt ("QNonStop:0");
4651       getpkt (&rs->buf, 0);
4652
4653       if (strcmp (rs->buf.data (), "OK") != 0)
4654         error (_("Remote refused setting all-stop mode with: %s"),
4655                rs->buf.data ());
4656     }
4657
4658   /* Upload TSVs regardless of whether the target is running or not.  The
4659      remote stub, such as GDBserver, may have some predefined or builtin
4660      TSVs, even if the target is not running.  */
4661   if (get_trace_status (current_trace_status ()) != -1)
4662     {
4663       struct uploaded_tsv *uploaded_tsvs = NULL;
4664
4665       upload_trace_state_variables (&uploaded_tsvs);
4666       merge_uploaded_trace_state_variables (&uploaded_tsvs);
4667     }
4668
4669   /* Check whether the target is running now.  */
4670   putpkt ("?");
4671   getpkt (&rs->buf, 0);
4672
4673   if (!target_is_non_stop_p ())
4674     {
4675       if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
4676         {
4677           if (!extended_p)
4678             error (_("The target is not running (try extended-remote?)"));
4679
4680           /* We're connected, but not running.  Drop out before we
4681              call start_remote.  */
4682           rs->starting_up = 0;
4683           return;
4684         }
4685       else
4686         {
4687           /* Save the reply for later.  */
4688           wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4689           strcpy (wait_status, rs->buf.data ());
4690         }
4691
4692       /* Fetch thread list.  */
4693       target_update_thread_list ();
4694
4695       /* Let the stub know that we want it to return the thread.  */
4696       set_continue_thread (minus_one_ptid);
4697
4698       if (thread_count () == 0)
4699         {
4700           /* Target has no concept of threads at all.  GDB treats
4701              non-threaded target as single-threaded; add a main
4702              thread.  */
4703           add_current_inferior_and_thread (wait_status);
4704         }
4705       else
4706         {
4707           /* We have thread information; select the thread the target
4708              says should be current.  If we're reconnecting to a
4709              multi-threaded program, this will ideally be the thread
4710              that last reported an event before GDB disconnected.  */
4711           inferior_ptid = get_current_thread (wait_status);
4712           if (inferior_ptid == null_ptid)
4713             {
4714               /* Odd... The target was able to list threads, but not
4715                  tell us which thread was current (no "thread"
4716                  register in T stop reply?).  Just pick the first
4717                  thread in the thread list then.  */
4718               
4719               if (remote_debug)
4720                 fprintf_unfiltered (gdb_stdlog,
4721                                     "warning: couldn't determine remote "
4722                                     "current thread; picking first in list.\n");
4723
4724               inferior_ptid = inferior_list->thread_list->ptid;
4725             }
4726         }
4727
4728       /* init_wait_for_inferior should be called before get_offsets in order
4729          to manage `inserted' flag in bp loc in a correct state.
4730          breakpoint_init_inferior, called from init_wait_for_inferior, set
4731          `inserted' flag to 0, while before breakpoint_re_set, called from
4732          start_remote, set `inserted' flag to 1.  In the initialization of
4733          inferior, breakpoint_init_inferior should be called first, and then
4734          breakpoint_re_set can be called.  If this order is broken, state of
4735          `inserted' flag is wrong, and cause some problems on breakpoint
4736          manipulation.  */
4737       init_wait_for_inferior ();
4738
4739       get_offsets ();           /* Get text, data & bss offsets.  */
4740
4741       /* If we could not find a description using qXfer, and we know
4742          how to do it some other way, try again.  This is not
4743          supported for non-stop; it could be, but it is tricky if
4744          there are no stopped threads when we connect.  */
4745       if (remote_read_description_p (this)
4746           && gdbarch_target_desc (target_gdbarch ()) == NULL)
4747         {
4748           target_clear_description ();
4749           target_find_description ();
4750         }
4751
4752       /* Use the previously fetched status.  */
4753       gdb_assert (wait_status != NULL);
4754       strcpy (rs->buf.data (), wait_status);
4755       rs->cached_wait_status = 1;
4756
4757       ::start_remote (from_tty); /* Initialize gdb process mechanisms.  */
4758     }
4759   else
4760     {
4761       /* Clear WFI global state.  Do this before finding about new
4762          threads and inferiors, and setting the current inferior.
4763          Otherwise we would clear the proceed status of the current
4764          inferior when we want its stop_soon state to be preserved
4765          (see notice_new_inferior).  */
4766       init_wait_for_inferior ();
4767
4768       /* In non-stop, we will either get an "OK", meaning that there
4769          are no stopped threads at this time; or, a regular stop
4770          reply.  In the latter case, there may be more than one thread
4771          stopped --- we pull them all out using the vStopped
4772          mechanism.  */
4773       if (strcmp (rs->buf.data (), "OK") != 0)
4774         {
4775           struct notif_client *notif = &notif_client_stop;
4776
4777           /* remote_notif_get_pending_replies acks this one, and gets
4778              the rest out.  */
4779           rs->notif_state->pending_event[notif_client_stop.id]
4780             = remote_notif_parse (this, notif, rs->buf.data ());
4781           remote_notif_get_pending_events (notif);
4782         }
4783
4784       if (thread_count () == 0)
4785         {
4786           if (!extended_p)
4787             error (_("The target is not running (try extended-remote?)"));
4788
4789           /* We're connected, but not running.  Drop out before we
4790              call start_remote.  */
4791           rs->starting_up = 0;
4792           return;
4793         }
4794
4795       /* In non-stop mode, any cached wait status will be stored in
4796          the stop reply queue.  */
4797       gdb_assert (wait_status == NULL);
4798
4799       /* Report all signals during attach/startup.  */
4800       pass_signals (0, NULL);
4801
4802       /* If there are already stopped threads, mark them stopped and
4803          report their stops before giving the prompt to the user.  */
4804       process_initial_stop_replies (from_tty);
4805
4806       if (target_can_async_p ())
4807         target_async (1);
4808     }
4809
4810   /* If we connected to a live target, do some additional setup.  */
4811   if (target_has_execution)
4812     {
4813       if (symfile_objfile)      /* No use without a symbol-file.  */
4814         remote_check_symbols ();
4815     }
4816
4817   /* Possibly the target has been engaged in a trace run started
4818      previously; find out where things are at.  */
4819   if (get_trace_status (current_trace_status ()) != -1)
4820     {
4821       struct uploaded_tp *uploaded_tps = NULL;
4822
4823       if (current_trace_status ()->running)
4824         printf_filtered (_("Trace is already running on the target.\n"));
4825
4826       upload_tracepoints (&uploaded_tps);
4827
4828       merge_uploaded_tracepoints (&uploaded_tps);
4829     }
4830
4831   /* Possibly the target has been engaged in a btrace record started
4832      previously; find out where things are at.  */
4833   remote_btrace_maybe_reopen ();
4834
4835   /* The thread and inferior lists are now synchronized with the
4836      target, our symbols have been relocated, and we're merged the
4837      target's tracepoints with ours.  We're done with basic start
4838      up.  */
4839   rs->starting_up = 0;
4840
4841   /* Maybe breakpoints are global and need to be inserted now.  */
4842   if (breakpoints_should_be_inserted_now ())
4843     insert_breakpoints ();
4844 }
4845
4846 /* Open a connection to a remote debugger.
4847    NAME is the filename used for communication.  */
4848
4849 void
4850 remote_target::open (const char *name, int from_tty)
4851 {
4852   open_1 (name, from_tty, 0);
4853 }
4854
4855 /* Open a connection to a remote debugger using the extended
4856    remote gdb protocol.  NAME is the filename used for communication.  */
4857
4858 void
4859 extended_remote_target::open (const char *name, int from_tty)
4860 {
4861   open_1 (name, from_tty, 1 /*extended_p */);
4862 }
4863
4864 /* Reset all packets back to "unknown support".  Called when opening a
4865    new connection to a remote target.  */
4866
4867 static void
4868 reset_all_packet_configs_support (void)
4869 {
4870   int i;
4871
4872   for (i = 0; i < PACKET_MAX; i++)
4873     remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4874 }
4875
4876 /* Initialize all packet configs.  */
4877
4878 static void
4879 init_all_packet_configs (void)
4880 {
4881   int i;
4882
4883   for (i = 0; i < PACKET_MAX; i++)
4884     {
4885       remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4886       remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4887     }
4888 }
4889
4890 /* Symbol look-up.  */
4891
4892 void
4893 remote_target::remote_check_symbols ()
4894 {
4895   char *tmp;
4896   int end;
4897
4898   /* The remote side has no concept of inferiors that aren't running
4899      yet, it only knows about running processes.  If we're connected
4900      but our current inferior is not running, we should not invite the
4901      remote target to request symbol lookups related to its
4902      (unrelated) current process.  */
4903   if (!target_has_execution)
4904     return;
4905
4906   if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
4907     return;
4908
4909   /* Make sure the remote is pointing at the right process.  Note
4910      there's no way to select "no process".  */
4911   set_general_process ();
4912
4913   /* Allocate a message buffer.  We can't reuse the input buffer in RS,
4914      because we need both at the same time.  */
4915   gdb::char_vector msg (get_remote_packet_size ());
4916   gdb::char_vector reply (get_remote_packet_size ());
4917
4918   /* Invite target to request symbol lookups.  */
4919
4920   putpkt ("qSymbol::");
4921   getpkt (&reply, 0);
4922   packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
4923
4924   while (startswith (reply.data (), "qSymbol:"))
4925     {
4926       struct bound_minimal_symbol sym;
4927
4928       tmp = &reply[8];
4929       end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4930                      strlen (tmp) / 2);
4931       msg[end] = '\0';
4932       sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
4933       if (sym.minsym == NULL)
4934         xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4935                    &reply[8]);
4936       else
4937         {
4938           int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4939           CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
4940
4941           /* If this is a function address, return the start of code
4942              instead of any data function descriptor.  */
4943           sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4944                                                          sym_addr,
4945                                                          current_top_target ());
4946
4947           xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
4948                      phex_nz (sym_addr, addr_size), &reply[8]);
4949         }
4950
4951       putpkt (msg.data ());
4952       getpkt (&reply, 0);
4953     }
4954 }
4955
4956 static struct serial *
4957 remote_serial_open (const char *name)
4958 {
4959   static int udp_warning = 0;
4960
4961   /* FIXME: Parsing NAME here is a hack.  But we want to warn here instead
4962      of in ser-tcp.c, because it is the remote protocol assuming that the
4963      serial connection is reliable and not the serial connection promising
4964      to be.  */
4965   if (!udp_warning && startswith (name, "udp:"))
4966     {
4967       warning (_("The remote protocol may be unreliable over UDP.\n"
4968                  "Some events may be lost, rendering further debugging "
4969                  "impossible."));
4970       udp_warning = 1;
4971     }
4972
4973   return serial_open (name);
4974 }
4975
4976 /* Inform the target of our permission settings.  The permission flags
4977    work without this, but if the target knows the settings, it can do
4978    a couple things.  First, it can add its own check, to catch cases
4979    that somehow manage to get by the permissions checks in target
4980    methods.  Second, if the target is wired to disallow particular
4981    settings (for instance, a system in the field that is not set up to
4982    be able to stop at a breakpoint), it can object to any unavailable
4983    permissions.  */
4984
4985 void
4986 remote_target::set_permissions ()
4987 {
4988   struct remote_state *rs = get_remote_state ();
4989
4990   xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
4991              "WriteReg:%x;WriteMem:%x;"
4992              "InsertBreak:%x;InsertTrace:%x;"
4993              "InsertFastTrace:%x;Stop:%x",
4994              may_write_registers, may_write_memory,
4995              may_insert_breakpoints, may_insert_tracepoints,
4996              may_insert_fast_tracepoints, may_stop);
4997   putpkt (rs->buf);
4998   getpkt (&rs->buf, 0);
4999
5000   /* If the target didn't like the packet, warn the user.  Do not try
5001      to undo the user's settings, that would just be maddening.  */
5002   if (strcmp (rs->buf.data (), "OK") != 0)
5003     warning (_("Remote refused setting permissions with: %s"),
5004              rs->buf.data ());
5005 }
5006
5007 /* This type describes each known response to the qSupported
5008    packet.  */
5009 struct protocol_feature
5010 {
5011   /* The name of this protocol feature.  */
5012   const char *name;
5013
5014   /* The default for this protocol feature.  */
5015   enum packet_support default_support;
5016
5017   /* The function to call when this feature is reported, or after
5018      qSupported processing if the feature is not supported.
5019      The first argument points to this structure.  The second
5020      argument indicates whether the packet requested support be
5021      enabled, disabled, or probed (or the default, if this function
5022      is being called at the end of processing and this feature was
5023      not reported).  The third argument may be NULL; if not NULL, it
5024      is a NUL-terminated string taken from the packet following
5025      this feature's name and an equals sign.  */
5026   void (*func) (remote_target *remote, const struct protocol_feature *,
5027                 enum packet_support, const char *);
5028
5029   /* The corresponding packet for this feature.  Only used if
5030      FUNC is remote_supported_packet.  */
5031   int packet;
5032 };
5033
5034 static void
5035 remote_supported_packet (remote_target *remote,
5036                          const struct protocol_feature *feature,
5037                          enum packet_support support,
5038                          const char *argument)
5039 {
5040   if (argument)
5041     {
5042       warning (_("Remote qSupported response supplied an unexpected value for"
5043                  " \"%s\"."), feature->name);
5044       return;
5045     }
5046
5047   remote_protocol_packets[feature->packet].support = support;
5048 }
5049
5050 void
5051 remote_target::remote_packet_size (const protocol_feature *feature,
5052                                    enum packet_support support, const char *value)
5053 {
5054   struct remote_state *rs = get_remote_state ();
5055
5056   int packet_size;
5057   char *value_end;
5058
5059   if (support != PACKET_ENABLE)
5060     return;
5061
5062   if (value == NULL || *value == '\0')
5063     {
5064       warning (_("Remote target reported \"%s\" without a size."),
5065                feature->name);
5066       return;
5067     }
5068
5069   errno = 0;
5070   packet_size = strtol (value, &value_end, 16);
5071   if (errno != 0 || *value_end != '\0' || packet_size < 0)
5072     {
5073       warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5074                feature->name, value);
5075       return;
5076     }
5077
5078   /* Record the new maximum packet size.  */
5079   rs->explicit_packet_size = packet_size;
5080 }
5081
5082 void
5083 remote_packet_size (remote_target *remote, const protocol_feature *feature,
5084                     enum packet_support support, const char *value)
5085 {
5086   remote->remote_packet_size (feature, support, value);
5087 }
5088
5089 static const struct protocol_feature remote_protocol_features[] = {
5090   { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
5091   { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
5092     PACKET_qXfer_auxv },
5093   { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5094     PACKET_qXfer_exec_file },
5095   { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5096     PACKET_qXfer_features },
5097   { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5098     PACKET_qXfer_libraries },
5099   { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5100     PACKET_qXfer_libraries_svr4 },
5101   { "augmented-libraries-svr4-read", PACKET_DISABLE,
5102     remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
5103   { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
5104     PACKET_qXfer_memory_map },
5105   { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
5106     PACKET_qXfer_spu_read },
5107   { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
5108     PACKET_qXfer_spu_write },
5109   { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5110     PACKET_qXfer_osdata },
5111   { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5112     PACKET_qXfer_threads },
5113   { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5114     PACKET_qXfer_traceframe_info },
5115   { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5116     PACKET_QPassSignals },
5117   { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5118     PACKET_QCatchSyscalls },
5119   { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5120     PACKET_QProgramSignals },
5121   { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5122     PACKET_QSetWorkingDir },
5123   { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5124     PACKET_QStartupWithShell },
5125   { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5126     PACKET_QEnvironmentHexEncoded },
5127   { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5128     PACKET_QEnvironmentReset },
5129   { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5130     PACKET_QEnvironmentUnset },
5131   { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5132     PACKET_QStartNoAckMode },
5133   { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5134     PACKET_multiprocess_feature },
5135   { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
5136   { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5137     PACKET_qXfer_siginfo_read },
5138   { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5139     PACKET_qXfer_siginfo_write },
5140   { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
5141     PACKET_ConditionalTracepoints },
5142   { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
5143     PACKET_ConditionalBreakpoints },
5144   { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
5145     PACKET_BreakpointCommands },
5146   { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
5147     PACKET_FastTracepoints },
5148   { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
5149     PACKET_StaticTracepoints },
5150   {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
5151    PACKET_InstallInTrace},
5152   { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5153     PACKET_DisconnectedTracing_feature },
5154   { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5155     PACKET_bc },
5156   { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5157     PACKET_bs },
5158   { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5159     PACKET_TracepointSource },
5160   { "QAllow", PACKET_DISABLE, remote_supported_packet,
5161     PACKET_QAllow },
5162   { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5163     PACKET_EnableDisableTracepoints_feature },
5164   { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5165     PACKET_qXfer_fdpic },
5166   { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5167     PACKET_qXfer_uib },
5168   { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5169     PACKET_QDisableRandomization },
5170   { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
5171   { "QTBuffer:size", PACKET_DISABLE,
5172     remote_supported_packet, PACKET_QTBuffer_size},
5173   { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
5174   { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5175   { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
5176   { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
5177   { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
5178     PACKET_qXfer_btrace },
5179   { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
5180     PACKET_qXfer_btrace_conf },
5181   { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
5182     PACKET_Qbtrace_conf_bts_size },
5183   { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
5184   { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
5185   { "fork-events", PACKET_DISABLE, remote_supported_packet,
5186     PACKET_fork_event_feature },
5187   { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5188     PACKET_vfork_event_feature },
5189   { "exec-events", PACKET_DISABLE, remote_supported_packet,
5190     PACKET_exec_event_feature },
5191   { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
5192     PACKET_Qbtrace_conf_pt_size },
5193   { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5194   { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
5195   { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
5196 };
5197
5198 static char *remote_support_xml;
5199
5200 /* Register string appended to "xmlRegisters=" in qSupported query.  */
5201
5202 void
5203 register_remote_support_xml (const char *xml)
5204 {
5205 #if defined(HAVE_LIBEXPAT)
5206   if (remote_support_xml == NULL)
5207     remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
5208   else
5209     {
5210       char *copy = xstrdup (remote_support_xml + 13);
5211       char *p = strtok (copy, ",");
5212
5213       do
5214         {
5215           if (strcmp (p, xml) == 0)
5216             {
5217               /* already there */
5218               xfree (copy);
5219               return;
5220             }
5221         }
5222       while ((p = strtok (NULL, ",")) != NULL);
5223       xfree (copy);
5224
5225       remote_support_xml = reconcat (remote_support_xml,
5226                                      remote_support_xml, ",", xml,
5227                                      (char *) NULL);
5228     }
5229 #endif
5230 }
5231
5232 static void
5233 remote_query_supported_append (std::string *msg, const char *append)
5234 {
5235   if (!msg->empty ())
5236     msg->append (";");
5237   msg->append (append);
5238 }
5239
5240 void
5241 remote_target::remote_query_supported ()
5242 {
5243   struct remote_state *rs = get_remote_state ();
5244   char *next;
5245   int i;
5246   unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5247
5248   /* The packet support flags are handled differently for this packet
5249      than for most others.  We treat an error, a disabled packet, and
5250      an empty response identically: any features which must be reported
5251      to be used will be automatically disabled.  An empty buffer
5252      accomplishes this, since that is also the representation for a list
5253      containing no features.  */
5254
5255   rs->buf[0] = 0;
5256   if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
5257     {
5258       std::string q;
5259
5260       if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
5261         remote_query_supported_append (&q, "multiprocess+");
5262
5263       if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
5264         remote_query_supported_append (&q, "swbreak+");
5265       if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
5266         remote_query_supported_append (&q, "hwbreak+");
5267
5268       remote_query_supported_append (&q, "qRelocInsn+");
5269
5270       if (packet_set_cmd_state (PACKET_fork_event_feature)
5271           != AUTO_BOOLEAN_FALSE)
5272         remote_query_supported_append (&q, "fork-events+");
5273       if (packet_set_cmd_state (PACKET_vfork_event_feature)
5274           != AUTO_BOOLEAN_FALSE)
5275         remote_query_supported_append (&q, "vfork-events+");
5276       if (packet_set_cmd_state (PACKET_exec_event_feature)
5277           != AUTO_BOOLEAN_FALSE)
5278         remote_query_supported_append (&q, "exec-events+");
5279
5280       if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
5281         remote_query_supported_append (&q, "vContSupported+");
5282
5283       if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
5284         remote_query_supported_append (&q, "QThreadEvents+");
5285
5286       if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
5287         remote_query_supported_append (&q, "no-resumed+");
5288
5289       /* Keep this one last to work around a gdbserver <= 7.10 bug in
5290          the qSupported:xmlRegisters=i386 handling.  */
5291       if (remote_support_xml != NULL
5292           && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
5293         remote_query_supported_append (&q, remote_support_xml);
5294
5295       q = "qSupported:" + q;
5296       putpkt (q.c_str ());
5297
5298       getpkt (&rs->buf, 0);
5299
5300       /* If an error occured, warn, but do not return - just reset the
5301          buffer to empty and go on to disable features.  */
5302       if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5303           == PACKET_ERROR)
5304         {
5305           warning (_("Remote failure reply: %s"), rs->buf.data ());
5306           rs->buf[0] = 0;
5307         }
5308     }
5309
5310   memset (seen, 0, sizeof (seen));
5311
5312   next = rs->buf.data ();
5313   while (*next)
5314     {
5315       enum packet_support is_supported;
5316       char *p, *end, *name_end, *value;
5317
5318       /* First separate out this item from the rest of the packet.  If
5319          there's another item after this, we overwrite the separator
5320          (terminated strings are much easier to work with).  */
5321       p = next;
5322       end = strchr (p, ';');
5323       if (end == NULL)
5324         {
5325           end = p + strlen (p);
5326           next = end;
5327         }
5328       else
5329         {
5330           *end = '\0';
5331           next = end + 1;
5332
5333           if (end == p)
5334             {
5335               warning (_("empty item in \"qSupported\" response"));
5336               continue;
5337             }
5338         }
5339
5340       name_end = strchr (p, '=');
5341       if (name_end)
5342         {
5343           /* This is a name=value entry.  */
5344           is_supported = PACKET_ENABLE;
5345           value = name_end + 1;
5346           *name_end = '\0';
5347         }
5348       else
5349         {
5350           value = NULL;
5351           switch (end[-1])
5352             {
5353             case '+':
5354               is_supported = PACKET_ENABLE;
5355               break;
5356
5357             case '-':
5358               is_supported = PACKET_DISABLE;
5359               break;
5360
5361             case '?':
5362               is_supported = PACKET_SUPPORT_UNKNOWN;
5363               break;
5364
5365             default:
5366               warning (_("unrecognized item \"%s\" "
5367                          "in \"qSupported\" response"), p);
5368               continue;
5369             }
5370           end[-1] = '\0';
5371         }
5372
5373       for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5374         if (strcmp (remote_protocol_features[i].name, p) == 0)
5375           {
5376             const struct protocol_feature *feature;
5377
5378             seen[i] = 1;
5379             feature = &remote_protocol_features[i];
5380             feature->func (this, feature, is_supported, value);
5381             break;
5382           }
5383     }
5384
5385   /* If we increased the packet size, make sure to increase the global
5386      buffer size also.  We delay this until after parsing the entire
5387      qSupported packet, because this is the same buffer we were
5388      parsing.  */
5389   if (rs->buf.size () < rs->explicit_packet_size)
5390     rs->buf.resize (rs->explicit_packet_size);
5391
5392   /* Handle the defaults for unmentioned features.  */
5393   for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5394     if (!seen[i])
5395       {
5396         const struct protocol_feature *feature;
5397
5398         feature = &remote_protocol_features[i];
5399         feature->func (this, feature, feature->default_support, NULL);
5400       }
5401 }
5402
5403 /* Serial QUIT handler for the remote serial descriptor.
5404
5405    Defers handling a Ctrl-C until we're done with the current
5406    command/response packet sequence, unless:
5407
5408    - We're setting up the connection.  Don't send a remote interrupt
5409      request, as we're not fully synced yet.  Quit immediately
5410      instead.
5411
5412    - The target has been resumed in the foreground
5413      (target_terminal::is_ours is false) with a synchronous resume
5414      packet, and we're blocked waiting for the stop reply, thus a
5415      Ctrl-C should be immediately sent to the target.
5416
5417    - We get a second Ctrl-C while still within the same serial read or
5418      write.  In that case the serial is seemingly wedged --- offer to
5419      quit/disconnect.
5420
5421    - We see a second Ctrl-C without target response, after having
5422      previously interrupted the target.  In that case the target/stub
5423      is probably wedged --- offer to quit/disconnect.
5424 */
5425
5426 void
5427 remote_target::remote_serial_quit_handler ()
5428 {
5429   struct remote_state *rs = get_remote_state ();
5430
5431   if (check_quit_flag ())
5432     {
5433       /* If we're starting up, we're not fully synced yet.  Quit
5434          immediately.  */
5435       if (rs->starting_up)
5436         quit ();
5437       else if (rs->got_ctrlc_during_io)
5438         {
5439           if (query (_("The target is not responding to GDB commands.\n"
5440                        "Stop debugging it? ")))
5441             remote_unpush_and_throw ();
5442         }
5443       /* If ^C has already been sent once, offer to disconnect.  */
5444       else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
5445         interrupt_query ();
5446       /* All-stop protocol, and blocked waiting for stop reply.  Send
5447          an interrupt request.  */
5448       else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
5449         target_interrupt ();
5450       else
5451         rs->got_ctrlc_during_io = 1;
5452     }
5453 }
5454
5455 /* The remote_target that is current while the quit handler is
5456    overridden with remote_serial_quit_handler.  */
5457 static remote_target *curr_quit_handler_target;
5458
5459 static void
5460 remote_serial_quit_handler ()
5461 {
5462   curr_quit_handler_target->remote_serial_quit_handler ();
5463 }
5464
5465 /* Remove any of the remote.c targets from target stack.  Upper targets depend
5466    on it so remove them first.  */
5467
5468 static void
5469 remote_unpush_target (void)
5470 {
5471   pop_all_targets_at_and_above (process_stratum);
5472 }
5473
5474 static void
5475 remote_unpush_and_throw (void)
5476 {
5477   remote_unpush_target ();
5478   throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5479 }
5480
5481 void
5482 remote_target::open_1 (const char *name, int from_tty, int extended_p)
5483 {
5484   remote_target *curr_remote = get_current_remote_target ();
5485
5486   if (name == 0)
5487     error (_("To open a remote debug connection, you need to specify what\n"
5488            "serial device is attached to the remote system\n"
5489            "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
5490
5491   /* If we're connected to a running target, target_preopen will kill it.
5492      Ask this question first, before target_preopen has a chance to kill
5493      anything.  */
5494   if (curr_remote != NULL && !have_inferiors ())
5495     {
5496       if (from_tty
5497           && !query (_("Already connected to a remote target.  Disconnect? ")))
5498         error (_("Still connected."));
5499     }
5500
5501   /* Here the possibly existing remote target gets unpushed.  */
5502   target_preopen (from_tty);
5503
5504   remote_fileio_reset ();
5505   reopen_exec_file ();
5506   reread_symbols ();
5507
5508   remote_target *remote
5509     = (extended_p ? new extended_remote_target () : new remote_target ());
5510   target_ops_up target_holder (remote);
5511
5512   remote_state *rs = remote->get_remote_state ();
5513
5514   /* See FIXME above.  */
5515   if (!target_async_permitted)
5516     rs->wait_forever_enabled_p = 1;
5517
5518   rs->remote_desc = remote_serial_open (name);
5519   if (!rs->remote_desc)
5520     perror_with_name (name);
5521
5522   if (baud_rate != -1)
5523     {
5524       if (serial_setbaudrate (rs->remote_desc, baud_rate))
5525         {
5526           /* The requested speed could not be set.  Error out to
5527              top level after closing remote_desc.  Take care to
5528              set remote_desc to NULL to avoid closing remote_desc
5529              more than once.  */
5530           serial_close (rs->remote_desc);
5531           rs->remote_desc = NULL;
5532           perror_with_name (name);
5533         }
5534     }
5535
5536   serial_setparity (rs->remote_desc, serial_parity);
5537   serial_raw (rs->remote_desc);
5538
5539   /* If there is something sitting in the buffer we might take it as a
5540      response to a command, which would be bad.  */
5541   serial_flush_input (rs->remote_desc);
5542
5543   if (from_tty)
5544     {
5545       puts_filtered ("Remote debugging using ");
5546       puts_filtered (name);
5547       puts_filtered ("\n");
5548     }
5549
5550   /* Switch to using the remote target now.  */
5551   push_target (remote);
5552   /* The target stack owns the target now.  */
5553   target_holder.release ();
5554
5555   /* Register extra event sources in the event loop.  */
5556   rs->remote_async_inferior_event_token
5557     = create_async_event_handler (remote_async_inferior_event_handler,
5558                                   remote);
5559   rs->notif_state = remote_notif_state_allocate (remote);
5560
5561   /* Reset the target state; these things will be queried either by
5562      remote_query_supported or as they are needed.  */
5563   reset_all_packet_configs_support ();
5564   rs->cached_wait_status = 0;
5565   rs->explicit_packet_size = 0;
5566   rs->noack_mode = 0;
5567   rs->extended = extended_p;
5568   rs->waiting_for_stop_reply = 0;
5569   rs->ctrlc_pending_p = 0;
5570   rs->got_ctrlc_during_io = 0;
5571
5572   rs->general_thread = not_sent_ptid;
5573   rs->continue_thread = not_sent_ptid;
5574   rs->remote_traceframe_number = -1;
5575
5576   rs->last_resume_exec_dir = EXEC_FORWARD;
5577
5578   /* Probe for ability to use "ThreadInfo" query, as required.  */
5579   rs->use_threadinfo_query = 1;
5580   rs->use_threadextra_query = 1;
5581
5582   rs->readahead_cache.invalidate ();
5583
5584   if (target_async_permitted)
5585     {
5586       /* FIXME: cagney/1999-09-23: During the initial connection it is
5587          assumed that the target is already ready and able to respond to
5588          requests.  Unfortunately remote_start_remote() eventually calls
5589          wait_for_inferior() with no timeout.  wait_forever_enabled_p gets
5590          around this.  Eventually a mechanism that allows
5591          wait_for_inferior() to expect/get timeouts will be
5592          implemented.  */
5593       rs->wait_forever_enabled_p = 0;
5594     }
5595
5596   /* First delete any symbols previously loaded from shared libraries.  */
5597   no_shared_libraries (NULL, 0);
5598
5599   /* Start the remote connection.  If error() or QUIT, discard this
5600      target (we'd otherwise be in an inconsistent state) and then
5601      propogate the error on up the exception chain.  This ensures that
5602      the caller doesn't stumble along blindly assuming that the
5603      function succeeded.  The CLI doesn't have this problem but other
5604      UI's, such as MI do.
5605
5606      FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5607      this function should return an error indication letting the
5608      caller restore the previous state.  Unfortunately the command
5609      ``target remote'' is directly wired to this function making that
5610      impossible.  On a positive note, the CLI side of this problem has
5611      been fixed - the function set_cmd_context() makes it possible for
5612      all the ``target ....'' commands to share a common callback
5613      function.  See cli-dump.c.  */
5614   {
5615
5616     TRY
5617       {
5618         remote->start_remote (from_tty, extended_p);
5619       }
5620     CATCH (ex, RETURN_MASK_ALL)
5621       {
5622         /* Pop the partially set up target - unless something else did
5623            already before throwing the exception.  */
5624         if (ex.error != TARGET_CLOSE_ERROR)
5625           remote_unpush_target ();
5626         throw_exception (ex);
5627       }
5628     END_CATCH
5629   }
5630
5631   remote_btrace_reset (rs);
5632
5633   if (target_async_permitted)
5634     rs->wait_forever_enabled_p = 1;
5635 }
5636
5637 /* Detach the specified process.  */
5638
5639 void
5640 remote_target::remote_detach_pid (int pid)
5641 {
5642   struct remote_state *rs = get_remote_state ();
5643
5644   /* This should not be necessary, but the handling for D;PID in
5645      GDBserver versions prior to 8.2 incorrectly assumes that the
5646      selected process points to the same process we're detaching,
5647      leading to misbehavior (and possibly GDBserver crashing) when it
5648      does not.  Since it's easy and cheap, work around it by forcing
5649      GDBserver to select GDB's current process.  */
5650   set_general_process ();
5651
5652   if (remote_multi_process_p (rs))
5653     xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
5654   else
5655     strcpy (rs->buf.data (), "D");
5656
5657   putpkt (rs->buf);
5658   getpkt (&rs->buf, 0);
5659
5660   if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5661     ;
5662   else if (rs->buf[0] == '\0')
5663     error (_("Remote doesn't know how to detach"));
5664   else
5665     error (_("Can't detach process."));
5666 }
5667
5668 /* This detaches a program to which we previously attached, using
5669    inferior_ptid to identify the process.  After this is done, GDB
5670    can be used to debug some other program.  We better not have left
5671    any breakpoints in the target program or it'll die when it hits
5672    one.  */
5673
5674 void
5675 remote_target::remote_detach_1 (inferior *inf, int from_tty)
5676 {
5677   int pid = inferior_ptid.pid ();
5678   struct remote_state *rs = get_remote_state ();
5679   int is_fork_parent;
5680
5681   if (!target_has_execution)
5682     error (_("No process to detach from."));
5683
5684   target_announce_detach (from_tty);
5685
5686   /* Tell the remote target to detach.  */
5687   remote_detach_pid (pid);
5688
5689   /* Exit only if this is the only active inferior.  */
5690   if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
5691     puts_filtered (_("Ending remote debugging.\n"));
5692
5693   struct thread_info *tp = find_thread_ptid (inferior_ptid);
5694
5695   /* Check to see if we are detaching a fork parent.  Note that if we
5696      are detaching a fork child, tp == NULL.  */
5697   is_fork_parent = (tp != NULL
5698                     && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5699
5700   /* If doing detach-on-fork, we don't mourn, because that will delete
5701      breakpoints that should be available for the followed inferior.  */
5702   if (!is_fork_parent)
5703     {
5704       /* Save the pid as a string before mourning, since that will
5705          unpush the remote target, and we need the string after.  */
5706       std::string infpid = target_pid_to_str (ptid_t (pid));
5707
5708       target_mourn_inferior (inferior_ptid);
5709       if (print_inferior_events)
5710         printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5711                            inf->num, infpid.c_str ());
5712     }
5713   else
5714     {
5715       inferior_ptid = null_ptid;
5716       detach_inferior (current_inferior ());
5717     }
5718 }
5719
5720 void
5721 remote_target::detach (inferior *inf, int from_tty)
5722 {
5723   remote_detach_1 (inf, from_tty);
5724 }
5725
5726 void
5727 extended_remote_target::detach (inferior *inf, int from_tty)
5728 {
5729   remote_detach_1 (inf, from_tty);
5730 }
5731
5732 /* Target follow-fork function for remote targets.  On entry, and
5733    at return, the current inferior is the fork parent.
5734
5735    Note that although this is currently only used for extended-remote,
5736    it is named remote_follow_fork in anticipation of using it for the
5737    remote target as well.  */
5738
5739 int
5740 remote_target::follow_fork (int follow_child, int detach_fork)
5741 {
5742   struct remote_state *rs = get_remote_state ();
5743   enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
5744
5745   if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5746       || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
5747     {
5748       /* When following the parent and detaching the child, we detach
5749          the child here.  For the case of following the child and
5750          detaching the parent, the detach is done in the target-
5751          independent follow fork code in infrun.c.  We can't use
5752          target_detach when detaching an unfollowed child because
5753          the client side doesn't know anything about the child.  */
5754       if (detach_fork && !follow_child)
5755         {
5756           /* Detach the fork child.  */
5757           ptid_t child_ptid;
5758           pid_t child_pid;
5759
5760           child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5761           child_pid = child_ptid.pid ();
5762
5763           remote_detach_pid (child_pid);
5764         }
5765     }
5766   return 0;
5767 }
5768
5769 /* Target follow-exec function for remote targets.  Save EXECD_PATHNAME
5770    in the program space of the new inferior.  On entry and at return the
5771    current inferior is the exec'ing inferior.  INF is the new exec'd
5772    inferior, which may be the same as the exec'ing inferior unless
5773    follow-exec-mode is "new".  */
5774
5775 void
5776 remote_target::follow_exec (struct inferior *inf, char *execd_pathname)
5777 {
5778   /* We know that this is a target file name, so if it has the "target:"
5779      prefix we strip it off before saving it in the program space.  */
5780   if (is_target_filename (execd_pathname))
5781     execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5782
5783   set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5784 }
5785
5786 /* Same as remote_detach, but don't send the "D" packet; just disconnect.  */
5787
5788 void
5789 remote_target::disconnect (const char *args, int from_tty)
5790 {
5791   if (args)
5792     error (_("Argument given to \"disconnect\" when remotely debugging."));
5793
5794   /* Make sure we unpush even the extended remote targets.  Calling
5795      target_mourn_inferior won't unpush, and remote_mourn won't
5796      unpush if there is more than one inferior left.  */
5797   unpush_target (this);
5798   generic_mourn_inferior ();
5799
5800   if (from_tty)
5801     puts_filtered ("Ending remote debugging.\n");
5802 }
5803
5804 /* Attach to the process specified by ARGS.  If FROM_TTY is non-zero,
5805    be chatty about it.  */
5806
5807 void
5808 extended_remote_target::attach (const char *args, int from_tty)
5809 {
5810   struct remote_state *rs = get_remote_state ();
5811   int pid;
5812   char *wait_status = NULL;
5813
5814   pid = parse_pid_to_attach (args);
5815
5816   /* Remote PID can be freely equal to getpid, do not check it here the same
5817      way as in other targets.  */
5818
5819   if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
5820     error (_("This target does not support attaching to a process"));
5821
5822   if (from_tty)
5823     {
5824       char *exec_file = get_exec_file (0);
5825
5826       if (exec_file)
5827         printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5828                            target_pid_to_str (ptid_t (pid)));
5829       else
5830         printf_unfiltered (_("Attaching to %s\n"),
5831                            target_pid_to_str (ptid_t (pid)));
5832
5833       gdb_flush (gdb_stdout);
5834     }
5835
5836   xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
5837   putpkt (rs->buf);
5838   getpkt (&rs->buf, 0);
5839
5840   switch (packet_ok (rs->buf,
5841                      &remote_protocol_packets[PACKET_vAttach]))
5842     {
5843     case PACKET_OK:
5844       if (!target_is_non_stop_p ())
5845         {
5846           /* Save the reply for later.  */
5847           wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5848           strcpy (wait_status, rs->buf.data ());
5849         }
5850       else if (strcmp (rs->buf.data (), "OK") != 0)
5851         error (_("Attaching to %s failed with: %s"),
5852                target_pid_to_str (ptid_t (pid)),
5853                rs->buf.data ());
5854       break;
5855     case PACKET_UNKNOWN:
5856       error (_("This target does not support attaching to a process"));
5857     default:
5858       error (_("Attaching to %s failed"),
5859              target_pid_to_str (ptid_t (pid)));
5860     }
5861
5862   set_current_inferior (remote_add_inferior (0, pid, 1, 0));
5863
5864   inferior_ptid = ptid_t (pid);
5865
5866   if (target_is_non_stop_p ())
5867     {
5868       struct thread_info *thread;
5869
5870       /* Get list of threads.  */
5871       update_thread_list ();
5872
5873       thread = first_thread_of_inferior (current_inferior ());
5874       if (thread)
5875         inferior_ptid = thread->ptid;
5876       else
5877         inferior_ptid = ptid_t (pid);
5878
5879       /* Invalidate our notion of the remote current thread.  */
5880       record_currthread (rs, minus_one_ptid);
5881     }
5882   else
5883     {
5884       /* Now, if we have thread information, update inferior_ptid.  */
5885       inferior_ptid = remote_current_thread (inferior_ptid);
5886
5887       /* Add the main thread to the thread list.  */
5888       thread_info *thr = add_thread_silent (inferior_ptid);
5889       /* Don't consider the thread stopped until we've processed the
5890          saved stop reply.  */
5891       set_executing (thr->ptid, true);
5892     }
5893
5894   /* Next, if the target can specify a description, read it.  We do
5895      this before anything involving memory or registers.  */
5896   target_find_description ();
5897
5898   if (!target_is_non_stop_p ())
5899     {
5900       /* Use the previously fetched status.  */
5901       gdb_assert (wait_status != NULL);
5902
5903       if (target_can_async_p ())
5904         {
5905           struct notif_event *reply
5906             =  remote_notif_parse (this, &notif_client_stop, wait_status);
5907
5908           push_stop_reply ((struct stop_reply *) reply);
5909
5910           target_async (1);
5911         }
5912       else
5913         {
5914           gdb_assert (wait_status != NULL);
5915           strcpy (rs->buf.data (), wait_status);
5916           rs->cached_wait_status = 1;
5917         }
5918     }
5919   else
5920     gdb_assert (wait_status == NULL);
5921 }
5922
5923 /* Implementation of the to_post_attach method.  */
5924
5925 void
5926 extended_remote_target::post_attach (int pid)
5927 {
5928   /* Get text, data & bss offsets.  */
5929   get_offsets ();
5930
5931   /* In certain cases GDB might not have had the chance to start
5932      symbol lookup up until now.  This could happen if the debugged
5933      binary is not using shared libraries, the vsyscall page is not
5934      present (on Linux) and the binary itself hadn't changed since the
5935      debugging process was started.  */
5936   if (symfile_objfile != NULL)
5937     remote_check_symbols();
5938 }
5939
5940 \f
5941 /* Check for the availability of vCont.  This function should also check
5942    the response.  */
5943
5944 void
5945 remote_target::remote_vcont_probe ()
5946 {
5947   remote_state *rs = get_remote_state ();
5948   char *buf;
5949
5950   strcpy (rs->buf.data (), "vCont?");
5951   putpkt (rs->buf);
5952   getpkt (&rs->buf, 0);
5953   buf = rs->buf.data ();
5954
5955   /* Make sure that the features we assume are supported.  */
5956   if (startswith (buf, "vCont"))
5957     {
5958       char *p = &buf[5];
5959       int support_c, support_C;
5960
5961       rs->supports_vCont.s = 0;
5962       rs->supports_vCont.S = 0;
5963       support_c = 0;
5964       support_C = 0;
5965       rs->supports_vCont.t = 0;
5966       rs->supports_vCont.r = 0;
5967       while (p && *p == ';')
5968         {
5969           p++;
5970           if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
5971             rs->supports_vCont.s = 1;
5972           else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
5973             rs->supports_vCont.S = 1;
5974           else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5975             support_c = 1;
5976           else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5977             support_C = 1;
5978           else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
5979             rs->supports_vCont.t = 1;
5980           else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5981             rs->supports_vCont.r = 1;
5982
5983           p = strchr (p, ';');
5984         }
5985
5986       /* If c, and C are not all supported, we can't use vCont.  Clearing
5987          BUF will make packet_ok disable the packet.  */
5988       if (!support_c || !support_C)
5989         buf[0] = 0;
5990     }
5991
5992   packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
5993 }
5994
5995 /* Helper function for building "vCont" resumptions.  Write a
5996    resumption to P.  ENDP points to one-passed-the-end of the buffer
5997    we're allowed to write to.  Returns BUF+CHARACTERS_WRITTEN.  The
5998    thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5999    resumed thread should be single-stepped and/or signalled.  If PTID
6000    equals minus_one_ptid, then all threads are resumed; if PTID
6001    represents a process, then all threads of the process are resumed;
6002    the thread to be stepped and/or signalled is given in the global
6003    INFERIOR_PTID.  */
6004
6005 char *
6006 remote_target::append_resumption (char *p, char *endp,
6007                                   ptid_t ptid, int step, gdb_signal siggnal)
6008 {
6009   struct remote_state *rs = get_remote_state ();
6010
6011   if (step && siggnal != GDB_SIGNAL_0)
6012     p += xsnprintf (p, endp - p, ";S%02x", siggnal);
6013   else if (step
6014            /* GDB is willing to range step.  */
6015            && use_range_stepping
6016            /* Target supports range stepping.  */
6017            && rs->supports_vCont.r
6018            /* We don't currently support range stepping multiple
6019               threads with a wildcard (though the protocol allows it,
6020               so stubs shouldn't make an active effort to forbid
6021               it).  */
6022            && !(remote_multi_process_p (rs) && ptid.is_pid ()))
6023     {
6024       struct thread_info *tp;
6025
6026       if (ptid == minus_one_ptid)
6027         {
6028           /* If we don't know about the target thread's tid, then
6029              we're resuming magic_null_ptid (see caller).  */
6030           tp = find_thread_ptid (magic_null_ptid);
6031         }
6032       else
6033         tp = find_thread_ptid (ptid);
6034       gdb_assert (tp != NULL);
6035
6036       if (tp->control.may_range_step)
6037         {
6038           int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6039
6040           p += xsnprintf (p, endp - p, ";r%s,%s",
6041                           phex_nz (tp->control.step_range_start,
6042                                    addr_size),
6043                           phex_nz (tp->control.step_range_end,
6044                                    addr_size));
6045         }
6046       else
6047         p += xsnprintf (p, endp - p, ";s");
6048     }
6049   else if (step)
6050     p += xsnprintf (p, endp - p, ";s");
6051   else if (siggnal != GDB_SIGNAL_0)
6052     p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6053   else
6054     p += xsnprintf (p, endp - p, ";c");
6055
6056   if (remote_multi_process_p (rs) && ptid.is_pid ())
6057     {
6058       ptid_t nptid;
6059
6060       /* All (-1) threads of process.  */
6061       nptid = ptid_t (ptid.pid (), -1, 0);
6062
6063       p += xsnprintf (p, endp - p, ":");
6064       p = write_ptid (p, endp, nptid);
6065     }
6066   else if (ptid != minus_one_ptid)
6067     {
6068       p += xsnprintf (p, endp - p, ":");
6069       p = write_ptid (p, endp, ptid);
6070     }
6071
6072   return p;
6073 }
6074
6075 /* Clear the thread's private info on resume.  */
6076
6077 static void
6078 resume_clear_thread_private_info (struct thread_info *thread)
6079 {
6080   if (thread->priv != NULL)
6081     {
6082       remote_thread_info *priv = get_remote_thread_info (thread);
6083
6084       priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6085       priv->watch_data_address = 0;
6086     }
6087 }
6088
6089 /* Append a vCont continue-with-signal action for threads that have a
6090    non-zero stop signal.  */
6091
6092 char *
6093 remote_target::append_pending_thread_resumptions (char *p, char *endp,
6094                                                   ptid_t ptid)
6095 {
6096   for (thread_info *thread : all_non_exited_threads (ptid))
6097     if (inferior_ptid != thread->ptid
6098         && thread->suspend.stop_signal != GDB_SIGNAL_0)
6099       {
6100         p = append_resumption (p, endp, thread->ptid,
6101                                0, thread->suspend.stop_signal);
6102         thread->suspend.stop_signal = GDB_SIGNAL_0;
6103         resume_clear_thread_private_info (thread);
6104       }
6105
6106   return p;
6107 }
6108
6109 /* Set the target running, using the packets that use Hc
6110    (c/s/C/S).  */
6111
6112 void
6113 remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6114                                       gdb_signal siggnal)
6115 {
6116   struct remote_state *rs = get_remote_state ();
6117   char *buf;
6118
6119   rs->last_sent_signal = siggnal;
6120   rs->last_sent_step = step;
6121
6122   /* The c/s/C/S resume packets use Hc, so set the continue
6123      thread.  */
6124   if (ptid == minus_one_ptid)
6125     set_continue_thread (any_thread_ptid);
6126   else
6127     set_continue_thread (ptid);
6128
6129   for (thread_info *thread : all_non_exited_threads ())
6130     resume_clear_thread_private_info (thread);
6131
6132   buf = rs->buf.data ();
6133   if (::execution_direction == EXEC_REVERSE)
6134     {
6135       /* We don't pass signals to the target in reverse exec mode.  */
6136       if (info_verbose && siggnal != GDB_SIGNAL_0)
6137         warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6138                  siggnal);
6139
6140       if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6141         error (_("Remote reverse-step not supported."));
6142       if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6143         error (_("Remote reverse-continue not supported."));
6144
6145       strcpy (buf, step ? "bs" : "bc");
6146     }
6147   else if (siggnal != GDB_SIGNAL_0)
6148     {
6149       buf[0] = step ? 'S' : 'C';
6150       buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6151       buf[2] = tohex (((int) siggnal) & 0xf);
6152       buf[3] = '\0';
6153     }
6154   else
6155     strcpy (buf, step ? "s" : "c");
6156
6157   putpkt (buf);
6158 }
6159
6160 /* Resume the remote inferior by using a "vCont" packet.  The thread
6161    to be resumed is PTID; STEP and SIGGNAL indicate whether the
6162    resumed thread should be single-stepped and/or signalled.  If PTID
6163    equals minus_one_ptid, then all threads are resumed; the thread to
6164    be stepped and/or signalled is given in the global INFERIOR_PTID.
6165    This function returns non-zero iff it resumes the inferior.
6166
6167    This function issues a strict subset of all possible vCont commands
6168    at the moment.  */
6169
6170 int
6171 remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6172                                          enum gdb_signal siggnal)
6173 {
6174   struct remote_state *rs = get_remote_state ();
6175   char *p;
6176   char *endp;
6177
6178   /* No reverse execution actions defined for vCont.  */
6179   if (::execution_direction == EXEC_REVERSE)
6180     return 0;
6181
6182   if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6183     remote_vcont_probe ();
6184
6185   if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6186     return 0;
6187
6188   p = rs->buf.data ();
6189   endp = p + get_remote_packet_size ();
6190
6191   /* If we could generate a wider range of packets, we'd have to worry
6192      about overflowing BUF.  Should there be a generic
6193      "multi-part-packet" packet?  */
6194
6195   p += xsnprintf (p, endp - p, "vCont");
6196
6197   if (ptid == magic_null_ptid)
6198     {
6199       /* MAGIC_NULL_PTID means that we don't have any active threads,
6200          so we don't have any TID numbers the inferior will
6201          understand.  Make sure to only send forms that do not specify
6202          a TID.  */
6203       append_resumption (p, endp, minus_one_ptid, step, siggnal);
6204     }
6205   else if (ptid == minus_one_ptid || ptid.is_pid ())
6206     {
6207       /* Resume all threads (of all processes, or of a single
6208          process), with preference for INFERIOR_PTID.  This assumes
6209          inferior_ptid belongs to the set of all threads we are about
6210          to resume.  */
6211       if (step || siggnal != GDB_SIGNAL_0)
6212         {
6213           /* Step inferior_ptid, with or without signal.  */
6214           p = append_resumption (p, endp, inferior_ptid, step, siggnal);
6215         }
6216
6217       /* Also pass down any pending signaled resumption for other
6218          threads not the current.  */
6219       p = append_pending_thread_resumptions (p, endp, ptid);
6220
6221       /* And continue others without a signal.  */
6222       append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
6223     }
6224   else
6225     {
6226       /* Scheduler locking; resume only PTID.  */
6227       append_resumption (p, endp, ptid, step, siggnal);
6228     }
6229
6230   gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
6231   putpkt (rs->buf);
6232
6233   if (target_is_non_stop_p ())
6234     {
6235       /* In non-stop, the stub replies to vCont with "OK".  The stop
6236          reply will be reported asynchronously by means of a `%Stop'
6237          notification.  */
6238       getpkt (&rs->buf, 0);
6239       if (strcmp (rs->buf.data (), "OK") != 0)
6240         error (_("Unexpected vCont reply in non-stop mode: %s"),
6241                rs->buf.data ());
6242     }
6243
6244   return 1;
6245 }
6246
6247 /* Tell the remote machine to resume.  */
6248
6249 void
6250 remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
6251 {
6252   struct remote_state *rs = get_remote_state ();
6253
6254   /* When connected in non-stop mode, the core resumes threads
6255      individually.  Resuming remote threads directly in target_resume
6256      would thus result in sending one packet per thread.  Instead, to
6257      minimize roundtrip latency, here we just store the resume
6258      request; the actual remote resumption will be done in
6259      target_commit_resume / remote_commit_resume, where we'll be able
6260      to do vCont action coalescing.  */
6261   if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
6262     {
6263       remote_thread_info *remote_thr;
6264
6265       if (minus_one_ptid == ptid || ptid.is_pid ())
6266         remote_thr = get_remote_thread_info (inferior_ptid);
6267       else
6268         remote_thr = get_remote_thread_info (ptid);
6269
6270       remote_thr->last_resume_step = step;
6271       remote_thr->last_resume_sig = siggnal;
6272       return;
6273     }
6274
6275   /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6276      (explained in remote-notif.c:handle_notification) so
6277      remote_notif_process is not called.  We need find a place where
6278      it is safe to start a 'vNotif' sequence.  It is good to do it
6279      before resuming inferior, because inferior was stopped and no RSP
6280      traffic at that moment.  */
6281   if (!target_is_non_stop_p ())
6282     remote_notif_process (rs->notif_state, &notif_client_stop);
6283
6284   rs->last_resume_exec_dir = ::execution_direction;
6285
6286   /* Prefer vCont, and fallback to s/c/S/C, which use Hc.  */
6287   if (!remote_resume_with_vcont (ptid, step, siggnal))
6288     remote_resume_with_hc (ptid, step, siggnal);
6289
6290   /* We are about to start executing the inferior, let's register it
6291      with the event loop.  NOTE: this is the one place where all the
6292      execution commands end up.  We could alternatively do this in each
6293      of the execution commands in infcmd.c.  */
6294   /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6295      into infcmd.c in order to allow inferior function calls to work
6296      NOT asynchronously.  */
6297   if (target_can_async_p ())
6298     target_async (1);
6299
6300   /* We've just told the target to resume.  The remote server will
6301      wait for the inferior to stop, and then send a stop reply.  In
6302      the mean time, we can't start another command/query ourselves
6303      because the stub wouldn't be ready to process it.  This applies
6304      only to the base all-stop protocol, however.  In non-stop (which
6305      only supports vCont), the stub replies with an "OK", and is
6306      immediate able to process further serial input.  */
6307   if (!target_is_non_stop_p ())
6308     rs->waiting_for_stop_reply = 1;
6309 }
6310
6311 static int is_pending_fork_parent_thread (struct thread_info *thread);
6312
6313 /* Private per-inferior info for target remote processes.  */
6314
6315 struct remote_inferior : public private_inferior
6316 {
6317   /* Whether we can send a wildcard vCont for this process.  */
6318   bool may_wildcard_vcont = true;
6319 };
6320
6321 /* Get the remote private inferior data associated to INF.  */
6322
6323 static remote_inferior *
6324 get_remote_inferior (inferior *inf)
6325 {
6326   if (inf->priv == NULL)
6327     inf->priv.reset (new remote_inferior);
6328
6329   return static_cast<remote_inferior *> (inf->priv.get ());
6330 }
6331
6332 /* Class used to track the construction of a vCont packet in the
6333    outgoing packet buffer.  This is used to send multiple vCont
6334    packets if we have more actions than would fit a single packet.  */
6335
6336 class vcont_builder
6337 {
6338 public:
6339   explicit vcont_builder (remote_target *remote)
6340     : m_remote (remote)
6341   {
6342     restart ();
6343   }
6344
6345   void flush ();
6346   void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6347
6348 private:
6349   void restart ();
6350
6351   /* The remote target.  */
6352   remote_target *m_remote;
6353
6354   /* Pointer to the first action.  P points here if no action has been
6355      appended yet.  */
6356   char *m_first_action;
6357
6358   /* Where the next action will be appended.  */
6359   char *m_p;
6360
6361   /* The end of the buffer.  Must never write past this.  */
6362   char *m_endp;
6363 };
6364
6365 /* Prepare the outgoing buffer for a new vCont packet.  */
6366
6367 void
6368 vcont_builder::restart ()
6369 {
6370   struct remote_state *rs = m_remote->get_remote_state ();
6371
6372   m_p = rs->buf.data ();
6373   m_endp = m_p + m_remote->get_remote_packet_size ();
6374   m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6375   m_first_action = m_p;
6376 }
6377
6378 /* If the vCont packet being built has any action, send it to the
6379    remote end.  */
6380
6381 void
6382 vcont_builder::flush ()
6383 {
6384   struct remote_state *rs;
6385
6386   if (m_p == m_first_action)
6387     return;
6388
6389   rs = m_remote->get_remote_state ();
6390   m_remote->putpkt (rs->buf);
6391   m_remote->getpkt (&rs->buf, 0);
6392   if (strcmp (rs->buf.data (), "OK") != 0)
6393     error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
6394 }
6395
6396 /* The largest action is range-stepping, with its two addresses.  This
6397    is more than sufficient.  If a new, bigger action is created, it'll
6398    quickly trigger a failed assertion in append_resumption (and we'll
6399    just bump this).  */
6400 #define MAX_ACTION_SIZE 200
6401
6402 /* Append a new vCont action in the outgoing packet being built.  If
6403    the action doesn't fit the packet along with previous actions, push
6404    what we've got so far to the remote end and start over a new vCont
6405    packet (with the new action).  */
6406
6407 void
6408 vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
6409 {
6410   char buf[MAX_ACTION_SIZE + 1];
6411
6412   char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6413                                             ptid, step, siggnal);
6414
6415   /* Check whether this new action would fit in the vCont packet along
6416      with previous actions.  If not, send what we've got so far and
6417      start a new vCont packet.  */
6418   size_t rsize = endp - buf;
6419   if (rsize > m_endp - m_p)
6420     {
6421       flush ();
6422       restart ();
6423
6424       /* Should now fit.  */
6425       gdb_assert (rsize <= m_endp - m_p);
6426     }
6427
6428   memcpy (m_p, buf, rsize);
6429   m_p += rsize;
6430   *m_p = '\0';
6431 }
6432
6433 /* to_commit_resume implementation.  */
6434
6435 void
6436 remote_target::commit_resume ()
6437 {
6438   int any_process_wildcard;
6439   int may_global_wildcard_vcont;
6440
6441   /* If connected in all-stop mode, we'd send the remote resume
6442      request directly from remote_resume.  Likewise if
6443      reverse-debugging, as there are no defined vCont actions for
6444      reverse execution.  */
6445   if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
6446     return;
6447
6448   /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6449      instead of resuming all threads of each process individually.
6450      However, if any thread of a process must remain halted, we can't
6451      send wildcard resumes and must send one action per thread.
6452
6453      Care must be taken to not resume threads/processes the server
6454      side already told us are stopped, but the core doesn't know about
6455      yet, because the events are still in the vStopped notification
6456      queue.  For example:
6457
6458        #1 => vCont s:p1.1;c
6459        #2 <= OK
6460        #3 <= %Stopped T05 p1.1
6461        #4 => vStopped
6462        #5 <= T05 p1.2
6463        #6 => vStopped
6464        #7 <= OK
6465        #8 (infrun handles the stop for p1.1 and continues stepping)
6466        #9 => vCont s:p1.1;c
6467
6468      The last vCont above would resume thread p1.2 by mistake, because
6469      the server has no idea that the event for p1.2 had not been
6470      handled yet.
6471
6472      The server side must similarly ignore resume actions for the
6473      thread that has a pending %Stopped notification (and any other
6474      threads with events pending), until GDB acks the notification
6475      with vStopped.  Otherwise, e.g., the following case is
6476      mishandled:
6477
6478        #1 => g  (or any other packet)
6479        #2 <= [registers]
6480        #3 <= %Stopped T05 p1.2
6481        #4 => vCont s:p1.1;c
6482        #5 <= OK
6483
6484      Above, the server must not resume thread p1.2.  GDB can't know
6485      that p1.2 stopped until it acks the %Stopped notification, and
6486      since from GDB's perspective all threads should be running, it
6487      sends a "c" action.
6488
6489      Finally, special care must also be given to handling fork/vfork
6490      events.  A (v)fork event actually tells us that two processes
6491      stopped -- the parent and the child.  Until we follow the fork,
6492      we must not resume the child.  Therefore, if we have a pending
6493      fork follow, we must not send a global wildcard resume action
6494      (vCont;c).  We can still send process-wide wildcards though.  */
6495
6496   /* Start by assuming a global wildcard (vCont;c) is possible.  */
6497   may_global_wildcard_vcont = 1;
6498
6499   /* And assume every process is individually wildcard-able too.  */
6500   for (inferior *inf : all_non_exited_inferiors ())
6501     {
6502       remote_inferior *priv = get_remote_inferior (inf);
6503
6504       priv->may_wildcard_vcont = true;
6505     }
6506
6507   /* Check for any pending events (not reported or processed yet) and
6508      disable process and global wildcard resumes appropriately.  */
6509   check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6510
6511   for (thread_info *tp : all_non_exited_threads ())
6512     {
6513       /* If a thread of a process is not meant to be resumed, then we
6514          can't wildcard that process.  */
6515       if (!tp->executing)
6516         {
6517           get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
6518
6519           /* And if we can't wildcard a process, we can't wildcard
6520              everything either.  */
6521           may_global_wildcard_vcont = 0;
6522           continue;
6523         }
6524
6525       /* If a thread is the parent of an unfollowed fork, then we
6526          can't do a global wildcard, as that would resume the fork
6527          child.  */
6528       if (is_pending_fork_parent_thread (tp))
6529         may_global_wildcard_vcont = 0;
6530     }
6531
6532   /* Now let's build the vCont packet(s).  Actions must be appended
6533      from narrower to wider scopes (thread -> process -> global).  If
6534      we end up with too many actions for a single packet vcont_builder
6535      flushes the current vCont packet to the remote side and starts a
6536      new one.  */
6537   struct vcont_builder vcont_builder (this);
6538
6539   /* Threads first.  */
6540   for (thread_info *tp : all_non_exited_threads ())
6541     {
6542       remote_thread_info *remote_thr = get_remote_thread_info (tp);
6543
6544       if (!tp->executing || remote_thr->vcont_resumed)
6545         continue;
6546
6547       gdb_assert (!thread_is_in_step_over_chain (tp));
6548
6549       if (!remote_thr->last_resume_step
6550           && remote_thr->last_resume_sig == GDB_SIGNAL_0
6551           && get_remote_inferior (tp->inf)->may_wildcard_vcont)
6552         {
6553           /* We'll send a wildcard resume instead.  */
6554           remote_thr->vcont_resumed = 1;
6555           continue;
6556         }
6557
6558       vcont_builder.push_action (tp->ptid,
6559                                  remote_thr->last_resume_step,
6560                                  remote_thr->last_resume_sig);
6561       remote_thr->vcont_resumed = 1;
6562     }
6563
6564   /* Now check whether we can send any process-wide wildcard.  This is
6565      to avoid sending a global wildcard in the case nothing is
6566      supposed to be resumed.  */
6567   any_process_wildcard = 0;
6568
6569   for (inferior *inf : all_non_exited_inferiors ())
6570     {
6571       if (get_remote_inferior (inf)->may_wildcard_vcont)
6572         {
6573           any_process_wildcard = 1;
6574           break;
6575         }
6576     }
6577
6578   if (any_process_wildcard)
6579     {
6580       /* If all processes are wildcard-able, then send a single "c"
6581          action, otherwise, send an "all (-1) threads of process"
6582          continue action for each running process, if any.  */
6583       if (may_global_wildcard_vcont)
6584         {
6585           vcont_builder.push_action (minus_one_ptid,
6586                                      false, GDB_SIGNAL_0);
6587         }
6588       else
6589         {
6590           for (inferior *inf : all_non_exited_inferiors ())
6591             {
6592               if (get_remote_inferior (inf)->may_wildcard_vcont)
6593                 {
6594                   vcont_builder.push_action (ptid_t (inf->pid),
6595                                              false, GDB_SIGNAL_0);
6596                 }
6597             }
6598         }
6599     }
6600
6601   vcont_builder.flush ();
6602 }
6603
6604 \f
6605
6606 /* Non-stop version of target_stop.  Uses `vCont;t' to stop a remote
6607    thread, all threads of a remote process, or all threads of all
6608    processes.  */
6609
6610 void
6611 remote_target::remote_stop_ns (ptid_t ptid)
6612 {
6613   struct remote_state *rs = get_remote_state ();
6614   char *p = rs->buf.data ();
6615   char *endp = p + get_remote_packet_size ();
6616
6617   if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6618     remote_vcont_probe ();
6619
6620   if (!rs->supports_vCont.t)
6621     error (_("Remote server does not support stopping threads"));
6622
6623   if (ptid == minus_one_ptid
6624       || (!remote_multi_process_p (rs) && ptid.is_pid ()))
6625     p += xsnprintf (p, endp - p, "vCont;t");
6626   else
6627     {
6628       ptid_t nptid;
6629
6630       p += xsnprintf (p, endp - p, "vCont;t:");
6631
6632       if (ptid.is_pid ())
6633           /* All (-1) threads of process.  */
6634         nptid = ptid_t (ptid.pid (), -1, 0);
6635       else
6636         {
6637           /* Small optimization: if we already have a stop reply for
6638              this thread, no use in telling the stub we want this
6639              stopped.  */
6640           if (peek_stop_reply (ptid))
6641             return;
6642
6643           nptid = ptid;
6644         }
6645
6646       write_ptid (p, endp, nptid);
6647     }
6648
6649   /* In non-stop, we get an immediate OK reply.  The stop reply will
6650      come in asynchronously by notification.  */
6651   putpkt (rs->buf);
6652   getpkt (&rs->buf, 0);
6653   if (strcmp (rs->buf.data (), "OK") != 0)
6654     error (_("Stopping %s failed: %s"), target_pid_to_str (ptid),
6655            rs->buf.data ());
6656 }
6657
6658 /* All-stop version of target_interrupt.  Sends a break or a ^C to
6659    interrupt the remote target.  It is undefined which thread of which
6660    process reports the interrupt.  */
6661
6662 void
6663 remote_target::remote_interrupt_as ()
6664 {
6665   struct remote_state *rs = get_remote_state ();
6666
6667   rs->ctrlc_pending_p = 1;
6668
6669   /* If the inferior is stopped already, but the core didn't know
6670      about it yet, just ignore the request.  The cached wait status
6671      will be collected in remote_wait.  */
6672   if (rs->cached_wait_status)
6673     return;
6674
6675   /* Send interrupt_sequence to remote target.  */
6676   send_interrupt_sequence ();
6677 }
6678
6679 /* Non-stop version of target_interrupt.  Uses `vCtrlC' to interrupt
6680    the remote target.  It is undefined which thread of which process
6681    reports the interrupt.  Throws an error if the packet is not
6682    supported by the server.  */
6683
6684 void
6685 remote_target::remote_interrupt_ns ()
6686 {
6687   struct remote_state *rs = get_remote_state ();
6688   char *p = rs->buf.data ();
6689   char *endp = p + get_remote_packet_size ();
6690
6691   xsnprintf (p, endp - p, "vCtrlC");
6692
6693   /* In non-stop, we get an immediate OK reply.  The stop reply will
6694      come in asynchronously by notification.  */
6695   putpkt (rs->buf);
6696   getpkt (&rs->buf, 0);
6697
6698   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6699     {
6700     case PACKET_OK:
6701       break;
6702     case PACKET_UNKNOWN:
6703       error (_("No support for interrupting the remote target."));
6704     case PACKET_ERROR:
6705       error (_("Interrupting target failed: %s"), rs->buf.data ());
6706     }
6707 }
6708
6709 /* Implement the to_stop function for the remote targets.  */
6710
6711 void
6712 remote_target::stop (ptid_t ptid)
6713 {
6714   if (remote_debug)
6715     fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
6716
6717   if (target_is_non_stop_p ())
6718     remote_stop_ns (ptid);
6719   else
6720     {
6721       /* We don't currently have a way to transparently pause the
6722          remote target in all-stop mode.  Interrupt it instead.  */
6723       remote_interrupt_as ();
6724     }
6725 }
6726
6727 /* Implement the to_interrupt function for the remote targets.  */
6728
6729 void
6730 remote_target::interrupt ()
6731 {
6732   if (remote_debug)
6733     fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6734
6735   if (target_is_non_stop_p ())
6736     remote_interrupt_ns ();
6737   else
6738     remote_interrupt_as ();
6739 }
6740
6741 /* Implement the to_pass_ctrlc function for the remote targets.  */
6742
6743 void
6744 remote_target::pass_ctrlc ()
6745 {
6746   struct remote_state *rs = get_remote_state ();
6747
6748   if (remote_debug)
6749     fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6750
6751   /* If we're starting up, we're not fully synced yet.  Quit
6752      immediately.  */
6753   if (rs->starting_up)
6754     quit ();
6755   /* If ^C has already been sent once, offer to disconnect.  */
6756   else if (rs->ctrlc_pending_p)
6757     interrupt_query ();
6758   else
6759     target_interrupt ();
6760 }
6761
6762 /* Ask the user what to do when an interrupt is received.  */
6763
6764 void
6765 remote_target::interrupt_query ()
6766 {
6767   struct remote_state *rs = get_remote_state ();
6768
6769   if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
6770     {
6771       if (query (_("The target is not responding to interrupt requests.\n"
6772                    "Stop debugging it? ")))
6773         {
6774           remote_unpush_target ();
6775           throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
6776         }
6777     }
6778   else
6779     {
6780       if (query (_("Interrupted while waiting for the program.\n"
6781                    "Give up waiting? ")))
6782         quit ();
6783     }
6784 }
6785
6786 /* Enable/disable target terminal ownership.  Most targets can use
6787    terminal groups to control terminal ownership.  Remote targets are
6788    different in that explicit transfer of ownership to/from GDB/target
6789    is required.  */
6790
6791 void
6792 remote_target::terminal_inferior ()
6793 {
6794   /* NOTE: At this point we could also register our selves as the
6795      recipient of all input.  Any characters typed could then be
6796      passed on down to the target.  */
6797 }
6798
6799 void
6800 remote_target::terminal_ours ()
6801 {
6802 }
6803
6804 static void
6805 remote_console_output (const char *msg)
6806 {
6807   const char *p;
6808
6809   for (p = msg; p[0] && p[1]; p += 2)
6810     {
6811       char tb[2];
6812       char c = fromhex (p[0]) * 16 + fromhex (p[1]);
6813
6814       tb[0] = c;
6815       tb[1] = 0;
6816       fputs_unfiltered (tb, gdb_stdtarg);
6817     }
6818   gdb_flush (gdb_stdtarg);
6819 }
6820
6821 DEF_VEC_O(cached_reg_t);
6822
6823 typedef struct stop_reply
6824 {
6825   struct notif_event base;
6826
6827   /* The identifier of the thread about this event  */
6828   ptid_t ptid;
6829
6830   /* The remote state this event is associated with.  When the remote
6831      connection, represented by a remote_state object, is closed,
6832      all the associated stop_reply events should be released.  */
6833   struct remote_state *rs;
6834
6835   struct target_waitstatus ws;
6836
6837   /* The architecture associated with the expedited registers.  */
6838   gdbarch *arch;
6839
6840   /* Expedited registers.  This makes remote debugging a bit more
6841      efficient for those targets that provide critical registers as
6842      part of their normal status mechanism (as another roundtrip to
6843      fetch them is avoided).  */
6844   VEC(cached_reg_t) *regcache;
6845
6846   enum target_stop_reason stop_reason;
6847
6848   CORE_ADDR watch_data_address;
6849
6850   int core;
6851 } *stop_reply_p;
6852
6853 static void
6854 stop_reply_xfree (struct stop_reply *r)
6855 {
6856   notif_event_xfree ((struct notif_event *) r);
6857 }
6858
6859 /* Return the length of the stop reply queue.  */
6860
6861 int
6862 remote_target::stop_reply_queue_length ()
6863 {
6864   remote_state *rs = get_remote_state ();
6865   return rs->stop_reply_queue.size ();
6866 }
6867
6868 void
6869 remote_notif_stop_parse (remote_target *remote,
6870                          struct notif_client *self, const char *buf,
6871                          struct notif_event *event)
6872 {
6873   remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
6874 }
6875
6876 static void
6877 remote_notif_stop_ack (remote_target *remote,
6878                        struct notif_client *self, const char *buf,
6879                        struct notif_event *event)
6880 {
6881   struct stop_reply *stop_reply = (struct stop_reply *) event;
6882
6883   /* acknowledge */
6884   putpkt (remote, self->ack_command);
6885
6886   if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6887     {
6888       /* We got an unknown stop reply.  */
6889       error (_("Unknown stop reply"));
6890     }
6891
6892   remote->push_stop_reply (stop_reply);
6893 }
6894
6895 static int
6896 remote_notif_stop_can_get_pending_events (remote_target *remote,
6897                                           struct notif_client *self)
6898 {
6899   /* We can't get pending events in remote_notif_process for
6900      notification stop, and we have to do this in remote_wait_ns
6901      instead.  If we fetch all queued events from stub, remote stub
6902      may exit and we have no chance to process them back in
6903      remote_wait_ns.  */
6904   remote_state *rs = remote->get_remote_state ();
6905   mark_async_event_handler (rs->remote_async_inferior_event_token);
6906   return 0;
6907 }
6908
6909 static void
6910 stop_reply_dtr (struct notif_event *event)
6911 {
6912   struct stop_reply *r = (struct stop_reply *) event;
6913   cached_reg_t *reg;
6914   int ix;
6915
6916   for (ix = 0;
6917        VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6918        ix++)
6919     xfree (reg->data);
6920
6921   VEC_free (cached_reg_t, r->regcache);
6922 }
6923
6924 static struct notif_event *
6925 remote_notif_stop_alloc_reply (void)
6926 {
6927   /* We cast to a pointer to the "base class".  */
6928   struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
6929
6930   r->dtr = stop_reply_dtr;
6931
6932   return r;
6933 }
6934
6935 /* A client of notification Stop.  */
6936
6937 struct notif_client notif_client_stop =
6938 {
6939   "Stop",
6940   "vStopped",
6941   remote_notif_stop_parse,
6942   remote_notif_stop_ack,
6943   remote_notif_stop_can_get_pending_events,
6944   remote_notif_stop_alloc_reply,
6945   REMOTE_NOTIF_STOP,
6946 };
6947
6948 /* Determine if THREAD_PTID is a pending fork parent thread.  ARG contains
6949    the pid of the process that owns the threads we want to check, or
6950    -1 if we want to check all threads.  */
6951
6952 static int
6953 is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6954                         ptid_t thread_ptid)
6955 {
6956   if (ws->kind == TARGET_WAITKIND_FORKED
6957       || ws->kind == TARGET_WAITKIND_VFORKED)
6958     {
6959       if (event_pid == -1 || event_pid == thread_ptid.pid ())
6960         return 1;
6961     }
6962
6963   return 0;
6964 }
6965
6966 /* Return the thread's pending status used to determine whether the
6967    thread is a fork parent stopped at a fork event.  */
6968
6969 static struct target_waitstatus *
6970 thread_pending_fork_status (struct thread_info *thread)
6971 {
6972   if (thread->suspend.waitstatus_pending_p)
6973     return &thread->suspend.waitstatus;
6974   else
6975     return &thread->pending_follow;
6976 }
6977
6978 /* Determine if THREAD is a pending fork parent thread.  */
6979
6980 static int
6981 is_pending_fork_parent_thread (struct thread_info *thread)
6982 {
6983   struct target_waitstatus *ws = thread_pending_fork_status (thread);
6984   int pid = -1;
6985
6986   return is_pending_fork_parent (ws, pid, thread->ptid);
6987 }
6988
6989 /* If CONTEXT contains any fork child threads that have not been
6990    reported yet, remove them from the CONTEXT list.  If such a
6991    thread exists it is because we are stopped at a fork catchpoint
6992    and have not yet called follow_fork, which will set up the
6993    host-side data structures for the new process.  */
6994
6995 void
6996 remote_target::remove_new_fork_children (threads_listing_context *context)
6997 {
6998   int pid = -1;
6999   struct notif_client *notif = &notif_client_stop;
7000
7001   /* For any threads stopped at a fork event, remove the corresponding
7002      fork child threads from the CONTEXT list.  */
7003   for (thread_info *thread : all_non_exited_threads ())
7004     {
7005       struct target_waitstatus *ws = thread_pending_fork_status (thread);
7006
7007       if (is_pending_fork_parent (ws, pid, thread->ptid))
7008         context->remove_thread (ws->value.related_pid);
7009     }
7010
7011   /* Check for any pending fork events (not reported or processed yet)
7012      in process PID and remove those fork child threads from the
7013      CONTEXT list as well.  */
7014   remote_notif_get_pending_events (notif);
7015   for (auto &event : get_remote_state ()->stop_reply_queue)
7016     if (event->ws.kind == TARGET_WAITKIND_FORKED
7017         || event->ws.kind == TARGET_WAITKIND_VFORKED
7018         || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7019       context->remove_thread (event->ws.value.related_pid);
7020 }
7021
7022 /* Check whether any event pending in the vStopped queue would prevent
7023    a global or process wildcard vCont action.  Clear
7024    *may_global_wildcard if we can't do a global wildcard (vCont;c),
7025    and clear the event inferior's may_wildcard_vcont flag if we can't
7026    do a process-wide wildcard resume (vCont;c:pPID.-1).  */
7027
7028 void
7029 remote_target::check_pending_events_prevent_wildcard_vcont
7030   (int *may_global_wildcard)
7031 {
7032   struct notif_client *notif = &notif_client_stop;
7033
7034   remote_notif_get_pending_events (notif);
7035   for (auto &event : get_remote_state ()->stop_reply_queue)
7036     {
7037       if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7038           || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7039         continue;
7040
7041       if (event->ws.kind == TARGET_WAITKIND_FORKED
7042           || event->ws.kind == TARGET_WAITKIND_VFORKED)
7043         *may_global_wildcard = 0;
7044
7045       struct inferior *inf = find_inferior_ptid (event->ptid);
7046
7047       /* This may be the first time we heard about this process.
7048          Regardless, we must not do a global wildcard resume, otherwise
7049          we'd resume this process too.  */
7050       *may_global_wildcard = 0;
7051       if (inf != NULL)
7052         get_remote_inferior (inf)->may_wildcard_vcont = false;
7053     }
7054 }
7055
7056 /* Discard all pending stop replies of inferior INF.  */
7057
7058 void
7059 remote_target::discard_pending_stop_replies (struct inferior *inf)
7060 {
7061   struct stop_reply *reply;
7062   struct remote_state *rs = get_remote_state ();
7063   struct remote_notif_state *rns = rs->notif_state;
7064
7065   /* This function can be notified when an inferior exists.  When the
7066      target is not remote, the notification state is NULL.  */
7067   if (rs->remote_desc == NULL)
7068     return;
7069
7070   reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
7071
7072   /* Discard the in-flight notification.  */
7073   if (reply != NULL && reply->ptid.pid () == inf->pid)
7074     {
7075       stop_reply_xfree (reply);
7076       rns->pending_event[notif_client_stop.id] = NULL;
7077     }
7078
7079   /* Discard the stop replies we have already pulled with
7080      vStopped.  */
7081   auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7082                               rs->stop_reply_queue.end (),
7083                               [=] (const stop_reply_up &event)
7084                               {
7085                                 return event->ptid.pid () == inf->pid;
7086                               });
7087   rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7088 }
7089
7090 /* Discard the stop replies for RS in stop_reply_queue.  */
7091
7092 void
7093 remote_target::discard_pending_stop_replies_in_queue ()
7094 {
7095   remote_state *rs = get_remote_state ();
7096
7097   /* Discard the stop replies we have already pulled with
7098      vStopped.  */
7099   auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7100                               rs->stop_reply_queue.end (),
7101                               [=] (const stop_reply_up &event)
7102                               {
7103                                 return event->rs == rs;
7104                               });
7105   rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7106 }
7107
7108 /* Remove the first reply in 'stop_reply_queue' which matches
7109    PTID.  */
7110
7111 struct stop_reply *
7112 remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
7113 {
7114   remote_state *rs = get_remote_state ();
7115
7116   auto iter = std::find_if (rs->stop_reply_queue.begin (),
7117                             rs->stop_reply_queue.end (),
7118                             [=] (const stop_reply_up &event)
7119                             {
7120                               return event->ptid.matches (ptid);
7121                             });
7122   struct stop_reply *result;
7123   if (iter == rs->stop_reply_queue.end ())
7124     result = nullptr;
7125   else
7126     {
7127       result = iter->release ();
7128       rs->stop_reply_queue.erase (iter);
7129     }
7130
7131   if (notif_debug)
7132     fprintf_unfiltered (gdb_stdlog,
7133                         "notif: discard queued event: 'Stop' in %s\n",
7134                         target_pid_to_str (ptid));
7135
7136   return result;
7137 }
7138
7139 /* Look for a queued stop reply belonging to PTID.  If one is found,
7140    remove it from the queue, and return it.  Returns NULL if none is
7141    found.  If there are still queued events left to process, tell the
7142    event loop to get back to target_wait soon.  */
7143
7144 struct stop_reply *
7145 remote_target::queued_stop_reply (ptid_t ptid)
7146 {
7147   remote_state *rs = get_remote_state ();
7148   struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
7149
7150   if (!rs->stop_reply_queue.empty ())
7151     {
7152       /* There's still at least an event left.  */
7153       mark_async_event_handler (rs->remote_async_inferior_event_token);
7154     }
7155
7156   return r;
7157 }
7158
7159 /* Push a fully parsed stop reply in the stop reply queue.  Since we
7160    know that we now have at least one queued event left to pass to the
7161    core side, tell the event loop to get back to target_wait soon.  */
7162
7163 void
7164 remote_target::push_stop_reply (struct stop_reply *new_event)
7165 {
7166   remote_state *rs = get_remote_state ();
7167   rs->stop_reply_queue.push_back (stop_reply_up (new_event));
7168
7169   if (notif_debug)
7170     fprintf_unfiltered (gdb_stdlog,
7171                         "notif: push 'Stop' %s to queue %d\n",
7172                         target_pid_to_str (new_event->ptid),
7173                         int (rs->stop_reply_queue.size ()));
7174
7175   mark_async_event_handler (rs->remote_async_inferior_event_token);
7176 }
7177
7178 /* Returns true if we have a stop reply for PTID.  */
7179
7180 int
7181 remote_target::peek_stop_reply (ptid_t ptid)
7182 {
7183   remote_state *rs = get_remote_state ();
7184   for (auto &event : rs->stop_reply_queue)
7185     if (ptid == event->ptid
7186         && event->ws.kind == TARGET_WAITKIND_STOPPED)
7187       return 1;
7188   return 0;
7189 }
7190
7191 /* Helper for remote_parse_stop_reply.  Return nonzero if the substring
7192    starting with P and ending with PEND matches PREFIX.  */
7193
7194 static int
7195 strprefix (const char *p, const char *pend, const char *prefix)
7196 {
7197   for ( ; p < pend; p++, prefix++)
7198     if (*p != *prefix)
7199       return 0;
7200   return *prefix == '\0';
7201 }
7202
7203 /* Parse the stop reply in BUF.  Either the function succeeds, and the
7204    result is stored in EVENT, or throws an error.  */
7205
7206 void
7207 remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
7208 {
7209   remote_arch_state *rsa = NULL;
7210   ULONGEST addr;
7211   const char *p;
7212   int skipregs = 0;
7213
7214   event->ptid = null_ptid;
7215   event->rs = get_remote_state ();
7216   event->ws.kind = TARGET_WAITKIND_IGNORE;
7217   event->ws.value.integer = 0;
7218   event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
7219   event->regcache = NULL;
7220   event->core = -1;
7221
7222   switch (buf[0])
7223     {
7224     case 'T':           /* Status with PC, SP, FP, ...  */
7225       /* Expedited reply, containing Signal, {regno, reg} repeat.  */
7226       /*  format is:  'Tssn...:r...;n...:r...;n...:r...;#cc', where
7227             ss = signal number
7228             n... = register number
7229             r... = register contents
7230       */
7231
7232       p = &buf[3];      /* after Txx */
7233       while (*p)
7234         {
7235           const char *p1;
7236           int fieldsize;
7237
7238           p1 = strchr (p, ':');
7239           if (p1 == NULL)
7240             error (_("Malformed packet(a) (missing colon): %s\n\
7241 Packet: '%s'\n"),
7242                    p, buf);
7243           if (p == p1)
7244             error (_("Malformed packet(a) (missing register number): %s\n\
7245 Packet: '%s'\n"),
7246                    p, buf);
7247
7248           /* Some "registers" are actually extended stop information.
7249              Note if you're adding a new entry here: GDB 7.9 and
7250              earlier assume that all register "numbers" that start
7251              with an hex digit are real register numbers.  Make sure
7252              the server only sends such a packet if it knows the
7253              client understands it.  */
7254
7255           if (strprefix (p, p1, "thread"))
7256             event->ptid = read_ptid (++p1, &p);
7257           else if (strprefix (p, p1, "syscall_entry"))
7258             {
7259               ULONGEST sysno;
7260
7261               event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7262               p = unpack_varlen_hex (++p1, &sysno);
7263               event->ws.value.syscall_number = (int) sysno;
7264             }
7265           else if (strprefix (p, p1, "syscall_return"))
7266             {
7267               ULONGEST sysno;
7268
7269               event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7270               p = unpack_varlen_hex (++p1, &sysno);
7271               event->ws.value.syscall_number = (int) sysno;
7272             }
7273           else if (strprefix (p, p1, "watch")
7274                    || strprefix (p, p1, "rwatch")
7275                    || strprefix (p, p1, "awatch"))
7276             {
7277               event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
7278               p = unpack_varlen_hex (++p1, &addr);
7279               event->watch_data_address = (CORE_ADDR) addr;
7280             }
7281           else if (strprefix (p, p1, "swbreak"))
7282             {
7283               event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7284
7285               /* Make sure the stub doesn't forget to indicate support
7286                  with qSupported.  */
7287               if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7288                 error (_("Unexpected swbreak stop reason"));
7289
7290               /* The value part is documented as "must be empty",
7291                  though we ignore it, in case we ever decide to make
7292                  use of it in a backward compatible way.  */
7293               p = strchrnul (p1 + 1, ';');
7294             }
7295           else if (strprefix (p, p1, "hwbreak"))
7296             {
7297               event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7298
7299               /* Make sure the stub doesn't forget to indicate support
7300                  with qSupported.  */
7301               if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7302                 error (_("Unexpected hwbreak stop reason"));
7303
7304               /* See above.  */
7305               p = strchrnul (p1 + 1, ';');
7306             }
7307           else if (strprefix (p, p1, "library"))
7308             {
7309               event->ws.kind = TARGET_WAITKIND_LOADED;
7310               p = strchrnul (p1 + 1, ';');
7311             }
7312           else if (strprefix (p, p1, "replaylog"))
7313             {
7314               event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7315               /* p1 will indicate "begin" or "end", but it makes
7316                  no difference for now, so ignore it.  */
7317               p = strchrnul (p1 + 1, ';');
7318             }
7319           else if (strprefix (p, p1, "core"))
7320             {
7321               ULONGEST c;
7322
7323               p = unpack_varlen_hex (++p1, &c);
7324               event->core = c;
7325             }
7326           else if (strprefix (p, p1, "fork"))
7327             {
7328               event->ws.value.related_pid = read_ptid (++p1, &p);
7329               event->ws.kind = TARGET_WAITKIND_FORKED;
7330             }
7331           else if (strprefix (p, p1, "vfork"))
7332             {
7333               event->ws.value.related_pid = read_ptid (++p1, &p);
7334               event->ws.kind = TARGET_WAITKIND_VFORKED;
7335             }
7336           else if (strprefix (p, p1, "vforkdone"))
7337             {
7338               event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
7339               p = strchrnul (p1 + 1, ';');
7340             }
7341           else if (strprefix (p, p1, "exec"))
7342             {
7343               ULONGEST ignored;
7344               char pathname[PATH_MAX];
7345               int pathlen;
7346
7347               /* Determine the length of the execd pathname.  */
7348               p = unpack_varlen_hex (++p1, &ignored);
7349               pathlen = (p - p1) / 2;
7350
7351               /* Save the pathname for event reporting and for
7352                  the next run command.  */
7353               hex2bin (p1, (gdb_byte *) pathname, pathlen);
7354               pathname[pathlen] = '\0';
7355
7356               /* This is freed during event handling.  */
7357               event->ws.value.execd_pathname = xstrdup (pathname);
7358               event->ws.kind = TARGET_WAITKIND_EXECD;
7359
7360               /* Skip the registers included in this packet, since
7361                  they may be for an architecture different from the
7362                  one used by the original program.  */
7363               skipregs = 1;
7364             }
7365           else if (strprefix (p, p1, "create"))
7366             {
7367               event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
7368               p = strchrnul (p1 + 1, ';');
7369             }
7370           else
7371             {
7372               ULONGEST pnum;
7373               const char *p_temp;
7374
7375               if (skipregs)
7376                 {
7377                   p = strchrnul (p1 + 1, ';');
7378                   p++;
7379                   continue;
7380                 }
7381
7382               /* Maybe a real ``P'' register number.  */
7383               p_temp = unpack_varlen_hex (p, &pnum);
7384               /* If the first invalid character is the colon, we got a
7385                  register number.  Otherwise, it's an unknown stop
7386                  reason.  */
7387               if (p_temp == p1)
7388                 {
7389                   /* If we haven't parsed the event's thread yet, find
7390                      it now, in order to find the architecture of the
7391                      reported expedited registers.  */
7392                   if (event->ptid == null_ptid)
7393                     {
7394                       const char *thr = strstr (p1 + 1, ";thread:");
7395                       if (thr != NULL)
7396                         event->ptid = read_ptid (thr + strlen (";thread:"),
7397                                                  NULL);
7398                       else
7399                         {
7400                           /* Either the current thread hasn't changed,
7401                              or the inferior is not multi-threaded.
7402                              The event must be for the thread we last
7403                              set as (or learned as being) current.  */
7404                           event->ptid = event->rs->general_thread;
7405                         }
7406                     }
7407
7408                   if (rsa == NULL)
7409                     {
7410                       inferior *inf = (event->ptid == null_ptid
7411                                        ? NULL
7412                                        : find_inferior_ptid (event->ptid));
7413                       /* If this is the first time we learn anything
7414                          about this process, skip the registers
7415                          included in this packet, since we don't yet
7416                          know which architecture to use to parse them.
7417                          We'll determine the architecture later when
7418                          we process the stop reply and retrieve the
7419                          target description, via
7420                          remote_notice_new_inferior ->
7421                          post_create_inferior.  */
7422                       if (inf == NULL)
7423                         {
7424                           p = strchrnul (p1 + 1, ';');
7425                           p++;
7426                           continue;
7427                         }
7428
7429                       event->arch = inf->gdbarch;
7430                       rsa = event->rs->get_remote_arch_state (event->arch);
7431                     }
7432
7433                   packet_reg *reg
7434                     = packet_reg_from_pnum (event->arch, rsa, pnum);
7435                   cached_reg_t cached_reg;
7436
7437                   if (reg == NULL)
7438                     error (_("Remote sent bad register number %s: %s\n\
7439 Packet: '%s'\n"),
7440                            hex_string (pnum), p, buf);
7441
7442                   cached_reg.num = reg->regnum;
7443                   cached_reg.data = (gdb_byte *)
7444                     xmalloc (register_size (event->arch, reg->regnum));
7445
7446                   p = p1 + 1;
7447                   fieldsize = hex2bin (p, cached_reg.data,
7448                                        register_size (event->arch, reg->regnum));
7449                   p += 2 * fieldsize;
7450                   if (fieldsize < register_size (event->arch, reg->regnum))
7451                     warning (_("Remote reply is too short: %s"), buf);
7452
7453                   VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
7454                 }
7455               else
7456                 {
7457                   /* Not a number.  Silently skip unknown optional
7458                      info.  */
7459                   p = strchrnul (p1 + 1, ';');
7460                 }
7461             }
7462
7463           if (*p != ';')
7464             error (_("Remote register badly formatted: %s\nhere: %s"),
7465                    buf, p);
7466           ++p;
7467         }
7468
7469       if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7470         break;
7471
7472       /* fall through */
7473     case 'S':           /* Old style status, just signal only.  */
7474       {
7475         int sig;
7476
7477         event->ws.kind = TARGET_WAITKIND_STOPPED;
7478         sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7479         if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7480           event->ws.value.sig = (enum gdb_signal) sig;
7481         else
7482           event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7483       }
7484       break;
7485     case 'w':           /* Thread exited.  */
7486       {
7487         ULONGEST value;
7488
7489         event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7490         p = unpack_varlen_hex (&buf[1], &value);
7491         event->ws.value.integer = value;
7492         if (*p != ';')
7493           error (_("stop reply packet badly formatted: %s"), buf);
7494         event->ptid = read_ptid (++p, NULL);
7495         break;
7496       }
7497     case 'W':           /* Target exited.  */
7498     case 'X':
7499       {
7500         int pid;
7501         ULONGEST value;
7502
7503         /* GDB used to accept only 2 hex chars here.  Stubs should
7504            only send more if they detect GDB supports multi-process
7505            support.  */
7506         p = unpack_varlen_hex (&buf[1], &value);
7507
7508         if (buf[0] == 'W')
7509           {
7510             /* The remote process exited.  */
7511             event->ws.kind = TARGET_WAITKIND_EXITED;
7512             event->ws.value.integer = value;
7513           }
7514         else
7515           {
7516             /* The remote process exited with a signal.  */
7517             event->ws.kind = TARGET_WAITKIND_SIGNALLED;
7518             if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7519               event->ws.value.sig = (enum gdb_signal) value;
7520             else
7521               event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7522           }
7523
7524         /* If no process is specified, assume inferior_ptid.  */
7525         pid = inferior_ptid.pid ();
7526         if (*p == '\0')
7527           ;
7528         else if (*p == ';')
7529           {
7530             p++;
7531
7532             if (*p == '\0')
7533               ;
7534             else if (startswith (p, "process:"))
7535               {
7536                 ULONGEST upid;
7537
7538                 p += sizeof ("process:") - 1;
7539                 unpack_varlen_hex (p, &upid);
7540                 pid = upid;
7541               }
7542             else
7543               error (_("unknown stop reply packet: %s"), buf);
7544           }
7545         else
7546           error (_("unknown stop reply packet: %s"), buf);
7547         event->ptid = ptid_t (pid);
7548       }
7549       break;
7550     case 'N':
7551       event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7552       event->ptid = minus_one_ptid;
7553       break;
7554     }
7555
7556   if (target_is_non_stop_p () && event->ptid == null_ptid)
7557     error (_("No process or thread specified in stop reply: %s"), buf);
7558 }
7559
7560 /* When the stub wants to tell GDB about a new notification reply, it
7561    sends a notification (%Stop, for example).  Those can come it at
7562    any time, hence, we have to make sure that any pending
7563    putpkt/getpkt sequence we're making is finished, before querying
7564    the stub for more events with the corresponding ack command
7565    (vStopped, for example).  E.g., if we started a vStopped sequence
7566    immediately upon receiving the notification, something like this
7567    could happen:
7568
7569     1.1) --> Hg 1
7570     1.2) <-- OK
7571     1.3) --> g
7572     1.4) <-- %Stop
7573     1.5) --> vStopped
7574     1.6) <-- (registers reply to step #1.3)
7575
7576    Obviously, the reply in step #1.6 would be unexpected to a vStopped
7577    query.
7578
7579    To solve this, whenever we parse a %Stop notification successfully,
7580    we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7581    doing whatever we were doing:
7582
7583     2.1) --> Hg 1
7584     2.2) <-- OK
7585     2.3) --> g
7586     2.4) <-- %Stop
7587       <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7588     2.5) <-- (registers reply to step #2.3)
7589
7590    Eventualy after step #2.5, we return to the event loop, which
7591    notices there's an event on the
7592    REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7593    associated callback --- the function below.  At this point, we're
7594    always safe to start a vStopped sequence. :
7595
7596     2.6) --> vStopped
7597     2.7) <-- T05 thread:2
7598     2.8) --> vStopped
7599     2.9) --> OK
7600 */
7601
7602 void
7603 remote_target::remote_notif_get_pending_events (notif_client *nc)
7604 {
7605   struct remote_state *rs = get_remote_state ();
7606
7607   if (rs->notif_state->pending_event[nc->id] != NULL)
7608     {
7609       if (notif_debug)
7610         fprintf_unfiltered (gdb_stdlog,
7611                             "notif: process: '%s' ack pending event\n",
7612                             nc->name);
7613
7614       /* acknowledge */
7615       nc->ack (this, nc, rs->buf.data (),
7616                rs->notif_state->pending_event[nc->id]);
7617       rs->notif_state->pending_event[nc->id] = NULL;
7618
7619       while (1)
7620         {
7621           getpkt (&rs->buf, 0);
7622           if (strcmp (rs->buf.data (), "OK") == 0)
7623             break;
7624           else
7625             remote_notif_ack (this, nc, rs->buf.data ());
7626         }
7627     }
7628   else
7629     {
7630       if (notif_debug)
7631         fprintf_unfiltered (gdb_stdlog,
7632                             "notif: process: '%s' no pending reply\n",
7633                             nc->name);
7634     }
7635 }
7636
7637 /* Wrapper around remote_target::remote_notif_get_pending_events to
7638    avoid having to export the whole remote_target class.  */
7639
7640 void
7641 remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7642 {
7643   remote->remote_notif_get_pending_events (nc);
7644 }
7645
7646 /* Called when it is decided that STOP_REPLY holds the info of the
7647    event that is to be returned to the core.  This function always
7648    destroys STOP_REPLY.  */
7649
7650 ptid_t
7651 remote_target::process_stop_reply (struct stop_reply *stop_reply,
7652                                    struct target_waitstatus *status)
7653 {
7654   ptid_t ptid;
7655
7656   *status = stop_reply->ws;
7657   ptid = stop_reply->ptid;
7658
7659   /* If no thread/process was reported by the stub, assume the current
7660      inferior.  */
7661   if (ptid == null_ptid)
7662     ptid = inferior_ptid;
7663
7664   if (status->kind != TARGET_WAITKIND_EXITED
7665       && status->kind != TARGET_WAITKIND_SIGNALLED
7666       && status->kind != TARGET_WAITKIND_NO_RESUMED)
7667     {
7668       /* Expedited registers.  */
7669       if (stop_reply->regcache)
7670         {
7671           struct regcache *regcache
7672             = get_thread_arch_regcache (ptid, stop_reply->arch);
7673           cached_reg_t *reg;
7674           int ix;
7675
7676           for (ix = 0;
7677                VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
7678                ix++)
7679           {
7680             regcache->raw_supply (reg->num, reg->data);
7681             xfree (reg->data);
7682           }
7683
7684           VEC_free (cached_reg_t, stop_reply->regcache);
7685         }
7686
7687       remote_notice_new_inferior (ptid, 0);
7688       remote_thread_info *remote_thr = get_remote_thread_info (ptid);
7689       remote_thr->core = stop_reply->core;
7690       remote_thr->stop_reason = stop_reply->stop_reason;
7691       remote_thr->watch_data_address = stop_reply->watch_data_address;
7692       remote_thr->vcont_resumed = 0;
7693     }
7694
7695   stop_reply_xfree (stop_reply);
7696   return ptid;
7697 }
7698
7699 /* The non-stop mode version of target_wait.  */
7700
7701 ptid_t
7702 remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
7703 {
7704   struct remote_state *rs = get_remote_state ();
7705   struct stop_reply *stop_reply;
7706   int ret;
7707   int is_notif = 0;
7708
7709   /* If in non-stop mode, get out of getpkt even if a
7710      notification is received.  */
7711
7712   ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
7713   while (1)
7714     {
7715       if (ret != -1 && !is_notif)
7716         switch (rs->buf[0])
7717           {
7718           case 'E':             /* Error of some sort.  */
7719             /* We're out of sync with the target now.  Did it continue
7720                or not?  We can't tell which thread it was in non-stop,
7721                so just ignore this.  */
7722             warning (_("Remote failure reply: %s"), rs->buf.data ());
7723             break;
7724           case 'O':             /* Console output.  */
7725             remote_console_output (&rs->buf[1]);
7726             break;
7727           default:
7728             warning (_("Invalid remote reply: %s"), rs->buf.data ());
7729             break;
7730           }
7731
7732       /* Acknowledge a pending stop reply that may have arrived in the
7733          mean time.  */
7734       if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
7735         remote_notif_get_pending_events (&notif_client_stop);
7736
7737       /* If indeed we noticed a stop reply, we're done.  */
7738       stop_reply = queued_stop_reply (ptid);
7739       if (stop_reply != NULL)
7740         return process_stop_reply (stop_reply, status);
7741
7742       /* Still no event.  If we're just polling for an event, then
7743          return to the event loop.  */
7744       if (options & TARGET_WNOHANG)
7745         {
7746           status->kind = TARGET_WAITKIND_IGNORE;
7747           return minus_one_ptid;
7748         }
7749
7750       /* Otherwise do a blocking wait.  */
7751       ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
7752     }
7753 }
7754
7755 /* Wait until the remote machine stops, then return, storing status in
7756    STATUS just as `wait' would.  */
7757
7758 ptid_t
7759 remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
7760 {
7761   struct remote_state *rs = get_remote_state ();
7762   ptid_t event_ptid = null_ptid;
7763   char *buf;
7764   struct stop_reply *stop_reply;
7765
7766  again:
7767
7768   status->kind = TARGET_WAITKIND_IGNORE;
7769   status->value.integer = 0;
7770
7771   stop_reply = queued_stop_reply (ptid);
7772   if (stop_reply != NULL)
7773     return process_stop_reply (stop_reply, status);
7774
7775   if (rs->cached_wait_status)
7776     /* Use the cached wait status, but only once.  */
7777     rs->cached_wait_status = 0;
7778   else
7779     {
7780       int ret;
7781       int is_notif;
7782       int forever = ((options & TARGET_WNOHANG) == 0
7783                      && rs->wait_forever_enabled_p);
7784
7785       if (!rs->waiting_for_stop_reply)
7786         {
7787           status->kind = TARGET_WAITKIND_NO_RESUMED;
7788           return minus_one_ptid;
7789         }
7790
7791       /* FIXME: cagney/1999-09-27: If we're in async mode we should
7792          _never_ wait for ever -> test on target_is_async_p().
7793          However, before we do that we need to ensure that the caller
7794          knows how to take the target into/out of async mode.  */
7795       ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
7796
7797       /* GDB gets a notification.  Return to core as this event is
7798          not interesting.  */
7799       if (ret != -1 && is_notif)
7800         return minus_one_ptid;
7801
7802       if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7803         return minus_one_ptid;
7804     }
7805
7806   buf = rs->buf.data ();
7807
7808   /* Assume that the target has acknowledged Ctrl-C unless we receive
7809      an 'F' or 'O' packet.  */
7810   if (buf[0] != 'F' && buf[0] != 'O')
7811     rs->ctrlc_pending_p = 0;
7812
7813   switch (buf[0])
7814     {
7815     case 'E':           /* Error of some sort.  */
7816       /* We're out of sync with the target now.  Did it continue or
7817          not?  Not is more likely, so report a stop.  */
7818       rs->waiting_for_stop_reply = 0;
7819
7820       warning (_("Remote failure reply: %s"), buf);
7821       status->kind = TARGET_WAITKIND_STOPPED;
7822       status->value.sig = GDB_SIGNAL_0;
7823       break;
7824     case 'F':           /* File-I/O request.  */
7825       /* GDB may access the inferior memory while handling the File-I/O
7826          request, but we don't want GDB accessing memory while waiting
7827          for a stop reply.  See the comments in putpkt_binary.  Set
7828          waiting_for_stop_reply to 0 temporarily.  */
7829       rs->waiting_for_stop_reply = 0;
7830       remote_fileio_request (this, buf, rs->ctrlc_pending_p);
7831       rs->ctrlc_pending_p = 0;
7832       /* GDB handled the File-I/O request, and the target is running
7833          again.  Keep waiting for events.  */
7834       rs->waiting_for_stop_reply = 1;
7835       break;
7836     case 'N': case 'T': case 'S': case 'X': case 'W':
7837       {
7838         /* There is a stop reply to handle.  */
7839         rs->waiting_for_stop_reply = 0;
7840
7841         stop_reply
7842           = (struct stop_reply *) remote_notif_parse (this,
7843                                                       &notif_client_stop,
7844                                                       rs->buf.data ());
7845
7846         event_ptid = process_stop_reply (stop_reply, status);
7847         break;
7848       }
7849     case 'O':           /* Console output.  */
7850       remote_console_output (buf + 1);
7851       break;
7852     case '\0':
7853       if (rs->last_sent_signal != GDB_SIGNAL_0)
7854         {
7855           /* Zero length reply means that we tried 'S' or 'C' and the
7856              remote system doesn't support it.  */
7857           target_terminal::ours_for_output ();
7858           printf_filtered
7859             ("Can't send signals to this remote system.  %s not sent.\n",
7860              gdb_signal_to_name (rs->last_sent_signal));
7861           rs->last_sent_signal = GDB_SIGNAL_0;
7862           target_terminal::inferior ();
7863
7864           strcpy (buf, rs->last_sent_step ? "s" : "c");
7865           putpkt (buf);
7866           break;
7867         }
7868       /* fallthrough */
7869     default:
7870       warning (_("Invalid remote reply: %s"), buf);
7871       break;
7872     }
7873
7874   if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7875     return minus_one_ptid;
7876   else if (status->kind == TARGET_WAITKIND_IGNORE)
7877     {
7878       /* Nothing interesting happened.  If we're doing a non-blocking
7879          poll, we're done.  Otherwise, go back to waiting.  */
7880       if (options & TARGET_WNOHANG)
7881         return minus_one_ptid;
7882       else
7883         goto again;
7884     }
7885   else if (status->kind != TARGET_WAITKIND_EXITED
7886            && status->kind != TARGET_WAITKIND_SIGNALLED)
7887     {
7888       if (event_ptid != null_ptid)
7889         record_currthread (rs, event_ptid);
7890       else
7891         event_ptid = inferior_ptid;
7892     }
7893   else
7894     /* A process exit.  Invalidate our notion of current thread.  */
7895     record_currthread (rs, minus_one_ptid);
7896
7897   return event_ptid;
7898 }
7899
7900 /* Wait until the remote machine stops, then return, storing status in
7901    STATUS just as `wait' would.  */
7902
7903 ptid_t
7904 remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
7905 {
7906   ptid_t event_ptid;
7907
7908   if (target_is_non_stop_p ())
7909     event_ptid = wait_ns (ptid, status, options);
7910   else
7911     event_ptid = wait_as (ptid, status, options);
7912
7913   if (target_is_async_p ())
7914     {
7915       remote_state *rs = get_remote_state ();
7916
7917       /* If there are are events left in the queue tell the event loop
7918          to return here.  */
7919       if (!rs->stop_reply_queue.empty ())
7920         mark_async_event_handler (rs->remote_async_inferior_event_token);
7921     }
7922
7923   return event_ptid;
7924 }
7925
7926 /* Fetch a single register using a 'p' packet.  */
7927
7928 int
7929 remote_target::fetch_register_using_p (struct regcache *regcache,
7930                                        packet_reg *reg)
7931 {
7932   struct gdbarch *gdbarch = regcache->arch ();
7933   struct remote_state *rs = get_remote_state ();
7934   char *buf, *p;
7935   gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
7936   int i;
7937
7938   if (packet_support (PACKET_p) == PACKET_DISABLE)
7939     return 0;
7940
7941   if (reg->pnum == -1)
7942     return 0;
7943
7944   p = rs->buf.data ();
7945   *p++ = 'p';
7946   p += hexnumstr (p, reg->pnum);
7947   *p++ = '\0';
7948   putpkt (rs->buf);
7949   getpkt (&rs->buf, 0);
7950
7951   buf = rs->buf.data ();
7952
7953   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
7954     {
7955     case PACKET_OK:
7956       break;
7957     case PACKET_UNKNOWN:
7958       return 0;
7959     case PACKET_ERROR:
7960       error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7961              gdbarch_register_name (regcache->arch (), 
7962                                     reg->regnum), 
7963              buf);
7964     }
7965
7966   /* If this register is unfetchable, tell the regcache.  */
7967   if (buf[0] == 'x')
7968     {
7969       regcache->raw_supply (reg->regnum, NULL);
7970       return 1;
7971     }
7972
7973   /* Otherwise, parse and supply the value.  */
7974   p = buf;
7975   i = 0;
7976   while (p[0] != 0)
7977     {
7978       if (p[1] == 0)
7979         error (_("fetch_register_using_p: early buf termination"));
7980
7981       regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7982       p += 2;
7983     }
7984   regcache->raw_supply (reg->regnum, regp);
7985   return 1;
7986 }
7987
7988 /* Fetch the registers included in the target's 'g' packet.  */
7989
7990 int
7991 remote_target::send_g_packet ()
7992 {
7993   struct remote_state *rs = get_remote_state ();
7994   int buf_len;
7995
7996   xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
7997   putpkt (rs->buf);
7998   getpkt (&rs->buf, 0);
7999   if (packet_check_result (rs->buf) == PACKET_ERROR)
8000     error (_("Could not read registers; remote failure reply '%s'"),
8001            rs->buf.data ());
8002
8003   /* We can get out of synch in various cases.  If the first character
8004      in the buffer is not a hex character, assume that has happened
8005      and try to fetch another packet to read.  */
8006   while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8007          && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8008          && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8009          && rs->buf[0] != 'x')  /* New: unavailable register value.  */
8010     {
8011       if (remote_debug)
8012         fprintf_unfiltered (gdb_stdlog,
8013                             "Bad register packet; fetching a new packet\n");
8014       getpkt (&rs->buf, 0);
8015     }
8016
8017   buf_len = strlen (rs->buf.data ());
8018
8019   /* Sanity check the received packet.  */
8020   if (buf_len % 2 != 0)
8021     error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
8022
8023   return buf_len / 2;
8024 }
8025
8026 void
8027 remote_target::process_g_packet (struct regcache *regcache)
8028 {
8029   struct gdbarch *gdbarch = regcache->arch ();
8030   struct remote_state *rs = get_remote_state ();
8031   remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8032   int i, buf_len;
8033   char *p;
8034   char *regs;
8035
8036   buf_len = strlen (rs->buf.data ());
8037
8038   /* Further sanity checks, with knowledge of the architecture.  */
8039   if (buf_len > 2 * rsa->sizeof_g_packet)
8040     error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8041              "bytes): %s"),
8042            rsa->sizeof_g_packet, buf_len / 2,
8043            rs->buf.data ());
8044
8045   /* Save the size of the packet sent to us by the target.  It is used
8046      as a heuristic when determining the max size of packets that the
8047      target can safely receive.  */
8048   if (rsa->actual_register_packet_size == 0)
8049     rsa->actual_register_packet_size = buf_len;
8050
8051   /* If this is smaller than we guessed the 'g' packet would be,
8052      update our records.  A 'g' reply that doesn't include a register's
8053      value implies either that the register is not available, or that
8054      the 'p' packet must be used.  */
8055   if (buf_len < 2 * rsa->sizeof_g_packet)
8056     {
8057       long sizeof_g_packet = buf_len / 2;
8058
8059       for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8060         {
8061           long offset = rsa->regs[i].offset;
8062           long reg_size = register_size (gdbarch, i);
8063
8064           if (rsa->regs[i].pnum == -1)
8065             continue;
8066
8067           if (offset >= sizeof_g_packet)
8068             rsa->regs[i].in_g_packet = 0;
8069           else if (offset + reg_size > sizeof_g_packet)
8070             error (_("Truncated register %d in remote 'g' packet"), i);
8071           else
8072             rsa->regs[i].in_g_packet = 1;
8073         }
8074
8075       /* Looks valid enough, we can assume this is the correct length
8076          for a 'g' packet.  It's important not to adjust
8077          rsa->sizeof_g_packet if we have truncated registers otherwise
8078          this "if" won't be run the next time the method is called
8079          with a packet of the same size and one of the internal errors
8080          below will trigger instead.  */
8081       rsa->sizeof_g_packet = sizeof_g_packet;
8082     }
8083
8084   regs = (char *) alloca (rsa->sizeof_g_packet);
8085
8086   /* Unimplemented registers read as all bits zero.  */
8087   memset (regs, 0, rsa->sizeof_g_packet);
8088
8089   /* Reply describes registers byte by byte, each byte encoded as two
8090      hex characters.  Suck them all up, then supply them to the
8091      register cacheing/storage mechanism.  */
8092
8093   p = rs->buf.data ();
8094   for (i = 0; i < rsa->sizeof_g_packet; i++)
8095     {
8096       if (p[0] == 0 || p[1] == 0)
8097         /* This shouldn't happen - we adjusted sizeof_g_packet above.  */
8098         internal_error (__FILE__, __LINE__,
8099                         _("unexpected end of 'g' packet reply"));
8100
8101       if (p[0] == 'x' && p[1] == 'x')
8102         regs[i] = 0;            /* 'x' */
8103       else
8104         regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8105       p += 2;
8106     }
8107
8108   for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8109     {
8110       struct packet_reg *r = &rsa->regs[i];
8111       long reg_size = register_size (gdbarch, i);
8112
8113       if (r->in_g_packet)
8114         {
8115           if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
8116             /* This shouldn't happen - we adjusted in_g_packet above.  */
8117             internal_error (__FILE__, __LINE__,
8118                             _("unexpected end of 'g' packet reply"));
8119           else if (rs->buf[r->offset * 2] == 'x')
8120             {
8121               gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
8122               /* The register isn't available, mark it as such (at
8123                  the same time setting the value to zero).  */
8124               regcache->raw_supply (r->regnum, NULL);
8125             }
8126           else
8127             regcache->raw_supply (r->regnum, regs + r->offset);
8128         }
8129     }
8130 }
8131
8132 void
8133 remote_target::fetch_registers_using_g (struct regcache *regcache)
8134 {
8135   send_g_packet ();
8136   process_g_packet (regcache);
8137 }
8138
8139 /* Make the remote selected traceframe match GDB's selected
8140    traceframe.  */
8141
8142 void
8143 remote_target::set_remote_traceframe ()
8144 {
8145   int newnum;
8146   struct remote_state *rs = get_remote_state ();
8147
8148   if (rs->remote_traceframe_number == get_traceframe_number ())
8149     return;
8150
8151   /* Avoid recursion, remote_trace_find calls us again.  */
8152   rs->remote_traceframe_number = get_traceframe_number ();
8153
8154   newnum = target_trace_find (tfind_number,
8155                               get_traceframe_number (), 0, 0, NULL);
8156
8157   /* Should not happen.  If it does, all bets are off.  */
8158   if (newnum != get_traceframe_number ())
8159     warning (_("could not set remote traceframe"));
8160 }
8161
8162 void
8163 remote_target::fetch_registers (struct regcache *regcache, int regnum)
8164 {
8165   struct gdbarch *gdbarch = regcache->arch ();
8166   struct remote_state *rs = get_remote_state ();
8167   remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8168   int i;
8169
8170   set_remote_traceframe ();
8171   set_general_thread (regcache->ptid ());
8172
8173   if (regnum >= 0)
8174     {
8175       packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8176
8177       gdb_assert (reg != NULL);
8178
8179       /* If this register might be in the 'g' packet, try that first -
8180          we are likely to read more than one register.  If this is the
8181          first 'g' packet, we might be overly optimistic about its
8182          contents, so fall back to 'p'.  */
8183       if (reg->in_g_packet)
8184         {
8185           fetch_registers_using_g (regcache);
8186           if (reg->in_g_packet)
8187             return;
8188         }
8189
8190       if (fetch_register_using_p (regcache, reg))
8191         return;
8192
8193       /* This register is not available.  */
8194       regcache->raw_supply (reg->regnum, NULL);
8195
8196       return;
8197     }
8198
8199   fetch_registers_using_g (regcache);
8200
8201   for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8202     if (!rsa->regs[i].in_g_packet)
8203       if (!fetch_register_using_p (regcache, &rsa->regs[i]))
8204         {
8205           /* This register is not available.  */
8206           regcache->raw_supply (i, NULL);
8207         }
8208 }
8209
8210 /* Prepare to store registers.  Since we may send them all (using a
8211    'G' request), we have to read out the ones we don't want to change
8212    first.  */
8213
8214 void
8215 remote_target::prepare_to_store (struct regcache *regcache)
8216 {
8217   struct remote_state *rs = get_remote_state ();
8218   remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8219   int i;
8220
8221   /* Make sure the entire registers array is valid.  */
8222   switch (packet_support (PACKET_P))
8223     {
8224     case PACKET_DISABLE:
8225     case PACKET_SUPPORT_UNKNOWN:
8226       /* Make sure all the necessary registers are cached.  */
8227       for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8228         if (rsa->regs[i].in_g_packet)
8229           regcache->raw_update (rsa->regs[i].regnum);
8230       break;
8231     case PACKET_ENABLE:
8232       break;
8233     }
8234 }
8235
8236 /* Helper: Attempt to store REGNUM using the P packet.  Return fail IFF
8237    packet was not recognized.  */
8238
8239 int
8240 remote_target::store_register_using_P (const struct regcache *regcache,
8241                                        packet_reg *reg)
8242 {
8243   struct gdbarch *gdbarch = regcache->arch ();
8244   struct remote_state *rs = get_remote_state ();
8245   /* Try storing a single register.  */
8246   char *buf = rs->buf.data ();
8247   gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
8248   char *p;
8249
8250   if (packet_support (PACKET_P) == PACKET_DISABLE)
8251     return 0;
8252
8253   if (reg->pnum == -1)
8254     return 0;
8255
8256   xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
8257   p = buf + strlen (buf);
8258   regcache->raw_collect (reg->regnum, regp);
8259   bin2hex (regp, p, register_size (gdbarch, reg->regnum));
8260   putpkt (rs->buf);
8261   getpkt (&rs->buf, 0);
8262
8263   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8264     {
8265     case PACKET_OK:
8266       return 1;
8267     case PACKET_ERROR:
8268       error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8269              gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
8270     case PACKET_UNKNOWN:
8271       return 0;
8272     default:
8273       internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8274     }
8275 }
8276
8277 /* Store register REGNUM, or all registers if REGNUM == -1, from the
8278    contents of the register cache buffer.  FIXME: ignores errors.  */
8279
8280 void
8281 remote_target::store_registers_using_G (const struct regcache *regcache)
8282 {
8283   struct remote_state *rs = get_remote_state ();
8284   remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8285   gdb_byte *regs;
8286   char *p;
8287
8288   /* Extract all the registers in the regcache copying them into a
8289      local buffer.  */
8290   {
8291     int i;
8292
8293     regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
8294     memset (regs, 0, rsa->sizeof_g_packet);
8295     for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8296       {
8297         struct packet_reg *r = &rsa->regs[i];
8298
8299         if (r->in_g_packet)
8300           regcache->raw_collect (r->regnum, regs + r->offset);
8301       }
8302   }
8303
8304   /* Command describes registers byte by byte,
8305      each byte encoded as two hex characters.  */
8306   p = rs->buf.data ();
8307   *p++ = 'G';
8308   bin2hex (regs, p, rsa->sizeof_g_packet);
8309   putpkt (rs->buf);
8310   getpkt (&rs->buf, 0);
8311   if (packet_check_result (rs->buf) == PACKET_ERROR)
8312     error (_("Could not write registers; remote failure reply '%s'"), 
8313            rs->buf.data ());
8314 }
8315
8316 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8317    of the register cache buffer.  FIXME: ignores errors.  */
8318
8319 void
8320 remote_target::store_registers (struct regcache *regcache, int regnum)
8321 {
8322   struct gdbarch *gdbarch = regcache->arch ();
8323   struct remote_state *rs = get_remote_state ();
8324   remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8325   int i;
8326
8327   set_remote_traceframe ();
8328   set_general_thread (regcache->ptid ());
8329
8330   if (regnum >= 0)
8331     {
8332       packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8333
8334       gdb_assert (reg != NULL);
8335
8336       /* Always prefer to store registers using the 'P' packet if
8337          possible; we often change only a small number of registers.
8338          Sometimes we change a larger number; we'd need help from a
8339          higher layer to know to use 'G'.  */
8340       if (store_register_using_P (regcache, reg))
8341         return;
8342
8343       /* For now, don't complain if we have no way to write the
8344          register.  GDB loses track of unavailable registers too
8345          easily.  Some day, this may be an error.  We don't have
8346          any way to read the register, either...  */
8347       if (!reg->in_g_packet)
8348         return;
8349
8350       store_registers_using_G (regcache);
8351       return;
8352     }
8353
8354   store_registers_using_G (regcache);
8355
8356   for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8357     if (!rsa->regs[i].in_g_packet)
8358       if (!store_register_using_P (regcache, &rsa->regs[i]))
8359         /* See above for why we do not issue an error here.  */
8360         continue;
8361 }
8362 \f
8363
8364 /* Return the number of hex digits in num.  */
8365
8366 static int
8367 hexnumlen (ULONGEST num)
8368 {
8369   int i;
8370
8371   for (i = 0; num != 0; i++)
8372     num >>= 4;
8373
8374   return std::max (i, 1);
8375 }
8376
8377 /* Set BUF to the minimum number of hex digits representing NUM.  */
8378
8379 static int
8380 hexnumstr (char *buf, ULONGEST num)
8381 {
8382   int len = hexnumlen (num);
8383
8384   return hexnumnstr (buf, num, len);
8385 }
8386
8387
8388 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters.  */
8389
8390 static int
8391 hexnumnstr (char *buf, ULONGEST num, int width)
8392 {
8393   int i;
8394
8395   buf[width] = '\0';
8396
8397   for (i = width - 1; i >= 0; i--)
8398     {
8399       buf[i] = "0123456789abcdef"[(num & 0xf)];
8400       num >>= 4;
8401     }
8402
8403   return width;
8404 }
8405
8406 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits.  */
8407
8408 static CORE_ADDR
8409 remote_address_masked (CORE_ADDR addr)
8410 {
8411   unsigned int address_size = remote_address_size;
8412
8413   /* If "remoteaddresssize" was not set, default to target address size.  */
8414   if (!address_size)
8415     address_size = gdbarch_addr_bit (target_gdbarch ());
8416
8417   if (address_size > 0
8418       && address_size < (sizeof (ULONGEST) * 8))
8419     {
8420       /* Only create a mask when that mask can safely be constructed
8421          in a ULONGEST variable.  */
8422       ULONGEST mask = 1;
8423
8424       mask = (mask << address_size) - 1;
8425       addr &= mask;
8426     }
8427   return addr;
8428 }
8429
8430 /* Determine whether the remote target supports binary downloading.
8431    This is accomplished by sending a no-op memory write of zero length
8432    to the target at the specified address. It does not suffice to send
8433    the whole packet, since many stubs strip the eighth bit and
8434    subsequently compute a wrong checksum, which causes real havoc with
8435    remote_write_bytes.
8436
8437    NOTE: This can still lose if the serial line is not eight-bit
8438    clean.  In cases like this, the user should clear "remote
8439    X-packet".  */
8440
8441 void
8442 remote_target::check_binary_download (CORE_ADDR addr)
8443 {
8444   struct remote_state *rs = get_remote_state ();
8445
8446   switch (packet_support (PACKET_X))
8447     {
8448     case PACKET_DISABLE:
8449       break;
8450     case PACKET_ENABLE:
8451       break;
8452     case PACKET_SUPPORT_UNKNOWN:
8453       {
8454         char *p;
8455
8456         p = rs->buf.data ();
8457         *p++ = 'X';
8458         p += hexnumstr (p, (ULONGEST) addr);
8459         *p++ = ',';
8460         p += hexnumstr (p, (ULONGEST) 0);
8461         *p++ = ':';
8462         *p = '\0';
8463
8464         putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8465         getpkt (&rs->buf, 0);
8466
8467         if (rs->buf[0] == '\0')
8468           {
8469             if (remote_debug)
8470               fprintf_unfiltered (gdb_stdlog,
8471                                   "binary downloading NOT "
8472                                   "supported by target\n");
8473             remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
8474           }
8475         else
8476           {
8477             if (remote_debug)
8478               fprintf_unfiltered (gdb_stdlog,
8479                                   "binary downloading supported by target\n");
8480             remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
8481           }
8482         break;
8483       }
8484     }
8485 }
8486
8487 /* Helper function to resize the payload in order to try to get a good
8488    alignment.  We try to write an amount of data such that the next write will
8489    start on an address aligned on REMOTE_ALIGN_WRITES.  */
8490
8491 static int
8492 align_for_efficient_write (int todo, CORE_ADDR memaddr)
8493 {
8494   return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8495 }
8496
8497 /* Write memory data directly to the remote machine.
8498    This does not inform the data cache; the data cache uses this.
8499    HEADER is the starting part of the packet.
8500    MEMADDR is the address in the remote memory space.
8501    MYADDR is the address of the buffer in our space.
8502    LEN_UNITS is the number of addressable units to write.
8503    UNIT_SIZE is the length in bytes of an addressable unit.
8504    PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8505    should send data as binary ('X'), or hex-encoded ('M').
8506
8507    The function creates packet of the form
8508        <HEADER><ADDRESS>,<LENGTH>:<DATA>
8509
8510    where encoding of <DATA> is terminated by PACKET_FORMAT.
8511
8512    If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8513    are omitted.
8514
8515    Return the transferred status, error or OK (an
8516    'enum target_xfer_status' value).  Save the number of addressable units
8517    transferred in *XFERED_LEN_UNITS.  Only transfer a single packet.
8518
8519    On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8520    exchange between gdb and the stub could look like (?? in place of the
8521    checksum):
8522
8523    -> $m1000,4#??
8524    <- aaaabbbbccccdddd
8525
8526    -> $M1000,3:eeeeffffeeee#??
8527    <- OK
8528
8529    -> $m1000,4#??
8530    <- eeeeffffeeeedddd  */
8531
8532 target_xfer_status
8533 remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8534                                        const gdb_byte *myaddr,
8535                                        ULONGEST len_units,
8536                                        int unit_size,
8537                                        ULONGEST *xfered_len_units,
8538                                        char packet_format, int use_length)
8539 {
8540   struct remote_state *rs = get_remote_state ();
8541   char *p;
8542   char *plen = NULL;
8543   int plenlen = 0;
8544   int todo_units;
8545   int units_written;
8546   int payload_capacity_bytes;
8547   int payload_length_bytes;
8548
8549   if (packet_format != 'X' && packet_format != 'M')
8550     internal_error (__FILE__, __LINE__,
8551                     _("remote_write_bytes_aux: bad packet format"));
8552
8553   if (len_units == 0)
8554     return TARGET_XFER_EOF;
8555
8556   payload_capacity_bytes = get_memory_write_packet_size ();
8557
8558   /* The packet buffer will be large enough for the payload;
8559      get_memory_packet_size ensures this.  */
8560   rs->buf[0] = '\0';
8561
8562   /* Compute the size of the actual payload by subtracting out the
8563      packet header and footer overhead: "$M<memaddr>,<len>:...#nn".  */
8564
8565   payload_capacity_bytes -= strlen ("$,:#NN");
8566   if (!use_length)
8567     /* The comma won't be used.  */
8568     payload_capacity_bytes += 1;
8569   payload_capacity_bytes -= strlen (header);
8570   payload_capacity_bytes -= hexnumlen (memaddr);
8571
8572   /* Construct the packet excluding the data: "<header><memaddr>,<len>:".  */
8573
8574   strcat (rs->buf.data (), header);
8575   p = rs->buf.data () + strlen (header);
8576
8577   /* Compute a best guess of the number of bytes actually transfered.  */
8578   if (packet_format == 'X')
8579     {
8580       /* Best guess at number of bytes that will fit.  */
8581       todo_units = std::min (len_units,
8582                              (ULONGEST) payload_capacity_bytes / unit_size);
8583       if (use_length)
8584         payload_capacity_bytes -= hexnumlen (todo_units);
8585       todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
8586     }
8587   else
8588     {
8589       /* Number of bytes that will fit.  */
8590       todo_units
8591         = std::min (len_units,
8592                     (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
8593       if (use_length)
8594         payload_capacity_bytes -= hexnumlen (todo_units);
8595       todo_units = std::min (todo_units,
8596                              (payload_capacity_bytes / unit_size) / 2);
8597     }
8598
8599   if (todo_units <= 0)
8600     internal_error (__FILE__, __LINE__,
8601                     _("minimum packet size too small to write data"));
8602
8603   /* If we already need another packet, then try to align the end
8604      of this packet to a useful boundary.  */
8605   if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8606     todo_units = align_for_efficient_write (todo_units, memaddr);
8607
8608   /* Append "<memaddr>".  */
8609   memaddr = remote_address_masked (memaddr);
8610   p += hexnumstr (p, (ULONGEST) memaddr);
8611
8612   if (use_length)
8613     {
8614       /* Append ",".  */
8615       *p++ = ',';
8616
8617       /* Append the length and retain its location and size.  It may need to be
8618          adjusted once the packet body has been created.  */
8619       plen = p;
8620       plenlen = hexnumstr (p, (ULONGEST) todo_units);
8621       p += plenlen;
8622     }
8623
8624   /* Append ":".  */
8625   *p++ = ':';
8626   *p = '\0';
8627
8628   /* Append the packet body.  */
8629   if (packet_format == 'X')
8630     {
8631       /* Binary mode.  Send target system values byte by byte, in
8632          increasing byte addresses.  Only escape certain critical
8633          characters.  */
8634       payload_length_bytes =
8635           remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8636                                 &units_written, payload_capacity_bytes);
8637
8638       /* If not all TODO units fit, then we'll need another packet.  Make
8639          a second try to keep the end of the packet aligned.  Don't do
8640          this if the packet is tiny.  */
8641       if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
8642         {
8643           int new_todo_units;
8644
8645           new_todo_units = align_for_efficient_write (units_written, memaddr);
8646
8647           if (new_todo_units != units_written)
8648             payload_length_bytes =
8649                 remote_escape_output (myaddr, new_todo_units, unit_size,
8650                                       (gdb_byte *) p, &units_written,
8651                                       payload_capacity_bytes);
8652         }
8653
8654       p += payload_length_bytes;
8655       if (use_length && units_written < todo_units)
8656         {
8657           /* Escape chars have filled up the buffer prematurely,
8658              and we have actually sent fewer units than planned.
8659              Fix-up the length field of the packet.  Use the same
8660              number of characters as before.  */
8661           plen += hexnumnstr (plen, (ULONGEST) units_written,
8662                               plenlen);
8663           *plen = ':';  /* overwrite \0 from hexnumnstr() */
8664         }
8665     }
8666   else
8667     {
8668       /* Normal mode: Send target system values byte by byte, in
8669          increasing byte addresses.  Each byte is encoded as a two hex
8670          value.  */
8671       p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8672       units_written = todo_units;
8673     }
8674
8675   putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8676   getpkt (&rs->buf, 0);
8677
8678   if (rs->buf[0] == 'E')
8679     return TARGET_XFER_E_IO;
8680
8681   /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8682      send fewer units than we'd planned.  */
8683   *xfered_len_units = (ULONGEST) units_written;
8684   return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
8685 }
8686
8687 /* Write memory data directly to the remote machine.
8688    This does not inform the data cache; the data cache uses this.
8689    MEMADDR is the address in the remote memory space.
8690    MYADDR is the address of the buffer in our space.
8691    LEN is the number of bytes.
8692
8693    Return the transferred status, error or OK (an
8694    'enum target_xfer_status' value).  Save the number of bytes
8695    transferred in *XFERED_LEN.  Only transfer a single packet.  */
8696
8697 target_xfer_status
8698 remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8699                                    ULONGEST len, int unit_size,
8700                                    ULONGEST *xfered_len)
8701 {
8702   const char *packet_format = NULL;
8703
8704   /* Check whether the target supports binary download.  */
8705   check_binary_download (memaddr);
8706
8707   switch (packet_support (PACKET_X))
8708     {
8709     case PACKET_ENABLE:
8710       packet_format = "X";
8711       break;
8712     case PACKET_DISABLE:
8713       packet_format = "M";
8714       break;
8715     case PACKET_SUPPORT_UNKNOWN:
8716       internal_error (__FILE__, __LINE__,
8717                       _("remote_write_bytes: bad internal state"));
8718     default:
8719       internal_error (__FILE__, __LINE__, _("bad switch"));
8720     }
8721
8722   return remote_write_bytes_aux (packet_format,
8723                                  memaddr, myaddr, len, unit_size, xfered_len,
8724                                  packet_format[0], 1);
8725 }
8726
8727 /* Read memory data directly from the remote machine.
8728    This does not use the data cache; the data cache uses this.
8729    MEMADDR is the address in the remote memory space.
8730    MYADDR is the address of the buffer in our space.
8731    LEN_UNITS is the number of addressable memory units to read..
8732    UNIT_SIZE is the length in bytes of an addressable unit.
8733
8734    Return the transferred status, error or OK (an
8735    'enum target_xfer_status' value).  Save the number of bytes
8736    transferred in *XFERED_LEN_UNITS.
8737
8738    See the comment of remote_write_bytes_aux for an example of
8739    memory read/write exchange between gdb and the stub.  */
8740
8741 target_xfer_status
8742 remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8743                                     ULONGEST len_units,
8744                                     int unit_size, ULONGEST *xfered_len_units)
8745 {
8746   struct remote_state *rs = get_remote_state ();
8747   int buf_size_bytes;           /* Max size of packet output buffer.  */
8748   char *p;
8749   int todo_units;
8750   int decoded_bytes;
8751
8752   buf_size_bytes = get_memory_read_packet_size ();
8753   /* The packet buffer will be large enough for the payload;
8754      get_memory_packet_size ensures this.  */
8755
8756   /* Number of units that will fit.  */
8757   todo_units = std::min (len_units,
8758                          (ULONGEST) (buf_size_bytes / unit_size) / 2);
8759
8760   /* Construct "m"<memaddr>","<len>".  */
8761   memaddr = remote_address_masked (memaddr);
8762   p = rs->buf.data ();
8763   *p++ = 'm';
8764   p += hexnumstr (p, (ULONGEST) memaddr);
8765   *p++ = ',';
8766   p += hexnumstr (p, (ULONGEST) todo_units);
8767   *p = '\0';
8768   putpkt (rs->buf);
8769   getpkt (&rs->buf, 0);
8770   if (rs->buf[0] == 'E'
8771       && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8772       && rs->buf[3] == '\0')
8773     return TARGET_XFER_E_IO;
8774   /* Reply describes memory byte by byte, each byte encoded as two hex
8775      characters.  */
8776   p = rs->buf.data ();
8777   decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
8778   /* Return what we have.  Let higher layers handle partial reads.  */
8779   *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
8780   return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
8781 }
8782
8783 /* Using the set of read-only target sections of remote, read live
8784    read-only memory.
8785
8786    For interface/parameters/return description see target.h,
8787    to_xfer_partial.  */
8788
8789 target_xfer_status
8790 remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8791                                                   ULONGEST memaddr,
8792                                                   ULONGEST len,
8793                                                   int unit_size,
8794                                                   ULONGEST *xfered_len)
8795 {
8796   struct target_section *secp;
8797   struct target_section_table *table;
8798
8799   secp = target_section_by_addr (this, memaddr);
8800   if (secp != NULL
8801       && (bfd_get_section_flags (secp->the_bfd_section->owner,
8802                                  secp->the_bfd_section)
8803           & SEC_READONLY))
8804     {
8805       struct target_section *p;
8806       ULONGEST memend = memaddr + len;
8807
8808       table = target_get_section_table (this);
8809
8810       for (p = table->sections; p < table->sections_end; p++)
8811         {
8812           if (memaddr >= p->addr)
8813             {
8814               if (memend <= p->endaddr)
8815                 {
8816                   /* Entire transfer is within this section.  */
8817                   return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
8818                                               xfered_len);
8819                 }
8820               else if (memaddr >= p->endaddr)
8821                 {
8822                   /* This section ends before the transfer starts.  */
8823                   continue;
8824                 }
8825               else
8826                 {
8827                   /* This section overlaps the transfer.  Just do half.  */
8828                   len = p->endaddr - memaddr;
8829                   return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
8830                                               xfered_len);
8831                 }
8832             }
8833         }
8834     }
8835
8836   return TARGET_XFER_EOF;
8837 }
8838
8839 /* Similar to remote_read_bytes_1, but it reads from the remote stub
8840    first if the requested memory is unavailable in traceframe.
8841    Otherwise, fall back to remote_read_bytes_1.  */
8842
8843 target_xfer_status
8844 remote_target::remote_read_bytes (CORE_ADDR memaddr,
8845                                   gdb_byte *myaddr, ULONGEST len, int unit_size,
8846                                   ULONGEST *xfered_len)
8847 {
8848   if (len == 0)
8849     return TARGET_XFER_EOF;
8850
8851   if (get_traceframe_number () != -1)
8852     {
8853       std::vector<mem_range> available;
8854
8855       /* If we fail to get the set of available memory, then the
8856          target does not support querying traceframe info, and so we
8857          attempt reading from the traceframe anyway (assuming the
8858          target implements the old QTro packet then).  */
8859       if (traceframe_available_memory (&available, memaddr, len))
8860         {
8861           if (available.empty () || available[0].start != memaddr)
8862             {
8863               enum target_xfer_status res;
8864
8865               /* Don't read into the traceframe's available
8866                  memory.  */
8867               if (!available.empty ())
8868                 {
8869                   LONGEST oldlen = len;
8870
8871                   len = available[0].start - memaddr;
8872                   gdb_assert (len <= oldlen);
8873                 }
8874
8875               /* This goes through the topmost target again.  */
8876               res = remote_xfer_live_readonly_partial (myaddr, memaddr,
8877                                                        len, unit_size, xfered_len);
8878               if (res == TARGET_XFER_OK)
8879                 return TARGET_XFER_OK;
8880               else
8881                 {
8882                   /* No use trying further, we know some memory starting
8883                      at MEMADDR isn't available.  */
8884                   *xfered_len = len;
8885                   return (*xfered_len != 0) ?
8886                     TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8887                 }
8888             }
8889
8890           /* Don't try to read more than how much is available, in
8891              case the target implements the deprecated QTro packet to
8892              cater for older GDBs (the target's knowledge of read-only
8893              sections may be outdated by now).  */
8894           len = available[0].length;
8895         }
8896     }
8897
8898   return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
8899 }
8900
8901 \f
8902
8903 /* Sends a packet with content determined by the printf format string
8904    FORMAT and the remaining arguments, then gets the reply.  Returns
8905    whether the packet was a success, a failure, or unknown.  */
8906
8907 packet_result
8908 remote_target::remote_send_printf (const char *format, ...)
8909 {
8910   struct remote_state *rs = get_remote_state ();
8911   int max_size = get_remote_packet_size ();
8912   va_list ap;
8913
8914   va_start (ap, format);
8915
8916   rs->buf[0] = '\0';
8917   int size = vsnprintf (rs->buf.data (), max_size, format, ap);
8918
8919   va_end (ap);
8920
8921   if (size >= max_size)
8922     internal_error (__FILE__, __LINE__, _("Too long remote packet."));
8923
8924   if (putpkt (rs->buf) < 0)
8925     error (_("Communication problem with target."));
8926
8927   rs->buf[0] = '\0';
8928   getpkt (&rs->buf, 0);
8929
8930   return packet_check_result (rs->buf);
8931 }
8932
8933 /* Flash writing can take quite some time.  We'll set
8934    effectively infinite timeout for flash operations.
8935    In future, we'll need to decide on a better approach.  */
8936 static const int remote_flash_timeout = 1000;
8937
8938 void
8939 remote_target::flash_erase (ULONGEST address, LONGEST length)
8940 {
8941   int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
8942   enum packet_result ret;
8943   scoped_restore restore_timeout
8944     = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8945
8946   ret = remote_send_printf ("vFlashErase:%s,%s",
8947                             phex (address, addr_size),
8948                             phex (length, 4));
8949   switch (ret)
8950     {
8951     case PACKET_UNKNOWN:
8952       error (_("Remote target does not support flash erase"));
8953     case PACKET_ERROR:
8954       error (_("Error erasing flash with vFlashErase packet"));
8955     default:
8956       break;
8957     }
8958 }
8959
8960 target_xfer_status
8961 remote_target::remote_flash_write (ULONGEST address,
8962                                    ULONGEST length, ULONGEST *xfered_len,
8963                                    const gdb_byte *data)
8964 {
8965   scoped_restore restore_timeout
8966     = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8967   return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8968                                  xfered_len,'X', 0);
8969 }
8970
8971 void
8972 remote_target::flash_done ()
8973 {
8974   int ret;
8975
8976   scoped_restore restore_timeout
8977     = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8978
8979   ret = remote_send_printf ("vFlashDone");
8980
8981   switch (ret)
8982     {
8983     case PACKET_UNKNOWN:
8984       error (_("Remote target does not support vFlashDone"));
8985     case PACKET_ERROR:
8986       error (_("Error finishing flash operation"));
8987     default:
8988       break;
8989     }
8990 }
8991
8992 void
8993 remote_target::files_info ()
8994 {
8995   puts_filtered ("Debugging a target over a serial line.\n");
8996 }
8997 \f
8998 /* Stuff for dealing with the packets which are part of this protocol.
8999    See comment at top of file for details.  */
9000
9001 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9002    error to higher layers.  Called when a serial error is detected.
9003    The exception message is STRING, followed by a colon and a blank,
9004    the system error message for errno at function entry and final dot
9005    for output compatibility with throw_perror_with_name.  */
9006
9007 static void
9008 unpush_and_perror (const char *string)
9009 {
9010   int saved_errno = errno;
9011
9012   remote_unpush_target ();
9013   throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9014                safe_strerror (saved_errno));
9015 }
9016
9017 /* Read a single character from the remote end.  The current quit
9018    handler is overridden to avoid quitting in the middle of packet
9019    sequence, as that would break communication with the remote server.
9020    See remote_serial_quit_handler for more detail.  */
9021
9022 int
9023 remote_target::readchar (int timeout)
9024 {
9025   int ch;
9026   struct remote_state *rs = get_remote_state ();
9027
9028   {
9029     scoped_restore restore_quit_target
9030       = make_scoped_restore (&curr_quit_handler_target, this);
9031     scoped_restore restore_quit
9032       = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9033
9034     rs->got_ctrlc_during_io = 0;
9035
9036     ch = serial_readchar (rs->remote_desc, timeout);
9037
9038     if (rs->got_ctrlc_during_io)
9039       set_quit_flag ();
9040   }
9041
9042   if (ch >= 0)
9043     return ch;
9044
9045   switch ((enum serial_rc) ch)
9046     {
9047     case SERIAL_EOF:
9048       remote_unpush_target ();
9049       throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
9050       /* no return */
9051     case SERIAL_ERROR:
9052       unpush_and_perror (_("Remote communication error.  "
9053                            "Target disconnected."));
9054       /* no return */
9055     case SERIAL_TIMEOUT:
9056       break;
9057     }
9058   return ch;
9059 }
9060
9061 /* Wrapper for serial_write that closes the target and throws if
9062    writing fails.  The current quit handler is overridden to avoid
9063    quitting in the middle of packet sequence, as that would break
9064    communication with the remote server.  See
9065    remote_serial_quit_handler for more detail.  */
9066
9067 void
9068 remote_target::remote_serial_write (const char *str, int len)
9069 {
9070   struct remote_state *rs = get_remote_state ();
9071
9072   scoped_restore restore_quit_target
9073     = make_scoped_restore (&curr_quit_handler_target, this);
9074   scoped_restore restore_quit
9075     = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9076
9077   rs->got_ctrlc_during_io = 0;
9078
9079   if (serial_write (rs->remote_desc, str, len))
9080     {
9081       unpush_and_perror (_("Remote communication error.  "
9082                            "Target disconnected."));
9083     }
9084
9085   if (rs->got_ctrlc_during_io)
9086     set_quit_flag ();
9087 }
9088
9089 /* Return a string representing an escaped version of BUF, of len N.
9090    E.g. \n is converted to \\n, \t to \\t, etc.  */
9091
9092 static std::string
9093 escape_buffer (const char *buf, int n)
9094 {
9095   string_file stb;
9096
9097   stb.putstrn (buf, n, '\\');
9098   return std::move (stb.string ());
9099 }
9100
9101 /* Display a null-terminated packet on stdout, for debugging, using C
9102    string notation.  */
9103
9104 static void
9105 print_packet (const char *buf)
9106 {
9107   puts_filtered ("\"");
9108   fputstr_filtered (buf, '"', gdb_stdout);
9109   puts_filtered ("\"");
9110 }
9111
9112 int
9113 remote_target::putpkt (const char *buf)
9114 {
9115   return putpkt_binary (buf, strlen (buf));
9116 }
9117
9118 /* Wrapper around remote_target::putpkt to avoid exporting
9119    remote_target.  */
9120
9121 int
9122 putpkt (remote_target *remote, const char *buf)
9123 {
9124   return remote->putpkt (buf);
9125 }
9126
9127 /* Send a packet to the remote machine, with error checking.  The data
9128    of the packet is in BUF.  The string in BUF can be at most
9129    get_remote_packet_size () - 5 to account for the $, # and checksum,
9130    and for a possible /0 if we are debugging (remote_debug) and want
9131    to print the sent packet as a string.  */
9132
9133 int
9134 remote_target::putpkt_binary (const char *buf, int cnt)
9135 {
9136   struct remote_state *rs = get_remote_state ();
9137   int i;
9138   unsigned char csum = 0;
9139   gdb::def_vector<char> data (cnt + 6);
9140   char *buf2 = data.data ();
9141
9142   int ch;
9143   int tcount = 0;
9144   char *p;
9145
9146   /* Catch cases like trying to read memory or listing threads while
9147      we're waiting for a stop reply.  The remote server wouldn't be
9148      ready to handle this request, so we'd hang and timeout.  We don't
9149      have to worry about this in synchronous mode, because in that
9150      case it's not possible to issue a command while the target is
9151      running.  This is not a problem in non-stop mode, because in that
9152      case, the stub is always ready to process serial input.  */
9153   if (!target_is_non_stop_p ()
9154       && target_is_async_p ()
9155       && rs->waiting_for_stop_reply)
9156     {
9157       error (_("Cannot execute this command while the target is running.\n"
9158                "Use the \"interrupt\" command to stop the target\n"
9159                "and then try again."));
9160     }
9161
9162   /* We're sending out a new packet.  Make sure we don't look at a
9163      stale cached response.  */
9164   rs->cached_wait_status = 0;
9165
9166   /* Copy the packet into buffer BUF2, encapsulating it
9167      and giving it a checksum.  */
9168
9169   p = buf2;
9170   *p++ = '$';
9171
9172   for (i = 0; i < cnt; i++)
9173     {
9174       csum += buf[i];
9175       *p++ = buf[i];
9176     }
9177   *p++ = '#';
9178   *p++ = tohex ((csum >> 4) & 0xf);
9179   *p++ = tohex (csum & 0xf);
9180
9181   /* Send it over and over until we get a positive ack.  */
9182
9183   while (1)
9184     {
9185       int started_error_output = 0;
9186
9187       if (remote_debug)
9188         {
9189           *p = '\0';
9190
9191           int len = (int) (p - buf2);
9192
9193           std::string str
9194             = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9195
9196           fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9197
9198           if (len > REMOTE_DEBUG_MAX_CHAR)
9199             fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9200                                 len - REMOTE_DEBUG_MAX_CHAR);
9201
9202           fprintf_unfiltered (gdb_stdlog, "...");
9203
9204           gdb_flush (gdb_stdlog);
9205         }
9206       remote_serial_write (buf2, p - buf2);
9207
9208       /* If this is a no acks version of the remote protocol, send the
9209          packet and move on.  */
9210       if (rs->noack_mode)
9211         break;
9212
9213       /* Read until either a timeout occurs (-2) or '+' is read.
9214          Handle any notification that arrives in the mean time.  */
9215       while (1)
9216         {
9217           ch = readchar (remote_timeout);
9218
9219           if (remote_debug)
9220             {
9221               switch (ch)
9222                 {
9223                 case '+':
9224                 case '-':
9225                 case SERIAL_TIMEOUT:
9226                 case '$':
9227                 case '%':
9228                   if (started_error_output)
9229                     {
9230                       putchar_unfiltered ('\n');
9231                       started_error_output = 0;
9232                     }
9233                 }
9234             }
9235
9236           switch (ch)
9237             {
9238             case '+':
9239               if (remote_debug)
9240                 fprintf_unfiltered (gdb_stdlog, "Ack\n");
9241               return 1;
9242             case '-':
9243               if (remote_debug)
9244                 fprintf_unfiltered (gdb_stdlog, "Nak\n");
9245               /* FALLTHROUGH */
9246             case SERIAL_TIMEOUT:
9247               tcount++;
9248               if (tcount > 3)
9249                 return 0;
9250               break;            /* Retransmit buffer.  */
9251             case '$':
9252               {
9253                 if (remote_debug)
9254                   fprintf_unfiltered (gdb_stdlog,
9255                                       "Packet instead of Ack, ignoring it\n");
9256                 /* It's probably an old response sent because an ACK
9257                    was lost.  Gobble up the packet and ack it so it
9258                    doesn't get retransmitted when we resend this
9259                    packet.  */
9260                 skip_frame ();
9261                 remote_serial_write ("+", 1);
9262                 continue;       /* Now, go look for +.  */
9263               }
9264
9265             case '%':
9266               {
9267                 int val;
9268
9269                 /* If we got a notification, handle it, and go back to looking
9270                    for an ack.  */
9271                 /* We've found the start of a notification.  Now
9272                    collect the data.  */
9273                 val = read_frame (&rs->buf);
9274                 if (val >= 0)
9275                   {
9276                     if (remote_debug)
9277                       {
9278                         std::string str = escape_buffer (rs->buf.data (), val);
9279
9280                         fprintf_unfiltered (gdb_stdlog,
9281                                             "  Notification received: %s\n",
9282                                             str.c_str ());
9283                       }
9284                     handle_notification (rs->notif_state, rs->buf.data ());
9285                     /* We're in sync now, rewait for the ack.  */
9286                     tcount = 0;
9287                   }
9288                 else
9289                   {
9290                     if (remote_debug)
9291                       {
9292                         if (!started_error_output)
9293                           {
9294                             started_error_output = 1;
9295                             fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9296                           }
9297                         fputc_unfiltered (ch & 0177, gdb_stdlog);
9298                         fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
9299                       }
9300                   }
9301                 continue;
9302               }
9303               /* fall-through */
9304             default:
9305               if (remote_debug)
9306                 {
9307                   if (!started_error_output)
9308                     {
9309                       started_error_output = 1;
9310                       fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9311                     }
9312                   fputc_unfiltered (ch & 0177, gdb_stdlog);
9313                 }
9314               continue;
9315             }
9316           break;                /* Here to retransmit.  */
9317         }
9318
9319 #if 0
9320       /* This is wrong.  If doing a long backtrace, the user should be
9321          able to get out next time we call QUIT, without anything as
9322          violent as interrupt_query.  If we want to provide a way out of
9323          here without getting to the next QUIT, it should be based on
9324          hitting ^C twice as in remote_wait.  */
9325       if (quit_flag)
9326         {
9327           quit_flag = 0;
9328           interrupt_query ();
9329         }
9330 #endif
9331     }
9332
9333   return 0;
9334 }
9335
9336 /* Come here after finding the start of a frame when we expected an
9337    ack.  Do our best to discard the rest of this packet.  */
9338
9339 void
9340 remote_target::skip_frame ()
9341 {
9342   int c;
9343
9344   while (1)
9345     {
9346       c = readchar (remote_timeout);
9347       switch (c)
9348         {
9349         case SERIAL_TIMEOUT:
9350           /* Nothing we can do.  */
9351           return;
9352         case '#':
9353           /* Discard the two bytes of checksum and stop.  */
9354           c = readchar (remote_timeout);
9355           if (c >= 0)
9356             c = readchar (remote_timeout);
9357
9358           return;
9359         case '*':               /* Run length encoding.  */
9360           /* Discard the repeat count.  */
9361           c = readchar (remote_timeout);
9362           if (c < 0)
9363             return;
9364           break;
9365         default:
9366           /* A regular character.  */
9367           break;
9368         }
9369     }
9370 }
9371
9372 /* Come here after finding the start of the frame.  Collect the rest
9373    into *BUF, verifying the checksum, length, and handling run-length
9374    compression.  NUL terminate the buffer.  If there is not enough room,
9375    expand *BUF.
9376
9377    Returns -1 on error, number of characters in buffer (ignoring the
9378    trailing NULL) on success. (could be extended to return one of the
9379    SERIAL status indications).  */
9380
9381 long
9382 remote_target::read_frame (gdb::char_vector *buf_p)
9383 {
9384   unsigned char csum;
9385   long bc;
9386   int c;
9387   char *buf = buf_p->data ();
9388   struct remote_state *rs = get_remote_state ();
9389
9390   csum = 0;
9391   bc = 0;
9392
9393   while (1)
9394     {
9395       c = readchar (remote_timeout);
9396       switch (c)
9397         {
9398         case SERIAL_TIMEOUT:
9399           if (remote_debug)
9400             fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
9401           return -1;
9402         case '$':
9403           if (remote_debug)
9404             fputs_filtered ("Saw new packet start in middle of old one\n",
9405                             gdb_stdlog);
9406           return -1;            /* Start a new packet, count retries.  */
9407         case '#':
9408           {
9409             unsigned char pktcsum;
9410             int check_0 = 0;
9411             int check_1 = 0;
9412
9413             buf[bc] = '\0';
9414
9415             check_0 = readchar (remote_timeout);
9416             if (check_0 >= 0)
9417               check_1 = readchar (remote_timeout);
9418
9419             if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9420               {
9421                 if (remote_debug)
9422                   fputs_filtered ("Timeout in checksum, retrying\n",
9423                                   gdb_stdlog);
9424                 return -1;
9425               }
9426             else if (check_0 < 0 || check_1 < 0)
9427               {
9428                 if (remote_debug)
9429                   fputs_filtered ("Communication error in checksum\n",
9430                                   gdb_stdlog);
9431                 return -1;
9432               }
9433
9434             /* Don't recompute the checksum; with no ack packets we
9435                don't have any way to indicate a packet retransmission
9436                is necessary.  */
9437             if (rs->noack_mode)
9438               return bc;
9439
9440             pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
9441             if (csum == pktcsum)
9442               return bc;
9443
9444             if (remote_debug)
9445               {
9446                 std::string str = escape_buffer (buf, bc);
9447
9448                 fprintf_unfiltered (gdb_stdlog,
9449                                     "Bad checksum, sentsum=0x%x, "
9450                                     "csum=0x%x, buf=%s\n",
9451                                     pktcsum, csum, str.c_str ());
9452               }
9453             /* Number of characters in buffer ignoring trailing
9454                NULL.  */
9455             return -1;
9456           }
9457         case '*':               /* Run length encoding.  */
9458           {
9459             int repeat;
9460
9461             csum += c;
9462             c = readchar (remote_timeout);
9463             csum += c;
9464             repeat = c - ' ' + 3;       /* Compute repeat count.  */
9465
9466             /* The character before ``*'' is repeated.  */
9467
9468             if (repeat > 0 && repeat <= 255 && bc > 0)
9469               {
9470                 if (bc + repeat - 1 >= buf_p->size () - 1)
9471                   {
9472                     /* Make some more room in the buffer.  */
9473                     buf_p->resize (buf_p->size () + repeat);
9474                     buf = buf_p->data ();
9475                   }
9476
9477                 memset (&buf[bc], buf[bc - 1], repeat);
9478                 bc += repeat;
9479                 continue;
9480               }
9481
9482             buf[bc] = '\0';
9483             printf_filtered (_("Invalid run length encoding: %s\n"), buf);
9484             return -1;
9485           }
9486         default:
9487           if (bc >= buf_p->size () - 1)
9488             {
9489               /* Make some more room in the buffer.  */
9490               buf_p->resize (buf_p->size () * 2);
9491               buf = buf_p->data ();
9492             }
9493
9494           buf[bc++] = c;
9495           csum += c;
9496           continue;
9497         }
9498     }
9499 }
9500
9501 /* Read a packet from the remote machine, with error checking, and
9502    store it in *BUF.  Resize *BUF if necessary to hold the result.  If
9503    FOREVER, wait forever rather than timing out; this is used (in
9504    synchronous mode) to wait for a target that is is executing user
9505    code to stop.  */
9506 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9507    don't have to change all the calls to getpkt to deal with the
9508    return value, because at the moment I don't know what the right
9509    thing to do it for those.  */
9510
9511 void
9512 remote_target::getpkt (gdb::char_vector *buf, int forever)
9513 {
9514   getpkt_sane (buf, forever);
9515 }
9516
9517
9518 /* Read a packet from the remote machine, with error checking, and
9519    store it in *BUF.  Resize *BUF if necessary to hold the result.  If
9520    FOREVER, wait forever rather than timing out; this is used (in
9521    synchronous mode) to wait for a target that is is executing user
9522    code to stop.  If FOREVER == 0, this function is allowed to time
9523    out gracefully and return an indication of this to the caller.
9524    Otherwise return the number of bytes read.  If EXPECTING_NOTIF,
9525    consider receiving a notification enough reason to return to the
9526    caller.  *IS_NOTIF is an output boolean that indicates whether *BUF
9527    holds a notification or not (a regular packet).  */
9528
9529 int
9530 remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
9531                                        int forever, int expecting_notif,
9532                                        int *is_notif)
9533 {
9534   struct remote_state *rs = get_remote_state ();
9535   int c;
9536   int tries;
9537   int timeout;
9538   int val = -1;
9539
9540   /* We're reading a new response.  Make sure we don't look at a
9541      previously cached response.  */
9542   rs->cached_wait_status = 0;
9543
9544   strcpy (buf->data (), "timeout");
9545
9546   if (forever)
9547     timeout = watchdog > 0 ? watchdog : -1;
9548   else if (expecting_notif)
9549     timeout = 0; /* There should already be a char in the buffer.  If
9550                     not, bail out.  */
9551   else
9552     timeout = remote_timeout;
9553
9554 #define MAX_TRIES 3
9555
9556   /* Process any number of notifications, and then return when
9557      we get a packet.  */
9558   for (;;)
9559     {
9560       /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9561          times.  */
9562       for (tries = 1; tries <= MAX_TRIES; tries++)
9563         {
9564           /* This can loop forever if the remote side sends us
9565              characters continuously, but if it pauses, we'll get
9566              SERIAL_TIMEOUT from readchar because of timeout.  Then
9567              we'll count that as a retry.
9568
9569              Note that even when forever is set, we will only wait
9570              forever prior to the start of a packet.  After that, we
9571              expect characters to arrive at a brisk pace.  They should
9572              show up within remote_timeout intervals.  */
9573           do
9574             c = readchar (timeout);
9575           while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
9576
9577           if (c == SERIAL_TIMEOUT)
9578             {
9579               if (expecting_notif)
9580                 return -1; /* Don't complain, it's normal to not get
9581                               anything in this case.  */
9582
9583               if (forever)      /* Watchdog went off?  Kill the target.  */
9584                 {
9585                   remote_unpush_target ();
9586                   throw_error (TARGET_CLOSE_ERROR,
9587                                _("Watchdog timeout has expired.  "
9588                                  "Target detached."));
9589                 }
9590               if (remote_debug)
9591                 fputs_filtered ("Timed out.\n", gdb_stdlog);
9592             }
9593           else
9594             {
9595               /* We've found the start of a packet or notification.
9596                  Now collect the data.  */
9597               val = read_frame (buf);
9598               if (val >= 0)
9599                 break;
9600             }
9601
9602           remote_serial_write ("-", 1);
9603         }
9604
9605       if (tries > MAX_TRIES)
9606         {
9607           /* We have tried hard enough, and just can't receive the
9608              packet/notification.  Give up.  */
9609           printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9610
9611           /* Skip the ack char if we're in no-ack mode.  */
9612           if (!rs->noack_mode)
9613             remote_serial_write ("+", 1);
9614           return -1;
9615         }
9616
9617       /* If we got an ordinary packet, return that to our caller.  */
9618       if (c == '$')
9619         {
9620           if (remote_debug)
9621             {
9622               std::string str
9623                 = escape_buffer (buf->data (),
9624                                  std::min (val, REMOTE_DEBUG_MAX_CHAR));
9625
9626               fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9627                                   str.c_str ());
9628
9629               if (val > REMOTE_DEBUG_MAX_CHAR)
9630                 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9631                                     val - REMOTE_DEBUG_MAX_CHAR);
9632
9633               fprintf_unfiltered (gdb_stdlog, "\n");
9634             }
9635
9636           /* Skip the ack char if we're in no-ack mode.  */
9637           if (!rs->noack_mode)
9638             remote_serial_write ("+", 1);
9639           if (is_notif != NULL)
9640             *is_notif = 0;
9641           return val;
9642         }
9643
9644        /* If we got a notification, handle it, and go back to looking
9645          for a packet.  */
9646       else
9647         {
9648           gdb_assert (c == '%');
9649
9650           if (remote_debug)
9651             {
9652               std::string str = escape_buffer (buf->data (), val);
9653
9654               fprintf_unfiltered (gdb_stdlog,
9655                                   "  Notification received: %s\n",
9656                                   str.c_str ());
9657             }
9658           if (is_notif != NULL)
9659             *is_notif = 1;
9660
9661           handle_notification (rs->notif_state, buf->data ());
9662
9663           /* Notifications require no acknowledgement.  */
9664
9665           if (expecting_notif)
9666             return val;
9667         }
9668     }
9669 }
9670
9671 int
9672 remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
9673 {
9674   return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
9675 }
9676
9677 int
9678 remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
9679                                      int *is_notif)
9680 {
9681   return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
9682 }
9683
9684 /* Kill any new fork children of process PID that haven't been
9685    processed by follow_fork.  */
9686
9687 void
9688 remote_target::kill_new_fork_children (int pid)
9689 {
9690   remote_state *rs = get_remote_state ();
9691   struct notif_client *notif = &notif_client_stop;
9692
9693   /* Kill the fork child threads of any threads in process PID
9694      that are stopped at a fork event.  */
9695   for (thread_info *thread : all_non_exited_threads ())
9696     {
9697       struct target_waitstatus *ws = &thread->pending_follow;
9698
9699       if (is_pending_fork_parent (ws, pid, thread->ptid))
9700         {
9701           int child_pid = ws->value.related_pid.pid ();
9702           int res;
9703
9704           res = remote_vkill (child_pid);
9705           if (res != 0)
9706             error (_("Can't kill fork child process %d"), child_pid);
9707         }
9708     }
9709
9710   /* Check for any pending fork events (not reported or processed yet)
9711      in process PID and kill those fork child threads as well.  */
9712   remote_notif_get_pending_events (notif);
9713   for (auto &event : rs->stop_reply_queue)
9714     if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9715       {
9716         int child_pid = event->ws.value.related_pid.pid ();
9717         int res;
9718
9719         res = remote_vkill (child_pid);
9720         if (res != 0)
9721           error (_("Can't kill fork child process %d"), child_pid);
9722       }
9723 }
9724
9725 \f
9726 /* Target hook to kill the current inferior.  */
9727
9728 void
9729 remote_target::kill ()
9730 {
9731   int res = -1;
9732   int pid = inferior_ptid.pid ();
9733   struct remote_state *rs = get_remote_state ();
9734
9735   if (packet_support (PACKET_vKill) != PACKET_DISABLE)
9736     {
9737       /* If we're stopped while forking and we haven't followed yet,
9738          kill the child task.  We need to do this before killing the
9739          parent task because if this is a vfork then the parent will
9740          be sleeping.  */
9741       kill_new_fork_children (pid);
9742
9743       res = remote_vkill (pid);
9744       if (res == 0)
9745         {
9746           target_mourn_inferior (inferior_ptid);
9747           return;
9748         }
9749     }
9750
9751   /* If we are in 'target remote' mode and we are killing the only
9752      inferior, then we will tell gdbserver to exit and unpush the
9753      target.  */
9754   if (res == -1 && !remote_multi_process_p (rs)
9755       && number_of_live_inferiors () == 1)
9756     {
9757       remote_kill_k ();
9758
9759       /* We've killed the remote end, we get to mourn it.  If we are
9760          not in extended mode, mourning the inferior also unpushes
9761          remote_ops from the target stack, which closes the remote
9762          connection.  */
9763       target_mourn_inferior (inferior_ptid);
9764
9765       return;
9766     }
9767
9768   error (_("Can't kill process"));
9769 }
9770
9771 /* Send a kill request to the target using the 'vKill' packet.  */
9772
9773 int
9774 remote_target::remote_vkill (int pid)
9775 {
9776   if (packet_support (PACKET_vKill) == PACKET_DISABLE)
9777     return -1;
9778
9779   remote_state *rs = get_remote_state ();
9780
9781   /* Tell the remote target to detach.  */
9782   xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
9783   putpkt (rs->buf);
9784   getpkt (&rs->buf, 0);
9785
9786   switch (packet_ok (rs->buf,
9787                      &remote_protocol_packets[PACKET_vKill]))
9788     {
9789     case PACKET_OK:
9790       return 0;
9791     case PACKET_ERROR:
9792       return 1;
9793     case PACKET_UNKNOWN:
9794       return -1;
9795     default:
9796       internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9797     }
9798 }
9799
9800 /* Send a kill request to the target using the 'k' packet.  */
9801
9802 void
9803 remote_target::remote_kill_k ()
9804 {
9805   /* Catch errors so the user can quit from gdb even when we
9806      aren't on speaking terms with the remote system.  */
9807   TRY
9808     {
9809       putpkt ("k");
9810     }
9811   CATCH (ex, RETURN_MASK_ERROR)
9812     {
9813       if (ex.error == TARGET_CLOSE_ERROR)
9814         {
9815           /* If we got an (EOF) error that caused the target
9816              to go away, then we're done, that's what we wanted.
9817              "k" is susceptible to cause a premature EOF, given
9818              that the remote server isn't actually required to
9819              reply to "k", and it can happen that it doesn't
9820              even get to reply ACK to the "k".  */
9821           return;
9822         }
9823
9824       /* Otherwise, something went wrong.  We didn't actually kill
9825          the target.  Just propagate the exception, and let the
9826          user or higher layers decide what to do.  */
9827       throw_exception (ex);
9828     }
9829   END_CATCH
9830 }
9831
9832 void
9833 remote_target::mourn_inferior ()
9834 {
9835   struct remote_state *rs = get_remote_state ();
9836
9837   /* We're no longer interested in notification events of an inferior
9838      that exited or was killed/detached.  */
9839   discard_pending_stop_replies (current_inferior ());
9840
9841   /* In 'target remote' mode with one inferior, we close the connection.  */
9842   if (!rs->extended && number_of_live_inferiors () <= 1)
9843     {
9844       unpush_target (this);
9845
9846       /* remote_close takes care of doing most of the clean up.  */
9847       generic_mourn_inferior ();
9848       return;
9849     }
9850
9851   /* In case we got here due to an error, but we're going to stay
9852      connected.  */
9853   rs->waiting_for_stop_reply = 0;
9854
9855   /* If the current general thread belonged to the process we just
9856      detached from or has exited, the remote side current general
9857      thread becomes undefined.  Considering a case like this:
9858
9859      - We just got here due to a detach.
9860      - The process that we're detaching from happens to immediately
9861        report a global breakpoint being hit in non-stop mode, in the
9862        same thread we had selected before.
9863      - GDB attaches to this process again.
9864      - This event happens to be the next event we handle.
9865
9866      GDB would consider that the current general thread didn't need to
9867      be set on the stub side (with Hg), since for all it knew,
9868      GENERAL_THREAD hadn't changed.
9869
9870      Notice that although in all-stop mode, the remote server always
9871      sets the current thread to the thread reporting the stop event,
9872      that doesn't happen in non-stop mode; in non-stop, the stub *must
9873      not* change the current thread when reporting a breakpoint hit,
9874      due to the decoupling of event reporting and event handling.
9875
9876      To keep things simple, we always invalidate our notion of the
9877      current thread.  */
9878   record_currthread (rs, minus_one_ptid);
9879
9880   /* Call common code to mark the inferior as not running.  */
9881   generic_mourn_inferior ();
9882
9883   if (!have_inferiors ())
9884     {
9885       if (!remote_multi_process_p (rs))
9886         {
9887           /* Check whether the target is running now - some remote stubs
9888              automatically restart after kill.  */
9889           putpkt ("?");
9890           getpkt (&rs->buf, 0);
9891
9892           if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9893             {
9894               /* Assume that the target has been restarted.  Set
9895                  inferior_ptid so that bits of core GDB realizes
9896                  there's something here, e.g., so that the user can
9897                  say "kill" again.  */
9898               inferior_ptid = magic_null_ptid;
9899             }
9900         }
9901     }
9902 }
9903
9904 bool
9905 extended_remote_target::supports_disable_randomization ()
9906 {
9907   return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
9908 }
9909
9910 void
9911 remote_target::extended_remote_disable_randomization (int val)
9912 {
9913   struct remote_state *rs = get_remote_state ();
9914   char *reply;
9915
9916   xsnprintf (rs->buf.data (), get_remote_packet_size (),
9917              "QDisableRandomization:%x", val);
9918   putpkt (rs->buf);
9919   reply = remote_get_noisy_reply ();
9920   if (*reply == '\0')
9921     error (_("Target does not support QDisableRandomization."));
9922   if (strcmp (reply, "OK") != 0)
9923     error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9924 }
9925
9926 int
9927 remote_target::extended_remote_run (const std::string &args)
9928 {
9929   struct remote_state *rs = get_remote_state ();
9930   int len;
9931   const char *remote_exec_file = get_remote_exec_file ();
9932
9933   /* If the user has disabled vRun support, or we have detected that
9934      support is not available, do not try it.  */
9935   if (packet_support (PACKET_vRun) == PACKET_DISABLE)
9936     return -1;
9937
9938   strcpy (rs->buf.data (), "vRun;");
9939   len = strlen (rs->buf.data ());
9940
9941   if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9942     error (_("Remote file name too long for run packet"));
9943   len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9944                       strlen (remote_exec_file));
9945
9946   if (!args.empty ())
9947     {
9948       int i;
9949
9950       gdb_argv argv (args.c_str ());
9951       for (i = 0; argv[i] != NULL; i++)
9952         {
9953           if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9954             error (_("Argument list too long for run packet"));
9955           rs->buf[len++] = ';';
9956           len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9957                               strlen (argv[i]));
9958         }
9959     }
9960
9961   rs->buf[len++] = '\0';
9962
9963   putpkt (rs->buf);
9964   getpkt (&rs->buf, 0);
9965
9966   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
9967     {
9968     case PACKET_OK:
9969       /* We have a wait response.  All is well.  */
9970       return 0;
9971     case PACKET_UNKNOWN:
9972       return -1;
9973     case PACKET_ERROR:
9974       if (remote_exec_file[0] == '\0')
9975         error (_("Running the default executable on the remote target failed; "
9976                  "try \"set remote exec-file\"?"));
9977       else
9978         error (_("Running \"%s\" on the remote target failed"),
9979                remote_exec_file);
9980     default:
9981       gdb_assert_not_reached (_("bad switch"));
9982     }
9983 }
9984
9985 /* Helper function to send set/unset environment packets.  ACTION is
9986    either "set" or "unset".  PACKET is either "QEnvironmentHexEncoded"
9987    or "QEnvironmentUnsetVariable".  VALUE is the variable to be
9988    sent.  */
9989
9990 void
9991 remote_target::send_environment_packet (const char *action,
9992                                         const char *packet,
9993                                         const char *value)
9994 {
9995   remote_state *rs = get_remote_state ();
9996
9997   /* Convert the environment variable to an hex string, which
9998      is the best format to be transmitted over the wire.  */
9999   std::string encoded_value = bin2hex ((const gdb_byte *) value,
10000                                          strlen (value));
10001
10002   xsnprintf (rs->buf.data (), get_remote_packet_size (),
10003              "%s:%s", packet, encoded_value.c_str ());
10004
10005   putpkt (rs->buf);
10006   getpkt (&rs->buf, 0);
10007   if (strcmp (rs->buf.data (), "OK") != 0)
10008     warning (_("Unable to %s environment variable '%s' on remote."),
10009              action, value);
10010 }
10011
10012 /* Helper function to handle the QEnvironment* packets.  */
10013
10014 void
10015 remote_target::extended_remote_environment_support ()
10016 {
10017   remote_state *rs = get_remote_state ();
10018
10019   if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10020     {
10021       putpkt ("QEnvironmentReset");
10022       getpkt (&rs->buf, 0);
10023       if (strcmp (rs->buf.data (), "OK") != 0)
10024         warning (_("Unable to reset environment on remote."));
10025     }
10026
10027   gdb_environ *e = &current_inferior ()->environment;
10028
10029   if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10030     for (const std::string &el : e->user_set_env ())
10031       send_environment_packet ("set", "QEnvironmentHexEncoded",
10032                                el.c_str ());
10033
10034   if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10035     for (const std::string &el : e->user_unset_env ())
10036       send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
10037 }
10038
10039 /* Helper function to set the current working directory for the
10040    inferior in the remote target.  */
10041
10042 void
10043 remote_target::extended_remote_set_inferior_cwd ()
10044 {
10045   if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10046     {
10047       const char *inferior_cwd = get_inferior_cwd ();
10048       remote_state *rs = get_remote_state ();
10049
10050       if (inferior_cwd != NULL)
10051         {
10052           std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10053                                          strlen (inferior_cwd));
10054
10055           xsnprintf (rs->buf.data (), get_remote_packet_size (),
10056                      "QSetWorkingDir:%s", hexpath.c_str ());
10057         }
10058       else
10059         {
10060           /* An empty inferior_cwd means that the user wants us to
10061              reset the remote server's inferior's cwd.  */
10062           xsnprintf (rs->buf.data (), get_remote_packet_size (),
10063                      "QSetWorkingDir:");
10064         }
10065
10066       putpkt (rs->buf);
10067       getpkt (&rs->buf, 0);
10068       if (packet_ok (rs->buf,
10069                      &remote_protocol_packets[PACKET_QSetWorkingDir])
10070           != PACKET_OK)
10071         error (_("\
10072 Remote replied unexpectedly while setting the inferior's working\n\
10073 directory: %s"),
10074                rs->buf.data ());
10075
10076     }
10077 }
10078
10079 /* In the extended protocol we want to be able to do things like
10080    "run" and have them basically work as expected.  So we need
10081    a special create_inferior function.  We support changing the
10082    executable file and the command line arguments, but not the
10083    environment.  */
10084
10085 void
10086 extended_remote_target::create_inferior (const char *exec_file,
10087                                          const std::string &args,
10088                                          char **env, int from_tty)
10089 {
10090   int run_worked;
10091   char *stop_reply;
10092   struct remote_state *rs = get_remote_state ();
10093   const char *remote_exec_file = get_remote_exec_file ();
10094
10095   /* If running asynchronously, register the target file descriptor
10096      with the event loop.  */
10097   if (target_can_async_p ())
10098     target_async (1);
10099
10100   /* Disable address space randomization if requested (and supported).  */
10101   if (supports_disable_randomization ())
10102     extended_remote_disable_randomization (disable_randomization);
10103
10104   /* If startup-with-shell is on, we inform gdbserver to start the
10105      remote inferior using a shell.  */
10106   if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10107     {
10108       xsnprintf (rs->buf.data (), get_remote_packet_size (),
10109                  "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10110       putpkt (rs->buf);
10111       getpkt (&rs->buf, 0);
10112       if (strcmp (rs->buf.data (), "OK") != 0)
10113         error (_("\
10114 Remote replied unexpectedly while setting startup-with-shell: %s"),
10115                rs->buf.data ());
10116     }
10117
10118   extended_remote_environment_support ();
10119
10120   extended_remote_set_inferior_cwd ();
10121
10122   /* Now restart the remote server.  */
10123   run_worked = extended_remote_run (args) != -1;
10124   if (!run_worked)
10125     {
10126       /* vRun was not supported.  Fail if we need it to do what the
10127          user requested.  */
10128       if (remote_exec_file[0])
10129         error (_("Remote target does not support \"set remote exec-file\""));
10130       if (!args.empty ())
10131         error (_("Remote target does not support \"set args\" or run ARGS"));
10132
10133       /* Fall back to "R".  */
10134       extended_remote_restart ();
10135     }
10136
10137   /* vRun's success return is a stop reply.  */
10138   stop_reply = run_worked ? rs->buf.data () : NULL;
10139   add_current_inferior_and_thread (stop_reply);
10140
10141   /* Get updated offsets, if the stub uses qOffsets.  */
10142   get_offsets ();
10143 }
10144 \f
10145
10146 /* Given a location's target info BP_TGT and the packet buffer BUF,  output
10147    the list of conditions (in agent expression bytecode format), if any, the
10148    target needs to evaluate.  The output is placed into the packet buffer
10149    started from BUF and ended at BUF_END.  */
10150
10151 static int
10152 remote_add_target_side_condition (struct gdbarch *gdbarch,
10153                                   struct bp_target_info *bp_tgt, char *buf,
10154                                   char *buf_end)
10155 {
10156   if (bp_tgt->conditions.empty ())
10157     return 0;
10158
10159   buf += strlen (buf);
10160   xsnprintf (buf, buf_end - buf, "%s", ";");
10161   buf++;
10162
10163   /* Send conditions to the target.  */
10164   for (agent_expr *aexpr : bp_tgt->conditions)
10165     {
10166       xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
10167       buf += strlen (buf);
10168       for (int i = 0; i < aexpr->len; ++i)
10169         buf = pack_hex_byte (buf, aexpr->buf[i]);
10170       *buf = '\0';
10171     }
10172   return 0;
10173 }
10174
10175 static void
10176 remote_add_target_side_commands (struct gdbarch *gdbarch,
10177                                  struct bp_target_info *bp_tgt, char *buf)
10178 {
10179   if (bp_tgt->tcommands.empty ())
10180     return;
10181
10182   buf += strlen (buf);
10183
10184   sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10185   buf += strlen (buf);
10186
10187   /* Concatenate all the agent expressions that are commands into the
10188      cmds parameter.  */
10189   for (agent_expr *aexpr : bp_tgt->tcommands)
10190     {
10191       sprintf (buf, "X%x,", aexpr->len);
10192       buf += strlen (buf);
10193       for (int i = 0; i < aexpr->len; ++i)
10194         buf = pack_hex_byte (buf, aexpr->buf[i]);
10195       *buf = '\0';
10196     }
10197 }
10198
10199 /* Insert a breakpoint.  On targets that have software breakpoint
10200    support, we ask the remote target to do the work; on targets
10201    which don't, we insert a traditional memory breakpoint.  */
10202
10203 int
10204 remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10205                                   struct bp_target_info *bp_tgt)
10206 {
10207   /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10208      If it succeeds, then set the support to PACKET_ENABLE.  If it
10209      fails, and the user has explicitly requested the Z support then
10210      report an error, otherwise, mark it disabled and go on.  */
10211
10212   if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10213     {
10214       CORE_ADDR addr = bp_tgt->reqstd_address;
10215       struct remote_state *rs;
10216       char *p, *endbuf;
10217
10218       /* Make sure the remote is pointing at the right process, if
10219          necessary.  */
10220       if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10221         set_general_process ();
10222
10223       rs = get_remote_state ();
10224       p = rs->buf.data ();
10225       endbuf = p + get_remote_packet_size ();
10226
10227       *(p++) = 'Z';
10228       *(p++) = '0';
10229       *(p++) = ',';
10230       addr = (ULONGEST) remote_address_masked (addr);
10231       p += hexnumstr (p, addr);
10232       xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10233
10234       if (supports_evaluation_of_breakpoint_conditions ())
10235         remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10236
10237       if (can_run_breakpoint_commands ())
10238         remote_add_target_side_commands (gdbarch, bp_tgt, p);
10239
10240       putpkt (rs->buf);
10241       getpkt (&rs->buf, 0);
10242
10243       switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
10244         {
10245         case PACKET_ERROR:
10246           return -1;
10247         case PACKET_OK:
10248           return 0;
10249         case PACKET_UNKNOWN:
10250           break;
10251         }
10252     }
10253
10254   /* If this breakpoint has target-side commands but this stub doesn't
10255      support Z0 packets, throw error.  */
10256   if (!bp_tgt->tcommands.empty ())
10257     throw_error (NOT_SUPPORTED_ERROR, _("\
10258 Target doesn't support breakpoints that have target side commands."));
10259
10260   return memory_insert_breakpoint (this, gdbarch, bp_tgt);
10261 }
10262
10263 int
10264 remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10265                                   struct bp_target_info *bp_tgt,
10266                                   enum remove_bp_reason reason)
10267 {
10268   CORE_ADDR addr = bp_tgt->placed_address;
10269   struct remote_state *rs = get_remote_state ();
10270
10271   if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10272     {
10273       char *p = rs->buf.data ();
10274       char *endbuf = p + get_remote_packet_size ();
10275
10276       /* Make sure the remote is pointing at the right process, if
10277          necessary.  */
10278       if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10279         set_general_process ();
10280
10281       *(p++) = 'z';
10282       *(p++) = '0';
10283       *(p++) = ',';
10284
10285       addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10286       p += hexnumstr (p, addr);
10287       xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10288
10289       putpkt (rs->buf);
10290       getpkt (&rs->buf, 0);
10291
10292       return (rs->buf[0] == 'E');
10293     }
10294
10295   return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
10296 }
10297
10298 static enum Z_packet_type
10299 watchpoint_to_Z_packet (int type)
10300 {
10301   switch (type)
10302     {
10303     case hw_write:
10304       return Z_PACKET_WRITE_WP;
10305       break;
10306     case hw_read:
10307       return Z_PACKET_READ_WP;
10308       break;
10309     case hw_access:
10310       return Z_PACKET_ACCESS_WP;
10311       break;
10312     default:
10313       internal_error (__FILE__, __LINE__,
10314                       _("hw_bp_to_z: bad watchpoint type %d"), type);
10315     }
10316 }
10317
10318 int
10319 remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10320                                   enum target_hw_bp_type type, struct expression *cond)
10321 {
10322   struct remote_state *rs = get_remote_state ();
10323   char *endbuf = rs->buf.data () + get_remote_packet_size ();
10324   char *p;
10325   enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10326
10327   if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10328     return 1;
10329
10330   /* Make sure the remote is pointing at the right process, if
10331      necessary.  */
10332   if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10333     set_general_process ();
10334
10335   xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10336   p = strchr (rs->buf.data (), '\0');
10337   addr = remote_address_masked (addr);
10338   p += hexnumstr (p, (ULONGEST) addr);
10339   xsnprintf (p, endbuf - p, ",%x", len);
10340
10341   putpkt (rs->buf);
10342   getpkt (&rs->buf, 0);
10343
10344   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10345     {
10346     case PACKET_ERROR:
10347       return -1;
10348     case PACKET_UNKNOWN:
10349       return 1;
10350     case PACKET_OK:
10351       return 0;
10352     }
10353   internal_error (__FILE__, __LINE__,
10354                   _("remote_insert_watchpoint: reached end of function"));
10355 }
10356
10357 bool
10358 remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10359                                              CORE_ADDR start, int length)
10360 {
10361   CORE_ADDR diff = remote_address_masked (addr - start);
10362
10363   return diff < length;
10364 }
10365
10366
10367 int
10368 remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10369                                   enum target_hw_bp_type type, struct expression *cond)
10370 {
10371   struct remote_state *rs = get_remote_state ();
10372   char *endbuf = rs->buf.data () + get_remote_packet_size ();
10373   char *p;
10374   enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10375
10376   if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10377     return -1;
10378
10379   /* Make sure the remote is pointing at the right process, if
10380      necessary.  */
10381   if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10382     set_general_process ();
10383
10384   xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10385   p = strchr (rs->buf.data (), '\0');
10386   addr = remote_address_masked (addr);
10387   p += hexnumstr (p, (ULONGEST) addr);
10388   xsnprintf (p, endbuf - p, ",%x", len);
10389   putpkt (rs->buf);
10390   getpkt (&rs->buf, 0);
10391
10392   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10393     {
10394     case PACKET_ERROR:
10395     case PACKET_UNKNOWN:
10396       return -1;
10397     case PACKET_OK:
10398       return 0;
10399     }
10400   internal_error (__FILE__, __LINE__,
10401                   _("remote_remove_watchpoint: reached end of function"));
10402 }
10403
10404
10405 int remote_hw_watchpoint_limit = -1;
10406 int remote_hw_watchpoint_length_limit = -1;
10407 int remote_hw_breakpoint_limit = -1;
10408
10409 int
10410 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
10411 {
10412   if (remote_hw_watchpoint_length_limit == 0)
10413     return 0;
10414   else if (remote_hw_watchpoint_length_limit < 0)
10415     return 1;
10416   else if (len <= remote_hw_watchpoint_length_limit)
10417     return 1;
10418   else
10419     return 0;
10420 }
10421
10422 int
10423 remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
10424 {
10425   if (type == bp_hardware_breakpoint)
10426     {
10427       if (remote_hw_breakpoint_limit == 0)
10428         return 0;
10429       else if (remote_hw_breakpoint_limit < 0)
10430         return 1;
10431       else if (cnt <= remote_hw_breakpoint_limit)
10432         return 1;
10433     }
10434   else
10435     {
10436       if (remote_hw_watchpoint_limit == 0)
10437         return 0;
10438       else if (remote_hw_watchpoint_limit < 0)
10439         return 1;
10440       else if (ot)
10441         return -1;
10442       else if (cnt <= remote_hw_watchpoint_limit)
10443         return 1;
10444     }
10445   return -1;
10446 }
10447
10448 /* The to_stopped_by_sw_breakpoint method of target remote.  */
10449
10450 bool
10451 remote_target::stopped_by_sw_breakpoint ()
10452 {
10453   struct thread_info *thread = inferior_thread ();
10454
10455   return (thread->priv != NULL
10456           && (get_remote_thread_info (thread)->stop_reason
10457               == TARGET_STOPPED_BY_SW_BREAKPOINT));
10458 }
10459
10460 /* The to_supports_stopped_by_sw_breakpoint method of target
10461    remote.  */
10462
10463 bool
10464 remote_target::supports_stopped_by_sw_breakpoint ()
10465 {
10466   return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10467 }
10468
10469 /* The to_stopped_by_hw_breakpoint method of target remote.  */
10470
10471 bool
10472 remote_target::stopped_by_hw_breakpoint ()
10473 {
10474   struct thread_info *thread = inferior_thread ();
10475
10476   return (thread->priv != NULL
10477           && (get_remote_thread_info (thread)->stop_reason
10478               == TARGET_STOPPED_BY_HW_BREAKPOINT));
10479 }
10480
10481 /* The to_supports_stopped_by_hw_breakpoint method of target
10482    remote.  */
10483
10484 bool
10485 remote_target::supports_stopped_by_hw_breakpoint ()
10486 {
10487   return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10488 }
10489
10490 bool
10491 remote_target::stopped_by_watchpoint ()
10492 {
10493   struct thread_info *thread = inferior_thread ();
10494
10495   return (thread->priv != NULL
10496           && (get_remote_thread_info (thread)->stop_reason
10497               == TARGET_STOPPED_BY_WATCHPOINT));
10498 }
10499
10500 bool
10501 remote_target::stopped_data_address (CORE_ADDR *addr_p)
10502 {
10503   struct thread_info *thread = inferior_thread ();
10504
10505   if (thread->priv != NULL
10506       && (get_remote_thread_info (thread)->stop_reason
10507           == TARGET_STOPPED_BY_WATCHPOINT))
10508     {
10509       *addr_p = get_remote_thread_info (thread)->watch_data_address;
10510       return true;
10511     }
10512
10513   return false;
10514 }
10515
10516
10517 int
10518 remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10519                                      struct bp_target_info *bp_tgt)
10520 {
10521   CORE_ADDR addr = bp_tgt->reqstd_address;
10522   struct remote_state *rs;
10523   char *p, *endbuf;
10524   char *message;
10525
10526   if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10527     return -1;
10528
10529   /* Make sure the remote is pointing at the right process, if
10530      necessary.  */
10531   if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10532     set_general_process ();
10533
10534   rs = get_remote_state ();
10535   p = rs->buf.data ();
10536   endbuf = p + get_remote_packet_size ();
10537
10538   *(p++) = 'Z';
10539   *(p++) = '1';
10540   *(p++) = ',';
10541
10542   addr = remote_address_masked (addr);
10543   p += hexnumstr (p, (ULONGEST) addr);
10544   xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10545
10546   if (supports_evaluation_of_breakpoint_conditions ())
10547     remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10548
10549   if (can_run_breakpoint_commands ())
10550     remote_add_target_side_commands (gdbarch, bp_tgt, p);
10551
10552   putpkt (rs->buf);
10553   getpkt (&rs->buf, 0);
10554
10555   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10556     {
10557     case PACKET_ERROR:
10558       if (rs->buf[1] == '.')
10559         {
10560           message = strchr (&rs->buf[2], '.');
10561           if (message)
10562             error (_("Remote failure reply: %s"), message + 1);
10563         }
10564       return -1;
10565     case PACKET_UNKNOWN:
10566       return -1;
10567     case PACKET_OK:
10568       return 0;
10569     }
10570   internal_error (__FILE__, __LINE__,
10571                   _("remote_insert_hw_breakpoint: reached end of function"));
10572 }
10573
10574
10575 int
10576 remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10577                                      struct bp_target_info *bp_tgt)
10578 {
10579   CORE_ADDR addr;
10580   struct remote_state *rs = get_remote_state ();
10581   char *p = rs->buf.data ();
10582   char *endbuf = p + get_remote_packet_size ();
10583
10584   if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10585     return -1;
10586
10587   /* Make sure the remote is pointing at the right process, if
10588      necessary.  */
10589   if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10590     set_general_process ();
10591
10592   *(p++) = 'z';
10593   *(p++) = '1';
10594   *(p++) = ',';
10595
10596   addr = remote_address_masked (bp_tgt->placed_address);
10597   p += hexnumstr (p, (ULONGEST) addr);
10598   xsnprintf (p, endbuf  - p, ",%x", bp_tgt->kind);
10599
10600   putpkt (rs->buf);
10601   getpkt (&rs->buf, 0);
10602
10603   switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10604     {
10605     case PACKET_ERROR:
10606     case PACKET_UNKNOWN:
10607       return -1;
10608     case PACKET_OK:
10609       return 0;
10610     }
10611   internal_error (__FILE__, __LINE__,
10612                   _("remote_remove_hw_breakpoint: reached end of function"));
10613 }
10614
10615 /* Verify memory using the "qCRC:" request.  */
10616
10617 int
10618 remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10619 {
10620   struct remote_state *rs = get_remote_state ();
10621   unsigned long host_crc, target_crc;
10622   char *tmp;
10623
10624   /* It doesn't make sense to use qCRC if the remote target is
10625      connected but not running.  */
10626   if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10627     {
10628       enum packet_result result;
10629
10630       /* Make sure the remote is pointing at the right process.  */
10631       set_general_process ();
10632
10633       /* FIXME: assumes lma can fit into long.  */
10634       xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
10635                  (long) lma, (long) size);
10636       putpkt (rs->buf);
10637
10638       /* Be clever; compute the host_crc before waiting for target
10639          reply.  */
10640       host_crc = xcrc32 (data, size, 0xffffffff);
10641
10642       getpkt (&rs->buf, 0);
10643
10644       result = packet_ok (rs->buf,
10645                           &remote_protocol_packets[PACKET_qCRC]);
10646       if (result == PACKET_ERROR)
10647         return -1;
10648       else if (result == PACKET_OK)
10649         {
10650           for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10651             target_crc = target_crc * 16 + fromhex (*tmp);
10652
10653           return (host_crc == target_crc);
10654         }
10655     }
10656
10657   return simple_verify_memory (this, data, lma, size);
10658 }
10659
10660 /* compare-sections command
10661
10662    With no arguments, compares each loadable section in the exec bfd
10663    with the same memory range on the target, and reports mismatches.
10664    Useful for verifying the image on the target against the exec file.  */
10665
10666 static void
10667 compare_sections_command (const char *args, int from_tty)
10668 {
10669   asection *s;
10670   const char *sectname;
10671   bfd_size_type size;
10672   bfd_vma lma;
10673   int matched = 0;
10674   int mismatched = 0;
10675   int res;
10676   int read_only = 0;
10677
10678   if (!exec_bfd)
10679     error (_("command cannot be used without an exec file"));
10680
10681   if (args != NULL && strcmp (args, "-r") == 0)
10682     {
10683       read_only = 1;
10684       args = NULL;
10685     }
10686
10687   for (s = exec_bfd->sections; s; s = s->next)
10688     {
10689       if (!(s->flags & SEC_LOAD))
10690         continue;               /* Skip non-loadable section.  */
10691
10692       if (read_only && (s->flags & SEC_READONLY) == 0)
10693         continue;               /* Skip writeable sections */
10694
10695       size = bfd_get_section_size (s);
10696       if (size == 0)
10697         continue;               /* Skip zero-length section.  */
10698
10699       sectname = bfd_get_section_name (exec_bfd, s);
10700       if (args && strcmp (args, sectname) != 0)
10701         continue;               /* Not the section selected by user.  */
10702
10703       matched = 1;              /* Do this section.  */
10704       lma = s->lma;
10705
10706       gdb::byte_vector sectdata (size);
10707       bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
10708
10709       res = target_verify_memory (sectdata.data (), lma, size);
10710
10711       if (res == -1)
10712         error (_("target memory fault, section %s, range %s -- %s"), sectname,
10713                paddress (target_gdbarch (), lma),
10714                paddress (target_gdbarch (), lma + size));
10715
10716       printf_filtered ("Section %s, range %s -- %s: ", sectname,
10717                        paddress (target_gdbarch (), lma),
10718                        paddress (target_gdbarch (), lma + size));
10719       if (res)
10720         printf_filtered ("matched.\n");
10721       else
10722         {
10723           printf_filtered ("MIS-MATCHED!\n");
10724           mismatched++;
10725         }
10726     }
10727   if (mismatched > 0)
10728     warning (_("One or more sections of the target image does not match\n\
10729 the loaded file\n"));
10730   if (args && !matched)
10731     printf_filtered (_("No loaded section named '%s'.\n"), args);
10732 }
10733
10734 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10735    into remote target.  The number of bytes written to the remote
10736    target is returned, or -1 for error.  */
10737
10738 target_xfer_status
10739 remote_target::remote_write_qxfer (const char *object_name,
10740                                    const char *annex, const gdb_byte *writebuf,
10741                                    ULONGEST offset, LONGEST len,
10742                                    ULONGEST *xfered_len,
10743                                    struct packet_config *packet)
10744 {
10745   int i, buf_len;
10746   ULONGEST n;
10747   struct remote_state *rs = get_remote_state ();
10748   int max_size = get_memory_write_packet_size (); 
10749
10750   if (packet_config_support (packet) == PACKET_DISABLE)
10751     return TARGET_XFER_E_IO;
10752
10753   /* Insert header.  */
10754   i = snprintf (rs->buf.data (), max_size, 
10755                 "qXfer:%s:write:%s:%s:",
10756                 object_name, annex ? annex : "",
10757                 phex_nz (offset, sizeof offset));
10758   max_size -= (i + 1);
10759
10760   /* Escape as much data as fits into rs->buf.  */
10761   buf_len = remote_escape_output 
10762     (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
10763
10764   if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10765       || getpkt_sane (&rs->buf, 0) < 0
10766       || packet_ok (rs->buf, packet) != PACKET_OK)
10767     return TARGET_XFER_E_IO;
10768
10769   unpack_varlen_hex (rs->buf.data (), &n);
10770
10771   *xfered_len = n;
10772   return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
10773 }
10774
10775 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10776    Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10777    number of bytes read is returned, or 0 for EOF, or -1 for error.
10778    The number of bytes read may be less than LEN without indicating an
10779    EOF.  PACKET is checked and updated to indicate whether the remote
10780    target supports this object.  */
10781
10782 target_xfer_status
10783 remote_target::remote_read_qxfer (const char *object_name,
10784                                   const char *annex,
10785                                   gdb_byte *readbuf, ULONGEST offset,
10786                                   LONGEST len,
10787                                   ULONGEST *xfered_len,
10788                                   struct packet_config *packet)
10789 {
10790   struct remote_state *rs = get_remote_state ();
10791   LONGEST i, n, packet_len;
10792
10793   if (packet_config_support (packet) == PACKET_DISABLE)
10794     return TARGET_XFER_E_IO;
10795
10796   /* Check whether we've cached an end-of-object packet that matches
10797      this request.  */
10798   if (rs->finished_object)
10799     {
10800       if (strcmp (object_name, rs->finished_object) == 0
10801           && strcmp (annex ? annex : "", rs->finished_annex) == 0
10802           && offset == rs->finished_offset)
10803         return TARGET_XFER_EOF;
10804
10805
10806       /* Otherwise, we're now reading something different.  Discard
10807          the cache.  */
10808       xfree (rs->finished_object);
10809       xfree (rs->finished_annex);
10810       rs->finished_object = NULL;
10811       rs->finished_annex = NULL;
10812     }
10813
10814   /* Request only enough to fit in a single packet.  The actual data
10815      may not, since we don't know how much of it will need to be escaped;
10816      the target is free to respond with slightly less data.  We subtract
10817      five to account for the response type and the protocol frame.  */
10818   n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
10819   snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10820             "qXfer:%s:read:%s:%s,%s",
10821             object_name, annex ? annex : "",
10822             phex_nz (offset, sizeof offset),
10823             phex_nz (n, sizeof n));
10824   i = putpkt (rs->buf);
10825   if (i < 0)
10826     return TARGET_XFER_E_IO;
10827
10828   rs->buf[0] = '\0';
10829   packet_len = getpkt_sane (&rs->buf, 0);
10830   if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
10831     return TARGET_XFER_E_IO;
10832
10833   if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10834     error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
10835
10836   /* 'm' means there is (or at least might be) more data after this
10837      batch.  That does not make sense unless there's at least one byte
10838      of data in this reply.  */
10839   if (rs->buf[0] == 'm' && packet_len == 1)
10840     error (_("Remote qXfer reply contained no data."));
10841
10842   /* Got some data.  */
10843   i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
10844                              packet_len - 1, readbuf, n);
10845
10846   /* 'l' is an EOF marker, possibly including a final block of data,
10847      or possibly empty.  If we have the final block of a non-empty
10848      object, record this fact to bypass a subsequent partial read.  */
10849   if (rs->buf[0] == 'l' && offset + i > 0)
10850     {
10851       rs->finished_object = xstrdup (object_name);
10852       rs->finished_annex = xstrdup (annex ? annex : "");
10853       rs->finished_offset = offset + i;
10854     }
10855
10856   if (i == 0)
10857     return TARGET_XFER_EOF;
10858   else
10859     {
10860       *xfered_len = i;
10861       return TARGET_XFER_OK;
10862     }
10863 }
10864
10865 enum target_xfer_status
10866 remote_target::xfer_partial (enum target_object object,
10867                              const char *annex, gdb_byte *readbuf,
10868                              const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10869                              ULONGEST *xfered_len)
10870 {
10871   struct remote_state *rs;
10872   int i;
10873   char *p2;
10874   char query_type;
10875   int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
10876
10877   set_remote_traceframe ();
10878   set_general_thread (inferior_ptid);
10879
10880   rs = get_remote_state ();
10881
10882   /* Handle memory using the standard memory routines.  */
10883   if (object == TARGET_OBJECT_MEMORY)
10884     {
10885       /* If the remote target is connected but not running, we should
10886          pass this request down to a lower stratum (e.g. the executable
10887          file).  */
10888       if (!target_has_execution)
10889         return TARGET_XFER_EOF;
10890
10891       if (writebuf != NULL)
10892         return remote_write_bytes (offset, writebuf, len, unit_size,
10893                                    xfered_len);
10894       else
10895         return remote_read_bytes (offset, readbuf, len, unit_size,
10896                                   xfered_len);
10897     }
10898
10899   /* Handle SPU memory using qxfer packets.  */
10900   if (object == TARGET_OBJECT_SPU)
10901     {
10902       if (readbuf)
10903         return remote_read_qxfer ("spu", annex, readbuf, offset, len,
10904                                   xfered_len, &remote_protocol_packets
10905                                   [PACKET_qXfer_spu_read]);
10906       else
10907         return remote_write_qxfer ("spu", annex, writebuf, offset, len,
10908                                    xfered_len, &remote_protocol_packets
10909                                    [PACKET_qXfer_spu_write]);
10910     }
10911
10912   /* Handle extra signal info using qxfer packets.  */
10913   if (object == TARGET_OBJECT_SIGNAL_INFO)
10914     {
10915       if (readbuf)
10916         return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
10917                                   xfered_len, &remote_protocol_packets
10918                                   [PACKET_qXfer_siginfo_read]);
10919       else
10920         return remote_write_qxfer ("siginfo", annex,
10921                                    writebuf, offset, len, xfered_len,
10922                                    &remote_protocol_packets
10923                                    [PACKET_qXfer_siginfo_write]);
10924     }
10925
10926   if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10927     {
10928       if (readbuf)
10929         return remote_read_qxfer ("statictrace", annex,
10930                                   readbuf, offset, len, xfered_len,
10931                                   &remote_protocol_packets
10932                                   [PACKET_qXfer_statictrace_read]);
10933       else
10934         return TARGET_XFER_E_IO;
10935     }
10936
10937   /* Only handle flash writes.  */
10938   if (writebuf != NULL)
10939     {
10940       switch (object)
10941         {
10942         case TARGET_OBJECT_FLASH:
10943           return remote_flash_write (offset, len, xfered_len,
10944                                      writebuf);
10945
10946         default:
10947           return TARGET_XFER_E_IO;
10948         }
10949     }
10950
10951   /* Map pre-existing objects onto letters.  DO NOT do this for new
10952      objects!!!  Instead specify new query packets.  */
10953   switch (object)
10954     {
10955     case TARGET_OBJECT_AVR:
10956       query_type = 'R';
10957       break;
10958
10959     case TARGET_OBJECT_AUXV:
10960       gdb_assert (annex == NULL);
10961       return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
10962                                 xfered_len,
10963                                 &remote_protocol_packets[PACKET_qXfer_auxv]);
10964
10965     case TARGET_OBJECT_AVAILABLE_FEATURES:
10966       return remote_read_qxfer
10967         ("features", annex, readbuf, offset, len, xfered_len,
10968          &remote_protocol_packets[PACKET_qXfer_features]);
10969
10970     case TARGET_OBJECT_LIBRARIES:
10971       return remote_read_qxfer
10972         ("libraries", annex, readbuf, offset, len, xfered_len,
10973          &remote_protocol_packets[PACKET_qXfer_libraries]);
10974
10975     case TARGET_OBJECT_LIBRARIES_SVR4:
10976       return remote_read_qxfer
10977         ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
10978          &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10979
10980     case TARGET_OBJECT_MEMORY_MAP:
10981       gdb_assert (annex == NULL);
10982       return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
10983                                  xfered_len,
10984                                 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10985
10986     case TARGET_OBJECT_OSDATA:
10987       /* Should only get here if we're connected.  */
10988       gdb_assert (rs->remote_desc);
10989       return remote_read_qxfer
10990         ("osdata", annex, readbuf, offset, len, xfered_len,
10991         &remote_protocol_packets[PACKET_qXfer_osdata]);
10992
10993     case TARGET_OBJECT_THREADS:
10994       gdb_assert (annex == NULL);
10995       return remote_read_qxfer ("threads", annex, readbuf, offset, len,
10996                                 xfered_len,
10997                                 &remote_protocol_packets[PACKET_qXfer_threads]);
10998
10999     case TARGET_OBJECT_TRACEFRAME_INFO:
11000       gdb_assert (annex == NULL);
11001       return remote_read_qxfer
11002         ("traceframe-info", annex, readbuf, offset, len, xfered_len,
11003          &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
11004
11005     case TARGET_OBJECT_FDPIC:
11006       return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
11007                                 xfered_len,
11008                                 &remote_protocol_packets[PACKET_qXfer_fdpic]);
11009
11010     case TARGET_OBJECT_OPENVMS_UIB:
11011       return remote_read_qxfer ("uib", annex, readbuf, offset, len,
11012                                 xfered_len,
11013                                 &remote_protocol_packets[PACKET_qXfer_uib]);
11014
11015     case TARGET_OBJECT_BTRACE:
11016       return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
11017                                 xfered_len,
11018         &remote_protocol_packets[PACKET_qXfer_btrace]);
11019
11020     case TARGET_OBJECT_BTRACE_CONF:
11021       return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
11022                                 len, xfered_len,
11023         &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11024
11025     case TARGET_OBJECT_EXEC_FILE:
11026       return remote_read_qxfer ("exec-file", annex, readbuf, offset,
11027                                 len, xfered_len,
11028         &remote_protocol_packets[PACKET_qXfer_exec_file]);
11029
11030     default:
11031       return TARGET_XFER_E_IO;
11032     }
11033
11034   /* Minimum outbuf size is get_remote_packet_size ().  If LEN is not
11035      large enough let the caller deal with it.  */
11036   if (len < get_remote_packet_size ())
11037     return TARGET_XFER_E_IO;
11038   len = get_remote_packet_size ();
11039
11040   /* Except for querying the minimum buffer size, target must be open.  */
11041   if (!rs->remote_desc)
11042     error (_("remote query is only available after target open"));
11043
11044   gdb_assert (annex != NULL);
11045   gdb_assert (readbuf != NULL);
11046
11047   p2 = rs->buf.data ();
11048   *p2++ = 'q';
11049   *p2++ = query_type;
11050
11051   /* We used one buffer char for the remote protocol q command and
11052      another for the query type.  As the remote protocol encapsulation
11053      uses 4 chars plus one extra in case we are debugging
11054      (remote_debug), we have PBUFZIZ - 7 left to pack the query
11055      string.  */
11056   i = 0;
11057   while (annex[i] && (i < (get_remote_packet_size () - 8)))
11058     {
11059       /* Bad caller may have sent forbidden characters.  */
11060       gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11061       *p2++ = annex[i];
11062       i++;
11063     }
11064   *p2 = '\0';
11065   gdb_assert (annex[i] == '\0');
11066
11067   i = putpkt (rs->buf);
11068   if (i < 0)
11069     return TARGET_XFER_E_IO;
11070
11071   getpkt (&rs->buf, 0);
11072   strcpy ((char *) readbuf, rs->buf.data ());
11073
11074   *xfered_len = strlen ((char *) readbuf);
11075   return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11076 }
11077
11078 /* Implementation of to_get_memory_xfer_limit.  */
11079
11080 ULONGEST
11081 remote_target::get_memory_xfer_limit ()
11082 {
11083   return get_memory_write_packet_size ();
11084 }
11085
11086 int
11087 remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11088                               const gdb_byte *pattern, ULONGEST pattern_len,
11089                               CORE_ADDR *found_addrp)
11090 {
11091   int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
11092   struct remote_state *rs = get_remote_state ();
11093   int max_size = get_memory_write_packet_size ();
11094   struct packet_config *packet =
11095     &remote_protocol_packets[PACKET_qSearch_memory];
11096   /* Number of packet bytes used to encode the pattern;
11097      this could be more than PATTERN_LEN due to escape characters.  */
11098   int escaped_pattern_len;
11099   /* Amount of pattern that was encodable in the packet.  */
11100   int used_pattern_len;
11101   int i;
11102   int found;
11103   ULONGEST found_addr;
11104
11105   /* Don't go to the target if we don't have to.  This is done before
11106      checking packet_config_support to avoid the possibility that a
11107      success for this edge case means the facility works in
11108      general.  */
11109   if (pattern_len > search_space_len)
11110     return 0;
11111   if (pattern_len == 0)
11112     {
11113       *found_addrp = start_addr;
11114       return 1;
11115     }
11116
11117   /* If we already know the packet isn't supported, fall back to the simple
11118      way of searching memory.  */
11119
11120   if (packet_config_support (packet) == PACKET_DISABLE)
11121     {
11122       /* Target doesn't provided special support, fall back and use the
11123          standard support (copy memory and do the search here).  */
11124       return simple_search_memory (this, start_addr, search_space_len,
11125                                    pattern, pattern_len, found_addrp);
11126     }
11127
11128   /* Make sure the remote is pointing at the right process.  */
11129   set_general_process ();
11130
11131   /* Insert header.  */
11132   i = snprintf (rs->buf.data (), max_size, 
11133                 "qSearch:memory:%s;%s;",
11134                 phex_nz (start_addr, addr_size),
11135                 phex_nz (search_space_len, sizeof (search_space_len)));
11136   max_size -= (i + 1);
11137
11138   /* Escape as much data as fits into rs->buf.  */
11139   escaped_pattern_len =
11140     remote_escape_output (pattern, pattern_len, 1,
11141                           (gdb_byte *) rs->buf.data () + i,
11142                           &used_pattern_len, max_size);
11143
11144   /* Bail if the pattern is too large.  */
11145   if (used_pattern_len != pattern_len)
11146     error (_("Pattern is too large to transmit to remote target."));
11147
11148   if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11149       || getpkt_sane (&rs->buf, 0) < 0
11150       || packet_ok (rs->buf, packet) != PACKET_OK)
11151     {
11152       /* The request may not have worked because the command is not
11153          supported.  If so, fall back to the simple way.  */
11154       if (packet_config_support (packet) == PACKET_DISABLE)
11155         {
11156           return simple_search_memory (this, start_addr, search_space_len,
11157                                        pattern, pattern_len, found_addrp);
11158         }
11159       return -1;
11160     }
11161
11162   if (rs->buf[0] == '0')
11163     found = 0;
11164   else if (rs->buf[0] == '1')
11165     {
11166       found = 1;
11167       if (rs->buf[1] != ',')
11168         error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11169       unpack_varlen_hex (&rs->buf[2], &found_addr);
11170       *found_addrp = found_addr;
11171     }
11172   else
11173     error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11174
11175   return found;
11176 }
11177
11178 void
11179 remote_target::rcmd (const char *command, struct ui_file *outbuf)
11180 {
11181   struct remote_state *rs = get_remote_state ();
11182   char *p = rs->buf.data ();
11183
11184   if (!rs->remote_desc)
11185     error (_("remote rcmd is only available after target open"));
11186
11187   /* Send a NULL command across as an empty command.  */
11188   if (command == NULL)
11189     command = "";
11190
11191   /* The query prefix.  */
11192   strcpy (rs->buf.data (), "qRcmd,");
11193   p = strchr (rs->buf.data (), '\0');
11194
11195   if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
11196       > get_remote_packet_size ())
11197     error (_("\"monitor\" command ``%s'' is too long."), command);
11198
11199   /* Encode the actual command.  */
11200   bin2hex ((const gdb_byte *) command, p, strlen (command));
11201
11202   if (putpkt (rs->buf) < 0)
11203     error (_("Communication problem with target."));
11204
11205   /* get/display the response */
11206   while (1)
11207     {
11208       char *buf;
11209
11210       /* XXX - see also remote_get_noisy_reply().  */
11211       QUIT;                     /* Allow user to bail out with ^C.  */
11212       rs->buf[0] = '\0';
11213       if (getpkt_sane (&rs->buf, 0) == -1)
11214         { 
11215           /* Timeout.  Continue to (try to) read responses.
11216              This is better than stopping with an error, assuming the stub
11217              is still executing the (long) monitor command.
11218              If needed, the user can interrupt gdb using C-c, obtaining
11219              an effect similar to stop on timeout.  */
11220           continue;
11221         }
11222       buf = rs->buf.data ();
11223       if (buf[0] == '\0')
11224         error (_("Target does not support this command."));
11225       if (buf[0] == 'O' && buf[1] != 'K')
11226         {
11227           remote_console_output (buf + 1); /* 'O' message from stub.  */
11228           continue;
11229         }
11230       if (strcmp (buf, "OK") == 0)
11231         break;
11232       if (strlen (buf) == 3 && buf[0] == 'E'
11233           && isdigit (buf[1]) && isdigit (buf[2]))
11234         {
11235           error (_("Protocol error with Rcmd"));
11236         }
11237       for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11238         {
11239           char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
11240
11241           fputc_unfiltered (c, outbuf);
11242         }
11243       break;
11244     }
11245 }
11246
11247 std::vector<mem_region>
11248 remote_target::memory_map ()
11249 {
11250   std::vector<mem_region> result;
11251   gdb::optional<gdb::char_vector> text
11252     = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
11253
11254   if (text)
11255     result = parse_memory_map (text->data ());
11256
11257   return result;
11258 }
11259
11260 static void
11261 packet_command (const char *args, int from_tty)
11262 {
11263   remote_target *remote = get_current_remote_target ();
11264
11265   if (remote == nullptr)
11266     error (_("command can only be used with remote target"));
11267
11268   remote->packet_command (args, from_tty);
11269 }
11270
11271 void
11272 remote_target::packet_command (const char *args, int from_tty)
11273 {
11274   if (!args)
11275     error (_("remote-packet command requires packet text as argument"));
11276
11277   puts_filtered ("sending: ");
11278   print_packet (args);
11279   puts_filtered ("\n");
11280   putpkt (args);
11281
11282   remote_state *rs = get_remote_state ();
11283
11284   getpkt (&rs->buf, 0);
11285   puts_filtered ("received: ");
11286   print_packet (rs->buf.data ());
11287   puts_filtered ("\n");
11288 }
11289
11290 #if 0
11291 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11292
11293 static void display_thread_info (struct gdb_ext_thread_info *info);
11294
11295 static void threadset_test_cmd (char *cmd, int tty);
11296
11297 static void threadalive_test (char *cmd, int tty);
11298
11299 static void threadlist_test_cmd (char *cmd, int tty);
11300
11301 int get_and_display_threadinfo (threadref *ref);
11302
11303 static void threadinfo_test_cmd (char *cmd, int tty);
11304
11305 static int thread_display_step (threadref *ref, void *context);
11306
11307 static void threadlist_update_test_cmd (char *cmd, int tty);
11308
11309 static void init_remote_threadtests (void);
11310
11311 #define SAMPLE_THREAD  0x05060708       /* Truncated 64 bit threadid.  */
11312
11313 static void
11314 threadset_test_cmd (const char *cmd, int tty)
11315 {
11316   int sample_thread = SAMPLE_THREAD;
11317
11318   printf_filtered (_("Remote threadset test\n"));
11319   set_general_thread (sample_thread);
11320 }
11321
11322
11323 static void
11324 threadalive_test (const char *cmd, int tty)
11325 {
11326   int sample_thread = SAMPLE_THREAD;
11327   int pid = inferior_ptid.pid ();
11328   ptid_t ptid = ptid_t (pid, sample_thread, 0);
11329
11330   if (remote_thread_alive (ptid))
11331     printf_filtered ("PASS: Thread alive test\n");
11332   else
11333     printf_filtered ("FAIL: Thread alive test\n");
11334 }
11335
11336 void output_threadid (char *title, threadref *ref);
11337
11338 void
11339 output_threadid (char *title, threadref *ref)
11340 {
11341   char hexid[20];
11342
11343   pack_threadid (&hexid[0], ref);       /* Convert threead id into hex.  */
11344   hexid[16] = 0;
11345   printf_filtered ("%s  %s\n", title, (&hexid[0]));
11346 }
11347
11348 static void
11349 threadlist_test_cmd (const char *cmd, int tty)
11350 {
11351   int startflag = 1;
11352   threadref nextthread;
11353   int done, result_count;
11354   threadref threadlist[3];
11355
11356   printf_filtered ("Remote Threadlist test\n");
11357   if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11358                               &result_count, &threadlist[0]))
11359     printf_filtered ("FAIL: threadlist test\n");
11360   else
11361     {
11362       threadref *scan = threadlist;
11363       threadref *limit = scan + result_count;
11364
11365       while (scan < limit)
11366         output_threadid (" thread ", scan++);
11367     }
11368 }
11369
11370 void
11371 display_thread_info (struct gdb_ext_thread_info *info)
11372 {
11373   output_threadid ("Threadid: ", &info->threadid);
11374   printf_filtered ("Name: %s\n ", info->shortname);
11375   printf_filtered ("State: %s\n", info->display);
11376   printf_filtered ("other: %s\n\n", info->more_display);
11377 }
11378
11379 int
11380 get_and_display_threadinfo (threadref *ref)
11381 {
11382   int result;
11383   int set;
11384   struct gdb_ext_thread_info threadinfo;
11385
11386   set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11387     | TAG_MOREDISPLAY | TAG_DISPLAY;
11388   if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11389     display_thread_info (&threadinfo);
11390   return result;
11391 }
11392
11393 static void
11394 threadinfo_test_cmd (const char *cmd, int tty)
11395 {
11396   int athread = SAMPLE_THREAD;
11397   threadref thread;
11398   int set;
11399
11400   int_to_threadref (&thread, athread);
11401   printf_filtered ("Remote Threadinfo test\n");
11402   if (!get_and_display_threadinfo (&thread))
11403     printf_filtered ("FAIL cannot get thread info\n");
11404 }
11405
11406 static int
11407 thread_display_step (threadref *ref, void *context)
11408 {
11409   /* output_threadid(" threadstep ",ref); *//* simple test */
11410   return get_and_display_threadinfo (ref);
11411 }
11412
11413 static void
11414 threadlist_update_test_cmd (const char *cmd, int tty)
11415 {
11416   printf_filtered ("Remote Threadlist update test\n");
11417   remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11418 }
11419
11420 static void
11421 init_remote_threadtests (void)
11422 {
11423   add_com ("tlist", class_obscure, threadlist_test_cmd,
11424            _("Fetch and print the remote list of "
11425              "thread identifiers, one pkt only"));
11426   add_com ("tinfo", class_obscure, threadinfo_test_cmd,
11427            _("Fetch and display info about one thread"));
11428   add_com ("tset", class_obscure, threadset_test_cmd,
11429            _("Test setting to a different thread"));
11430   add_com ("tupd", class_obscure, threadlist_update_test_cmd,
11431            _("Iterate through updating all remote thread info"));
11432   add_com ("talive", class_obscure, threadalive_test,
11433            _(" Remote thread alive test "));
11434 }
11435
11436 #endif /* 0 */
11437
11438 /* Convert a thread ID to a string.  Returns the string in a static
11439    buffer.  */
11440
11441 const char *
11442 remote_target::pid_to_str (ptid_t ptid)
11443 {
11444   static char buf[64];
11445   struct remote_state *rs = get_remote_state ();
11446
11447   if (ptid == null_ptid)
11448     return normal_pid_to_str (ptid);
11449   else if (ptid.is_pid ())
11450     {
11451       /* Printing an inferior target id.  */
11452
11453       /* When multi-process extensions are off, there's no way in the
11454          remote protocol to know the remote process id, if there's any
11455          at all.  There's one exception --- when we're connected with
11456          target extended-remote, and we manually attached to a process
11457          with "attach PID".  We don't record anywhere a flag that
11458          allows us to distinguish that case from the case of
11459          connecting with extended-remote and the stub already being
11460          attached to a process, and reporting yes to qAttached, hence
11461          no smart special casing here.  */
11462       if (!remote_multi_process_p (rs))
11463         {
11464           xsnprintf (buf, sizeof buf, "Remote target");
11465           return buf;
11466         }
11467
11468       return normal_pid_to_str (ptid);
11469     }
11470   else
11471     {
11472       if (magic_null_ptid == ptid)
11473         xsnprintf (buf, sizeof buf, "Thread <main>");
11474       else if (remote_multi_process_p (rs))
11475         if (ptid.lwp () == 0)
11476           return normal_pid_to_str (ptid);
11477         else
11478           xsnprintf (buf, sizeof buf, "Thread %d.%ld",
11479                      ptid.pid (), ptid.lwp ());
11480       else
11481         xsnprintf (buf, sizeof buf, "Thread %ld",
11482                    ptid.lwp ());
11483       return buf;
11484     }
11485 }
11486
11487 /* Get the address of the thread local variable in OBJFILE which is
11488    stored at OFFSET within the thread local storage for thread PTID.  */
11489
11490 CORE_ADDR
11491 remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11492                                          CORE_ADDR offset)
11493 {
11494   if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
11495     {
11496       struct remote_state *rs = get_remote_state ();
11497       char *p = rs->buf.data ();
11498       char *endp = p + get_remote_packet_size ();
11499       enum packet_result result;
11500
11501       strcpy (p, "qGetTLSAddr:");
11502       p += strlen (p);
11503       p = write_ptid (p, endp, ptid);
11504       *p++ = ',';
11505       p += hexnumstr (p, offset);
11506       *p++ = ',';
11507       p += hexnumstr (p, lm);
11508       *p++ = '\0';
11509
11510       putpkt (rs->buf);
11511       getpkt (&rs->buf, 0);
11512       result = packet_ok (rs->buf,
11513                           &remote_protocol_packets[PACKET_qGetTLSAddr]);
11514       if (result == PACKET_OK)
11515         {
11516           ULONGEST addr;
11517
11518           unpack_varlen_hex (rs->buf.data (), &addr);
11519           return addr;
11520         }
11521       else if (result == PACKET_UNKNOWN)
11522         throw_error (TLS_GENERIC_ERROR,
11523                      _("Remote target doesn't support qGetTLSAddr packet"));
11524       else
11525         throw_error (TLS_GENERIC_ERROR,
11526                      _("Remote target failed to process qGetTLSAddr request"));
11527     }
11528   else
11529     throw_error (TLS_GENERIC_ERROR,
11530                  _("TLS not supported or disabled on this target"));
11531   /* Not reached.  */
11532   return 0;
11533 }
11534
11535 /* Provide thread local base, i.e. Thread Information Block address.
11536    Returns 1 if ptid is found and thread_local_base is non zero.  */
11537
11538 bool
11539 remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
11540 {
11541   if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
11542     {
11543       struct remote_state *rs = get_remote_state ();
11544       char *p = rs->buf.data ();
11545       char *endp = p + get_remote_packet_size ();
11546       enum packet_result result;
11547
11548       strcpy (p, "qGetTIBAddr:");
11549       p += strlen (p);
11550       p = write_ptid (p, endp, ptid);
11551       *p++ = '\0';
11552
11553       putpkt (rs->buf);
11554       getpkt (&rs->buf, 0);
11555       result = packet_ok (rs->buf,
11556                           &remote_protocol_packets[PACKET_qGetTIBAddr]);
11557       if (result == PACKET_OK)
11558         {
11559           ULONGEST val;
11560           unpack_varlen_hex (rs->buf.data (), &val);
11561           if (addr)
11562             *addr = (CORE_ADDR) val;
11563           return true;
11564         }
11565       else if (result == PACKET_UNKNOWN)
11566         error (_("Remote target doesn't support qGetTIBAddr packet"));
11567       else
11568         error (_("Remote target failed to process qGetTIBAddr request"));
11569     }
11570   else
11571     error (_("qGetTIBAddr not supported or disabled on this target"));
11572   /* Not reached.  */
11573   return false;
11574 }
11575
11576 /* Support for inferring a target description based on the current
11577    architecture and the size of a 'g' packet.  While the 'g' packet
11578    can have any size (since optional registers can be left off the
11579    end), some sizes are easily recognizable given knowledge of the
11580    approximate architecture.  */
11581
11582 struct remote_g_packet_guess
11583 {
11584   remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11585     : bytes (bytes_),
11586       tdesc (tdesc_)
11587   {
11588   }
11589
11590   int bytes;
11591   const struct target_desc *tdesc;
11592 };
11593
11594 struct remote_g_packet_data : public allocate_on_obstack
11595 {
11596   std::vector<remote_g_packet_guess> guesses;
11597 };
11598
11599 static struct gdbarch_data *remote_g_packet_data_handle;
11600
11601 static void *
11602 remote_g_packet_data_init (struct obstack *obstack)
11603 {
11604   return new (obstack) remote_g_packet_data;
11605 }
11606
11607 void
11608 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11609                                 const struct target_desc *tdesc)
11610 {
11611   struct remote_g_packet_data *data
11612     = ((struct remote_g_packet_data *)
11613        gdbarch_data (gdbarch, remote_g_packet_data_handle));
11614
11615   gdb_assert (tdesc != NULL);
11616
11617   for (const remote_g_packet_guess &guess : data->guesses)
11618     if (guess.bytes == bytes)
11619       internal_error (__FILE__, __LINE__,
11620                       _("Duplicate g packet description added for size %d"),
11621                       bytes);
11622
11623   data->guesses.emplace_back (bytes, tdesc);
11624 }
11625
11626 /* Return true if remote_read_description would do anything on this target
11627    and architecture, false otherwise.  */
11628
11629 static bool
11630 remote_read_description_p (struct target_ops *target)
11631 {
11632   struct remote_g_packet_data *data
11633     = ((struct remote_g_packet_data *)
11634        gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11635
11636   return !data->guesses.empty ();
11637 }
11638
11639 const struct target_desc *
11640 remote_target::read_description ()
11641 {
11642   struct remote_g_packet_data *data
11643     = ((struct remote_g_packet_data *)
11644        gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11645
11646   /* Do not try this during initial connection, when we do not know
11647      whether there is a running but stopped thread.  */
11648   if (!target_has_execution || inferior_ptid == null_ptid)
11649     return beneath ()->read_description ();
11650
11651   if (!data->guesses.empty ())
11652     {
11653       int bytes = send_g_packet ();
11654
11655       for (const remote_g_packet_guess &guess : data->guesses)
11656         if (guess.bytes == bytes)
11657           return guess.tdesc;
11658
11659       /* We discard the g packet.  A minor optimization would be to
11660          hold on to it, and fill the register cache once we have selected
11661          an architecture, but it's too tricky to do safely.  */
11662     }
11663
11664   return beneath ()->read_description ();
11665 }
11666
11667 /* Remote file transfer support.  This is host-initiated I/O, not
11668    target-initiated; for target-initiated, see remote-fileio.c.  */
11669
11670 /* If *LEFT is at least the length of STRING, copy STRING to
11671    *BUFFER, update *BUFFER to point to the new end of the buffer, and
11672    decrease *LEFT.  Otherwise raise an error.  */
11673
11674 static void
11675 remote_buffer_add_string (char **buffer, int *left, const char *string)
11676 {
11677   int len = strlen (string);
11678
11679   if (len > *left)
11680     error (_("Packet too long for target."));
11681
11682   memcpy (*buffer, string, len);
11683   *buffer += len;
11684   *left -= len;
11685
11686   /* NUL-terminate the buffer as a convenience, if there is
11687      room.  */
11688   if (*left)
11689     **buffer = '\0';
11690 }
11691
11692 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11693    *BUFFER, update *BUFFER to point to the new end of the buffer, and
11694    decrease *LEFT.  Otherwise raise an error.  */
11695
11696 static void
11697 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11698                          int len)
11699 {
11700   if (2 * len > *left)
11701     error (_("Packet too long for target."));
11702
11703   bin2hex (bytes, *buffer, len);
11704   *buffer += 2 * len;
11705   *left -= 2 * len;
11706
11707   /* NUL-terminate the buffer as a convenience, if there is
11708      room.  */
11709   if (*left)
11710     **buffer = '\0';
11711 }
11712
11713 /* If *LEFT is large enough, convert VALUE to hex and add it to
11714    *BUFFER, update *BUFFER to point to the new end of the buffer, and
11715    decrease *LEFT.  Otherwise raise an error.  */
11716
11717 static void
11718 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11719 {
11720   int len = hexnumlen (value);
11721
11722   if (len > *left)
11723     error (_("Packet too long for target."));
11724
11725   hexnumstr (*buffer, value);
11726   *buffer += len;
11727   *left -= len;
11728
11729   /* NUL-terminate the buffer as a convenience, if there is
11730      room.  */
11731   if (*left)
11732     **buffer = '\0';
11733 }
11734
11735 /* Parse an I/O result packet from BUFFER.  Set RETCODE to the return
11736    value, *REMOTE_ERRNO to the remote error number or zero if none
11737    was included, and *ATTACHMENT to point to the start of the annex
11738    if any.  The length of the packet isn't needed here; there may
11739    be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11740
11741    Return 0 if the packet could be parsed, -1 if it could not.  If
11742    -1 is returned, the other variables may not be initialized.  */
11743
11744 static int
11745 remote_hostio_parse_result (char *buffer, int *retcode,
11746                             int *remote_errno, char **attachment)
11747 {
11748   char *p, *p2;
11749
11750   *remote_errno = 0;
11751   *attachment = NULL;
11752
11753   if (buffer[0] != 'F')
11754     return -1;
11755
11756   errno = 0;
11757   *retcode = strtol (&buffer[1], &p, 16);
11758   if (errno != 0 || p == &buffer[1])
11759     return -1;
11760
11761   /* Check for ",errno".  */
11762   if (*p == ',')
11763     {
11764       errno = 0;
11765       *remote_errno = strtol (p + 1, &p2, 16);
11766       if (errno != 0 || p + 1 == p2)
11767         return -1;
11768       p = p2;
11769     }
11770
11771   /* Check for ";attachment".  If there is no attachment, the
11772      packet should end here.  */
11773   if (*p == ';')
11774     {
11775       *attachment = p + 1;
11776       return 0;
11777     }
11778   else if (*p == '\0')
11779     return 0;
11780   else
11781     return -1;
11782 }
11783
11784 /* Send a prepared I/O packet to the target and read its response.
11785    The prepared packet is in the global RS->BUF before this function
11786    is called, and the answer is there when we return.
11787
11788    COMMAND_BYTES is the length of the request to send, which may include
11789    binary data.  WHICH_PACKET is the packet configuration to check
11790    before attempting a packet.  If an error occurs, *REMOTE_ERRNO
11791    is set to the error number and -1 is returned.  Otherwise the value
11792    returned by the function is returned.
11793
11794    ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11795    attachment is expected; an error will be reported if there's a
11796    mismatch.  If one is found, *ATTACHMENT will be set to point into
11797    the packet buffer and *ATTACHMENT_LEN will be set to the
11798    attachment's length.  */
11799
11800 int
11801 remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11802                                            int *remote_errno, char **attachment,
11803                                            int *attachment_len)
11804 {
11805   struct remote_state *rs = get_remote_state ();
11806   int ret, bytes_read;
11807   char *attachment_tmp;
11808
11809   if (packet_support (which_packet) == PACKET_DISABLE)
11810     {
11811       *remote_errno = FILEIO_ENOSYS;
11812       return -1;
11813     }
11814
11815   putpkt_binary (rs->buf.data (), command_bytes);
11816   bytes_read = getpkt_sane (&rs->buf, 0);
11817
11818   /* If it timed out, something is wrong.  Don't try to parse the
11819      buffer.  */
11820   if (bytes_read < 0)
11821     {
11822       *remote_errno = FILEIO_EINVAL;
11823       return -1;
11824     }
11825
11826   switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11827     {
11828     case PACKET_ERROR:
11829       *remote_errno = FILEIO_EINVAL;
11830       return -1;
11831     case PACKET_UNKNOWN:
11832       *remote_errno = FILEIO_ENOSYS;
11833       return -1;
11834     case PACKET_OK:
11835       break;
11836     }
11837
11838   if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
11839                                   &attachment_tmp))
11840     {
11841       *remote_errno = FILEIO_EINVAL;
11842       return -1;
11843     }
11844
11845   /* Make sure we saw an attachment if and only if we expected one.  */
11846   if ((attachment_tmp == NULL && attachment != NULL)
11847       || (attachment_tmp != NULL && attachment == NULL))
11848     {
11849       *remote_errno = FILEIO_EINVAL;
11850       return -1;
11851     }
11852
11853   /* If an attachment was found, it must point into the packet buffer;
11854      work out how many bytes there were.  */
11855   if (attachment_tmp != NULL)
11856     {
11857       *attachment = attachment_tmp;
11858       *attachment_len = bytes_read - (*attachment - rs->buf.data ());
11859     }
11860
11861   return ret;
11862 }
11863
11864 /* See declaration.h.  */
11865
11866 void
11867 readahead_cache::invalidate ()
11868 {
11869   this->fd = -1;
11870 }
11871
11872 /* See declaration.h.  */
11873
11874 void
11875 readahead_cache::invalidate_fd (int fd)
11876 {
11877   if (this->fd == fd)
11878     this->fd = -1;
11879 }
11880
11881 /* Set the filesystem remote_hostio functions that take FILENAME
11882    arguments will use.  Return 0 on success, or -1 if an error
11883    occurs (and set *REMOTE_ERRNO).  */
11884
11885 int
11886 remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11887                                              int *remote_errno)
11888 {
11889   struct remote_state *rs = get_remote_state ();
11890   int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11891   char *p = rs->buf.data ();
11892   int left = get_remote_packet_size () - 1;
11893   char arg[9];
11894   int ret;
11895
11896   if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11897     return 0;
11898
11899   if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11900     return 0;
11901
11902   remote_buffer_add_string (&p, &left, "vFile:setfs:");
11903
11904   xsnprintf (arg, sizeof (arg), "%x", required_pid);
11905   remote_buffer_add_string (&p, &left, arg);
11906
11907   ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
11908                                     remote_errno, NULL, NULL);
11909
11910   if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11911     return 0;
11912
11913   if (ret == 0)
11914     rs->fs_pid = required_pid;
11915
11916   return ret;
11917 }
11918
11919 /* Implementation of to_fileio_open.  */
11920
11921 int
11922 remote_target::remote_hostio_open (inferior *inf, const char *filename,
11923                                    int flags, int mode, int warn_if_slow,
11924                                    int *remote_errno)
11925 {
11926   struct remote_state *rs = get_remote_state ();
11927   char *p = rs->buf.data ();
11928   int left = get_remote_packet_size () - 1;
11929
11930   if (warn_if_slow)
11931     {
11932       static int warning_issued = 0;
11933
11934       printf_unfiltered (_("Reading %s from remote target...\n"),
11935                          filename);
11936
11937       if (!warning_issued)
11938         {
11939           warning (_("File transfers from remote targets can be slow."
11940                      " Use \"set sysroot\" to access files locally"
11941                      " instead."));
11942           warning_issued = 1;
11943         }
11944     }
11945
11946   if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11947     return -1;
11948
11949   remote_buffer_add_string (&p, &left, "vFile:open:");
11950
11951   remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11952                            strlen (filename));
11953   remote_buffer_add_string (&p, &left, ",");
11954
11955   remote_buffer_add_int (&p, &left, flags);
11956   remote_buffer_add_string (&p, &left, ",");
11957
11958   remote_buffer_add_int (&p, &left, mode);
11959
11960   return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
11961                                      remote_errno, NULL, NULL);
11962 }
11963
11964 int
11965 remote_target::fileio_open (struct inferior *inf, const char *filename,
11966                             int flags, int mode, int warn_if_slow,
11967                             int *remote_errno)
11968 {
11969   return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
11970                              remote_errno);
11971 }
11972
11973 /* Implementation of to_fileio_pwrite.  */
11974
11975 int
11976 remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11977                                      ULONGEST offset, int *remote_errno)
11978 {
11979   struct remote_state *rs = get_remote_state ();
11980   char *p = rs->buf.data ();
11981   int left = get_remote_packet_size ();
11982   int out_len;
11983
11984   rs->readahead_cache.invalidate_fd (fd);
11985
11986   remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11987
11988   remote_buffer_add_int (&p, &left, fd);
11989   remote_buffer_add_string (&p, &left, ",");
11990
11991   remote_buffer_add_int (&p, &left, offset);
11992   remote_buffer_add_string (&p, &left, ",");
11993
11994   p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
11995                              (get_remote_packet_size ()
11996                               - (p - rs->buf.data ())));
11997
11998   return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
11999                                      remote_errno, NULL, NULL);
12000 }
12001
12002 int
12003 remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12004                               ULONGEST offset, int *remote_errno)
12005 {
12006   return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
12007 }
12008
12009 /* Helper for the implementation of to_fileio_pread.  Read the file
12010    from the remote side with vFile:pread.  */
12011
12012 int
12013 remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12014                                           ULONGEST offset, int *remote_errno)
12015 {
12016   struct remote_state *rs = get_remote_state ();
12017   char *p = rs->buf.data ();
12018   char *attachment;
12019   int left = get_remote_packet_size ();
12020   int ret, attachment_len;
12021   int read_len;
12022
12023   remote_buffer_add_string (&p, &left, "vFile:pread:");
12024
12025   remote_buffer_add_int (&p, &left, fd);
12026   remote_buffer_add_string (&p, &left, ",");
12027
12028   remote_buffer_add_int (&p, &left, len);
12029   remote_buffer_add_string (&p, &left, ",");
12030
12031   remote_buffer_add_int (&p, &left, offset);
12032
12033   ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
12034                                     remote_errno, &attachment,
12035                                     &attachment_len);
12036
12037   if (ret < 0)
12038     return ret;
12039
12040   read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12041                                     read_buf, len);
12042   if (read_len != ret)
12043     error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12044
12045   return ret;
12046 }
12047
12048 /* See declaration.h.  */
12049
12050 int
12051 readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12052                         ULONGEST offset)
12053 {
12054   if (this->fd == fd
12055       && this->offset <= offset
12056       && offset < this->offset + this->bufsize)
12057     {
12058       ULONGEST max = this->offset + this->bufsize;
12059
12060       if (offset + len > max)
12061         len = max - offset;
12062
12063       memcpy (read_buf, this->buf + offset - this->offset, len);
12064       return len;
12065     }
12066
12067   return 0;
12068 }
12069
12070 /* Implementation of to_fileio_pread.  */
12071
12072 int
12073 remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12074                                     ULONGEST offset, int *remote_errno)
12075 {
12076   int ret;
12077   struct remote_state *rs = get_remote_state ();
12078   readahead_cache *cache = &rs->readahead_cache;
12079
12080   ret = cache->pread (fd, read_buf, len, offset);
12081   if (ret > 0)
12082     {
12083       cache->hit_count++;
12084
12085       if (remote_debug)
12086         fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12087                             pulongest (cache->hit_count));
12088       return ret;
12089     }
12090
12091   cache->miss_count++;
12092   if (remote_debug)
12093     fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12094                         pulongest (cache->miss_count));
12095
12096   cache->fd = fd;
12097   cache->offset = offset;
12098   cache->bufsize = get_remote_packet_size ();
12099   cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
12100
12101   ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
12102                                    cache->offset, remote_errno);
12103   if (ret <= 0)
12104     {
12105       cache->invalidate_fd (fd);
12106       return ret;
12107     }
12108
12109   cache->bufsize = ret;
12110   return cache->pread (fd, read_buf, len, offset);
12111 }
12112
12113 int
12114 remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12115                              ULONGEST offset, int *remote_errno)
12116 {
12117   return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
12118 }
12119
12120 /* Implementation of to_fileio_close.  */
12121
12122 int
12123 remote_target::remote_hostio_close (int fd, int *remote_errno)
12124 {
12125   struct remote_state *rs = get_remote_state ();
12126   char *p = rs->buf.data ();
12127   int left = get_remote_packet_size () - 1;
12128
12129   rs->readahead_cache.invalidate_fd (fd);
12130
12131   remote_buffer_add_string (&p, &left, "vFile:close:");
12132
12133   remote_buffer_add_int (&p, &left, fd);
12134
12135   return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
12136                                      remote_errno, NULL, NULL);
12137 }
12138
12139 int
12140 remote_target::fileio_close (int fd, int *remote_errno)
12141 {
12142   return remote_hostio_close (fd, remote_errno);
12143 }
12144
12145 /* Implementation of to_fileio_unlink.  */
12146
12147 int
12148 remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12149                                      int *remote_errno)
12150 {
12151   struct remote_state *rs = get_remote_state ();
12152   char *p = rs->buf.data ();
12153   int left = get_remote_packet_size () - 1;
12154
12155   if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12156     return -1;
12157
12158   remote_buffer_add_string (&p, &left, "vFile:unlink:");
12159
12160   remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12161                            strlen (filename));
12162
12163   return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
12164                                      remote_errno, NULL, NULL);
12165 }
12166
12167 int
12168 remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12169                               int *remote_errno)
12170 {
12171   return remote_hostio_unlink (inf, filename, remote_errno);
12172 }
12173
12174 /* Implementation of to_fileio_readlink.  */
12175
12176 gdb::optional<std::string>
12177 remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12178                                 int *remote_errno)
12179 {
12180   struct remote_state *rs = get_remote_state ();
12181   char *p = rs->buf.data ();
12182   char *attachment;
12183   int left = get_remote_packet_size ();
12184   int len, attachment_len;
12185   int read_len;
12186
12187   if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12188     return {};
12189
12190   remote_buffer_add_string (&p, &left, "vFile:readlink:");
12191
12192   remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12193                            strlen (filename));
12194
12195   len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
12196                                     remote_errno, &attachment,
12197                                     &attachment_len);
12198
12199   if (len < 0)
12200     return {};
12201
12202   std::string ret (len, '\0');
12203
12204   read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12205                                     (gdb_byte *) &ret[0], len);
12206   if (read_len != len)
12207     error (_("Readlink returned %d, but %d bytes."), len, read_len);
12208
12209   return ret;
12210 }
12211
12212 /* Implementation of to_fileio_fstat.  */
12213
12214 int
12215 remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
12216 {
12217   struct remote_state *rs = get_remote_state ();
12218   char *p = rs->buf.data ();
12219   int left = get_remote_packet_size ();
12220   int attachment_len, ret;
12221   char *attachment;
12222   struct fio_stat fst;
12223   int read_len;
12224
12225   remote_buffer_add_string (&p, &left, "vFile:fstat:");
12226
12227   remote_buffer_add_int (&p, &left, fd);
12228
12229   ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
12230                                     remote_errno, &attachment,
12231                                     &attachment_len);
12232   if (ret < 0)
12233     {
12234       if (*remote_errno != FILEIO_ENOSYS)
12235         return ret;
12236
12237       /* Strictly we should return -1, ENOSYS here, but when
12238          "set sysroot remote:" was implemented in August 2008
12239          BFD's need for a stat function was sidestepped with
12240          this hack.  This was not remedied until March 2015
12241          so we retain the previous behavior to avoid breaking
12242          compatibility.
12243
12244          Note that the memset is a March 2015 addition; older
12245          GDBs set st_size *and nothing else* so the structure
12246          would have garbage in all other fields.  This might
12247          break something but retaining the previous behavior
12248          here would be just too wrong.  */
12249
12250       memset (st, 0, sizeof (struct stat));
12251       st->st_size = INT_MAX;
12252       return 0;
12253     }
12254
12255   read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12256                                     (gdb_byte *) &fst, sizeof (fst));
12257
12258   if (read_len != ret)
12259     error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12260
12261   if (read_len != sizeof (fst))
12262     error (_("vFile:fstat returned %d bytes, but expecting %d."),
12263            read_len, (int) sizeof (fst));
12264
12265   remote_fileio_to_host_stat (&fst, st);
12266
12267   return 0;
12268 }
12269
12270 /* Implementation of to_filesystem_is_local.  */
12271
12272 bool
12273 remote_target::filesystem_is_local ()
12274 {
12275   /* Valgrind GDB presents itself as a remote target but works
12276      on the local filesystem: it does not implement remote get
12277      and users are not expected to set a sysroot.  To handle
12278      this case we treat the remote filesystem as local if the
12279      sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12280      does not support vFile:open.  */
12281   if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
12282     {
12283       enum packet_support ps = packet_support (PACKET_vFile_open);
12284
12285       if (ps == PACKET_SUPPORT_UNKNOWN)
12286         {
12287           int fd, remote_errno;
12288
12289           /* Try opening a file to probe support.  The supplied
12290              filename is irrelevant, we only care about whether
12291              the stub recognizes the packet or not.  */
12292           fd = remote_hostio_open (NULL, "just probing",
12293                                    FILEIO_O_RDONLY, 0700, 0,
12294                                    &remote_errno);
12295
12296           if (fd >= 0)
12297             remote_hostio_close (fd, &remote_errno);
12298
12299           ps = packet_support (PACKET_vFile_open);
12300         }
12301
12302       if (ps == PACKET_DISABLE)
12303         {
12304           static int warning_issued = 0;
12305
12306           if (!warning_issued)
12307             {
12308               warning (_("remote target does not support file"
12309                          " transfer, attempting to access files"
12310                          " from local filesystem."));
12311               warning_issued = 1;
12312             }
12313
12314           return true;
12315         }
12316     }
12317
12318   return false;
12319 }
12320
12321 static int
12322 remote_fileio_errno_to_host (int errnum)
12323 {
12324   switch (errnum)
12325     {
12326       case FILEIO_EPERM:
12327         return EPERM;
12328       case FILEIO_ENOENT:
12329         return ENOENT;
12330       case FILEIO_EINTR:
12331         return EINTR;
12332       case FILEIO_EIO:
12333         return EIO;
12334       case FILEIO_EBADF:
12335         return EBADF;
12336       case FILEIO_EACCES:
12337         return EACCES;
12338       case FILEIO_EFAULT:
12339         return EFAULT;
12340       case FILEIO_EBUSY:
12341         return EBUSY;
12342       case FILEIO_EEXIST:
12343         return EEXIST;
12344       case FILEIO_ENODEV:
12345         return ENODEV;
12346       case FILEIO_ENOTDIR:
12347         return ENOTDIR;
12348       case FILEIO_EISDIR:
12349         return EISDIR;
12350       case FILEIO_EINVAL:
12351         return EINVAL;
12352       case FILEIO_ENFILE:
12353         return ENFILE;
12354       case FILEIO_EMFILE:
12355         return EMFILE;
12356       case FILEIO_EFBIG:
12357         return EFBIG;
12358       case FILEIO_ENOSPC:
12359         return ENOSPC;
12360       case FILEIO_ESPIPE:
12361         return ESPIPE;
12362       case FILEIO_EROFS:
12363         return EROFS;
12364       case FILEIO_ENOSYS:
12365         return ENOSYS;
12366       case FILEIO_ENAMETOOLONG:
12367         return ENAMETOOLONG;
12368     }
12369   return -1;
12370 }
12371
12372 static char *
12373 remote_hostio_error (int errnum)
12374 {
12375   int host_error = remote_fileio_errno_to_host (errnum);
12376
12377   if (host_error == -1)
12378     error (_("Unknown remote I/O error %d"), errnum);
12379   else
12380     error (_("Remote I/O error: %s"), safe_strerror (host_error));
12381 }
12382
12383 /* A RAII wrapper around a remote file descriptor.  */
12384
12385 class scoped_remote_fd
12386 {
12387 public:
12388   scoped_remote_fd (remote_target *remote, int fd)
12389     : m_remote (remote), m_fd (fd)
12390   {
12391   }
12392
12393   ~scoped_remote_fd ()
12394   {
12395     if (m_fd != -1)
12396       {
12397         try
12398           {
12399             int remote_errno;
12400             m_remote->remote_hostio_close (m_fd, &remote_errno);
12401           }
12402         catch (...)
12403           {
12404             /* Swallow exception before it escapes the dtor.  If
12405                something goes wrong, likely the connection is gone,
12406                and there's nothing else that can be done.  */
12407           }
12408       }
12409   }
12410
12411   DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12412
12413   /* Release ownership of the file descriptor, and return it.  */
12414   int release () noexcept
12415   {
12416     int fd = m_fd;
12417     m_fd = -1;
12418     return fd;
12419   }
12420
12421   /* Return the owned file descriptor.  */
12422   int get () const noexcept
12423   {
12424     return m_fd;
12425   }
12426
12427 private:
12428   /* The remote target.  */
12429   remote_target *m_remote;
12430
12431   /* The owned remote I/O file descriptor.  */
12432   int m_fd;
12433 };
12434
12435 void
12436 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
12437 {
12438   remote_target *remote = get_current_remote_target ();
12439
12440   if (remote == nullptr)
12441     error (_("command can only be used with remote target"));
12442
12443   remote->remote_file_put (local_file, remote_file, from_tty);
12444 }
12445
12446 void
12447 remote_target::remote_file_put (const char *local_file, const char *remote_file,
12448                                 int from_tty)
12449 {
12450   int retcode, remote_errno, bytes, io_size;
12451   int bytes_in_buffer;
12452   int saw_eof;
12453   ULONGEST offset;
12454
12455   gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
12456   if (file == NULL)
12457     perror_with_name (local_file);
12458
12459   scoped_remote_fd fd
12460     (this, remote_hostio_open (NULL,
12461                                remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12462                                              | FILEIO_O_TRUNC),
12463                                0700, 0, &remote_errno));
12464   if (fd.get () == -1)
12465     remote_hostio_error (remote_errno);
12466
12467   /* Send up to this many bytes at once.  They won't all fit in the
12468      remote packet limit, so we'll transfer slightly fewer.  */
12469   io_size = get_remote_packet_size ();
12470   gdb::byte_vector buffer (io_size);
12471
12472   bytes_in_buffer = 0;
12473   saw_eof = 0;
12474   offset = 0;
12475   while (bytes_in_buffer || !saw_eof)
12476     {
12477       if (!saw_eof)
12478         {
12479           bytes = fread (buffer.data () + bytes_in_buffer, 1,
12480                          io_size - bytes_in_buffer,
12481                          file.get ());
12482           if (bytes == 0)
12483             {
12484               if (ferror (file.get ()))
12485                 error (_("Error reading %s."), local_file);
12486               else
12487                 {
12488                   /* EOF.  Unless there is something still in the
12489                      buffer from the last iteration, we are done.  */
12490                   saw_eof = 1;
12491                   if (bytes_in_buffer == 0)
12492                     break;
12493                 }
12494             }
12495         }
12496       else
12497         bytes = 0;
12498
12499       bytes += bytes_in_buffer;
12500       bytes_in_buffer = 0;
12501
12502       retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
12503                                       offset, &remote_errno);
12504
12505       if (retcode < 0)
12506         remote_hostio_error (remote_errno);
12507       else if (retcode == 0)
12508         error (_("Remote write of %d bytes returned 0!"), bytes);
12509       else if (retcode < bytes)
12510         {
12511           /* Short write.  Save the rest of the read data for the next
12512              write.  */
12513           bytes_in_buffer = bytes - retcode;
12514           memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
12515         }
12516
12517       offset += retcode;
12518     }
12519
12520   if (remote_hostio_close (fd.release (), &remote_errno))
12521     remote_hostio_error (remote_errno);
12522
12523   if (from_tty)
12524     printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12525 }
12526
12527 void
12528 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12529 {
12530   remote_target *remote = get_current_remote_target ();
12531
12532   if (remote == nullptr)
12533     error (_("command can only be used with remote target"));
12534
12535   remote->remote_file_get (remote_file, local_file, from_tty);
12536 }
12537
12538 void
12539 remote_target::remote_file_get (const char *remote_file, const char *local_file,
12540                                 int from_tty)
12541 {
12542   int remote_errno, bytes, io_size;
12543   ULONGEST offset;
12544
12545   scoped_remote_fd fd
12546     (this, remote_hostio_open (NULL,
12547                                remote_file, FILEIO_O_RDONLY, 0, 0,
12548                                &remote_errno));
12549   if (fd.get () == -1)
12550     remote_hostio_error (remote_errno);
12551
12552   gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
12553   if (file == NULL)
12554     perror_with_name (local_file);
12555
12556   /* Send up to this many bytes at once.  They won't all fit in the
12557      remote packet limit, so we'll transfer slightly fewer.  */
12558   io_size = get_remote_packet_size ();
12559   gdb::byte_vector buffer (io_size);
12560
12561   offset = 0;
12562   while (1)
12563     {
12564       bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
12565                                    &remote_errno);
12566       if (bytes == 0)
12567         /* Success, but no bytes, means end-of-file.  */
12568         break;
12569       if (bytes == -1)
12570         remote_hostio_error (remote_errno);
12571
12572       offset += bytes;
12573
12574       bytes = fwrite (buffer.data (), 1, bytes, file.get ());
12575       if (bytes == 0)
12576         perror_with_name (local_file);
12577     }
12578
12579   if (remote_hostio_close (fd.release (), &remote_errno))
12580     remote_hostio_error (remote_errno);
12581
12582   if (from_tty)
12583     printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12584 }
12585
12586 void
12587 remote_file_delete (const char *remote_file, int from_tty)
12588 {
12589   remote_target *remote = get_current_remote_target ();
12590
12591   if (remote == nullptr)
12592     error (_("command can only be used with remote target"));
12593
12594   remote->remote_file_delete (remote_file, from_tty);
12595 }
12596
12597 void
12598 remote_target::remote_file_delete (const char *remote_file, int from_tty)
12599 {
12600   int retcode, remote_errno;
12601
12602   retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
12603   if (retcode == -1)
12604     remote_hostio_error (remote_errno);
12605
12606   if (from_tty)
12607     printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12608 }
12609
12610 static void
12611 remote_put_command (const char *args, int from_tty)
12612 {
12613   if (args == NULL)
12614     error_no_arg (_("file to put"));
12615
12616   gdb_argv argv (args);
12617   if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12618     error (_("Invalid parameters to remote put"));
12619
12620   remote_file_put (argv[0], argv[1], from_tty);
12621 }
12622
12623 static void
12624 remote_get_command (const char *args, int from_tty)
12625 {
12626   if (args == NULL)
12627     error_no_arg (_("file to get"));
12628
12629   gdb_argv argv (args);
12630   if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12631     error (_("Invalid parameters to remote get"));
12632
12633   remote_file_get (argv[0], argv[1], from_tty);
12634 }
12635
12636 static void
12637 remote_delete_command (const char *args, int from_tty)
12638 {
12639   if (args == NULL)
12640     error_no_arg (_("file to delete"));
12641
12642   gdb_argv argv (args);
12643   if (argv[0] == NULL || argv[1] != NULL)
12644     error (_("Invalid parameters to remote delete"));
12645
12646   remote_file_delete (argv[0], from_tty);
12647 }
12648
12649 static void
12650 remote_command (const char *args, int from_tty)
12651 {
12652   help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
12653 }
12654
12655 bool
12656 remote_target::can_execute_reverse ()
12657 {
12658   if (packet_support (PACKET_bs) == PACKET_ENABLE
12659       || packet_support (PACKET_bc) == PACKET_ENABLE)
12660     return true;
12661   else
12662     return false;
12663 }
12664
12665 bool
12666 remote_target::supports_non_stop ()
12667 {
12668   return true;
12669 }
12670
12671 bool
12672 remote_target::supports_disable_randomization ()
12673 {
12674   /* Only supported in extended mode.  */
12675   return false;
12676 }
12677
12678 bool
12679 remote_target::supports_multi_process ()
12680 {
12681   struct remote_state *rs = get_remote_state ();
12682
12683   return remote_multi_process_p (rs);
12684 }
12685
12686 static int
12687 remote_supports_cond_tracepoints ()
12688 {
12689   return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
12690 }
12691
12692 bool
12693 remote_target::supports_evaluation_of_breakpoint_conditions ()
12694 {
12695   return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
12696 }
12697
12698 static int
12699 remote_supports_fast_tracepoints ()
12700 {
12701   return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
12702 }
12703
12704 static int
12705 remote_supports_static_tracepoints ()
12706 {
12707   return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
12708 }
12709
12710 static int
12711 remote_supports_install_in_trace ()
12712 {
12713   return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
12714 }
12715
12716 bool
12717 remote_target::supports_enable_disable_tracepoint ()
12718 {
12719   return (packet_support (PACKET_EnableDisableTracepoints_feature)
12720           == PACKET_ENABLE);
12721 }
12722
12723 bool
12724 remote_target::supports_string_tracing ()
12725 {
12726   return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
12727 }
12728
12729 bool
12730 remote_target::can_run_breakpoint_commands ()
12731 {
12732   return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
12733 }
12734
12735 void
12736 remote_target::trace_init ()
12737 {
12738   struct remote_state *rs = get_remote_state ();
12739
12740   putpkt ("QTinit");
12741   remote_get_noisy_reply ();
12742   if (strcmp (rs->buf.data (), "OK") != 0)
12743     error (_("Target does not support this command."));
12744 }
12745
12746 /* Recursive routine to walk through command list including loops, and
12747    download packets for each command.  */
12748
12749 void
12750 remote_target::remote_download_command_source (int num, ULONGEST addr,
12751                                                struct command_line *cmds)
12752 {
12753   struct remote_state *rs = get_remote_state ();
12754   struct command_line *cmd;
12755
12756   for (cmd = cmds; cmd; cmd = cmd->next)
12757     {
12758       QUIT;     /* Allow user to bail out with ^C.  */
12759       strcpy (rs->buf.data (), "QTDPsrc:");
12760       encode_source_string (num, addr, "cmd", cmd->line,
12761                             rs->buf.data () + strlen (rs->buf.data ()),
12762                             rs->buf.size () - strlen (rs->buf.data ()));
12763       putpkt (rs->buf);
12764       remote_get_noisy_reply ();
12765       if (strcmp (rs->buf.data (), "OK"))
12766         warning (_("Target does not support source download."));
12767
12768       if (cmd->control_type == while_control
12769           || cmd->control_type == while_stepping_control)
12770         {
12771           remote_download_command_source (num, addr, cmd->body_list_0.get ());
12772
12773           QUIT; /* Allow user to bail out with ^C.  */
12774           strcpy (rs->buf.data (), "QTDPsrc:");
12775           encode_source_string (num, addr, "cmd", "end",
12776                                 rs->buf.data () + strlen (rs->buf.data ()),
12777                                 rs->buf.size () - strlen (rs->buf.data ()));
12778           putpkt (rs->buf);
12779           remote_get_noisy_reply ();
12780           if (strcmp (rs->buf.data (), "OK"))
12781             warning (_("Target does not support source download."));
12782         }
12783     }
12784 }
12785
12786 void
12787 remote_target::download_tracepoint (struct bp_location *loc)
12788 {
12789   CORE_ADDR tpaddr;
12790   char addrbuf[40];
12791   std::vector<std::string> tdp_actions;
12792   std::vector<std::string> stepping_actions;
12793   char *pkt;
12794   struct breakpoint *b = loc->owner;
12795   struct tracepoint *t = (struct tracepoint *) b;
12796   struct remote_state *rs = get_remote_state ();
12797   int ret;
12798   const char *err_msg = _("Tracepoint packet too large for target.");
12799   size_t size_left;
12800
12801   /* We use a buffer other than rs->buf because we'll build strings
12802      across multiple statements, and other statements in between could
12803      modify rs->buf.  */
12804   gdb::char_vector buf (get_remote_packet_size ());
12805
12806   encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
12807
12808   tpaddr = loc->address;
12809   sprintf_vma (addrbuf, tpaddr);
12810   ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12811                   b->number, addrbuf, /* address */
12812                   (b->enable_state == bp_enabled ? 'E' : 'D'),
12813                   t->step_count, t->pass_count);
12814
12815   if (ret < 0 || ret >= buf.size ())
12816     error ("%s", err_msg);
12817
12818   /* Fast tracepoints are mostly handled by the target, but we can
12819      tell the target how big of an instruction block should be moved
12820      around.  */
12821   if (b->type == bp_fast_tracepoint)
12822     {
12823       /* Only test for support at download time; we may not know
12824          target capabilities at definition time.  */
12825       if (remote_supports_fast_tracepoints ())
12826         {
12827           if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12828                                                 NULL))
12829             {
12830               size_left = buf.size () - strlen (buf.data ());
12831               ret = snprintf (buf.data () + strlen (buf.data ()),
12832                               size_left, ":F%x",
12833                               gdb_insn_length (loc->gdbarch, tpaddr));
12834
12835               if (ret < 0 || ret >= size_left)
12836                 error ("%s", err_msg);
12837             }
12838           else
12839             /* If it passed validation at definition but fails now,
12840                something is very wrong.  */
12841             internal_error (__FILE__, __LINE__,
12842                             _("Fast tracepoint not "
12843                               "valid during download"));
12844         }
12845       else
12846         /* Fast tracepoints are functionally identical to regular
12847            tracepoints, so don't take lack of support as a reason to
12848            give up on the trace run.  */
12849         warning (_("Target does not support fast tracepoints, "
12850                    "downloading %d as regular tracepoint"), b->number);
12851     }
12852   else if (b->type == bp_static_tracepoint)
12853     {
12854       /* Only test for support at download time; we may not know
12855          target capabilities at definition time.  */
12856       if (remote_supports_static_tracepoints ())
12857         {
12858           struct static_tracepoint_marker marker;
12859
12860           if (target_static_tracepoint_marker_at (tpaddr, &marker))
12861             {
12862               size_left = buf.size () - strlen (buf.data ());
12863               ret = snprintf (buf.data () + strlen (buf.data ()),
12864                               size_left, ":S");
12865
12866               if (ret < 0 || ret >= size_left)
12867                 error ("%s", err_msg);
12868             }
12869           else
12870             error (_("Static tracepoint not valid during download"));
12871         }
12872       else
12873         /* Fast tracepoints are functionally identical to regular
12874            tracepoints, so don't take lack of support as a reason
12875            to give up on the trace run.  */
12876         error (_("Target does not support static tracepoints"));
12877     }
12878   /* If the tracepoint has a conditional, make it into an agent
12879      expression and append to the definition.  */
12880   if (loc->cond)
12881     {
12882       /* Only test support at download time, we may not know target
12883          capabilities at definition time.  */
12884       if (remote_supports_cond_tracepoints ())
12885         {
12886           agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12887                                                    loc->cond.get ());
12888
12889           size_left = buf.size () - strlen (buf.data ());
12890
12891           ret = snprintf (buf.data () + strlen (buf.data ()),
12892                           size_left, ":X%x,", aexpr->len);
12893
12894           if (ret < 0 || ret >= size_left)
12895             error ("%s", err_msg);
12896
12897           size_left = buf.size () - strlen (buf.data ());
12898
12899           /* Two bytes to encode each aexpr byte, plus the terminating
12900              null byte.  */
12901           if (aexpr->len * 2 + 1 > size_left)
12902             error ("%s", err_msg);
12903
12904           pkt = buf.data () + strlen (buf.data ());
12905
12906           for (int ndx = 0; ndx < aexpr->len; ++ndx)
12907             pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12908           *pkt = '\0';
12909         }
12910       else
12911         warning (_("Target does not support conditional tracepoints, "
12912                    "ignoring tp %d cond"), b->number);
12913     }
12914
12915   if (b->commands || *default_collect)
12916     {
12917       size_left = buf.size () - strlen (buf.data ());
12918
12919       ret = snprintf (buf.data () + strlen (buf.data ()),
12920                       size_left, "-");
12921
12922       if (ret < 0 || ret >= size_left)
12923         error ("%s", err_msg);
12924     }
12925
12926   putpkt (buf.data ());
12927   remote_get_noisy_reply ();
12928   if (strcmp (rs->buf.data (), "OK"))
12929     error (_("Target does not support tracepoints."));
12930
12931   /* do_single_steps (t); */
12932   for (auto action_it = tdp_actions.begin ();
12933        action_it != tdp_actions.end (); action_it++)
12934     {
12935       QUIT;     /* Allow user to bail out with ^C.  */
12936
12937       bool has_more = ((action_it + 1) != tdp_actions.end ()
12938                        || !stepping_actions.empty ());
12939
12940       ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12941                       b->number, addrbuf, /* address */
12942                       action_it->c_str (),
12943                       has_more ? '-' : 0);
12944
12945       if (ret < 0 || ret >= buf.size ())
12946         error ("%s", err_msg);
12947
12948       putpkt (buf.data ());
12949       remote_get_noisy_reply ();
12950       if (strcmp (rs->buf.data (), "OK"))
12951         error (_("Error on target while setting tracepoints."));
12952     }
12953
12954   for (auto action_it = stepping_actions.begin ();
12955        action_it != stepping_actions.end (); action_it++)
12956     {
12957       QUIT;     /* Allow user to bail out with ^C.  */
12958
12959       bool is_first = action_it == stepping_actions.begin ();
12960       bool has_more = (action_it + 1) != stepping_actions.end ();
12961
12962       ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12963                       b->number, addrbuf, /* address */
12964                       is_first ? "S" : "",
12965                       action_it->c_str (),
12966                       has_more ? "-" : "");
12967
12968       if (ret < 0 || ret >= buf.size ())
12969         error ("%s", err_msg);
12970
12971       putpkt (buf.data ());
12972       remote_get_noisy_reply ();
12973       if (strcmp (rs->buf.data (), "OK"))
12974         error (_("Error on target while setting tracepoints."));
12975     }
12976
12977   if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
12978     {
12979       if (b->location != NULL)
12980         {
12981           ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12982
12983           if (ret < 0 || ret >= buf.size ())
12984             error ("%s", err_msg);
12985
12986           encode_source_string (b->number, loc->address, "at",
12987                                 event_location_to_string (b->location.get ()),
12988                                 buf.data () + strlen (buf.data ()),
12989                                 buf.size () - strlen (buf.data ()));
12990           putpkt (buf.data ());
12991           remote_get_noisy_reply ();
12992           if (strcmp (rs->buf.data (), "OK"))
12993             warning (_("Target does not support source download."));
12994         }
12995       if (b->cond_string)
12996         {
12997           ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12998
12999           if (ret < 0 || ret >= buf.size ())
13000             error ("%s", err_msg);
13001
13002           encode_source_string (b->number, loc->address,
13003                                 "cond", b->cond_string,
13004                                 buf.data () + strlen (buf.data ()),
13005                                 buf.size () - strlen (buf.data ()));
13006           putpkt (buf.data ());
13007           remote_get_noisy_reply ();
13008           if (strcmp (rs->buf.data (), "OK"))
13009             warning (_("Target does not support source download."));
13010         }
13011       remote_download_command_source (b->number, loc->address,
13012                                       breakpoint_commands (b));
13013     }
13014 }
13015
13016 bool
13017 remote_target::can_download_tracepoint ()
13018 {
13019   struct remote_state *rs = get_remote_state ();
13020   struct trace_status *ts;
13021   int status;
13022
13023   /* Don't try to install tracepoints until we've relocated our
13024      symbols, and fetched and merged the target's tracepoint list with
13025      ours.  */
13026   if (rs->starting_up)
13027     return false;
13028
13029   ts = current_trace_status ();
13030   status = get_trace_status (ts);
13031
13032   if (status == -1 || !ts->running_known || !ts->running)
13033     return false;
13034
13035   /* If we are in a tracing experiment, but remote stub doesn't support
13036      installing tracepoint in trace, we have to return.  */
13037   if (!remote_supports_install_in_trace ())
13038     return false;
13039
13040   return true;
13041 }
13042
13043
13044 void
13045 remote_target::download_trace_state_variable (const trace_state_variable &tsv)
13046 {
13047   struct remote_state *rs = get_remote_state ();
13048   char *p;
13049
13050   xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
13051              tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13052              tsv.builtin);
13053   p = rs->buf.data () + strlen (rs->buf.data ());
13054   if ((p - rs->buf.data ()) + tsv.name.length () * 2
13055       >= get_remote_packet_size ())
13056     error (_("Trace state variable name too long for tsv definition packet"));
13057   p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
13058   *p++ = '\0';
13059   putpkt (rs->buf);
13060   remote_get_noisy_reply ();
13061   if (rs->buf[0] == '\0')
13062     error (_("Target does not support this command."));
13063   if (strcmp (rs->buf.data (), "OK") != 0)
13064     error (_("Error on target while downloading trace state variable."));
13065 }
13066
13067 void
13068 remote_target::enable_tracepoint (struct bp_location *location)
13069 {
13070   struct remote_state *rs = get_remote_state ();
13071   char addr_buf[40];
13072
13073   sprintf_vma (addr_buf, location->address);
13074   xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
13075              location->owner->number, addr_buf);
13076   putpkt (rs->buf);
13077   remote_get_noisy_reply ();
13078   if (rs->buf[0] == '\0')
13079     error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13080   if (strcmp (rs->buf.data (), "OK") != 0)
13081     error (_("Error on target while enabling tracepoint."));
13082 }
13083
13084 void
13085 remote_target::disable_tracepoint (struct bp_location *location)
13086 {
13087   struct remote_state *rs = get_remote_state ();
13088   char addr_buf[40];
13089
13090   sprintf_vma (addr_buf, location->address);
13091   xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
13092              location->owner->number, addr_buf);
13093   putpkt (rs->buf);
13094   remote_get_noisy_reply ();
13095   if (rs->buf[0] == '\0')
13096     error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13097   if (strcmp (rs->buf.data (), "OK") != 0)
13098     error (_("Error on target while disabling tracepoint."));
13099 }
13100
13101 void
13102 remote_target::trace_set_readonly_regions ()
13103 {
13104   asection *s;
13105   bfd *abfd = NULL;
13106   bfd_size_type size;
13107   bfd_vma vma;
13108   int anysecs = 0;
13109   int offset = 0;
13110
13111   if (!exec_bfd)
13112     return;                     /* No information to give.  */
13113
13114   struct remote_state *rs = get_remote_state ();
13115
13116   strcpy (rs->buf.data (), "QTro");
13117   offset = strlen (rs->buf.data ());
13118   for (s = exec_bfd->sections; s; s = s->next)
13119     {
13120       char tmp1[40], tmp2[40];
13121       int sec_length;
13122
13123       if ((s->flags & SEC_LOAD) == 0 ||
13124       /*  (s->flags & SEC_CODE) == 0 || */
13125           (s->flags & SEC_READONLY) == 0)
13126         continue;
13127
13128       anysecs = 1;
13129       vma = bfd_get_section_vma (abfd, s);
13130       size = bfd_get_section_size (s);
13131       sprintf_vma (tmp1, vma);
13132       sprintf_vma (tmp2, vma + size);
13133       sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
13134       if (offset + sec_length + 1 > rs->buf.size ())
13135         {
13136           if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
13137             warning (_("\
13138 Too many sections for read-only sections definition packet."));
13139           break;
13140         }
13141       xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
13142                  tmp1, tmp2);
13143       offset += sec_length;
13144     }
13145   if (anysecs)
13146     {
13147       putpkt (rs->buf);
13148       getpkt (&rs->buf, 0);
13149     }
13150 }
13151
13152 void
13153 remote_target::trace_start ()
13154 {
13155   struct remote_state *rs = get_remote_state ();
13156
13157   putpkt ("QTStart");
13158   remote_get_noisy_reply ();
13159   if (rs->buf[0] == '\0')
13160     error (_("Target does not support this command."));
13161   if (strcmp (rs->buf.data (), "OK") != 0)
13162     error (_("Bogus reply from target: %s"), rs->buf.data ());
13163 }
13164
13165 int
13166 remote_target::get_trace_status (struct trace_status *ts)
13167 {
13168   /* Initialize it just to avoid a GCC false warning.  */
13169   char *p = NULL;
13170   /* FIXME we need to get register block size some other way.  */
13171   extern int trace_regblock_size;
13172   enum packet_result result;
13173   struct remote_state *rs = get_remote_state ();
13174
13175   if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
13176     return -1;
13177
13178   trace_regblock_size
13179     = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
13180
13181   putpkt ("qTStatus");
13182
13183   TRY
13184     {
13185       p = remote_get_noisy_reply ();
13186     }
13187   CATCH (ex, RETURN_MASK_ERROR)
13188     {
13189       if (ex.error != TARGET_CLOSE_ERROR)
13190         {
13191           exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13192           return -1;
13193         }
13194       throw_exception (ex);
13195     }
13196   END_CATCH
13197
13198   result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13199
13200   /* If the remote target doesn't do tracing, flag it.  */
13201   if (result == PACKET_UNKNOWN)
13202     return -1;
13203
13204   /* We're working with a live target.  */
13205   ts->filename = NULL;
13206
13207   if (*p++ != 'T')
13208     error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
13209
13210   /* Function 'parse_trace_status' sets default value of each field of
13211      'ts' at first, so we don't have to do it here.  */
13212   parse_trace_status (p, ts);
13213
13214   return ts->running;
13215 }
13216
13217 void
13218 remote_target::get_tracepoint_status (struct breakpoint *bp,
13219                                       struct uploaded_tp *utp)
13220 {
13221   struct remote_state *rs = get_remote_state ();
13222   char *reply;
13223   struct bp_location *loc;
13224   struct tracepoint *tp = (struct tracepoint *) bp;
13225   size_t size = get_remote_packet_size ();
13226
13227   if (tp)
13228     {
13229       tp->hit_count = 0;
13230       tp->traceframe_usage = 0;
13231       for (loc = tp->loc; loc; loc = loc->next)
13232         {
13233           /* If the tracepoint was never downloaded, don't go asking for
13234              any status.  */
13235           if (tp->number_on_target == 0)
13236             continue;
13237           xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
13238                      phex_nz (loc->address, 0));
13239           putpkt (rs->buf);
13240           reply = remote_get_noisy_reply ();
13241           if (reply && *reply)
13242             {
13243               if (*reply == 'V')
13244                 parse_tracepoint_status (reply + 1, bp, utp);
13245             }
13246         }
13247     }
13248   else if (utp)
13249     {
13250       utp->hit_count = 0;
13251       utp->traceframe_usage = 0;
13252       xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
13253                  phex_nz (utp->addr, 0));
13254       putpkt (rs->buf);
13255       reply = remote_get_noisy_reply ();
13256       if (reply && *reply)
13257         {
13258           if (*reply == 'V')
13259             parse_tracepoint_status (reply + 1, bp, utp);
13260         }
13261     }
13262 }
13263
13264 void
13265 remote_target::trace_stop ()
13266 {
13267   struct remote_state *rs = get_remote_state ();
13268
13269   putpkt ("QTStop");
13270   remote_get_noisy_reply ();
13271   if (rs->buf[0] == '\0')
13272     error (_("Target does not support this command."));
13273   if (strcmp (rs->buf.data (), "OK") != 0)
13274     error (_("Bogus reply from target: %s"), rs->buf.data ());
13275 }
13276
13277 int
13278 remote_target::trace_find (enum trace_find_type type, int num,
13279                            CORE_ADDR addr1, CORE_ADDR addr2,
13280                            int *tpp)
13281 {
13282   struct remote_state *rs = get_remote_state ();
13283   char *endbuf = rs->buf.data () + get_remote_packet_size ();
13284   char *p, *reply;
13285   int target_frameno = -1, target_tracept = -1;
13286
13287   /* Lookups other than by absolute frame number depend on the current
13288      trace selected, so make sure it is correct on the remote end
13289      first.  */
13290   if (type != tfind_number)
13291     set_remote_traceframe ();
13292
13293   p = rs->buf.data ();
13294   strcpy (p, "QTFrame:");
13295   p = strchr (p, '\0');
13296   switch (type)
13297     {
13298     case tfind_number:
13299       xsnprintf (p, endbuf - p, "%x", num);
13300       break;
13301     case tfind_pc:
13302       xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
13303       break;
13304     case tfind_tp:
13305       xsnprintf (p, endbuf - p, "tdp:%x", num);
13306       break;
13307     case tfind_range:
13308       xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13309                  phex_nz (addr2, 0));
13310       break;
13311     case tfind_outside:
13312       xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13313                  phex_nz (addr2, 0));
13314       break;
13315     default:
13316       error (_("Unknown trace find type %d"), type);
13317     }
13318
13319   putpkt (rs->buf);
13320   reply = remote_get_noisy_reply ();
13321   if (*reply == '\0')
13322     error (_("Target does not support this command."));
13323
13324   while (reply && *reply)
13325     switch (*reply)
13326       {
13327       case 'F':
13328         p = ++reply;
13329         target_frameno = (int) strtol (p, &reply, 16);
13330         if (reply == p)
13331           error (_("Unable to parse trace frame number"));
13332         /* Don't update our remote traceframe number cache on failure
13333            to select a remote traceframe.  */
13334         if (target_frameno == -1)
13335           return -1;
13336         break;
13337       case 'T':
13338         p = ++reply;
13339         target_tracept = (int) strtol (p, &reply, 16);
13340         if (reply == p)
13341           error (_("Unable to parse tracepoint number"));
13342         break;
13343       case 'O':         /* "OK"? */
13344         if (reply[1] == 'K' && reply[2] == '\0')
13345           reply += 2;
13346         else
13347           error (_("Bogus reply from target: %s"), reply);
13348         break;
13349       default:
13350         error (_("Bogus reply from target: %s"), reply);
13351       }
13352   if (tpp)
13353     *tpp = target_tracept;
13354
13355   rs->remote_traceframe_number = target_frameno;
13356   return target_frameno;
13357 }
13358
13359 bool
13360 remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
13361 {
13362   struct remote_state *rs = get_remote_state ();
13363   char *reply;
13364   ULONGEST uval;
13365
13366   set_remote_traceframe ();
13367
13368   xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
13369   putpkt (rs->buf);
13370   reply = remote_get_noisy_reply ();
13371   if (reply && *reply)
13372     {
13373       if (*reply == 'V')
13374         {
13375           unpack_varlen_hex (reply + 1, &uval);
13376           *val = (LONGEST) uval;
13377           return true;
13378         }
13379     }
13380   return false;
13381 }
13382
13383 int
13384 remote_target::save_trace_data (const char *filename)
13385 {
13386   struct remote_state *rs = get_remote_state ();
13387   char *p, *reply;
13388
13389   p = rs->buf.data ();
13390   strcpy (p, "QTSave:");
13391   p += strlen (p);
13392   if ((p - rs->buf.data ()) + strlen (filename) * 2
13393       >= get_remote_packet_size ())
13394     error (_("Remote file name too long for trace save packet"));
13395   p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
13396   *p++ = '\0';
13397   putpkt (rs->buf);
13398   reply = remote_get_noisy_reply ();
13399   if (*reply == '\0')
13400     error (_("Target does not support this command."));
13401   if (strcmp (reply, "OK") != 0)
13402     error (_("Bogus reply from target: %s"), reply);
13403   return 0;
13404 }
13405
13406 /* This is basically a memory transfer, but needs to be its own packet
13407    because we don't know how the target actually organizes its trace
13408    memory, plus we want to be able to ask for as much as possible, but
13409    not be unhappy if we don't get as much as we ask for.  */
13410
13411 LONGEST
13412 remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
13413 {
13414   struct remote_state *rs = get_remote_state ();
13415   char *reply;
13416   char *p;
13417   int rslt;
13418
13419   p = rs->buf.data ();
13420   strcpy (p, "qTBuffer:");
13421   p += strlen (p);
13422   p += hexnumstr (p, offset);
13423   *p++ = ',';
13424   p += hexnumstr (p, len);
13425   *p++ = '\0';
13426
13427   putpkt (rs->buf);
13428   reply = remote_get_noisy_reply ();
13429   if (reply && *reply)
13430     {
13431       /* 'l' by itself means we're at the end of the buffer and
13432          there is nothing more to get.  */
13433       if (*reply == 'l')
13434         return 0;
13435
13436       /* Convert the reply into binary.  Limit the number of bytes to
13437          convert according to our passed-in buffer size, rather than
13438          what was returned in the packet; if the target is
13439          unexpectedly generous and gives us a bigger reply than we
13440          asked for, we don't want to crash.  */
13441       rslt = hex2bin (reply, buf, len);
13442       return rslt;
13443     }
13444
13445   /* Something went wrong, flag as an error.  */
13446   return -1;
13447 }
13448
13449 void
13450 remote_target::set_disconnected_tracing (int val)
13451 {
13452   struct remote_state *rs = get_remote_state ();
13453
13454   if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
13455     {
13456       char *reply;
13457
13458       xsnprintf (rs->buf.data (), get_remote_packet_size (),
13459                  "QTDisconnected:%x", val);
13460       putpkt (rs->buf);
13461       reply = remote_get_noisy_reply ();
13462       if (*reply == '\0')
13463         error (_("Target does not support this command."));
13464       if (strcmp (reply, "OK") != 0)
13465         error (_("Bogus reply from target: %s"), reply);
13466     }
13467   else if (val)
13468     warning (_("Target does not support disconnected tracing."));
13469 }
13470
13471 int
13472 remote_target::core_of_thread (ptid_t ptid)
13473 {
13474   struct thread_info *info = find_thread_ptid (ptid);
13475
13476   if (info != NULL && info->priv != NULL)
13477     return get_remote_thread_info (info)->core;
13478
13479   return -1;
13480 }
13481
13482 void
13483 remote_target::set_circular_trace_buffer (int val)
13484 {
13485   struct remote_state *rs = get_remote_state ();
13486   char *reply;
13487
13488   xsnprintf (rs->buf.data (), get_remote_packet_size (),
13489              "QTBuffer:circular:%x", val);
13490   putpkt (rs->buf);
13491   reply = remote_get_noisy_reply ();
13492   if (*reply == '\0')
13493     error (_("Target does not support this command."));
13494   if (strcmp (reply, "OK") != 0)
13495     error (_("Bogus reply from target: %s"), reply);
13496 }
13497
13498 traceframe_info_up
13499 remote_target::traceframe_info ()
13500 {
13501   gdb::optional<gdb::char_vector> text
13502     = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
13503                             NULL);
13504   if (text)
13505     return parse_traceframe_info (text->data ());
13506
13507   return NULL;
13508 }
13509
13510 /* Handle the qTMinFTPILen packet.  Returns the minimum length of
13511    instruction on which a fast tracepoint may be placed.  Returns -1
13512    if the packet is not supported, and 0 if the minimum instruction
13513    length is unknown.  */
13514
13515 int
13516 remote_target::get_min_fast_tracepoint_insn_len ()
13517 {
13518   struct remote_state *rs = get_remote_state ();
13519   char *reply;
13520
13521   /* If we're not debugging a process yet, the IPA can't be
13522      loaded.  */
13523   if (!target_has_execution)
13524     return 0;
13525
13526   /* Make sure the remote is pointing at the right process.  */
13527   set_general_process ();
13528
13529   xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
13530   putpkt (rs->buf);
13531   reply = remote_get_noisy_reply ();
13532   if (*reply == '\0')
13533     return -1;
13534   else
13535     {
13536       ULONGEST min_insn_len;
13537
13538       unpack_varlen_hex (reply, &min_insn_len);
13539
13540       return (int) min_insn_len;
13541     }
13542 }
13543
13544 void
13545 remote_target::set_trace_buffer_size (LONGEST val)
13546 {
13547   if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
13548     {
13549       struct remote_state *rs = get_remote_state ();
13550       char *buf = rs->buf.data ();
13551       char *endbuf = buf + get_remote_packet_size ();
13552       enum packet_result result;
13553
13554       gdb_assert (val >= 0 || val == -1);
13555       buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13556       /* Send -1 as literal "-1" to avoid host size dependency.  */
13557       if (val < 0)
13558         {
13559           *buf++ = '-';
13560           buf += hexnumstr (buf, (ULONGEST) -val);
13561         }
13562       else
13563         buf += hexnumstr (buf, (ULONGEST) val);
13564
13565       putpkt (rs->buf);
13566       remote_get_noisy_reply ();
13567       result = packet_ok (rs->buf,
13568                   &remote_protocol_packets[PACKET_QTBuffer_size]);
13569
13570       if (result != PACKET_OK)
13571         warning (_("Bogus reply from target: %s"), rs->buf.data ());
13572     }
13573 }
13574
13575 bool
13576 remote_target::set_trace_notes (const char *user, const char *notes,
13577                                 const char *stop_notes)
13578 {
13579   struct remote_state *rs = get_remote_state ();
13580   char *reply;
13581   char *buf = rs->buf.data ();
13582   char *endbuf = buf + get_remote_packet_size ();
13583   int nbytes;
13584
13585   buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13586   if (user)
13587     {
13588       buf += xsnprintf (buf, endbuf - buf, "user:");
13589       nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
13590       buf += 2 * nbytes;
13591       *buf++ = ';';
13592     }
13593   if (notes)
13594     {
13595       buf += xsnprintf (buf, endbuf - buf, "notes:");
13596       nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
13597       buf += 2 * nbytes;
13598       *buf++ = ';';
13599     }
13600   if (stop_notes)
13601     {
13602       buf += xsnprintf (buf, endbuf - buf, "tstop:");
13603       nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
13604       buf += 2 * nbytes;
13605       *buf++ = ';';
13606     }
13607   /* Ensure the buffer is terminated.  */
13608   *buf = '\0';
13609
13610   putpkt (rs->buf);
13611   reply = remote_get_noisy_reply ();
13612   if (*reply == '\0')
13613     return false;
13614
13615   if (strcmp (reply, "OK") != 0)
13616     error (_("Bogus reply from target: %s"), reply);
13617
13618   return true;
13619 }
13620
13621 bool
13622 remote_target::use_agent (bool use)
13623 {
13624   if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
13625     {
13626       struct remote_state *rs = get_remote_state ();
13627
13628       /* If the stub supports QAgent.  */
13629       xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
13630       putpkt (rs->buf);
13631       getpkt (&rs->buf, 0);
13632
13633       if (strcmp (rs->buf.data (), "OK") == 0)
13634         {
13635           ::use_agent = use;
13636           return true;
13637         }
13638     }
13639
13640   return false;
13641 }
13642
13643 bool
13644 remote_target::can_use_agent ()
13645 {
13646   return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
13647 }
13648
13649 struct btrace_target_info
13650 {
13651   /* The ptid of the traced thread.  */
13652   ptid_t ptid;
13653
13654   /* The obtained branch trace configuration.  */
13655   struct btrace_config conf;
13656 };
13657
13658 /* Reset our idea of our target's btrace configuration.  */
13659
13660 static void
13661 remote_btrace_reset (remote_state *rs)
13662 {
13663   memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13664 }
13665
13666 /* Synchronize the configuration with the target.  */
13667
13668 void
13669 remote_target::btrace_sync_conf (const btrace_config *conf)
13670 {
13671   struct packet_config *packet;
13672   struct remote_state *rs;
13673   char *buf, *pos, *endbuf;
13674
13675   rs = get_remote_state ();
13676   buf = rs->buf.data ();
13677   endbuf = buf + get_remote_packet_size ();
13678
13679   packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13680   if (packet_config_support (packet) == PACKET_ENABLE
13681       && conf->bts.size != rs->btrace_config.bts.size)
13682     {
13683       pos = buf;
13684       pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13685                         conf->bts.size);
13686
13687       putpkt (buf);
13688       getpkt (&rs->buf, 0);
13689
13690       if (packet_ok (buf, packet) == PACKET_ERROR)
13691         {
13692           if (buf[0] == 'E' && buf[1] == '.')
13693             error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13694           else
13695             error (_("Failed to configure the BTS buffer size."));
13696         }
13697
13698       rs->btrace_config.bts.size = conf->bts.size;
13699     }
13700
13701   packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13702   if (packet_config_support (packet) == PACKET_ENABLE
13703       && conf->pt.size != rs->btrace_config.pt.size)
13704     {
13705       pos = buf;
13706       pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13707                         conf->pt.size);
13708
13709       putpkt (buf);
13710       getpkt (&rs->buf, 0);
13711
13712       if (packet_ok (buf, packet) == PACKET_ERROR)
13713         {
13714           if (buf[0] == 'E' && buf[1] == '.')
13715             error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13716           else
13717             error (_("Failed to configure the trace buffer size."));
13718         }
13719
13720       rs->btrace_config.pt.size = conf->pt.size;
13721     }
13722 }
13723
13724 /* Read the current thread's btrace configuration from the target and
13725    store it into CONF.  */
13726
13727 static void
13728 btrace_read_config (struct btrace_config *conf)
13729 {
13730   gdb::optional<gdb::char_vector> xml
13731     = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
13732   if (xml)
13733     parse_xml_btrace_conf (conf, xml->data ());
13734 }
13735
13736 /* Maybe reopen target btrace.  */
13737
13738 void
13739 remote_target::remote_btrace_maybe_reopen ()
13740 {
13741   struct remote_state *rs = get_remote_state ();
13742   int btrace_target_pushed = 0;
13743 #if !defined (HAVE_LIBIPT)
13744   int warned = 0;
13745 #endif
13746
13747   scoped_restore_current_thread restore_thread;
13748
13749   for (thread_info *tp : all_non_exited_threads ())
13750     {
13751       set_general_thread (tp->ptid);
13752
13753       memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13754       btrace_read_config (&rs->btrace_config);
13755
13756       if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13757         continue;
13758
13759 #if !defined (HAVE_LIBIPT)
13760       if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13761         {
13762           if (!warned)
13763             {
13764               warned = 1;
13765               warning (_("Target is recording using Intel Processor Trace "
13766                          "but support was disabled at compile time."));
13767             }
13768
13769           continue;
13770         }
13771 #endif /* !defined (HAVE_LIBIPT) */
13772
13773       /* Push target, once, but before anything else happens.  This way our
13774          changes to the threads will be cleaned up by unpushing the target
13775          in case btrace_read_config () throws.  */
13776       if (!btrace_target_pushed)
13777         {
13778           btrace_target_pushed = 1;
13779           record_btrace_push_target ();
13780           printf_filtered (_("Target is recording using %s.\n"),
13781                            btrace_format_string (rs->btrace_config.format));
13782         }
13783
13784       tp->btrace.target = XCNEW (struct btrace_target_info);
13785       tp->btrace.target->ptid = tp->ptid;
13786       tp->btrace.target->conf = rs->btrace_config;
13787     }
13788 }
13789
13790 /* Enable branch tracing.  */
13791
13792 struct btrace_target_info *
13793 remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
13794 {
13795   struct btrace_target_info *tinfo = NULL;
13796   struct packet_config *packet = NULL;
13797   struct remote_state *rs = get_remote_state ();
13798   char *buf = rs->buf.data ();
13799   char *endbuf = buf + get_remote_packet_size ();
13800
13801   switch (conf->format)
13802     {
13803       case BTRACE_FORMAT_BTS:
13804         packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13805         break;
13806
13807       case BTRACE_FORMAT_PT:
13808         packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13809         break;
13810     }
13811
13812   if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
13813     error (_("Target does not support branch tracing."));
13814
13815   btrace_sync_conf (conf);
13816
13817   set_general_thread (ptid);
13818
13819   buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13820   putpkt (rs->buf);
13821   getpkt (&rs->buf, 0);
13822
13823   if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13824     {
13825       if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13826         error (_("Could not enable branch tracing for %s: %s"),
13827                target_pid_to_str (ptid), &rs->buf[2]);
13828       else
13829         error (_("Could not enable branch tracing for %s."),
13830                target_pid_to_str (ptid));
13831     }
13832
13833   tinfo = XCNEW (struct btrace_target_info);
13834   tinfo->ptid = ptid;
13835
13836   /* If we fail to read the configuration, we lose some information, but the
13837      tracing itself is not impacted.  */
13838   TRY
13839     {
13840       btrace_read_config (&tinfo->conf);
13841     }
13842   CATCH (err, RETURN_MASK_ERROR)
13843     {
13844       if (err.message != NULL)
13845         warning ("%s", err.message);
13846     }
13847   END_CATCH
13848
13849   return tinfo;
13850 }
13851
13852 /* Disable branch tracing.  */
13853
13854 void
13855 remote_target::disable_btrace (struct btrace_target_info *tinfo)
13856 {
13857   struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13858   struct remote_state *rs = get_remote_state ();
13859   char *buf = rs->buf.data ();
13860   char *endbuf = buf + get_remote_packet_size ();
13861
13862   if (packet_config_support (packet) != PACKET_ENABLE)
13863     error (_("Target does not support branch tracing."));
13864
13865   set_general_thread (tinfo->ptid);
13866
13867   buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13868   putpkt (rs->buf);
13869   getpkt (&rs->buf, 0);
13870
13871   if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13872     {
13873       if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13874         error (_("Could not disable branch tracing for %s: %s"),
13875                target_pid_to_str (tinfo->ptid), &rs->buf[2]);
13876       else
13877         error (_("Could not disable branch tracing for %s."),
13878                target_pid_to_str (tinfo->ptid));
13879     }
13880
13881   xfree (tinfo);
13882 }
13883
13884 /* Teardown branch tracing.  */
13885
13886 void
13887 remote_target::teardown_btrace (struct btrace_target_info *tinfo)
13888 {
13889   /* We must not talk to the target during teardown.  */
13890   xfree (tinfo);
13891 }
13892
13893 /* Read the branch trace.  */
13894
13895 enum btrace_error
13896 remote_target::read_btrace (struct btrace_data *btrace,
13897                             struct btrace_target_info *tinfo,
13898                             enum btrace_read_type type)
13899 {
13900   struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
13901   const char *annex;
13902
13903   if (packet_config_support (packet) != PACKET_ENABLE)
13904     error (_("Target does not support branch tracing."));
13905
13906 #if !defined(HAVE_LIBEXPAT)
13907   error (_("Cannot process branch tracing result. XML parsing not supported."));
13908 #endif
13909
13910   switch (type)
13911     {
13912     case BTRACE_READ_ALL:
13913       annex = "all";
13914       break;
13915     case BTRACE_READ_NEW:
13916       annex = "new";
13917       break;
13918     case BTRACE_READ_DELTA:
13919       annex = "delta";
13920       break;
13921     default:
13922       internal_error (__FILE__, __LINE__,
13923                       _("Bad branch tracing read type: %u."),
13924                       (unsigned int) type);
13925     }
13926
13927   gdb::optional<gdb::char_vector> xml
13928     = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
13929   if (!xml)
13930     return BTRACE_ERR_UNKNOWN;
13931
13932   parse_xml_btrace (btrace, xml->data ());
13933
13934   return BTRACE_ERR_NONE;
13935 }
13936
13937 const struct btrace_config *
13938 remote_target::btrace_conf (const struct btrace_target_info *tinfo)
13939 {
13940   return &tinfo->conf;
13941 }
13942
13943 bool
13944 remote_target::augmented_libraries_svr4_read ()
13945 {
13946   return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13947           == PACKET_ENABLE);
13948 }
13949
13950 /* Implementation of to_load.  */
13951
13952 void
13953 remote_target::load (const char *name, int from_tty)
13954 {
13955   generic_load (name, from_tty);
13956 }
13957
13958 /* Accepts an integer PID; returns a string representing a file that
13959    can be opened on the remote side to get the symbols for the child
13960    process.  Returns NULL if the operation is not supported.  */
13961
13962 char *
13963 remote_target::pid_to_exec_file (int pid)
13964 {
13965   static gdb::optional<gdb::char_vector> filename;
13966   struct inferior *inf;
13967   char *annex = NULL;
13968
13969   if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13970     return NULL;
13971
13972   inf = find_inferior_pid (pid);
13973   if (inf == NULL)
13974     internal_error (__FILE__, __LINE__,
13975                     _("not currently attached to process %d"), pid);
13976
13977   if (!inf->fake_pid_p)
13978     {
13979       const int annex_size = 9;
13980
13981       annex = (char *) alloca (annex_size);
13982       xsnprintf (annex, annex_size, "%x", pid);
13983     }
13984
13985   filename = target_read_stralloc (current_top_target (),
13986                                    TARGET_OBJECT_EXEC_FILE, annex);
13987
13988   return filename ? filename->data () : nullptr;
13989 }
13990
13991 /* Implement the to_can_do_single_step target_ops method.  */
13992
13993 int
13994 remote_target::can_do_single_step ()
13995 {
13996   /* We can only tell whether target supports single step or not by
13997      supported s and S vCont actions if the stub supports vContSupported
13998      feature.  If the stub doesn't support vContSupported feature,
13999      we have conservatively to think target doesn't supports single
14000      step.  */
14001   if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14002     {
14003       struct remote_state *rs = get_remote_state ();
14004
14005       if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14006         remote_vcont_probe ();
14007
14008       return rs->supports_vCont.s && rs->supports_vCont.S;
14009     }
14010   else
14011     return 0;
14012 }
14013
14014 /* Implementation of the to_execution_direction method for the remote
14015    target.  */
14016
14017 enum exec_direction_kind
14018 remote_target::execution_direction ()
14019 {
14020   struct remote_state *rs = get_remote_state ();
14021
14022   return rs->last_resume_exec_dir;
14023 }
14024
14025 /* Return pointer to the thread_info struct which corresponds to
14026    THREAD_HANDLE (having length HANDLE_LEN).  */
14027
14028 thread_info *
14029 remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14030                                              int handle_len,
14031                                              inferior *inf)
14032 {
14033   for (thread_info *tp : all_non_exited_threads ())
14034     {
14035       remote_thread_info *priv = get_remote_thread_info (tp);
14036
14037       if (tp->inf == inf && priv != NULL)
14038         {
14039           if (handle_len != priv->thread_handle.size ())
14040             error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
14041                    handle_len, priv->thread_handle.size ());
14042           if (memcmp (thread_handle, priv->thread_handle.data (),
14043                       handle_len) == 0)
14044             return tp;
14045         }
14046     }
14047
14048   return NULL;
14049 }
14050
14051 bool
14052 remote_target::can_async_p ()
14053 {
14054   struct remote_state *rs = get_remote_state ();
14055
14056   /* We don't go async if the user has explicitly prevented it with the
14057      "maint set target-async" command.  */
14058   if (!target_async_permitted)
14059     return false;
14060
14061   /* We're async whenever the serial device is.  */
14062   return serial_can_async_p (rs->remote_desc);
14063 }
14064
14065 bool
14066 remote_target::is_async_p ()
14067 {
14068   struct remote_state *rs = get_remote_state ();
14069
14070   if (!target_async_permitted)
14071     /* We only enable async when the user specifically asks for it.  */
14072     return false;
14073
14074   /* We're async whenever the serial device is.  */
14075   return serial_is_async_p (rs->remote_desc);
14076 }
14077
14078 /* Pass the SERIAL event on and up to the client.  One day this code
14079    will be able to delay notifying the client of an event until the
14080    point where an entire packet has been received.  */
14081
14082 static serial_event_ftype remote_async_serial_handler;
14083
14084 static void
14085 remote_async_serial_handler (struct serial *scb, void *context)
14086 {
14087   /* Don't propogate error information up to the client.  Instead let
14088      the client find out about the error by querying the target.  */
14089   inferior_event_handler (INF_REG_EVENT, NULL);
14090 }
14091
14092 static void
14093 remote_async_inferior_event_handler (gdb_client_data data)
14094 {
14095   inferior_event_handler (INF_REG_EVENT, data);
14096 }
14097
14098 void
14099 remote_target::async (int enable)
14100 {
14101   struct remote_state *rs = get_remote_state ();
14102
14103   if (enable)
14104     {
14105       serial_async (rs->remote_desc, remote_async_serial_handler, rs);
14106
14107       /* If there are pending events in the stop reply queue tell the
14108          event loop to process them.  */
14109       if (!rs->stop_reply_queue.empty ())
14110         mark_async_event_handler (rs->remote_async_inferior_event_token);
14111       /* For simplicity, below we clear the pending events token
14112          without remembering whether it is marked, so here we always
14113          mark it.  If there's actually no pending notification to
14114          process, this ends up being a no-op (other than a spurious
14115          event-loop wakeup).  */
14116       if (target_is_non_stop_p ())
14117         mark_async_event_handler (rs->notif_state->get_pending_events_token);
14118     }
14119   else
14120     {
14121       serial_async (rs->remote_desc, NULL, NULL);
14122       /* If the core is disabling async, it doesn't want to be
14123          disturbed with target events.  Clear all async event sources
14124          too.  */
14125       clear_async_event_handler (rs->remote_async_inferior_event_token);
14126       if (target_is_non_stop_p ())
14127         clear_async_event_handler (rs->notif_state->get_pending_events_token);
14128     }
14129 }
14130
14131 /* Implementation of the to_thread_events method.  */
14132
14133 void
14134 remote_target::thread_events (int enable)
14135 {
14136   struct remote_state *rs = get_remote_state ();
14137   size_t size = get_remote_packet_size ();
14138
14139   if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14140     return;
14141
14142   xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
14143   putpkt (rs->buf);
14144   getpkt (&rs->buf, 0);
14145
14146   switch (packet_ok (rs->buf,
14147                      &remote_protocol_packets[PACKET_QThreadEvents]))
14148     {
14149     case PACKET_OK:
14150       if (strcmp (rs->buf.data (), "OK") != 0)
14151         error (_("Remote refused setting thread events: %s"), rs->buf.data ());
14152       break;
14153     case PACKET_ERROR:
14154       warning (_("Remote failure reply: %s"), rs->buf.data ());
14155       break;
14156     case PACKET_UNKNOWN:
14157       break;
14158     }
14159 }
14160
14161 static void
14162 set_remote_cmd (const char *args, int from_tty)
14163 {
14164   help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
14165 }
14166
14167 static void
14168 show_remote_cmd (const char *args, int from_tty)
14169 {
14170   /* We can't just use cmd_show_list here, because we want to skip
14171      the redundant "show remote Z-packet" and the legacy aliases.  */
14172   struct cmd_list_element *list = remote_show_cmdlist;
14173   struct ui_out *uiout = current_uiout;
14174
14175   ui_out_emit_tuple tuple_emitter (uiout, "showlist");
14176   for (; list != NULL; list = list->next)
14177     if (strcmp (list->name, "Z-packet") == 0)
14178       continue;
14179     else if (list->type == not_set_cmd)
14180       /* Alias commands are exactly like the original, except they
14181          don't have the normal type.  */
14182       continue;
14183     else
14184       {
14185         ui_out_emit_tuple option_emitter (uiout, "option");
14186
14187         uiout->field_string ("name", list->name);
14188         uiout->text (":  ");
14189         if (list->type == show_cmd)
14190           do_show_command (NULL, from_tty, list);
14191         else
14192           cmd_func (list, NULL, from_tty);
14193       }
14194 }
14195
14196
14197 /* Function to be called whenever a new objfile (shlib) is detected.  */
14198 static void
14199 remote_new_objfile (struct objfile *objfile)
14200 {
14201   remote_target *remote = get_current_remote_target ();
14202
14203   if (remote != NULL)                   /* Have a remote connection.  */
14204     remote->remote_check_symbols ();
14205 }
14206
14207 /* Pull all the tracepoints defined on the target and create local
14208    data structures representing them.  We don't want to create real
14209    tracepoints yet, we don't want to mess up the user's existing
14210    collection.  */
14211   
14212 int
14213 remote_target::upload_tracepoints (struct uploaded_tp **utpp)
14214 {
14215   struct remote_state *rs = get_remote_state ();
14216   char *p;
14217
14218   /* Ask for a first packet of tracepoint definition.  */
14219   putpkt ("qTfP");
14220   getpkt (&rs->buf, 0);
14221   p = rs->buf.data ();
14222   while (*p && *p != 'l')
14223     {
14224       parse_tracepoint_definition (p, utpp);
14225       /* Ask for another packet of tracepoint definition.  */
14226       putpkt ("qTsP");
14227       getpkt (&rs->buf, 0);
14228       p = rs->buf.data ();
14229     }
14230   return 0;
14231 }
14232
14233 int
14234 remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
14235 {
14236   struct remote_state *rs = get_remote_state ();
14237   char *p;
14238
14239   /* Ask for a first packet of variable definition.  */
14240   putpkt ("qTfV");
14241   getpkt (&rs->buf, 0);
14242   p = rs->buf.data ();
14243   while (*p && *p != 'l')
14244     {
14245       parse_tsv_definition (p, utsvp);
14246       /* Ask for another packet of variable definition.  */
14247       putpkt ("qTsV");
14248       getpkt (&rs->buf, 0);
14249       p = rs->buf.data ();
14250     }
14251   return 0;
14252 }
14253
14254 /* The "set/show range-stepping" show hook.  */
14255
14256 static void
14257 show_range_stepping (struct ui_file *file, int from_tty,
14258                      struct cmd_list_element *c,
14259                      const char *value)
14260 {
14261   fprintf_filtered (file,
14262                     _("Debugger's willingness to use range stepping "
14263                       "is %s.\n"), value);
14264 }
14265
14266 /* Return true if the vCont;r action is supported by the remote
14267    stub.  */
14268
14269 bool
14270 remote_target::vcont_r_supported ()
14271 {
14272   if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14273     remote_vcont_probe ();
14274
14275   return (packet_support (PACKET_vCont) == PACKET_ENABLE
14276           && get_remote_state ()->supports_vCont.r);
14277 }
14278
14279 /* The "set/show range-stepping" set hook.  */
14280
14281 static void
14282 set_range_stepping (const char *ignore_args, int from_tty,
14283                     struct cmd_list_element *c)
14284 {
14285   /* When enabling, check whether range stepping is actually supported
14286      by the target, and warn if not.  */
14287   if (use_range_stepping)
14288     {
14289       remote_target *remote = get_current_remote_target ();
14290       if (remote == NULL
14291           || !remote->vcont_r_supported ())
14292         warning (_("Range stepping is not supported by the current target"));
14293     }
14294 }
14295
14296 void
14297 _initialize_remote (void)
14298 {
14299   struct cmd_list_element *cmd;
14300   const char *cmd_name;
14301
14302   /* architecture specific data */
14303   remote_g_packet_data_handle =
14304     gdbarch_data_register_pre_init (remote_g_packet_data_init);
14305
14306   remote_pspace_data
14307     = register_program_space_data_with_cleanup (NULL,
14308                                                 remote_pspace_data_cleanup);
14309
14310   add_target (remote_target_info, remote_target::open);
14311   add_target (extended_remote_target_info, extended_remote_target::open);
14312
14313   /* Hook into new objfile notification.  */
14314   gdb::observers::new_objfile.attach (remote_new_objfile);
14315
14316 #if 0
14317   init_remote_threadtests ();
14318 #endif
14319
14320   /* set/show remote ...  */
14321
14322   add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
14323 Remote protocol specific variables\n\
14324 Configure various remote-protocol specific variables such as\n\
14325 the packets being used"),
14326                   &remote_set_cmdlist, "set remote ",
14327                   0 /* allow-unknown */, &setlist);
14328   add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
14329 Remote protocol specific variables\n\
14330 Configure various remote-protocol specific variables such as\n\
14331 the packets being used"),
14332                   &remote_show_cmdlist, "show remote ",
14333                   0 /* allow-unknown */, &showlist);
14334
14335   add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14336 Compare section data on target to the exec file.\n\
14337 Argument is a single section name (default: all loaded sections).\n\
14338 To compare only read-only loaded sections, specify the -r option."),
14339            &cmdlist);
14340
14341   add_cmd ("packet", class_maintenance, packet_command, _("\
14342 Send an arbitrary packet to a remote target.\n\
14343    maintenance packet TEXT\n\
14344 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14345 this command sends the string TEXT to the inferior, and displays the\n\
14346 response packet.  GDB supplies the initial `$' character, and the\n\
14347 terminating `#' character and checksum."),
14348            &maintenancelist);
14349
14350   add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14351 Set whether to send break if interrupted."), _("\
14352 Show whether to send break if interrupted."), _("\
14353 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14354                            set_remotebreak, show_remotebreak,
14355                            &setlist, &showlist);
14356   cmd_name = "remotebreak";
14357   cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14358   deprecate_cmd (cmd, "set remote interrupt-sequence");
14359   cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14360   cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14361   deprecate_cmd (cmd, "show remote interrupt-sequence");
14362
14363   add_setshow_enum_cmd ("interrupt-sequence", class_support,
14364                         interrupt_sequence_modes, &interrupt_sequence_mode,
14365                         _("\
14366 Set interrupt sequence to remote target."), _("\
14367 Show interrupt sequence to remote target."), _("\
14368 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14369                         NULL, show_interrupt_sequence,
14370                         &remote_set_cmdlist,
14371                         &remote_show_cmdlist);
14372
14373   add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14374                            &interrupt_on_connect, _("\
14375 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("            \
14376 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("           \
14377 If set, interrupt sequence is sent to remote target."),
14378                            NULL, NULL,
14379                            &remote_set_cmdlist, &remote_show_cmdlist);
14380
14381   /* Install commands for configuring memory read/write packets.  */
14382
14383   add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14384 Set the maximum number of bytes per memory write packet (deprecated)."),
14385            &setlist);
14386   add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14387 Show the maximum number of bytes per memory write packet (deprecated)."),
14388            &showlist);
14389   add_cmd ("memory-write-packet-size", no_class,
14390            set_memory_write_packet_size, _("\
14391 Set the maximum number of bytes per memory-write packet.\n\
14392 Specify the number of bytes in a packet or 0 (zero) for the\n\
14393 default packet size.  The actual limit is further reduced\n\
14394 dependent on the target.  Specify ``fixed'' to disable the\n\
14395 further restriction and ``limit'' to enable that restriction."),
14396            &remote_set_cmdlist);
14397   add_cmd ("memory-read-packet-size", no_class,
14398            set_memory_read_packet_size, _("\
14399 Set the maximum number of bytes per memory-read packet.\n\
14400 Specify the number of bytes in a packet or 0 (zero) for the\n\
14401 default packet size.  The actual limit is further reduced\n\
14402 dependent on the target.  Specify ``fixed'' to disable the\n\
14403 further restriction and ``limit'' to enable that restriction."),
14404            &remote_set_cmdlist);
14405   add_cmd ("memory-write-packet-size", no_class,
14406            show_memory_write_packet_size,
14407            _("Show the maximum number of bytes per memory-write packet."),
14408            &remote_show_cmdlist);
14409   add_cmd ("memory-read-packet-size", no_class,
14410            show_memory_read_packet_size,
14411            _("Show the maximum number of bytes per memory-read packet."),
14412            &remote_show_cmdlist);
14413
14414   add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
14415                             &remote_hw_watchpoint_limit, _("\
14416 Set the maximum number of target hardware watchpoints."), _("\
14417 Show the maximum number of target hardware watchpoints."), _("\
14418 Specify \"unlimited\" for unlimited hardware watchpoints."),
14419                             NULL, show_hardware_watchpoint_limit,
14420                             &remote_set_cmdlist,
14421                             &remote_show_cmdlist);
14422   add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14423                             no_class,
14424                             &remote_hw_watchpoint_length_limit, _("\
14425 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14426 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14427 Specify \"unlimited\" to allow watchpoints of unlimited size."),
14428                             NULL, show_hardware_watchpoint_length_limit,
14429                             &remote_set_cmdlist, &remote_show_cmdlist);
14430   add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
14431                             &remote_hw_breakpoint_limit, _("\
14432 Set the maximum number of target hardware breakpoints."), _("\
14433 Show the maximum number of target hardware breakpoints."), _("\
14434 Specify \"unlimited\" for unlimited hardware breakpoints."),
14435                             NULL, show_hardware_breakpoint_limit,
14436                             &remote_set_cmdlist, &remote_show_cmdlist);
14437
14438   add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14439                              &remote_address_size, _("\
14440 Set the maximum size of the address (in bits) in a memory packet."), _("\
14441 Show the maximum size of the address (in bits) in a memory packet."), NULL,
14442                              NULL,
14443                              NULL, /* FIXME: i18n: */
14444                              &setlist, &showlist);
14445
14446   init_all_packet_configs ();
14447
14448   add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
14449                          "X", "binary-download", 1);
14450
14451   add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
14452                          "vCont", "verbose-resume", 0);
14453
14454   add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14455                          "QPassSignals", "pass-signals", 0);
14456
14457   add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14458                          "QCatchSyscalls", "catch-syscalls", 0);
14459
14460   add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14461                          "QProgramSignals", "program-signals", 0);
14462
14463   add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14464                          "QSetWorkingDir", "set-working-dir", 0);
14465
14466   add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14467                          "QStartupWithShell", "startup-with-shell", 0);
14468
14469   add_packet_config_cmd (&remote_protocol_packets
14470                          [PACKET_QEnvironmentHexEncoded],
14471                          "QEnvironmentHexEncoded", "environment-hex-encoded",
14472                          0);
14473
14474   add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14475                          "QEnvironmentReset", "environment-reset",
14476                          0);
14477
14478   add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14479                          "QEnvironmentUnset", "environment-unset",
14480                          0);
14481
14482   add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
14483                          "qSymbol", "symbol-lookup", 0);
14484
14485   add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
14486                          "P", "set-register", 1);
14487
14488   add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
14489                          "p", "fetch-register", 1);
14490
14491   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
14492                          "Z0", "software-breakpoint", 0);
14493
14494   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
14495                          "Z1", "hardware-breakpoint", 0);
14496
14497   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
14498                          "Z2", "write-watchpoint", 0);
14499
14500   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
14501                          "Z3", "read-watchpoint", 0);
14502
14503   add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
14504                          "Z4", "access-watchpoint", 0);
14505
14506   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14507                          "qXfer:auxv:read", "read-aux-vector", 0);
14508
14509   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14510                          "qXfer:exec-file:read", "pid-to-exec-file", 0);
14511
14512   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14513                          "qXfer:features:read", "target-features", 0);
14514
14515   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14516                          "qXfer:libraries:read", "library-info", 0);
14517
14518   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14519                          "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14520
14521   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14522                          "qXfer:memory-map:read", "memory-map", 0);
14523
14524   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14525                          "qXfer:spu:read", "read-spu-object", 0);
14526
14527   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14528                          "qXfer:spu:write", "write-spu-object", 0);
14529
14530   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14531                         "qXfer:osdata:read", "osdata", 0);
14532
14533   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14534                          "qXfer:threads:read", "threads", 0);
14535
14536   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14537                          "qXfer:siginfo:read", "read-siginfo-object", 0);
14538
14539   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14540                          "qXfer:siginfo:write", "write-siginfo-object", 0);
14541
14542   add_packet_config_cmd
14543     (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
14544      "qXfer:traceframe-info:read", "traceframe-info", 0);
14545
14546   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14547                          "qXfer:uib:read", "unwind-info-block", 0);
14548
14549   add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
14550                          "qGetTLSAddr", "get-thread-local-storage-address",
14551                          0);
14552
14553   add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14554                          "qGetTIBAddr", "get-thread-information-block-address",
14555                          0);
14556
14557   add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14558                          "bc", "reverse-continue", 0);
14559
14560   add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14561                          "bs", "reverse-step", 0);
14562
14563   add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14564                          "qSupported", "supported-packets", 0);
14565
14566   add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14567                          "qSearch:memory", "search-memory", 0);
14568
14569   add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14570                          "qTStatus", "trace-status", 0);
14571
14572   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14573                          "vFile:setfs", "hostio-setfs", 0);
14574
14575   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14576                          "vFile:open", "hostio-open", 0);
14577
14578   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14579                          "vFile:pread", "hostio-pread", 0);
14580
14581   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14582                          "vFile:pwrite", "hostio-pwrite", 0);
14583
14584   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14585                          "vFile:close", "hostio-close", 0);
14586
14587   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14588                          "vFile:unlink", "hostio-unlink", 0);
14589
14590   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14591                          "vFile:readlink", "hostio-readlink", 0);
14592
14593   add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14594                          "vFile:fstat", "hostio-fstat", 0);
14595
14596   add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14597                          "vAttach", "attach", 0);
14598
14599   add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14600                          "vRun", "run", 0);
14601
14602   add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14603                          "QStartNoAckMode", "noack", 0);
14604
14605   add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14606                          "vKill", "kill", 0);
14607
14608   add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14609                          "qAttached", "query-attached", 0);
14610
14611   add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
14612                          "ConditionalTracepoints",
14613                          "conditional-tracepoints", 0);
14614
14615   add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14616                          "ConditionalBreakpoints",
14617                          "conditional-breakpoints", 0);
14618
14619   add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14620                          "BreakpointCommands",
14621                          "breakpoint-commands", 0);
14622
14623   add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14624                          "FastTracepoints", "fast-tracepoints", 0);
14625
14626   add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14627                          "TracepointSource", "TracepointSource", 0);
14628
14629   add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14630                          "QAllow", "allow", 0);
14631
14632   add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14633                          "StaticTracepoints", "static-tracepoints", 0);
14634
14635   add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14636                          "InstallInTrace", "install-in-trace", 0);
14637
14638   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14639                          "qXfer:statictrace:read", "read-sdata-object", 0);
14640
14641   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14642                          "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14643
14644   add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14645                          "QDisableRandomization", "disable-randomization", 0);
14646
14647   add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14648                          "QAgent", "agent", 0);
14649
14650   add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14651                          "QTBuffer:size", "trace-buffer-size", 0);
14652
14653   add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14654        "Qbtrace:off", "disable-btrace", 0);
14655
14656   add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
14657        "Qbtrace:bts", "enable-btrace-bts", 0);
14658
14659   add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14660        "Qbtrace:pt", "enable-btrace-pt", 0);
14661
14662   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14663        "qXfer:btrace", "read-btrace", 0);
14664
14665   add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14666        "qXfer:btrace-conf", "read-btrace-conf", 0);
14667
14668   add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14669        "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14670
14671   add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14672        "multiprocess-feature", "multiprocess-feature", 0);
14673
14674   add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14675                          "swbreak-feature", "swbreak-feature", 0);
14676
14677   add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14678                          "hwbreak-feature", "hwbreak-feature", 0);
14679
14680   add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14681                          "fork-event-feature", "fork-event-feature", 0);
14682
14683   add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14684                          "vfork-event-feature", "vfork-event-feature", 0);
14685
14686   add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14687        "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14688
14689   add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14690                          "vContSupported", "verbose-resume-supported", 0);
14691
14692   add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14693                          "exec-event-feature", "exec-event-feature", 0);
14694
14695   add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14696                          "vCtrlC", "ctrl-c", 0);
14697
14698   add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14699                          "QThreadEvents", "thread-events", 0);
14700
14701   add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14702                          "N stop reply", "no-resumed-stop-reply", 0);
14703
14704   /* Assert that we've registered "set remote foo-packet" commands
14705      for all packet configs.  */
14706   {
14707     int i;
14708
14709     for (i = 0; i < PACKET_MAX; i++)
14710       {
14711         /* Ideally all configs would have a command associated.  Some
14712            still don't though.  */
14713         int excepted;
14714
14715         switch (i)
14716           {
14717           case PACKET_QNonStop:
14718           case PACKET_EnableDisableTracepoints_feature:
14719           case PACKET_tracenz_feature:
14720           case PACKET_DisconnectedTracing_feature:
14721           case PACKET_augmented_libraries_svr4_read_feature:
14722           case PACKET_qCRC:
14723             /* Additions to this list need to be well justified:
14724                pre-existing packets are OK; new packets are not.  */
14725             excepted = 1;
14726             break;
14727           default:
14728             excepted = 0;
14729             break;
14730           }
14731
14732         /* This catches both forgetting to add a config command, and
14733            forgetting to remove a packet from the exception list.  */
14734         gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14735       }
14736   }
14737
14738   /* Keep the old ``set remote Z-packet ...'' working.  Each individual
14739      Z sub-packet has its own set and show commands, but users may
14740      have sets to this variable in their .gdbinit files (or in their
14741      documentation).  */
14742   add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
14743                                 &remote_Z_packet_detect, _("\
14744 Set use of remote protocol `Z' packets"), _("\
14745 Show use of remote protocol `Z' packets "), _("\
14746 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
14747 packets."),
14748                                 set_remote_protocol_Z_packet_cmd,
14749                                 show_remote_protocol_Z_packet_cmd,
14750                                 /* FIXME: i18n: Use of remote protocol
14751                                    `Z' packets is %s.  */
14752                                 &remote_set_cmdlist, &remote_show_cmdlist);
14753
14754   add_prefix_cmd ("remote", class_files, remote_command, _("\
14755 Manipulate files on the remote system\n\
14756 Transfer files to and from the remote target system."),
14757                   &remote_cmdlist, "remote ",
14758                   0 /* allow-unknown */, &cmdlist);
14759
14760   add_cmd ("put", class_files, remote_put_command,
14761            _("Copy a local file to the remote system."),
14762            &remote_cmdlist);
14763
14764   add_cmd ("get", class_files, remote_get_command,
14765            _("Copy a remote file to the local system."),
14766            &remote_cmdlist);
14767
14768   add_cmd ("delete", class_files, remote_delete_command,
14769            _("Delete a remote file."),
14770            &remote_cmdlist);
14771
14772   add_setshow_string_noescape_cmd ("exec-file", class_files,
14773                                    &remote_exec_file_var, _("\
14774 Set the remote pathname for \"run\""), _("\
14775 Show the remote pathname for \"run\""), NULL,
14776                                    set_remote_exec_file,
14777                                    show_remote_exec_file,
14778                                    &remote_set_cmdlist,
14779                                    &remote_show_cmdlist);
14780
14781   add_setshow_boolean_cmd ("range-stepping", class_run,
14782                            &use_range_stepping, _("\
14783 Enable or disable range stepping."), _("\
14784 Show whether target-assisted range stepping is enabled."), _("\
14785 If on, and the target supports it, when stepping a source line, GDB\n\
14786 tells the target to step the corresponding range of addresses itself instead\n\
14787 of issuing multiple single-steps.  This speeds up source level\n\
14788 stepping.  If off, GDB always issues single-steps, even if range\n\
14789 stepping is supported by the target.  The default is on."),
14790                            set_range_stepping,
14791                            show_range_stepping,
14792                            &setlist,
14793                            &showlist);
14794
14795   /* Eventually initialize fileio.  See fileio.c */
14796   initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
14797
14798   /* Take advantage of the fact that the TID field is not used, to tag
14799      special ptids with it set to != 0.  */
14800   magic_null_ptid = ptid_t (42000, -1, 1);
14801   not_sent_ptid = ptid_t (42000, -2, 1);
14802   any_thread_ptid = ptid_t (42000, 0, 1);
14803 }